diff --git a/grammar.js b/grammar.js index e2910ba..d7db864 100644 --- a/grammar.js +++ b/grammar.js @@ -89,7 +89,6 @@ module.exports = grammar({ inline: ($) => [ $._module_elem, - $._infix_or_prefix_op, $._base_call, $._expression_or_range, $._object_expression_inner, @@ -451,6 +450,24 @@ module.exports = grammar({ // (static-typars : (member-sig) expr) ), + literal_expression: ($) => + prec( + PREC.PAREN_EXPR, + choice( + seq("<@", $._expression, "@>"), + seq("<@@", $._expression, "@@>"), + ), + ), + + long_identifier_or_op: ($) => + prec.right( + choice( + $.long_identifier, + seq($.long_identifier, ".", $._identifier_or_op), + $._identifier_or_op, + ), + ), + tuple_expression: ($) => prec.right(PREC.TUPLE_EXPR, seq($._expression, ",", $._expression)), @@ -510,15 +527,6 @@ module.exports = grammar({ prec.right(PREC.PREFIX_EXPR, $._expression), ), - literal_expression: ($) => - prec( - PREC.PAREN_EXPR, - choice( - seq("<@", $._expression, "@>"), - seq("<@@", $._expression, "@@>"), - ), - ), - typecast_expression: ($) => prec.right( PREC.SPECIAL_INFIX, @@ -1613,15 +1621,6 @@ module.exports = grammar({ ), // Identifiers: - long_identifier_or_op: ($) => - prec.right( - choice( - $.long_identifier, - seq($.long_identifier, ".", $._identifier_or_op), - $._identifier_or_op, - ), - ), - long_identifier: ($) => prec.right(seq($.identifier, repeat(seq(".", $.identifier)))), @@ -1666,7 +1665,7 @@ module.exports = grammar({ PREC.INFIX_OP, choice( $._infix_or_prefix_op, - /[-+<>|&^*/'%@][!%&*+-./<=>@^|~?]*/, + /[-+<>|&^*/'%@][!%&*+./<=>@^|~?-]*/, "||", "=", "!=", @@ -1675,10 +1674,6 @@ module.exports = grammar({ "$", "or", "?", - "<@", - "<@@", - "@>", - "@@>", "?", "?<-", ), diff --git a/src/grammar.json b/src/grammar.json index 3195585..56bdc2c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1585,6 +1585,83 @@ } ] }, + "literal_expression": { + "type": "PREC", + "value": 21, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<@" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "@>" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<@@" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "@@>" + } + ] + } + ] + } + }, + "long_identifier_or_op": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "long_identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "long_identifier" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_identifier_or_op" + } + ] + }, + { + "type": "SYMBOL", + "name": "_identifier_or_op" + } + ] + } + }, "tuple_expression": { "type": "PREC_RIGHT", "value": 16, @@ -1850,49 +1927,6 @@ } ] }, - "literal_expression": { - "type": "PREC", - "value": 21, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<@" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "@>" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<@@" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "@@>" - } - ] - } - ] - } - }, "typecast_expression": { "type": "PREC_RIGHT", "value": 16, @@ -6590,40 +6624,6 @@ } ] }, - "long_identifier_or_op": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "long_identifier" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "long_identifier" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_identifier_or_op" - } - ] - }, - { - "type": "SYMBOL", - "name": "_identifier_or_op" - } - ] - } - }, "long_identifier": { "type": "PREC_RIGHT", "value": 0, @@ -6857,7 +6857,7 @@ }, { "type": "PATTERN", - "value": "[-+<>|&^*/'%@][!%&*+-./<=>@^|~?]*" + "value": "[-+<>|&^*/'%@][!%&*+./<=>@^|~?-]*" }, { "type": "STRING", @@ -6891,22 +6891,6 @@ "type": "STRING", "value": "?" }, - { - "type": "STRING", - "value": "<@" - }, - { - "type": "STRING", - "value": "<@@" - }, - { - "type": "STRING", - "value": "@>" - }, - { - "type": "STRING", - "value": "@@>" - }, { "type": "STRING", "value": "?" @@ -7966,7 +7950,6 @@ ], "inline": [ "_module_elem", - "_infix_or_prefix_op", "_base_call", "_expression_or_range", "_object_expression_inner", diff --git a/src/node-types.json b/src/node-types.json index 8c7217f..b12a009 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4216,11 +4216,11 @@ }, { "type": "unit", - "named": false + "named": true }, { "type": "unit", - "named": true + "named": false }, { "type": "unmanaged", diff --git a/src/parser.c b/src/parser.c index 48da40e..a37cbea 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7822 -#define LARGE_STATE_COUNT 3162 -#define SYMBOL_COUNT 436 +#define STATE_COUNT 8398 +#define LARGE_STATE_COUNT 3542 +#define SYMBOL_COUNT 437 #define ALIAS_COUNT 3 #define TOKEN_COUNT 197 #define EXTERNAL_TOKEN_COUNT 13 @@ -66,44 +66,44 @@ enum ts_symbol_identifiers { anon_sym_LBRACK_PIPE = 40, anon_sym_PIPE_RBRACK = 41, anon_sym_LBRACE = 42, - anon_sym_RBRACE = 43, - anon_sym_LBRACE_PIPE = 44, - anon_sym_PIPE_RBRACE = 45, - anon_sym_with = 46, - anon_sym_new = 47, - anon_sym_return_BANG = 48, - anon_sym_yield = 49, - anon_sym_yield_BANG = 50, - anon_sym_lazy = 51, - anon_sym_assert = 52, - anon_sym_upcast = 53, - anon_sym_downcast = 54, - anon_sym_LT_AT = 55, - anon_sym_AT_GT = 56, - anon_sym_LT_AT_AT = 57, - anon_sym_AT_AT_GT = 58, - anon_sym_COLON_GT = 59, - anon_sym_COLON_QMARK_GT = 60, - anon_sym_for = 61, - anon_sym_in = 62, - anon_sym_to = 63, - anon_sym_downto = 64, - anon_sym_done = 65, - anon_sym_while = 66, - anon_sym_else = 67, - anon_sym_then = 68, - anon_sym_elif = 69, - anon_sym_if = 70, - anon_sym_fun = 71, - anon_sym_DASH_GT = 72, - anon_sym_try = 73, - anon_sym_finally = 74, - anon_sym_match = 75, - anon_sym_match_BANG = 76, - anon_sym_function = 77, - anon_sym_LT_DASH = 78, - anon_sym_DOT_LBRACK = 79, - anon_sym_DOT = 80, + anon_sym_LT_AT = 43, + anon_sym_AT_GT = 44, + anon_sym_LT_AT_AT = 45, + anon_sym_AT_AT_GT = 46, + anon_sym_DOT = 47, + anon_sym_RBRACE = 48, + anon_sym_LBRACE_PIPE = 49, + anon_sym_PIPE_RBRACE = 50, + anon_sym_with = 51, + anon_sym_new = 52, + anon_sym_return_BANG = 53, + anon_sym_yield = 54, + anon_sym_yield_BANG = 55, + anon_sym_lazy = 56, + anon_sym_assert = 57, + anon_sym_upcast = 58, + anon_sym_downcast = 59, + anon_sym_COLON_GT = 60, + anon_sym_COLON_QMARK_GT = 61, + anon_sym_for = 62, + anon_sym_in = 63, + anon_sym_to = 64, + anon_sym_downto = 65, + anon_sym_done = 66, + anon_sym_while = 67, + anon_sym_else = 68, + anon_sym_then = 69, + anon_sym_elif = 70, + anon_sym_if = 71, + anon_sym_fun = 72, + anon_sym_DASH_GT = 73, + anon_sym_try = 74, + anon_sym_finally = 75, + anon_sym_match = 76, + anon_sym_match_BANG = 77, + anon_sym_function = 78, + anon_sym_LT_DASH = 79, + anon_sym_DOT_LBRACK = 80, anon_sym_LT = 81, anon_sym_GT = 82, anon_sym_use = 83, @@ -263,205 +263,206 @@ enum ts_symbol_identifiers { sym__pattern_param = 237, sym__expression_block = 238, sym__expression = 239, - sym_tuple_expression = 240, - sym_brace_expression = 241, - sym_anon_record_expression = 242, - sym_with_field_expression = 243, - sym_object_expression = 244, - sym_prefixed_expression = 245, - sym_literal_expression = 246, - sym_typecast_expression = 247, - sym_for_expression = 248, - sym_while_expression = 249, - sym__else_expression = 250, - sym_elif_expression = 251, - sym__if_branch = 252, - sym_if_expression = 253, - sym_fun_expression = 254, - sym_try_expression = 255, - sym_match_expression = 256, - sym_function_expression = 257, - sym_object_instantiation_expression = 258, - sym_mutate_expression = 259, - sym_index_expression = 260, - sym_dot_expression = 261, - sym_typed_expression = 262, - sym_declaration_expression = 263, - sym_do_expression = 264, - sym__list_elements = 265, - sym__list_element = 266, - sym_list_expression = 267, - sym_array_expression = 268, - sym_range_expression = 269, - sym_rule = 270, - sym_rules = 271, - sym_begin_end_expression = 272, - sym_paren_expression = 273, - sym_application_expression = 274, - sym_infix_expression = 275, - sym_ce_expression = 276, - sym_sequential_expression = 277, - sym__comp_or_range_expression = 278, - sym_short_comp_expression = 279, - sym_slice_ranges = 280, - sym__slice_range_special = 281, - sym_slice_range = 282, - sym_type = 283, - sym__simple_type = 284, - sym__generic_type = 285, - sym__paren_type = 286, - sym__function_type = 287, - sym__compound_type = 288, - sym__postfix_type = 289, - sym__list_type = 290, - sym__static_type = 291, - sym__constrained_type = 292, - sym__flexible_type = 293, - sym_types = 294, - sym__static_type_identifier = 295, - sym__static_parameter = 296, - sym_named_static_parameter = 297, - sym_static_parameter_value = 298, - sym_type_attribute = 299, - sym_type_attributes = 300, - sym_atomic_type = 301, - sym_constraint = 302, - sym_type_argument_constraints = 303, - sym_type_argument = 304, - sym_type_argument_defn = 305, - sym_type_arguments = 306, - sym_trait_member_constraint = 307, - sym_member_signature = 308, - sym_curried_spec = 309, - sym_argument_spec = 310, - sym_arguments_spec = 311, - sym_argument_name_spec = 312, - sym_type_definition = 313, - sym__type_defn_body = 314, - sym_type_name = 315, - sym_type_extension = 316, - sym_delegate_type_defn = 317, - sym_delegate_signature = 318, - sym_type_abbrev_defn = 319, - sym__class_type_body_inner = 320, - sym__class_type_body = 321, - sym_record_type_defn = 322, - sym_record_fields = 323, - sym_record_field = 324, - sym_enum_type_defn = 325, - sym_enum_type_cases = 326, - sym_enum_type_case = 327, - sym_union_type_defn = 328, - sym_union_type_cases = 329, - sym_union_type_case = 330, - sym_union_type_fields = 331, - sym_union_type_field = 332, - sym_anon_type_defn = 333, - sym__class_function_or_value_defn = 334, - sym_type_extension_elements = 335, - sym__type_defn_elements = 336, - sym_interface_implementation = 337, - sym__member_defns = 338, - sym__object_members = 339, - sym_member_defn = 340, - sym_property_or_ident = 341, - sym__method_defn = 342, - sym__property_defn = 343, - sym_method_or_prop_defn = 344, - sym_additional_constr_defn = 345, - sym_class_inherits_decl = 346, - sym_field_initializer = 347, - sym_field_initializers = 348, - sym__simple_string_char = 349, - sym__string_char = 350, - sym_char = 351, - sym_format_string_eval = 352, - sym_format_string = 353, - sym__string_literal = 354, - sym_string = 355, - sym__verbatim_string_char = 356, - sym_verbatim_string = 357, - sym_bytearray = 358, - sym_verbatim_bytearray = 359, - sym_format_triple_quoted_string = 360, - sym_triple_quoted_string = 361, - sym_const = 362, - sym_long_identifier_or_op = 363, + sym_literal_expression = 240, + sym_long_identifier_or_op = 241, + sym_tuple_expression = 242, + sym_brace_expression = 243, + sym_anon_record_expression = 244, + sym_with_field_expression = 245, + sym_object_expression = 246, + sym_prefixed_expression = 247, + sym_typecast_expression = 248, + sym_for_expression = 249, + sym_while_expression = 250, + sym__else_expression = 251, + sym_elif_expression = 252, + sym__if_branch = 253, + sym_if_expression = 254, + sym_fun_expression = 255, + sym_try_expression = 256, + sym_match_expression = 257, + sym_function_expression = 258, + sym_object_instantiation_expression = 259, + sym_mutate_expression = 260, + sym_index_expression = 261, + sym_dot_expression = 262, + sym_typed_expression = 263, + sym_declaration_expression = 264, + sym_do_expression = 265, + sym__list_elements = 266, + sym__list_element = 267, + sym_list_expression = 268, + sym_array_expression = 269, + sym_range_expression = 270, + sym_rule = 271, + sym_rules = 272, + sym_begin_end_expression = 273, + sym_paren_expression = 274, + sym_application_expression = 275, + sym_infix_expression = 276, + sym_ce_expression = 277, + sym_sequential_expression = 278, + sym__comp_or_range_expression = 279, + sym_short_comp_expression = 280, + sym_slice_ranges = 281, + sym__slice_range_special = 282, + sym_slice_range = 283, + sym_type = 284, + sym__simple_type = 285, + sym__generic_type = 286, + sym__paren_type = 287, + sym__function_type = 288, + sym__compound_type = 289, + sym__postfix_type = 290, + sym__list_type = 291, + sym__static_type = 292, + sym__constrained_type = 293, + sym__flexible_type = 294, + sym_types = 295, + sym__static_type_identifier = 296, + sym__static_parameter = 297, + sym_named_static_parameter = 298, + sym_static_parameter_value = 299, + sym_type_attribute = 300, + sym_type_attributes = 301, + sym_atomic_type = 302, + sym_constraint = 303, + sym_type_argument_constraints = 304, + sym_type_argument = 305, + sym_type_argument_defn = 306, + sym_type_arguments = 307, + sym_trait_member_constraint = 308, + sym_member_signature = 309, + sym_curried_spec = 310, + sym_argument_spec = 311, + sym_arguments_spec = 312, + sym_argument_name_spec = 313, + sym_type_definition = 314, + sym__type_defn_body = 315, + sym_type_name = 316, + sym_type_extension = 317, + sym_delegate_type_defn = 318, + sym_delegate_signature = 319, + sym_type_abbrev_defn = 320, + sym__class_type_body_inner = 321, + sym__class_type_body = 322, + sym_record_type_defn = 323, + sym_record_fields = 324, + sym_record_field = 325, + sym_enum_type_defn = 326, + sym_enum_type_cases = 327, + sym_enum_type_case = 328, + sym_union_type_defn = 329, + sym_union_type_cases = 330, + sym_union_type_case = 331, + sym_union_type_fields = 332, + sym_union_type_field = 333, + sym_anon_type_defn = 334, + sym__class_function_or_value_defn = 335, + sym_type_extension_elements = 336, + sym__type_defn_elements = 337, + sym_interface_implementation = 338, + sym__member_defns = 339, + sym__object_members = 340, + sym_member_defn = 341, + sym_property_or_ident = 342, + sym__method_defn = 343, + sym__property_defn = 344, + sym_method_or_prop_defn = 345, + sym_additional_constr_defn = 346, + sym_class_inherits_decl = 347, + sym_field_initializer = 348, + sym_field_initializers = 349, + sym__simple_string_char = 350, + sym__string_char = 351, + sym_char = 352, + sym_format_string_eval = 353, + sym_format_string = 354, + sym__string_literal = 355, + sym_string = 356, + sym__verbatim_string_char = 357, + sym_verbatim_string = 358, + sym_bytearray = 359, + sym_verbatim_bytearray = 360, + sym_format_triple_quoted_string = 361, + sym_triple_quoted_string = 362, + sym_const = 363, sym_long_identifier = 364, sym_active_pattern = 365, sym__identifier_or_op = 366, - sym_prefix_op = 367, - sym_infix_op = 368, - sym_sbyte = 369, - sym_byte = 370, - sym_int16 = 371, - sym_uint16 = 372, - sym_int32 = 373, - sym_uint32 = 374, - sym_nativeint = 375, - sym_unativeint = 376, - sym_int64 = 377, - sym_uint64 = 378, - sym_ieee32 = 379, - sym_ieee64 = 380, - sym_bignum = 381, - sym_decimal = 382, - sym_float = 383, - sym_xml_doc = 384, - sym_block_comment = 385, - sym_line_comment = 386, - sym_compiler_directive_decl = 387, - sym_fsi_directive_decl = 388, - sym_preproc_line = 389, - sym_preproc_if = 390, - sym_preproc_else = 391, - sym_preproc_if_in_expression = 392, - sym_preproc_else_in_expression = 393, - sym_preproc_if_in_class_definition = 394, - sym_preproc_else_in_class_definition = 395, - aux_sym_file_repeat1 = 396, - aux_sym_file_repeat2 = 397, - aux_sym_attributes_repeat1 = 398, - aux_sym_attribute_set_repeat1 = 399, - aux_sym__function_or_value_defns_repeat1 = 400, - aux_sym_repeat_pattern_repeat1 = 401, - aux_sym_argument_patterns_repeat1 = 402, - aux_sym__list_pattern_content_repeat1 = 403, - aux_sym_record_pattern_repeat1 = 404, - aux_sym__object_expression_inner_repeat1 = 405, - aux_sym_if_expression_repeat1 = 406, - aux_sym__list_elements_repeat1 = 407, - aux_sym_rules_repeat1 = 408, - aux_sym_sequential_expression_repeat1 = 409, - aux_sym_slice_ranges_repeat1 = 410, - aux_sym__compound_type_repeat1 = 411, - aux_sym_types_repeat1 = 412, - aux_sym_type_attributes_repeat1 = 413, - aux_sym_type_argument_constraints_repeat1 = 414, - aux_sym_type_argument_repeat1 = 415, - aux_sym_type_arguments_repeat1 = 416, - aux_sym_curried_spec_repeat1 = 417, - aux_sym_arguments_spec_repeat1 = 418, - aux_sym_type_definition_repeat1 = 419, - aux_sym__class_type_body_repeat1 = 420, - aux_sym_record_fields_repeat1 = 421, - aux_sym_enum_type_cases_repeat1 = 422, - aux_sym_union_type_cases_repeat1 = 423, - aux_sym_union_type_fields_repeat1 = 424, - aux_sym__member_defns_repeat1 = 425, - aux_sym__method_defn_repeat1 = 426, - aux_sym_field_initializers_repeat1 = 427, - aux_sym_format_string_repeat1 = 428, - aux_sym__string_literal_repeat1 = 429, - aux_sym_verbatim_string_repeat1 = 430, - aux_sym_long_identifier_repeat1 = 431, - aux_sym_active_pattern_repeat1 = 432, - aux_sym_prefix_op_repeat1 = 433, - aux_sym_preproc_if_in_expression_repeat1 = 434, - aux_sym_preproc_if_in_class_definition_repeat1 = 435, - alias_sym_active_pattern_op_name = 436, - alias_sym_wildcard_active_pattern_op = 437, - alias_sym_wildcard_pattern = 438, + sym__infix_or_prefix_op = 367, + sym_prefix_op = 368, + sym_infix_op = 369, + sym_sbyte = 370, + sym_byte = 371, + sym_int16 = 372, + sym_uint16 = 373, + sym_int32 = 374, + sym_uint32 = 375, + sym_nativeint = 376, + sym_unativeint = 377, + sym_int64 = 378, + sym_uint64 = 379, + sym_ieee32 = 380, + sym_ieee64 = 381, + sym_bignum = 382, + sym_decimal = 383, + sym_float = 384, + sym_xml_doc = 385, + sym_block_comment = 386, + sym_line_comment = 387, + sym_compiler_directive_decl = 388, + sym_fsi_directive_decl = 389, + sym_preproc_line = 390, + sym_preproc_if = 391, + sym_preproc_else = 392, + sym_preproc_if_in_expression = 393, + sym_preproc_else_in_expression = 394, + sym_preproc_if_in_class_definition = 395, + sym_preproc_else_in_class_definition = 396, + aux_sym_file_repeat1 = 397, + aux_sym_file_repeat2 = 398, + aux_sym_attributes_repeat1 = 399, + aux_sym_attribute_set_repeat1 = 400, + aux_sym__function_or_value_defns_repeat1 = 401, + aux_sym_repeat_pattern_repeat1 = 402, + aux_sym_argument_patterns_repeat1 = 403, + aux_sym__list_pattern_content_repeat1 = 404, + aux_sym_record_pattern_repeat1 = 405, + aux_sym__object_expression_inner_repeat1 = 406, + aux_sym_if_expression_repeat1 = 407, + aux_sym__list_elements_repeat1 = 408, + aux_sym_rules_repeat1 = 409, + aux_sym_sequential_expression_repeat1 = 410, + aux_sym_slice_ranges_repeat1 = 411, + aux_sym__compound_type_repeat1 = 412, + aux_sym_types_repeat1 = 413, + aux_sym_type_attributes_repeat1 = 414, + aux_sym_type_argument_constraints_repeat1 = 415, + aux_sym_type_argument_repeat1 = 416, + aux_sym_type_arguments_repeat1 = 417, + aux_sym_curried_spec_repeat1 = 418, + aux_sym_arguments_spec_repeat1 = 419, + aux_sym_type_definition_repeat1 = 420, + aux_sym__class_type_body_repeat1 = 421, + aux_sym_record_fields_repeat1 = 422, + aux_sym_enum_type_cases_repeat1 = 423, + aux_sym_union_type_cases_repeat1 = 424, + aux_sym_union_type_fields_repeat1 = 425, + aux_sym__member_defns_repeat1 = 426, + aux_sym__method_defn_repeat1 = 427, + aux_sym_field_initializers_repeat1 = 428, + aux_sym_format_string_repeat1 = 429, + aux_sym__string_literal_repeat1 = 430, + aux_sym_verbatim_string_repeat1 = 431, + aux_sym_long_identifier_repeat1 = 432, + aux_sym_active_pattern_repeat1 = 433, + aux_sym_prefix_op_repeat1 = 434, + aux_sym_preproc_if_in_expression_repeat1 = 435, + aux_sym_preproc_if_in_class_definition_repeat1 = 436, + alias_sym_active_pattern_op_name = 437, + alias_sym_wildcard_active_pattern_op = 438, + alias_sym_wildcard_pattern = 439, }; static const char * const ts_symbol_names[] = { @@ -508,6 +509,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK_PIPE] = "[|", [anon_sym_PIPE_RBRACK] = "|]", [anon_sym_LBRACE] = "{", + [anon_sym_LT_AT] = "<@", + [anon_sym_AT_GT] = "@>", + [anon_sym_LT_AT_AT] = "<@@", + [anon_sym_AT_AT_GT] = "@@>", + [anon_sym_DOT] = ".", [anon_sym_RBRACE] = "}", [anon_sym_LBRACE_PIPE] = "{|", [anon_sym_PIPE_RBRACE] = "|}", @@ -520,10 +526,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_assert] = "assert", [anon_sym_upcast] = "upcast", [anon_sym_downcast] = "downcast", - [anon_sym_LT_AT] = "<@", - [anon_sym_AT_GT] = "@>", - [anon_sym_LT_AT_AT] = "<@@", - [anon_sym_AT_AT_GT] = "@@>", [anon_sym_COLON_GT] = ":>", [anon_sym_COLON_QMARK_GT] = ":\?>", [anon_sym_for] = "for", @@ -545,7 +547,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_function] = "function", [anon_sym_LT_DASH] = "<-", [anon_sym_DOT_LBRACK] = ".[", - [anon_sym_DOT] = ".", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [anon_sym_use] = "use", @@ -705,13 +706,14 @@ static const char * const ts_symbol_names[] = { [sym__pattern_param] = "_pattern_param", [sym__expression_block] = "_expression_block", [sym__expression] = "_expression", + [sym_literal_expression] = "literal_expression", + [sym_long_identifier_or_op] = "long_identifier_or_op", [sym_tuple_expression] = "tuple_expression", [sym_brace_expression] = "brace_expression", [sym_anon_record_expression] = "anon_record_expression", [sym_with_field_expression] = "with_field_expression", [sym_object_expression] = "object_expression", [sym_prefixed_expression] = "prefixed_expression", - [sym_literal_expression] = "literal_expression", [sym_typecast_expression] = "typecast_expression", [sym_for_expression] = "for_expression", [sym_while_expression] = "while_expression", @@ -828,10 +830,10 @@ static const char * const ts_symbol_names[] = { [sym_format_triple_quoted_string] = "format_triple_quoted_string", [sym_triple_quoted_string] = "triple_quoted_string", [sym_const] = "const", - [sym_long_identifier_or_op] = "long_identifier_or_op", [sym_long_identifier] = "long_identifier", [sym_active_pattern] = "active_pattern", [sym__identifier_or_op] = "_identifier_or_op", + [sym__infix_or_prefix_op] = "_infix_or_prefix_op", [sym_prefix_op] = "prefix_op", [sym_infix_op] = "infix_op", [sym_sbyte] = "sbyte", @@ -950,6 +952,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK_PIPE] = anon_sym_LBRACK_PIPE, [anon_sym_PIPE_RBRACK] = anon_sym_PIPE_RBRACK, [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_LT_AT] = anon_sym_LT_AT, + [anon_sym_AT_GT] = anon_sym_AT_GT, + [anon_sym_LT_AT_AT] = anon_sym_LT_AT_AT, + [anon_sym_AT_AT_GT] = anon_sym_AT_AT_GT, + [anon_sym_DOT] = anon_sym_DOT, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_LBRACE_PIPE] = anon_sym_LBRACE_PIPE, [anon_sym_PIPE_RBRACE] = anon_sym_PIPE_RBRACE, @@ -962,10 +969,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_assert] = anon_sym_assert, [anon_sym_upcast] = anon_sym_upcast, [anon_sym_downcast] = anon_sym_downcast, - [anon_sym_LT_AT] = anon_sym_LT_AT, - [anon_sym_AT_GT] = anon_sym_AT_GT, - [anon_sym_LT_AT_AT] = anon_sym_LT_AT_AT, - [anon_sym_AT_AT_GT] = anon_sym_AT_AT_GT, [anon_sym_COLON_GT] = anon_sym_COLON_GT, [anon_sym_COLON_QMARK_GT] = anon_sym_COLON_QMARK_GT, [anon_sym_for] = anon_sym_for, @@ -987,7 +990,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_function] = anon_sym_function, [anon_sym_LT_DASH] = anon_sym_LT_DASH, [anon_sym_DOT_LBRACK] = anon_sym_DOT_LBRACK, - [anon_sym_DOT] = anon_sym_DOT, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [anon_sym_use] = anon_sym_use, @@ -1147,13 +1149,14 @@ static const TSSymbol ts_symbol_map[] = { [sym__pattern_param] = sym__pattern_param, [sym__expression_block] = sym__expression_block, [sym__expression] = sym__expression, + [sym_literal_expression] = sym_literal_expression, + [sym_long_identifier_or_op] = sym_long_identifier_or_op, [sym_tuple_expression] = sym_tuple_expression, [sym_brace_expression] = sym_brace_expression, [sym_anon_record_expression] = sym_anon_record_expression, [sym_with_field_expression] = sym_with_field_expression, [sym_object_expression] = sym_object_expression, [sym_prefixed_expression] = sym_prefixed_expression, - [sym_literal_expression] = sym_literal_expression, [sym_typecast_expression] = sym_typecast_expression, [sym_for_expression] = sym_for_expression, [sym_while_expression] = sym_while_expression, @@ -1270,10 +1273,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_format_triple_quoted_string] = sym_format_triple_quoted_string, [sym_triple_quoted_string] = sym_triple_quoted_string, [sym_const] = sym_const, - [sym_long_identifier_or_op] = sym_long_identifier_or_op, [sym_long_identifier] = sym_long_identifier, [sym_active_pattern] = sym_active_pattern, [sym__identifier_or_op] = sym__identifier_or_op, + [sym__infix_or_prefix_op] = sym__infix_or_prefix_op, [sym_prefix_op] = sym_prefix_op, [sym_infix_op] = sym_infix_op, [sym_sbyte] = sym_sbyte, @@ -1521,67 +1524,71 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_RBRACE] = { + [anon_sym_LT_AT] = { .visible = true, .named = false, }, - [anon_sym_LBRACE_PIPE] = { + [anon_sym_AT_GT] = { .visible = true, .named = false, }, - [anon_sym_PIPE_RBRACE] = { + [anon_sym_LT_AT_AT] = { .visible = true, .named = false, }, - [anon_sym_with] = { + [anon_sym_AT_AT_GT] = { .visible = true, .named = false, }, - [anon_sym_new] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_return_BANG] = { + [anon_sym_RBRACE] = { .visible = true, .named = false, }, - [anon_sym_yield] = { + [anon_sym_LBRACE_PIPE] = { .visible = true, .named = false, }, - [anon_sym_yield_BANG] = { + [anon_sym_PIPE_RBRACE] = { .visible = true, .named = false, }, - [anon_sym_lazy] = { + [anon_sym_with] = { .visible = true, .named = false, }, - [anon_sym_assert] = { + [anon_sym_new] = { .visible = true, .named = false, }, - [anon_sym_upcast] = { + [anon_sym_return_BANG] = { .visible = true, .named = false, }, - [anon_sym_downcast] = { + [anon_sym_yield] = { .visible = true, .named = false, }, - [anon_sym_LT_AT] = { + [anon_sym_yield_BANG] = { .visible = true, .named = false, }, - [anon_sym_AT_GT] = { + [anon_sym_lazy] = { .visible = true, .named = false, }, - [anon_sym_LT_AT_AT] = { + [anon_sym_assert] = { .visible = true, .named = false, }, - [anon_sym_AT_AT_GT] = { + [anon_sym_upcast] = { + .visible = true, + .named = false, + }, + [anon_sym_downcast] = { .visible = true, .named = false, }, @@ -1669,10 +1676,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, [anon_sym_LT] = { .visible = true, .named = false, @@ -2311,6 +2314,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_literal_expression] = { + .visible = true, + .named = true, + }, + [sym_long_identifier_or_op] = { + .visible = true, + .named = true, + }, [sym_tuple_expression] = { .visible = true, .named = true, @@ -2335,10 +2346,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_literal_expression] = { - .visible = true, - .named = true, - }, [sym_typecast_expression] = { .visible = true, .named = true, @@ -2805,10 +2812,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_long_identifier_or_op] = { - .visible = true, - .named = true, - }, [sym_long_identifier] = { .visible = true, .named = true, @@ -2821,6 +2824,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__infix_or_prefix_op] = { + .visible = false, + .named = true, + }, [sym_prefix_op] = { .visible = true, .named = true, @@ -3248,11 +3255,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_from, 0, .inherited = true}, {field_to, 0, .inherited = true}, [13] = - {field_assignee, 0}, - {field_value, 2}, - [15] = {field_base, 0}, {field_field, 2}, + [15] = + {field_assignee, 0}, + {field_value, 2}, [17] = {field_guard, 0, .inherited = true}, {field_then, 2}, @@ -3459,7817 +3466,8393 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 10, - [11] = 8, - [12] = 9, - [13] = 3, - [14] = 7, - [15] = 2, - [16] = 6, - [17] = 17, - [18] = 10, - [19] = 5, - [20] = 4, - [21] = 7, - [22] = 8, - [23] = 2, - [24] = 5, + [11] = 7, + [12] = 2, + [13] = 9, + [14] = 6, + [15] = 3, + [16] = 10, + [17] = 8, + [18] = 5, + [19] = 4, + [20] = 20, + [21] = 20, + [22] = 6, + [23] = 3, + [24] = 6, [25] = 2, - [26] = 17, - [27] = 6, - [28] = 4, - [29] = 3, + [26] = 8, + [27] = 3, + [28] = 2, + [29] = 10, [30] = 9, [31] = 5, - [32] = 10, - [33] = 7, - [34] = 17, - [35] = 9, - [36] = 10, - [37] = 3, - [38] = 4, - [39] = 8, - [40] = 6, + [32] = 8, + [33] = 10, + [34] = 7, + [35] = 4, + [36] = 5, + [37] = 20, + [38] = 9, + [39] = 7, + [40] = 4, [41] = 41, - [42] = 4, - [43] = 10, - [44] = 41, - [45] = 45, - [46] = 2, - [47] = 47, - [48] = 3, - [49] = 8, - [50] = 7, - [51] = 6, + [42] = 42, + [43] = 42, + [44] = 6, + [45] = 42, + [46] = 3, + [47] = 4, + [48] = 7, + [49] = 42, + [50] = 50, + [51] = 8, [52] = 5, - [53] = 41, - [54] = 41, + [53] = 2, + [54] = 10, [55] = 9, - [56] = 56, - [57] = 8, - [58] = 9, - [59] = 3, - [60] = 2, - [61] = 4, - [62] = 8, - [63] = 5, - [64] = 6, - [65] = 65, - [66] = 66, - [67] = 6, - [68] = 45, - [69] = 4, - [70] = 3, - [71] = 56, - [72] = 72, - [73] = 10, - [74] = 10, - [75] = 75, - [76] = 5, - [77] = 5, - [78] = 66, - [79] = 3, - [80] = 2, + [56] = 2, + [57] = 57, + [58] = 5, + [59] = 9, + [60] = 10, + [61] = 2, + [62] = 3, + [63] = 57, + [64] = 64, + [65] = 64, + [66] = 64, + [67] = 8, + [68] = 64, + [69] = 64, + [70] = 64, + [71] = 64, + [72] = 5, + [73] = 73, + [74] = 57, + [75] = 64, + [76] = 64, + [77] = 4, + [78] = 7, + [79] = 57, + [80] = 6, [81] = 4, - [82] = 6, - [83] = 3, - [84] = 56, - [85] = 56, + [82] = 64, + [83] = 64, + [84] = 64, + [85] = 85, [86] = 7, - [87] = 10, - [88] = 9, - [89] = 7, - [90] = 7, - [91] = 4, + [87] = 87, + [88] = 57, + [89] = 89, + [90] = 57, + [91] = 64, [92] = 92, - [93] = 93, - [94] = 6, - [95] = 8, - [96] = 10, - [97] = 8, - [98] = 2, - [99] = 56, - [100] = 6, - [101] = 56, - [102] = 4, - [103] = 8, - [104] = 2, - [105] = 4, - [106] = 56, + [93] = 9, + [94] = 94, + [95] = 41, + [96] = 4, + [97] = 10, + [98] = 8, + [99] = 7, + [100] = 57, + [101] = 6, + [102] = 2, + [103] = 6, + [104] = 104, + [105] = 5, + [106] = 57, [107] = 3, - [108] = 9, - [109] = 92, - [110] = 56, - [111] = 9, - [112] = 5, - [113] = 10, - [114] = 7, - [115] = 115, - [116] = 5, - [117] = 117, - [118] = 9, - [119] = 119, - [120] = 56, - [121] = 119, - [122] = 9, - [123] = 3, - [124] = 56, - [125] = 119, - [126] = 2, - [127] = 5, - [128] = 7, - [129] = 2, - [130] = 119, - [131] = 119, - [132] = 119, - [133] = 8, - [134] = 119, - [135] = 7, - [136] = 119, - [137] = 56, - [138] = 119, - [139] = 119, - [140] = 10, - [141] = 6, - [142] = 119, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 3, + [108] = 4, + [109] = 7, + [110] = 9, + [111] = 10, + [112] = 57, + [113] = 2, + [114] = 6, + [115] = 10, + [116] = 85, + [117] = 9, + [118] = 5, + [119] = 8, + [120] = 57, + [121] = 8, + [122] = 57, + [123] = 4, + [124] = 3, + [125] = 6, + [126] = 7, + [127] = 6, + [128] = 8, + [129] = 7, + [130] = 57, + [131] = 4, + [132] = 5, + [133] = 9, + [134] = 3, + [135] = 135, + [136] = 10, + [137] = 2, + [138] = 2, + [139] = 10, + [140] = 9, + [141] = 8, + [142] = 57, + [143] = 94, + [144] = 3, + [145] = 3, + [146] = 5, [147] = 147, - [148] = 148, + [148] = 147, [149] = 149, - [150] = 8, - [151] = 151, - [152] = 147, - [153] = 7, - [154] = 8, - [155] = 147, - [156] = 143, - [157] = 2, - [158] = 10, - [159] = 143, - [160] = 147, - [161] = 2, - [162] = 143, - [163] = 6, - [164] = 72, + [150] = 5, + [151] = 149, + [152] = 104, + [153] = 3, + [154] = 149, + [155] = 155, + [156] = 156, + [157] = 149, + [158] = 147, + [159] = 3, + [160] = 160, + [161] = 89, + [162] = 149, + [163] = 9, + [164] = 10, [165] = 2, - [166] = 4, - [167] = 3, - [168] = 9, - [169] = 8, - [170] = 143, - [171] = 143, - [172] = 151, - [173] = 7, - [174] = 143, - [175] = 149, - [176] = 5, - [177] = 143, - [178] = 143, - [179] = 147, - [180] = 149, - [181] = 143, - [182] = 143, - [183] = 143, - [184] = 65, - [185] = 185, - [186] = 143, - [187] = 10, - [188] = 6, - [189] = 143, - [190] = 143, - [191] = 4, - [192] = 3, - [193] = 5, - [194] = 9, - [195] = 143, - [196] = 148, - [197] = 143, - [198] = 198, - [199] = 148, - [200] = 143, - [201] = 201, - [202] = 143, - [203] = 143, + [166] = 149, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 149, + [171] = 160, + [172] = 172, + [173] = 160, + [174] = 172, + [175] = 169, + [176] = 149, + [177] = 149, + [178] = 149, + [179] = 6, + [180] = 2, + [181] = 3, + [182] = 10, + [183] = 9, + [184] = 167, + [185] = 147, + [186] = 7, + [187] = 156, + [188] = 167, + [189] = 149, + [190] = 169, + [191] = 149, + [192] = 4, + [193] = 147, + [194] = 7, + [195] = 149, + [196] = 160, + [197] = 4, + [198] = 149, + [199] = 172, + [200] = 5, + [201] = 169, + [202] = 6, + [203] = 167, [204] = 149, - [205] = 143, + [205] = 149, [206] = 149, - [207] = 151, - [208] = 148, - [209] = 147, - [210] = 5, - [211] = 149, - [212] = 148, - [213] = 149, - [214] = 147, - [215] = 143, - [216] = 149, - [217] = 5, - [218] = 3, - [219] = 151, - [220] = 4, - [221] = 6, - [222] = 151, - [223] = 148, - [224] = 143, - [225] = 225, - [226] = 143, - [227] = 143, - [228] = 143, - [229] = 143, + [207] = 149, + [208] = 147, + [209] = 149, + [210] = 8, + [211] = 167, + [212] = 212, + [213] = 8, + [214] = 149, + [215] = 169, + [216] = 172, + [217] = 160, + [218] = 149, + [219] = 149, + [220] = 149, + [221] = 92, + [222] = 147, + [223] = 156, + [224] = 149, + [225] = 212, + [226] = 149, + [227] = 172, + [228] = 156, + [229] = 147, [230] = 149, - [231] = 143, - [232] = 143, - [233] = 233, - [234] = 151, - [235] = 143, - [236] = 143, - [237] = 151, - [238] = 143, - [239] = 149, - [240] = 143, - [241] = 143, - [242] = 143, - [243] = 143, - [244] = 117, - [245] = 4, - [246] = 147, - [247] = 148, + [231] = 149, + [232] = 149, + [233] = 167, + [234] = 169, + [235] = 160, + [236] = 172, + [237] = 147, + [238] = 156, + [239] = 167, + [240] = 167, + [241] = 160, + [242] = 149, + [243] = 149, + [244] = 244, + [245] = 6, + [246] = 2, + [247] = 10, [248] = 248, [249] = 249, - [250] = 143, - [251] = 8, - [252] = 143, - [253] = 7, - [254] = 148, - [255] = 143, - [256] = 93, - [257] = 149, - [258] = 6, - [259] = 259, - [260] = 10, - [261] = 143, - [262] = 201, - [263] = 143, - [264] = 147, - [265] = 151, - [266] = 151, - [267] = 2, - [268] = 143, - [269] = 9, - [270] = 270, - [271] = 149, - [272] = 147, - [273] = 143, - [274] = 148, - [275] = 7, - [276] = 145, - [277] = 10, - [278] = 278, - [279] = 185, - [280] = 143, - [281] = 143, - [282] = 151, - [283] = 9, - [284] = 143, - [285] = 149, - [286] = 143, - [287] = 148, - [288] = 143, - [289] = 143, - [290] = 147, - [291] = 151, - [292] = 185, - [293] = 149, - [294] = 148, - [295] = 148, - [296] = 143, - [297] = 297, - [298] = 298, - [299] = 298, - [300] = 300, - [301] = 297, - [302] = 302, - [303] = 298, - [304] = 298, - [305] = 300, - [306] = 298, - [307] = 300, - [308] = 297, - [309] = 297, - [310] = 298, - [311] = 298, - [312] = 297, - [313] = 302, - [314] = 297, - [315] = 302, - [316] = 233, - [317] = 298, - [318] = 300, - [319] = 297, - [320] = 302, - [321] = 302, - [322] = 302, - [323] = 300, - [324] = 298, - [325] = 302, - [326] = 300, - [327] = 297, - [328] = 298, - [329] = 302, - [330] = 300, - [331] = 302, - [332] = 297, - [333] = 300, - [334] = 300, - [335] = 302, - [336] = 298, - [337] = 300, - [338] = 297, - [339] = 300, - [340] = 297, - [341] = 302, - [342] = 342, - [343] = 342, - [344] = 342, - [345] = 342, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 352, - [355] = 355, - [356] = 356, - [357] = 355, - [358] = 352, - [359] = 359, - [360] = 359, - [361] = 355, - [362] = 353, - [363] = 359, - [364] = 353, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 359, - [369] = 355, - [370] = 353, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 374, - [378] = 374, - [379] = 376, - [380] = 376, - [381] = 374, - [382] = 375, - [383] = 383, - [384] = 383, - [385] = 375, - [386] = 375, - [387] = 383, - [388] = 383, - [389] = 376, + [250] = 8, + [251] = 5, + [252] = 149, + [253] = 4, + [254] = 149, + [255] = 7, + [256] = 212, + [257] = 156, + [258] = 9, + [259] = 167, + [260] = 160, + [261] = 172, + [262] = 10, + [263] = 2, + [264] = 6, + [265] = 167, + [266] = 169, + [267] = 168, + [268] = 172, + [269] = 169, + [270] = 160, + [271] = 9, + [272] = 149, + [273] = 149, + [274] = 3, + [275] = 149, + [276] = 167, + [277] = 7, + [278] = 156, + [279] = 149, + [280] = 147, + [281] = 149, + [282] = 167, + [283] = 149, + [284] = 4, + [285] = 7, + [286] = 149, + [287] = 149, + [288] = 288, + [289] = 167, + [290] = 135, + [291] = 149, + [292] = 147, + [293] = 293, + [294] = 167, + [295] = 149, + [296] = 147, + [297] = 160, + [298] = 172, + [299] = 169, + [300] = 167, + [301] = 149, + [302] = 6, + [303] = 169, + [304] = 149, + [305] = 156, + [306] = 172, + [307] = 149, + [308] = 169, + [309] = 8, + [310] = 172, + [311] = 160, + [312] = 160, + [313] = 5, + [314] = 149, + [315] = 149, + [316] = 149, + [317] = 172, + [318] = 169, + [319] = 156, + [320] = 149, + [321] = 147, + [322] = 3, + [323] = 149, + [324] = 167, + [325] = 325, + [326] = 156, + [327] = 327, + [328] = 8, + [329] = 9, + [330] = 149, + [331] = 169, + [332] = 10, + [333] = 149, + [334] = 2, + [335] = 147, + [336] = 172, + [337] = 160, + [338] = 338, + [339] = 156, + [340] = 340, + [341] = 149, + [342] = 149, + [343] = 149, + [344] = 149, + [345] = 5, + [346] = 155, + [347] = 4, + [348] = 156, + [349] = 3, + [350] = 8, + [351] = 5, + [352] = 4, + [353] = 156, + [354] = 7, + [355] = 9, + [356] = 10, + [357] = 2, + [358] = 6, + [359] = 249, + [360] = 360, + [361] = 361, + [362] = 361, + [363] = 360, + [364] = 360, + [365] = 360, + [366] = 361, + [367] = 361, + [368] = 361, + [369] = 361, + [370] = 360, + [371] = 360, + [372] = 361, + [373] = 361, + [374] = 361, + [375] = 360, + [376] = 361, + [377] = 360, + [378] = 361, + [379] = 361, + [380] = 360, + [381] = 360, + [382] = 360, + [383] = 360, + [384] = 360, + [385] = 361, + [386] = 386, + [387] = 386, + [388] = 386, + [389] = 386, [390] = 390, [391] = 391, [392] = 392, [393] = 393, - [394] = 393, + [394] = 394, [395] = 395, - [396] = 395, - [397] = 395, + [396] = 396, + [397] = 397, [398] = 398, [399] = 398, - [400] = 398, - [401] = 398, - [402] = 398, - [403] = 398, + [400] = 391, + [401] = 391, + [402] = 397, + [403] = 397, [404] = 404, - [405] = 404, - [406] = 404, - [407] = 404, + [405] = 405, + [406] = 406, + [407] = 398, [408] = 408, - [409] = 404, - [410] = 398, + [409] = 409, + [410] = 410, [411] = 404, - [412] = 404, + [412] = 412, [413] = 398, - [414] = 398, + [414] = 404, [415] = 404, - [416] = 404, - [417] = 404, - [418] = 404, - [419] = 398, - [420] = 404, - [421] = 404, - [422] = 404, - [423] = 404, - [424] = 398, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 427, - [429] = 426, - [430] = 427, - [431] = 426, - [432] = 426, - [433] = 426, - [434] = 426, - [435] = 427, - [436] = 425, - [437] = 425, - [438] = 425, - [439] = 427, - [440] = 426, - [441] = 427, - [442] = 425, - [443] = 408, - [444] = 427, - [445] = 426, - [446] = 427, - [447] = 426, - [448] = 427, - [449] = 427, - [450] = 425, - [451] = 426, - [452] = 425, - [453] = 425, - [454] = 425, - [455] = 408, - [456] = 425, - [457] = 425, - [458] = 426, - [459] = 427, - [460] = 460, - [461] = 461, - [462] = 460, - [463] = 460, - [464] = 461, - [465] = 460, - [466] = 460, - [467] = 460, - [468] = 460, - [469] = 460, - [470] = 470, - [471] = 460, - [472] = 460, - [473] = 460, - [474] = 470, + [416] = 397, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 419, + [421] = 419, + [422] = 422, + [423] = 423, + [424] = 418, + [425] = 419, + [426] = 418, + [427] = 423, + [428] = 418, + [429] = 422, + [430] = 422, + [431] = 422, + [432] = 423, + [433] = 423, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 437, + [439] = 439, + [440] = 439, + [441] = 439, + [442] = 442, + [443] = 443, + [444] = 443, + [445] = 443, + [446] = 443, + [447] = 443, + [448] = 442, + [449] = 443, + [450] = 443, + [451] = 443, + [452] = 442, + [453] = 442, + [454] = 443, + [455] = 442, + [456] = 443, + [457] = 442, + [458] = 442, + [459] = 442, + [460] = 443, + [461] = 443, + [462] = 462, + [463] = 442, + [464] = 443, + [465] = 442, + [466] = 442, + [467] = 442, + [468] = 443, + [469] = 443, + [470] = 442, + [471] = 443, + [472] = 443, + [473] = 473, + [474] = 474, [475] = 475, - [476] = 476, - [477] = 477, - [478] = 477, - [479] = 408, - [480] = 480, - [481] = 481, - [482] = 481, - [483] = 481, - [484] = 408, - [485] = 485, - [486] = 481, - [487] = 485, - [488] = 488, - [489] = 485, - [490] = 481, - [491] = 481, - [492] = 481, - [493] = 481, - [494] = 485, - [495] = 488, - [496] = 485, - [497] = 481, - [498] = 481, - [499] = 485, - [500] = 485, - [501] = 481, - [502] = 481, - [503] = 485, - [504] = 481, - [505] = 485, - [506] = 481, - [507] = 485, - [508] = 485, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 510, - [513] = 510, - [514] = 510, - [515] = 510, - [516] = 516, - [517] = 510, - [518] = 510, - [519] = 510, - [520] = 520, + [476] = 475, + [477] = 474, + [478] = 473, + [479] = 475, + [480] = 475, + [481] = 462, + [482] = 473, + [483] = 474, + [484] = 475, + [485] = 473, + [486] = 473, + [487] = 473, + [488] = 475, + [489] = 474, + [490] = 475, + [491] = 474, + [492] = 474, + [493] = 474, + [494] = 473, + [495] = 475, + [496] = 475, + [497] = 474, + [498] = 475, + [499] = 474, + [500] = 475, + [501] = 474, + [502] = 474, + [503] = 474, + [504] = 473, + [505] = 473, + [506] = 475, + [507] = 475, + [508] = 474, + [509] = 473, + [510] = 462, + [511] = 473, + [512] = 473, + [513] = 473, + [514] = 514, + [515] = 514, + [516] = 514, + [517] = 514, + [518] = 518, + [519] = 514, + [520] = 514, [521] = 521, - [522] = 510, - [523] = 510, - [524] = 510, - [525] = 510, - [526] = 510, - [527] = 510, - [528] = 528, - [529] = 529, - [530] = 510, - [531] = 531, - [532] = 510, - [533] = 510, + [522] = 514, + [523] = 514, + [524] = 514, + [525] = 514, + [526] = 514, + [527] = 514, + [528] = 518, + [529] = 514, + [530] = 530, + [531] = 521, + [532] = 532, + [533] = 533, [534] = 534, - [535] = 510, - [536] = 510, - [537] = 509, - [538] = 510, - [539] = 528, - [540] = 510, + [535] = 462, + [536] = 533, + [537] = 462, + [538] = 538, + [539] = 539, + [540] = 538, [541] = 541, - [542] = 542, - [543] = 510, - [544] = 510, - [545] = 510, - [546] = 542, - [547] = 510, - [548] = 510, - [549] = 510, - [550] = 550, - [551] = 534, - [552] = 510, - [553] = 510, - [554] = 554, - [555] = 555, - [556] = 542, - [557] = 510, - [558] = 558, - [559] = 558, - [560] = 555, - [561] = 509, - [562] = 555, - [563] = 542, - [564] = 555, - [565] = 555, - [566] = 510, - [567] = 541, - [568] = 516, - [569] = 534, - [570] = 510, - [571] = 531, - [572] = 529, - [573] = 558, - [574] = 520, - [575] = 510, + [542] = 538, + [543] = 539, + [544] = 538, + [545] = 538, + [546] = 539, + [547] = 539, + [548] = 539, + [549] = 539, + [550] = 538, + [551] = 539, + [552] = 539, + [553] = 539, + [554] = 538, + [555] = 538, + [556] = 539, + [557] = 539, + [558] = 539, + [559] = 538, + [560] = 541, + [561] = 539, + [562] = 538, + [563] = 538, + [564] = 538, + [565] = 539, + [566] = 538, + [567] = 539, + [568] = 539, + [569] = 569, + [570] = 569, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 572, + [575] = 575, [576] = 576, - [577] = 555, - [578] = 542, - [579] = 555, - [580] = 510, - [581] = 542, + [577] = 569, + [578] = 575, + [579] = 579, + [580] = 580, + [581] = 581, [582] = 582, - [583] = 510, - [584] = 516, - [585] = 510, - [586] = 541, - [587] = 531, - [588] = 558, - [589] = 529, - [590] = 555, - [591] = 554, - [592] = 558, - [593] = 520, - [594] = 558, - [595] = 510, - [596] = 520, - [597] = 534, - [598] = 510, - [599] = 528, - [600] = 542, - [601] = 516, - [602] = 510, - [603] = 529, - [604] = 531, - [605] = 541, - [606] = 528, - [607] = 510, - [608] = 542, - [609] = 531, - [610] = 541, - [611] = 611, - [612] = 541, - [613] = 555, - [614] = 558, - [615] = 615, - [616] = 616, - [617] = 520, - [618] = 509, - [619] = 529, - [620] = 576, - [621] = 510, - [622] = 531, - [623] = 531, - [624] = 529, - [625] = 554, + [583] = 573, + [584] = 584, + [585] = 585, + [586] = 569, + [587] = 585, + [588] = 579, + [589] = 569, + [590] = 569, + [591] = 572, + [592] = 575, + [593] = 581, + [594] = 580, + [595] = 595, + [596] = 580, + [597] = 572, + [598] = 573, + [599] = 571, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 569, + [604] = 582, + [605] = 569, + [606] = 569, + [607] = 569, + [608] = 584, + [609] = 579, + [610] = 580, + [611] = 569, + [612] = 582, + [613] = 613, + [614] = 573, + [615] = 573, + [616] = 576, + [617] = 613, + [618] = 613, + [619] = 569, + [620] = 569, + [621] = 569, + [622] = 622, + [623] = 623, + [624] = 600, + [625] = 622, [626] = 626, - [627] = 520, - [628] = 628, - [629] = 629, - [630] = 616, - [631] = 541, - [632] = 531, - [633] = 542, - [634] = 555, - [635] = 529, - [636] = 509, - [637] = 629, - [638] = 529, - [639] = 628, - [640] = 516, - [641] = 641, - [642] = 576, - [643] = 510, - [644] = 510, - [645] = 554, - [646] = 528, - [647] = 555, - [648] = 558, - [649] = 520, - [650] = 615, - [651] = 628, - [652] = 616, - [653] = 516, - [654] = 629, - [655] = 616, - [656] = 510, - [657] = 520, - [658] = 629, - [659] = 528, - [660] = 660, - [661] = 534, - [662] = 534, - [663] = 542, - [664] = 558, - [665] = 528, - [666] = 554, - [667] = 509, - [668] = 668, - [669] = 576, - [670] = 554, - [671] = 555, - [672] = 516, - [673] = 510, - [674] = 615, - [675] = 542, - [676] = 628, - [677] = 516, - [678] = 629, - [679] = 616, - [680] = 558, - [681] = 541, + [627] = 627, + [628] = 582, + [629] = 569, + [630] = 585, + [631] = 576, + [632] = 575, + [633] = 602, + [634] = 581, + [635] = 572, + [636] = 576, + [637] = 580, + [638] = 579, + [639] = 569, + [640] = 569, + [641] = 582, + [642] = 569, + [643] = 575, + [644] = 573, + [645] = 581, + [646] = 613, + [647] = 582, + [648] = 613, + [649] = 572, + [650] = 623, + [651] = 569, + [652] = 569, + [653] = 584, + [654] = 569, + [655] = 569, + [656] = 584, + [657] = 569, + [658] = 569, + [659] = 575, + [660] = 585, + [661] = 575, + [662] = 573, + [663] = 582, + [664] = 575, + [665] = 575, + [666] = 579, + [667] = 667, + [668] = 613, + [669] = 572, + [670] = 580, + [671] = 571, + [672] = 613, + [673] = 569, + [674] = 581, + [675] = 569, + [676] = 573, + [677] = 581, + [678] = 585, + [679] = 569, + [680] = 569, + [681] = 576, [682] = 576, - [683] = 509, - [684] = 611, - [685] = 516, - [686] = 531, - [687] = 628, - [688] = 529, - [689] = 520, - [690] = 510, - [691] = 628, - [692] = 516, - [693] = 629, - [694] = 616, - [695] = 541, - [696] = 558, - [697] = 541, - [698] = 615, - [699] = 576, - [700] = 542, - [701] = 554, - [702] = 520, - [703] = 542, - [704] = 582, + [683] = 626, + [684] = 613, + [685] = 571, + [686] = 582, + [687] = 623, + [688] = 622, + [689] = 569, + [690] = 573, + [691] = 569, + [692] = 569, + [693] = 569, + [694] = 569, + [695] = 569, + [696] = 579, + [697] = 569, + [698] = 569, + [699] = 699, + [700] = 571, + [701] = 573, + [702] = 582, + [703] = 582, + [704] = 613, [705] = 705, - [706] = 529, - [707] = 531, - [708] = 516, - [709] = 529, - [710] = 509, - [711] = 528, - [712] = 555, - [713] = 534, - [714] = 511, - [715] = 520, - [716] = 528, - [717] = 555, - [718] = 529, - [719] = 628, - [720] = 531, - [721] = 615, - [722] = 629, - [723] = 576, - [724] = 541, - [725] = 516, - [726] = 616, - [727] = 541, - [728] = 616, - [729] = 520, - [730] = 629, - [731] = 628, - [732] = 509, - [733] = 534, - [734] = 615, - [735] = 509, - [736] = 576, - [737] = 510, - [738] = 554, - [739] = 516, - [740] = 554, - [741] = 534, - [742] = 576, - [743] = 528, - [744] = 510, - [745] = 509, - [746] = 541, - [747] = 550, - [748] = 510, - [749] = 615, - [750] = 626, - [751] = 516, - [752] = 516, - [753] = 615, - [754] = 628, - [755] = 520, - [756] = 531, - [757] = 529, - [758] = 629, - [759] = 616, - [760] = 529, - [761] = 615, - [762] = 541, - [763] = 554, - [764] = 616, - [765] = 615, - [766] = 615, - [767] = 576, - [768] = 542, - [769] = 520, - [770] = 531, - [771] = 541, - [772] = 542, - [773] = 616, - [774] = 555, - [775] = 531, - [776] = 529, - [777] = 629, - [778] = 534, - [779] = 628, - [780] = 509, - [781] = 534, - [782] = 528, - [783] = 576, - [784] = 520, - [785] = 554, - [786] = 531, - [787] = 510, - [788] = 629, - [789] = 628, - [790] = 790, - [791] = 791, - [792] = 790, - [793] = 790, - [794] = 790, - [795] = 791, - [796] = 790, - [797] = 791, - [798] = 791, - [799] = 790, - [800] = 790, - [801] = 790, - [802] = 790, - [803] = 790, - [804] = 790, - [805] = 791, - [806] = 790, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 791, - [812] = 790, - [813] = 790, - [814] = 814, - [815] = 790, - [816] = 791, - [817] = 791, - [818] = 791, - [819] = 819, - [820] = 820, - [821] = 814, - [822] = 822, - [823] = 823, - [824] = 809, - [825] = 791, - [826] = 808, - [827] = 827, - [828] = 828, - [829] = 807, - [830] = 810, - [831] = 831, - [832] = 791, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 791, - [838] = 807, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 814, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 810, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 808, - [858] = 858, - [859] = 809, - [860] = 860, - [861] = 835, - [862] = 823, - [863] = 833, - [864] = 827, - [865] = 822, - [866] = 831, - [867] = 820, - [868] = 836, - [869] = 834, - [870] = 870, - [871] = 828, - [872] = 819, - [873] = 873, - [874] = 831, - [875] = 875, - [876] = 809, - [877] = 841, - [878] = 840, - [879] = 845, - [880] = 808, - [881] = 836, - [882] = 851, - [883] = 883, - [884] = 854, - [885] = 814, - [886] = 822, - [887] = 839, - [888] = 848, - [889] = 843, - [890] = 852, - [891] = 856, - [892] = 834, - [893] = 893, - [894] = 894, - [895] = 807, - [896] = 808, - [897] = 823, - [898] = 858, - [899] = 842, - [900] = 900, - [901] = 860, - [902] = 828, - [903] = 903, - [904] = 833, - [905] = 814, - [906] = 835, - [907] = 810, - [908] = 844, - [909] = 820, - [910] = 809, + [706] = 580, + [707] = 579, + [708] = 705, + [709] = 600, + [710] = 584, + [711] = 711, + [712] = 580, + [713] = 576, + [714] = 600, + [715] = 622, + [716] = 623, + [717] = 623, + [718] = 581, + [719] = 600, + [720] = 622, + [721] = 576, + [722] = 581, + [723] = 575, + [724] = 576, + [725] = 569, + [726] = 622, + [727] = 623, + [728] = 613, + [729] = 571, + [730] = 569, + [731] = 731, + [732] = 569, + [733] = 600, + [734] = 571, + [735] = 572, + [736] = 569, + [737] = 627, + [738] = 569, + [739] = 569, + [740] = 584, + [741] = 572, + [742] = 585, + [743] = 575, + [744] = 571, + [745] = 585, + [746] = 622, + [747] = 581, + [748] = 569, + [749] = 575, + [750] = 623, + [751] = 569, + [752] = 569, + [753] = 571, + [754] = 585, + [755] = 582, + [756] = 573, + [757] = 581, + [758] = 573, + [759] = 579, + [760] = 571, + [761] = 576, + [762] = 613, + [763] = 582, + [764] = 580, + [765] = 582, + [766] = 573, + [767] = 580, + [768] = 613, + [769] = 581, + [770] = 575, + [771] = 579, + [772] = 579, + [773] = 584, + [774] = 579, + [775] = 580, + [776] = 582, + [777] = 600, + [778] = 575, + [779] = 575, + [780] = 585, + [781] = 573, + [782] = 580, + [783] = 582, + [784] = 584, + [785] = 622, + [786] = 585, + [787] = 585, + [788] = 585, + [789] = 585, + [790] = 571, + [791] = 623, + [792] = 575, + [793] = 584, + [794] = 585, + [795] = 581, + [796] = 571, + [797] = 573, + [798] = 582, + [799] = 569, + [800] = 580, + [801] = 579, + [802] = 579, + [803] = 585, + [804] = 579, + [805] = 576, + [806] = 571, + [807] = 573, + [808] = 584, + [809] = 569, + [810] = 569, + [811] = 569, + [812] = 569, + [813] = 572, + [814] = 575, + [815] = 579, + [816] = 579, + [817] = 569, + [818] = 613, + [819] = 600, + [820] = 623, + [821] = 622, + [822] = 571, + [823] = 572, + [824] = 569, + [825] = 584, + [826] = 731, + [827] = 580, + [828] = 580, + [829] = 600, + [830] = 623, + [831] = 613, + [832] = 584, + [833] = 569, + [834] = 622, + [835] = 600, + [836] = 623, + [837] = 585, + [838] = 622, + [839] = 600, + [840] = 623, + [841] = 622, + [842] = 600, + [843] = 569, + [844] = 571, + [845] = 569, + [846] = 569, + [847] = 576, + [848] = 600, + [849] = 623, + [850] = 622, + [851] = 579, + [852] = 580, + [853] = 572, + [854] = 571, + [855] = 572, + [856] = 573, + [857] = 581, + [858] = 585, + [859] = 584, + [860] = 571, + [861] = 582, + [862] = 580, + [863] = 576, + [864] = 864, + [865] = 864, + [866] = 866, + [867] = 864, + [868] = 864, + [869] = 866, + [870] = 866, + [871] = 864, + [872] = 866, + [873] = 864, + [874] = 864, + [875] = 864, + [876] = 864, + [877] = 864, + [878] = 864, + [879] = 879, + [880] = 880, + [881] = 866, + [882] = 882, + [883] = 864, + [884] = 864, + [885] = 864, + [886] = 886, + [887] = 866, + [888] = 864, + [889] = 864, + [890] = 890, + [891] = 864, + [892] = 866, + [893] = 866, + [894] = 866, + [895] = 866, + [896] = 896, + [897] = 866, + [898] = 898, + [899] = 866, + [900] = 886, + [901] = 882, + [902] = 890, + [903] = 879, + [904] = 904, + [905] = 866, + [906] = 866, + [907] = 907, + [908] = 908, + [909] = 880, + [910] = 910, [911] = 911, - [912] = 849, + [912] = 912, [913] = 913, [914] = 914, - [915] = 810, - [916] = 855, - [917] = 827, - [918] = 850, - [919] = 846, - [920] = 819, - [921] = 914, - [922] = 807, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, [923] = 923, [924] = 924, - [925] = 870, - [926] = 926, + [925] = 925, + [926] = 880, [927] = 927, [928] = 928, - [929] = 929, + [929] = 879, [930] = 930, - [931] = 810, - [932] = 844, - [933] = 809, - [934] = 852, - [935] = 808, - [936] = 814, - [937] = 845, - [938] = 807, - [939] = 842, - [940] = 914, - [941] = 840, - [942] = 841, - [943] = 807, - [944] = 833, - [945] = 849, - [946] = 846, - [947] = 851, - [948] = 820, + [931] = 931, + [932] = 890, + [933] = 886, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 882, + [938] = 938, + [939] = 911, + [940] = 907, + [941] = 915, + [942] = 913, + [943] = 898, + [944] = 904, + [945] = 908, + [946] = 912, + [947] = 896, + [948] = 910, [949] = 949, - [950] = 855, - [951] = 951, - [952] = 952, - [953] = 843, - [954] = 856, - [955] = 810, - [956] = 814, - [957] = 809, - [958] = 808, - [959] = 854, - [960] = 848, - [961] = 839, - [962] = 835, - [963] = 850, - [964] = 858, - [965] = 914, - [966] = 860, - [967] = 967, - [968] = 883, - [969] = 969, - [970] = 924, + [950] = 914, + [951] = 918, + [952] = 904, + [953] = 890, + [954] = 954, + [955] = 931, + [956] = 956, + [957] = 914, + [958] = 938, + [959] = 898, + [960] = 960, + [961] = 890, + [962] = 879, + [963] = 930, + [964] = 882, + [965] = 912, + [966] = 966, + [967] = 928, + [968] = 880, + [969] = 886, + [970] = 927, [971] = 971, [972] = 972, - [973] = 973, + [973] = 910, [974] = 974, - [975] = 975, + [975] = 908, [976] = 976, - [977] = 823, + [977] = 921, [978] = 978, - [979] = 834, - [980] = 808, - [981] = 981, - [982] = 808, - [983] = 983, - [984] = 809, - [985] = 810, - [986] = 827, - [987] = 833, - [988] = 820, - [989] = 989, - [990] = 822, - [991] = 991, - [992] = 992, - [993] = 928, - [994] = 828, - [995] = 835, - [996] = 996, - [997] = 997, - [998] = 913, - [999] = 999, + [979] = 935, + [980] = 936, + [981] = 934, + [982] = 922, + [983] = 919, + [984] = 924, + [985] = 917, + [986] = 986, + [987] = 896, + [988] = 879, + [989] = 911, + [990] = 915, + [991] = 907, + [992] = 882, + [993] = 971, + [994] = 913, + [995] = 920, + [996] = 886, + [997] = 923, + [998] = 998, + [999] = 925, [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, + [1001] = 916, + [1002] = 880, + [1003] = 880, [1004] = 1004, - [1005] = 1005, - [1006] = 814, - [1007] = 903, - [1008] = 827, + [1005] = 916, + [1006] = 880, + [1007] = 1007, + [1008] = 936, [1009] = 1009, - [1010] = 807, + [1010] = 1010, [1011] = 1011, - [1012] = 835, - [1013] = 836, - [1014] = 1014, - [1015] = 1015, - [1016] = 807, - [1017] = 1017, + [1012] = 890, + [1013] = 971, + [1014] = 935, + [1015] = 921, + [1016] = 915, + [1017] = 886, [1018] = 1018, - [1019] = 1019, - [1020] = 823, - [1021] = 1021, - [1022] = 834, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, - [1026] = 852, - [1027] = 1027, - [1028] = 1028, - [1029] = 911, - [1030] = 1030, - [1031] = 870, - [1032] = 836, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 900, - [1037] = 923, - [1038] = 1038, + [1019] = 890, + [1020] = 882, + [1021] = 923, + [1022] = 1022, + [1023] = 949, + [1024] = 927, + [1025] = 925, + [1026] = 922, + [1027] = 971, + [1028] = 934, + [1029] = 918, + [1030] = 886, + [1031] = 919, + [1032] = 928, + [1033] = 896, + [1034] = 930, + [1035] = 882, + [1036] = 924, + [1037] = 879, + [1038] = 917, [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 831, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, + [1040] = 911, + [1041] = 879, + [1042] = 938, + [1043] = 931, + [1044] = 920, + [1045] = 886, [1046] = 1046, - [1047] = 819, + [1047] = 1047, [1048] = 1048, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, + [1049] = 908, + [1050] = 912, + [1051] = 914, + [1052] = 904, + [1053] = 896, [1054] = 1054, [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 822, + [1056] = 949, + [1057] = 880, + [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 893, - [1062] = 814, - [1063] = 820, - [1064] = 819, - [1065] = 814, + [1061] = 971, + [1062] = 898, + [1063] = 904, + [1064] = 1064, + [1065] = 1065, [1066] = 1066, - [1067] = 808, + [1067] = 880, [1068] = 1068, - [1069] = 807, - [1070] = 831, - [1071] = 914, - [1072] = 809, + [1069] = 1069, + [1070] = 1070, + [1071] = 915, + [1072] = 913, [1073] = 1073, - [1074] = 833, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 875, + [1074] = 1074, + [1075] = 890, + [1076] = 976, + [1077] = 913, + [1078] = 1078, [1079] = 1079, - [1080] = 1080, - [1081] = 1081, + [1080] = 890, + [1081] = 910, [1082] = 1082, [1083] = 1083, - [1084] = 1084, - [1085] = 873, - [1086] = 810, + [1084] = 966, + [1085] = 1085, + [1086] = 1086, [1087] = 1087, - [1088] = 894, - [1089] = 914, - [1090] = 807, + [1088] = 907, + [1089] = 1089, + [1090] = 1022, [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 828, - [1096] = 810, - [1097] = 809, - [1098] = 820, - [1099] = 807, - [1100] = 833, - [1101] = 1048, - [1102] = 833, - [1103] = 842, - [1104] = 914, - [1105] = 834, - [1106] = 836, - [1107] = 852, - [1108] = 820, - [1109] = 835, - [1110] = 875, - [1111] = 823, - [1112] = 835, - [1113] = 828, - [1114] = 833, - [1115] = 822, - [1116] = 914, - [1117] = 846, - [1118] = 855, - [1119] = 854, - [1120] = 839, - [1121] = 860, - [1122] = 858, - [1123] = 850, - [1124] = 848, - [1125] = 844, - [1126] = 843, - [1127] = 849, - [1128] = 841, - [1129] = 840, - [1130] = 845, - [1131] = 855, - [1132] = 848, - [1133] = 900, - [1134] = 923, - [1135] = 856, - [1136] = 893, - [1137] = 924, - [1138] = 1081, - [1139] = 819, - [1140] = 851, - [1141] = 846, - [1142] = 823, - [1143] = 860, - [1144] = 903, - [1145] = 858, - [1146] = 927, - [1147] = 836, - [1148] = 850, - [1149] = 913, - [1150] = 929, - [1151] = 831, - [1152] = 834, - [1153] = 911, - [1154] = 883, - [1155] = 914, - [1156] = 949, - [1157] = 928, - [1158] = 873, - [1159] = 842, - [1160] = 926, - [1161] = 894, - [1162] = 952, - [1163] = 854, - [1164] = 827, - [1165] = 839, - [1166] = 827, - [1167] = 819, - [1168] = 820, - [1169] = 840, - [1170] = 856, - [1171] = 845, - [1172] = 843, - [1173] = 951, - [1174] = 930, - [1175] = 819, - [1176] = 835, - [1177] = 831, - [1178] = 831, - [1179] = 828, - [1180] = 851, - [1181] = 855, - [1182] = 849, - [1183] = 852, - [1184] = 844, - [1185] = 822, - [1186] = 841, - [1187] = 839, - [1188] = 974, - [1189] = 852, - [1190] = 1081, - [1191] = 835, - [1192] = 855, - [1193] = 1048, - [1194] = 842, - [1195] = 833, - [1196] = 820, - [1197] = 1055, - [1198] = 839, - [1199] = 1052, - [1200] = 846, - [1201] = 1066, - [1202] = 1068, - [1203] = 834, - [1204] = 1040, - [1205] = 820, - [1206] = 835, - [1207] = 854, - [1208] = 870, - [1209] = 836, - [1210] = 827, - [1211] = 1035, - [1212] = 842, - [1213] = 1073, - [1214] = 1034, - [1215] = 1030, - [1216] = 1075, - [1217] = 1009, - [1218] = 1076, - [1219] = 1077, - [1220] = 1041, - [1221] = 823, - [1222] = 819, - [1223] = 1223, - [1224] = 860, - [1225] = 831, - [1226] = 1094, - [1227] = 1093, - [1228] = 834, - [1229] = 1092, - [1230] = 1091, - [1231] = 858, - [1232] = 991, - [1233] = 850, - [1234] = 848, - [1235] = 1084, - [1236] = 844, - [1237] = 1083, - [1238] = 1082, - [1239] = 836, - [1240] = 1080, - [1241] = 1079, - [1242] = 820, - [1243] = 1053, - [1244] = 835, - [1245] = 914, - [1246] = 1054, - [1247] = 1027, - [1248] = 823, - [1249] = 843, - [1250] = 926, - [1251] = 927, - [1252] = 1056, - [1253] = 823, - [1254] = 1028, - [1255] = 852, - [1256] = 851, - [1257] = 827, - [1258] = 929, - [1259] = 849, - [1260] = 833, - [1261] = 1005, - [1262] = 1004, - [1263] = 1001, - [1264] = 1000, - [1265] = 841, - [1266] = 1051, - [1267] = 1046, - [1268] = 1045, - [1269] = 833, - [1270] = 1044, - [1271] = 840, - [1272] = 1059, - [1273] = 1043, - [1274] = 845, - [1275] = 996, - [1276] = 992, - [1277] = 1039, - [1278] = 952, - [1279] = 1050, - [1280] = 989, - [1281] = 1033, - [1282] = 983, - [1283] = 1024, - [1284] = 1048, - [1285] = 1023, - [1286] = 981, - [1287] = 836, - [1288] = 860, - [1289] = 858, - [1290] = 855, - [1291] = 850, - [1292] = 842, - [1293] = 848, - [1294] = 828, - [1295] = 1038, - [1296] = 978, - [1297] = 976, - [1298] = 819, - [1299] = 844, - [1300] = 975, - [1301] = 822, - [1302] = 855, - [1303] = 831, - [1304] = 843, - [1305] = 820, - [1306] = 973, - [1307] = 972, - [1308] = 822, - [1309] = 828, - [1310] = 971, - [1311] = 969, - [1312] = 822, - [1313] = 831, - [1314] = 854, - [1315] = 819, - [1316] = 851, - [1317] = 949, - [1318] = 849, - [1319] = 930, - [1320] = 846, - [1321] = 1081, - [1322] = 828, - [1323] = 856, - [1324] = 833, - [1325] = 835, - [1326] = 841, - [1327] = 856, - [1328] = 834, - [1329] = 951, - [1330] = 1014, - [1331] = 1003, - [1332] = 1002, - [1333] = 833, - [1334] = 999, - [1335] = 840, - [1336] = 827, - [1337] = 845, - [1338] = 997, - [1339] = 967, - [1340] = 1057, - [1341] = 1015, - [1342] = 1017, - [1343] = 1018, - [1344] = 1019, - [1345] = 1021, - [1346] = 1049, - [1347] = 1025, - [1348] = 870, - [1349] = 1060, - [1350] = 852, - [1351] = 1011, - [1352] = 1087, - [1353] = 914, - [1354] = 850, - [1355] = 981, - [1356] = 983, - [1357] = 893, - [1358] = 976, - [1359] = 997, - [1360] = 989, - [1361] = 999, - [1362] = 992, - [1363] = 996, - [1364] = 1000, - [1365] = 1004, - [1366] = 1028, - [1367] = 839, - [1368] = 975, - [1369] = 844, - [1370] = 850, - [1371] = 974, - [1372] = 1002, - [1373] = 973, - [1374] = 972, - [1375] = 855, - [1376] = 971, - [1377] = 969, - [1378] = 1003, - [1379] = 1030, - [1380] = 1034, - [1381] = 1014, - [1382] = 855, - [1383] = 913, - [1384] = 967, - [1385] = 1015, - [1386] = 1035, - [1387] = 1018, - [1388] = 1019, - [1389] = 1021, - [1390] = 1390, - [1391] = 1390, - [1392] = 1059, - [1393] = 1052, - [1394] = 1055, - [1395] = 842, - [1396] = 1094, - [1397] = 1083, - [1398] = 1045, - [1399] = 1005, - [1400] = 1001, - [1401] = 1046, - [1402] = 1077, - [1403] = 855, - [1404] = 1057, - [1405] = 1017, - [1406] = 1223, - [1407] = 894, - [1408] = 914, - [1409] = 848, - [1410] = 858, - [1411] = 846, - [1412] = 1076, - [1413] = 839, - [1414] = 854, - [1415] = 1075, - [1416] = 873, - [1417] = 1051, - [1418] = 846, - [1419] = 1011, - [1420] = 1420, - [1421] = 1420, - [1422] = 1060, - [1423] = 1084, - [1424] = 855, - [1425] = 1068, - [1426] = 1420, - [1427] = 1073, - [1428] = 870, - [1429] = 856, - [1430] = 1066, - [1431] = 854, - [1432] = 843, - [1433] = 911, - [1434] = 883, - [1435] = 1023, - [1436] = 928, - [1437] = 883, - [1438] = 911, - [1439] = 852, - [1440] = 914, - [1441] = 978, - [1442] = 1038, - [1443] = 860, - [1444] = 873, - [1445] = 894, - [1446] = 870, - [1447] = 913, - [1448] = 854, - [1449] = 900, - [1450] = 1009, - [1451] = 1087, - [1452] = 851, - [1453] = 833, - [1454] = 1024, - [1455] = 842, - [1456] = 1390, - [1457] = 856, - [1458] = 849, - [1459] = 875, - [1460] = 1050, - [1461] = 839, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 880, + [1100] = 880, + [1101] = 1101, + [1102] = 882, + [1103] = 1103, + [1104] = 890, + [1105] = 1105, + [1106] = 879, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 911, + [1116] = 908, + [1117] = 1117, + [1118] = 1118, + [1119] = 912, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 886, + [1124] = 882, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 879, + [1129] = 907, + [1130] = 971, + [1131] = 886, + [1132] = 882, + [1133] = 1133, + [1134] = 960, + [1135] = 914, + [1136] = 890, + [1137] = 879, + [1138] = 882, + [1139] = 886, + [1140] = 911, + [1141] = 1141, + [1142] = 978, + [1143] = 1143, + [1144] = 998, + [1145] = 986, + [1146] = 1146, + [1147] = 910, + [1148] = 879, + [1149] = 1149, + [1150] = 898, + [1151] = 921, + [1152] = 1152, + [1153] = 915, + [1154] = 1154, + [1155] = 1155, + [1156] = 956, + [1157] = 890, + [1158] = 1000, + [1159] = 879, + [1160] = 1160, + [1161] = 1161, + [1162] = 896, + [1163] = 1163, + [1164] = 974, + [1165] = 1165, + [1166] = 972, + [1167] = 880, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 882, + [1174] = 1174, + [1175] = 890, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 886, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 954, + [1185] = 1185, + [1186] = 978, + [1187] = 904, + [1188] = 923, + [1189] = 910, + [1190] = 924, + [1191] = 917, + [1192] = 1000, + [1193] = 1122, + [1194] = 930, + [1195] = 976, + [1196] = 938, + [1197] = 913, + [1198] = 910, + [1199] = 928, + [1200] = 971, + [1201] = 1039, + [1202] = 920, + [1203] = 930, + [1204] = 918, + [1205] = 931, + [1206] = 917, + [1207] = 954, + [1208] = 1059, + [1209] = 938, + [1210] = 971, + [1211] = 915, + [1212] = 898, + [1213] = 918, + [1214] = 921, + [1215] = 925, + [1216] = 925, + [1217] = 916, + [1218] = 998, + [1219] = 986, + [1220] = 960, + [1221] = 974, + [1222] = 922, + [1223] = 972, + [1224] = 896, + [1225] = 911, + [1226] = 913, + [1227] = 1004, + [1228] = 915, + [1229] = 908, + [1230] = 971, + [1231] = 934, + [1232] = 907, + [1233] = 914, + [1234] = 919, + [1235] = 922, + [1236] = 912, + [1237] = 911, + [1238] = 956, + [1239] = 920, + [1240] = 908, + [1241] = 919, + [1242] = 898, + [1243] = 916, + [1244] = 921, + [1245] = 923, + [1246] = 1010, + [1247] = 896, + [1248] = 927, + [1249] = 896, + [1250] = 927, + [1251] = 912, + [1252] = 922, + [1253] = 928, + [1254] = 935, + [1255] = 931, + [1256] = 907, + [1257] = 936, + [1258] = 915, + [1259] = 1009, + [1260] = 966, + [1261] = 934, + [1262] = 911, + [1263] = 1007, + [1264] = 890, + [1265] = 904, + [1266] = 1022, + [1267] = 914, + [1268] = 936, + [1269] = 935, + [1270] = 1018, + [1271] = 1011, + [1272] = 914, + [1273] = 908, + [1274] = 924, + [1275] = 1161, + [1276] = 1121, + [1277] = 1097, + [1278] = 1004, + [1279] = 898, + [1280] = 904, + [1281] = 938, + [1282] = 1089, + [1283] = 1126, + [1284] = 1092, + [1285] = 922, + [1286] = 896, + [1287] = 1059, + [1288] = 911, + [1289] = 1083, + [1290] = 1091, + [1291] = 1143, + [1292] = 1146, + [1293] = 910, + [1294] = 1039, + [1295] = 911, + [1296] = 912, + [1297] = 913, + [1298] = 911, + [1299] = 1101, + [1300] = 1058, + [1301] = 921, + [1302] = 910, + [1303] = 930, + [1304] = 914, + [1305] = 934, + [1306] = 1122, + [1307] = 1094, + [1308] = 911, + [1309] = 931, + [1310] = 1074, + [1311] = 1073, + [1312] = 938, + [1313] = 1082, + [1314] = 915, + [1315] = 1078, + [1316] = 971, + [1317] = 912, + [1318] = 1141, + [1319] = 1085, + [1320] = 1165, + [1321] = 908, + [1322] = 1070, + [1323] = 1178, + [1324] = 896, + [1325] = 918, + [1326] = 911, + [1327] = 936, + [1328] = 1079, + [1329] = 1177, + [1330] = 924, + [1331] = 1176, + [1332] = 896, + [1333] = 1174, + [1334] = 911, + [1335] = 908, + [1336] = 1060, + [1337] = 904, + [1338] = 915, + [1339] = 931, + [1340] = 949, + [1341] = 914, + [1342] = 1086, + [1343] = 1122, + [1344] = 913, + [1345] = 1172, + [1346] = 904, + [1347] = 1133, + [1348] = 931, + [1349] = 1114, + [1350] = 1068, + [1351] = 934, + [1352] = 907, + [1353] = 922, + [1354] = 919, + [1355] = 898, + [1356] = 1152, + [1357] = 896, + [1358] = 920, + [1359] = 914, + [1360] = 1066, + [1361] = 923, + [1362] = 1055, + [1363] = 916, + [1364] = 904, + [1365] = 925, + [1366] = 1149, + [1367] = 1125, + [1368] = 1093, + [1369] = 1163, + [1370] = 930, + [1371] = 1064, + [1372] = 1179, + [1373] = 1069, + [1374] = 1117, + [1375] = 1118, + [1376] = 917, + [1377] = 908, + [1378] = 936, + [1379] = 1154, + [1380] = 1120, + [1381] = 935, + [1382] = 908, + [1383] = 904, + [1384] = 1155, + [1385] = 913, + [1386] = 1095, + [1387] = 1387, + [1388] = 898, + [1389] = 924, + [1390] = 927, + [1391] = 910, + [1392] = 1096, + [1393] = 921, + [1394] = 928, + [1395] = 896, + [1396] = 1098, + [1397] = 1113, + [1398] = 1169, + [1399] = 914, + [1400] = 918, + [1401] = 907, + [1402] = 911, + [1403] = 1018, + [1404] = 1011, + [1405] = 923, + [1406] = 915, + [1407] = 1112, + [1408] = 915, + [1409] = 1170, + [1410] = 1059, + [1411] = 908, + [1412] = 1127, + [1413] = 1168, + [1414] = 1111, + [1415] = 916, + [1416] = 907, + [1417] = 1065, + [1418] = 1181, + [1419] = 896, + [1420] = 912, + [1421] = 1182, + [1422] = 913, + [1423] = 1160, + [1424] = 1009, + [1425] = 912, + [1426] = 1007, + [1427] = 898, + [1428] = 1010, + [1429] = 1103, + [1430] = 1105, + [1431] = 1046, + [1432] = 907, + [1433] = 914, + [1434] = 1108, + [1435] = 898, + [1436] = 1183, + [1437] = 949, + [1438] = 917, + [1439] = 910, + [1440] = 915, + [1441] = 919, + [1442] = 1185, + [1443] = 1054, + [1444] = 920, + [1445] = 1107, + [1446] = 1047, + [1447] = 1048, + [1448] = 925, + [1449] = 913, + [1450] = 1087, + [1451] = 922, + [1452] = 907, + [1453] = 912, + [1454] = 1171, + [1455] = 921, + [1456] = 935, + [1457] = 1110, + [1458] = 1109, + [1459] = 910, + [1460] = 915, + [1461] = 927, [1462] = 928, - [1463] = 1033, - [1464] = 841, - [1465] = 1025, - [1466] = 1039, - [1467] = 840, - [1468] = 845, - [1469] = 1043, - [1470] = 923, - [1471] = 914, - [1472] = 870, - [1473] = 845, - [1474] = 840, - [1475] = 855, - [1476] = 841, - [1477] = 991, - [1478] = 851, - [1479] = 852, - [1480] = 1091, - [1481] = 914, - [1482] = 843, - [1483] = 900, - [1484] = 1092, - [1485] = 1040, - [1486] = 928, - [1487] = 842, - [1488] = 1093, - [1489] = 844, - [1490] = 1049, - [1491] = 903, - [1492] = 845, - [1493] = 850, - [1494] = 840, - [1495] = 841, - [1496] = 924, - [1497] = 849, - [1498] = 1420, - [1499] = 1027, - [1500] = 903, - [1501] = 849, - [1502] = 851, - [1503] = 1082, - [1504] = 914, - [1505] = 893, - [1506] = 843, - [1507] = 856, - [1508] = 1053, - [1509] = 852, - [1510] = 1054, - [1511] = 1079, - [1512] = 1056, - [1513] = 924, - [1514] = 848, - [1515] = 1041, - [1516] = 844, - [1517] = 848, - [1518] = 875, - [1519] = 1390, - [1520] = 1044, - [1521] = 858, - [1522] = 846, - [1523] = 860, - [1524] = 923, - [1525] = 852, - [1526] = 855, - [1527] = 858, - [1528] = 860, - [1529] = 1080, - [1530] = 894, - [1531] = 930, - [1532] = 903, - [1533] = 873, - [1534] = 883, - [1535] = 911, - [1536] = 894, - [1537] = 928, - [1538] = 914, - [1539] = 924, - [1540] = 913, - [1541] = 870, - [1542] = 924, - [1543] = 923, - [1544] = 893, - [1545] = 893, - [1546] = 914, - [1547] = 924, - [1548] = 903, - [1549] = 833, - [1550] = 903, - [1551] = 923, - [1552] = 928, - [1553] = 835, - [1554] = 900, - [1555] = 927, - [1556] = 914, - [1557] = 949, - [1558] = 870, - [1559] = 929, - [1560] = 820, - [1561] = 928, - [1562] = 926, - [1563] = 951, - [1564] = 952, - [1565] = 875, - [1566] = 875, - [1567] = 870, - [1568] = 1048, - [1569] = 914, - [1570] = 900, - [1571] = 913, - [1572] = 911, - [1573] = 883, - [1574] = 875, - [1575] = 914, - [1576] = 873, - [1577] = 820, - [1578] = 894, - [1579] = 928, - [1580] = 835, - [1581] = 914, - [1582] = 833, - [1583] = 900, - [1584] = 927, - [1585] = 929, - [1586] = 833, - [1587] = 913, - [1588] = 930, - [1589] = 923, - [1590] = 926, - [1591] = 914, - [1592] = 952, - [1593] = 911, - [1594] = 883, - [1595] = 873, - [1596] = 951, - [1597] = 820, - [1598] = 893, - [1599] = 1081, - [1600] = 949, - [1601] = 835, - [1602] = 928, - [1603] = 914, - [1604] = 900, - [1605] = 911, - [1606] = 1003, - [1607] = 1014, - [1608] = 1091, - [1609] = 926, - [1610] = 1091, - [1611] = 1092, - [1612] = 1093, - [1613] = 1094, - [1614] = 894, - [1615] = 833, - [1616] = 952, - [1617] = 873, - [1618] = 1084, - [1619] = 1083, - [1620] = 1082, - [1621] = 1080, - [1622] = 1079, - [1623] = 991, - [1624] = 1051, - [1625] = 1046, - [1626] = 1050, - [1627] = 1045, - [1628] = 1044, - [1629] = 1043, - [1630] = 1001, - [1631] = 1039, - [1632] = 1033, - [1633] = 1077, - [1634] = 1076, - [1635] = 1005, - [1636] = 883, - [1637] = 911, - [1638] = 1075, - [1639] = 1073, - [1640] = 1024, - [1641] = 1023, - [1642] = 914, - [1643] = 914, - [1644] = 1049, - [1645] = 929, - [1646] = 914, - [1647] = 903, - [1648] = 1060, - [1649] = 1011, - [1650] = 1087, - [1651] = 1068, - [1652] = 1066, - [1653] = 997, - [1654] = 913, - [1655] = 999, - [1656] = 1002, - [1657] = 1003, - [1658] = 1014, - [1659] = 1009, - [1660] = 927, - [1661] = 1081, - [1662] = 924, - [1663] = 833, - [1664] = 835, - [1665] = 1025, - [1666] = 999, - [1667] = 852, - [1668] = 997, - [1669] = 1021, - [1670] = 1019, - [1671] = 1056, - [1672] = 1092, - [1673] = 1054, - [1674] = 1053, - [1675] = 1018, - [1676] = 1015, - [1677] = 914, - [1678] = 1027, - [1679] = 967, - [1680] = 900, - [1681] = 927, - [1682] = 1059, - [1683] = 1005, - [1684] = 929, - [1685] = 1001, - [1686] = 1009, - [1687] = 926, - [1688] = 952, - [1689] = 1084, - [1690] = 875, - [1691] = 875, - [1692] = 928, - [1693] = 1083, - [1694] = 893, - [1695] = 914, - [1696] = 1082, - [1697] = 991, - [1698] = 1048, - [1699] = 1048, - [1700] = 1080, - [1701] = 1021, - [1702] = 1019, - [1703] = 1079, - [1704] = 1018, - [1705] = 820, - [1706] = 1093, - [1707] = 1041, - [1708] = 1015, - [1709] = 820, - [1710] = 1050, - [1711] = 1094, - [1712] = 835, - [1713] = 914, - [1714] = 1081, - [1715] = 928, - [1716] = 967, - [1717] = 914, - [1718] = 1077, - [1719] = 1076, - [1720] = 1081, - [1721] = 1081, - [1722] = 1025, - [1723] = 1057, - [1724] = 1017, - [1725] = 900, - [1726] = 951, - [1727] = 969, - [1728] = 971, - [1729] = 972, - [1730] = 973, - [1731] = 1043, - [1732] = 974, - [1733] = 927, - [1734] = 975, - [1735] = 976, - [1736] = 1075, - [1737] = 1056, - [1738] = 1054, - [1739] = 1053, - [1740] = 969, - [1741] = 971, - [1742] = 978, + [1463] = 922, + [1464] = 1086, + [1465] = 1000, + [1466] = 1058, + [1467] = 922, + [1468] = 918, + [1469] = 934, + [1470] = 911, + [1471] = 936, + [1472] = 935, + [1473] = 928, + [1474] = 954, + [1475] = 921, + [1476] = 927, + [1477] = 1048, + [1478] = 920, + [1479] = 916, + [1480] = 927, + [1481] = 919, + [1482] = 924, + [1483] = 917, + [1484] = 920, + [1485] = 922, + [1486] = 1047, + [1487] = 931, + [1488] = 1107, + [1489] = 1022, + [1490] = 1055, + [1491] = 978, + [1492] = 922, + [1493] = 1060, + [1494] = 928, + [1495] = 919, + [1496] = 938, + [1497] = 966, + [1498] = 1087, + [1499] = 922, + [1500] = 960, + [1501] = 925, + [1502] = 935, + [1503] = 1094, + [1504] = 924, + [1505] = 922, + [1506] = 1506, + [1507] = 976, + [1508] = 936, + [1509] = 1387, + [1510] = 921, + [1511] = 916, + [1512] = 1073, + [1513] = 923, + [1514] = 934, + [1515] = 921, + [1516] = 956, + [1517] = 966, + [1518] = 918, + [1519] = 927, + [1520] = 924, + [1521] = 972, + [1522] = 974, + [1523] = 928, + [1524] = 917, + [1525] = 931, + [1526] = 1526, + [1527] = 920, + [1528] = 922, + [1529] = 1506, + [1530] = 971, + [1531] = 938, + [1532] = 1074, + [1533] = 918, + [1534] = 949, + [1535] = 986, + [1536] = 936, + [1537] = 1526, + [1538] = 930, + [1539] = 1083, + [1540] = 998, + [1541] = 1092, + [1542] = 938, + [1543] = 925, + [1544] = 934, + [1545] = 921, + [1546] = 1022, + [1547] = 1093, + [1548] = 949, + [1549] = 1526, + [1550] = 930, + [1551] = 935, + [1552] = 1095, + [1553] = 1120, + [1554] = 1096, + [1555] = 917, + [1556] = 923, + [1557] = 971, + [1558] = 1141, + [1559] = 928, + [1560] = 916, + [1561] = 1098, + [1562] = 1091, + [1563] = 1103, + [1564] = 1105, + [1565] = 1097, + [1566] = 1046, + [1567] = 918, + [1568] = 1085, + [1569] = 1000, + [1570] = 1108, + [1571] = 1082, + [1572] = 919, + [1573] = 930, + [1574] = 927, + [1575] = 1079, + [1576] = 1109, + [1577] = 1117, + [1578] = 924, + [1579] = 921, + [1580] = 971, + [1581] = 960, + [1582] = 920, + [1583] = 917, + [1584] = 1118, + [1585] = 978, + [1586] = 920, + [1587] = 925, + [1588] = 1110, + [1589] = 931, + [1590] = 1111, + [1591] = 1113, + [1592] = 1114, + [1593] = 924, + [1594] = 1506, + [1595] = 925, + [1596] = 1054, + [1597] = 922, + [1598] = 917, + [1599] = 956, + [1600] = 1022, + [1601] = 919, + [1602] = 1133, + [1603] = 949, + [1604] = 919, + [1605] = 1065, + [1606] = 916, + [1607] = 923, + [1608] = 931, + [1609] = 923, + [1610] = 927, + [1611] = 1143, + [1612] = 1066, + [1613] = 1068, + [1614] = 1070, + [1615] = 1506, + [1616] = 928, + [1617] = 938, + [1618] = 1146, + [1619] = 972, + [1620] = 974, + [1621] = 1078, + [1622] = 935, + [1623] = 954, + [1624] = 1089, + [1625] = 1064, + [1626] = 1121, + [1627] = 986, + [1628] = 1101, + [1629] = 935, + [1630] = 936, + [1631] = 971, + [1632] = 936, + [1633] = 934, + [1634] = 930, + [1635] = 1161, + [1636] = 1165, + [1637] = 1125, + [1638] = 971, + [1639] = 1149, + [1640] = 1169, + [1641] = 1152, + [1642] = 1154, + [1643] = 1155, + [1644] = 1526, + [1645] = 1171, + [1646] = 998, + [1647] = 1185, + [1648] = 921, + [1649] = 1183, + [1650] = 1182, + [1651] = 923, + [1652] = 930, + [1653] = 1181, + [1654] = 1179, + [1655] = 916, + [1656] = 971, + [1657] = 1178, + [1658] = 1177, + [1659] = 1176, + [1660] = 1174, + [1661] = 1126, + [1662] = 1172, + [1663] = 1069, + [1664] = 934, + [1665] = 976, + [1666] = 1170, + [1667] = 1168, + [1668] = 1163, + [1669] = 1160, + [1670] = 938, + [1671] = 931, + [1672] = 1112, + [1673] = 918, + [1674] = 1127, + [1675] = 925, + [1676] = 1010, + [1677] = 1007, + [1678] = 971, + [1679] = 986, + [1680] = 922, + [1681] = 976, + [1682] = 1022, + [1683] = 1011, + [1684] = 971, + [1685] = 978, + [1686] = 976, + [1687] = 1018, + [1688] = 974, + [1689] = 972, + [1690] = 998, + [1691] = 1022, + [1692] = 956, + [1693] = 911, + [1694] = 915, + [1695] = 954, + [1696] = 956, + [1697] = 896, + [1698] = 915, + [1699] = 1000, + [1700] = 949, + [1701] = 976, + [1702] = 971, + [1703] = 896, + [1704] = 960, + [1705] = 966, + [1706] = 1039, + [1707] = 1004, + [1708] = 949, + [1709] = 972, + [1710] = 974, + [1711] = 1000, + [1712] = 949, + [1713] = 986, + [1714] = 1009, + [1715] = 998, + [1716] = 911, + [1717] = 1022, + [1718] = 978, + [1719] = 978, + [1720] = 1010, + [1721] = 960, + [1722] = 954, + [1723] = 1007, + [1724] = 971, + [1725] = 1011, + [1726] = 966, + [1727] = 949, + [1728] = 1018, + [1729] = 954, + [1730] = 971, + [1731] = 896, + [1732] = 971, + [1733] = 915, + [1734] = 960, + [1735] = 956, + [1736] = 1000, + [1737] = 971, + [1738] = 1022, + [1739] = 966, + [1740] = 949, + [1741] = 974, + [1742] = 1039, [1743] = 972, - [1744] = 973, - [1745] = 1038, - [1746] = 929, - [1747] = 981, - [1748] = 983, - [1749] = 930, - [1750] = 974, - [1751] = 975, - [1752] = 976, - [1753] = 978, - [1754] = 1038, - [1755] = 981, - [1756] = 1087, - [1757] = 983, - [1758] = 989, - [1759] = 989, - [1760] = 992, - [1761] = 996, - [1762] = 1000, - [1763] = 1081, - [1764] = 1764, - [1765] = 1073, - [1766] = 926, - [1767] = 952, - [1768] = 992, - [1769] = 852, - [1770] = 1004, - [1771] = 1028, - [1772] = 1048, - [1773] = 1030, - [1774] = 1068, - [1775] = 1034, - [1776] = 996, - [1777] = 1035, - [1778] = 1000, - [1779] = 1011, - [1780] = 1040, - [1781] = 1052, - [1782] = 1004, - [1783] = 1055, - [1784] = 875, - [1785] = 923, - [1786] = 1028, - [1787] = 820, - [1788] = 1057, - [1789] = 914, - [1790] = 1060, - [1791] = 1040, - [1792] = 835, - [1793] = 949, - [1794] = 928, - [1795] = 951, - [1796] = 1049, - [1797] = 833, - [1798] = 1034, - [1799] = 1035, - [1800] = 1041, - [1801] = 833, - [1802] = 1030, - [1803] = 903, - [1804] = 928, - [1805] = 923, - [1806] = 1023, - [1807] = 893, - [1808] = 1024, - [1809] = 1052, - [1810] = 1048, - [1811] = 852, - [1812] = 1055, - [1813] = 1027, - [1814] = 1066, - [1815] = 1048, - [1816] = 924, - [1817] = 930, - [1818] = 923, - [1819] = 1081, - [1820] = 835, - [1821] = 914, - [1822] = 913, - [1823] = 1059, - [1824] = 913, - [1825] = 903, - [1826] = 949, - [1827] = 911, - [1828] = 883, - [1829] = 1033, - [1830] = 1039, - [1831] = 1048, - [1832] = 924, - [1833] = 894, - [1834] = 873, - [1835] = 1017, - [1836] = 873, - [1837] = 894, - [1838] = 949, - [1839] = 883, - [1840] = 951, - [1841] = 820, - [1842] = 1051, - [1843] = 893, - [1844] = 1044, - [1845] = 930, - [1846] = 1046, - [1847] = 1002, - [1848] = 1045, - [1849] = 1091, - [1850] = 1073, - [1851] = 1066, - [1852] = 1068, - [1853] = 1073, - [1854] = 1075, - [1855] = 929, - [1856] = 1076, - [1857] = 1077, - [1858] = 928, - [1859] = 1049, - [1860] = 1094, - [1861] = 820, - [1862] = 1093, - [1863] = 1092, - [1864] = 1017, - [1865] = 1057, - [1866] = 1024, - [1867] = 852, - [1868] = 1023, - [1869] = 1024, - [1870] = 1059, - [1871] = 926, - [1872] = 1033, - [1873] = 952, - [1874] = 1027, - [1875] = 1039, - [1876] = 1084, - [1877] = 1043, - [1878] = 1044, - [1879] = 1045, - [1880] = 1046, - [1881] = 1051, - [1882] = 1025, - [1883] = 1083, - [1884] = 1082, - [1885] = 1080, - [1886] = 1079, - [1887] = 1050, - [1888] = 1030, - [1889] = 952, - [1890] = 926, - [1891] = 1041, - [1892] = 991, - [1893] = 927, - [1894] = 1051, - [1895] = 1017, - [1896] = 1046, - [1897] = 1045, - [1898] = 1044, - [1899] = 1043, - [1900] = 1079, - [1901] = 1080, - [1902] = 1082, - [1903] = 1083, - [1904] = 1084, - [1905] = 1039, - [1906] = 1053, - [1907] = 820, - [1908] = 1054, - [1909] = 1033, - [1910] = 1060, - [1911] = 1011, - [1912] = 1024, - [1913] = 1091, - [1914] = 1092, - [1915] = 1093, - [1916] = 1094, - [1917] = 1023, - [1918] = 1087, - [1919] = 929, - [1920] = 1009, - [1921] = 927, - [1922] = 1040, - [1923] = 1030, - [1924] = 1056, - [1925] = 1060, - [1926] = 1011, - [1927] = 1087, - [1928] = 1057, - [1929] = 997, - [1930] = 1081, - [1931] = 999, - [1932] = 1002, - [1933] = 1003, - [1934] = 835, - [1935] = 1001, - [1936] = 1014, - [1937] = 1764, - [1938] = 1014, - [1939] = 1077, - [1940] = 1076, - [1941] = 1055, - [1942] = 1005, - [1943] = 1003, - [1944] = 1075, - [1945] = 1073, - [1946] = 1002, - [1947] = 999, - [1948] = 1025, - [1949] = 997, - [1950] = 997, - [1951] = 1056, - [1952] = 1054, - [1953] = 1053, - [1954] = 1087, - [1955] = 1050, - [1956] = 991, - [1957] = 1068, - [1958] = 1066, - [1959] = 1052, - [1960] = 999, - [1961] = 976, - [1962] = 1011, - [1963] = 1009, - [1964] = 1002, - [1965] = 833, - [1966] = 1003, - [1967] = 833, - [1968] = 1014, - [1969] = 1027, - [1970] = 1060, - [1971] = 951, - [1972] = 1048, - [1973] = 1055, - [1974] = 930, - [1975] = 1049, - [1976] = 1035, - [1977] = 1001, - [1978] = 1055, - [1979] = 1052, - [1980] = 1005, - [1981] = 1023, - [1982] = 1059, - [1983] = 1034, - [1984] = 1035, - [1985] = 1034, - [1986] = 927, - [1987] = 852, - [1988] = 1033, - [1989] = 1039, - [1990] = 1028, - [1991] = 1043, - [1992] = 1038, - [1993] = 1004, - [1994] = 1044, - [1995] = 1045, - [1996] = 1046, - [1997] = 1000, - [1998] = 996, - [1999] = 835, - [2000] = 1051, - [2001] = 833, - [2002] = 1079, - [2003] = 992, - [2004] = 949, - [2005] = 989, - [2006] = 983, - [2007] = 981, - [2008] = 1038, - [2009] = 978, - [2010] = 976, - [2011] = 975, - [2012] = 974, - [2013] = 973, - [2014] = 972, - [2015] = 1041, - [2016] = 971, - [2017] = 969, - [2018] = 975, - [2019] = 1080, - [2020] = 967, - [2021] = 1082, - [2022] = 835, - [2023] = 1083, - [2024] = 1084, - [2025] = 1091, - [2026] = 1092, - [2027] = 1093, - [2028] = 1094, - [2029] = 1041, - [2030] = 1077, - [2031] = 1076, - [2032] = 1075, - [2033] = 969, - [2034] = 1068, - [2035] = 1066, - [2036] = 1056, - [2037] = 1054, - [2038] = 1015, - [2039] = 1053, - [2040] = 1040, - [2041] = 1018, - [2042] = 1019, - [2043] = 1021, - [2044] = 951, - [2045] = 1021, - [2046] = 1019, - [2047] = 929, - [2048] = 1059, - [2049] = 974, - [2050] = 1018, - [2051] = 1040, - [2052] = 1081, - [2053] = 930, - [2054] = 1081, - [2055] = 1015, - [2056] = 971, - [2057] = 1025, - [2058] = 967, - [2059] = 852, - [2060] = 852, - [2061] = 914, - [2062] = 949, - [2063] = 1027, - [2064] = 969, - [2065] = 1050, - [2066] = 971, - [2067] = 973, - [2068] = 1028, - [2069] = 991, - [2070] = 972, - [2071] = 973, - [2072] = 930, - [2073] = 974, - [2074] = 1005, - [2075] = 972, - [2076] = 1001, - [2077] = 1009, - [2078] = 1057, - [2079] = 951, - [2080] = 1017, - [2081] = 949, - [2082] = 1030, - [2083] = 1049, - [2084] = 1048, - [2085] = 1021, - [2086] = 1019, - [2087] = 975, - [2088] = 976, - [2089] = 978, - [2090] = 914, - [2091] = 1004, - [2092] = 1018, - [2093] = 1015, - [2094] = 978, - [2095] = 967, - [2096] = 1000, - [2097] = 1048, - [2098] = 1000, - [2099] = 1048, - [2100] = 996, - [2101] = 992, - [2102] = 989, - [2103] = 1004, - [2104] = 1223, - [2105] = 1081, - [2106] = 914, - [2107] = 983, - [2108] = 1028, - [2109] = 820, - [2110] = 1034, - [2111] = 1035, - [2112] = 952, - [2113] = 926, - [2114] = 981, - [2115] = 1038, - [2116] = 981, - [2117] = 983, - [2118] = 989, - [2119] = 992, - [2120] = 1052, - [2121] = 996, - [2122] = 1045, - [2123] = 1011, - [2124] = 983, - [2125] = 996, - [2126] = 1002, - [2127] = 1000, - [2128] = 1003, - [2129] = 997, - [2130] = 1004, - [2131] = 1014, - [2132] = 1004, - [2133] = 999, - [2134] = 991, - [2135] = 1002, - [2136] = 981, - [2137] = 1003, - [2138] = 1014, - [2139] = 1000, - [2140] = 1056, - [2141] = 996, - [2142] = 992, - [2143] = 1054, - [2144] = 1053, - [2145] = 1091, - [2146] = 1092, - [2147] = 1028, - [2148] = 1093, - [2149] = 1094, - [2150] = 1038, - [2151] = 978, - [2152] = 976, - [2153] = 999, - [2154] = 975, - [2155] = 974, - [2156] = 973, - [2157] = 972, - [2158] = 1041, - [2159] = 1028, - [2160] = 1038, - [2161] = 971, - [2162] = 969, - [2163] = 992, - [2164] = 1034, - [2165] = 1077, - [2166] = 1076, - [2167] = 1057, - [2168] = 1035, - [2169] = 1017, - [2170] = 1084, - [2171] = 1056, - [2172] = 1009, - [2173] = 981, - [2174] = 1054, - [2175] = 1052, - [2176] = 978, - [2177] = 1053, - [2178] = 1055, - [2179] = 1009, - [2180] = 967, - [2181] = 1030, - [2182] = 1015, - [2183] = 1055, - [2184] = 1075, - [2185] = 991, - [2186] = 1083, - [2187] = 1073, - [2188] = 989, + [1744] = 911, + [1745] = 971, + [1746] = 986, + [1747] = 998, + [1748] = 1022, + [1749] = 1009, + [1750] = 1122, + [1751] = 1059, + [1752] = 1004, + [1753] = 1163, + [1754] = 1000, + [1755] = 1120, + [1756] = 1094, + [1757] = 896, + [1758] = 960, + [1759] = 978, + [1760] = 1022, + [1761] = 915, + [1762] = 1058, + [1763] = 1022, + [1764] = 1000, + [1765] = 976, + [1766] = 954, + [1767] = 1059, + [1768] = 1122, + [1769] = 956, + [1770] = 1054, + [1771] = 1086, + [1772] = 960, + [1773] = 1009, + [1774] = 972, + [1775] = 1087, + [1776] = 974, + [1777] = 1097, + [1778] = 1112, + [1779] = 1069, + [1780] = 1117, + [1781] = 1022, + [1782] = 1118, + [1783] = 986, + [1784] = 976, + [1785] = 971, + [1786] = 911, + [1787] = 998, + [1788] = 921, + [1789] = 971, + [1790] = 1004, + [1791] = 954, + [1792] = 1010, + [1793] = 1118, + [1794] = 1007, + [1795] = 1795, + [1796] = 1039, + [1797] = 966, + [1798] = 1117, + [1799] = 1011, + [1800] = 1018, + [1801] = 911, + [1802] = 896, + [1803] = 915, + [1804] = 1064, + [1805] = 1097, + [1806] = 956, + [1807] = 998, + [1808] = 986, + [1809] = 1094, + [1810] = 974, + [1811] = 1000, + [1812] = 972, + [1813] = 1087, + [1814] = 1048, + [1815] = 1047, + [1816] = 1816, + [1817] = 954, + [1818] = 1107, + [1819] = 1055, + [1820] = 1816, + [1821] = 1060, + [1822] = 971, + [1823] = 1073, + [1824] = 1074, + [1825] = 1083, + [1826] = 1092, + [1827] = 1093, + [1828] = 1095, + [1829] = 960, + [1830] = 966, + [1831] = 1096, + [1832] = 1098, + [1833] = 1103, + [1834] = 1105, + [1835] = 1046, + [1836] = 1108, + [1837] = 1109, + [1838] = 1110, + [1839] = 1111, + [1840] = 915, + [1841] = 1113, + [1842] = 1114, + [1843] = 971, + [1844] = 1009, + [1845] = 1022, + [1846] = 1064, + [1847] = 1121, + [1848] = 1125, + [1849] = 1058, + [1850] = 1126, + [1851] = 1127, + [1852] = 1039, + [1853] = 966, + [1854] = 971, + [1855] = 1004, + [1856] = 971, + [1857] = 978, + [1858] = 1122, + [1859] = 971, + [1860] = 1018, + [1861] = 1011, + [1862] = 966, + [1863] = 960, + [1864] = 921, + [1865] = 911, + [1866] = 956, + [1867] = 1009, + [1868] = 1004, + [1869] = 972, + [1870] = 974, + [1871] = 971, + [1872] = 915, + [1873] = 1122, + [1874] = 1059, + [1875] = 966, + [1876] = 1007, + [1877] = 954, + [1878] = 971, + [1879] = 971, + [1880] = 978, + [1881] = 1133, + [1882] = 1010, + [1883] = 1039, + [1884] = 896, + [1885] = 1143, + [1886] = 1146, + [1887] = 1059, + [1888] = 1149, + [1889] = 976, + [1890] = 1152, + [1891] = 1127, + [1892] = 1154, + [1893] = 1155, + [1894] = 1126, + [1895] = 1816, + [1896] = 1160, + [1897] = 1054, + [1898] = 1086, + [1899] = 1163, + [1900] = 1168, + [1901] = 911, + [1902] = 1125, + [1903] = 1170, + [1904] = 986, + [1905] = 1121, + [1906] = 1120, + [1907] = 998, + [1908] = 1114, + [1909] = 1133, + [1910] = 976, + [1911] = 1122, + [1912] = 978, + [1913] = 1113, + [1914] = 1143, + [1915] = 1022, + [1916] = 1146, + [1917] = 971, + [1918] = 998, + [1919] = 960, + [1920] = 1149, + [1921] = 1059, + [1922] = 1152, + [1923] = 1112, + [1924] = 1122, + [1925] = 986, + [1926] = 1172, + [1927] = 1174, + [1928] = 1176, + [1929] = 1177, + [1930] = 1178, + [1931] = 1154, + [1932] = 1069, + [1933] = 1155, + [1934] = 1179, + [1935] = 1181, + [1936] = 1182, + [1937] = 1111, + [1938] = 1160, + [1939] = 1168, + [1940] = 1170, + [1941] = 1110, + [1942] = 1000, + [1943] = 1183, + [1944] = 976, + [1945] = 1022, + [1946] = 1185, + [1947] = 1171, + [1948] = 921, + [1949] = 998, + [1950] = 1169, + [1951] = 1172, + [1952] = 974, + [1953] = 972, + [1954] = 1174, + [1955] = 986, + [1956] = 1176, + [1957] = 1177, + [1958] = 1178, + [1959] = 1109, + [1960] = 1108, + [1961] = 1165, + [1962] = 1161, + [1963] = 1046, + [1964] = 1018, + [1965] = 971, + [1966] = 1059, + [1967] = 1011, + [1968] = 1179, + [1969] = 1181, + [1970] = 1182, + [1971] = 1183, + [1972] = 1185, + [1973] = 1171, + [1974] = 1101, + [1975] = 1091, + [1976] = 1000, + [1977] = 1105, + [1978] = 1103, + [1979] = 1169, + [1980] = 1098, + [1981] = 1165, + [1982] = 1089, + [1983] = 1161, + [1984] = 1122, + [1985] = 1096, + [1986] = 1095, + [1987] = 1093, + [1988] = 1092, + [1989] = 1083, + [1990] = 1074, + [1991] = 971, + [1992] = 1141, + [1993] = 1073, + [1994] = 974, + [1995] = 1078, + [1996] = 972, + [1997] = 1007, + [1998] = 1010, + [1999] = 1101, + [2000] = 956, + [2001] = 1091, + [2002] = 896, + [2003] = 1070, + [2004] = 1068, + [2005] = 1816, + [2006] = 1066, + [2007] = 978, + [2008] = 1089, + [2009] = 1065, + [2010] = 1141, + [2011] = 1060, + [2012] = 1055, + [2013] = 1078, + [2014] = 956, + [2015] = 1085, + [2016] = 1082, + [2017] = 1070, + [2018] = 1079, + [2019] = 1068, + [2020] = 1066, + [2021] = 1065, + [2022] = 1107, + [2023] = 1085, + [2024] = 1047, + [2025] = 1079, + [2026] = 1082, + [2027] = 954, + [2028] = 1059, + [2029] = 1048, + [2030] = 1010, + [2031] = 1176, + [2032] = 1141, + [2033] = 1039, + [2034] = 921, + [2035] = 1004, + [2036] = 1387, + [2037] = 1127, + [2038] = 1126, + [2039] = 1122, + [2040] = 1125, + [2041] = 1118, + [2042] = 1121, + [2043] = 1085, + [2044] = 1082, + [2045] = 1079, + [2046] = 1117, + [2047] = 1009, + [2048] = 1097, + [2049] = 1795, + [2050] = 1087, + [2051] = 1114, + [2052] = 880, + [2053] = 1113, + [2054] = 1111, + [2055] = 1110, + [2056] = 1065, + [2057] = 2057, + [2058] = 1066, + [2059] = 1109, + [2060] = 1068, + [2061] = 1070, + [2062] = 1059, + [2063] = 1064, + [2064] = 1078, + [2065] = 1108, + [2066] = 1046, + [2067] = 1105, + [2068] = 1103, + [2069] = 1098, + [2070] = 1096, + [2071] = 1095, + [2072] = 1093, + [2073] = 1092, + [2074] = 1083, + [2075] = 1074, + [2076] = 1073, + [2077] = 1089, + [2078] = 1091, + [2079] = 1101, + [2080] = 1059, + [2081] = 1816, + [2082] = 1161, + [2083] = 1165, + [2084] = 1009, + [2085] = 1060, + [2086] = 1055, + [2087] = 1107, + [2088] = 1048, + [2089] = 1047, + [2090] = 1039, + [2091] = 1048, + [2092] = 1059, + [2093] = 907, + [2094] = 2057, + [2095] = 1009, + [2096] = 1169, + [2097] = 1171, + [2098] = 1185, + [2099] = 1183, + [2100] = 1118, + [2101] = 886, + [2102] = 882, + [2103] = 1182, + [2104] = 1181, + [2105] = 1179, + [2106] = 879, + [2107] = 1073, + [2108] = 1074, + [2109] = 1004, + [2110] = 1178, + [2111] = 1177, + [2112] = 1176, + [2113] = 1174, + [2114] = 1083, + [2115] = 1094, + [2116] = 1092, + [2117] = 1122, + [2118] = 1172, + [2119] = 1093, + [2120] = 1018, + [2121] = 1011, + [2122] = 1095, + [2123] = 911, + [2124] = 1096, + [2125] = 896, + [2126] = 1170, + [2127] = 1168, + [2128] = 915, + [2129] = 1069, + [2130] = 1122, + [2131] = 1112, + [2132] = 1163, + [2133] = 1098, + [2134] = 911, + [2135] = 1117, + [2136] = 1160, + [2137] = 1022, + [2138] = 1103, + [2139] = 1155, + [2140] = 1154, + [2141] = 1086, + [2142] = 1054, + [2143] = 1105, + [2144] = 1007, + [2145] = 1152, + [2146] = 1149, + [2147] = 1816, + [2148] = 1046, + [2149] = 1108, + [2150] = 1010, + [2151] = 1146, + [2152] = 1143, + [2153] = 1018, + [2154] = 1816, + [2155] = 1011, + [2156] = 1004, + [2157] = 1010, + [2158] = 1133, + [2159] = 1141, + [2160] = 1064, + [2161] = 1120, + [2162] = 1007, + [2163] = 1064, + [2164] = 2057, + [2165] = 1109, + [2166] = 1059, + [2167] = 1122, + [2168] = 1085, + [2169] = 1082, + [2170] = 1097, + [2171] = 1079, + [2172] = 921, + [2173] = 1058, + [2174] = 1118, + [2175] = 1007, + [2176] = 896, + [2177] = 1117, + [2178] = 1127, + [2179] = 1126, + [2180] = 1011, + [2181] = 1125, + [2182] = 1010, + [2183] = 1121, + [2184] = 1018, + [2185] = 1059, + [2186] = 1009, + [2187] = 1060, + [2188] = 1009, [2189] = 1018, - [2190] = 1082, - [2191] = 1019, - [2192] = 1030, - [2193] = 976, - [2194] = 1223, - [2195] = 975, - [2196] = 1050, - [2197] = 1068, - [2198] = 1027, - [2199] = 1021, - [2200] = 1066, - [2201] = 983, - [2202] = 1040, - [2203] = 1038, - [2204] = 1049, - [2205] = 1028, - [2206] = 978, - [2207] = 974, - [2208] = 997, - [2209] = 1087, - [2210] = 2210, - [2211] = 976, - [2212] = 975, - [2213] = 974, - [2214] = 973, - [2215] = 1059, - [2216] = 1027, - [2217] = 973, - [2218] = 972, - [2219] = 1011, - [2220] = 971, - [2221] = 1027, - [2222] = 1060, - [2223] = 969, - [2224] = 1080, - [2225] = 1017, - [2226] = 972, - [2227] = 1025, - [2228] = 971, - [2229] = 852, - [2230] = 969, - [2231] = 852, - [2232] = 1079, - [2233] = 981, - [2234] = 983, - [2235] = 1034, - [2236] = 967, - [2237] = 1040, - [2238] = 1053, - [2239] = 1054, - [2240] = 1015, - [2241] = 1056, - [2242] = 1018, - [2243] = 1049, - [2244] = 1019, - [2245] = 1035, - [2246] = 1021, - [2247] = 989, - [2248] = 1057, - [2249] = 967, - [2250] = 1015, - [2251] = 1040, - [2252] = 1005, - [2253] = 2210, - [2254] = 1052, - [2255] = 1001, - [2256] = 1018, - [2257] = 1059, - [2258] = 2210, - [2259] = 1023, - [2260] = 1024, - [2261] = 1019, - [2262] = 1033, - [2263] = 1021, - [2264] = 1039, - [2265] = 1043, - [2266] = 1044, - [2267] = 1045, - [2268] = 1057, - [2269] = 1017, - [2270] = 1025, - [2271] = 1046, - [2272] = 1001, - [2273] = 1005, - [2274] = 1051, - [2275] = 1052, - [2276] = 1051, - [2277] = 1025, - [2278] = 1046, - [2279] = 1079, - [2280] = 1049, - [2281] = 1001, - [2282] = 1080, - [2283] = 852, - [2284] = 1082, - [2285] = 1066, - [2286] = 1068, - [2287] = 1014, - [2288] = 1003, - [2289] = 1002, - [2290] = 1005, - [2291] = 999, - [2292] = 1050, - [2293] = 997, - [2294] = 1004, - [2295] = 991, - [2296] = 1000, - [2297] = 1083, - [2298] = 1084, - [2299] = 1073, - [2300] = 1075, - [2301] = 1076, - [2302] = 1045, - [2303] = 1077, - [2304] = 1091, - [2305] = 1092, - [2306] = 1093, - [2307] = 1055, - [2308] = 1094, - [2309] = 1044, - [2310] = 1087, - [2311] = 989, - [2312] = 1060, - [2313] = 1009, - [2314] = 1043, - [2315] = 2210, - [2316] = 1077, - [2317] = 1076, - [2318] = 1087, - [2319] = 1035, - [2320] = 1011, - [2321] = 1075, - [2322] = 1094, - [2323] = 1093, - [2324] = 1073, - [2325] = 1092, - [2326] = 1091, - [2327] = 1060, - [2328] = 1068, - [2329] = 1084, - [2330] = 1083, - [2331] = 1066, + [2190] = 1011, + [2191] = 1047, + [2192] = 1107, + [2193] = 1097, + [2194] = 1114, + [2195] = 1004, + [2196] = 1113, + [2197] = 1111, + [2198] = 1110, + [2199] = 1109, + [2200] = 1108, + [2201] = 1122, + [2202] = 1039, + [2203] = 1046, + [2204] = 915, + [2205] = 1065, + [2206] = 1066, + [2207] = 1068, + [2208] = 1110, + [2209] = 1058, + [2210] = 1007, + [2211] = 1087, + [2212] = 1070, + [2213] = 1120, + [2214] = 1111, + [2215] = 1141, + [2216] = 1105, + [2217] = 1103, + [2218] = 1098, + [2219] = 1096, + [2220] = 1095, + [2221] = 1093, + [2222] = 1092, + [2223] = 1083, + [2224] = 1113, + [2225] = 1074, + [2226] = 1073, + [2227] = 1078, + [2228] = 1094, + [2229] = 1060, + [2230] = 1011, + [2231] = 1018, + [2232] = 1055, + [2233] = 1107, + [2234] = 1047, + [2235] = 896, + [2236] = 1816, + [2237] = 1085, + [2238] = 1082, + [2239] = 1114, + [2240] = 1079, + [2241] = 1048, + [2242] = 2057, + [2243] = 971, + [2244] = 911, + [2245] = 921, + [2246] = 1089, + [2247] = 1091, + [2248] = 1101, + [2249] = 1059, + [2250] = 1122, + [2251] = 911, + [2252] = 1094, + [2253] = 1087, + [2254] = 1004, + [2255] = 1161, + [2256] = 1165, + [2257] = 1133, + [2258] = 1055, + [2259] = 1069, + [2260] = 1112, + [2261] = 896, + [2262] = 971, + [2263] = 1054, + [2264] = 1169, + [2265] = 1171, + [2266] = 1185, + [2267] = 1007, + [2268] = 1816, + [2269] = 971, + [2270] = 1183, + [2271] = 1182, + [2272] = 1181, + [2273] = 1179, + [2274] = 1069, + [2275] = 1143, + [2276] = 904, + [2277] = 1058, + [2278] = 915, + [2279] = 915, + [2280] = 1146, + [2281] = 896, + [2282] = 1112, + [2283] = 971, + [2284] = 1816, + [2285] = 1149, + [2286] = 1065, + [2287] = 1066, + [2288] = 1068, + [2289] = 1070, + [2290] = 1152, + [2291] = 1133, + [2292] = 1078, + [2293] = 1086, + [2294] = 1154, + [2295] = 1143, + [2296] = 1146, + [2297] = 1010, + [2298] = 1149, + [2299] = 1152, + [2300] = 1155, + [2301] = 1120, + [2302] = 1127, + [2303] = 1178, + [2304] = 915, + [2305] = 1177, + [2306] = 1126, + [2307] = 1089, + [2308] = 1091, + [2309] = 1101, + [2310] = 1154, + [2311] = 1054, + [2312] = 1086, + [2313] = 913, + [2314] = 921, + [2315] = 1155, + [2316] = 1816, + [2317] = 911, + [2318] = 1160, + [2319] = 1163, + [2320] = 1125, + [2321] = 1161, + [2322] = 1165, + [2323] = 1169, + [2324] = 1171, + [2325] = 1185, + [2326] = 1183, + [2327] = 1182, + [2328] = 1181, + [2329] = 1179, + [2330] = 1168, + [2331] = 1170, [2332] = 1039, - [2333] = 1082, - [2334] = 996, - [2335] = 1080, - [2336] = 992, - [2337] = 1023, - [2338] = 1024, - [2339] = 1050, - [2340] = 1034, - [2341] = 1033, - [2342] = 1059, - [2343] = 1079, - [2344] = 1039, - [2345] = 1043, - [2346] = 1044, - [2347] = 1033, - [2348] = 1046, - [2349] = 1051, - [2350] = 1030, - [2351] = 1041, - [2352] = 1024, - [2353] = 1023, - [2354] = 1041, - [2355] = 2355, - [2356] = 810, - [2357] = 809, - [2358] = 2210, - [2359] = 808, - [2360] = 2210, - [2361] = 2210, - [2362] = 2355, - [2363] = 2210, - [2364] = 823, - [2365] = 822, - [2366] = 828, - [2367] = 2210, - [2368] = 2210, - [2369] = 2355, - [2370] = 2210, - [2371] = 814, - [2372] = 2355, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 827, - [2377] = 2355, - [2378] = 2373, - [2379] = 2355, - [2380] = 2374, - [2381] = 2374, - [2382] = 2373, - [2383] = 2374, - [2384] = 846, - [2385] = 2210, - [2386] = 2375, - [2387] = 2355, - [2388] = 2355, - [2389] = 2375, - [2390] = 2374, - [2391] = 2373, - [2392] = 2373, + [2333] = 1121, + [2334] = 971, + [2335] = 1178, + [2336] = 1177, + [2337] = 1176, + [2338] = 1174, + [2339] = 1172, + [2340] = 1039, + [2341] = 1172, + [2342] = 1170, + [2343] = 1168, + [2344] = 1163, + [2345] = 1160, + [2346] = 1174, + [2347] = 1065, + [2348] = 907, + [2349] = 1127, + [2350] = 1126, + [2351] = 1073, + [2352] = 1074, + [2353] = 1064, + [2354] = 1133, + [2355] = 1092, + [2356] = 2057, + [2357] = 1125, + [2358] = 1083, + [2359] = 1055, + [2360] = 1121, + [2361] = 925, + [2362] = 1098, + [2363] = 1058, + [2364] = 1126, + [2365] = 1121, + [2366] = 1092, + [2367] = 1064, + [2368] = 1060, + [2369] = 1093, + [2370] = 1127, + [2371] = 1095, + [2372] = 1141, + [2373] = 1125, + [2374] = 1120, + [2375] = 1047, + [2376] = 1107, + [2377] = 1096, + [2378] = 1097, + [2379] = 1141, + [2380] = 1048, + [2381] = 1069, + [2382] = 1098, + [2383] = 1114, + [2384] = 1103, + [2385] = 1105, + [2386] = 1113, + [2387] = 921, + [2388] = 1141, + [2389] = 921, + [2390] = 1058, + [2391] = 1143, + [2392] = 1143, [2393] = 2393, - [2394] = 810, - [2395] = 822, - [2396] = 809, - [2397] = 2355, - [2398] = 2398, - [2399] = 2399, - [2400] = 2375, - [2401] = 2373, - [2402] = 2374, - [2403] = 2373, - [2404] = 2210, - [2405] = 2374, - [2406] = 2375, - [2407] = 808, - [2408] = 2355, - [2409] = 2375, - [2410] = 823, - [2411] = 2375, - [2412] = 814, - [2413] = 854, - [2414] = 820, - [2415] = 2373, - [2416] = 2355, - [2417] = 2373, - [2418] = 835, - [2419] = 2374, - [2420] = 2373, - [2421] = 828, - [2422] = 2374, - [2423] = 2374, - [2424] = 2375, - [2425] = 2425, - [2426] = 2355, - [2427] = 840, - [2428] = 2428, - [2429] = 2429, - [2430] = 2429, - [2431] = 2355, - [2432] = 827, - [2433] = 2429, - [2434] = 834, - [2435] = 836, - [2436] = 2425, - [2437] = 2429, - [2438] = 2438, - [2439] = 2425, - [2440] = 2440, - [2441] = 839, - [2442] = 2429, - [2443] = 2425, + [2394] = 1046, + [2395] = 1108, + [2396] = 1109, + [2397] = 1110, + [2398] = 1111, + [2399] = 1111, + [2400] = 2057, + [2401] = 1112, + [2402] = 921, + [2403] = 1146, + [2404] = 1113, + [2405] = 1182, + [2406] = 1114, + [2407] = 1146, + [2408] = 1064, + [2409] = 1086, + [2410] = 938, + [2411] = 1054, + [2412] = 1133, + [2413] = 1085, + [2414] = 1110, + [2415] = 1109, + [2416] = 1121, + [2417] = 1125, + [2418] = 1082, + [2419] = 1079, + [2420] = 1087, + [2421] = 2421, + [2422] = 1083, + [2423] = 1181, + [2424] = 1149, + [2425] = 1152, + [2426] = 1108, + [2427] = 1085, + [2428] = 1046, + [2429] = 1126, + [2430] = 1154, + [2431] = 1155, + [2432] = 1133, + [2433] = 1105, + [2434] = 1082, + [2435] = 1127, + [2436] = 1169, + [2437] = 1103, + [2438] = 1110, + [2439] = 904, + [2440] = 1097, + [2441] = 1085, + [2442] = 1096, + [2443] = 1082, [2444] = 2444, - [2445] = 2429, - [2446] = 852, - [2447] = 2425, - [2448] = 2429, - [2449] = 2429, - [2450] = 846, - [2451] = 2393, - [2452] = 2398, - [2453] = 2429, - [2454] = 2454, - [2455] = 820, - [2456] = 2425, - [2457] = 2457, - [2458] = 2429, - [2459] = 2425, - [2460] = 2429, - [2461] = 2425, - [2462] = 854, - [2463] = 2463, - [2464] = 835, - [2465] = 2399, - [2466] = 2466, - [2467] = 851, - [2468] = 852, - [2469] = 2463, - [2470] = 856, - [2471] = 2457, - [2472] = 860, - [2473] = 2438, - [2474] = 2466, - [2475] = 834, - [2476] = 840, - [2477] = 843, - [2478] = 858, - [2479] = 2428, - [2480] = 2444, - [2481] = 2440, - [2482] = 836, - [2483] = 841, - [2484] = 844, - [2485] = 2454, - [2486] = 839, - [2487] = 850, - [2488] = 848, - [2489] = 849, - [2490] = 845, - [2491] = 858, - [2492] = 843, - [2493] = 845, - [2494] = 841, - [2495] = 851, - [2496] = 850, - [2497] = 860, - [2498] = 849, - [2499] = 856, - [2500] = 848, - [2501] = 844, - [2502] = 2502, + [2445] = 2444, + [2446] = 1074, + [2447] = 1149, + [2448] = 2393, + [2449] = 2444, + [2450] = 1095, + [2451] = 1079, + [2452] = 1079, + [2453] = 1093, + [2454] = 1092, + [2455] = 1127, + [2456] = 1126, + [2457] = 1058, + [2458] = 1114, + [2459] = 1125, + [2460] = 1121, + [2461] = 1064, + [2462] = 1094, + [2463] = 1083, + [2464] = 1074, + [2465] = 1113, + [2466] = 1387, + [2467] = 1112, + [2468] = 1073, + [2469] = 1111, + [2470] = 1110, + [2471] = 1109, + [2472] = 1171, + [2473] = 1160, + [2474] = 1163, + [2475] = 1168, + [2476] = 1170, + [2477] = 1108, + [2478] = 1172, + [2479] = 1046, + [2480] = 1152, + [2481] = 2444, + [2482] = 2393, + [2483] = 1174, + [2484] = 1120, + [2485] = 2444, + [2486] = 1066, + [2487] = 1176, + [2488] = 1177, + [2489] = 1178, + [2490] = 1118, + [2491] = 1105, + [2492] = 1068, + [2493] = 1103, + [2494] = 1098, + [2495] = 1070, + [2496] = 2393, + [2497] = 1117, + [2498] = 1096, + [2499] = 1095, + [2500] = 2444, + [2501] = 1069, + [2502] = 1078, [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2504, - [2508] = 2502, - [2509] = 2509, - [2510] = 2504, - [2511] = 2503, - [2512] = 2512, - [2513] = 2505, - [2514] = 2506, - [2515] = 2505, - [2516] = 2503, - [2517] = 2509, - [2518] = 2505, - [2519] = 2503, - [2520] = 2503, - [2521] = 2502, - [2522] = 2506, - [2523] = 2503, - [2524] = 2512, - [2525] = 2502, - [2526] = 2503, - [2527] = 2509, - [2528] = 2502, - [2529] = 2502, - [2530] = 2512, - [2531] = 2509, - [2532] = 2506, - [2533] = 2503, - [2534] = 2506, - [2535] = 2509, - [2536] = 2504, - [2537] = 2504, - [2538] = 2504, - [2539] = 2509, - [2540] = 2512, - [2541] = 2505, - [2542] = 2506, - [2543] = 2503, - [2544] = 2512, - [2545] = 2512, - [2546] = 2502, - [2547] = 2506, - [2548] = 2502, - [2549] = 2505, - [2550] = 2503, - [2551] = 2506, - [2552] = 2509, - [2553] = 2506, - [2554] = 2509, - [2555] = 2502, - [2556] = 2505, - [2557] = 2504, - [2558] = 2506, - [2559] = 2512, - [2560] = 2512, - [2561] = 2512, - [2562] = 2502, - [2563] = 2506, - [2564] = 2505, - [2565] = 2505, - [2566] = 2504, - [2567] = 2505, - [2568] = 2512, - [2569] = 2509, - [2570] = 2502, - [2571] = 2504, - [2572] = 2512, - [2573] = 2505, - [2574] = 2504, - [2575] = 2509, - [2576] = 2503, - [2577] = 2504, - [2578] = 2578, - [2579] = 2509, - [2580] = 2580, - [2581] = 790, - [2582] = 2582, - [2583] = 2580, - [2584] = 2582, - [2585] = 2580, - [2586] = 2586, - [2587] = 2580, - [2588] = 2582, - [2589] = 2582, - [2590] = 2582, - [2591] = 2582, - [2592] = 2580, - [2593] = 2582, - [2594] = 2580, - [2595] = 2595, - [2596] = 2578, - [2597] = 2582, - [2598] = 2580, - [2599] = 2580, - [2600] = 2600, - [2601] = 2601, - [2602] = 2600, - [2603] = 2603, - [2604] = 2604, - [2605] = 2603, - [2606] = 2603, - [2607] = 2601, - [2608] = 2601, - [2609] = 2609, - [2610] = 2600, - [2611] = 2601, - [2612] = 2603, - [2613] = 2601, - [2614] = 2614, - [2615] = 2601, - [2616] = 2616, - [2617] = 2600, - [2618] = 2600, - [2619] = 2601, + [2504] = 1089, + [2505] = 1060, + [2506] = 1055, + [2507] = 1087, + [2508] = 1048, + [2509] = 1091, + [2510] = 1101, + [2511] = 921, + [2512] = 1093, + [2513] = 1047, + [2514] = 1154, + [2515] = 1107, + [2516] = 1179, + [2517] = 1181, + [2518] = 1182, + [2519] = 1183, + [2520] = 1185, + [2521] = 1133, + [2522] = 1054, + [2523] = 1055, + [2524] = 1155, + [2525] = 1143, + [2526] = 1146, + [2527] = 1117, + [2528] = 1149, + [2529] = 1152, + [2530] = 1092, + [2531] = 880, + [2532] = 1086, + [2533] = 1078, + [2534] = 1083, + [2535] = 1169, + [2536] = 1165, + [2537] = 1161, + [2538] = 1118, + [2539] = 1073, + [2540] = 1161, + [2541] = 2057, + [2542] = 2393, + [2543] = 1143, + [2544] = 1112, + [2545] = 1074, + [2546] = 1095, + [2547] = 1060, + [2548] = 1087, + [2549] = 1114, + [2550] = 1118, + [2551] = 1160, + [2552] = 1073, + [2553] = 1165, + [2554] = 1154, + [2555] = 1069, + [2556] = 1127, + [2557] = 1126, + [2558] = 1155, + [2559] = 2444, + [2560] = 1117, + [2561] = 1113, + [2562] = 1179, + [2563] = 1112, + [2564] = 1111, + [2565] = 1125, + [2566] = 1097, + [2567] = 1146, + [2568] = 1163, + [2569] = 1171, + [2570] = 1121, + [2571] = 2503, + [2572] = 1185, + [2573] = 2057, + [2574] = 1183, + [2575] = 1101, + [2576] = 1091, + [2577] = 1182, + [2578] = 1089, + [2579] = 1168, + [2580] = 1181, + [2581] = 1118, + [2582] = 1120, + [2583] = 1107, + [2584] = 1054, + [2585] = 1065, + [2586] = 1170, + [2587] = 2503, + [2588] = 1114, + [2589] = 1047, + [2590] = 1117, + [2591] = 1179, + [2592] = 2592, + [2593] = 1172, + [2594] = 1070, + [2595] = 1048, + [2596] = 1068, + [2597] = 1174, + [2598] = 1176, + [2599] = 1066, + [2600] = 1149, + [2601] = 1177, + [2602] = 1178, + [2603] = 1065, + [2604] = 915, + [2605] = 1152, + [2606] = 1113, + [2607] = 2503, + [2608] = 1087, + [2609] = 1078, + [2610] = 1178, + [2611] = 1177, + [2612] = 1176, + [2613] = 1174, + [2614] = 1172, + [2615] = 2057, + [2616] = 896, + [2617] = 1154, + [2618] = 1155, + [2619] = 1111, [2620] = 2620, - [2621] = 2604, - [2622] = 2622, - [2623] = 2601, - [2624] = 2604, - [2625] = 2603, - [2626] = 2600, - [2627] = 2627, - [2628] = 2604, - [2629] = 2603, - [2630] = 2601, - [2631] = 2604, - [2632] = 2600, - [2633] = 2633, - [2634] = 2603, - [2635] = 2635, - [2636] = 2601, - [2637] = 2603, - [2638] = 2603, - [2639] = 2604, - [2640] = 2604, - [2641] = 2604, - [2642] = 2600, - [2643] = 2604, - [2644] = 2604, - [2645] = 2603, - [2646] = 2646, - [2647] = 2601, - [2648] = 2648, - [2649] = 2603, - [2650] = 2650, - [2651] = 2603, - [2652] = 2652, - [2653] = 914, - [2654] = 2601, - [2655] = 2655, - [2656] = 2604, - [2657] = 2604, - [2658] = 2658, - [2659] = 2622, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2658, - [2664] = 2660, - [2665] = 2665, - [2666] = 2660, - [2667] = 2662, - [2668] = 2668, - [2669] = 2669, - [2670] = 2658, - [2671] = 2671, - [2672] = 2672, - [2673] = 2661, - [2674] = 2674, - [2675] = 2671, - [2676] = 2676, - [2677] = 2662, - [2678] = 2658, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2682, - [2683] = 2683, - [2684] = 2682, - [2685] = 2685, - [2686] = 2661, - [2687] = 2687, - [2688] = 2680, - [2689] = 2685, - [2690] = 2690, - [2691] = 2683, - [2692] = 2682, - [2693] = 2693, - [2694] = 2680, - [2695] = 2680, - [2696] = 2696, - [2697] = 2661, - [2698] = 2660, - [2699] = 2699, - [2700] = 2682, - [2701] = 2660, - [2702] = 2683, - [2703] = 2658, - [2704] = 2671, - [2705] = 2658, - [2706] = 2683, - [2707] = 2683, - [2708] = 2669, - [2709] = 2658, - [2710] = 2662, - [2711] = 2685, - [2712] = 2685, - [2713] = 2685, - [2714] = 2682, - [2715] = 2671, - [2716] = 2683, - [2717] = 2683, - [2718] = 2718, - [2719] = 2660, - [2720] = 2720, - [2721] = 2721, - [2722] = 2671, - [2723] = 2662, - [2724] = 2682, - [2725] = 2680, - [2726] = 2726, - [2727] = 2699, - [2728] = 2669, - [2729] = 2729, - [2730] = 2660, - [2731] = 2661, - [2732] = 2662, - [2733] = 2685, - [2734] = 2699, - [2735] = 2658, - [2736] = 2660, - [2737] = 2682, - [2738] = 2738, - [2739] = 2699, - [2740] = 2683, - [2741] = 2699, - [2742] = 2658, - [2743] = 2743, - [2744] = 2680, - [2745] = 2745, - [2746] = 2652, - [2747] = 2680, - [2748] = 2680, - [2749] = 2699, - [2750] = 2661, - [2751] = 2682, - [2752] = 2752, - [2753] = 2683, - [2754] = 2682, - [2755] = 2627, - [2756] = 2699, - [2757] = 2671, - [2758] = 2683, - [2759] = 2699, - [2760] = 2671, - [2761] = 2682, - [2762] = 2671, - [2763] = 2661, - [2764] = 2699, - [2765] = 2671, - [2766] = 2658, - [2767] = 2661, - [2768] = 2680, - [2769] = 2682, - [2770] = 2658, - [2771] = 2661, - [2772] = 2680, - [2773] = 2773, - [2774] = 2635, - [2775] = 2661, - [2776] = 2699, - [2777] = 2682, - [2778] = 914, - [2779] = 2661, - [2780] = 2662, - [2781] = 2683, - [2782] = 2614, - [2783] = 2660, - [2784] = 2660, - [2785] = 791, - [2786] = 2662, - [2787] = 2661, - [2788] = 2685, - [2789] = 2680, - [2790] = 2790, - [2791] = 2699, - [2792] = 2660, - [2793] = 2646, - [2794] = 2699, - [2795] = 2680, - [2796] = 2671, - [2797] = 2797, - [2798] = 2665, - [2799] = 2669, - [2800] = 2650, - [2801] = 2683, - [2802] = 2658, - [2803] = 2609, - [2804] = 2680, - [2805] = 2660, - [2806] = 2661, - [2807] = 2616, - [2808] = 2685, - [2809] = 2658, - [2810] = 2680, - [2811] = 2682, - [2812] = 2683, - [2813] = 2699, - [2814] = 2660, - [2815] = 2743, - [2816] = 2726, - [2817] = 2681, - [2818] = 2690, - [2819] = 2720, - [2820] = 2676, - [2821] = 2721, - [2822] = 2674, - [2823] = 2679, - [2824] = 2773, - [2825] = 2672, - [2826] = 2745, - [2827] = 2790, - [2828] = 2738, - [2829] = 2687, - [2830] = 2752, - [2831] = 2696, - [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2834, - [2839] = 2832, - [2840] = 2840, - [2841] = 2833, - [2842] = 2836, - [2843] = 2835, - [2844] = 828, - [2845] = 810, - [2846] = 2837, - [2847] = 2840, - [2848] = 823, - [2849] = 828, - [2850] = 814, - [2851] = 823, - [2852] = 814, - [2853] = 822, - [2854] = 809, - [2855] = 808, - [2856] = 822, - [2857] = 808, - [2858] = 809, - [2859] = 810, - [2860] = 827, + [2621] = 1160, + [2622] = 1178, + [2623] = 1089, + [2624] = 1094, + [2625] = 1118, + [2626] = 921, + [2627] = 1179, + [2628] = 1181, + [2629] = 1182, + [2630] = 1110, + [2631] = 1183, + [2632] = 1141, + [2633] = 1109, + [2634] = 1163, + [2635] = 1185, + [2636] = 1171, + [2637] = 1177, + [2638] = 2393, + [2639] = 1091, + [2640] = 1058, + [2641] = 1097, + [2642] = 1101, + [2643] = 1170, + [2644] = 910, + [2645] = 1168, + [2646] = 1169, + [2647] = 1163, + [2648] = 1160, + [2649] = 1108, + [2650] = 1094, + [2651] = 2503, + [2652] = 1046, + [2653] = 1085, + [2654] = 1082, + [2655] = 1105, + [2656] = 1079, + [2657] = 1103, + [2658] = 1155, + [2659] = 1154, + [2660] = 1109, + [2661] = 1069, + [2662] = 1165, + [2663] = 1161, + [2664] = 1101, + [2665] = 1152, + [2666] = 1149, + [2667] = 1098, + [2668] = 1094, + [2669] = 1146, + [2670] = 1108, + [2671] = 1143, + [2672] = 1086, + [2673] = 886, + [2674] = 1133, + [2675] = 1168, + [2676] = 1170, + [2677] = 1046, + [2678] = 1160, + [2679] = 2057, + [2680] = 1086, + [2681] = 2057, + [2682] = 913, + [2683] = 1096, + [2684] = 1161, + [2685] = 1095, + [2686] = 1093, + [2687] = 1092, + [2688] = 1163, + [2689] = 1083, + [2690] = 2503, + [2691] = 1183, + [2692] = 1066, + [2693] = 1068, + [2694] = 1168, + [2695] = 1086, + [2696] = 1070, + [2697] = 1170, + [2698] = 1816, + [2699] = 1093, + [2700] = 1065, + [2701] = 1066, + [2702] = 1068, + [2703] = 1070, + [2704] = 1074, + [2705] = 1073, + [2706] = 1078, + [2707] = 1165, + [2708] = 1105, + [2709] = 1078, + [2710] = 1103, + [2711] = 1169, + [2712] = 2393, + [2713] = 1069, + [2714] = 1097, + [2715] = 2444, + [2716] = 2444, + [2717] = 1058, + [2718] = 1060, + [2719] = 1054, + [2720] = 1171, + [2721] = 1117, + [2722] = 1089, + [2723] = 1098, + [2724] = 1091, + [2725] = 1101, + [2726] = 1120, + [2727] = 1096, + [2728] = 2393, + [2729] = 2393, + [2730] = 2444, + [2731] = 1185, + [2732] = 1055, + [2733] = 1065, + [2734] = 1091, + [2735] = 1060, + [2736] = 1816, + [2737] = 1107, + [2738] = 1047, + [2739] = 882, + [2740] = 1055, + [2741] = 1048, + [2742] = 1054, + [2743] = 1112, + [2744] = 1094, + [2745] = 1107, + [2746] = 1047, + [2747] = 1048, + [2748] = 1161, + [2749] = 1165, + [2750] = 1087, + [2751] = 1066, + [2752] = 1169, + [2753] = 1172, + [2754] = 2503, + [2755] = 1171, + [2756] = 1185, + [2757] = 1183, + [2758] = 1182, + [2759] = 1181, + [2760] = 1179, + [2761] = 1068, + [2762] = 879, + [2763] = 1174, + [2764] = 2393, + [2765] = 1070, + [2766] = 1141, + [2767] = 1120, + [2768] = 2503, + [2769] = 1064, + [2770] = 1176, + [2771] = 1089, + [2772] = 1178, + [2773] = 1177, + [2774] = 1176, + [2775] = 1174, + [2776] = 1172, + [2777] = 1079, + [2778] = 1082, + [2779] = 1085, + [2780] = 2780, + [2781] = 915, + [2782] = 2592, + [2783] = 2057, + [2784] = 2780, + [2785] = 2785, + [2786] = 2786, + [2787] = 2787, + [2788] = 2785, + [2789] = 936, + [2790] = 912, + [2791] = 925, + [2792] = 2780, + [2793] = 2785, + [2794] = 2780, + [2795] = 2785, + [2796] = 910, + [2797] = 2057, + [2798] = 921, + [2799] = 2785, + [2800] = 2800, + [2801] = 898, + [2802] = 2785, + [2803] = 2803, + [2804] = 2785, + [2805] = 2421, + [2806] = 2806, + [2807] = 930, + [2808] = 2780, + [2809] = 2780, + [2810] = 2785, + [2811] = 2785, + [2812] = 2812, + [2813] = 2785, + [2814] = 2780, + [2815] = 2780, + [2816] = 2785, + [2817] = 2817, + [2818] = 938, + [2819] = 2620, + [2820] = 2820, + [2821] = 896, + [2822] = 2820, + [2823] = 912, + [2824] = 934, + [2825] = 2803, + [2826] = 918, + [2827] = 919, + [2828] = 898, + [2829] = 2786, + [2830] = 916, + [2831] = 936, + [2832] = 923, + [2833] = 921, + [2834] = 930, + [2835] = 2787, + [2836] = 927, + [2837] = 928, + [2838] = 2812, + [2839] = 935, + [2840] = 2800, + [2841] = 924, + [2842] = 917, + [2843] = 920, + [2844] = 2806, + [2845] = 2817, + [2846] = 917, + [2847] = 918, + [2848] = 919, + [2849] = 916, + [2850] = 923, + [2851] = 934, + [2852] = 924, + [2853] = 927, + [2854] = 920, + [2855] = 935, + [2856] = 928, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, [2861] = 2861, - [2862] = 2862, - [2863] = 820, - [2864] = 854, - [2865] = 828, - [2866] = 2866, - [2867] = 820, - [2868] = 808, - [2869] = 827, - [2870] = 846, - [2871] = 846, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 835, - [2876] = 2876, - [2877] = 854, - [2878] = 823, - [2879] = 2879, - [2880] = 835, - [2881] = 809, - [2882] = 810, - [2883] = 2883, - [2884] = 2884, - [2885] = 827, - [2886] = 814, - [2887] = 820, - [2888] = 2888, - [2889] = 822, + [2862] = 2860, + [2863] = 2861, + [2864] = 2864, + [2865] = 2857, + [2866] = 2860, + [2867] = 2860, + [2868] = 2861, + [2869] = 2869, + [2870] = 2858, + [2871] = 2859, + [2872] = 2857, + [2873] = 2858, + [2874] = 2864, + [2875] = 2859, + [2876] = 2864, + [2877] = 2857, + [2878] = 2860, + [2879] = 2858, + [2880] = 2861, + [2881] = 2861, + [2882] = 2858, + [2883] = 2869, + [2884] = 2864, + [2885] = 2857, + [2886] = 2859, + [2887] = 2860, + [2888] = 2864, + [2889] = 2864, [2890] = 2890, - [2891] = 835, - [2892] = 2892, - [2893] = 822, - [2894] = 2894, - [2895] = 814, - [2896] = 2896, - [2897] = 2888, - [2898] = 823, - [2899] = 2899, - [2900] = 2861, - [2901] = 854, - [2902] = 2862, - [2903] = 852, - [2904] = 2904, - [2905] = 2905, - [2906] = 852, - [2907] = 839, - [2908] = 2908, - [2909] = 810, - [2910] = 809, - [2911] = 808, - [2912] = 835, - [2913] = 2913, - [2914] = 2914, - [2915] = 846, - [2916] = 836, - [2917] = 827, - [2918] = 2918, - [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, - [2923] = 2923, - [2924] = 828, - [2925] = 2890, - [2926] = 2926, - [2927] = 820, - [2928] = 2928, - [2929] = 827, - [2930] = 852, - [2931] = 2883, - [2932] = 840, - [2933] = 2933, - [2934] = 836, - [2935] = 834, - [2936] = 840, - [2937] = 2866, - [2938] = 2938, - [2939] = 834, - [2940] = 839, - [2941] = 820, - [2942] = 835, - [2943] = 2943, - [2944] = 820, - [2945] = 2919, - [2946] = 827, - [2947] = 2943, - [2948] = 2920, - [2949] = 2943, - [2950] = 834, - [2951] = 2951, + [2891] = 2861, + [2892] = 2859, + [2893] = 2858, + [2894] = 2857, + [2895] = 2864, + [2896] = 2864, + [2897] = 2858, + [2898] = 2857, + [2899] = 2858, + [2900] = 2864, + [2901] = 2869, + [2902] = 2860, + [2903] = 2859, + [2904] = 2859, + [2905] = 2857, + [2906] = 2864, + [2907] = 2864, + [2908] = 2869, + [2909] = 2857, + [2910] = 2858, + [2911] = 2869, + [2912] = 2857, + [2913] = 2861, + [2914] = 2859, + [2915] = 2864, + [2916] = 2857, + [2917] = 2859, + [2918] = 2860, + [2919] = 2861, + [2920] = 2859, + [2921] = 2869, + [2922] = 2859, + [2923] = 2869, + [2924] = 2861, + [2925] = 2858, + [2926] = 2860, + [2927] = 2860, + [2928] = 2869, + [2929] = 2857, + [2930] = 2857, + [2931] = 2861, + [2932] = 2861, + [2933] = 2869, + [2934] = 2860, + [2935] = 2869, + [2936] = 2864, + [2937] = 2860, + [2938] = 2859, + [2939] = 2858, + [2940] = 2869, + [2941] = 2858, + [2942] = 2859, + [2943] = 2858, + [2944] = 2861, + [2945] = 2869, + [2946] = 2869, + [2947] = 2861, + [2948] = 2860, + [2949] = 2949, + [2950] = 2950, + [2951] = 2950, [2952] = 2952, - [2953] = 2953, - [2954] = 850, - [2955] = 848, - [2956] = 2956, - [2957] = 852, - [2958] = 839, - [2959] = 854, - [2960] = 2904, - [2961] = 836, - [2962] = 843, - [2963] = 846, - [2964] = 844, - [2965] = 2943, - [2966] = 843, - [2967] = 2967, - [2968] = 2968, + [2953] = 2950, + [2954] = 2950, + [2955] = 2952, + [2956] = 2952, + [2957] = 2890, + [2958] = 2952, + [2959] = 2952, + [2960] = 2960, + [2961] = 2952, + [2962] = 864, + [2963] = 2950, + [2964] = 2952, + [2965] = 2950, + [2966] = 2950, + [2967] = 2952, + [2968] = 2950, [2969] = 2969, - [2970] = 2913, - [2971] = 2943, - [2972] = 2943, - [2973] = 2918, - [2974] = 2943, - [2975] = 2943, - [2976] = 835, - [2977] = 2914, - [2978] = 2943, - [2979] = 2979, - [2980] = 2943, - [2981] = 856, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2969, + [2974] = 2974, + [2975] = 2972, + [2976] = 2976, + [2977] = 2977, + [2978] = 2972, + [2979] = 2971, + [2980] = 2971, + [2981] = 2981, [2982] = 2982, - [2983] = 851, - [2984] = 848, - [2985] = 849, - [2986] = 2905, - [2987] = 2892, - [2988] = 2896, - [2989] = 2894, - [2990] = 2928, - [2991] = 2943, + [2983] = 2981, + [2984] = 2981, + [2985] = 2981, + [2986] = 2972, + [2987] = 2972, + [2988] = 2981, + [2989] = 2989, + [2990] = 2972, + [2991] = 2971, [2992] = 2992, - [2993] = 850, - [2994] = 2943, - [2995] = 2995, - [2996] = 2943, - [2997] = 2997, - [2998] = 840, - [2999] = 2938, - [3000] = 2921, - [3001] = 849, - [3002] = 851, - [3003] = 2943, - [3004] = 2943, - [3005] = 845, - [3006] = 2943, - [3007] = 841, - [3008] = 2943, - [3009] = 860, - [3010] = 845, - [3011] = 2922, - [3012] = 2926, - [3013] = 2933, - [3014] = 856, - [3015] = 3015, - [3016] = 858, - [3017] = 844, - [3018] = 2943, - [3019] = 2908, - [3020] = 3020, - [3021] = 2943, - [3022] = 2943, - [3023] = 2943, - [3024] = 841, - [3025] = 3025, - [3026] = 2943, - [3027] = 2923, - [3028] = 2943, - [3029] = 2943, - [3030] = 2943, - [3031] = 858, - [3032] = 2943, + [2993] = 2971, + [2994] = 2969, + [2995] = 2981, + [2996] = 2972, + [2997] = 2972, + [2998] = 2969, + [2999] = 2981, + [3000] = 2969, + [3001] = 3001, + [3002] = 3002, + [3003] = 2969, + [3004] = 2969, + [3005] = 2981, + [3006] = 2972, + [3007] = 2981, + [3008] = 2972, + [3009] = 971, + [3010] = 2981, + [3011] = 2971, + [3012] = 2971, + [3013] = 3013, + [3014] = 3014, + [3015] = 2971, + [3016] = 2971, + [3017] = 2981, + [3018] = 2971, + [3019] = 2972, + [3020] = 2981, + [3021] = 2972, + [3022] = 2972, + [3023] = 2981, + [3024] = 2972, + [3025] = 2971, + [3026] = 2981, + [3027] = 2971, + [3028] = 2971, + [3029] = 2971, + [3030] = 3030, + [3031] = 2969, + [3032] = 3032, [3033] = 3033, - [3034] = 2943, - [3035] = 852, - [3036] = 2943, - [3037] = 2899, - [3038] = 860, - [3039] = 2943, - [3040] = 2943, - [3041] = 2943, - [3042] = 2956, - [3043] = 852, + [3034] = 3034, + [3035] = 3035, + [3036] = 3036, + [3037] = 3037, + [3038] = 3038, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, [3044] = 3044, - [3045] = 3020, - [3046] = 2995, - [3047] = 839, - [3048] = 834, - [3049] = 2953, - [3050] = 2952, - [3051] = 2968, - [3052] = 3044, - [3053] = 3044, - [3054] = 844, - [3055] = 2951, - [3056] = 836, - [3057] = 2969, - [3058] = 843, - [3059] = 845, - [3060] = 858, - [3061] = 860, - [3062] = 2997, - [3063] = 3015, - [3064] = 848, - [3065] = 870, - [3066] = 840, - [3067] = 2967, - [3068] = 3025, - [3069] = 3044, - [3070] = 2982, - [3071] = 2992, - [3072] = 841, - [3073] = 851, - [3074] = 2979, - [3075] = 849, - [3076] = 850, - [3077] = 856, - [3078] = 3033, - [3079] = 844, - [3080] = 841, - [3081] = 2883, - [3082] = 858, - [3083] = 3083, - [3084] = 3083, - [3085] = 2866, - [3086] = 893, - [3087] = 848, - [3088] = 851, - [3089] = 856, - [3090] = 3083, - [3091] = 903, - [3092] = 850, - [3093] = 845, - [3094] = 3083, - [3095] = 923, - [3096] = 2890, - [3097] = 3097, - [3098] = 843, - [3099] = 849, - [3100] = 860, - [3101] = 924, - [3102] = 2923, - [3103] = 2890, - [3104] = 2883, - [3105] = 2866, - [3106] = 2908, - [3107] = 914, - [3108] = 2926, - [3109] = 1000, - [3110] = 1001, - [3111] = 914, - [3112] = 1057, - [3113] = 1055, - [3114] = 969, - [3115] = 971, - [3116] = 972, - [3117] = 973, - [3118] = 974, - [3119] = 1005, - [3120] = 967, - [3121] = 1015, - [3122] = 975, - [3123] = 1018, - [3124] = 976, - [3125] = 978, - [3126] = 2883, - [3127] = 1019, - [3128] = 1021, - [3129] = 1038, - [3130] = 3015, - [3131] = 1052, - [3132] = 2926, - [3133] = 1035, - [3134] = 981, - [3135] = 983, - [3136] = 989, - [3137] = 2866, - [3138] = 2890, - [3139] = 2908, - [3140] = 1017, - [3141] = 992, - [3142] = 996, - [3143] = 1034, - [3144] = 1004, - [3145] = 1028, - [3146] = 2923, - [3147] = 2997, - [3148] = 2997, - [3149] = 2926, - [3150] = 3150, - [3151] = 3151, - [3152] = 914, - [3153] = 2923, - [3154] = 3015, - [3155] = 2908, - [3156] = 2997, - [3157] = 3157, - [3158] = 3015, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, + [3045] = 3044, + [3046] = 3040, + [3047] = 3043, + [3048] = 3040, + [3049] = 3042, + [3050] = 3034, + [3051] = 3041, + [3052] = 3034, + [3053] = 3034, + [3054] = 3036, + [3055] = 3055, + [3056] = 3056, + [3057] = 3034, + [3058] = 3040, + [3059] = 3035, + [3060] = 3035, + [3061] = 3035, + [3062] = 3035, + [3063] = 3041, + [3064] = 3041, + [3065] = 3040, + [3066] = 3066, + [3067] = 3042, + [3068] = 3034, + [3069] = 3043, + [3070] = 3070, + [3071] = 3043, + [3072] = 3044, + [3073] = 3073, + [3074] = 3036, + [3075] = 3075, + [3076] = 3070, + [3077] = 3035, + [3078] = 3044, + [3079] = 3034, + [3080] = 3036, + [3081] = 3081, + [3082] = 3040, + [3083] = 3035, + [3084] = 3044, + [3085] = 3043, + [3086] = 3066, + [3087] = 3040, + [3088] = 3036, + [3089] = 3089, + [3090] = 3070, + [3091] = 3044, + [3092] = 3092, + [3093] = 3043, + [3094] = 3094, + [3095] = 3035, + [3096] = 3035, + [3097] = 3035, + [3098] = 3042, + [3099] = 3066, + [3100] = 3042, + [3101] = 3041, + [3102] = 3066, + [3103] = 3040, + [3104] = 3035, + [3105] = 3034, + [3106] = 3036, + [3107] = 3035, + [3108] = 3040, + [3109] = 3041, + [3110] = 3042, + [3111] = 3043, + [3112] = 3044, + [3113] = 3081, + [3114] = 3033, + [3115] = 3033, + [3116] = 3116, + [3117] = 3036, + [3118] = 3041, + [3119] = 3036, + [3120] = 3043, + [3121] = 3035, + [3122] = 3040, + [3123] = 3041, + [3124] = 3044, + [3125] = 3042, + [3126] = 3043, + [3127] = 3066, + [3128] = 3044, + [3129] = 3043, + [3130] = 3130, + [3131] = 3066, + [3132] = 3132, + [3133] = 3034, + [3134] = 3134, + [3135] = 3041, + [3136] = 3041, + [3137] = 3137, + [3138] = 3042, + [3139] = 3043, + [3140] = 3140, + [3141] = 3042, + [3142] = 3044, + [3143] = 3043, + [3144] = 3042, + [3145] = 3041, + [3146] = 3044, + [3147] = 3044, + [3148] = 2976, + [3149] = 3149, + [3150] = 3036, + [3151] = 3035, + [3152] = 2974, + [3153] = 3153, + [3154] = 866, + [3155] = 3155, + [3156] = 3034, + [3157] = 3042, + [3158] = 3070, + [3159] = 3041, + [3160] = 3041, + [3161] = 3042, + [3162] = 3040, + [3163] = 3035, [3164] = 3164, - [3165] = 3165, - [3166] = 3166, - [3167] = 3167, - [3168] = 3167, - [3169] = 3167, - [3170] = 3167, - [3171] = 3167, - [3172] = 3167, - [3173] = 3167, - [3174] = 3174, - [3175] = 3165, - [3176] = 3176, - [3177] = 3164, - [3178] = 3167, - [3179] = 3167, - [3180] = 3167, - [3181] = 3167, - [3182] = 790, - [3183] = 791, - [3184] = 790, - [3185] = 790, - [3186] = 790, - [3187] = 791, - [3188] = 791, - [3189] = 791, - [3190] = 790, - [3191] = 3191, - [3192] = 3192, - [3193] = 822, - [3194] = 814, - [3195] = 823, - [3196] = 809, - [3197] = 823, - [3198] = 808, - [3199] = 828, - [3200] = 809, - [3201] = 810, - [3202] = 810, - [3203] = 814, - [3204] = 822, - [3205] = 3205, - [3206] = 828, - [3207] = 808, - [3208] = 791, - [3209] = 827, - [3210] = 846, - [3211] = 820, - [3212] = 835, - [3213] = 820, + [3165] = 3040, + [3166] = 3070, + [3167] = 3043, + [3168] = 3035, + [3169] = 3066, + [3170] = 3044, + [3171] = 3070, + [3172] = 3172, + [3173] = 3173, + [3174] = 3036, + [3175] = 2970, + [3176] = 3070, + [3177] = 3034, + [3178] = 3034, + [3179] = 3070, + [3180] = 2982, + [3181] = 3034, + [3182] = 3042, + [3183] = 3013, + [3184] = 3014, + [3185] = 3040, + [3186] = 3002, + [3187] = 3066, + [3188] = 971, + [3189] = 3033, + [3190] = 3032, + [3191] = 2977, + [3192] = 3056, + [3193] = 3055, + [3194] = 3089, + [3195] = 3130, + [3196] = 3132, + [3197] = 3173, + [3198] = 3140, + [3199] = 3039, + [3200] = 3038, + [3201] = 3037, + [3202] = 3149, + [3203] = 3094, + [3204] = 3092, + [3205] = 3134, + [3206] = 3075, + [3207] = 3155, + [3208] = 3164, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, [3214] = 3214, - [3215] = 854, - [3216] = 835, - [3217] = 846, - [3218] = 827, - [3219] = 854, - [3220] = 834, - [3221] = 839, - [3222] = 840, - [3223] = 840, - [3224] = 836, - [3225] = 870, - [3226] = 3226, - [3227] = 836, - [3228] = 834, - [3229] = 839, - [3230] = 852, - [3231] = 852, - [3232] = 808, - [3233] = 893, - [3234] = 3234, - [3235] = 923, - [3236] = 924, - [3237] = 844, - [3238] = 809, - [3239] = 860, - [3240] = 858, - [3241] = 835, - [3242] = 850, - [3243] = 848, - [3244] = 828, - [3245] = 810, - [3246] = 843, - [3247] = 3247, - [3248] = 843, - [3249] = 820, - [3250] = 3250, - [3251] = 856, - [3252] = 851, - [3253] = 841, - [3254] = 3234, - [3255] = 856, - [3256] = 822, - [3257] = 3234, - [3258] = 849, - [3259] = 3247, - [3260] = 848, - [3261] = 845, - [3262] = 844, - [3263] = 814, - [3264] = 823, - [3265] = 903, - [3266] = 860, - [3267] = 850, - [3268] = 858, - [3269] = 3247, - [3270] = 849, - [3271] = 851, - [3272] = 845, - [3273] = 841, - [3274] = 833, - [3275] = 823, - [3276] = 854, - [3277] = 3191, - [3278] = 828, - [3279] = 827, + [3215] = 3212, + [3216] = 3209, + [3217] = 3210, + [3218] = 3213, + [3219] = 3211, + [3220] = 3220, + [3221] = 913, + [3222] = 904, + [3223] = 880, + [3224] = 3220, + [3225] = 904, + [3226] = 3214, + [3227] = 882, + [3228] = 907, + [3229] = 886, + [3230] = 879, + [3231] = 913, + [3232] = 879, + [3233] = 882, + [3234] = 886, + [3235] = 907, + [3236] = 880, + [3237] = 896, + [3238] = 879, + [3239] = 3239, + [3240] = 910, + [3241] = 3241, + [3242] = 896, + [3243] = 3243, + [3244] = 3244, + [3245] = 3245, + [3246] = 915, + [3247] = 904, + [3248] = 915, + [3249] = 3249, + [3250] = 913, + [3251] = 896, + [3252] = 3252, + [3253] = 882, + [3254] = 3254, + [3255] = 880, + [3256] = 938, + [3257] = 3257, + [3258] = 907, + [3259] = 925, + [3260] = 886, + [3261] = 3261, + [3262] = 910, + [3263] = 938, + [3264] = 915, + [3265] = 3265, + [3266] = 3266, + [3267] = 910, + [3268] = 925, + [3269] = 3269, + [3270] = 3270, + [3271] = 879, + [3272] = 898, + [3273] = 896, + [3274] = 915, + [3275] = 3241, + [3276] = 921, + [3277] = 898, + [3278] = 886, + [3279] = 896, [3280] = 3280, - [3281] = 846, - [3282] = 790, + [3281] = 910, + [3282] = 3282, [3283] = 3283, - [3284] = 1030, - [3285] = 810, - [3286] = 820, - [3287] = 809, - [3288] = 835, - [3289] = 852, - [3290] = 870, - [3291] = 814, - [3292] = 808, - [3293] = 870, - [3294] = 822, - [3295] = 903, - [3296] = 852, - [3297] = 973, - [3298] = 972, - [3299] = 1001, - [3300] = 971, - [3301] = 969, - [3302] = 975, - [3303] = 976, - [3304] = 978, - [3305] = 1038, - [3306] = 981, - [3307] = 1005, - [3308] = 983, - [3309] = 3309, - [3310] = 989, - [3311] = 992, - [3312] = 996, - [3313] = 840, - [3314] = 820, - [3315] = 820, - [3316] = 854, - [3317] = 836, - [3318] = 1000, - [3319] = 967, - [3320] = 1004, - [3321] = 1015, - [3322] = 1018, - [3323] = 1019, - [3324] = 1021, - [3325] = 833, - [3326] = 827, - [3327] = 1028, - [3328] = 923, - [3329] = 1057, - [3330] = 1017, - [3331] = 835, - [3332] = 870, - [3333] = 1034, - [3334] = 1035, - [3335] = 835, - [3336] = 839, - [3337] = 1052, - [3338] = 903, - [3339] = 1055, - [3340] = 974, - [3341] = 1040, - [3342] = 1049, - [3343] = 3343, - [3344] = 893, - [3345] = 820, - [3346] = 835, - [3347] = 3191, - [3348] = 835, - [3349] = 834, - [3350] = 1025, - [3351] = 3192, - [3352] = 3205, - [3353] = 846, - [3354] = 820, - [3355] = 833, - [3356] = 1041, - [3357] = 924, - [3358] = 924, - [3359] = 827, - [3360] = 3360, - [3361] = 893, - [3362] = 1050, - [3363] = 923, - [3364] = 991, - [3365] = 1009, - [3366] = 3280, - [3367] = 3214, - [3368] = 3368, - [3369] = 850, - [3370] = 791, + [3284] = 930, + [3285] = 925, + [3286] = 907, + [3287] = 3287, + [3288] = 3288, + [3289] = 3254, + [3290] = 912, + [3291] = 912, + [3292] = 930, + [3293] = 936, + [3294] = 3294, + [3295] = 938, + [3296] = 3296, + [3297] = 915, + [3298] = 3298, + [3299] = 3265, + [3300] = 921, + [3301] = 880, + [3302] = 921, + [3303] = 3303, + [3304] = 3304, + [3305] = 910, + [3306] = 3249, + [3307] = 3307, + [3308] = 3308, + [3309] = 3266, + [3310] = 3310, + [3311] = 3311, + [3312] = 913, + [3313] = 936, + [3314] = 3314, + [3315] = 3315, + [3316] = 904, + [3317] = 882, + [3318] = 3239, + [3319] = 3319, + [3320] = 3320, + [3321] = 3320, + [3322] = 910, + [3323] = 3320, + [3324] = 3320, + [3325] = 917, + [3326] = 3326, + [3327] = 3294, + [3328] = 3320, + [3329] = 3308, + [3330] = 3330, + [3331] = 919, + [3332] = 925, + [3333] = 3298, + [3334] = 930, + [3335] = 921, + [3336] = 3336, + [3337] = 3320, + [3338] = 918, + [3339] = 3320, + [3340] = 3320, + [3341] = 3320, + [3342] = 928, + [3343] = 3320, + [3344] = 920, + [3345] = 3345, + [3346] = 935, + [3347] = 3320, + [3348] = 896, + [3349] = 3320, + [3350] = 3320, + [3351] = 3351, + [3352] = 927, + [3353] = 3353, + [3354] = 3320, + [3355] = 917, + [3356] = 3320, + [3357] = 3357, + [3358] = 3320, + [3359] = 916, + [3360] = 924, + [3361] = 3361, + [3362] = 3320, + [3363] = 934, + [3364] = 3304, + [3365] = 3365, + [3366] = 921, + [3367] = 927, + [3368] = 3320, + [3369] = 3320, + [3370] = 3370, [3371] = 3283, - [3372] = 924, - [3373] = 3373, - [3374] = 3374, - [3375] = 923, - [3376] = 822, - [3377] = 3377, - [3378] = 844, - [3379] = 3379, - [3380] = 3380, - [3381] = 852, - [3382] = 3377, - [3383] = 828, - [3384] = 852, - [3385] = 856, - [3386] = 843, - [3387] = 3373, - [3388] = 834, - [3389] = 848, - [3390] = 893, - [3391] = 3373, - [3392] = 833, - [3393] = 1030, - [3394] = 3394, - [3395] = 3283, - [3396] = 3373, - [3397] = 3377, - [3398] = 1030, - [3399] = 840, - [3400] = 903, - [3401] = 858, - [3402] = 839, - [3403] = 845, - [3404] = 3373, - [3405] = 860, - [3406] = 852, - [3407] = 851, - [3408] = 849, - [3409] = 852, - [3410] = 3373, - [3411] = 3205, - [3412] = 3377, - [3413] = 841, - [3414] = 3373, - [3415] = 3192, - [3416] = 3373, - [3417] = 3373, - [3418] = 836, - [3419] = 3373, - [3420] = 3373, - [3421] = 3421, - [3422] = 1005, - [3423] = 1040, - [3424] = 3424, - [3425] = 3425, - [3426] = 996, - [3427] = 1041, - [3428] = 3283, - [3429] = 854, - [3430] = 845, - [3431] = 1055, - [3432] = 1052, - [3433] = 846, - [3434] = 1035, - [3435] = 1034, - [3436] = 841, - [3437] = 1028, - [3438] = 3438, - [3439] = 3439, - [3440] = 1004, - [3441] = 1050, - [3442] = 1005, - [3443] = 3443, - [3444] = 1000, - [3445] = 1009, - [3446] = 3343, - [3447] = 1001, - [3448] = 3448, - [3449] = 3448, - [3450] = 1041, - [3451] = 991, - [3452] = 860, - [3453] = 1055, - [3454] = 1052, - [3455] = 849, - [3456] = 851, - [3457] = 992, - [3458] = 3458, - [3459] = 1035, - [3460] = 1034, - [3461] = 989, - [3462] = 983, - [3463] = 1025, - [3464] = 1030, - [3465] = 1025, - [3466] = 981, - [3467] = 1038, - [3468] = 978, - [3469] = 1017, - [3470] = 1028, - [3471] = 1057, - [3472] = 1004, - [3473] = 3473, - [3474] = 1000, - [3475] = 996, - [3476] = 992, - [3477] = 989, - [3478] = 983, - [3479] = 981, - [3480] = 1038, - [3481] = 978, - [3482] = 976, - [3483] = 975, - [3484] = 974, - [3485] = 973, - [3486] = 972, - [3487] = 1049, - [3488] = 971, - [3489] = 969, - [3490] = 1049, - [3491] = 843, - [3492] = 1040, - [3493] = 856, - [3494] = 1009, - [3495] = 848, - [3496] = 858, - [3497] = 3458, - [3498] = 967, - [3499] = 1021, - [3500] = 1015, - [3501] = 1019, - [3502] = 1018, - [3503] = 1019, - [3504] = 1021, - [3505] = 1018, - [3506] = 844, - [3507] = 3443, - [3508] = 1015, - [3509] = 3509, - [3510] = 3343, - [3511] = 1050, - [3512] = 976, - [3513] = 3513, - [3514] = 967, - [3515] = 3515, - [3516] = 1057, - [3517] = 3458, - [3518] = 1017, - [3519] = 3519, - [3520] = 969, - [3521] = 1001, - [3522] = 971, - [3523] = 3523, - [3524] = 972, - [3525] = 3525, - [3526] = 3526, - [3527] = 973, - [3528] = 974, - [3529] = 991, - [3530] = 3458, - [3531] = 3531, - [3532] = 850, - [3533] = 975, - [3534] = 3534, + [3372] = 928, + [3373] = 3303, + [3374] = 3320, + [3375] = 3320, + [3376] = 3269, + [3377] = 919, + [3378] = 3319, + [3379] = 918, + [3380] = 3282, + [3381] = 3320, + [3382] = 924, + [3383] = 3320, + [3384] = 935, + [3385] = 923, + [3386] = 915, + [3387] = 3387, + [3388] = 3287, + [3389] = 3389, + [3390] = 3320, + [3391] = 3391, + [3392] = 3320, + [3393] = 3393, + [3394] = 3320, + [3395] = 938, + [3396] = 3320, + [3397] = 3311, + [3398] = 3398, + [3399] = 3320, + [3400] = 936, + [3401] = 923, + [3402] = 934, + [3403] = 3280, + [3404] = 920, + [3405] = 3320, + [3406] = 3320, + [3407] = 3296, + [3408] = 3307, + [3409] = 3315, + [3410] = 3314, + [3411] = 3310, + [3412] = 3270, + [3413] = 898, + [3414] = 3320, + [3415] = 3320, + [3416] = 916, + [3417] = 912, + [3418] = 3320, + [3419] = 3288, + [3420] = 3420, + [3421] = 3365, + [3422] = 3387, + [3423] = 3361, + [3424] = 3420, + [3425] = 3326, + [3426] = 3391, + [3427] = 3398, + [3428] = 924, + [3429] = 949, + [3430] = 928, + [3431] = 927, + [3432] = 912, + [3433] = 936, + [3434] = 3336, + [3435] = 3393, + [3436] = 3389, + [3437] = 935, + [3438] = 930, + [3439] = 3353, + [3440] = 898, + [3441] = 920, + [3442] = 919, + [3443] = 918, + [3444] = 3370, + [3445] = 916, + [3446] = 923, + [3447] = 3351, + [3448] = 3345, + [3449] = 921, + [3450] = 917, + [3451] = 3451, + [3452] = 934, + [3453] = 3451, + [3454] = 3330, + [3455] = 3357, + [3456] = 3451, + [3457] = 3451, + [3458] = 966, + [3459] = 928, + [3460] = 976, + [3461] = 960, + [3462] = 3462, + [3463] = 954, + [3464] = 935, + [3465] = 3462, + [3466] = 920, + [3467] = 3249, + [3468] = 924, + [3469] = 916, + [3470] = 3462, + [3471] = 917, + [3472] = 927, + [3473] = 3254, + [3474] = 923, + [3475] = 919, + [3476] = 918, + [3477] = 3477, + [3478] = 3462, + [3479] = 934, + [3480] = 3265, + [3481] = 3280, + [3482] = 971, + [3483] = 3287, + [3484] = 3265, + [3485] = 3254, + [3486] = 3249, + [3487] = 3288, + [3488] = 1074, + [3489] = 1093, + [3490] = 1112, + [3491] = 3357, + [3492] = 1086, + [3493] = 1054, + [3494] = 971, + [3495] = 3353, + [3496] = 3265, + [3497] = 1126, + [3498] = 1048, + [3499] = 1127, + [3500] = 1047, + [3501] = 1107, + [3502] = 3249, + [3503] = 1055, + [3504] = 3280, + [3505] = 1060, + [3506] = 1114, + [3507] = 1113, + [3508] = 3288, + [3509] = 1121, + [3510] = 1073, + [3511] = 1083, + [3512] = 1111, + [3513] = 3254, + [3514] = 1110, + [3515] = 1092, + [3516] = 3287, + [3517] = 1109, + [3518] = 1125, + [3519] = 1108, + [3520] = 1046, + [3521] = 1095, + [3522] = 1069, + [3523] = 1096, + [3524] = 1098, + [3525] = 1103, + [3526] = 1105, + [3527] = 3527, + [3528] = 3357, + [3529] = 3288, + [3530] = 3280, + [3531] = 971, + [3532] = 3532, + [3533] = 3353, + [3534] = 3287, [3535] = 3535, [3536] = 3536, - [3537] = 3537, - [3538] = 3538, + [3537] = 3353, + [3538] = 3357, [3539] = 3539, - [3540] = 1025, + [3540] = 3540, [3541] = 3541, - [3542] = 3541, + [3542] = 3542, [3543] = 3543, - [3544] = 3541, - [3545] = 3425, + [3544] = 3544, + [3545] = 3545, [3546] = 3546, [3547] = 3547, - [3548] = 972, - [3549] = 973, - [3550] = 974, - [3551] = 975, + [3548] = 3548, + [3549] = 3546, + [3550] = 3546, + [3551] = 3546, [3552] = 3552, - [3553] = 3541, - [3554] = 3473, - [3555] = 983, - [3556] = 3556, - [3557] = 839, - [3558] = 3552, - [3559] = 3541, - [3560] = 3560, - [3561] = 3509, - [3562] = 3562, - [3563] = 3563, - [3564] = 3552, - [3565] = 3541, - [3566] = 3566, - [3567] = 3567, - [3568] = 3343, - [3569] = 3538, - [3570] = 976, - [3571] = 1005, - [3572] = 978, - [3573] = 1001, - [3574] = 1038, - [3575] = 3539, - [3576] = 1040, - [3577] = 3534, - [3578] = 3519, - [3579] = 3541, - [3580] = 1055, - [3581] = 981, - [3582] = 989, - [3583] = 1057, - [3584] = 1017, - [3585] = 1052, - [3586] = 3421, - [3587] = 1021, - [3588] = 3513, - [3589] = 1019, - [3590] = 1035, - [3591] = 992, - [3592] = 1018, - [3593] = 1034, - [3594] = 3594, - [3595] = 3595, - [3596] = 996, - [3597] = 1000, - [3598] = 3552, - [3599] = 3424, - [3600] = 1009, - [3601] = 1015, - [3602] = 3602, - [3603] = 3552, - [3604] = 967, - [3605] = 3552, - [3606] = 1049, - [3607] = 3543, - [3608] = 1004, - [3609] = 3609, - [3610] = 3610, - [3611] = 1041, + [3553] = 3546, + [3554] = 3546, + [3555] = 3546, + [3556] = 3546, + [3557] = 3544, + [3558] = 3546, + [3559] = 3545, + [3560] = 3546, + [3561] = 3546, + [3562] = 3546, + [3563] = 3546, + [3564] = 864, + [3565] = 864, + [3566] = 864, + [3567] = 866, + [3568] = 864, + [3569] = 866, + [3570] = 866, + [3571] = 866, + [3572] = 864, + [3573] = 3573, + [3574] = 913, + [3575] = 882, + [3576] = 880, + [3577] = 904, + [3578] = 880, + [3579] = 882, + [3580] = 879, + [3581] = 886, + [3582] = 907, + [3583] = 3583, + [3584] = 907, + [3585] = 866, + [3586] = 3586, + [3587] = 904, + [3588] = 913, + [3589] = 879, + [3590] = 886, + [3591] = 925, + [3592] = 896, + [3593] = 915, + [3594] = 938, + [3595] = 915, + [3596] = 3596, + [3597] = 925, + [3598] = 938, + [3599] = 910, + [3600] = 896, + [3601] = 910, + [3602] = 936, + [3603] = 930, + [3604] = 898, + [3605] = 936, + [3606] = 898, + [3607] = 930, + [3608] = 921, + [3609] = 912, + [3610] = 949, + [3611] = 912, [3612] = 3612, - [3613] = 3613, - [3614] = 991, + [3613] = 921, + [3614] = 934, [3615] = 3615, - [3616] = 969, - [3617] = 3552, - [3618] = 1050, - [3619] = 3541, - [3620] = 971, - [3621] = 1028, - [3622] = 3552, - [3623] = 3623, - [3624] = 3624, - [3625] = 3624, - [3626] = 3624, - [3627] = 827, - [3628] = 3624, - [3629] = 835, - [3630] = 820, - [3631] = 870, - [3632] = 3632, - [3633] = 3624, - [3634] = 3624, - [3635] = 3624, - [3636] = 3624, - [3637] = 2578, - [3638] = 924, - [3639] = 893, - [3640] = 3640, - [3641] = 828, - [3642] = 822, - [3643] = 903, - [3644] = 852, - [3645] = 923, - [3646] = 3368, - [3647] = 3536, - [3648] = 2578, - [3649] = 822, - [3650] = 790, - [3651] = 3531, - [3652] = 846, - [3653] = 3379, - [3654] = 3654, - [3655] = 3380, - [3656] = 3515, - [3657] = 3525, - [3658] = 854, - [3659] = 814, - [3660] = 3535, - [3661] = 3537, - [3662] = 828, - [3663] = 3394, - [3664] = 808, - [3665] = 3526, - [3666] = 809, - [3667] = 3379, - [3668] = 3523, - [3669] = 810, - [3670] = 3380, - [3671] = 2398, - [3672] = 823, - [3673] = 2399, - [3674] = 3394, - [3675] = 2393, - [3676] = 3438, - [3677] = 810, - [3678] = 3424, - [3679] = 3473, - [3680] = 820, - [3681] = 1055, - [3682] = 3439, - [3683] = 3443, - [3684] = 835, - [3685] = 3439, - [3686] = 3623, - [3687] = 3509, - [3688] = 1052, - [3689] = 3424, - [3690] = 854, - [3691] = 814, - [3692] = 3692, - [3693] = 3425, - [3694] = 1005, - [3695] = 3547, - [3696] = 1001, - [3697] = 3697, - [3698] = 2454, - [3699] = 3509, - [3700] = 3546, - [3701] = 3613, - [3702] = 3612, - [3703] = 808, - [3704] = 3425, - [3705] = 3438, - [3706] = 3539, - [3707] = 2444, - [3708] = 3513, - [3709] = 3421, - [3710] = 846, - [3711] = 3602, - [3712] = 3609, - [3713] = 3473, - [3714] = 3448, - [3715] = 823, - [3716] = 1021, - [3717] = 1019, - [3718] = 2398, - [3719] = 1035, - [3720] = 3519, - [3721] = 1057, - [3722] = 2466, - [3723] = 1017, - [3724] = 809, - [3725] = 3538, - [3726] = 3615, - [3727] = 3727, - [3728] = 2393, - [3729] = 839, - [3730] = 1018, - [3731] = 1015, - [3732] = 1034, - [3733] = 2438, - [3734] = 3734, - [3735] = 3610, - [3736] = 967, - [3737] = 2463, - [3738] = 3513, - [3739] = 3421, - [3740] = 3519, - [3741] = 969, - [3742] = 3443, - [3743] = 3534, - [3744] = 971, - [3745] = 3448, - [3746] = 3539, - [3747] = 972, - [3748] = 3534, - [3749] = 2399, - [3750] = 973, - [3751] = 974, - [3752] = 975, - [3753] = 3538, - [3754] = 827, - [3755] = 976, - [3756] = 3595, - [3757] = 978, - [3758] = 3438, - [3759] = 3560, - [3760] = 3594, - [3761] = 1038, - [3762] = 3438, - [3763] = 981, - [3764] = 822, - [3765] = 983, - [3766] = 989, - [3767] = 3563, - [3768] = 992, - [3769] = 996, - [3770] = 1000, - [3771] = 3566, - [3772] = 3567, - [3773] = 1004, - [3774] = 828, - [3775] = 1028, - [3776] = 827, - [3777] = 836, - [3778] = 846, - [3779] = 2463, - [3780] = 791, - [3781] = 3781, - [3782] = 3781, - [3783] = 835, - [3784] = 852, - [3785] = 2454, - [3786] = 2444, - [3787] = 854, - [3788] = 2457, - [3789] = 2428, - [3790] = 3781, - [3791] = 3791, - [3792] = 2440, - [3793] = 2438, - [3794] = 820, - [3795] = 2466, - [3796] = 3796, - [3797] = 839, - [3798] = 840, - [3799] = 3781, - [3800] = 834, - [3801] = 835, - [3802] = 841, - [3803] = 2428, - [3804] = 856, - [3805] = 843, + [3616] = 882, + [3617] = 920, + [3618] = 3618, + [3619] = 919, + [3620] = 917, + [3621] = 3618, + [3622] = 935, + [3623] = 918, + [3624] = 966, + [3625] = 916, + [3626] = 923, + [3627] = 924, + [3628] = 3618, + [3629] = 976, + [3630] = 907, + [3631] = 879, + [3632] = 880, + [3633] = 935, + [3634] = 3634, + [3635] = 928, + [3636] = 927, + [3637] = 928, + [3638] = 927, + [3639] = 911, + [3640] = 934, + [3641] = 923, + [3642] = 913, + [3643] = 924, + [3644] = 3634, + [3645] = 917, + [3646] = 886, + [3647] = 960, + [3648] = 3634, + [3649] = 920, + [3650] = 915, + [3651] = 916, + [3652] = 954, + [3653] = 904, + [3654] = 918, + [3655] = 919, + [3656] = 896, + [3657] = 938, + [3658] = 921, + [3659] = 882, + [3660] = 886, + [3661] = 925, + [3662] = 949, + [3663] = 3663, + [3664] = 3573, + [3665] = 915, + [3666] = 3666, + [3667] = 864, + [3668] = 913, + [3669] = 910, + [3670] = 879, + [3671] = 1064, + [3672] = 907, + [3673] = 904, + [3674] = 896, + [3675] = 880, + [3676] = 949, + [3677] = 1127, + [3678] = 954, + [3679] = 3596, + [3680] = 1087, + [3681] = 954, + [3682] = 921, + [3683] = 911, + [3684] = 912, + [3685] = 915, + [3686] = 911, + [3687] = 1121, + [3688] = 3573, + [3689] = 1118, + [3690] = 3666, + [3691] = 896, + [3692] = 1120, + [3693] = 898, + [3694] = 930, + [3695] = 960, + [3696] = 976, + [3697] = 966, + [3698] = 3583, + [3699] = 3586, + [3700] = 976, + [3701] = 938, + [3702] = 1114, + [3703] = 1113, + [3704] = 936, + [3705] = 1111, + [3706] = 925, + [3707] = 1110, + [3708] = 960, + [3709] = 3709, + [3710] = 1109, + [3711] = 1117, + [3712] = 915, + [3713] = 3713, + [3714] = 1048, + [3715] = 949, + [3716] = 910, + [3717] = 1108, + [3718] = 1046, + [3719] = 1105, + [3720] = 1054, + [3721] = 966, + [3722] = 1103, + [3723] = 1086, + [3724] = 1098, + [3725] = 1126, + [3726] = 896, + [3727] = 1096, + [3728] = 915, + [3729] = 910, + [3730] = 1097, + [3731] = 1095, + [3732] = 1093, + [3733] = 1092, + [3734] = 1083, + [3735] = 1094, + [3736] = 1058, + [3737] = 1074, + [3738] = 1073, + [3739] = 3739, + [3740] = 1125, + [3741] = 896, + [3742] = 896, + [3743] = 915, + [3744] = 1060, + [3745] = 1055, + [3746] = 1112, + [3747] = 1107, + [3748] = 1069, + [3749] = 1047, + [3750] = 921, + [3751] = 3751, + [3752] = 920, + [3753] = 3663, + [3754] = 921, + [3755] = 3751, + [3756] = 921, + [3757] = 3757, + [3758] = 913, + [3759] = 966, + [3760] = 912, + [3761] = 3761, + [3762] = 918, + [3763] = 1064, + [3764] = 960, + [3765] = 3751, + [3766] = 898, + [3767] = 954, + [3768] = 3768, + [3769] = 3663, + [3770] = 923, + [3771] = 3768, + [3772] = 921, + [3773] = 3768, + [3774] = 935, + [3775] = 3751, + [3776] = 3751, + [3777] = 3777, + [3778] = 3751, + [3779] = 976, + [3780] = 928, + [3781] = 3751, + [3782] = 3586, + [3783] = 904, + [3784] = 3751, + [3785] = 3785, + [3786] = 934, + [3787] = 3583, + [3788] = 3751, + [3789] = 930, + [3790] = 927, + [3791] = 916, + [3792] = 866, + [3793] = 911, + [3794] = 3751, + [3795] = 919, + [3796] = 3751, + [3797] = 3797, + [3798] = 1064, + [3799] = 3751, + [3800] = 936, + [3801] = 924, + [3802] = 917, + [3803] = 3751, + [3804] = 3768, + [3805] = 1113, [3806] = 3806, - [3807] = 844, - [3808] = 836, - [3809] = 820, - [3810] = 850, - [3811] = 851, - [3812] = 2440, - [3813] = 839, - [3814] = 845, - [3815] = 840, - [3816] = 2457, - [3817] = 849, - [3818] = 834, - [3819] = 852, - [3820] = 858, - [3821] = 860, - [3822] = 848, - [3823] = 848, - [3824] = 844, - [3825] = 3825, - [3826] = 849, - [3827] = 870, - [3828] = 3828, - [3829] = 852, - [3830] = 3828, - [3831] = 3828, + [3807] = 1047, + [3808] = 1048, + [3809] = 3809, + [3810] = 1107, + [3811] = 3811, + [3812] = 1055, + [3813] = 3813, + [3814] = 1060, + [3815] = 3815, + [3816] = 3816, + [3817] = 1069, + [3818] = 927, + [3819] = 3819, + [3820] = 1058, + [3821] = 1073, + [3822] = 1074, + [3823] = 1083, + [3824] = 1092, + [3825] = 1093, + [3826] = 1095, + [3827] = 1096, + [3828] = 1098, + [3829] = 1112, + [3830] = 1103, + [3831] = 1086, [3832] = 3832, - [3833] = 3828, - [3834] = 848, - [3835] = 3825, - [3836] = 851, - [3837] = 858, - [3838] = 3825, - [3839] = 860, - [3840] = 3825, - [3841] = 843, - [3842] = 856, - [3843] = 858, - [3844] = 790, - [3845] = 860, - [3846] = 845, - [3847] = 841, - [3848] = 850, - [3849] = 3849, - [3850] = 3850, - [3851] = 923, - [3852] = 3849, - [3853] = 3850, - [3854] = 3854, - [3855] = 893, - [3856] = 3856, - [3857] = 3850, - [3858] = 823, - [3859] = 827, - [3860] = 903, - [3861] = 3850, - [3862] = 820, - [3863] = 3863, - [3864] = 3863, - [3865] = 3865, - [3866] = 3865, - [3867] = 3849, - [3868] = 3850, - [3869] = 3854, - [3870] = 3854, - [3871] = 848, - [3872] = 3850, - [3873] = 3863, - [3874] = 3874, - [3875] = 3865, - [3876] = 808, - [3877] = 3865, - [3878] = 3850, - [3879] = 858, - [3880] = 3850, - [3881] = 3850, - [3882] = 814, - [3883] = 3883, - [3884] = 860, - [3885] = 3863, - [3886] = 828, - [3887] = 835, - [3888] = 3850, - [3889] = 3850, - [3890] = 924, - [3891] = 3854, - [3892] = 810, - [3893] = 822, - [3894] = 3849, - [3895] = 809, - [3896] = 809, - [3897] = 846, - [3898] = 822, - [3899] = 3806, - [3900] = 810, - [3901] = 809, - [3902] = 820, - [3903] = 3448, - [3904] = 808, - [3905] = 3443, - [3906] = 3906, - [3907] = 852, - [3908] = 3439, - [3909] = 791, - [3910] = 828, - [3911] = 828, - [3912] = 823, - [3913] = 814, - [3914] = 3914, - [3915] = 810, - [3916] = 814, - [3917] = 808, - [3918] = 810, - [3919] = 823, + [3833] = 1054, + [3834] = 3834, + [3835] = 1105, + [3836] = 1046, + [3837] = 1108, + [3838] = 1109, + [3839] = 1110, + [3840] = 1111, + [3841] = 3841, + [3842] = 3842, + [3843] = 1048, + [3844] = 1114, + [3845] = 1047, + [3846] = 925, + [3847] = 1107, + [3848] = 1055, + [3849] = 1069, + [3850] = 1060, + [3851] = 1112, + [3852] = 1073, + [3853] = 1120, + [3854] = 1121, + [3855] = 1094, + [3856] = 1074, + [3857] = 1125, + [3858] = 1126, + [3859] = 1083, + [3860] = 1127, + [3861] = 1092, + [3862] = 1093, + [3863] = 1095, + [3864] = 1096, + [3865] = 1098, + [3866] = 1103, + [3867] = 1105, + [3868] = 1046, + [3869] = 938, + [3870] = 1108, + [3871] = 1109, + [3872] = 1110, + [3873] = 3873, + [3874] = 1111, + [3875] = 3875, + [3876] = 1086, + [3877] = 918, + [3878] = 1054, + [3879] = 1113, + [3880] = 1114, + [3881] = 1127, + [3882] = 1121, + [3883] = 1125, + [3884] = 1126, + [3885] = 920, + [3886] = 3886, + [3887] = 3832, + [3888] = 3875, + [3889] = 3889, + [3890] = 917, + [3891] = 923, + [3892] = 916, + [3893] = 919, + [3894] = 3832, + [3895] = 3713, + [3896] = 924, + [3897] = 3897, + [3898] = 1094, + [3899] = 1097, + [3900] = 3832, + [3901] = 3901, + [3902] = 1117, + [3903] = 928, + [3904] = 1118, + [3905] = 1058, + [3906] = 1120, + [3907] = 3907, + [3908] = 3908, + [3909] = 1087, + [3910] = 3910, + [3911] = 3663, + [3912] = 1064, + [3913] = 935, + [3914] = 1118, + [3915] = 934, + [3916] = 3886, + [3917] = 1117, + [3918] = 1097, + [3919] = 1087, [3920] = 3920, [3921] = 3921, - [3922] = 823, - [3923] = 822, + [3922] = 3922, + [3923] = 3713, [3924] = 3924, - [3925] = 3914, + [3925] = 3907, [3926] = 3926, - [3927] = 814, - [3928] = 854, - [3929] = 835, - [3930] = 3930, - [3931] = 827, - [3932] = 809, - [3933] = 3640, - [3934] = 3934, - [3935] = 808, - [3936] = 2393, - [3937] = 822, - [3938] = 828, - [3939] = 2398, - [3940] = 3623, - [3941] = 2399, - [3942] = 3613, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, - [3946] = 3946, - [3947] = 3947, - [3948] = 3948, - [3949] = 3949, + [3927] = 1127, + [3928] = 1087, + [3929] = 3841, + [3930] = 1086, + [3931] = 3842, + [3932] = 3816, + [3933] = 1094, + [3934] = 1113, + [3935] = 3935, + [3936] = 3936, + [3937] = 3834, + [3938] = 3815, + [3939] = 3939, + [3940] = 3924, + [3941] = 1097, + [3942] = 3942, + [3943] = 1117, + [3944] = 1126, + [3945] = 3942, + [3946] = 3939, + [3947] = 1118, + [3948] = 3819, + [3949] = 3809, [3950] = 3950, - [3951] = 3949, - [3952] = 3952, + [3951] = 3951, + [3952] = 3942, [3953] = 3953, [3954] = 3954, - [3955] = 827, - [3956] = 3952, + [3955] = 3813, + [3956] = 3713, [3957] = 3957, - [3958] = 3953, - [3959] = 3959, - [3960] = 3959, + [3958] = 3958, + [3959] = 3811, + [3960] = 1112, [3961] = 3961, [3962] = 3962, - [3963] = 3943, - [3964] = 3943, - [3965] = 3962, - [3966] = 827, - [3967] = 3944, - [3968] = 3947, - [3969] = 3969, - [3970] = 3959, - [3971] = 3971, - [3972] = 3972, - [3973] = 3954, - [3974] = 3952, - [3975] = 3975, - [3976] = 3959, - [3977] = 3954, - [3978] = 846, - [3979] = 3979, - [3980] = 3980, - [3981] = 3972, - [3982] = 3982, - [3983] = 3946, - [3984] = 3943, - [3985] = 3962, - [3986] = 3944, - [3987] = 854, - [3988] = 3953, - [3989] = 3946, - [3990] = 3959, - [3991] = 3982, - [3992] = 3947, - [3993] = 3959, - [3994] = 3959, - [3995] = 3959, - [3996] = 3959, - [3997] = 3997, - [3998] = 3959, - [3999] = 3949, - [4000] = 3945, - [4001] = 3945, - [4002] = 4002, - [4003] = 3945, - [4004] = 3959, - [4005] = 3945, - [4006] = 3945, - [4007] = 3949, - [4008] = 3945, - [4009] = 3945, - [4010] = 3945, - [4011] = 3945, - [4012] = 4012, - [4013] = 3953, - [4014] = 3945, - [4015] = 3945, - [4016] = 3945, - [4017] = 3945, - [4018] = 3945, - [4019] = 3945, - [4020] = 3945, - [4021] = 3945, - [4022] = 3945, - [4023] = 3945, - [4024] = 3945, - [4025] = 3957, - [4026] = 3945, - [4027] = 3945, - [4028] = 3945, - [4029] = 3945, + [3963] = 1069, + [3964] = 3942, + [3965] = 1110, + [3966] = 3966, + [3967] = 3967, + [3968] = 1058, + [3969] = 3939, + [3970] = 3939, + [3971] = 1120, + [3972] = 1125, + [3973] = 1121, + [3974] = 1048, + [3975] = 3942, + [3976] = 3942, + [3977] = 3977, + [3978] = 3939, + [3979] = 1047, + [3980] = 1107, + [3981] = 1055, + [3982] = 1060, + [3983] = 3983, + [3984] = 1073, + [3985] = 3985, + [3986] = 1114, + [3987] = 1074, + [3988] = 1054, + [3989] = 930, + [3990] = 1111, + [3991] = 3942, + [3992] = 3942, + [3993] = 3939, + [3994] = 1083, + [3995] = 1092, + [3996] = 1093, + [3997] = 1095, + [3998] = 1096, + [3999] = 3999, + [4000] = 1098, + [4001] = 1103, + [4002] = 1105, + [4003] = 1046, + [4004] = 3939, + [4005] = 1108, + [4006] = 3939, + [4007] = 1109, + [4008] = 949, + [4009] = 4009, + [4010] = 4009, + [4011] = 4009, + [4012] = 896, + [4013] = 4009, + [4014] = 4014, + [4015] = 910, + [4016] = 4009, + [4017] = 915, + [4018] = 4009, + [4019] = 4009, + [4020] = 4009, + [4021] = 904, + [4022] = 954, + [4023] = 3797, + [4024] = 966, + [4025] = 960, + [4026] = 921, + [4027] = 913, + [4028] = 2890, + [4029] = 976, [4030] = 4030, - [4031] = 4031, - [4032] = 4032, - [4033] = 3945, - [4034] = 846, - [4035] = 854, - [4036] = 3961, - [4037] = 4037, - [4038] = 3997, - [4039] = 3945, - [4040] = 3969, - [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 4044, - [4045] = 3971, - [4046] = 3997, - [4047] = 4047, - [4048] = 3979, - [4049] = 3945, - [4050] = 3975, - [4051] = 3962, - [4052] = 3943, - [4053] = 4041, - [4054] = 4042, - [4055] = 4043, - [4056] = 4031, - [4057] = 4057, - [4058] = 3945, - [4059] = 3946, - [4060] = 3954, - [4061] = 3980, - [4062] = 3972, - [4063] = 3947, - [4064] = 3997, - [4065] = 3979, - [4066] = 3982, - [4067] = 3945, - [4068] = 4043, - [4069] = 3952, - [4070] = 4070, - [4071] = 3980, - [4072] = 3982, - [4073] = 4073, - [4074] = 4074, - [4075] = 3975, - [4076] = 4042, + [4031] = 907, + [4032] = 3901, + [4033] = 3910, + [4034] = 2890, + [4035] = 880, + [4036] = 3908, + [4037] = 2592, + [4038] = 882, + [4039] = 879, + [4040] = 2620, + [4041] = 904, + [4042] = 864, + [4043] = 3920, + [4044] = 3921, + [4045] = 925, + [4046] = 886, + [4047] = 3922, + [4048] = 4048, + [4049] = 3757, + [4050] = 3806, + [4051] = 3761, + [4052] = 2421, + [4053] = 3897, + [4054] = 3761, + [4055] = 3785, + [4056] = 913, + [4057] = 3785, + [4058] = 938, + [4059] = 3757, + [4060] = 1127, + [4061] = 886, + [4062] = 3842, + [4063] = 3834, + [4064] = 3811, + [4065] = 3889, + [4066] = 2800, + [4067] = 2786, + [4068] = 3819, + [4069] = 2803, + [4070] = 2820, + [4071] = 3813, + [4072] = 2806, + [4073] = 3886, + [4074] = 3809, + [4075] = 3873, + [4076] = 1086, [4077] = 4077, - [4078] = 4041, - [4079] = 4079, - [4080] = 3971, - [4081] = 4041, - [4082] = 3969, - [4083] = 4042, - [4084] = 4084, - [4085] = 3957, - [4086] = 3946, - [4087] = 840, - [4088] = 4031, - [4089] = 3961, - [4090] = 3969, - [4091] = 3961, - [4092] = 3971, - [4093] = 3975, - [4094] = 836, - [4095] = 3980, - [4096] = 3982, - [4097] = 3946, - [4098] = 3962, - [4099] = 2890, - [4100] = 3944, - [4101] = 3957, - [4102] = 834, - [4103] = 3943, - [4104] = 3949, - [4105] = 2883, - [4106] = 3962, - [4107] = 3944, - [4108] = 3997, - [4109] = 3947, - [4110] = 4043, - [4111] = 3953, - [4112] = 3609, - [4113] = 3602, - [4114] = 3448, - [4115] = 3945, - [4116] = 3957, - [4117] = 2866, - [4118] = 3954, - [4119] = 3972, - [4120] = 835, - [4121] = 3947, - [4122] = 3979, - [4123] = 3612, - [4124] = 3961, - [4125] = 3443, - [4126] = 3944, - [4127] = 3962, - [4128] = 820, - [4129] = 3943, - [4130] = 3439, - [4131] = 3946, - [4132] = 3969, - [4133] = 3971, - [4134] = 3975, - [4135] = 3980, - [4136] = 3982, - [4137] = 3946, - [4138] = 3944, - [4139] = 3943, - [4140] = 3962, - [4141] = 3962, - [4142] = 3949, - [4143] = 3943, - [4144] = 3946, + [4078] = 3813, + [4079] = 3811, + [4080] = 3873, + [4081] = 3907, + [4082] = 3834, + [4083] = 3886, + [4084] = 3819, + [4085] = 3809, + [4086] = 3907, + [4087] = 896, + [4088] = 3873, + [4089] = 1112, + [4090] = 1069, + [4091] = 3951, + [4092] = 2620, + [4093] = 3815, + [4094] = 3950, + [4095] = 880, + [4096] = 3936, + [4097] = 882, + [4098] = 3875, + [4099] = 3958, + [4100] = 915, + [4101] = 2421, + [4102] = 3926, + [4103] = 2592, + [4104] = 3957, + [4105] = 3875, + [4106] = 930, + [4107] = 879, + [4108] = 4108, + [4109] = 3967, + [4110] = 3977, + [4111] = 910, + [4112] = 3935, + [4113] = 938, + [4114] = 4114, + [4115] = 3841, + [4116] = 913, + [4117] = 925, + [4118] = 4118, + [4119] = 1126, + [4120] = 1048, + [4121] = 1047, + [4122] = 1107, + [4123] = 3816, + [4124] = 1125, + [4125] = 1121, + [4126] = 1054, + [4127] = 3842, + [4128] = 1055, + [4129] = 904, + [4130] = 1060, + [4131] = 3816, + [4132] = 3841, + [4133] = 3815, + [4134] = 1114, + [4135] = 3873, + [4136] = 3889, + [4137] = 1113, + [4138] = 907, + [4139] = 3961, + [4140] = 1073, + [4141] = 1074, + [4142] = 1083, + [4143] = 1092, + [4144] = 1093, [4145] = 3953, [4146] = 3954, - [4147] = 3957, - [4148] = 3944, - [4149] = 3962, - [4150] = 3961, - [4151] = 3943, - [4152] = 3946, - [4153] = 3969, - [4154] = 3971, - [4155] = 3962, - [4156] = 3975, - [4157] = 3980, - [4158] = 3982, - [4159] = 3943, - [4160] = 2399, - [4161] = 3946, - [4162] = 3943, - [4163] = 3962, - [4164] = 3946, - [4165] = 3944, - [4166] = 2393, - [4167] = 3944, - [4168] = 3962, - [4169] = 3943, - [4170] = 3946, - [4171] = 2398, - [4172] = 3962, - [4173] = 3943, - [4174] = 3946, - [4175] = 3944, - [4176] = 3947, - [4177] = 3972, - [4178] = 3962, - [4179] = 3975, - [4180] = 3980, - [4181] = 3943, - [4182] = 3946, - [4183] = 3949, - [4184] = 3954, - [4185] = 3962, - [4186] = 3943, - [4187] = 3975, - [4188] = 3971, - [4189] = 3957, - [4190] = 3961, - [4191] = 3946, - [4192] = 3969, - [4193] = 3971, - [4194] = 3953, - [4195] = 3980, - [4196] = 3982, - [4197] = 3946, - [4198] = 2398, - [4199] = 3944, - [4200] = 3943, - [4201] = 3962, - [4202] = 3944, - [4203] = 3962, - [4204] = 2399, - [4205] = 839, - [4206] = 3949, - [4207] = 3953, - [4208] = 3943, - [4209] = 3946, - [4210] = 3953, - [4211] = 3954, - [4212] = 3947, - [4213] = 3944, - [4214] = 3962, - [4215] = 3943, - [4216] = 3946, - [4217] = 3946, - [4218] = 3944, - [4219] = 3943, - [4220] = 3943, - [4221] = 3962, - [4222] = 3946, - [4223] = 3944, - [4224] = 3962, - [4225] = 3962, - [4226] = 3949, - [4227] = 3957, - [4228] = 3943, - [4229] = 3946, - [4230] = 3962, - [4231] = 3943, - [4232] = 3946, - [4233] = 3962, - [4234] = 3943, - [4235] = 3946, - [4236] = 3962, - [4237] = 820, - [4238] = 835, - [4239] = 3943, - [4240] = 3946, - [4241] = 3949, - [4242] = 2393, - [4243] = 3944, - [4244] = 3962, - [4245] = 3943, - [4246] = 3946, - [4247] = 3949, - [4248] = 3944, - [4249] = 3962, - [4250] = 3943, - [4251] = 3946, - [4252] = 1055, - [4253] = 2837, - [4254] = 1052, - [4255] = 3949, - [4256] = 1035, - [4257] = 1034, - [4258] = 3969, - [4259] = 914, - [4260] = 2840, - [4261] = 3944, - [4262] = 3962, - [4263] = 3943, - [4264] = 3975, - [4265] = 3946, - [4266] = 1028, - [4267] = 1004, - [4268] = 1057, - [4269] = 1001, - [4270] = 3943, - [4271] = 3962, - [4272] = 3944, - [4273] = 3949, - [4274] = 1000, - [4275] = 852, - [4276] = 3949, - [4277] = 996, - [4278] = 3953, - [4279] = 1005, - [4280] = 2454, - [4281] = 992, - [4282] = 3961, - [4283] = 2444, - [4284] = 989, - [4285] = 983, - [4286] = 981, - [4287] = 2466, - [4288] = 1038, - [4289] = 978, - [4290] = 976, - [4291] = 3946, - [4292] = 975, - [4293] = 2438, - [4294] = 3943, - [4295] = 3962, - [4296] = 3944, - [4297] = 1021, - [4298] = 2463, - [4299] = 974, - [4300] = 973, - [4301] = 972, - [4302] = 971, - [4303] = 846, - [4304] = 3953, - [4305] = 820, - [4306] = 969, - [4307] = 854, - [4308] = 835, - [4309] = 827, - [4310] = 3946, - [4311] = 3953, - [4312] = 3946, - [4313] = 3943, - [4314] = 3962, - [4315] = 3969, - [4316] = 3949, - [4317] = 1017, - [4318] = 967, - [4319] = 1015, - [4320] = 1019, - [4321] = 1018, - [4322] = 834, - [4323] = 850, - [4324] = 844, - [4325] = 2923, - [4326] = 2457, - [4327] = 3692, - [4328] = 2926, - [4329] = 843, - [4330] = 3191, - [4331] = 2908, - [4332] = 3697, - [4333] = 851, - [4334] = 839, - [4335] = 2428, - [4336] = 849, - [4337] = 3191, - [4338] = 852, - [4339] = 2440, - [4340] = 841, - [4341] = 845, - [4342] = 2866, - [4343] = 2393, - [4344] = 852, - [4345] = 839, - [4346] = 856, - [4347] = 848, - [4348] = 2438, - [4349] = 858, - [4350] = 860, - [4351] = 2837, - [4352] = 2840, - [4353] = 2466, - [4354] = 2454, - [4355] = 3727, - [4356] = 2444, - [4357] = 2466, - [4358] = 2890, - [4359] = 2444, - [4360] = 2438, - [4361] = 2463, - [4362] = 2454, - [4363] = 1040, - [4364] = 840, - [4365] = 2616, - [4366] = 836, - [4367] = 2609, - [4368] = 2463, - [4369] = 2883, - [4370] = 2650, - [4371] = 1025, - [4372] = 2646, - [4373] = 834, - [4374] = 840, - [4375] = 836, - [4376] = 834, - [4377] = 914, - [4378] = 2614, - [4379] = 2652, - [4380] = 1050, - [4381] = 839, - [4382] = 2398, - [4383] = 2627, - [4384] = 836, - [4385] = 852, - [4386] = 840, - [4387] = 1009, - [4388] = 2622, - [4389] = 2399, - [4390] = 2635, - [4391] = 991, - [4392] = 848, - [4393] = 809, - [4394] = 858, - [4395] = 2454, - [4396] = 858, - [4397] = 2457, - [4398] = 848, - [4399] = 2790, - [4400] = 2444, - [4401] = 822, - [4402] = 828, - [4403] = 822, - [4404] = 828, - [4405] = 856, - [4406] = 843, - [4407] = 2773, - [4408] = 2466, - [4409] = 850, - [4410] = 848, - [4411] = 2428, - [4412] = 3191, + [4147] = 1095, + [4148] = 1096, + [4149] = 1098, + [4150] = 3962, + [4151] = 1103, + [4152] = 1105, + [4153] = 1046, + [4154] = 1108, + [4155] = 1109, + [4156] = 1110, + [4157] = 1111, + [4158] = 3985, + [4159] = 3983, + [4160] = 915, + [4161] = 2812, + [4162] = 2817, + [4163] = 4163, + [4164] = 4164, + [4165] = 4163, + [4166] = 938, + [4167] = 936, + [4168] = 2800, + [4169] = 4169, + [4170] = 866, + [4171] = 2786, + [4172] = 912, + [4173] = 4163, + [4174] = 921, + [4175] = 925, + [4176] = 4163, + [4177] = 910, + [4178] = 2803, + [4179] = 896, + [4180] = 2820, + [4181] = 2806, + [4182] = 2787, + [4183] = 898, + [4184] = 930, + [4185] = 2787, + [4186] = 924, + [4187] = 898, + [4188] = 2817, + [4189] = 930, + [4190] = 934, + [4191] = 2812, + [4192] = 921, + [4193] = 936, + [4194] = 915, + [4195] = 918, + [4196] = 927, + [4197] = 896, + [4198] = 920, + [4199] = 935, + [4200] = 912, + [4201] = 917, + [4202] = 928, + [4203] = 919, + [4204] = 4204, + [4205] = 923, + [4206] = 916, + [4207] = 918, + [4208] = 919, + [4209] = 4209, + [4210] = 916, + [4211] = 949, + [4212] = 920, + [4213] = 4213, + [4214] = 919, + [4215] = 934, + [4216] = 935, + [4217] = 917, + [4218] = 927, + [4219] = 924, + [4220] = 923, + [4221] = 864, + [4222] = 4209, + [4223] = 4209, + [4224] = 928, + [4225] = 4213, + [4226] = 921, + [4227] = 923, + [4228] = 4209, + [4229] = 4229, + [4230] = 4213, + [4231] = 916, + [4232] = 4213, + [4233] = 4233, + [4234] = 4233, + [4235] = 4235, + [4236] = 4233, + [4237] = 4233, + [4238] = 4233, + [4239] = 923, + [4240] = 886, + [4241] = 882, + [4242] = 916, + [4243] = 976, + [4244] = 4233, + [4245] = 919, + [4246] = 4246, + [4247] = 4247, + [4248] = 4248, + [4249] = 4249, + [4250] = 4233, + [4251] = 4251, + [4252] = 4235, + [4253] = 4233, + [4254] = 4246, + [4255] = 4249, + [4256] = 954, + [4257] = 879, + [4258] = 4233, + [4259] = 4233, + [4260] = 4248, + [4261] = 4248, + [4262] = 904, + [4263] = 960, + [4264] = 915, + [4265] = 4249, + [4266] = 4233, + [4267] = 4235, + [4268] = 4248, + [4269] = 966, + [4270] = 4233, + [4271] = 4246, + [4272] = 880, + [4273] = 4273, + [4274] = 4233, + [4275] = 913, + [4276] = 4235, + [4277] = 4249, + [4278] = 910, + [4279] = 907, + [4280] = 4246, + [4281] = 896, + [4282] = 4282, + [4283] = 880, + [4284] = 907, + [4285] = 913, + [4286] = 907, + [4287] = 882, + [4288] = 4288, + [4289] = 4289, + [4290] = 2620, + [4291] = 904, + [4292] = 4292, + [4293] = 904, + [4294] = 925, + [4295] = 915, + [4296] = 4204, + [4297] = 896, + [4298] = 921, + [4299] = 880, + [4300] = 2592, + [4301] = 2421, + [4302] = 907, + [4303] = 886, + [4304] = 4304, + [4305] = 913, + [4306] = 4306, + [4307] = 879, + [4308] = 4308, + [4309] = 904, + [4310] = 938, + [4311] = 882, + [4312] = 913, + [4313] = 4292, + [4314] = 3875, + [4315] = 910, + [4316] = 3967, + [4317] = 866, + [4318] = 3886, + [4319] = 3889, + [4320] = 880, + [4321] = 886, + [4322] = 882, + [4323] = 879, + [4324] = 4030, + [4325] = 879, + [4326] = 4326, + [4327] = 886, + [4328] = 4328, + [4329] = 4329, + [4330] = 4328, + [4331] = 4328, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4335, + [4338] = 4333, + [4339] = 4329, + [4340] = 4340, + [4341] = 4334, + [4342] = 4342, + [4343] = 4343, + [4344] = 4333, + [4345] = 4329, + [4346] = 3985, + [4347] = 3983, + [4348] = 4348, + [4349] = 4335, + [4350] = 4333, + [4351] = 4329, + [4352] = 4340, + [4353] = 4353, + [4354] = 4348, + [4355] = 4355, + [4356] = 910, + [4357] = 3875, + [4358] = 4355, + [4359] = 4359, + [4360] = 1113, + [4361] = 2620, + [4362] = 4362, + [4363] = 4340, + [4364] = 910, + [4365] = 4365, + [4366] = 4332, + [4367] = 4329, + [4368] = 4333, + [4369] = 1112, + [4370] = 4333, + [4371] = 4336, + [4372] = 4328, + [4373] = 4342, + [4374] = 4329, + [4375] = 4353, + [4376] = 4348, + [4377] = 925, + [4378] = 4359, + [4379] = 4379, + [4380] = 4340, + [4381] = 4329, + [4382] = 4362, + [4383] = 4328, + [4384] = 4384, + [4385] = 4340, + [4386] = 4362, + [4387] = 938, + [4388] = 936, + [4389] = 4343, + [4390] = 4343, + [4391] = 4329, + [4392] = 4362, + [4393] = 1111, + [4394] = 1110, + [4395] = 898, + [4396] = 4396, + [4397] = 4328, + [4398] = 1109, + [4399] = 4340, + [4400] = 4333, + [4401] = 4335, + [4402] = 4379, + [4403] = 912, + [4404] = 4340, + [4405] = 4335, + [4406] = 4348, + [4407] = 4407, + [4408] = 4328, + [4409] = 4379, + [4410] = 4355, + [4411] = 4328, + [4412] = 1108, [4413] = 4413, - [4414] = 4414, - [4415] = 2726, - [4416] = 2888, - [4417] = 2438, - [4418] = 851, - [4419] = 856, - [4420] = 2440, - [4421] = 2463, - [4422] = 849, - [4423] = 844, - [4424] = 3192, - [4425] = 2997, - [4426] = 2679, + [4414] = 4333, + [4415] = 4359, + [4416] = 4329, + [4417] = 3954, + [4418] = 4418, + [4419] = 4328, + [4420] = 3953, + [4421] = 4421, + [4422] = 3886, + [4423] = 4340, + [4424] = 4335, + [4425] = 4353, + [4426] = 4336, [4427] = 4427, - [4428] = 841, - [4429] = 2720, - [4430] = 856, - [4431] = 843, - [4432] = 3015, - [4433] = 4433, - [4434] = 2616, - [4435] = 845, - [4436] = 851, - [4437] = 849, - [4438] = 2609, - [4439] = 2696, - [4440] = 2690, - [4441] = 841, - [4442] = 845, - [4443] = 860, - [4444] = 858, - [4445] = 850, - [4446] = 2721, - [4447] = 3192, - [4448] = 2650, - [4449] = 2743, - [4450] = 2646, - [4451] = 2738, - [4452] = 844, - [4453] = 2861, - [4454] = 860, - [4455] = 844, - [4456] = 2672, - [4457] = 2622, - [4458] = 850, - [4459] = 3205, - [4460] = 843, - [4461] = 860, - [4462] = 2614, - [4463] = 823, - [4464] = 2745, - [4465] = 851, - [4466] = 849, - [4467] = 2921, - [4468] = 2681, - [4469] = 2635, - [4470] = 2687, - [4471] = 2752, - [4472] = 841, - [4473] = 2674, - [4474] = 2862, - [4475] = 845, - [4476] = 2428, + [4428] = 938, + [4429] = 4333, + [4430] = 4328, + [4431] = 4353, + [4432] = 4342, + [4433] = 4384, + [4434] = 4340, + [4435] = 1046, + [4436] = 4328, + [4437] = 4329, + [4438] = 4384, + [4439] = 4421, + [4440] = 4440, + [4441] = 4333, + [4442] = 4421, + [4443] = 4418, + [4444] = 4384, + [4445] = 4359, + [4446] = 4336, + [4447] = 925, + [4448] = 4335, + [4449] = 4353, + [4450] = 4348, + [4451] = 4328, + [4452] = 4452, + [4453] = 4342, + [4454] = 4329, + [4455] = 4328, + [4456] = 1105, + [4457] = 4340, + [4458] = 1103, + [4459] = 4332, + [4460] = 4328, + [4461] = 4396, + [4462] = 1098, + [4463] = 4335, + [4464] = 4384, + [4465] = 4328, + [4466] = 4336, + [4467] = 4379, + [4468] = 4333, + [4469] = 4355, + [4470] = 1096, + [4471] = 4471, + [4472] = 1095, + [4473] = 4333, + [4474] = 4328, + [4475] = 4475, + [4476] = 4379, [4477] = 4477, - [4478] = 814, - [4479] = 4479, - [4480] = 2908, - [4481] = 2440, - [4482] = 2457, - [4483] = 2627, - [4484] = 810, - [4485] = 808, - [4486] = 2676, - [4487] = 4487, - [4488] = 4488, - [4489] = 2926, - [4490] = 2652, - [4491] = 4491, - [4492] = 4492, - [4493] = 809, - [4494] = 808, - [4495] = 3191, - [4496] = 3205, - [4497] = 2923, - [4498] = 810, - [4499] = 814, - [4500] = 4500, - [4501] = 823, - [4502] = 4502, - [4503] = 4503, - [4504] = 4413, - [4505] = 4433, - [4506] = 2674, - [4507] = 2745, - [4508] = 2790, - [4509] = 3192, - [4510] = 2773, - [4511] = 2726, - [4512] = 2888, - [4513] = 2921, - [4514] = 820, - [4515] = 835, - [4516] = 2679, - [4517] = 835, - [4518] = 3205, - [4519] = 4427, - [4520] = 2720, - [4521] = 3192, - [4522] = 820, - [4523] = 2696, - [4524] = 2690, - [4525] = 827, - [4526] = 2721, - [4527] = 828, - [4528] = 822, - [4529] = 2743, - [4530] = 2738, - [4531] = 2861, - [4532] = 809, - [4533] = 2457, - [4534] = 2672, - [4535] = 2428, - [4536] = 3191, - [4537] = 2681, - [4538] = 808, - [4539] = 2752, - [4540] = 2862, - [4541] = 4477, - [4542] = 2687, - [4543] = 822, - [4544] = 4414, - [4545] = 2440, - [4546] = 809, - [4547] = 858, - [4548] = 823, - [4549] = 810, - [4550] = 2676, - [4551] = 860, - [4552] = 4492, - [4553] = 3192, - [4554] = 4500, - [4555] = 4502, - [4556] = 2997, - [4557] = 814, - [4558] = 854, - [4559] = 4503, - [4560] = 828, - [4561] = 814, - [4562] = 3205, - [4563] = 846, - [4564] = 823, - [4565] = 4491, - [4566] = 3214, - [4567] = 854, - [4568] = 4488, - [4569] = 3015, - [4570] = 846, - [4571] = 4487, - [4572] = 4479, - [4573] = 808, - [4574] = 848, - [4575] = 827, - [4576] = 810, - [4577] = 3205, - [4578] = 790, - [4579] = 3368, - [4580] = 846, - [4581] = 4581, - [4582] = 820, - [4583] = 4583, - [4584] = 4581, - [4585] = 4581, - [4586] = 835, - [4587] = 827, - [4588] = 828, - [4589] = 4581, - [4590] = 820, - [4591] = 839, - [4592] = 822, - [4593] = 924, - [4594] = 4581, - [4595] = 835, - [4596] = 839, - [4597] = 4597, - [4598] = 827, - [4599] = 4599, - [4600] = 846, - [4601] = 4581, - [4602] = 4581, - [4603] = 3214, - [4604] = 834, - [4605] = 852, - [4606] = 3214, - [4607] = 840, - [4608] = 836, - [4609] = 836, - [4610] = 852, - [4611] = 854, - [4612] = 840, - [4613] = 834, - [4614] = 854, - [4615] = 4581, - [4616] = 4616, - [4617] = 870, - [4618] = 893, - [4619] = 840, - [4620] = 860, - [4621] = 836, - [4622] = 839, - [4623] = 4623, - [4624] = 858, - [4625] = 850, - [4626] = 848, - [4627] = 840, - [4628] = 844, - [4629] = 834, - [4630] = 845, - [4631] = 841, - [4632] = 903, - [4633] = 827, - [4634] = 856, - [4635] = 843, - [4636] = 849, - [4637] = 851, - [4638] = 3515, - [4639] = 3525, - [4640] = 836, - [4641] = 849, - [4642] = 841, - [4643] = 851, - [4644] = 843, - [4645] = 3535, - [4646] = 3806, - [4647] = 835, - [4648] = 3537, - [4649] = 834, - [4650] = 845, - [4651] = 923, - [4652] = 4652, - [4653] = 4653, - [4654] = 820, - [4655] = 856, - [4656] = 844, - [4657] = 3536, - [4658] = 848, - [4659] = 850, - [4660] = 858, - [4661] = 860, - [4662] = 4662, - [4663] = 4663, - [4664] = 3523, - [4665] = 2578, - [4666] = 854, - [4667] = 4667, - [4668] = 846, - [4669] = 4669, - [4670] = 4670, - [4671] = 839, - [4672] = 4672, - [4673] = 852, - [4674] = 3640, - [4675] = 852, - [4676] = 3526, - [4677] = 843, - [4678] = 4678, - [4679] = 858, - [4680] = 856, - [4681] = 843, - [4682] = 844, - [4683] = 860, - [4684] = 828, - [4685] = 791, - [4686] = 2578, - [4687] = 845, - [4688] = 850, - [4689] = 4689, - [4690] = 858, - [4691] = 860, - [4692] = 845, - [4693] = 4693, - [4694] = 4689, - [4695] = 851, - [4696] = 841, - [4697] = 849, - [4698] = 914, - [4699] = 848, - [4700] = 4700, - [4701] = 4701, - [4702] = 822, - [4703] = 844, - [4704] = 839, - [4705] = 4689, - [4706] = 856, - [4707] = 851, - [4708] = 849, - [4709] = 4709, + [4478] = 4478, + [4479] = 4329, + [4480] = 4328, + [4481] = 896, + [4482] = 4328, + [4483] = 4483, + [4484] = 4484, + [4485] = 4340, + [4486] = 4332, + [4487] = 4348, + [4488] = 4340, + [4489] = 915, + [4490] = 4335, + [4491] = 4348, + [4492] = 4333, + [4493] = 4328, + [4494] = 4362, + [4495] = 4329, + [4496] = 4355, + [4497] = 4333, + [4498] = 4329, + [4499] = 4348, + [4500] = 4334, + [4501] = 4396, + [4502] = 4343, + [4503] = 4348, + [4504] = 4334, + [4505] = 4340, + [4506] = 930, + [4507] = 4329, + [4508] = 4508, + [4509] = 4348, + [4510] = 4328, + [4511] = 4396, + [4512] = 3889, + [4513] = 4418, + [4514] = 4340, + [4515] = 4515, + [4516] = 4328, + [4517] = 4328, + [4518] = 4365, + [4519] = 4335, + [4520] = 4332, + [4521] = 4471, + [4522] = 4477, + [4523] = 4333, + [4524] = 4340, + [4525] = 4515, + [4526] = 4336, + [4527] = 4348, + [4528] = 4335, + [4529] = 4333, + [4530] = 4329, + [4531] = 4342, + [4532] = 4340, + [4533] = 4328, + [4534] = 4384, + [4535] = 4340, + [4536] = 4329, + [4537] = 4340, + [4538] = 4329, + [4539] = 4340, + [4540] = 4333, + [4541] = 4353, + [4542] = 4328, + [4543] = 4359, + [4544] = 4333, + [4545] = 4329, + [4546] = 1092, + [4547] = 4333, + [4548] = 4359, + [4549] = 4362, + [4550] = 4340, + [4551] = 4329, + [4552] = 4362, + [4553] = 4340, + [4554] = 4329, + [4555] = 4348, + [4556] = 4329, + [4557] = 4333, + [4558] = 4340, + [4559] = 4335, + [4560] = 4340, + [4561] = 1083, + [4562] = 2592, + [4563] = 4333, + [4564] = 4359, + [4565] = 1074, + [4566] = 4335, + [4567] = 4362, + [4568] = 4340, + [4569] = 4353, + [4570] = 4570, + [4571] = 1073, + [4572] = 4340, + [4573] = 4329, + [4574] = 4333, + [4575] = 4333, + [4576] = 3254, + [4577] = 1114, + [4578] = 4340, + [4579] = 3265, + [4580] = 2806, + [4581] = 3249, + [4582] = 4329, + [4583] = 4333, + [4584] = 4584, + [4585] = 4342, + [4586] = 4335, + [4587] = 4355, + [4588] = 4329, + [4589] = 4328, + [4590] = 4348, + [4591] = 4515, + [4592] = 4477, + [4593] = 2820, + [4594] = 4471, + [4595] = 4328, + [4596] = 4359, + [4597] = 4353, + [4598] = 3220, + [4599] = 4421, + [4600] = 4328, + [4601] = 4384, + [4602] = 4342, + [4603] = 4335, + [4604] = 4333, + [4605] = 4336, + [4606] = 4332, + [4607] = 4329, + [4608] = 4334, + [4609] = 4335, + [4610] = 4340, + [4611] = 2620, + [4612] = 2803, + [4613] = 4384, + [4614] = 4334, + [4615] = 1060, + [4616] = 4335, + [4617] = 4333, + [4618] = 4333, + [4619] = 4421, + [4620] = 4329, + [4621] = 4355, + [4622] = 4418, + [4623] = 1055, + [4624] = 1054, + [4625] = 4329, + [4626] = 4340, + [4627] = 1107, + [4628] = 921, + [4629] = 1047, + [4630] = 2786, + [4631] = 4355, + [4632] = 1048, + [4633] = 4328, + [4634] = 2421, + [4635] = 4336, + [4636] = 910, + [4637] = 1093, + [4638] = 4384, + [4639] = 938, + [4640] = 4348, + [4641] = 4355, + [4642] = 4353, + [4643] = 925, + [4644] = 4332, + [4645] = 3214, + [4646] = 4452, + [4647] = 4343, + [4648] = 4384, + [4649] = 4340, + [4650] = 4348, + [4651] = 4328, + [4652] = 4379, + [4653] = 2800, + [4654] = 4335, + [4655] = 4333, + [4656] = 4421, + [4657] = 2421, + [4658] = 4335, + [4659] = 4328, + [4660] = 4379, + [4661] = 896, + [4662] = 4328, + [4663] = 1121, + [4664] = 1125, + [4665] = 915, + [4666] = 4666, + [4667] = 2592, + [4668] = 4365, + [4669] = 4334, + [4670] = 4421, + [4671] = 4333, + [4672] = 4329, + [4673] = 4340, + [4674] = 4342, + [4675] = 4675, + [4676] = 4384, + [4677] = 4335, + [4678] = 4340, + [4679] = 4384, + [4680] = 4384, + [4681] = 4329, + [4682] = 1069, + [4683] = 4452, + [4684] = 4684, + [4685] = 4685, + [4686] = 4333, + [4687] = 4335, + [4688] = 4340, + [4689] = 4329, + [4690] = 4328, + [4691] = 971, + [4692] = 4328, + [4693] = 4355, + [4694] = 1086, + [4695] = 4471, + [4696] = 4477, + [4697] = 4379, + [4698] = 4333, + [4699] = 4515, + [4700] = 1126, + [4701] = 4334, + [4702] = 4348, + [4703] = 4333, + [4704] = 4333, + [4705] = 4418, + [4706] = 915, + [4707] = 896, + [4708] = 4329, + [4709] = 4329, [4710] = 4710, - [4711] = 850, - [4712] = 848, - [4713] = 852, - [4714] = 841, - [4715] = 846, - [4716] = 4716, - [4717] = 4717, - [4718] = 4718, - [4719] = 1057, - [4720] = 3560, - [4721] = 3563, - [4722] = 4717, - [4723] = 3697, - [4724] = 4717, - [4725] = 3727, - [4726] = 810, - [4727] = 809, - [4728] = 4718, - [4729] = 808, - [4730] = 4718, - [4731] = 4717, - [4732] = 3623, - [4733] = 3566, - [4734] = 3567, - [4735] = 4718, - [4736] = 4717, - [4737] = 4717, - [4738] = 4718, - [4739] = 4717, - [4740] = 4718, - [4741] = 4741, - [4742] = 4742, - [4743] = 4717, - [4744] = 4718, - [4745] = 4717, - [4746] = 4718, - [4747] = 4717, - [4748] = 4718, - [4749] = 2578, - [4750] = 4718, - [4751] = 1055, - [4752] = 4717, - [4753] = 1052, - [4754] = 1035, - [4755] = 1034, - [4756] = 4717, - [4757] = 4757, - [4758] = 3610, - [4759] = 4718, - [4760] = 4717, - [4761] = 4717, - [4762] = 3613, - [4763] = 3612, - [4764] = 3615, - [4765] = 4765, - [4766] = 814, - [4767] = 4767, - [4768] = 4768, - [4769] = 1028, - [4770] = 4770, - [4771] = 4718, - [4772] = 1004, - [4773] = 2616, - [4774] = 4718, - [4775] = 1021, - [4776] = 4776, - [4777] = 1005, - [4778] = 2609, - [4779] = 1001, - [4780] = 1019, - [4781] = 2650, - [4782] = 3602, - [4783] = 3609, - [4784] = 3531, - [4785] = 1000, - [4786] = 4717, - [4787] = 914, - [4788] = 1018, - [4789] = 1017, - [4790] = 3547, - [4791] = 3546, - [4792] = 996, - [4793] = 2646, - [4794] = 992, - [4795] = 2622, - [4796] = 989, - [4797] = 983, - [4798] = 981, - [4799] = 1038, - [4800] = 978, - [4801] = 2614, - [4802] = 2635, - [4803] = 4803, - [4804] = 2627, - [4805] = 4717, - [4806] = 976, - [4807] = 975, - [4808] = 2652, - [4809] = 974, - [4810] = 973, - [4811] = 4718, - [4812] = 4718, - [4813] = 972, - [4814] = 823, - [4815] = 971, - [4816] = 969, - [4817] = 854, - [4818] = 3692, - [4819] = 1015, - [4820] = 4718, - [4821] = 4718, - [4822] = 4717, - [4823] = 4718, - [4824] = 4717, - [4825] = 3594, - [4826] = 3595, - [4827] = 967, - [4828] = 4717, - [4829] = 4718, - [4830] = 4718, - [4831] = 4717, - [4832] = 4718, - [4833] = 4717, - [4834] = 2721, - [4835] = 2679, - [4836] = 4836, - [4837] = 2745, - [4838] = 4836, + [4711] = 4355, + [4712] = 4365, + [4713] = 4340, + [4714] = 4421, + [4715] = 4336, + [4716] = 4384, + [4717] = 1127, + [4718] = 4348, + [4719] = 4332, + [4720] = 4118, + [4721] = 3265, + [4722] = 2977, + [4723] = 971, + [4724] = 2982, + [4725] = 3014, + [4726] = 3002, + [4727] = 3013, + [4728] = 2974, + [4729] = 2620, + [4730] = 2976, + [4731] = 2800, + [4732] = 2786, + [4733] = 921, + [4734] = 2806, + [4735] = 2820, + [4736] = 2803, + [4737] = 2803, + [4738] = 4114, + [4739] = 2786, + [4740] = 2800, + [4741] = 930, + [4742] = 1058, + [4743] = 3220, + [4744] = 1087, + [4745] = 3214, + [4746] = 1097, + [4747] = 1117, + [4748] = 1118, + [4749] = 3573, + [4750] = 2820, + [4751] = 3287, + [4752] = 3288, + [4753] = 3280, + [4754] = 2970, + [4755] = 3032, + [4756] = 921, + [4757] = 912, + [4758] = 898, + [4759] = 936, + [4760] = 2806, + [4761] = 3254, + [4762] = 3249, + [4763] = 921, + [4764] = 2812, + [4765] = 923, + [4766] = 916, + [4767] = 919, + [4768] = 3573, + [4769] = 936, + [4770] = 898, + [4771] = 912, + [4772] = 2817, + [4773] = 930, + [4774] = 936, + [4775] = 898, + [4776] = 912, + [4777] = 2787, + [4778] = 918, + [4779] = 920, + [4780] = 924, + [4781] = 930, + [4782] = 927, + [4783] = 928, + [4784] = 935, + [4785] = 934, + [4786] = 4108, + [4787] = 917, + [4788] = 2592, + [4789] = 2421, + [4790] = 2812, + [4791] = 3280, + [4792] = 3586, + [4793] = 3239, + [4794] = 3294, + [4795] = 3164, + [4796] = 3134, + [4797] = 3037, + [4798] = 3038, + [4799] = 3039, + [4800] = 3241, + [4801] = 2786, + [4802] = 3140, + [4803] = 3173, + [4804] = 2820, + [4805] = 3132, + [4806] = 2800, + [4807] = 3130, + [4808] = 3089, + [4809] = 3353, + [4810] = 3056, + [4811] = 3055, + [4812] = 3266, + [4813] = 3094, + [4814] = 3583, + [4815] = 3155, + [4816] = 3149, + [4817] = 3092, + [4818] = 3075, + [4819] = 2787, + [4820] = 4820, + [4821] = 2817, + [4822] = 4822, + [4823] = 4823, + [4824] = 913, + [4825] = 4825, + [4826] = 2812, + [4827] = 2806, + [4828] = 904, + [4829] = 913, + [4830] = 904, + [4831] = 879, + [4832] = 882, + [4833] = 886, + [4834] = 3573, + [4835] = 4835, + [4836] = 880, + [4837] = 907, + [4838] = 4838, [4839] = 4839, - [4840] = 4836, - [4841] = 2614, - [4842] = 4839, - [4843] = 4836, - [4844] = 4839, - [4845] = 4839, - [4846] = 4836, - [4847] = 924, - [4848] = 870, - [4849] = 2676, - [4850] = 2674, - [4851] = 2578, - [4852] = 839, - [4853] = 4853, - [4854] = 2616, - [4855] = 4836, - [4856] = 2609, - [4857] = 2790, - [4858] = 4839, - [4859] = 827, - [4860] = 4836, - [4861] = 4839, - [4862] = 4836, - [4863] = 2773, - [4864] = 2650, - [4865] = 2646, - [4866] = 4836, - [4867] = 2726, - [4868] = 4836, - [4869] = 4839, - [4870] = 4839, - [4871] = 4836, - [4872] = 4839, - [4873] = 2622, - [4874] = 4839, - [4875] = 4839, - [4876] = 4836, - [4877] = 2646, - [4878] = 2635, - [4879] = 2720, - [4880] = 4839, - [4881] = 4836, - [4882] = 2696, - [4883] = 2690, - [4884] = 2627, - [4885] = 4836, - [4886] = 4839, - [4887] = 4836, - [4888] = 2652, - [4889] = 4836, - [4890] = 4839, - [4891] = 820, - [4892] = 2743, - [4893] = 2738, - [4894] = 835, - [4895] = 914, - [4896] = 4839, - [4897] = 4839, - [4898] = 4839, - [4899] = 2672, - [4900] = 4836, - [4901] = 4839, - [4902] = 2681, - [4903] = 2687, - [4904] = 2752, - [4905] = 4836, - [4906] = 827, - [4907] = 2652, - [4908] = 2616, - [4909] = 2627, - [4910] = 2609, - [4911] = 4836, - [4912] = 4839, - [4913] = 2650, - [4914] = 4839, - [4915] = 2635, - [4916] = 914, - [4917] = 4839, - [4918] = 2614, - [4919] = 2622, - [4920] = 4836, - [4921] = 4836, - [4922] = 2650, - [4923] = 2738, - [4924] = 3379, - [4925] = 4925, - [4926] = 2627, - [4927] = 2721, - [4928] = 2743, - [4929] = 2681, - [4930] = 4930, - [4931] = 2690, - [4932] = 4925, - [4933] = 2696, - [4934] = 2672, - [4935] = 3380, - [4936] = 2745, - [4937] = 2720, - [4938] = 2681, - [4939] = 2676, - [4940] = 2687, - [4941] = 2635, - [4942] = 2679, - [4943] = 2674, - [4944] = 2790, - [4945] = 2773, - [4946] = 2752, - [4947] = 840, - [4948] = 3379, - [4949] = 4949, - [4950] = 3380, - [4951] = 2622, - [4952] = 3394, - [4953] = 2679, - [4954] = 3368, - [4955] = 852, - [4956] = 2652, - [4957] = 2720, - [4958] = 3379, - [4959] = 3394, - [4960] = 3380, - [4961] = 2696, - [4962] = 4962, - [4963] = 836, - [4964] = 2616, - [4965] = 2609, - [4966] = 2690, - [4967] = 2721, - [4968] = 2726, - [4969] = 2743, - [4970] = 2726, - [4971] = 2738, - [4972] = 3394, - [4973] = 2773, - [4974] = 2790, - [4975] = 4975, - [4976] = 2646, - [4977] = 2672, - [4978] = 2614, - [4979] = 822, - [4980] = 828, - [4981] = 834, - [4982] = 3394, - [4983] = 923, - [4984] = 3379, - [4985] = 3380, - [4986] = 893, - [4987] = 2745, - [4988] = 903, - [4989] = 4989, - [4990] = 4853, - [4991] = 4925, - [4992] = 2676, - [4993] = 4925, - [4994] = 2674, - [4995] = 2752, - [4996] = 2687, - [4997] = 3535, - [4998] = 3379, - [4999] = 3519, - [5000] = 5000, - [5001] = 3421, - [5002] = 5000, - [5003] = 3640, - [5004] = 2726, - [5005] = 5005, - [5006] = 3448, - [5007] = 3513, - [5008] = 2743, - [5009] = 5005, - [5010] = 5010, - [5011] = 5011, - [5012] = 3424, - [5013] = 3509, - [5014] = 3473, - [5015] = 5015, - [5016] = 3531, - [5017] = 5011, - [5018] = 3425, - [5019] = 5005, - [5020] = 5010, - [5021] = 2773, - [5022] = 5000, - [5023] = 3443, - [5024] = 5005, - [5025] = 3806, - [5026] = 3539, - [5027] = 5027, - [5028] = 5028, - [5029] = 3538, - [5030] = 5005, - [5031] = 854, - [5032] = 5032, - [5033] = 3439, - [5034] = 3443, - [5035] = 2790, - [5036] = 5000, - [5037] = 5037, - [5038] = 3473, - [5039] = 3509, - [5040] = 3448, - [5041] = 5041, - [5042] = 5042, - [5043] = 2738, - [5044] = 5000, - [5045] = 3205, - [5046] = 846, - [5047] = 5010, - [5048] = 5015, - [5049] = 3448, - [5050] = 3539, - [5051] = 5011, - [5052] = 3473, - [5053] = 3443, - [5054] = 850, - [5055] = 3443, - [5056] = 3439, - [5057] = 5057, - [5058] = 3192, - [5059] = 3380, - [5060] = 5005, - [5061] = 5000, - [5062] = 5010, - [5063] = 5063, - [5064] = 3443, - [5065] = 5000, - [5066] = 5000, - [5067] = 3513, - [5068] = 3421, - [5069] = 3519, - [5070] = 3534, - [5071] = 3539, - [5072] = 3538, - [5073] = 5011, - [5074] = 3425, - [5075] = 3424, - [5076] = 3439, - [5077] = 5005, - [5078] = 2672, - [5079] = 2681, - [5080] = 2721, - [5081] = 3438, - [5082] = 2674, - [5083] = 5015, - [5084] = 3424, - [5085] = 5000, - [5086] = 3425, - [5087] = 3538, - [5088] = 3534, - [5089] = 3519, - [5090] = 3421, - [5091] = 5011, - [5092] = 3513, - [5093] = 2676, - [5094] = 3438, - [5095] = 3509, - [5096] = 844, - [5097] = 5005, - [5098] = 5015, - [5099] = 3438, - [5100] = 5100, - [5101] = 5011, - [5102] = 3425, - [5103] = 2679, - [5104] = 5000, - [5105] = 3424, - [5106] = 5000, - [5107] = 3538, - [5108] = 5108, - [5109] = 843, - [5110] = 5000, - [5111] = 5005, - [5112] = 3539, - [5113] = 3534, - [5114] = 3519, - [5115] = 3421, - [5116] = 3513, - [5117] = 5010, - [5118] = 5000, - [5119] = 5015, - [5120] = 3448, - [5121] = 5063, - [5122] = 5011, - [5123] = 5015, - [5124] = 3509, - [5125] = 3473, - [5126] = 5005, - [5127] = 856, - [5128] = 5128, - [5129] = 5011, - [5130] = 2690, - [5131] = 3448, - [5132] = 3523, - [5133] = 3526, - [5134] = 5005, - [5135] = 2745, - [5136] = 3394, - [5137] = 2696, - [5138] = 5138, - [5139] = 5000, - [5140] = 5000, - [5141] = 3443, - [5142] = 5005, - [5143] = 2720, - [5144] = 5000, - [5145] = 5011, - [5146] = 5146, - [5147] = 5147, - [5148] = 5005, - [5149] = 3438, - [5150] = 3439, - [5151] = 5005, - [5152] = 3448, - [5153] = 3448, - [5154] = 5005, - [5155] = 5011, - [5156] = 3536, - [5157] = 5000, - [5158] = 5011, - [5159] = 5011, - [5160] = 5011, - [5161] = 5011, - [5162] = 5011, - [5163] = 3537, - [5164] = 5011, - [5165] = 5011, - [5166] = 5005, - [5167] = 5167, - [5168] = 5011, - [5169] = 5063, - [5170] = 851, - [5171] = 5011, - [5172] = 5011, - [5173] = 849, - [5174] = 5011, - [5175] = 5010, - [5176] = 5005, - [5177] = 5011, - [5178] = 5011, - [5179] = 5011, - [5180] = 5000, - [5181] = 5011, - [5182] = 3534, - [5183] = 5011, - [5184] = 5005, - [5185] = 5010, - [5186] = 5000, - [5187] = 5005, - [5188] = 5011, - [5189] = 5000, - [5190] = 5011, - [5191] = 2687, - [5192] = 5005, - [5193] = 5011, - [5194] = 5000, - [5195] = 5011, - [5196] = 5011, - [5197] = 5010, - [5198] = 5011, - [5199] = 841, - [5200] = 5011, - [5201] = 5063, - [5202] = 2752, - [5203] = 5005, - [5204] = 3525, + [4840] = 2817, + [4841] = 879, + [4842] = 882, + [4843] = 3583, + [4844] = 886, + [4845] = 880, + [4846] = 2803, + [4847] = 923, + [4848] = 916, + [4849] = 3573, + [4850] = 919, + [4851] = 907, + [4852] = 923, + [4853] = 916, + [4854] = 918, + [4855] = 919, + [4856] = 2970, + [4857] = 920, + [4858] = 2982, + [4859] = 917, + [4860] = 924, + [4861] = 3002, + [4862] = 927, + [4863] = 928, + [4864] = 2977, + [4865] = 935, + [4866] = 934, + [4867] = 923, + [4868] = 3014, + [4869] = 3586, + [4870] = 3013, + [4871] = 916, + [4872] = 2974, + [4873] = 2976, + [4874] = 918, + [4875] = 919, + [4876] = 920, + [4877] = 3357, + [4878] = 924, + [4879] = 3032, + [4880] = 924, + [4881] = 2787, + [4882] = 4882, + [4883] = 928, + [4884] = 4884, + [4885] = 918, + [4886] = 920, + [4887] = 917, + [4888] = 935, + [4889] = 927, + [4890] = 927, + [4891] = 928, + [4892] = 934, + [4893] = 935, + [4894] = 934, + [4895] = 917, + [4896] = 4896, + [4897] = 4897, + [4898] = 4898, + [4899] = 4899, + [4900] = 3288, + [4901] = 3287, + [4902] = 3134, + [4903] = 880, + [4904] = 907, + [4905] = 4835, + [4906] = 882, + [4907] = 4838, + [4908] = 910, + [4909] = 4839, + [4910] = 886, + [4911] = 904, + [4912] = 3075, + [4913] = 886, + [4914] = 882, + [4915] = 3586, + [4916] = 913, + [4917] = 3583, + [4918] = 879, + [4919] = 880, + [4920] = 904, + [4921] = 4825, + [4922] = 3596, + [4923] = 4823, + [4924] = 913, + [4925] = 4822, + [4926] = 2817, + [4927] = 4820, + [4928] = 3573, + [4929] = 907, + [4930] = 3353, + [4931] = 919, + [4932] = 4896, + [4933] = 4898, + [4934] = 3357, + [4935] = 3092, + [4936] = 3149, + [4937] = 3155, + [4938] = 3094, + [4939] = 3266, + [4940] = 925, + [4941] = 3583, + [4942] = 3055, + [4943] = 3056, + [4944] = 3239, + [4945] = 3089, + [4946] = 3130, + [4947] = 3132, + [4948] = 3173, + [4949] = 3140, + [4950] = 3241, + [4951] = 910, + [4952] = 879, + [4953] = 4899, + [4954] = 2812, + [4955] = 3038, + [4956] = 4882, + [4957] = 3037, + [4958] = 3039, + [4959] = 3586, + [4960] = 915, + [4961] = 925, + [4962] = 3164, + [4963] = 3294, + [4964] = 923, + [4965] = 938, + [4966] = 3586, + [4967] = 896, + [4968] = 3583, + [4969] = 938, + [4970] = 2787, + [4971] = 915, + [4972] = 4884, + [4973] = 896, + [4974] = 916, + [4975] = 4897, + [4976] = 913, + [4977] = 912, + [4978] = 4978, + [4979] = 949, + [4980] = 921, + [4981] = 936, + [4982] = 912, + [4983] = 930, + [4984] = 904, + [4985] = 4978, + [4986] = 3797, + [4987] = 4987, + [4988] = 4988, + [4989] = 930, + [4990] = 898, + [4991] = 921, + [4992] = 898, + [4993] = 864, + [4994] = 4994, + [4995] = 3596, + [4996] = 4978, + [4997] = 936, + [4998] = 4998, + [4999] = 910, + [5000] = 910, + [5001] = 960, + [5002] = 896, + [5003] = 915, + [5004] = 4978, + [5005] = 4978, + [5006] = 938, + [5007] = 925, + [5008] = 4978, + [5009] = 4978, + [5010] = 896, + [5011] = 925, + [5012] = 4978, + [5013] = 938, + [5014] = 3596, + [5015] = 915, + [5016] = 5016, + [5017] = 912, + [5018] = 921, + [5019] = 921, + [5020] = 910, + [5021] = 919, + [5022] = 923, + [5023] = 916, + [5024] = 918, + [5025] = 920, + [5026] = 917, + [5027] = 924, + [5028] = 927, + [5029] = 928, + [5030] = 4204, + [5031] = 5031, + [5032] = 954, + [5033] = 935, + [5034] = 934, + [5035] = 5035, + [5036] = 5036, + [5037] = 938, + [5038] = 923, + [5039] = 916, + [5040] = 918, + [5041] = 919, + [5042] = 920, + [5043] = 917, + [5044] = 924, + [5045] = 927, + [5046] = 925, + [5047] = 928, + [5048] = 2890, + [5049] = 966, + [5050] = 5050, + [5051] = 935, + [5052] = 934, + [5053] = 5053, + [5054] = 3897, + [5055] = 3901, + [5056] = 915, + [5057] = 3806, + [5058] = 896, + [5059] = 5059, + [5060] = 3922, + [5061] = 5061, + [5062] = 936, + [5063] = 898, + [5064] = 976, + [5065] = 3920, + [5066] = 4030, + [5067] = 930, + [5068] = 898, + [5069] = 3910, + [5070] = 912, + [5071] = 3908, + [5072] = 930, + [5073] = 5073, + [5074] = 936, + [5075] = 935, + [5076] = 934, + [5077] = 5077, + [5078] = 916, + [5079] = 923, + [5080] = 918, + [5081] = 919, + [5082] = 920, + [5083] = 928, + [5084] = 927, + [5085] = 917, + [5086] = 924, + [5087] = 920, + [5088] = 917, + [5089] = 919, + [5090] = 927, + [5091] = 928, + [5092] = 935, + [5093] = 918, + [5094] = 934, + [5095] = 916, + [5096] = 924, + [5097] = 5097, + [5098] = 5098, + [5099] = 923, + [5100] = 866, + [5101] = 921, + [5102] = 5102, + [5103] = 971, + [5104] = 5098, + [5105] = 913, + [5106] = 2890, + [5107] = 5107, + [5108] = 930, + [5109] = 5098, + [5110] = 904, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 2974, + [5116] = 2976, + [5117] = 1127, + [5118] = 3977, + [5119] = 5113, + [5120] = 971, + [5121] = 5114, + [5122] = 938, + [5123] = 5114, + [5124] = 5113, + [5125] = 1073, + [5126] = 5113, + [5127] = 1074, + [5128] = 5114, + [5129] = 5114, + [5130] = 4114, + [5131] = 880, + [5132] = 5113, + [5133] = 3954, + [5134] = 1069, + [5135] = 1083, + [5136] = 1092, + [5137] = 5114, + [5138] = 907, + [5139] = 1093, + [5140] = 1095, + [5141] = 5113, + [5142] = 1096, + [5143] = 1098, + [5144] = 5113, + [5145] = 1103, + [5146] = 1105, + [5147] = 5113, + [5148] = 1046, + [5149] = 1108, + [5150] = 1109, + [5151] = 3013, + [5152] = 5114, + [5153] = 1055, + [5154] = 5113, + [5155] = 3953, + [5156] = 5113, + [5157] = 1110, + [5158] = 5114, + [5159] = 1111, + [5160] = 4118, + [5161] = 5114, + [5162] = 3961, + [5163] = 5114, + [5164] = 1112, + [5165] = 1054, + [5166] = 5113, + [5167] = 5113, + [5168] = 3962, + [5169] = 1107, + [5170] = 1113, + [5171] = 3014, + [5172] = 1114, + [5173] = 5113, + [5174] = 1047, + [5175] = 3950, + [5176] = 1048, + [5177] = 5177, + [5178] = 5178, + [5179] = 5179, + [5180] = 925, + [5181] = 5114, + [5182] = 5113, + [5183] = 3967, + [5184] = 5114, + [5185] = 3957, + [5186] = 2890, + [5187] = 5187, + [5188] = 5188, + [5189] = 3951, + [5190] = 5114, + [5191] = 5114, + [5192] = 1121, + [5193] = 1125, + [5194] = 5113, + [5195] = 5114, + [5196] = 1126, + [5197] = 5113, + [5198] = 5113, + [5199] = 5114, + [5200] = 3983, + [5201] = 5114, + [5202] = 3985, + [5203] = 3921, + [5204] = 3935, [5205] = 5205, - [5206] = 3515, - [5207] = 3443, - [5208] = 845, - [5209] = 975, - [5210] = 3567, - [5211] = 5211, - [5212] = 3539, - [5213] = 5213, - [5214] = 5214, - [5215] = 5215, - [5216] = 5215, - [5217] = 5217, - [5218] = 3610, - [5219] = 3615, - [5220] = 3513, - [5221] = 5215, - [5222] = 5215, - [5223] = 3421, - [5224] = 3519, - [5225] = 3534, - [5226] = 3539, - [5227] = 3538, - [5228] = 3424, - [5229] = 3613, - [5230] = 3623, - [5231] = 5108, + [5206] = 5206, + [5207] = 3936, + [5208] = 5208, + [5209] = 2970, + [5210] = 2982, + [5211] = 5114, + [5212] = 879, + [5213] = 882, + [5214] = 5113, + [5215] = 5113, + [5216] = 3926, + [5217] = 3002, + [5218] = 3958, + [5219] = 886, + [5220] = 1060, + [5221] = 5113, + [5222] = 5114, + [5223] = 5114, + [5224] = 5114, + [5225] = 4108, + [5226] = 3032, + [5227] = 5113, + [5228] = 5114, + [5229] = 5229, + [5230] = 5114, + [5231] = 5113, [5232] = 5232, - [5233] = 3473, - [5234] = 3509, - [5235] = 3448, - [5236] = 5236, - [5237] = 3612, - [5238] = 5232, - [5239] = 5213, - [5240] = 5240, - [5241] = 5215, - [5242] = 3473, - [5243] = 3424, - [5244] = 5215, - [5245] = 5215, - [5246] = 5215, - [5247] = 1052, - [5248] = 5248, - [5249] = 3566, - [5250] = 1035, - [5251] = 3563, - [5252] = 5215, - [5253] = 1034, - [5254] = 5254, - [5255] = 3425, - [5256] = 5256, - [5257] = 3473, - [5258] = 5215, - [5259] = 3547, - [5260] = 3513, - [5261] = 3421, - [5262] = 3519, - [5263] = 3534, - [5264] = 3539, - [5265] = 3538, - [5266] = 5266, - [5267] = 3509, - [5268] = 5248, - [5269] = 1028, - [5270] = 5217, - [5271] = 5271, - [5272] = 5213, - [5273] = 5273, - [5274] = 5274, - [5275] = 1000, - [5276] = 5215, - [5277] = 5215, - [5278] = 996, - [5279] = 992, - [5280] = 3438, - [5281] = 989, - [5282] = 983, - [5283] = 3546, - [5284] = 3448, - [5285] = 5285, - [5286] = 5215, - [5287] = 981, - [5288] = 5288, - [5289] = 1038, - [5290] = 978, - [5291] = 5215, - [5292] = 976, - [5293] = 5248, - [5294] = 3425, - [5295] = 5295, - [5296] = 5248, - [5297] = 5232, - [5298] = 3424, - [5299] = 5273, - [5300] = 5215, - [5301] = 5215, - [5302] = 5215, - [5303] = 1004, - [5304] = 5215, - [5305] = 3421, - [5306] = 5232, - [5307] = 5217, - [5308] = 5248, - [5309] = 5217, - [5310] = 5248, - [5311] = 5213, - [5312] = 5217, - [5313] = 5248, - [5314] = 3424, - [5315] = 5240, - [5316] = 974, - [5317] = 973, - [5318] = 972, - [5319] = 971, - [5320] = 3513, - [5321] = 3538, - [5322] = 5217, - [5323] = 969, - [5324] = 5248, - [5325] = 967, - [5326] = 3534, - [5327] = 1055, - [5328] = 3425, - [5329] = 3519, - [5330] = 5215, - [5331] = 5215, - [5332] = 1018, - [5333] = 5273, - [5334] = 5211, - [5335] = 5215, - [5336] = 5217, - [5337] = 5288, - [5338] = 5248, - [5339] = 3425, - [5340] = 5248, - [5341] = 5217, - [5342] = 1019, - [5343] = 1021, - [5344] = 3513, - [5345] = 839, - [5346] = 5215, - [5347] = 5240, - [5348] = 3443, - [5349] = 3509, - [5350] = 3443, - [5351] = 5240, - [5352] = 5217, - [5353] = 3509, - [5354] = 5274, - [5355] = 3538, - [5356] = 5274, - [5357] = 5215, - [5358] = 5358, - [5359] = 3439, - [5360] = 3539, - [5361] = 1015, - [5362] = 5215, - [5363] = 5215, - [5364] = 5215, - [5365] = 5288, - [5366] = 5215, - [5367] = 5211, - [5368] = 5368, - [5369] = 5256, - [5370] = 5211, - [5371] = 5217, - [5372] = 5295, - [5373] = 5274, - [5374] = 3560, - [5375] = 5215, - [5376] = 5248, - [5377] = 5215, - [5378] = 3594, - [5379] = 5215, - [5380] = 3595, - [5381] = 1005, - [5382] = 5382, - [5383] = 1017, - [5384] = 5288, - [5385] = 3609, - [5386] = 3421, - [5387] = 3519, - [5388] = 1001, - [5389] = 3534, - [5390] = 3806, - [5391] = 5391, - [5392] = 3473, - [5393] = 5217, - [5394] = 5215, - [5395] = 5273, - [5396] = 1057, - [5397] = 3602, - [5398] = 5248, - [5399] = 5399, + [5233] = 5113, + [5234] = 2977, + [5235] = 1086, + [5236] = 3134, + [5237] = 3014, + [5238] = 5238, + [5239] = 5239, + [5240] = 3149, + [5241] = 5241, + [5242] = 5241, + [5243] = 3092, + [5244] = 2982, + [5245] = 5241, + [5246] = 5239, + [5247] = 5239, + [5248] = 5241, + [5249] = 5239, + [5250] = 910, + [5251] = 3140, + [5252] = 2970, + [5253] = 5241, + [5254] = 5239, + [5255] = 915, + [5256] = 5241, + [5257] = 5239, + [5258] = 3002, + [5259] = 5241, + [5260] = 896, + [5261] = 960, + [5262] = 5241, + [5263] = 5239, + [5264] = 5239, + [5265] = 2976, + [5266] = 5239, + [5267] = 5241, + [5268] = 5241, + [5269] = 5241, + [5270] = 5239, + [5271] = 5241, + [5272] = 949, + [5273] = 3089, + [5274] = 2974, + [5275] = 5239, + [5276] = 3155, + [5277] = 3056, + [5278] = 3130, + [5279] = 5241, + [5280] = 3055, + [5281] = 5239, + [5282] = 5241, + [5283] = 5241, + [5284] = 5241, + [5285] = 3132, + [5286] = 3013, + [5287] = 5239, + [5288] = 3014, + [5289] = 5239, + [5290] = 2890, + [5291] = 3173, + [5292] = 5239, + [5293] = 5239, + [5294] = 2976, + [5295] = 2974, + [5296] = 5241, + [5297] = 910, + [5298] = 5239, + [5299] = 2977, + [5300] = 3032, + [5301] = 5239, + [5302] = 5241, + [5303] = 3094, + [5304] = 930, + [5305] = 3032, + [5306] = 5239, + [5307] = 5241, + [5308] = 2977, + [5309] = 971, + [5310] = 5239, + [5311] = 3164, + [5312] = 3002, + [5313] = 3039, + [5314] = 3038, + [5315] = 3075, + [5316] = 5239, + [5317] = 3037, + [5318] = 5241, + [5319] = 5239, + [5320] = 5241, + [5321] = 5241, + [5322] = 5239, + [5323] = 2982, + [5324] = 3013, + [5325] = 971, + [5326] = 5241, + [5327] = 2970, + [5328] = 5238, + [5329] = 3039, + [5330] = 5330, + [5331] = 3132, + [5332] = 3130, + [5333] = 3130, + [5334] = 3140, + [5335] = 904, + [5336] = 3055, + [5337] = 3056, + [5338] = 2977, + [5339] = 913, + [5340] = 3757, + [5341] = 3761, + [5342] = 3134, + [5343] = 5343, + [5344] = 3785, + [5345] = 3038, + [5346] = 3075, + [5347] = 3037, + [5348] = 3089, + [5349] = 3056, + [5350] = 3134, + [5351] = 5330, + [5352] = 2970, + [5353] = 5330, + [5354] = 3075, + [5355] = 3092, + [5356] = 3055, + [5357] = 3761, + [5358] = 3037, + [5359] = 3164, + [5360] = 2976, + [5361] = 3155, + [5362] = 3149, + [5363] = 3038, + [5364] = 3173, + [5365] = 3094, + [5366] = 2982, + [5367] = 3757, + [5368] = 976, + [5369] = 2974, + [5370] = 912, + [5371] = 3094, + [5372] = 5372, + [5373] = 954, + [5374] = 3785, + [5375] = 3785, + [5376] = 5376, + [5377] = 3013, + [5378] = 936, + [5379] = 3757, + [5380] = 3002, + [5381] = 3089, + [5382] = 5330, + [5383] = 3797, + [5384] = 3761, + [5385] = 3155, + [5386] = 3014, + [5387] = 3164, + [5388] = 3149, + [5389] = 921, + [5390] = 3140, + [5391] = 898, + [5392] = 3092, + [5393] = 3173, + [5394] = 3039, + [5395] = 3785, + [5396] = 3032, + [5397] = 3757, + [5398] = 966, + [5399] = 3761, [5400] = 5400, - [5401] = 5401, - [5402] = 2836, + [5401] = 3132, + [5402] = 5402, [5403] = 5403, - [5404] = 5399, - [5405] = 5399, - [5406] = 3473, - [5407] = 2834, - [5408] = 5399, - [5409] = 5409, - [5410] = 3697, - [5411] = 5401, - [5412] = 5412, - [5413] = 2835, - [5414] = 2393, - [5415] = 5399, - [5416] = 3538, - [5417] = 5236, - [5418] = 3539, - [5419] = 5401, - [5420] = 3534, - [5421] = 5399, - [5422] = 3519, - [5423] = 5295, - [5424] = 5401, - [5425] = 3421, - [5426] = 2832, - [5427] = 5399, - [5428] = 5399, - [5429] = 5401, - [5430] = 3692, - [5431] = 5399, - [5432] = 5399, - [5433] = 5412, - [5434] = 5256, - [5435] = 5412, - [5436] = 5409, - [5437] = 3727, - [5438] = 5438, - [5439] = 5399, - [5440] = 5440, - [5441] = 5409, - [5442] = 5401, - [5443] = 3425, - [5444] = 3424, - [5445] = 3509, - [5446] = 5446, - [5447] = 2833, - [5448] = 5403, - [5449] = 5412, - [5450] = 5450, - [5451] = 3513, - [5452] = 5399, - [5453] = 5401, - [5454] = 5399, - [5455] = 5409, - [5456] = 5456, - [5457] = 5409, - [5458] = 5458, - [5459] = 5401, - [5460] = 5399, - [5461] = 5461, - [5462] = 5409, - [5463] = 5409, - [5464] = 5409, - [5465] = 5465, - [5466] = 2833, - [5467] = 5467, - [5468] = 5468, - [5469] = 5467, - [5470] = 5467, - [5471] = 5465, - [5472] = 5472, - [5473] = 2837, - [5474] = 5465, - [5475] = 5472, - [5476] = 5472, + [5404] = 928, + [5405] = 3875, + [5406] = 3873, + [5407] = 5407, + [5408] = 5408, + [5409] = 3889, + [5410] = 5410, + [5411] = 5411, + [5412] = 3039, + [5413] = 3038, + [5414] = 3037, + [5415] = 3886, + [5416] = 3815, + [5417] = 918, + [5418] = 5407, + [5419] = 3886, + [5420] = 3921, + [5421] = 3889, + [5422] = 5411, + [5423] = 5408, + [5424] = 5403, + [5425] = 5403, + [5426] = 5408, + [5427] = 3816, + [5428] = 5428, + [5429] = 5407, + [5430] = 5411, + [5431] = 3134, + [5432] = 5432, + [5433] = 925, + [5434] = 3842, + [5435] = 3075, + [5436] = 5403, + [5437] = 5408, + [5438] = 3841, + [5439] = 5403, + [5440] = 938, + [5441] = 920, + [5442] = 5407, + [5443] = 5403, + [5444] = 3907, + [5445] = 3811, + [5446] = 3813, + [5447] = 3809, + [5448] = 3819, + [5449] = 3834, + [5450] = 3094, + [5451] = 3875, + [5452] = 3886, + [5453] = 3140, + [5454] = 3173, + [5455] = 5410, + [5456] = 5403, + [5457] = 5408, + [5458] = 3132, + [5459] = 3130, + [5460] = 3089, + [5461] = 5432, + [5462] = 5462, + [5463] = 5410, + [5464] = 924, + [5465] = 3056, + [5466] = 3055, + [5467] = 4204, + [5468] = 3889, + [5469] = 3873, + [5470] = 3155, + [5471] = 3149, + [5472] = 5407, + [5473] = 3092, + [5474] = 4030, + [5475] = 5410, + [5476] = 3164, [5477] = 5477, - [5478] = 5472, - [5479] = 5295, - [5480] = 5467, - [5481] = 5465, - [5482] = 5482, - [5483] = 5465, - [5484] = 5484, - [5485] = 5485, - [5486] = 2835, - [5487] = 5467, - [5488] = 5465, - [5489] = 5472, - [5490] = 5465, - [5491] = 2836, - [5492] = 5484, - [5493] = 5493, - [5494] = 2840, - [5495] = 5495, - [5496] = 5465, - [5497] = 5465, - [5498] = 5465, - [5499] = 2832, - [5500] = 5484, - [5501] = 2834, - [5502] = 5472, - [5503] = 5484, - [5504] = 5465, - [5505] = 5467, - [5506] = 5506, - [5507] = 5467, - [5508] = 5472, - [5509] = 5467, - [5510] = 5467, - [5511] = 5472, - [5512] = 5512, - [5513] = 5513, - [5514] = 5513, - [5515] = 5515, - [5516] = 5516, - [5517] = 5515, - [5518] = 5513, - [5519] = 5515, - [5520] = 5513, - [5521] = 5521, - [5522] = 5515, - [5523] = 5521, - [5524] = 5516, - [5525] = 5515, - [5526] = 5295, - [5527] = 5521, - [5528] = 5516, - [5529] = 5513, - [5530] = 5515, - [5531] = 5521, - [5532] = 5513, - [5533] = 5485, - [5534] = 5495, - [5535] = 5513, - [5536] = 5536, - [5537] = 2837, - [5538] = 5513, - [5539] = 5521, - [5540] = 2840, - [5541] = 5521, - [5542] = 5542, - [5543] = 5543, - [5544] = 5515, - [5545] = 5512, - [5546] = 5521, - [5547] = 5512, - [5548] = 5515, - [5549] = 5521, - [5550] = 5550, - [5551] = 5551, + [5478] = 5478, + [5479] = 3886, + [5480] = 5408, + [5481] = 5481, + [5482] = 3841, + [5483] = 3842, + [5484] = 917, + [5485] = 5407, + [5486] = 5403, + [5487] = 5403, + [5488] = 3834, + [5489] = 5489, + [5490] = 5411, + [5491] = 5432, + [5492] = 927, + [5493] = 5407, + [5494] = 5408, + [5495] = 5403, + [5496] = 5407, + [5497] = 5403, + [5498] = 5403, + [5499] = 5408, + [5500] = 5408, + [5501] = 935, + [5502] = 5403, + [5503] = 5403, + [5504] = 5403, + [5505] = 3816, + [5506] = 5403, + [5507] = 5403, + [5508] = 5410, + [5509] = 3873, + [5510] = 3841, + [5511] = 5407, + [5512] = 3815, + [5513] = 5403, + [5514] = 934, + [5515] = 5403, + [5516] = 5408, + [5517] = 3886, + [5518] = 5518, + [5519] = 5403, + [5520] = 5520, + [5521] = 3819, + [5522] = 3889, + [5523] = 3809, + [5524] = 5408, + [5525] = 3897, + [5526] = 3834, + [5527] = 5407, + [5528] = 3813, + [5529] = 3819, + [5530] = 3586, + [5531] = 3809, + [5532] = 5403, + [5533] = 3901, + [5534] = 5403, + [5535] = 5535, + [5536] = 3813, + [5537] = 5407, + [5538] = 5407, + [5539] = 3920, + [5540] = 5403, + [5541] = 3761, + [5542] = 5408, + [5543] = 3907, + [5544] = 3811, + [5545] = 3811, + [5546] = 3907, + [5547] = 3757, + [5548] = 5403, + [5549] = 3815, + [5550] = 3875, + [5551] = 3842, [5552] = 5552, - [5553] = 5551, - [5554] = 5554, - [5555] = 5550, - [5556] = 5554, - [5557] = 5554, - [5558] = 5552, - [5559] = 5552, - [5560] = 5560, - [5561] = 5560, - [5562] = 5550, - [5563] = 5550, - [5564] = 5554, - [5565] = 5565, - [5566] = 5550, - [5567] = 5550, - [5568] = 5554, - [5569] = 5550, - [5570] = 5570, - [5571] = 5550, + [5553] = 3816, + [5554] = 3908, + [5555] = 3886, + [5556] = 5403, + [5557] = 3875, + [5558] = 5403, + [5559] = 5408, + [5560] = 3907, + [5561] = 3811, + [5562] = 5407, + [5563] = 5410, + [5564] = 3813, + [5565] = 3809, + [5566] = 3819, + [5567] = 3834, + [5568] = 5403, + [5569] = 5410, + [5570] = 3910, + [5571] = 5403, [5572] = 5572, - [5573] = 5550, - [5574] = 5565, - [5575] = 5554, - [5576] = 5576, - [5577] = 5552, - [5578] = 5578, - [5579] = 5550, - [5580] = 5554, - [5581] = 5554, - [5582] = 5550, - [5583] = 5551, - [5584] = 5560, - [5585] = 5585, - [5586] = 5554, - [5587] = 3368, - [5588] = 5565, - [5589] = 5589, - [5590] = 5550, - [5591] = 5560, - [5592] = 5572, - [5593] = 5570, - [5594] = 5550, - [5595] = 5550, - [5596] = 2888, - [5597] = 5554, - [5598] = 5550, - [5599] = 5550, - [5600] = 5552, - [5601] = 5565, - [5602] = 5551, - [5603] = 5554, - [5604] = 5552, - [5605] = 5560, - [5606] = 5554, - [5607] = 5560, - [5608] = 5554, - [5609] = 5551, - [5610] = 5610, - [5611] = 5589, - [5612] = 5612, - [5613] = 5554, - [5614] = 5550, - [5615] = 5554, - [5616] = 5554, - [5617] = 5554, - [5618] = 5560, - [5619] = 5610, - [5620] = 5589, - [5621] = 5610, - [5622] = 5610, - [5623] = 870, - [5624] = 5552, - [5625] = 5589, - [5626] = 5550, + [5573] = 5403, + [5574] = 5403, + [5575] = 3875, + [5576] = 3875, + [5577] = 5432, + [5578] = 5403, + [5579] = 5407, + [5580] = 5408, + [5581] = 3815, + [5582] = 3816, + [5583] = 3841, + [5584] = 5408, + [5585] = 5408, + [5586] = 5586, + [5587] = 3842, + [5588] = 3873, + [5589] = 5407, + [5590] = 5408, + [5591] = 5407, + [5592] = 5410, + [5593] = 5403, + [5594] = 5403, + [5595] = 5407, + [5596] = 3785, + [5597] = 5597, + [5598] = 5403, + [5599] = 5432, + [5600] = 5408, + [5601] = 5432, + [5602] = 3806, + [5603] = 5408, + [5604] = 3922, + [5605] = 5408, + [5606] = 3583, + [5607] = 5607, + [5608] = 5407, + [5609] = 5407, + [5610] = 5408, + [5611] = 3875, + [5612] = 3886, + [5613] = 5407, + [5614] = 5408, + [5615] = 5408, + [5616] = 5616, + [5617] = 5407, + [5618] = 5403, + [5619] = 5407, + [5620] = 5407, + [5621] = 5621, + [5622] = 1055, + [5623] = 5623, + [5624] = 5624, + [5625] = 5625, + [5626] = 5621, [5627] = 5627, - [5628] = 5554, - [5629] = 5610, - [5630] = 5554, - [5631] = 5610, - [5632] = 5551, - [5633] = 5550, - [5634] = 5554, - [5635] = 5610, - [5636] = 5589, - [5637] = 5550, - [5638] = 5554, - [5639] = 5550, - [5640] = 5565, - [5641] = 5570, - [5642] = 5610, - [5643] = 5552, - [5644] = 5550, - [5645] = 5550, - [5646] = 5570, - [5647] = 5554, - [5648] = 5589, - [5649] = 5554, - [5650] = 5572, - [5651] = 2862, - [5652] = 2840, - [5653] = 5554, - [5654] = 5572, - [5655] = 5550, - [5656] = 5565, - [5657] = 5550, - [5658] = 5570, - [5659] = 5554, - [5660] = 5610, - [5661] = 5554, - [5662] = 5565, - [5663] = 5589, - [5664] = 924, - [5665] = 5610, - [5666] = 5551, - [5667] = 5550, - [5668] = 5610, - [5669] = 5565, - [5670] = 5550, - [5671] = 5554, - [5672] = 5572, - [5673] = 5570, - [5674] = 5610, - [5675] = 5572, - [5676] = 5560, - [5677] = 5560, - [5678] = 5550, - [5679] = 5550, - [5680] = 5554, - [5681] = 5550, - [5682] = 5610, - [5683] = 5570, - [5684] = 5610, - [5685] = 5572, - [5686] = 5572, - [5687] = 5570, - [5688] = 5550, - [5689] = 5554, - [5690] = 5554, - [5691] = 5550, - [5692] = 2837, - [5693] = 5550, - [5694] = 5551, - [5695] = 5554, - [5696] = 5589, - [5697] = 2861, - [5698] = 5554, - [5699] = 5610, - [5700] = 5554, - [5701] = 2896, - [5702] = 2894, - [5703] = 5703, - [5704] = 5703, - [5705] = 5705, - [5706] = 5706, - [5707] = 5707, - [5708] = 2919, - [5709] = 5709, - [5710] = 5710, - [5711] = 2837, - [5712] = 5712, - [5713] = 2899, + [5628] = 5627, + [5629] = 5629, + [5630] = 3834, + [5631] = 3819, + [5632] = 5632, + [5633] = 3967, + [5634] = 5627, + [5635] = 3809, + [5636] = 3813, + [5637] = 5637, + [5638] = 3875, + [5639] = 5639, + [5640] = 3811, + [5641] = 3926, + [5642] = 3907, + [5643] = 3886, + [5644] = 5639, + [5645] = 5645, + [5646] = 5646, + [5647] = 3875, + [5648] = 3889, + [5649] = 5627, + [5650] = 5650, + [5651] = 3815, + [5652] = 3936, + [5653] = 5627, + [5654] = 5629, + [5655] = 5655, + [5656] = 3935, + [5657] = 5627, + [5658] = 3950, + [5659] = 3951, + [5660] = 3953, + [5661] = 3954, + [5662] = 3816, + [5663] = 5627, + [5664] = 5639, + [5665] = 5627, + [5666] = 5666, + [5667] = 5637, + [5668] = 5627, + [5669] = 5627, + [5670] = 5627, + [5671] = 5639, + [5672] = 3958, + [5673] = 930, + [5674] = 5627, + [5675] = 5637, + [5676] = 5676, + [5677] = 5637, + [5678] = 5639, + [5679] = 5679, + [5680] = 5655, + [5681] = 5627, + [5682] = 1086, + [5683] = 1112, + [5684] = 3815, + [5685] = 5637, + [5686] = 5639, + [5687] = 1069, + [5688] = 5676, + [5689] = 5679, + [5690] = 5637, + [5691] = 5627, + [5692] = 1048, + [5693] = 1047, + [5694] = 3816, + [5695] = 1107, + [5696] = 5637, + [5697] = 5679, + [5698] = 3983, + [5699] = 5627, + [5700] = 3985, + [5701] = 5639, + [5702] = 5639, + [5703] = 5632, + [5704] = 5627, + [5705] = 5627, + [5706] = 5625, + [5707] = 5489, + [5708] = 3886, + [5709] = 5627, + [5710] = 5645, + [5711] = 5627, + [5712] = 5676, + [5713] = 5646, [5714] = 5714, - [5715] = 5710, - [5716] = 2922, - [5717] = 5710, - [5718] = 2918, - [5719] = 5710, - [5720] = 5720, - [5721] = 2921, - [5722] = 5722, - [5723] = 5723, - [5724] = 5722, - [5725] = 5710, - [5726] = 5726, - [5727] = 5709, - [5728] = 5720, - [5729] = 5703, - [5730] = 5723, - [5731] = 5709, - [5732] = 5722, - [5733] = 5710, - [5734] = 5720, - [5735] = 5723, - [5736] = 5703, - [5737] = 5737, - [5738] = 5722, - [5739] = 5710, - [5740] = 5720, - [5741] = 5723, - [5742] = 2913, - [5743] = 5709, - [5744] = 5722, - [5745] = 5710, - [5746] = 913, - [5747] = 903, - [5748] = 5723, - [5749] = 5722, - [5750] = 5710, - [5751] = 2861, - [5752] = 2840, - [5753] = 5720, - [5754] = 5723, - [5755] = 5722, - [5756] = 5710, - [5757] = 2920, - [5758] = 5723, - [5759] = 5703, - [5760] = 5726, - [5761] = 5709, - [5762] = 5720, - [5763] = 5726, - [5764] = 5723, - [5765] = 5765, - [5766] = 2928, - [5767] = 5722, - [5768] = 5710, - [5769] = 5720, - [5770] = 911, - [5771] = 2904, - [5772] = 5703, - [5773] = 883, - [5774] = 893, - [5775] = 923, - [5776] = 5709, - [5777] = 5703, - [5778] = 2914, - [5779] = 5720, - [5780] = 5780, - [5781] = 2866, - [5782] = 5726, + [5715] = 3961, + [5716] = 5627, + [5717] = 3962, + [5718] = 3811, + [5719] = 5627, + [5720] = 3813, + [5721] = 3809, + [5722] = 3815, + [5723] = 3819, + [5724] = 3834, + [5725] = 3842, + [5726] = 5627, + [5727] = 1054, + [5728] = 3811, + [5729] = 5637, + [5730] = 5676, + [5731] = 1060, + [5732] = 5732, + [5733] = 5625, + [5734] = 5621, + [5735] = 1073, + [5736] = 1046, + [5737] = 1127, + [5738] = 5632, + [5739] = 5627, + [5740] = 5740, + [5741] = 5629, + [5742] = 1126, + [5743] = 5627, + [5744] = 1125, + [5745] = 3816, + [5746] = 5637, + [5747] = 4204, + [5748] = 5748, + [5749] = 5627, + [5750] = 5627, + [5751] = 1074, + [5752] = 5627, + [5753] = 1083, + [5754] = 3841, + [5755] = 3842, + [5756] = 5655, + [5757] = 1121, + [5758] = 5632, + [5759] = 1092, + [5760] = 5627, + [5761] = 5637, + [5762] = 5762, + [5763] = 1114, + [5764] = 5627, + [5765] = 5639, + [5766] = 5621, + [5767] = 3842, + [5768] = 1113, + [5769] = 3841, + [5770] = 5637, + [5771] = 5627, + [5772] = 3907, + [5773] = 3842, + [5774] = 1111, + [5775] = 1110, + [5776] = 3811, + [5777] = 5639, + [5778] = 1109, + [5779] = 5625, + [5780] = 3841, + [5781] = 3813, + [5782] = 3809, [5783] = 5783, - [5784] = 2883, - [5785] = 5785, - [5786] = 5709, - [5787] = 2890, - [5788] = 2905, - [5789] = 5789, - [5790] = 2890, - [5791] = 873, - [5792] = 2888, - [5793] = 2862, - [5794] = 894, - [5795] = 2933, - [5796] = 5796, - [5797] = 2892, - [5798] = 2938, - [5799] = 5799, - [5800] = 2866, - [5801] = 5801, - [5802] = 5703, - [5803] = 5803, - [5804] = 2883, - [5805] = 5709, - [5806] = 5806, - [5807] = 5807, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 5811, - [5812] = 5812, - [5813] = 5813, - [5814] = 5814, - [5815] = 5815, + [5784] = 3977, + [5785] = 1093, + [5786] = 3819, + [5787] = 5655, + [5788] = 3834, + [5789] = 1108, + [5790] = 5627, + [5791] = 3957, + [5792] = 5639, + [5793] = 3841, + [5794] = 5679, + [5795] = 3907, + [5796] = 3873, + [5797] = 5629, + [5798] = 1105, + [5799] = 5637, + [5800] = 5637, + [5801] = 3834, + [5802] = 5627, + [5803] = 3907, + [5804] = 3815, + [5805] = 3813, + [5806] = 1095, + [5807] = 3819, + [5808] = 1103, + [5809] = 3809, + [5810] = 1098, + [5811] = 5637, + [5812] = 5627, + [5813] = 3816, + [5814] = 1096, + [5815] = 4118, [5816] = 5816, - [5817] = 5817, + [5817] = 3842, [5818] = 5818, - [5819] = 5811, + [5819] = 5819, [5820] = 5820, - [5821] = 5821, - [5822] = 5822, + [5821] = 3841, + [5822] = 4108, [5823] = 5823, - [5824] = 5810, - [5825] = 5825, + [5824] = 5824, + [5825] = 5818, [5826] = 5826, - [5827] = 2921, - [5828] = 5828, + [5827] = 5818, + [5828] = 5826, [5829] = 5829, - [5830] = 2883, - [5831] = 5811, - [5832] = 2908, - [5833] = 5820, - [5834] = 2890, - [5835] = 5815, - [5836] = 2926, - [5837] = 5837, - [5838] = 5838, - [5839] = 5839, - [5840] = 3394, - [5841] = 5841, - [5842] = 5842, - [5843] = 5810, - [5844] = 5811, - [5845] = 2923, - [5846] = 5811, - [5847] = 5818, - [5848] = 5809, - [5849] = 5815, - [5850] = 5839, - [5851] = 929, - [5852] = 5839, - [5853] = 5811, - [5854] = 926, - [5855] = 2866, - [5856] = 952, - [5857] = 5857, - [5858] = 5811, - [5859] = 5815, - [5860] = 5860, - [5861] = 2908, - [5862] = 2899, - [5863] = 5815, - [5864] = 5810, - [5865] = 2926, - [5866] = 5808, - [5867] = 5812, - [5868] = 2923, - [5869] = 5837, - [5870] = 5870, - [5871] = 3380, - [5872] = 5812, - [5873] = 5808, - [5874] = 5874, - [5875] = 5810, - [5876] = 5876, - [5877] = 5811, - [5878] = 5878, - [5879] = 5879, - [5880] = 5880, - [5881] = 5811, - [5882] = 5820, - [5883] = 5810, + [5830] = 5826, + [5831] = 5826, + [5832] = 5826, + [5833] = 3819, + [5834] = 5818, + [5835] = 5835, + [5836] = 5826, + [5837] = 5823, + [5838] = 3809, + [5839] = 3813, + [5840] = 2620, + [5841] = 3816, + [5842] = 5823, + [5843] = 5823, + [5844] = 3811, + [5845] = 5823, + [5846] = 5846, + [5847] = 5823, + [5848] = 5823, + [5849] = 3815, + [5850] = 3211, + [5851] = 3209, + [5852] = 5645, + [5853] = 5835, + [5854] = 5823, + [5855] = 5823, + [5856] = 5856, + [5857] = 3212, + [5858] = 3210, + [5859] = 5820, + [5860] = 5826, + [5861] = 5820, + [5862] = 5823, + [5863] = 5823, + [5864] = 5823, + [5865] = 5818, + [5866] = 4114, + [5867] = 5818, + [5868] = 5868, + [5869] = 3834, + [5870] = 5646, + [5871] = 5823, + [5872] = 5823, + [5873] = 5873, + [5874] = 5818, + [5875] = 3907, + [5876] = 5823, + [5877] = 5624, + [5878] = 5826, + [5879] = 5820, + [5880] = 5818, + [5881] = 3213, + [5882] = 5823, + [5883] = 5883, [5884] = 5884, [5885] = 5885, - [5886] = 5839, - [5887] = 5814, - [5888] = 5874, - [5889] = 2920, - [5890] = 5810, - [5891] = 5891, - [5892] = 5825, - [5893] = 5809, - [5894] = 5811, - [5895] = 5895, - [5896] = 5811, - [5897] = 2905, - [5898] = 5818, - [5899] = 5899, - [5900] = 5900, - [5901] = 5812, - [5902] = 5808, - [5903] = 5903, - [5904] = 5814, + [5886] = 5886, + [5887] = 5885, + [5888] = 5888, + [5889] = 5884, + [5890] = 5885, + [5891] = 3210, + [5892] = 5885, + [5893] = 5893, + [5894] = 5888, + [5895] = 5888, + [5896] = 3213, + [5897] = 5885, + [5898] = 5883, + [5899] = 3209, + [5900] = 5888, + [5901] = 5901, + [5902] = 5888, + [5903] = 5884, + [5904] = 3211, [5905] = 5905, - [5906] = 5906, - [5907] = 5820, - [5908] = 2904, - [5909] = 5909, - [5910] = 2862, - [5911] = 5811, - [5912] = 5822, - [5913] = 5822, - [5914] = 5809, - [5915] = 5876, - [5916] = 5815, - [5917] = 5825, - [5918] = 2914, - [5919] = 5919, - [5920] = 5808, - [5921] = 5820, - [5922] = 5922, - [5923] = 5923, - [5924] = 5924, - [5925] = 5812, - [5926] = 5909, - [5927] = 5811, - [5928] = 5809, - [5929] = 5822, - [5930] = 5837, - [5931] = 5839, - [5932] = 5874, - [5933] = 5810, - [5934] = 5837, + [5906] = 3212, + [5907] = 5885, + [5908] = 5884, + [5909] = 5883, + [5910] = 5884, + [5911] = 5911, + [5912] = 5888, + [5913] = 5884, + [5914] = 5888, + [5915] = 5884, + [5916] = 5885, + [5917] = 3214, + [5918] = 5918, + [5919] = 5884, + [5920] = 5646, + [5921] = 5885, + [5922] = 5888, + [5923] = 5885, + [5924] = 5885, + [5925] = 5883, + [5926] = 5885, + [5927] = 5885, + [5928] = 5885, + [5929] = 5884, + [5930] = 5930, + [5931] = 3220, + [5932] = 5932, + [5933] = 5932, + [5934] = 5934, [5935] = 5935, - [5936] = 5811, - [5937] = 5937, - [5938] = 5837, - [5939] = 5829, - [5940] = 5826, - [5941] = 5885, - [5942] = 927, - [5943] = 5937, - [5944] = 5813, - [5945] = 5812, - [5946] = 2933, - [5947] = 5808, - [5948] = 5814, - [5949] = 5815, - [5950] = 2938, - [5951] = 5808, - [5952] = 5812, - [5953] = 5811, - [5954] = 5837, - [5955] = 2888, - [5956] = 5825, - [5957] = 5837, - [5958] = 5837, - [5959] = 5959, - [5960] = 5874, - [5961] = 5811, - [5962] = 5839, - [5963] = 5811, - [5964] = 2928, - [5965] = 2894, - [5966] = 5966, + [5936] = 5936, + [5937] = 5932, + [5938] = 5646, + [5939] = 5939, + [5940] = 5905, + [5941] = 5930, + [5942] = 5932, + [5943] = 3220, + [5944] = 5932, + [5945] = 5936, + [5946] = 5932, + [5947] = 5947, + [5948] = 5936, + [5949] = 5936, + [5950] = 5936, + [5951] = 3214, + [5952] = 5947, + [5953] = 5932, + [5954] = 5939, + [5955] = 5947, + [5956] = 5947, + [5957] = 5947, + [5958] = 5939, + [5959] = 5947, + [5960] = 5936, + [5961] = 5932, + [5962] = 5936, + [5963] = 5935, + [5964] = 5947, + [5965] = 5936, + [5966] = 5935, [5967] = 5967, - [5968] = 5937, - [5969] = 5818, - [5970] = 5839, - [5971] = 5874, - [5972] = 5885, - [5973] = 2896, - [5974] = 2892, - [5975] = 2919, - [5976] = 5809, - [5977] = 5809, + [5968] = 5968, + [5969] = 5947, + [5970] = 5970, + [5971] = 5970, + [5972] = 5970, + [5973] = 5973, + [5974] = 5974, + [5975] = 5975, + [5976] = 5970, + [5977] = 5975, [5978] = 5978, - [5979] = 5813, - [5980] = 5811, + [5979] = 5979, + [5980] = 5973, [5981] = 5981, - [5982] = 5982, - [5983] = 5811, - [5984] = 5811, - [5985] = 5822, - [5986] = 5818, - [5987] = 5937, - [5988] = 5988, - [5989] = 5811, - [5990] = 5885, - [5991] = 5820, - [5992] = 2883, - [5993] = 5813, - [5994] = 5811, + [5982] = 949, + [5983] = 5983, + [5984] = 5970, + [5985] = 960, + [5986] = 5986, + [5987] = 5970, + [5988] = 5975, + [5989] = 5970, + [5990] = 5990, + [5991] = 5975, + [5992] = 5986, + [5993] = 5986, + [5994] = 5970, [5995] = 5995, - [5996] = 5820, - [5997] = 5820, - [5998] = 5818, - [5999] = 2913, - [6000] = 5937, - [6001] = 5814, - [6002] = 5885, - [6003] = 3379, - [6004] = 914, - [6005] = 5839, - [6006] = 5813, - [6007] = 5810, - [6008] = 5811, - [6009] = 5825, - [6010] = 5937, - [6011] = 6011, - [6012] = 5909, - [6013] = 5885, - [6014] = 5811, - [6015] = 6015, - [6016] = 6016, - [6017] = 5874, - [6018] = 5813, - [6019] = 5822, - [6020] = 5811, - [6021] = 5822, - [6022] = 5899, - [6023] = 5937, - [6024] = 6024, - [6025] = 5825, - [6026] = 5885, - [6027] = 5814, - [6028] = 5813, - [6029] = 5811, - [6030] = 5820, - [6031] = 5820, - [6032] = 5814, - [6033] = 5818, - [6034] = 5937, - [6035] = 5837, - [6036] = 5885, - [6037] = 5837, - [6038] = 5839, - [6039] = 5813, - [6040] = 5825, - [6041] = 5811, - [6042] = 5839, - [6043] = 827, - [6044] = 5839, - [6045] = 5811, - [6046] = 5857, - [6047] = 5811, - [6048] = 2918, - [6049] = 5809, - [6050] = 5811, - [6051] = 5857, - [6052] = 5820, - [6053] = 827, - [6054] = 5874, - [6055] = 5839, - [6056] = 5812, - [6057] = 5822, - [6058] = 6058, - [6059] = 6016, - [6060] = 5837, - [6061] = 5829, - [6062] = 5826, - [6063] = 5809, - [6064] = 5823, - [6065] = 5823, - [6066] = 5820, - [6067] = 5811, - [6068] = 2866, - [6069] = 2922, - [6070] = 5826, - [6071] = 5820, - [6072] = 5811, - [6073] = 5829, - [6074] = 5812, - [6075] = 5808, - [6076] = 5837, - [6077] = 6058, - [6078] = 5988, - [6079] = 5839, - [6080] = 5837, - [6081] = 5839, - [6082] = 5839, - [6083] = 6058, - [6084] = 5809, - [6085] = 5811, - [6086] = 5988, - [6087] = 5857, - [6088] = 5811, - [6089] = 5820, - [6090] = 6058, - [6091] = 5988, - [6092] = 5810, - [6093] = 5874, - [6094] = 5815, - [6095] = 5837, - [6096] = 5829, - [6097] = 5826, - [6098] = 5818, - [6099] = 5823, - [6100] = 5809, - [6101] = 5820, - [6102] = 2890, - [6103] = 5814, - [6104] = 5808, - [6105] = 2861, - [6106] = 5812, - [6107] = 5909, - [6108] = 5808, - [6109] = 5810, - [6110] = 5812, - [6111] = 5822, - [6112] = 5822, - [6113] = 5837, - [6114] = 5839, - [6115] = 5820, - [6116] = 5808, - [6117] = 5811, - [6118] = 5825, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6122, - [6123] = 6123, - [6124] = 6124, - [6125] = 6125, - [6126] = 6126, + [5996] = 5975, + [5997] = 5990, + [5998] = 5975, + [5999] = 3220, + [6000] = 5990, + [6001] = 5981, + [6002] = 5979, + [6003] = 5973, + [6004] = 5979, + [6005] = 5990, + [6006] = 5970, + [6007] = 5975, + [6008] = 5983, + [6009] = 5975, + [6010] = 5970, + [6011] = 5970, + [6012] = 5978, + [6013] = 5986, + [6014] = 5981, + [6015] = 5975, + [6016] = 5975, + [6017] = 5978, + [6018] = 5986, + [6019] = 5975, + [6020] = 5970, + [6021] = 5970, + [6022] = 5970, + [6023] = 3214, + [6024] = 5973, + [6025] = 5981, + [6026] = 5978, + [6027] = 5978, + [6028] = 5995, + [6029] = 5981, + [6030] = 5970, + [6031] = 5978, + [6032] = 5973, + [6033] = 3241, + [6034] = 5983, + [6035] = 5973, + [6036] = 5975, + [6037] = 5990, + [6038] = 5970, + [6039] = 5970, + [6040] = 5975, + [6041] = 3266, + [6042] = 5975, + [6043] = 5975, + [6044] = 5979, + [6045] = 5995, + [6046] = 5970, + [6047] = 5986, + [6048] = 5979, + [6049] = 5981, + [6050] = 5975, + [6051] = 5973, + [6052] = 5979, + [6053] = 5975, + [6054] = 5975, + [6055] = 5970, + [6056] = 6056, + [6057] = 5995, + [6058] = 5983, + [6059] = 5975, + [6060] = 5990, + [6061] = 6061, + [6062] = 5970, + [6063] = 5995, + [6064] = 5983, + [6065] = 5975, + [6066] = 5970, + [6067] = 5986, + [6068] = 5975, + [6069] = 5970, + [6070] = 5986, + [6071] = 5970, + [6072] = 5975, + [6073] = 5986, + [6074] = 5986, + [6075] = 5981, + [6076] = 5990, + [6077] = 5986, + [6078] = 5995, + [6079] = 5986, + [6080] = 5979, + [6081] = 5990, + [6082] = 5979, + [6083] = 5970, + [6084] = 5970, + [6085] = 5975, + [6086] = 5986, + [6087] = 6087, + [6088] = 5973, + [6089] = 5995, + [6090] = 5975, + [6091] = 5986, + [6092] = 5975, + [6093] = 5975, + [6094] = 5983, + [6095] = 5986, + [6096] = 5975, + [6097] = 5970, + [6098] = 5970, + [6099] = 6099, + [6100] = 5970, + [6101] = 5983, + [6102] = 5970, + [6103] = 5970, + [6104] = 5995, + [6105] = 3797, + [6106] = 5975, + [6107] = 5986, + [6108] = 5983, + [6109] = 5970, + [6110] = 5975, + [6111] = 5975, + [6112] = 5981, + [6113] = 5970, + [6114] = 3239, + [6115] = 5970, + [6116] = 5975, + [6117] = 5975, + [6118] = 5978, + [6119] = 5975, + [6120] = 5970, + [6121] = 5975, + [6122] = 5986, + [6123] = 5983, + [6124] = 5975, + [6125] = 5970, + [6126] = 5978, [6127] = 6127, - [6128] = 6128, - [6129] = 6129, + [6128] = 3296, + [6129] = 3307, [6130] = 6130, - [6131] = 6119, + [6131] = 3315, [6132] = 6132, - [6133] = 6133, - [6134] = 6134, + [6133] = 3308, + [6134] = 3314, [6135] = 6135, - [6136] = 6129, - [6137] = 6137, + [6136] = 6136, + [6137] = 956, [6138] = 6138, - [6139] = 6139, - [6140] = 6140, - [6141] = 6141, - [6142] = 6121, - [6143] = 6121, + [6139] = 3294, + [6140] = 3270, + [6141] = 6130, + [6142] = 6135, + [6143] = 6130, [6144] = 6144, - [6145] = 6145, - [6146] = 6146, + [6145] = 6135, + [6146] = 6132, [6147] = 6147, - [6148] = 6129, - [6149] = 6149, - [6150] = 6150, - [6151] = 6151, + [6148] = 6132, + [6149] = 3254, + [6150] = 3239, + [6151] = 6130, [6152] = 6152, - [6153] = 6153, - [6154] = 6121, + [6153] = 6130, + [6154] = 3254, [6155] = 6155, - [6156] = 6156, - [6157] = 6157, - [6158] = 6122, - [6159] = 6159, - [6160] = 6160, - [6161] = 6161, - [6162] = 6129, - [6163] = 6163, - [6164] = 6164, - [6165] = 6165, - [6166] = 6166, - [6167] = 6129, - [6168] = 2888, - [6169] = 6169, - [6170] = 6170, + [6156] = 3249, + [6157] = 6130, + [6158] = 6152, + [6159] = 3265, + [6160] = 3265, + [6161] = 6130, + [6162] = 3241, + [6163] = 3249, + [6164] = 6136, + [6165] = 6135, + [6166] = 3283, + [6167] = 6132, + [6168] = 6136, + [6169] = 998, + [6170] = 6130, [6171] = 6171, - [6172] = 6172, - [6173] = 6125, + [6172] = 986, + [6173] = 6132, [6174] = 6174, - [6175] = 6171, + [6175] = 6175, [6176] = 6176, - [6177] = 6121, - [6178] = 6172, - [6179] = 6128, - [6180] = 6171, - [6181] = 6130, - [6182] = 6172, - [6183] = 6137, - [6184] = 6176, - [6185] = 6174, - [6186] = 6186, - [6187] = 6137, - [6188] = 6135, - [6189] = 6186, - [6190] = 6169, - [6191] = 6129, - [6192] = 6176, - [6193] = 6130, - [6194] = 6159, - [6195] = 6122, - [6196] = 6135, - [6197] = 6128, - [6198] = 6157, - [6199] = 6174, - [6200] = 6186, - [6201] = 6135, + [6177] = 6135, + [6178] = 6136, + [6179] = 3266, + [6180] = 6180, + [6181] = 6181, + [6182] = 6138, + [6183] = 6152, + [6184] = 6130, + [6185] = 3220, + [6186] = 6132, + [6187] = 6152, + [6188] = 6136, + [6189] = 3319, + [6190] = 6132, + [6191] = 6191, + [6192] = 6147, + [6193] = 6152, + [6194] = 6194, + [6195] = 6147, + [6196] = 6147, + [6197] = 6135, + [6198] = 6130, + [6199] = 3214, + [6200] = 6138, + [6201] = 3282, [6202] = 6202, - [6203] = 6160, - [6204] = 6155, - [6205] = 6186, - [6206] = 6151, - [6207] = 6172, - [6208] = 6149, - [6209] = 6129, - [6210] = 6146, - [6211] = 6121, - [6212] = 6132, - [6213] = 6135, - [6214] = 6170, - [6215] = 6123, - [6216] = 6186, - [6217] = 6160, - [6218] = 6218, - [6219] = 6169, - [6220] = 6125, - [6221] = 6124, - [6222] = 6222, - [6223] = 6223, - [6224] = 6124, - [6225] = 6135, - [6226] = 6226, - [6227] = 6125, - [6228] = 6166, - [6229] = 6186, - [6230] = 6164, - [6231] = 6132, - [6232] = 6155, - [6233] = 6121, - [6234] = 6129, - [6235] = 6150, - [6236] = 6151, - [6237] = 6163, - [6238] = 6151, + [6203] = 3269, + [6204] = 6135, + [6205] = 6147, + [6206] = 3304, + [6207] = 3310, + [6208] = 974, + [6209] = 6147, + [6210] = 6135, + [6211] = 6132, + [6212] = 3311, + [6213] = 6213, + [6214] = 3298, + [6215] = 6147, + [6216] = 6138, + [6217] = 6217, + [6218] = 6136, + [6219] = 6152, + [6220] = 6152, + [6221] = 6221, + [6222] = 6136, + [6223] = 6152, + [6224] = 6130, + [6225] = 6130, + [6226] = 966, + [6227] = 6147, + [6228] = 3303, + [6229] = 6136, + [6230] = 954, + [6231] = 6130, + [6232] = 972, + [6233] = 976, + [6234] = 6234, + [6235] = 6235, + [6236] = 3307, + [6237] = 6235, + [6238] = 6238, [6239] = 6239, - [6240] = 6155, - [6241] = 6150, - [6242] = 6160, - [6243] = 6135, - [6244] = 6244, - [6245] = 6150, - [6246] = 6174, - [6247] = 6161, - [6248] = 6138, - [6249] = 2862, - [6250] = 6139, - [6251] = 6186, - [6252] = 6121, - [6253] = 6141, - [6254] = 6146, - [6255] = 6255, - [6256] = 6129, - [6257] = 6149, + [6240] = 6240, + [6241] = 6241, + [6242] = 6242, + [6243] = 6241, + [6244] = 3270, + [6245] = 3314, + [6246] = 6246, + [6247] = 6247, + [6248] = 6248, + [6249] = 3315, + [6250] = 3304, + [6251] = 3283, + [6252] = 6252, + [6253] = 6253, + [6254] = 6252, + [6255] = 6235, + [6256] = 6235, + [6257] = 6240, [6258] = 6258, - [6259] = 6159, - [6260] = 6135, - [6261] = 6122, - [6262] = 6186, - [6263] = 6153, - [6264] = 6156, - [6265] = 6157, - [6266] = 6266, - [6267] = 6137, - [6268] = 2951, - [6269] = 6122, - [6270] = 6135, - [6271] = 6169, - [6272] = 6159, - [6273] = 6273, - [6274] = 6122, - [6275] = 6159, - [6276] = 6156, - [6277] = 6163, - [6278] = 6164, - [6279] = 6166, - [6280] = 6169, - [6281] = 6153, - [6282] = 6186, - [6283] = 6170, - [6284] = 6284, - [6285] = 6149, + [6259] = 3296, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 6263, + [6264] = 6264, + [6265] = 6265, + [6266] = 6235, + [6267] = 6253, + [6268] = 6268, + [6269] = 6269, + [6270] = 6269, + [6271] = 6235, + [6272] = 6272, + [6273] = 6235, + [6274] = 6274, + [6275] = 6248, + [6276] = 6240, + [6277] = 6277, + [6278] = 6235, + [6279] = 6234, + [6280] = 6235, + [6281] = 3269, + [6282] = 6282, + [6283] = 6242, + [6284] = 6248, + [6285] = 6235, [6286] = 6286, - [6287] = 6152, - [6288] = 6135, - [6289] = 6149, - [6290] = 6129, - [6291] = 6146, - [6292] = 6146, - [6293] = 6132, - [6294] = 6141, - [6295] = 6123, - [6296] = 6137, - [6297] = 6125, - [6298] = 6139, - [6299] = 6138, - [6300] = 6124, - [6301] = 6186, - [6302] = 6302, - [6303] = 6171, - [6304] = 6304, - [6305] = 6135, - [6306] = 6306, - [6307] = 6133, - [6308] = 6174, - [6309] = 6132, - [6310] = 6160, - [6311] = 6125, - [6312] = 6124, - [6313] = 6313, - [6314] = 6121, - [6315] = 6155, - [6316] = 6151, - [6317] = 6150, - [6318] = 6151, - [6319] = 6155, - [6320] = 6150, - [6321] = 6121, - [6322] = 6160, - [6323] = 2997, - [6324] = 6174, - [6325] = 6124, - [6326] = 6326, - [6327] = 6125, - [6328] = 6123, - [6329] = 6124, - [6330] = 6330, - [6331] = 3025, + [6287] = 6239, + [6288] = 6269, + [6289] = 3761, + [6290] = 6272, + [6291] = 6291, + [6292] = 971, + [6293] = 1007, + [6294] = 1010, + [6295] = 3282, + [6296] = 6235, + [6297] = 6241, + [6298] = 6263, + [6299] = 6234, + [6300] = 6248, + [6301] = 3319, + [6302] = 6235, + [6303] = 6261, + [6304] = 6241, + [6305] = 3785, + [6306] = 6239, + [6307] = 3757, + [6308] = 6253, + [6309] = 6269, + [6310] = 6310, + [6311] = 6235, + [6312] = 3280, + [6313] = 6252, + [6314] = 6282, + [6315] = 6239, + [6316] = 6247, + [6317] = 6246, + [6318] = 6264, + [6319] = 6247, + [6320] = 6320, + [6321] = 6246, + [6322] = 6252, + [6323] = 6264, + [6324] = 3287, + [6325] = 6325, + [6326] = 6246, + [6327] = 6247, + [6328] = 3288, + [6329] = 3298, + [6330] = 3310, + [6331] = 3280, [6332] = 6332, - [6333] = 6125, - [6334] = 6132, - [6335] = 6132, - [6336] = 3015, - [6337] = 6186, - [6338] = 6138, - [6339] = 2861, - [6340] = 6139, - [6341] = 6141, - [6342] = 6123, - [6343] = 6146, - [6344] = 6129, - [6345] = 6149, - [6346] = 6137, - [6347] = 6332, - [6348] = 3015, - [6349] = 6255, - [6350] = 6133, - [6351] = 6169, - [6352] = 6159, - [6353] = 6122, - [6354] = 6332, - [6355] = 6255, - [6356] = 6332, - [6357] = 6255, - [6358] = 6153, - [6359] = 6156, - [6360] = 6332, - [6361] = 3020, - [6362] = 6255, - [6363] = 6157, - [6364] = 4413, - [6365] = 2997, - [6366] = 6332, - [6367] = 6149, - [6368] = 6129, - [6369] = 6146, - [6370] = 6122, - [6371] = 6255, - [6372] = 6159, - [6373] = 6163, - [6374] = 6132, - [6375] = 2926, - [6376] = 4414, - [6377] = 6332, - [6378] = 6326, - [6379] = 6164, - [6380] = 6255, - [6381] = 6125, - [6382] = 2992, - [6383] = 2982, - [6384] = 6124, - [6385] = 6244, - [6386] = 6239, - [6387] = 6138, - [6388] = 6166, - [6389] = 6139, - [6390] = 6165, - [6391] = 6169, - [6392] = 6170, - [6393] = 6119, - [6394] = 6141, - [6395] = 6332, - [6396] = 6121, - [6397] = 6326, - [6398] = 6150, - [6399] = 6255, - [6400] = 6244, - [6401] = 6151, - [6402] = 6239, - [6403] = 6155, - [6404] = 6165, - [6405] = 2953, - [6406] = 6160, - [6407] = 6407, - [6408] = 6408, - [6409] = 6174, - [6410] = 2923, - [6411] = 6121, - [6412] = 6412, - [6413] = 6120, - [6414] = 6150, - [6415] = 6151, - [6416] = 6146, - [6417] = 6332, - [6418] = 6146, - [6419] = 6326, - [6420] = 2952, - [6421] = 6155, - [6422] = 6160, - [6423] = 6255, - [6424] = 6244, - [6425] = 6239, - [6426] = 2968, - [6427] = 6137, - [6428] = 2908, - [6429] = 6429, - [6430] = 6165, - [6431] = 6431, - [6432] = 6129, - [6433] = 6429, - [6434] = 6119, - [6435] = 6149, - [6436] = 6120, - [6437] = 6174, - [6438] = 6332, - [6439] = 6326, - [6440] = 6176, - [6441] = 6170, - [6442] = 6169, - [6443] = 6166, - [6444] = 6302, - [6445] = 6174, - [6446] = 6255, - [6447] = 6244, - [6448] = 6239, - [6449] = 6202, - [6450] = 6164, - [6451] = 6160, - [6452] = 6163, - [6453] = 6159, - [6454] = 6122, - [6455] = 6165, - [6456] = 6119, - [6457] = 6155, - [6458] = 6120, - [6459] = 6151, - [6460] = 6460, - [6461] = 6157, - [6462] = 6156, - [6463] = 6153, + [6333] = 6264, + [6334] = 3308, + [6335] = 6335, + [6336] = 6235, + [6337] = 6234, + [6338] = 6338, + [6339] = 6261, + [6340] = 6340, + [6341] = 6246, + [6342] = 6252, + [6343] = 6241, + [6344] = 6344, + [6345] = 6234, + [6346] = 6235, + [6347] = 6247, + [6348] = 6235, + [6349] = 6286, + [6350] = 6269, + [6351] = 6351, + [6352] = 6264, + [6353] = 6235, + [6354] = 6291, + [6355] = 6235, + [6356] = 6263, + [6357] = 6261, + [6358] = 6358, + [6359] = 6248, + [6360] = 6234, + [6361] = 6269, + [6362] = 6263, + [6363] = 6248, + [6364] = 6241, + [6365] = 6261, + [6366] = 6241, + [6367] = 6234, + [6368] = 6269, + [6369] = 6235, + [6370] = 6235, + [6371] = 6235, + [6372] = 6248, + [6373] = 6272, + [6374] = 6252, + [6375] = 6248, + [6376] = 6235, + [6377] = 6377, + [6378] = 6235, + [6379] = 6235, + [6380] = 6380, + [6381] = 6239, + [6382] = 6263, + [6383] = 6383, + [6384] = 6384, + [6385] = 6269, + [6386] = 6386, + [6387] = 6263, + [6388] = 6246, + [6389] = 6383, + [6390] = 6310, + [6391] = 6246, + [6392] = 6235, + [6393] = 6393, + [6394] = 6234, + [6395] = 6386, + [6396] = 6247, + [6397] = 6286, + [6398] = 6247, + [6399] = 6241, + [6400] = 6246, + [6401] = 6272, + [6402] = 6235, + [6403] = 3249, + [6404] = 6246, + [6405] = 6247, + [6406] = 3265, + [6407] = 6272, + [6408] = 3287, + [6409] = 6248, + [6410] = 6410, + [6411] = 6240, + [6412] = 3254, + [6413] = 6263, + [6414] = 6253, + [6415] = 6415, + [6416] = 6416, + [6417] = 6417, + [6418] = 3294, + [6419] = 6419, + [6420] = 6282, + [6421] = 6286, + [6422] = 3241, + [6423] = 6234, + [6424] = 3303, + [6425] = 6272, + [6426] = 6247, + [6427] = 6234, + [6428] = 6269, + [6429] = 3288, + [6430] = 6386, + [6431] = 6235, + [6432] = 6274, + [6433] = 6433, + [6434] = 1011, + [6435] = 1018, + [6436] = 6436, + [6437] = 6383, + [6438] = 6310, + [6439] = 910, + [6440] = 6235, + [6441] = 6248, + [6442] = 3311, + [6443] = 6253, + [6444] = 6444, + [6445] = 6380, + [6446] = 6446, + [6447] = 3249, + [6448] = 6252, + [6449] = 6449, + [6450] = 3265, + [6451] = 6264, + [6452] = 3254, + [6453] = 6286, + [6454] = 6282, + [6455] = 6272, + [6456] = 6263, + [6457] = 6286, + [6458] = 6240, + [6459] = 3266, + [6460] = 6239, + [6461] = 6248, + [6462] = 6253, + [6463] = 6235, [6464] = 6464, - [6465] = 6150, - [6466] = 6332, - [6467] = 4433, - [6468] = 6326, - [6469] = 6302, - [6470] = 6121, - [6471] = 6255, - [6472] = 6244, + [6465] = 6248, + [6466] = 6235, + [6467] = 6261, + [6468] = 6241, + [6469] = 6234, + [6470] = 6261, + [6471] = 6240, + [6472] = 6241, [6473] = 6239, - [6474] = 6202, - [6475] = 6123, - [6476] = 6152, - [6477] = 6149, - [6478] = 6129, - [6479] = 6165, - [6480] = 6137, - [6481] = 6160, - [6482] = 6119, - [6483] = 6153, - [6484] = 6141, - [6485] = 6120, - [6486] = 6139, - [6487] = 6125, - [6488] = 6138, - [6489] = 6332, - [6490] = 6326, - [6491] = 6302, - [6492] = 6132, - [6493] = 6132, - [6494] = 6138, - [6495] = 6255, - [6496] = 6139, - [6497] = 6244, - [6498] = 6239, - [6499] = 6141, - [6500] = 6137, - [6501] = 6202, - [6502] = 6125, - [6503] = 6146, - [6504] = 6124, - [6505] = 6156, - [6506] = 6129, - [6507] = 6149, - [6508] = 6165, - [6509] = 6157, - [6510] = 2956, - [6511] = 6511, - [6512] = 6512, - [6513] = 6119, - [6514] = 6130, - [6515] = 6515, + [6474] = 6291, + [6475] = 6235, + [6476] = 6241, + [6477] = 6269, + [6478] = 6269, + [6479] = 6234, + [6480] = 6291, + [6481] = 6235, + [6482] = 6482, + [6483] = 6263, + [6484] = 6383, + [6485] = 6386, + [6486] = 6486, + [6487] = 6282, + [6488] = 6241, + [6489] = 6240, + [6490] = 6234, + [6491] = 6274, + [6492] = 6492, + [6493] = 6247, + [6494] = 6246, + [6495] = 6235, + [6496] = 6272, + [6497] = 6253, + [6498] = 6247, + [6499] = 6248, + [6500] = 6248, + [6501] = 6393, + [6502] = 6246, + [6503] = 6253, + [6504] = 6310, + [6505] = 6235, + [6506] = 6234, + [6507] = 6234, + [6508] = 6508, + [6509] = 6386, + [6510] = 910, + [6511] = 6248, + [6512] = 6282, + [6513] = 6383, + [6514] = 6514, + [6515] = 6242, [6516] = 6516, - [6517] = 6127, - [6518] = 6123, - [6519] = 6119, - [6520] = 6120, - [6521] = 6153, - [6522] = 6128, - [6523] = 6332, - [6524] = 6122, - [6525] = 6326, - [6526] = 6156, - [6527] = 6226, - [6528] = 6223, - [6529] = 6157, - [6530] = 6302, - [6531] = 6121, - [6532] = 6165, - [6533] = 2979, - [6534] = 6122, - [6535] = 6159, - [6536] = 6150, - [6537] = 6255, - [6538] = 6159, - [6539] = 6151, - [6540] = 6155, - [6541] = 6244, - [6542] = 6239, - [6543] = 6202, - [6544] = 6156, - [6545] = 6174, - [6546] = 6163, - [6547] = 6202, - [6548] = 6164, - [6549] = 6166, - [6550] = 6124, - [6551] = 6165, - [6552] = 6239, - [6553] = 6244, - [6554] = 6170, - [6555] = 6255, - [6556] = 6556, - [6557] = 2921, - [6558] = 6119, - [6559] = 6127, - [6560] = 1057, - [6561] = 6169, - [6562] = 1017, - [6563] = 6302, - [6564] = 6137, - [6565] = 2923, - [6566] = 974, - [6567] = 4492, - [6568] = 2926, + [6517] = 6340, + [6518] = 6286, + [6519] = 6253, + [6520] = 6264, + [6521] = 6393, + [6522] = 6241, + [6523] = 6282, + [6524] = 6253, + [6525] = 6263, + [6526] = 6239, + [6527] = 6274, + [6528] = 6263, + [6529] = 6234, + [6530] = 6282, + [6531] = 6235, + [6532] = 6242, + [6533] = 6533, + [6534] = 6248, + [6535] = 6464, + [6536] = 6248, + [6537] = 6269, + [6538] = 6538, + [6539] = 6263, + [6540] = 6286, + [6541] = 6263, + [6542] = 6542, + [6543] = 6263, + [6544] = 6252, + [6545] = 6240, + [6546] = 6246, + [6547] = 6247, + [6548] = 6264, + [6549] = 6234, + [6550] = 6234, + [6551] = 6235, + [6552] = 6263, + [6553] = 3239, + [6554] = 6248, + [6555] = 6247, + [6556] = 6393, + [6557] = 6235, + [6558] = 6246, + [6559] = 6269, + [6560] = 6261, + [6561] = 1113, + [6562] = 6562, + [6563] = 6563, + [6564] = 6564, + [6565] = 6564, + [6566] = 6562, + [6567] = 6567, + [6568] = 6568, [6569] = 6569, - [6570] = 6326, - [6571] = 6161, - [6572] = 6120, - [6573] = 6332, - [6574] = 1001, - [6575] = 6163, - [6576] = 2969, - [6577] = 1005, - [6578] = 6164, - [6579] = 2967, - [6580] = 6332, - [6581] = 6170, - [6582] = 6169, - [6583] = 6166, - [6584] = 6326, - [6585] = 6120, - [6586] = 1021, - [6587] = 1019, - [6588] = 6302, - [6589] = 2908, - [6590] = 1018, - [6591] = 6164, - [6592] = 1015, - [6593] = 6163, - [6594] = 6159, - [6595] = 967, - [6596] = 6122, - [6597] = 6166, - [6598] = 969, - [6599] = 6157, - [6600] = 971, - [6601] = 6255, - [6602] = 972, - [6603] = 6153, - [6604] = 2995, - [6605] = 3791, - [6606] = 6244, - [6607] = 6239, - [6608] = 6137, - [6609] = 973, - [6610] = 6202, - [6611] = 1055, - [6612] = 6149, - [6613] = 6129, - [6614] = 6165, - [6615] = 6615, - [6616] = 6169, - [6617] = 975, - [6618] = 4479, - [6619] = 6146, - [6620] = 6620, - [6621] = 6119, - [6622] = 976, - [6623] = 6141, - [6624] = 6139, - [6625] = 6127, - [6626] = 6138, - [6627] = 978, - [6628] = 1038, - [6629] = 981, - [6630] = 6630, - [6631] = 983, - [6632] = 6120, - [6633] = 989, - [6634] = 4487, - [6635] = 4488, - [6636] = 4491, - [6637] = 6132, - [6638] = 992, - [6639] = 6639, - [6640] = 6174, - [6641] = 996, - [6642] = 1000, - [6643] = 4500, - [6644] = 6127, - [6645] = 6125, - [6646] = 6119, - [6647] = 4502, - [6648] = 6332, - [6649] = 6124, - [6650] = 6326, - [6651] = 4503, - [6652] = 1004, - [6653] = 6160, - [6654] = 6155, - [6655] = 6151, - [6656] = 6302, - [6657] = 1028, - [6658] = 6165, - [6659] = 6123, - [6660] = 6150, - [6661] = 1052, - [6662] = 1035, - [6663] = 6121, - [6664] = 6664, - [6665] = 1034, - [6666] = 6255, - [6667] = 6244, - [6668] = 6239, - [6669] = 6202, - [6670] = 6170, - [6671] = 6671, + [6570] = 6570, + [6571] = 6571, + [6572] = 6572, + [6573] = 6573, + [6574] = 6574, + [6575] = 6575, + [6576] = 6576, + [6577] = 6577, + [6578] = 6578, + [6579] = 6579, + [6580] = 6580, + [6581] = 6581, + [6582] = 6582, + [6583] = 6583, + [6584] = 6584, + [6585] = 6585, + [6586] = 6586, + [6587] = 6587, + [6588] = 6588, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6592, + [6593] = 6593, + [6594] = 6563, + [6595] = 6564, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6599, + [6600] = 6600, + [6601] = 6601, + [6602] = 6563, + [6603] = 6603, + [6604] = 6563, + [6605] = 6605, + [6606] = 6606, + [6607] = 6607, + [6608] = 6608, + [6609] = 6574, + [6610] = 6564, + [6611] = 6611, + [6612] = 6612, + [6613] = 6613, + [6614] = 6614, + [6615] = 6612, + [6616] = 6601, + [6617] = 6617, + [6618] = 6618, + [6619] = 6583, + [6620] = 6562, + [6621] = 6621, + [6622] = 6622, + [6623] = 6612, + [6624] = 6583, + [6625] = 6625, + [6626] = 6626, + [6627] = 6627, + [6628] = 6612, + [6629] = 4896, + [6630] = 6583, + [6631] = 6631, + [6632] = 6564, + [6633] = 4898, + [6634] = 6634, + [6635] = 6626, + [6636] = 6636, + [6637] = 6573, + [6638] = 6625, + [6639] = 6564, + [6640] = 6640, + [6641] = 6626, + [6642] = 6642, + [6643] = 6643, + [6644] = 6644, + [6645] = 6601, + [6646] = 6613, + [6647] = 6647, + [6648] = 6573, + [6649] = 6649, + [6650] = 6564, + [6651] = 6631, + [6652] = 6626, + [6653] = 6573, + [6654] = 6654, + [6655] = 6626, + [6656] = 6656, + [6657] = 6657, + [6658] = 6563, + [6659] = 4897, + [6660] = 6592, + [6661] = 6661, + [6662] = 6573, + [6663] = 6663, + [6664] = 6590, + [6665] = 6626, + [6666] = 6589, + [6667] = 6581, + [6668] = 6668, + [6669] = 6669, + [6670] = 6670, + [6671] = 6573, [6672] = 6672, [6673] = 6673, [6674] = 6674, [6675] = 6675, - [6676] = 6676, - [6677] = 6677, - [6678] = 6678, - [6679] = 6671, - [6680] = 6680, + [6676] = 6562, + [6677] = 6626, + [6678] = 6618, + [6679] = 6679, + [6680] = 4882, [6681] = 6681, - [6682] = 6682, - [6683] = 6683, - [6684] = 6684, + [6682] = 6617, + [6683] = 6618, + [6684] = 6562, [6685] = 6685, [6686] = 6686, [6687] = 6687, - [6688] = 6688, + [6688] = 6573, [6689] = 6689, [6690] = 6690, [6691] = 6691, - [6692] = 6692, - [6693] = 6693, + [6692] = 6626, + [6693] = 6617, [6694] = 6694, - [6695] = 6695, - [6696] = 6696, - [6697] = 6697, - [6698] = 6698, - [6699] = 6699, - [6700] = 6700, - [6701] = 6701, + [6695] = 6631, + [6696] = 4839, + [6697] = 6564, + [6698] = 4838, + [6699] = 6625, + [6700] = 6573, + [6701] = 4835, [6702] = 6702, [6703] = 6703, - [6704] = 6704, + [6704] = 6626, [6705] = 6705, - [6706] = 6706, - [6707] = 6707, - [6708] = 6708, - [6709] = 6709, - [6710] = 6710, - [6711] = 6711, - [6712] = 6712, - [6713] = 6713, - [6714] = 6714, - [6715] = 6715, - [6716] = 6716, - [6717] = 6717, - [6718] = 6718, - [6719] = 6719, - [6720] = 6720, - [6721] = 6721, - [6722] = 6722, - [6723] = 6723, - [6724] = 6706, - [6725] = 6680, - [6726] = 6726, - [6727] = 6727, - [6728] = 6728, - [6729] = 6729, - [6730] = 6730, - [6731] = 6731, - [6732] = 6732, - [6733] = 6733, - [6734] = 6734, - [6735] = 6735, - [6736] = 6736, - [6737] = 6694, - [6738] = 6692, - [6739] = 6691, - [6740] = 6690, - [6741] = 6741, - [6742] = 6742, - [6743] = 6743, - [6744] = 6744, - [6745] = 6745, - [6746] = 6684, - [6747] = 6747, - [6748] = 6748, - [6749] = 6682, - [6750] = 6681, - [6751] = 6751, - [6752] = 6752, - [6753] = 6677, - [6754] = 6676, - [6755] = 6755, - [6756] = 6756, - [6757] = 6757, - [6758] = 6758, - [6759] = 6674, - [6760] = 6675, - [6761] = 6761, - [6762] = 6762, - [6763] = 6680, - [6764] = 6706, - [6765] = 6765, - [6766] = 6721, - [6767] = 6767, - [6768] = 6718, - [6769] = 6769, - [6770] = 6714, - [6771] = 6686, - [6772] = 6772, - [6773] = 6711, - [6774] = 1005, - [6775] = 6775, - [6776] = 6693, - [6777] = 6708, - [6778] = 6772, - [6779] = 6696, - [6780] = 6713, - [6781] = 6698, - [6782] = 6721, - [6783] = 6715, - [6784] = 6701, - [6785] = 6701, - [6786] = 6769, - [6787] = 6717, - [6788] = 6698, - [6789] = 6714, - [6790] = 6708, - [6791] = 6696, - [6792] = 6729, - [6793] = 6693, - [6794] = 6714, - [6795] = 6735, - [6796] = 6736, - [6797] = 6686, - [6798] = 6718, - [6799] = 6752, - [6800] = 6735, - [6801] = 6721, - [6802] = 6747, - [6803] = 6729, - [6804] = 6706, - [6805] = 6680, - [6806] = 6806, - [6807] = 6807, - [6808] = 6717, - [6809] = 2920, - [6810] = 6745, - [6811] = 6811, - [6812] = 6715, - [6813] = 6713, - [6814] = 6694, - [6815] = 6692, - [6816] = 6691, - [6817] = 6690, - [6818] = 6742, - [6819] = 6723, - [6820] = 6675, - [6821] = 6674, - [6822] = 6684, - [6823] = 6722, - [6824] = 6772, - [6825] = 6682, - [6826] = 6718, - [6827] = 6720, - [6828] = 6677, - [6829] = 6719, - [6830] = 6769, - [6831] = 6703, - [6832] = 6674, - [6833] = 6675, - [6834] = 6676, - [6835] = 6677, - [6836] = 6681, - [6837] = 6682, - [6838] = 6683, - [6839] = 6839, - [6840] = 6684, - [6841] = 6767, - [6842] = 6686, - [6843] = 6678, - [6844] = 6673, - [6845] = 6690, - [6846] = 6693, - [6847] = 6691, - [6848] = 6692, - [6849] = 6696, - [6850] = 6694, - [6851] = 6698, - [6852] = 6767, - [6853] = 6701, - [6854] = 6765, - [6855] = 6855, - [6856] = 6671, - [6857] = 6708, - [6858] = 3015, - [6859] = 6719, - [6860] = 6719, - [6861] = 6714, - [6862] = 6762, - [6863] = 6758, - [6864] = 6718, - [6865] = 6756, - [6866] = 6755, - [6867] = 6721, - [6868] = 6719, - [6869] = 6680, - [6870] = 6719, - [6871] = 6751, - [6872] = 6685, - [6873] = 6719, - [6874] = 6694, - [6875] = 6692, - [6876] = 6691, - [6877] = 6690, - [6878] = 6878, - [6879] = 6719, - [6880] = 6687, - [6881] = 6719, - [6882] = 6684, - [6883] = 2997, - [6884] = 6719, - [6885] = 6682, - [6886] = 6719, - [6887] = 6732, - [6888] = 6677, - [6889] = 6719, - [6890] = 6700, - [6891] = 6719, - [6892] = 6674, - [6893] = 6675, - [6894] = 914, - [6895] = 6719, - [6896] = 6702, - [6897] = 6719, - [6898] = 6705, - [6899] = 6707, - [6900] = 6719, - [6901] = 6686, - [6902] = 6719, - [6903] = 6705, - [6904] = 6702, - [6905] = 6693, - [6906] = 6707, - [6907] = 6907, - [6908] = 6696, - [6909] = 6719, - [6910] = 6698, - [6911] = 6700, - [6912] = 6701, - [6913] = 6719, - [6914] = 6914, - [6915] = 6915, - [6916] = 6708, - [6917] = 6719, - [6918] = 6918, - [6919] = 6919, - [6920] = 6714, - [6921] = 6719, - [6922] = 6922, - [6923] = 6718, - [6924] = 6721, - [6925] = 6680, - [6926] = 6732, - [6927] = 6927, - [6928] = 6719, - [6929] = 6929, - [6930] = 6694, - [6931] = 6692, - [6932] = 6691, - [6933] = 6690, - [6934] = 6752, - [6935] = 6687, - [6936] = 6752, - [6937] = 6711, - [6938] = 6684, - [6939] = 6685, - [6940] = 6719, - [6941] = 6682, - [6942] = 6752, - [6943] = 6671, - [6944] = 6677, - [6945] = 6762, - [6946] = 6674, - [6947] = 6675, - [6948] = 6751, - [6949] = 6707, - [6950] = 6765, - [6951] = 6755, - [6952] = 6673, - [6953] = 6678, - [6954] = 6756, - [6955] = 6686, - [6956] = 6758, - [6957] = 6683, - [6958] = 6958, - [6959] = 6693, - [6960] = 6719, - [6961] = 6752, - [6962] = 6696, - [6963] = 6762, - [6964] = 6698, - [6965] = 6762, - [6966] = 6701, - [6967] = 6747, - [6968] = 6707, - [6969] = 6719, - [6970] = 6708, - [6971] = 6719, - [6972] = 6752, - [6973] = 6762, - [6974] = 6714, - [6975] = 6762, - [6976] = 6767, - [6977] = 6718, - [6978] = 6721, - [6979] = 6680, - [6980] = 6707, - [6981] = 6745, - [6982] = 6742, - [6983] = 6983, - [6984] = 6694, - [6985] = 6692, - [6986] = 6691, - [6987] = 6690, - [6988] = 6708, - [6989] = 6723, - [6990] = 6671, - [6991] = 6769, - [6992] = 6684, - [6993] = 6703, - [6994] = 6758, - [6995] = 6682, - [6996] = 6996, - [6997] = 6722, - [6998] = 6677, - [6999] = 6719, - [7000] = 6674, - [7001] = 6675, - [7002] = 6752, - [7003] = 6762, - [7004] = 6720, - [7005] = 6772, - [7006] = 6756, - [7007] = 6707, - [7008] = 6719, - [7009] = 6686, - [7010] = 6671, - [7011] = 6713, - [7012] = 7012, - [7013] = 6693, - [7014] = 6715, - [7015] = 7015, - [7016] = 6696, - [7017] = 6719, - [7018] = 6698, - [7019] = 6755, - [7020] = 6701, - [7021] = 6752, - [7022] = 6719, - [7023] = 6720, - [7024] = 6708, - [7025] = 6717, - [7026] = 6722, - [7027] = 6723, - [7028] = 6714, - [7029] = 6751, - [7030] = 6729, - [7031] = 6718, - [7032] = 6721, - [7033] = 6680, - [7034] = 6735, - [7035] = 6762, - [7036] = 6742, - [7037] = 6736, - [7038] = 6694, - [7039] = 6692, - [7040] = 6691, - [7041] = 6690, - [7042] = 6745, - [7043] = 6747, - [7044] = 6707, - [7045] = 6752, - [7046] = 6684, - [7047] = 6703, - [7048] = 7048, - [7049] = 6682, - [7050] = 6671, - [7051] = 7051, - [7052] = 6677, - [7053] = 6674, - [7054] = 6675, - [7055] = 6752, - [7056] = 6747, - [7057] = 6758, - [7058] = 6719, - [7059] = 6752, - [7060] = 7060, - [7061] = 1057, - [7062] = 6693, - [7063] = 6745, - [7064] = 6742, - [7065] = 6696, - [7066] = 6762, - [7067] = 6698, - [7068] = 6707, - [7069] = 6671, - [7070] = 6708, - [7071] = 6722, - [7072] = 6683, - [7073] = 6718, - [7074] = 6678, - [7075] = 6720, - [7076] = 6719, - [7077] = 7077, - [7078] = 6694, - [7079] = 6692, - [7080] = 6691, - [7081] = 6690, - [7082] = 6719, - [7083] = 6752, - [7084] = 2899, - [7085] = 6678, - [7086] = 6684, - [7087] = 6736, - [7088] = 7088, - [7089] = 6682, - [7090] = 6735, - [7091] = 6673, - [7092] = 6677, - [7093] = 6674, - [7094] = 6675, - [7095] = 6762, - [7096] = 6707, - [7097] = 6729, - [7098] = 6671, - [7099] = 6717, - [7100] = 6715, - [7101] = 6713, - [7102] = 6693, - [7103] = 6683, - [7104] = 6732, - [7105] = 6696, - [7106] = 6678, - [7107] = 6698, - [7108] = 6673, - [7109] = 7109, - [7110] = 6708, - [7111] = 7111, - [7112] = 6719, - [7113] = 6701, - [7114] = 6752, - [7115] = 6765, - [7116] = 6694, - [7117] = 6692, - [7118] = 6691, - [7119] = 6690, - [7120] = 6765, - [7121] = 7121, - [7122] = 6671, - [7123] = 6685, - [7124] = 6684, - [7125] = 6762, - [7126] = 7126, - [7127] = 6682, - [7128] = 6687, - [7129] = 6772, - [7130] = 6677, - [7131] = 6674, - [7132] = 6675, - [7133] = 6707, - [7134] = 6671, - [7135] = 6671, - [7136] = 6700, - [7137] = 7137, - [7138] = 6719, - [7139] = 6769, - [7140] = 6693, - [7141] = 6752, - [7142] = 7142, - [7143] = 6696, - [7144] = 6702, - [7145] = 6698, - [7146] = 7146, - [7147] = 6705, - [7148] = 6708, - [7149] = 7149, - [7150] = 6694, - [7151] = 6692, - [7152] = 6691, - [7153] = 7153, - [7154] = 7154, - [7155] = 6682, - [7156] = 6762, - [7157] = 6707, - [7158] = 6707, - [7159] = 6671, - [7160] = 6696, - [7161] = 6751, + [6706] = 4825, + [6707] = 6601, + [6708] = 6613, + [6709] = 4823, + [6710] = 4822, + [6711] = 6573, + [6712] = 4820, + [6713] = 6626, + [6714] = 4169, + [6715] = 3351, + [6716] = 3393, + [6717] = 3398, + [6718] = 3294, + [6719] = 6563, + [6720] = 6587, + [6721] = 6588, + [6722] = 6592, + [6723] = 6590, + [6724] = 6589, + [6725] = 3389, + [6726] = 3326, + [6727] = 6573, + [6728] = 6647, + [6729] = 6581, + [6730] = 3370, + [6731] = 3361, + [6732] = 3336, + [6733] = 3330, + [6734] = 3387, + [6735] = 3266, + [6736] = 3345, + [6737] = 6584, + [6738] = 6626, + [6739] = 3365, + [6740] = 3239, + [6741] = 3420, + [6742] = 6574, + [6743] = 6617, + [6744] = 6618, + [6745] = 6562, + [6746] = 3241, + [6747] = 6573, + [6748] = 3357, + [6749] = 3353, + [6750] = 3353, + [6751] = 3357, + [6752] = 3288, + [6753] = 6626, + [6754] = 3287, + [6755] = 3280, + [6756] = 3287, + [6757] = 6631, + [6758] = 6564, + [6759] = 3280, + [6760] = 3288, + [6761] = 1127, + [6762] = 6644, + [6763] = 1125, + [6764] = 1121, + [6765] = 6625, + [6766] = 1114, + [6767] = 1111, + [6768] = 6573, + [6769] = 1110, + [6770] = 1109, + [6771] = 6601, + [6772] = 6613, + [6773] = 1108, + [6774] = 1046, + [6775] = 1105, + [6776] = 1103, + [6777] = 1098, + [6778] = 1096, + [6779] = 1095, + [6780] = 1093, + [6781] = 1092, + [6782] = 1083, + [6783] = 1074, + [6784] = 6563, + [6785] = 1073, + [6786] = 6592, + [6787] = 6590, + [6788] = 6589, + [6789] = 1060, + [6790] = 1055, + [6791] = 1126, + [6792] = 1047, + [6793] = 6581, + [6794] = 1048, + [6795] = 1069, + [6796] = 1112, + [6797] = 1086, + [6798] = 1054, + [6799] = 6626, + [6800] = 1107, + [6801] = 6570, + [6802] = 6574, + [6803] = 6580, + [6804] = 6581, + [6805] = 6573, + [6806] = 6574, + [6807] = 6584, + [6808] = 6617, + [6809] = 6618, + [6810] = 6562, + [6811] = 6589, + [6812] = 6590, + [6813] = 6592, + [6814] = 6563, + [6815] = 6605, + [6816] = 6569, + [6817] = 6613, + [6818] = 6601, + [6819] = 6625, + [6820] = 6627, + [6821] = 6634, + [6822] = 6631, + [6823] = 6564, + [6824] = 6644, + [6825] = 6636, + [6826] = 6640, + [6827] = 6644, + [6828] = 6625, + [6829] = 6564, + [6830] = 6631, + [6831] = 6661, + [6832] = 6601, + [6833] = 6663, + [6834] = 6669, + [6835] = 6613, + [6836] = 6670, + [6837] = 6562, + [6838] = 6618, + [6839] = 6685, + [6840] = 6687, + [6841] = 6689, + [6842] = 6690, + [6843] = 6617, + [6844] = 6703, + [6845] = 6563, + [6846] = 6622, + [6847] = 6596, + [6848] = 6570, + [6849] = 6592, + [6850] = 6574, + [6851] = 6590, + [6852] = 6589, + [6853] = 6584, + [6854] = 6581, + [6855] = 6622, + [6856] = 6596, + [6857] = 6622, + [6858] = 6596, + [6859] = 6622, + [6860] = 6596, + [6861] = 6580, + [6862] = 6581, + [6863] = 6622, + [6864] = 6596, + [6865] = 6584, + [6866] = 6569, + [6867] = 6590, + [6868] = 6574, + [6869] = 6617, + [6870] = 6592, + [6871] = 6622, + [6872] = 6618, + [6873] = 6562, + [6874] = 6563, + [6875] = 6614, + [6876] = 6596, + [6877] = 6593, + [6878] = 6591, + [6879] = 6631, + [6880] = 6605, + [6881] = 6613, + [6882] = 6601, + [6883] = 6631, + [6884] = 6564, + [6885] = 6571, + [6886] = 6625, + [6887] = 6644, + [6888] = 6627, + [6889] = 6625, + [6890] = 6622, + [6891] = 6589, + [6892] = 6614, + [6893] = 6596, + [6894] = 6593, + [6895] = 6591, + [6896] = 6634, + [6897] = 6636, + [6898] = 6601, + [6899] = 6613, + [6900] = 6640, + [6901] = 6644, + [6902] = 6564, + [6903] = 6631, + [6904] = 6571, + [6905] = 6622, + [6906] = 6614, + [6907] = 6661, + [6908] = 6663, + [6909] = 6596, + [6910] = 6669, + [6911] = 6563, + [6912] = 6593, + [6913] = 6591, + [6914] = 6670, + [6915] = 6562, + [6916] = 6618, + [6917] = 6592, + [6918] = 6590, + [6919] = 6589, + [6920] = 6579, + [6921] = 6584, + [6922] = 6685, + [6923] = 6687, + [6924] = 6689, + [6925] = 6581, + [6926] = 6571, + [6927] = 6690, + [6928] = 6617, + [6929] = 6622, + [6930] = 6614, + [6931] = 6703, + [6932] = 6596, + [6933] = 6593, + [6934] = 6591, + [6935] = 6579, + [6936] = 6569, + [6937] = 6570, + [6938] = 6574, + [6939] = 6571, + [6940] = 6654, + [6941] = 6622, + [6942] = 6574, + [6943] = 6614, + [6944] = 6596, + [6945] = 6593, + [6946] = 6591, + [6947] = 6580, + [6948] = 6581, + [6949] = 6579, + [6950] = 6584, + [6951] = 6589, + [6952] = 6590, + [6953] = 6592, + [6954] = 6571, + [6955] = 6563, + [6956] = 6703, + [6957] = 6563, + [6958] = 6617, + [6959] = 6654, + [6960] = 6690, + [6961] = 6605, + [6962] = 6622, + [6963] = 6614, + [6964] = 6689, + [6965] = 6613, + [6966] = 6606, + [6967] = 6601, + [6968] = 6687, + [6969] = 6596, + [6970] = 6593, + [6971] = 6568, + [6972] = 6618, + [6973] = 6571, + [6974] = 6562, + [6975] = 6591, + [6976] = 6670, + [6977] = 6582, + [6978] = 6625, + [6979] = 6579, + [6980] = 6634, + [6981] = 6669, + [6982] = 6663, + [6983] = 6636, + [6984] = 6640, + [6985] = 6571, + [6986] = 6579, + [6987] = 6644, + [6988] = 6564, + [6989] = 6631, + [6990] = 6625, + [6991] = 6654, + [6992] = 6622, + [6993] = 6564, + [6994] = 6644, + [6995] = 6614, + [6996] = 6606, + [6997] = 6582, + [6998] = 6663, + [6999] = 6640, + [7000] = 6669, + [7001] = 6636, + [7002] = 6634, + [7003] = 6670, + [7004] = 6596, + [7005] = 6593, + [7006] = 6591, + [7007] = 6593, + [7008] = 6644, + [7009] = 6596, + [7010] = 6591, + [7011] = 6582, + [7012] = 6562, + [7013] = 6601, + [7014] = 6613, + [7015] = 6618, + [7016] = 6687, + [7017] = 6606, + [7018] = 6579, + [7019] = 6605, + [7020] = 6689, + [7021] = 6690, + [7022] = 6617, + [7023] = 6571, + [7024] = 6614, + [7025] = 6703, + [7026] = 6654, + [7027] = 6622, + [7028] = 6622, + [7029] = 6563, + [7030] = 6614, + [7031] = 6574, + [7032] = 6592, + [7033] = 6590, + [7034] = 6589, + [7035] = 6584, + [7036] = 6581, + [7037] = 6606, + [7038] = 6596, + [7039] = 6654, + [7040] = 6593, + [7041] = 6591, + [7042] = 6582, + [7043] = 6581, + [7044] = 6579, + [7045] = 6584, + [7046] = 6589, + [7047] = 6590, + [7048] = 6592, + [7049] = 6571, + [7050] = 6574, + [7051] = 6563, + [7052] = 6605, + [7053] = 6654, + [7054] = 6613, + [7055] = 6601, + [7056] = 6622, + [7057] = 6614, + [7058] = 6606, + [7059] = 6625, + [7060] = 6703, + [7061] = 6617, + [7062] = 6690, + [7063] = 6634, + [7064] = 6689, + [7065] = 6596, + [7066] = 6687, + [7067] = 6618, + [7068] = 6562, + [7069] = 6636, + [7070] = 6670, + [7071] = 6669, + [7072] = 6663, + [7073] = 6593, + [7074] = 6591, + [7075] = 6640, + [7076] = 6582, + [7077] = 6644, + [7078] = 6631, + [7079] = 6564, + [7080] = 6564, + [7081] = 6631, + [7082] = 6640, + [7083] = 6636, + [7084] = 6634, + [7085] = 6579, + [7086] = 6625, + [7087] = 6663, + [7088] = 6669, + [7089] = 6571, + [7090] = 6601, + [7091] = 6613, + [7092] = 6568, + [7093] = 6670, + [7094] = 6605, + [7095] = 6562, + [7096] = 6618, + [7097] = 6687, + [7098] = 6568, + [7099] = 6689, + [7100] = 6571, + [7101] = 6690, + [7102] = 6563, + [7103] = 6617, + [7104] = 6703, + [7105] = 6654, + [7106] = 6574, + [7107] = 6622, + [7108] = 6592, + [7109] = 6590, + [7110] = 6589, + [7111] = 6584, + [7112] = 6579, + [7113] = 6581, + [7114] = 6614, + [7115] = 6606, + [7116] = 6581, + [7117] = 6584, + [7118] = 6596, + [7119] = 6589, + [7120] = 6593, + [7121] = 6591, + [7122] = 6590, + [7123] = 6582, + [7124] = 6592, + [7125] = 6582, + [7126] = 6571, + [7127] = 6670, + [7128] = 6669, + [7129] = 6663, + [7130] = 6591, + [7131] = 6593, + [7132] = 6640, + [7133] = 6596, + [7134] = 6574, + [7135] = 6654, + [7136] = 6563, + [7137] = 6601, + [7138] = 6636, + [7139] = 6634, + [7140] = 6613, + [7141] = 6606, + [7142] = 6625, + [7143] = 6703, + [7144] = 6617, + [7145] = 6690, + [7146] = 6605, + [7147] = 6631, + [7148] = 6614, + [7149] = 6689, + [7150] = 6568, + [7151] = 6622, + [7152] = 6564, + [7153] = 6644, + [7154] = 6687, + [7155] = 6579, + [7156] = 6618, + [7157] = 7157, + [7158] = 7158, + [7159] = 7159, + [7160] = 7160, + [7161] = 7161, [7162] = 7162, - [7163] = 6694, - [7164] = 6692, - [7165] = 6691, - [7166] = 6767, - [7167] = 6719, - [7168] = 6682, - [7169] = 6752, - [7170] = 6755, + [7163] = 7163, + [7164] = 7164, + [7165] = 7165, + [7166] = 7166, + [7167] = 7167, + [7168] = 7168, + [7169] = 7169, + [7170] = 7170, [7171] = 7171, - [7172] = 6756, - [7173] = 6694, - [7174] = 6692, - [7175] = 6691, - [7176] = 6762, - [7177] = 6758, - [7178] = 6682, - [7179] = 6762, - [7180] = 6707, + [7172] = 7172, + [7173] = 7173, + [7174] = 7174, + [7175] = 7175, + [7176] = 7176, + [7177] = 7177, + [7178] = 7163, + [7179] = 7179, + [7180] = 7180, [7181] = 7181, - [7182] = 6671, - [7183] = 6694, - [7184] = 6692, - [7185] = 6691, + [7182] = 7182, + [7183] = 7183, + [7184] = 7184, + [7185] = 7185, [7186] = 7186, - [7187] = 6705, - [7188] = 6682, - [7189] = 6756, - [7190] = 6762, - [7191] = 6767, - [7192] = 6694, - [7193] = 6692, - [7194] = 6691, - [7195] = 6719, - [7196] = 6755, - [7197] = 6751, - [7198] = 6752, - [7199] = 6723, - [7200] = 6694, - [7201] = 6692, - [7202] = 6752, - [7203] = 6707, - [7204] = 6762, - [7205] = 6694, - [7206] = 6692, - [7207] = 6747, - [7208] = 6707, - [7209] = 6732, - [7210] = 6694, - [7211] = 6692, - [7212] = 6671, - [7213] = 7213, - [7214] = 6745, - [7215] = 6694, - [7216] = 6692, + [7187] = 7187, + [7188] = 7188, + [7189] = 7189, + [7190] = 7190, + [7191] = 7191, + [7192] = 7192, + [7193] = 7193, + [7194] = 7194, + [7195] = 7195, + [7196] = 7196, + [7197] = 7197, + [7198] = 7198, + [7199] = 7199, + [7200] = 7200, + [7201] = 7201, + [7202] = 7202, + [7203] = 7157, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 7207, + [7208] = 7208, + [7209] = 7196, + [7210] = 7210, + [7211] = 7211, + [7212] = 7212, + [7213] = 7160, + [7214] = 7161, + [7215] = 7208, + [7216] = 7207, [7217] = 7217, [7218] = 7218, - [7219] = 6742, - [7220] = 6694, - [7221] = 6692, - [7222] = 1017, - [7223] = 6719, - [7224] = 7137, - [7225] = 6707, - [7226] = 6698, - [7227] = 6752, - [7228] = 7228, - [7229] = 6705, - [7230] = 6705, - [7231] = 6702, - [7232] = 6702, - [7233] = 6700, - [7234] = 6723, - [7235] = 6722, - [7236] = 7236, - [7237] = 6762, - [7238] = 6700, - [7239] = 6720, - [7240] = 6687, - [7241] = 6685, - [7242] = 6707, - [7243] = 6696, - [7244] = 6671, - [7245] = 6715, - [7246] = 6703, - [7247] = 6702, - [7248] = 6673, - [7249] = 1001, - [7250] = 6693, - [7251] = 6678, - [7252] = 6687, - [7253] = 6719, - [7254] = 6683, - [7255] = 6752, - [7256] = 6683, - [7257] = 6685, - [7258] = 6762, - [7259] = 7259, - [7260] = 6685, - [7261] = 6687, - [7262] = 6707, - [7263] = 6702, - [7264] = 6671, - [7265] = 6700, - [7266] = 6678, - [7267] = 6703, - [7268] = 7051, - [7269] = 7048, - [7270] = 6702, - [7271] = 6747, - [7272] = 6673, - [7273] = 6765, - [7274] = 6707, - [7275] = 7236, - [7276] = 6671, - [7277] = 6685, - [7278] = 6719, - [7279] = 7279, - [7280] = 6672, - [7281] = 7281, - [7282] = 7282, - [7283] = 6719, - [7284] = 6720, - [7285] = 6722, - [7286] = 6720, - [7287] = 7287, - [7288] = 7288, - [7289] = 7289, - [7290] = 7290, - [7291] = 7291, - [7292] = 6723, - [7293] = 7162, - [7294] = 7154, - [7295] = 7295, - [7296] = 6722, - [7297] = 7297, - [7298] = 7298, - [7299] = 6742, - [7300] = 6745, - [7301] = 7301, - [7302] = 7302, - [7303] = 7295, - [7304] = 7291, - [7305] = 6723, - [7306] = 7228, - [7307] = 6687, - [7308] = 7218, - [7309] = 7217, - [7310] = 6756, - [7311] = 7088, - [7312] = 7171, - [7313] = 7121, - [7314] = 7301, - [7315] = 7153, - [7316] = 7111, - [7317] = 7109, - [7318] = 7137, - [7319] = 6686, - [7320] = 3025, - [7321] = 6996, - [7322] = 6983, - [7323] = 6752, - [7324] = 6918, - [7325] = 6915, - [7326] = 6752, - [7327] = 6806, - [7328] = 6748, - [7329] = 6727, - [7330] = 6700, - [7331] = 6743, - [7332] = 6702, - [7333] = 6705, - [7334] = 6732, - [7335] = 7077, - [7336] = 6707, - [7337] = 6762, - [7338] = 2951, - [7339] = 6751, - [7340] = 6755, - [7341] = 7012, - [7342] = 6756, - [7343] = 6762, - [7344] = 6736, - [7345] = 6707, - [7346] = 7279, - [7347] = 6672, - [7348] = 7281, - [7349] = 7282, - [7350] = 6735, - [7351] = 6734, - [7352] = 6702, - [7353] = 7353, - [7354] = 7287, - [7355] = 7288, - [7356] = 7289, - [7357] = 7290, - [7358] = 6671, - [7359] = 6729, - [7360] = 6717, - [7361] = 6715, - [7362] = 6671, - [7363] = 6751, - [7364] = 7297, - [7365] = 7298, - [7366] = 6713, - [7367] = 6697, - [7368] = 7301, - [7369] = 6755, - [7370] = 7295, - [7371] = 7291, - [7372] = 6929, - [7373] = 7228, - [7374] = 6756, - [7375] = 7218, - [7376] = 7217, - [7377] = 6728, - [7378] = 7088, - [7379] = 7171, - [7380] = 7121, - [7381] = 6758, - [7382] = 6719, - [7383] = 7111, - [7384] = 7109, - [7385] = 6720, - [7386] = 6772, - [7387] = 6996, - [7388] = 6983, - [7389] = 6722, - [7390] = 6769, - [7391] = 6915, - [7392] = 6723, - [7393] = 6806, - [7394] = 6748, - [7395] = 6727, - [7396] = 6762, - [7397] = 6743, - [7398] = 6767, - [7399] = 6758, - [7400] = 6752, - [7401] = 3020, - [7402] = 7279, - [7403] = 6672, - [7404] = 7281, - [7405] = 7282, - [7406] = 2992, - [7407] = 6767, - [7408] = 2982, - [7409] = 7287, - [7410] = 7288, - [7411] = 7289, - [7412] = 7290, - [7413] = 6878, - [7414] = 6762, - [7415] = 7298, - [7416] = 6765, - [7417] = 6671, - [7418] = 7297, - [7419] = 7298, - [7420] = 6752, - [7421] = 6878, - [7422] = 7301, - [7423] = 6707, - [7424] = 7295, - [7425] = 7291, - [7426] = 6929, - [7427] = 7228, - [7428] = 6702, - [7429] = 7218, - [7430] = 7217, - [7431] = 6762, - [7432] = 7121, - [7433] = 6678, - [7434] = 6767, - [7435] = 7111, - [7436] = 7109, - [7437] = 6758, - [7438] = 7297, - [7439] = 6996, - [7440] = 6983, - [7441] = 7162, - [7442] = 7012, - [7443] = 6915, - [7444] = 6755, - [7445] = 6806, - [7446] = 6748, - [7447] = 6727, - [7448] = 6671, - [7449] = 6743, - [7450] = 6765, - [7451] = 6673, - [7452] = 6747, - [7453] = 7279, - [7454] = 6672, - [7455] = 7282, - [7456] = 6751, - [7457] = 6745, - [7458] = 7048, - [7459] = 7287, - [7460] = 7290, - [7461] = 6742, - [7462] = 6723, - [7463] = 6722, - [7464] = 6719, - [7465] = 6720, - [7466] = 7077, - [7467] = 6732, - [7468] = 7301, - [7469] = 6722, - [7470] = 7291, - [7471] = 6723, - [7472] = 6720, - [7473] = 7121, - [7474] = 6683, - [7475] = 6719, - [7476] = 7111, - [7477] = 7109, - [7478] = 6752, - [7479] = 7137, - [7480] = 2952, - [7481] = 7153, - [7482] = 6915, - [7483] = 7154, - [7484] = 6748, - [7485] = 2921, - [7486] = 2953, - [7487] = 2968, - [7488] = 7279, - [7489] = 6672, - [7490] = 7282, - [7491] = 6762, - [7492] = 6707, - [7493] = 6707, - [7494] = 7287, - [7495] = 6702, - [7496] = 6671, - [7497] = 6769, - [7498] = 6678, - [7499] = 7499, - [7500] = 6719, - [7501] = 6720, - [7502] = 7301, - [7503] = 6675, - [7504] = 7291, - [7505] = 6705, - [7506] = 6722, - [7507] = 7121, - [7508] = 6674, - [7509] = 6772, - [7510] = 7111, - [7511] = 7109, - [7512] = 6719, - [7513] = 6700, - [7514] = 6723, - [7515] = 6915, - [7516] = 6673, - [7517] = 6748, - [7518] = 6765, - [7519] = 7519, - [7520] = 6671, - [7521] = 7279, - [7522] = 6672, - [7523] = 7282, - [7524] = 7524, - [7525] = 6752, - [7526] = 6685, - [7527] = 7287, - [7528] = 6687, - [7529] = 6700, - [7530] = 6687, - [7531] = 6685, - [7532] = 6702, - [7533] = 7236, - [7534] = 6728, - [7535] = 7301, - [7536] = 7060, - [7537] = 7291, - [7538] = 6762, - [7539] = 6705, - [7540] = 7121, - [7541] = 6707, - [7542] = 6695, - [7543] = 7111, - [7544] = 7109, - [7545] = 6702, - [7546] = 6703, - [7547] = 6697, - [7548] = 6915, - [7549] = 6671, - [7550] = 6748, - [7551] = 6765, - [7552] = 7051, - [7553] = 6671, - [7554] = 7279, - [7555] = 6672, - [7556] = 7282, - [7557] = 6673, - [7558] = 6678, - [7559] = 6709, - [7560] = 7287, - [7561] = 6713, - [7562] = 6707, - [7563] = 6683, - [7564] = 6715, - [7565] = 7565, - [7566] = 6742, - [7567] = 6717, - [7568] = 7301, - [7569] = 6719, - [7570] = 7291, - [7571] = 6720, - [7572] = 6722, - [7573] = 7121, - [7574] = 6723, - [7575] = 6729, - [7576] = 7111, - [7577] = 7109, - [7578] = 6734, - [7579] = 6735, - [7580] = 7060, - [7581] = 6915, - [7582] = 6736, - [7583] = 6748, - [7584] = 6751, - [7585] = 6755, - [7586] = 914, - [7587] = 7279, - [7588] = 6672, - [7589] = 7282, - [7590] = 6703, - [7591] = 7051, - [7592] = 7290, - [7593] = 7287, - [7594] = 7289, - [7595] = 6676, - [7596] = 7596, - [7597] = 7048, - [7598] = 6752, - [7599] = 6677, - [7600] = 6756, - [7601] = 6758, - [7602] = 6762, - [7603] = 6767, - [7604] = 7279, - [7605] = 6672, - [7606] = 7282, - [7607] = 6762, - [7608] = 6755, - [7609] = 6719, - [7610] = 7287, - [7611] = 7288, - [7612] = 7612, - [7613] = 7613, - [7614] = 6720, - [7615] = 6707, - [7616] = 6720, - [7617] = 7236, - [7618] = 6685, - [7619] = 6702, - [7620] = 7279, - [7621] = 6672, - [7622] = 7282, - [7623] = 6722, - [7624] = 6723, - [7625] = 6687, - [7626] = 7287, - [7627] = 6700, - [7628] = 6742, - [7629] = 6745, - [7630] = 6747, - [7631] = 6671, - [7632] = 2956, - [7633] = 6765, - [7634] = 6918, - [7635] = 6752, - [7636] = 6672, - [7637] = 7287, - [7638] = 6672, - [7639] = 6752, - [7640] = 6672, - [7641] = 7641, - [7642] = 7642, - [7643] = 6752, - [7644] = 6918, - [7645] = 6681, - [7646] = 6723, - [7647] = 6722, - [7648] = 7565, - [7649] = 6719, - [7650] = 7302, - [7651] = 6720, - [7652] = 6719, - [7653] = 6720, - [7654] = 6747, - [7655] = 6745, - [7656] = 7213, - [7657] = 6719, - [7658] = 6722, - [7659] = 6730, - [7660] = 6723, - [7661] = 6697, - [7662] = 6723, - [7663] = 7641, - [7664] = 7642, - [7665] = 6722, - [7666] = 6720, - [7667] = 6719, - [7668] = 6720, - [7669] = 7565, - [7670] = 7302, - [7671] = 6722, - [7672] = 6723, - [7673] = 6671, - [7674] = 7213, - [7675] = 6736, - [7676] = 6735, - [7677] = 6730, - [7678] = 7641, - [7679] = 7642, - [7680] = 6734, - [7681] = 6729, - [7682] = 6717, - [7683] = 6700, - [7684] = 7565, - [7685] = 7302, - [7686] = 6736, - [7687] = 6752, - [7688] = 6747, - [7689] = 7213, - [7690] = 6713, - [7691] = 6709, - [7692] = 6730, - [7693] = 7641, - [7694] = 7642, - [7695] = 6682, - [7696] = 6673, - [7697] = 6702, - [7698] = 7641, - [7699] = 7642, - [7700] = 6684, - [7701] = 6695, - [7702] = 7702, - [7703] = 7641, - [7704] = 7642, - [7705] = 6728, - [7706] = 7048, - [7707] = 6707, - [7708] = 7641, - [7709] = 7642, - [7710] = 6742, - [7711] = 6755, - [7712] = 6745, - [7713] = 7641, - [7714] = 7642, - [7715] = 7715, - [7716] = 6772, - [7717] = 7051, - [7718] = 7641, - [7719] = 7642, - [7720] = 6762, - [7721] = 6762, - [7722] = 6769, - [7723] = 7641, - [7724] = 7642, - [7725] = 6755, - [7726] = 6683, - [7727] = 6703, - [7728] = 6707, - [7729] = 7060, - [7730] = 6702, - [7731] = 6700, - [7732] = 6767, - [7733] = 6878, - [7734] = 7734, - [7735] = 6671, - [7736] = 2969, - [7737] = 2967, - [7738] = 2995, - [7739] = 6929, - [7740] = 2979, - [7741] = 7186, - [7742] = 6762, - [7743] = 6726, - [7744] = 6688, - [7745] = 6752, - [7746] = 6758, - [7747] = 6756, - [7748] = 7012, - [7749] = 6755, - [7750] = 6723, - [7751] = 6751, - [7752] = 6683, - [7753] = 6719, - [7754] = 6720, - [7755] = 7186, - [7756] = 6726, - [7757] = 6688, - [7758] = 7282, - [7759] = 6722, - [7760] = 7186, - [7761] = 6726, - [7762] = 6688, - [7763] = 7763, - [7764] = 6722, - [7765] = 6752, - [7766] = 7766, - [7767] = 6723, - [7768] = 6720, - [7769] = 7077, - [7770] = 6918, - [7771] = 7771, - [7772] = 6719, - [7773] = 6671, - [7774] = 7774, - [7775] = 6700, - [7776] = 6732, - [7777] = 6690, - [7778] = 6752, - [7779] = 7779, - [7780] = 6671, - [7781] = 7781, - [7782] = 6700, - [7783] = 6702, - [7784] = 7281, - [7785] = 6691, - [7786] = 6692, - [7787] = 6694, - [7788] = 7137, - [7789] = 7153, - [7790] = 7154, - [7791] = 7162, - [7792] = 6707, - [7793] = 6672, - [7794] = 7279, - [7795] = 6755, - [7796] = 6762, - [7797] = 7642, - [7798] = 7641, - [7799] = 6752, - [7800] = 6707, - [7801] = 6723, - [7802] = 6705, - [7803] = 6762, - [7804] = 6755, - [7805] = 6722, - [7806] = 6702, - [7807] = 6700, - [7808] = 7808, - [7809] = 6707, - [7810] = 6702, + [7219] = 7205, + [7220] = 7220, + [7221] = 7204, + [7222] = 7222, + [7223] = 7223, + [7224] = 7224, + [7225] = 7168, + [7226] = 7223, + [7227] = 7217, + [7228] = 7212, + [7229] = 7211, + [7230] = 7171, + [7231] = 7222, + [7232] = 7159, + [7233] = 7172, + [7234] = 7201, + [7235] = 7173, + [7236] = 7162, + [7237] = 7197, + [7238] = 7175, + [7239] = 7169, + [7240] = 7164, + [7241] = 7165, + [7242] = 7166, + [7243] = 7167, + [7244] = 7177, + [7245] = 7224, + [7246] = 7217, + [7247] = 7195, + [7248] = 7182, + [7249] = 7194, + [7250] = 7210, + [7251] = 7170, + [7252] = 7185, + [7253] = 7206, + [7254] = 7174, + [7255] = 7186, + [7256] = 7157, + [7257] = 7202, + [7258] = 7188, + [7259] = 7189, + [7260] = 7200, + [7261] = 7176, + [7262] = 7220, + [7263] = 7199, + [7264] = 7198, + [7265] = 7193, + [7266] = 7192, + [7267] = 7218, + [7268] = 7194, + [7269] = 7195, + [7270] = 7196, + [7271] = 7197, + [7272] = 7180, + [7273] = 7181, + [7274] = 7191, + [7275] = 7183, + [7276] = 7201, + [7277] = 7184, + [7278] = 7190, + [7279] = 7204, + [7280] = 7187, + [7281] = 7172, + [7282] = 7207, + [7283] = 7184, + [7284] = 7187, + [7285] = 7183, + [7286] = 7160, + [7287] = 7161, + [7288] = 7181, + [7289] = 7180, + [7290] = 7218, + [7291] = 7176, + [7292] = 7174, + [7293] = 7158, + [7294] = 7190, + [7295] = 7170, + [7296] = 7168, + [7297] = 7169, + [7298] = 7191, + [7299] = 7192, + [7300] = 7171, + [7301] = 7167, + [7302] = 7193, + [7303] = 7172, + [7304] = 7166, + [7305] = 7173, + [7306] = 7189, + [7307] = 7175, + [7308] = 7188, + [7309] = 7198, + [7310] = 7199, + [7311] = 7177, + [7312] = 7165, + [7313] = 7164, + [7314] = 7200, + [7315] = 7182, + [7316] = 7202, + [7317] = 7157, + [7318] = 7185, + [7319] = 7206, + [7320] = 7186, + [7321] = 7186, + [7322] = 7210, + [7323] = 7189, + [7324] = 7163, + [7325] = 7185, + [7326] = 7162, + [7327] = 7159, + [7328] = 7194, + [7329] = 7195, + [7330] = 7196, + [7331] = 7197, + [7332] = 7211, + [7333] = 7220, + [7334] = 7212, + [7335] = 7335, + [7336] = 7201, + [7337] = 7337, + [7338] = 7182, + [7339] = 7204, + [7340] = 7222, + [7341] = 7223, + [7342] = 7207, + [7343] = 7217, + [7344] = 7224, + [7345] = 7345, + [7346] = 7160, + [7347] = 7161, + [7348] = 7224, + [7349] = 7179, + [7350] = 7212, + [7351] = 7223, + [7352] = 7211, + [7353] = 7159, + [7354] = 7162, + [7355] = 7168, + [7356] = 7177, + [7357] = 7357, + [7358] = 7222, + [7359] = 7171, + [7360] = 7175, + [7361] = 7163, + [7362] = 7172, + [7363] = 7210, + [7364] = 7173, + [7365] = 7164, + [7366] = 7175, + [7367] = 7367, + [7368] = 7165, + [7369] = 7166, + [7370] = 7177, + [7371] = 7173, + [7372] = 7167, + [7373] = 7169, + [7374] = 7182, + [7375] = 7199, + [7376] = 7222, + [7377] = 7185, + [7378] = 7186, + [7379] = 7189, + [7380] = 7206, + [7381] = 7381, + [7382] = 7171, + [7383] = 7157, + [7384] = 7194, + [7385] = 7195, + [7386] = 7196, + [7387] = 7197, + [7388] = 7170, + [7389] = 7202, + [7390] = 7200, + [7391] = 7174, + [7392] = 7201, + [7393] = 7199, + [7394] = 7168, + [7395] = 7204, + [7396] = 7198, + [7397] = 7176, + [7398] = 7207, + [7399] = 7193, + [7400] = 7160, + [7401] = 7161, + [7402] = 7192, + [7403] = 7191, + [7404] = 7404, + [7405] = 7161, + [7406] = 7160, + [7407] = 7190, + [7408] = 7220, + [7409] = 7168, + [7410] = 7187, + [7411] = 7411, + [7412] = 7218, + [7413] = 7171, + [7414] = 7208, + [7415] = 7180, + [7416] = 7172, + [7417] = 7207, + [7418] = 7173, + [7419] = 7181, + [7420] = 7175, + [7421] = 7421, + [7422] = 7183, + [7423] = 7184, + [7424] = 7177, + [7425] = 7205, + [7426] = 7204, + [7427] = 7184, + [7428] = 7182, + [7429] = 7201, + [7430] = 7430, + [7431] = 7185, + [7432] = 7186, + [7433] = 7189, + [7434] = 7183, + [7435] = 7187, + [7436] = 7181, + [7437] = 7180, + [7438] = 7194, + [7439] = 7195, + [7440] = 7196, + [7441] = 7197, + [7442] = 7218, + [7443] = 7158, + [7444] = 7197, + [7445] = 7445, + [7446] = 7201, + [7447] = 7447, + [7448] = 7448, + [7449] = 7204, + [7450] = 7190, + [7451] = 7196, + [7452] = 7207, + [7453] = 7195, + [7454] = 7160, + [7455] = 7161, + [7456] = 7194, + [7457] = 7176, + [7458] = 7191, + [7459] = 7222, + [7460] = 7192, + [7461] = 7193, + [7462] = 7222, + [7463] = 7168, + [7464] = 7222, + [7465] = 7174, + [7466] = 7198, + [7467] = 7171, + [7468] = 7222, + [7469] = 7337, + [7470] = 7172, + [7471] = 7222, + [7472] = 7173, + [7473] = 7473, + [7474] = 7175, + [7475] = 7170, + [7476] = 7200, + [7477] = 7202, + [7478] = 7177, + [7479] = 7222, + [7480] = 7222, + [7481] = 7206, + [7482] = 7182, + [7483] = 7222, + [7484] = 7210, + [7485] = 7185, + [7486] = 7186, + [7487] = 7189, + [7488] = 7222, + [7489] = 7169, + [7490] = 7222, + [7491] = 7167, + [7492] = 7194, + [7493] = 7195, + [7494] = 7196, + [7495] = 7197, + [7496] = 7496, + [7497] = 7222, + [7498] = 7166, + [7499] = 7220, + [7500] = 7201, + [7501] = 7335, + [7502] = 7169, + [7503] = 7204, + [7504] = 7190, + [7505] = 7165, + [7506] = 7207, + [7507] = 7160, + [7508] = 7161, + [7509] = 7222, + [7510] = 7164, + [7511] = 7222, + [7512] = 7222, + [7513] = 7223, + [7514] = 7224, + [7515] = 7217, + [7516] = 7171, + [7517] = 7163, + [7518] = 7212, + [7519] = 7172, + [7520] = 7222, + [7521] = 7173, + [7522] = 7211, + [7523] = 7159, + [7524] = 7177, + [7525] = 7222, + [7526] = 7162, + [7527] = 7185, + [7528] = 7162, + [7529] = 7357, + [7530] = 7222, + [7531] = 7159, + [7532] = 7194, + [7533] = 7195, + [7534] = 7196, + [7535] = 7197, + [7536] = 7222, + [7537] = 7163, + [7538] = 7211, + [7539] = 7164, + [7540] = 7201, + [7541] = 7367, + [7542] = 7165, + [7543] = 7204, + [7544] = 7166, + [7545] = 7167, + [7546] = 7207, + [7547] = 7160, + [7548] = 7161, + [7549] = 7222, + [7550] = 7212, + [7551] = 7448, + [7552] = 7222, + [7553] = 7553, + [7554] = 7345, + [7555] = 7217, + [7556] = 7171, + [7557] = 7222, + [7558] = 7558, + [7559] = 7172, + [7560] = 7224, + [7561] = 7173, + [7562] = 7381, + [7563] = 7223, + [7564] = 7177, + [7565] = 7222, + [7566] = 7162, + [7567] = 7170, + [7568] = 7222, + [7569] = 7174, + [7570] = 7194, + [7571] = 7195, + [7572] = 7196, + [7573] = 7197, + [7574] = 7222, + [7575] = 7162, + [7576] = 7218, + [7577] = 7190, + [7578] = 7201, + [7579] = 7222, + [7580] = 7176, + [7581] = 7204, + [7582] = 7404, + [7583] = 7162, + [7584] = 7207, + [7585] = 7160, + [7586] = 7161, + [7587] = 7218, + [7588] = 7210, + [7589] = 7190, + [7590] = 7206, + [7591] = 7157, + [7592] = 7411, + [7593] = 7222, + [7594] = 7171, + [7595] = 7162, + [7596] = 7218, + [7597] = 7172, + [7598] = 7218, + [7599] = 7173, + [7600] = 7180, + [7601] = 7181, + [7602] = 7177, + [7603] = 7421, + [7604] = 7202, + [7605] = 7183, + [7606] = 7184, + [7607] = 7190, + [7608] = 7194, + [7609] = 7195, + [7610] = 7196, + [7611] = 7197, + [7612] = 7200, + [7613] = 7200, + [7614] = 7430, + [7615] = 7201, + [7616] = 7187, + [7617] = 7199, + [7618] = 7204, + [7619] = 7198, + [7620] = 7222, + [7621] = 7207, + [7622] = 7160, + [7623] = 7161, + [7624] = 7162, + [7625] = 7218, + [7626] = 7158, + [7627] = 7193, + [7628] = 7445, + [7629] = 7447, + [7630] = 7171, + [7631] = 7199, + [7632] = 7200, + [7633] = 7172, + [7634] = 7192, + [7635] = 7173, + [7636] = 7191, + [7637] = 7190, + [7638] = 7177, + [7639] = 7190, + [7640] = 7222, + [7641] = 7191, + [7642] = 7192, + [7643] = 7193, + [7644] = 7194, + [7645] = 7195, + [7646] = 7196, + [7647] = 7197, + [7648] = 7162, + [7649] = 7184, + [7650] = 7198, + [7651] = 7201, + [7652] = 7199, + [7653] = 7473, + [7654] = 7204, + [7655] = 7183, + [7656] = 7200, + [7657] = 7207, + [7658] = 7160, + [7659] = 7161, + [7660] = 7218, + [7661] = 7190, + [7662] = 7202, + [7663] = 7200, + [7664] = 7157, + [7665] = 7206, + [7666] = 7171, + [7667] = 7180, + [7668] = 7218, + [7669] = 7172, + [7670] = 7176, + [7671] = 7173, + [7672] = 7210, + [7673] = 7222, + [7674] = 7177, + [7675] = 7162, + [7676] = 7194, + [7677] = 7195, + [7678] = 7196, + [7679] = 7162, + [7680] = 7496, + [7681] = 7204, + [7682] = 7159, + [7683] = 7220, + [7684] = 7218, + [7685] = 7335, + [7686] = 7172, + [7687] = 7181, + [7688] = 7337, + [7689] = 7194, + [7690] = 7195, + [7691] = 7196, + [7692] = 7190, + [7693] = 7200, + [7694] = 7204, + [7695] = 7222, + [7696] = 7212, + [7697] = 7223, + [7698] = 7217, + [7699] = 7194, + [7700] = 7195, + [7701] = 7196, + [7702] = 7224, + [7703] = 7217, + [7704] = 7204, + [7705] = 7212, + [7706] = 7224, + [7707] = 7211, + [7708] = 7223, + [7709] = 7194, + [7710] = 7195, + [7711] = 7196, + [7712] = 7159, + [7713] = 7162, + [7714] = 7204, + [7715] = 7357, + [7716] = 7222, + [7717] = 7222, + [7718] = 7194, + [7719] = 7195, + [7720] = 7196, + [7721] = 7162, + [7722] = 7218, + [7723] = 7404, + [7724] = 7190, + [7725] = 7200, + [7726] = 7194, + [7727] = 7195, + [7728] = 7163, + [7729] = 7164, + [7730] = 7367, + [7731] = 7194, + [7732] = 7195, + [7733] = 7165, + [7734] = 7166, + [7735] = 7167, + [7736] = 7194, + [7737] = 7195, + [7738] = 7169, + [7739] = 7553, + [7740] = 7345, + [7741] = 7194, + [7742] = 7195, + [7743] = 7210, + [7744] = 7558, + [7745] = 7381, + [7746] = 7194, + [7747] = 7195, + [7748] = 7206, + [7749] = 7157, + [7750] = 7170, + [7751] = 7202, + [7752] = 7174, + [7753] = 7222, + [7754] = 7162, + [7755] = 7200, + [7756] = 7190, + [7757] = 7176, + [7758] = 7199, + [7759] = 7198, + [7760] = 7218, + [7761] = 7190, + [7762] = 7411, + [7763] = 7200, + [7764] = 7218, + [7765] = 7180, + [7766] = 7181, + [7767] = 7421, + [7768] = 7183, + [7769] = 7184, + [7770] = 7193, + [7771] = 7192, + [7772] = 7191, + [7773] = 7430, + [7774] = 7187, + [7775] = 7222, + [7776] = 7162, + [7777] = 7218, + [7778] = 7220, + [7779] = 7445, + [7780] = 7447, + [7781] = 7448, + [7782] = 7218, + [7783] = 7190, + [7784] = 7184, + [7785] = 7191, + [7786] = 7192, + [7787] = 7193, + [7788] = 7190, + [7789] = 7200, + [7790] = 7198, + [7791] = 7183, + [7792] = 7473, + [7793] = 7181, + [7794] = 7200, + [7795] = 7202, + [7796] = 7157, + [7797] = 7206, + [7798] = 7180, + [7799] = 7210, + [7800] = 7218, + [7801] = 7176, + [7802] = 7222, + [7803] = 7496, + [7804] = 7162, + [7805] = 7220, + [7806] = 7335, + [7807] = 7337, + [7808] = 7218, + [7809] = 7809, + [7810] = 7810, [7811] = 7811, [7812] = 7812, - [7813] = 6703, - [7814] = 7814, - [7815] = 7815, - [7816] = 7816, + [7813] = 7190, + [7814] = 7200, + [7815] = 7222, + [7816] = 7223, [7817] = 7817, - [7818] = 2951, + [7818] = 7818, [7819] = 7819, [7820] = 7820, - [7821] = 7821, + [7821] = 7224, + [7822] = 7217, + [7823] = 7212, + [7824] = 7211, + [7825] = 7159, + [7826] = 7162, + [7827] = 7827, + [7828] = 7828, + [7829] = 7357, + [7830] = 7162, + [7831] = 7831, + [7832] = 7159, + [7833] = 7833, + [7834] = 7834, + [7835] = 7211, + [7836] = 7836, + [7837] = 7212, + [7838] = 7838, + [7839] = 7839, + [7840] = 7217, + [7841] = 7841, + [7842] = 7842, + [7843] = 7843, + [7844] = 7222, + [7845] = 7162, + [7846] = 7846, + [7847] = 7847, + [7848] = 7224, + [7849] = 7223, + [7850] = 7222, + [7851] = 7851, + [7852] = 7852, + [7853] = 7218, + [7854] = 7211, + [7855] = 7855, + [7856] = 7190, + [7857] = 7857, + [7858] = 7858, + [7859] = 7859, + [7860] = 7200, + [7861] = 7861, + [7862] = 7210, + [7863] = 7222, + [7864] = 7162, + [7865] = 7206, + [7866] = 7157, + [7867] = 7202, + [7868] = 7218, + [7869] = 7200, + [7870] = 7190, + [7871] = 7200, + [7872] = 7199, + [7873] = 7198, + [7874] = 7193, + [7875] = 7222, + [7876] = 7809, + [7877] = 7810, + [7878] = 7811, + [7879] = 7812, + [7880] = 7162, + [7881] = 7192, + [7882] = 7191, + [7883] = 7190, + [7884] = 7817, + [7885] = 7818, + [7886] = 7819, + [7887] = 7820, + [7888] = 7198, + [7889] = 7190, + [7890] = 7192, + [7891] = 7200, + [7892] = 3353, + [7893] = 7184, + [7894] = 7827, + [7895] = 7828, + [7896] = 3357, + [7897] = 1112, + [7898] = 7831, + [7899] = 7183, + [7900] = 7833, + [7901] = 7834, + [7902] = 1054, + [7903] = 7836, + [7904] = 7181, + [7905] = 7838, + [7906] = 7839, + [7907] = 7222, + [7908] = 7841, + [7909] = 7842, + [7910] = 7843, + [7911] = 7223, + [7912] = 7224, + [7913] = 7846, + [7914] = 7847, + [7915] = 7217, + [7916] = 3336, + [7917] = 7851, + [7918] = 7852, + [7919] = 3420, + [7920] = 7180, + [7921] = 7855, + [7922] = 3345, + [7923] = 7857, + [7924] = 7858, + [7925] = 7859, + [7926] = 3387, + [7927] = 7861, + [7928] = 3330, + [7929] = 3326, + [7930] = 3361, + [7931] = 7218, + [7932] = 7809, + [7933] = 7810, + [7934] = 7811, + [7935] = 7812, + [7936] = 3365, + [7937] = 3370, + [7938] = 3389, + [7939] = 7817, + [7940] = 7818, + [7941] = 7819, + [7942] = 7820, + [7943] = 3398, + [7944] = 3393, + [7945] = 3351, + [7946] = 971, + [7947] = 7176, + [7948] = 7827, + [7949] = 7828, + [7950] = 7162, + [7951] = 3294, + [7952] = 7831, + [7953] = 7162, + [7954] = 7833, + [7955] = 7834, + [7956] = 7159, + [7957] = 7836, + [7958] = 7211, + [7959] = 7838, + [7960] = 7839, + [7961] = 7218, + [7962] = 7843, + [7963] = 7190, + [7964] = 7192, + [7965] = 7846, + [7966] = 7847, + [7967] = 7200, + [7968] = 7217, + [7969] = 7851, + [7970] = 7852, + [7971] = 3310, + [7972] = 7224, + [7973] = 7855, + [7974] = 1086, + [7975] = 7857, + [7976] = 7858, + [7977] = 7859, + [7978] = 7223, + [7979] = 7861, + [7980] = 7222, + [7981] = 971, + [7982] = 7222, + [7983] = 7809, + [7984] = 7810, + [7985] = 7812, + [7986] = 7223, + [7987] = 7224, + [7988] = 7217, + [7989] = 7817, + [7990] = 7820, + [7991] = 7162, + [7992] = 7210, + [7993] = 3308, + [7994] = 7206, + [7995] = 7157, + [7996] = 1069, + [7997] = 7202, + [7998] = 7831, + [7999] = 7200, + [8000] = 7834, + [8001] = 8001, + [8002] = 7199, + [8003] = 7843, + [8004] = 8004, + [8005] = 7861, + [8006] = 7846, + [8007] = 7847, + [8008] = 7163, + [8009] = 7164, + [8010] = 7218, + [8011] = 7367, + [8012] = 7855, + [8013] = 8013, + [8014] = 7858, + [8015] = 7381, + [8016] = 8016, + [8017] = 7162, + [8018] = 7809, + [8019] = 7810, + [8020] = 7812, + [8021] = 7165, + [8022] = 7166, + [8023] = 7167, + [8024] = 7817, + [8025] = 7169, + [8026] = 7553, + [8027] = 7190, + [8028] = 7192, + [8029] = 7200, + [8030] = 7193, + [8031] = 8031, + [8032] = 7831, + [8033] = 8033, + [8034] = 7834, + [8035] = 7345, + [8036] = 7192, + [8037] = 7843, + [8038] = 8038, + [8039] = 8039, + [8040] = 7846, + [8041] = 7847, + [8042] = 8042, + [8043] = 7189, + [8044] = 7191, + [8045] = 7855, + [8046] = 7222, + [8047] = 7858, + [8048] = 7223, + [8049] = 7558, + [8050] = 7224, + [8051] = 7809, + [8052] = 7810, + [8053] = 7812, + [8054] = 7217, + [8055] = 7190, + [8056] = 7188, + [8057] = 7817, + [8058] = 8058, + [8059] = 8059, + [8060] = 7200, + [8061] = 8061, + [8062] = 8062, + [8063] = 7859, + [8064] = 7182, + [8065] = 7831, + [8066] = 7184, + [8067] = 7834, + [8068] = 8068, + [8069] = 7183, + [8070] = 7843, + [8071] = 7181, + [8072] = 7858, + [8073] = 7846, + [8074] = 7847, + [8075] = 8075, + [8076] = 7180, + [8077] = 8077, + [8078] = 7855, + [8079] = 7170, + [8080] = 7858, + [8081] = 7186, + [8082] = 7218, + [8083] = 7218, + [8084] = 7809, + [8085] = 7810, + [8086] = 7812, + [8087] = 7174, + [8088] = 7176, + [8089] = 7190, + [8090] = 7817, + [8091] = 7192, + [8092] = 7200, + [8093] = 7212, + [8094] = 7857, + [8095] = 8095, + [8096] = 8096, + [8097] = 7162, + [8098] = 7831, + [8099] = 7185, + [8100] = 7834, + [8101] = 7222, + [8102] = 7223, + [8103] = 7843, + [8104] = 8104, + [8105] = 7224, + [8106] = 7846, + [8107] = 7847, + [8108] = 7176, + [8109] = 8109, + [8110] = 7217, + [8111] = 7855, + [8112] = 7159, + [8113] = 7858, + [8114] = 7211, + [8115] = 7212, + [8116] = 7162, + [8117] = 7809, + [8118] = 7810, + [8119] = 7812, + [8120] = 7404, + [8121] = 7217, + [8122] = 7224, + [8123] = 7817, + [8124] = 8124, + [8125] = 8125, + [8126] = 7855, + [8127] = 7223, + [8128] = 7222, + [8129] = 7218, + [8130] = 8130, + [8131] = 8131, + [8132] = 7411, + [8133] = 7190, + [8134] = 7809, + [8135] = 7810, + [8136] = 7812, + [8137] = 7179, + [8138] = 7192, + [8139] = 8139, + [8140] = 7817, + [8141] = 7192, + [8142] = 7210, + [8143] = 7206, + [8144] = 7218, + [8145] = 7157, + [8146] = 7222, + [8147] = 7852, + [8148] = 7177, + [8149] = 7223, + [8150] = 7809, + [8151] = 7810, + [8152] = 7812, + [8153] = 7180, + [8154] = 7851, + [8155] = 7181, + [8156] = 7817, + [8157] = 7421, + [8158] = 8158, + [8159] = 7183, + [8160] = 7184, + [8161] = 7224, + [8162] = 7217, + [8163] = 7202, + [8164] = 7200, + [8165] = 7199, + [8166] = 7809, + [8167] = 7810, + [8168] = 7812, + [8169] = 8169, + [8170] = 7162, + [8171] = 7198, + [8172] = 7817, + [8173] = 7193, + [8174] = 7430, + [8175] = 7192, + [8176] = 7191, + [8177] = 8177, + [8178] = 7187, + [8179] = 7218, + [8180] = 7183, + [8181] = 7809, + [8182] = 7810, + [8183] = 7812, + [8184] = 7847, + [8185] = 7846, + [8186] = 7175, + [8187] = 7817, + [8188] = 7843, + [8189] = 7190, + [8190] = 8190, + [8191] = 7192, + [8192] = 7193, + [8193] = 7810, + [8194] = 7158, + [8195] = 8195, + [8196] = 7810, + [8197] = 8197, + [8198] = 7810, + [8199] = 7200, + [8200] = 7810, + [8201] = 8201, + [8202] = 8202, + [8203] = 8203, + [8204] = 7445, + [8205] = 7447, + [8206] = 7448, + [8207] = 7190, + [8208] = 8208, + [8209] = 7184, + [8210] = 8210, + [8211] = 7842, + [8212] = 7183, + [8213] = 7841, + [8214] = 8214, + [8215] = 8215, + [8216] = 8216, + [8217] = 7181, + [8218] = 7190, + [8219] = 8016, + [8220] = 8216, + [8221] = 7839, + [8222] = 7838, + [8223] = 8201, + [8224] = 8202, + [8225] = 7222, + [8226] = 7223, + [8227] = 7173, + [8228] = 7180, + [8229] = 8208, + [8230] = 8210, + [8231] = 7836, + [8232] = 7224, + [8233] = 7191, + [8234] = 8216, + [8235] = 7192, + [8236] = 7217, + [8237] = 8016, + [8238] = 8201, + [8239] = 8202, + [8240] = 7218, + [8241] = 7193, + [8242] = 7172, + [8243] = 7176, + [8244] = 8208, + [8245] = 8210, + [8246] = 7162, + [8247] = 7162, + [8248] = 7217, + [8249] = 8216, + [8250] = 7224, + [8251] = 7171, + [8252] = 8016, + [8253] = 8201, + [8254] = 8202, + [8255] = 7198, + [8256] = 7199, + [8257] = 7223, + [8258] = 8201, + [8259] = 8202, + [8260] = 7218, + [8261] = 7473, + [8262] = 7183, + [8263] = 8201, + [8264] = 8202, + [8265] = 7190, + [8266] = 7834, + [8267] = 7833, + [8268] = 8201, + [8269] = 8202, + [8270] = 7206, + [8271] = 7200, + [8272] = 7831, + [8273] = 8201, + [8274] = 8202, + [8275] = 7168, + [8276] = 7193, + [8277] = 8277, + [8278] = 8201, + [8279] = 8202, + [8280] = 7200, + [8281] = 7200, + [8282] = 7200, + [8283] = 8201, + [8284] = 8202, + [8285] = 7193, + [8286] = 7192, + [8287] = 7828, + [8288] = 8201, + [8289] = 8202, + [8290] = 8290, + [8291] = 8291, + [8292] = 8210, + [8293] = 8201, + [8294] = 8202, + [8295] = 7827, + [8296] = 7202, + [8297] = 7157, + [8298] = 8298, + [8299] = 7190, + [8300] = 7222, + [8301] = 7223, + [8302] = 7210, + [8303] = 7224, + [8304] = 7217, + [8305] = 7183, + [8306] = 7218, + [8307] = 7162, + [8308] = 8308, + [8309] = 7161, + [8310] = 7160, + [8311] = 8215, + [8312] = 7162, + [8313] = 8062, + [8314] = 8039, + [8315] = 8315, + [8316] = 8316, + [8317] = 7217, + [8318] = 7224, + [8319] = 7222, + [8320] = 7496, + [8321] = 7224, + [8322] = 7220, + [8323] = 7335, + [8324] = 7337, + [8325] = 8215, + [8326] = 8062, + [8327] = 8039, + [8328] = 8208, + [8329] = 7217, + [8330] = 8215, + [8331] = 8062, + [8332] = 8039, + [8333] = 7222, + [8334] = 7820, + [8335] = 7819, + [8336] = 7208, + [8337] = 7159, + [8338] = 7207, + [8339] = 7818, + [8340] = 8340, + [8341] = 8341, + [8342] = 7223, + [8343] = 7222, + [8344] = 8344, + [8345] = 7193, + [8346] = 7223, + [8347] = 7817, + [8348] = 7218, + [8349] = 7205, + [8350] = 7222, + [8351] = 7223, + [8352] = 7224, + [8353] = 7217, + [8354] = 7204, + [8355] = 7201, + [8356] = 8356, + [8357] = 7212, + [8358] = 7211, + [8359] = 8359, + [8360] = 7218, + [8361] = 8361, + [8362] = 7812, + [8363] = 7183, + [8364] = 8364, + [8365] = 7162, + [8366] = 8366, + [8367] = 7162, + [8368] = 7190, + [8369] = 7357, + [8370] = 8370, + [8371] = 7192, + [8372] = 8372, + [8373] = 7190, + [8374] = 7197, + [8375] = 8375, + [8376] = 7192, + [8377] = 8377, + [8378] = 7811, + [8379] = 7196, + [8380] = 7195, + [8381] = 7194, + [8382] = 7193, + [8383] = 7810, + [8384] = 7809, + [8385] = 7200, + [8386] = 7183, + [8387] = 8202, + [8388] = 8201, + [8389] = 7220, + [8390] = 8390, + [8391] = 8391, + [8392] = 8392, + [8393] = 8393, + [8394] = 3420, + [8395] = 8395, + [8396] = 8396, + [8397] = 8397, }; static inline bool sym__non_escape_char_character_set_1(int32_t c) { @@ -15735,78 +16318,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(437); - if (lookahead == '#') ADVANCE(412); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(402); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(406); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(519); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(361); + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(475); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(440); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(444); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(560); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(501); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(399); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(365); - if (lookahead == '^') ADVANCE(415); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(426); - if (lookahead == '|') ADVANCE(355); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + if (lookahead == ']') ADVANCE(403); + if (lookahead == '^') ADVANCE(453); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(464); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(301) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(339) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '\\') SKIP(49) + if (lookahead == '\n') ADVANCE(647); + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '\\') SKIP(46) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || @@ -15814,254 +16397,286 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(1) END_STATE(); case 2: - if (lookahead == '\r') SKIP(213) - if (lookahead == 'n') SKIP(58) - if (lookahead == 'u') ADVANCE(289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (lookahead == '\r') SKIP(243) + if (lookahead == 'n') SKIP(66) + if (lookahead == 'u') ADVANCE(327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 3: - if (lookahead == '\r') ADVANCE(419); - if (lookahead == 'n') ADVANCE(418); - if (lookahead == 'u') ADVANCE(419); + if (lookahead == '\r') ADVANCE(457); + if (lookahead == 'n') ADVANCE(456); + if (lookahead == 'u') ADVANCE(457); if (lookahead == '"' || lookahead == '\'' || lookahead == 'a' || lookahead == 'b' || lookahead == 'f' || lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(419); - if (lookahead != 0) ADVANCE(419); + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(457); + if (lookahead != 0) ADVANCE(457); END_STATE(); case 4: - if (lookahead == '\r') SKIP(250) - if (lookahead == 'n') SKIP(103) + if (lookahead == '\r') SKIP(280) + if (lookahead == 'n') SKIP(131) END_STATE(); case 5: - if (lookahead == '\r') SKIP(251) - if (lookahead == 'n') SKIP(94) + if (lookahead == '\r') SKIP(281) + if (lookahead == 'n') SKIP(118) END_STATE(); case 6: - if (lookahead == '\r') SKIP(252) - if (lookahead == 'n') SKIP(102) + if (lookahead == '\r') SKIP(288) + if (lookahead == 'n') SKIP(134) END_STATE(); case 7: - if (lookahead == '\r') SKIP(216) - if (lookahead == 'n') SKIP(113) + if (lookahead == '\r') SKIP(282) + if (lookahead == 'n') SKIP(130) END_STATE(); case 8: - if (lookahead == '\r') SKIP(217) - if (lookahead == 'n') SKIP(96) + if (lookahead == '\r') SKIP(246) + if (lookahead == 'n') SKIP(143) END_STATE(); case 9: - if (lookahead == '\r') SKIP(258) - if (lookahead == 'n') SKIP(98) + if (lookahead == '\r') SKIP(247) + if (lookahead == 'n') SKIP(120) END_STATE(); case 10: - if (lookahead == '\r') SKIP(257) - if (lookahead == 'n') SKIP(104) + if (lookahead == '\r') SKIP(287) + if (lookahead == 'n') SKIP(122) END_STATE(); case 11: - if (lookahead == '\r') SKIP(259) - if (lookahead == 'n') SKIP(93) + if (lookahead == '\r') SKIP(283) + if (lookahead == 'n') SKIP(112) END_STATE(); case 12: - if (lookahead == '\r') SKIP(253) - if (lookahead == 'n') SKIP(90) + if (lookahead == '\r') SKIP(284) + if (lookahead == 'n') SKIP(115) END_STATE(); case 13: - if (lookahead == '\r') SKIP(254) - if (lookahead == 'n') SKIP(89) + if (lookahead == '\r') SKIP(285) + if (lookahead == 'n') SKIP(111) END_STATE(); case 14: - if (lookahead == '\r') SKIP(255) - if (lookahead == 'n') SKIP(91) + if (lookahead == '\r') SKIP(289) + if (lookahead == 'n') SKIP(114) END_STATE(); case 15: - if (lookahead == '\r') SKIP(262) - if (lookahead == 'n') SKIP(92) + if (lookahead == '\r') SKIP(293) + if (lookahead == 'n') SKIP(113) END_STATE(); case 16: - if (lookahead == '\r') SKIP(263) - if (lookahead == 'n') SKIP(95) + if (lookahead == '\r') SKIP(291) + if (lookahead == 'n') SKIP(123) END_STATE(); case 17: - if (lookahead == '\r') SKIP(264) - if (lookahead == 'n') SKIP(97) + if (lookahead == '\r') SKIP(248) + if (lookahead == 'n') SKIP(158) END_STATE(); case 18: - if (lookahead == '\r') SKIP(265) - if (lookahead == 'n') SKIP(105) + if (lookahead == '\r') SKIP(249) + if (lookahead == 'n') SKIP(149) END_STATE(); case 19: - if (lookahead == '\r') SKIP(261) - if (lookahead == 'n') SKIP(99) + if (lookahead == '\r') SKIP(250) + if (lookahead == 'n') SKIP(164) END_STATE(); case 20: - if (lookahead == '\r') SKIP(218) - if (lookahead == 'n') SKIP(120) + if (lookahead == '\r') SKIP(251) + if (lookahead == 'n') SKIP(148) END_STATE(); case 21: - if (lookahead == '\r') SKIP(219) - if (lookahead == 'n') SKIP(128) + if (lookahead == '\r') SKIP(252) + if (lookahead == 'n') SKIP(187) END_STATE(); case 22: - if (lookahead == '\r') SKIP(220) - if (lookahead == 'n') SKIP(134) + if (lookahead == '\r') SKIP(253) + if (lookahead == 'n') SKIP(138) END_STATE(); case 23: - if (lookahead == '\r') SKIP(221) - if (lookahead == 'n') SKIP(118) + if (lookahead == '\r') SKIP(254) + if (lookahead == 'n') SKIP(180) END_STATE(); case 24: - if (lookahead == '\r') SKIP(222) - if (lookahead == 'n') SKIP(157) + if (lookahead == '\r') SKIP(255) + if (lookahead == 'n') SKIP(154) END_STATE(); case 25: - if (lookahead == '\r') SKIP(223) - if (lookahead == 'n') SKIP(108) + if (lookahead == '\r') SKIP(256) + if (lookahead == 'n') SKIP(163) END_STATE(); case 26: - if (lookahead == '\r') SKIP(224) - if (lookahead == 'n') SKIP(150) + if (lookahead == '\r') SKIP(257) + if (lookahead == 'n') SKIP(170) END_STATE(); case 27: - if (lookahead == '\r') SKIP(225) - if (lookahead == 'n') SKIP(125) + if (lookahead == '\r') SKIP(258) + if (lookahead == 'n') SKIP(178) END_STATE(); case 28: - if (lookahead == '\r') SKIP(226) - if (lookahead == 'n') SKIP(133) + if (lookahead == '\r') SKIP(259) + if (lookahead == 'n') SKIP(155) END_STATE(); case 29: - if (lookahead == '\r') SKIP(227) - if (lookahead == 'n') SKIP(140) + if (lookahead == '\r') SKIP(260) + if (lookahead == 'n') SKIP(156) END_STATE(); case 30: - if (lookahead == '\r') SKIP(228) - if (lookahead == 'n') SKIP(148) + if (lookahead == '\r') SKIP(261) + if (lookahead == 'n') SKIP(171) END_STATE(); case 31: - if (lookahead == '\r') SKIP(229) - if (lookahead == 'n') SKIP(126) + if (lookahead == '\r') SKIP(262) + if (lookahead == 'n') SKIP(194) END_STATE(); case 32: - if (lookahead == '\r') SKIP(230) - if (lookahead == 'n') SKIP(127) + if (lookahead == '\r') SKIP(263) + if (lookahead == 'n') SKIP(172) END_STATE(); case 33: - if (lookahead == '\r') SKIP(231) - if (lookahead == 'n') SKIP(141) + if (lookahead == '\r') SKIP(264) + if (lookahead == 'n') SKIP(185) END_STATE(); case 34: - if (lookahead == '\r') SKIP(232) - if (lookahead == 'n') SKIP(164) + if (lookahead == '\r') SKIP(265) + if (lookahead == 'n') SKIP(165) END_STATE(); case 35: - if (lookahead == '\r') SKIP(233) - if (lookahead == 'n') SKIP(142) + if (lookahead == '\r') SKIP(266) + if (lookahead == 'n') SKIP(203) END_STATE(); case 36: - if (lookahead == '\r') SKIP(234) - if (lookahead == 'n') SKIP(155) + if (lookahead == '\r') SKIP(267) + if (lookahead == 'n') SKIP(186) END_STATE(); case 37: - if (lookahead == '\r') SKIP(235) - if (lookahead == 'n') SKIP(156) + if (lookahead == '\r') SKIP(268) + if (lookahead == 'n') SKIP(173) END_STATE(); case 38: - if (lookahead == '\r') SKIP(236) - if (lookahead == 'n') SKIP(135) + if (lookahead == '\r') SKIP(269) + if (lookahead == 'n') SKIP(179) END_STATE(); case 39: - if (lookahead == '\r') SKIP(237) - if (lookahead == 'n') SKIP(173) + if (lookahead == '\r') SKIP(270) + if (lookahead == 'n') SKIP(197) END_STATE(); case 40: - if (lookahead == '\r') SKIP(238) - if (lookahead == 'n') SKIP(143) + if (lookahead == '\r') SKIP(273) + if (lookahead == 'n') SKIP(200) END_STATE(); case 41: - if (lookahead == '\r') SKIP(239) - if (lookahead == 'n') SKIP(149) + if (lookahead == '\r') SKIP(274) + if (lookahead == 'n') SKIP(202) END_STATE(); case 42: - if (lookahead == '\r') SKIP(240) - if (lookahead == 'n') SKIP(167) + if (lookahead == '\r') SKIP(275) + if (lookahead == 'n') SKIP(195) END_STATE(); case 43: - if (lookahead == '\r') SKIP(243) - if (lookahead == 'n') SKIP(170) + if (lookahead == '\r') SKIP(276) + if (lookahead == 'n') SKIP(201) END_STATE(); case 44: - if (lookahead == '\r') SKIP(244) - if (lookahead == 'n') SKIP(172) + if (lookahead == '\r') SKIP(277) + if (lookahead == 'n') SKIP(198) END_STATE(); case 45: - if (lookahead == '\r') SKIP(245) - if (lookahead == 'n') SKIP(165) + if (lookahead == '\r') SKIP(278) + if (lookahead == 'n') SKIP(139) + if (lookahead == 'u') ADVANCE(327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 46: - if (lookahead == '\r') SKIP(246) - if (lookahead == 'n') SKIP(171) + if (lookahead == '\r') SKIP(279) + if (lookahead == 'n') SKIP(1) END_STATE(); case 47: - if (lookahead == '\r') SKIP(247) - if (lookahead == 'n') SKIP(168) + if (lookahead == '\r') SKIP(286) + if (lookahead == 'n') SKIP(124) END_STATE(); case 48: - if (lookahead == '\r') SKIP(248) - if (lookahead == 'n') SKIP(109) - if (lookahead == 'u') ADVANCE(289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (lookahead == '\r') SKIP(292) + if (lookahead == 'n') SKIP(135) END_STATE(); case 49: - if (lookahead == '\r') SKIP(249) - if (lookahead == 'n') SKIP(1) + if (lookahead == '\r') SKIP(290) + if (lookahead == 'n') SKIP(125) END_STATE(); case 50: - if (lookahead == '\r') SKIP(256) - if (lookahead == 'n') SKIP(100) + if (lookahead == '\r') SKIP(294) + if (lookahead == 'n') SKIP(117) END_STATE(); case 51: - if (lookahead == '\r') SKIP(260) - if (lookahead == 'n') SKIP(101) + if (lookahead == '\r') SKIP(295) + if (lookahead == 'n') SKIP(132) END_STATE(); case 52: - if (lookahead == ' ') ADVANCE(613); + if (lookahead == '\r') SKIP(296) + if (lookahead == 'n') SKIP(126) END_STATE(); case 53: - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'e') ADVANCE(212); - if (lookahead == 'i') ADVANCE(207); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == '\r') SKIP(297) + if (lookahead == 'n') SKIP(128) END_STATE(); case 54: - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'e') ADVANCE(212); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == '\r') SKIP(298) + if (lookahead == 'n') SKIP(116) END_STATE(); case 55: - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'i') ADVANCE(207); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == '\r') SKIP(299) + if (lookahead == 'n') SKIP(121) END_STATE(); case 56: - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == '\r') SKIP(300) + if (lookahead == 'n') SKIP(119) END_STATE(); case 57: - if (lookahead == ' ') ADVANCE(178); - if (lookahead == ')') ADVANCE(444); - if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(179); + if (lookahead == '\r') SKIP(301) + if (lookahead == 'n') SKIP(129) + END_STATE(); + case 58: + if (lookahead == '\r') SKIP(302) + if (lookahead == 'n') SKIP(133) + END_STATE(); + case 59: + if (lookahead == '\r') SKIP(303) + if (lookahead == 'n') SKIP(127) + END_STATE(); + case 60: + if (lookahead == ' ') ADVANCE(654); + END_STATE(); + case 61: + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'i') ADVANCE(237); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); + END_STATE(); + case 62: + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); + END_STATE(); + case 63: + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'i') ADVANCE(237); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); + END_STATE(); + case 64: + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); + END_STATE(); + case 65: + if (lookahead == ' ') ADVANCE(208); + if (lookahead == ')') ADVANCE(482); + if (('\t' <= lookahead && lookahead <= '\r')) ADVANCE(209); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -16069,4262 +16684,5254 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 58: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(412); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(361); + case 66: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(501); + if (lookahead == '[') ADVANCE(399); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(365); - if (lookahead == '^') ADVANCE(415); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(355); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + if (lookahead == ']') ADVANCE(403); + if (lookahead == '^') ADVANCE(453); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(66) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 59: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); + case 67: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); if (lookahead == '\\') SKIP(13) - if (lookahead == '^') ADVANCE(470); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '^') ADVANCE(511); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(111) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 60: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(12) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 68: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(11) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(112) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 61: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); + case 69: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(15) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(113) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 70: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(401); if (lookahead == '\\') SKIP(14) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(91) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(114) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 62: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(15) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 71: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(12) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(115) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 72: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(54) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(116) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 63: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(521); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 73: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(50) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(117) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 64: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(520); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); + case 74: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(561); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 65: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); + case 75: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 66: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); + case 76: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 67: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); + case 77: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 68: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); + case 78: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 69: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(16) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 79: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(56) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(119) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 70: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(519); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(8) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 80: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(560); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(9) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(555); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(120) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); + END_STATE(); + case 81: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(10) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '^') ADVANCE(511); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(565); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(96) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 71: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(521); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 82: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(47) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (lookahead == 'G' || + lookahead == 'I' || + lookahead == 'N' || + lookahead == 'Q' || + lookahead == 'R' || + lookahead == 'Z') ADVANCE(555); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); + END_STATE(); + case 83: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(52) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 72: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(521); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(50) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 84: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(53) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 73: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(17) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 85: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(55) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(121) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 74: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 86: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(10) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 75: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 87: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(10) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 76: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 88: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(10) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 77: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(19) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 89: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(16) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(123) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 78: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(50) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 90: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(47) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 79: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(50) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 91: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(47) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 80: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(50) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 92: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(47) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 81: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(51) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 93: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(49) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(125) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 82: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(520); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 94: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(52) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 95: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(52) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(565); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 96: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(52) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 97: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(59) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(127) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 98: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(53) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 99: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(53) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(565); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 100: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(53) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 101: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(57) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(129) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 102: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(561); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(51) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 83: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(6) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 103: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(7) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(130) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 84: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 104: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(51) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 85: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 105: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(51) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 86: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 106: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(51) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 87: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); + case 107: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(4) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(131) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 88: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(18) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 108: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(58) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(105) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(133) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 89: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); + case 109: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(6) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(134) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 110: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(48) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(135) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 111: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); if (lookahead == '\\') SKIP(13) - if (lookahead == '^') ADVANCE(470); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '^') ADVANCE(511); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(111) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 90: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(12) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 112: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(11) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(112) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 91: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(363); + case 113: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(15) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(113) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 114: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(401); if (lookahead == '\\') SKIP(14) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(91) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(114) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 92: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(15) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 115: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(12) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(115) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 116: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(54) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(116) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 93: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(11) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 117: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(50) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(117) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 94: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); + case 118: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(5) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(118) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 95: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(16) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 119: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(56) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(119) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 96: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(8) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 120: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(9) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(96) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(120) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 97: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(17) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 121: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(55) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(121) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 98: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(9) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 122: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(10) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(122) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 99: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(19) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 123: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(16) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(123) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 100: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(50) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 124: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(47) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(124) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 101: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(51) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 125: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(49) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(125) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 102: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(6) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 126: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(52) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '>' || + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(126) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 103: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); + case 127: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(59) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(127) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 128: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(53) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(128) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 129: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(57) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(129) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 130: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(7) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(130) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 131: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(4) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(131) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 104: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(10) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '~') ADVANCE(459); + case 132: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(51) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 105: - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(18) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '~') ADVANCE(459); + case 133: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(58) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || lookahead == '>' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(105) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(133) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 106: - if (lookahead == '"') ADVANCE(427); + case 134: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(502); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(6) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(134) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 107: - if (lookahead == '"') ADVANCE(434); + case 135: + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(503); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(48) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '*' || + lookahead == '>' || + lookahead == '^') ADVANCE(511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(135) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 108: - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(412); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(345); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '[') ADVANCE(186); - if (lookahead == '\\') SKIP(25) - if (lookahead == '^') ADVANCE(414); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 136: + if (lookahead == '"') ADVANCE(465); + END_STATE(); + case 137: + if (lookahead == '"') ADVANCE(472); + END_STATE(); + case 138: + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(383); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '[') ADVANCE(216); + if (lookahead == '\\') SKIP(22) + if (lookahead == '^') ADVANCE(452); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == '+' || - lookahead == '-') ADVANCE(274); + lookahead == '-') ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(108) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(138) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 109: - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '\\') ADVANCE(48); + case 139: + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '\\') ADVANCE(45); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(109) + lookahead == 65279) SKIP(139) END_STATE(); - case 110: - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(423); - if (lookahead == '(') ADVANCE(423); - if (lookahead == '/') ADVANCE(423); + case 140: + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '(') ADVANCE(461); + if (lookahead == '/') ADVANCE(461); if (lookahead == '\\') ADVANCE(3); - if (lookahead == '{') ADVANCE(426); + if (lookahead == '{') ADVANCE(464); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(109) + (11 <= lookahead && lookahead <= '\r')) SKIP(139) if (lookahead == '\n' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(423); + lookahead == 65279) ADVANCE(461); if (lookahead != 0 && lookahead != 7 && - lookahead != 8) ADVANCE(423); + lookahead != 8) ADVANCE(461); END_STATE(); - case 111: - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(423); - if (lookahead == '(') ADVANCE(423); - if (lookahead == '/') ADVANCE(423); + case 141: + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '(') ADVANCE(461); + if (lookahead == '/') ADVANCE(461); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(109) + (11 <= lookahead && lookahead <= '\r')) SKIP(139) if (lookahead == '\n' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(423); + lookahead == 65279) ADVANCE(461); if (lookahead != 0 && lookahead != 7 && - lookahead != 8) ADVANCE(423); + lookahead != 8) ADVANCE(461); END_STATE(); - case 112: - if (lookahead == '"') ADVANCE(439); + case 142: + if (lookahead == '"') ADVANCE(477); END_STATE(); - case 113: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(446); - if (lookahead == '-') ADVANCE(449); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(410); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(7) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 143: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(484); + if (lookahead == '-') ADVANCE(487); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(218); + if (lookahead == '<') ADVANCE(448); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(8) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(113) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(143) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 114: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 144: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(20) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 115: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 145: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(20) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 116: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 146: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(20) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); - END_STATE(); - case 117: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); - if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == 'e') ADVANCE(565); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 118: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(23) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 147: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(20) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(118) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 119: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); + case 148: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); if (lookahead == '\\') SKIP(20) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); + if (lookahead == '!' || + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(120) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(148) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 120: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(20) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 149: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(18) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(120) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(149) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 121: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 150: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(24) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 122: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 151: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(24) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 123: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 152: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(24) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 124: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 153: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(24) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 125: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(27) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 154: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(24) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 126: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(31) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 155: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(374); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(399); + if (lookahead == '\\') SKIP(28) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(126) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(155) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 127: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(32) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 156: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(374); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(399); + if (lookahead == '\\') SKIP(29) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(127) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(156) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 128: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(21) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 157: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(17) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(128) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(158) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 129: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 158: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(17) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(158) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); + END_STATE(); + case 159: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(25) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 130: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 160: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(25) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 131: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 161: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(25) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 132: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 162: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(25) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 133: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(28) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 163: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(25) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 134: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(22) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 164: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(19) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(164) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 135: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(38) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 165: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(34) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(135) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 136: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(29) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 166: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(26) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 137: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(29) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 167: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(26) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 138: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(29) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 168: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(26) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 139: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(29) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 169: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(26) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 140: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(337); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(29) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(274); + case 170: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(375); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(26) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(170) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 141: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(33) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 171: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(373); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(30) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(141) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(171) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 142: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(35) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 172: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(373); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(401); + if (lookahead == '\\') SKIP(32) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(172) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 143: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(40) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 173: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(37) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(173) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 144: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(30) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 174: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(27) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(178) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 145: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(30) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 175: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(27) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(178) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 146: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(30) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 176: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(27) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(178) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 147: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(30) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 177: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(27) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(178) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 148: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(30) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 178: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(27) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(178) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 149: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(41) - if (lookahead == '^') ADVANCE(414); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(368); + case 179: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(221); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(38) + if (lookahead == '^') ADVANCE(452); + if (lookahead == '`') ADVANCE(227); + if (lookahead == '{') ADVANCE(406); if (lookahead == '+' || - lookahead == '-') ADVANCE(274); + lookahead == '-') ADVANCE(312); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(149) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(179) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 150: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(26) - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(368); + case 180: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(23) + if (lookahead == '`') ADVANCE(227); + if (lookahead == '{') ADVANCE(406); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(150) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(180) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 151: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(36) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); + case 181: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(33) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(643); END_STATE(); - case 152: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(37) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 182: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(36) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(186) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 153: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(36) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); + case 183: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(33) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 154: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(36) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == '{') ADVANCE(368); + case 184: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(33) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == '{') ADVANCE(406); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(517); + lookahead == 'm') ADVANCE(558); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 155: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(36) - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(368); + case 185: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(33) + if (lookahead == '`') ADVANCE(227); + if (lookahead == '{') ADVANCE(406); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(155) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(185) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 156: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(344); - if (lookahead == '+') ADVANCE(274); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(364); - if (lookahead == '\\') SKIP(37) - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 186: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(382); + if (lookahead == '+') ADVANCE(312); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(402); + if (lookahead == '\\') SKIP(36) + if (lookahead == '`') ADVANCE(227); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(156) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(186) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 157: - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(413); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(344); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(338); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(187); - if (lookahead == '\\') SKIP(24) - if (lookahead == '^') ADVANCE(414); - if (lookahead == '`') ADVANCE(197); - if (lookahead == '|') ADVANCE(353); + case 187: + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(451); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(382); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(217); + if (lookahead == '\\') SKIP(21) + if (lookahead == '^') ADVANCE(452); + if (lookahead == '`') ADVANCE(227); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(157) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(187) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 158: - if (lookahead == '"') ADVANCE(440); + case 188: + if (lookahead == '"') ADVANCE(478); END_STATE(); - case 159: - if (lookahead == '"') ADVANCE(430); - if (lookahead == '#') ADVANCE(423); - if (lookahead == '(') ADVANCE(423); - if (lookahead == '/') ADVANCE(423); + case 189: + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '(') ADVANCE(461); + if (lookahead == '/') ADVANCE(461); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(109) + (11 <= lookahead && lookahead <= '\r')) SKIP(139) if (lookahead == '\n' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(423); + lookahead == 65279) ADVANCE(461); if (lookahead != 0 && lookahead != 7 && - lookahead != 8) ADVANCE(423); + lookahead != 8) ADVANCE(461); END_STATE(); - case 160: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(423); - if (lookahead == '(') ADVANCE(423); - if (lookahead == '/') ADVANCE(423); - if (lookahead == '\\') ADVANCE(432); + case 190: + if (lookahead == '"') ADVANCE(474); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '(') ADVANCE(461); + if (lookahead == '/') ADVANCE(461); + if (lookahead == '\\') ADVANCE(470); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(163) + (11 <= lookahead && lookahead <= '\r')) SKIP(193) if (lookahead == '\n' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(423); + lookahead == 65279) ADVANCE(461); if (lookahead != 0 && lookahead != 7 && - lookahead != 8) ADVANCE(423); + lookahead != 8) ADVANCE(461); END_STATE(); - case 161: - if (lookahead == '"') ADVANCE(433); + case 191: + if (lookahead == '"') ADVANCE(471); END_STATE(); - case 162: - if (lookahead == '"') ADVANCE(435); - if (lookahead == '#') ADVANCE(423); - if (lookahead == '(') ADVANCE(423); - if (lookahead == '/') ADVANCE(423); - if (lookahead == '\\') ADVANCE(432); + case 192: + if (lookahead == '"') ADVANCE(473); + if (lookahead == '#') ADVANCE(461); + if (lookahead == '(') ADVANCE(461); + if (lookahead == '/') ADVANCE(461); + if (lookahead == '\\') ADVANCE(470); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) SKIP(163) + (11 <= lookahead && lookahead <= '\r')) SKIP(193) if (lookahead == '\n' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(423); + lookahead == 65279) ADVANCE(461); if (lookahead != 0 && lookahead != 7 && - lookahead != 8) ADVANCE(423); + lookahead != 8) ADVANCE(461); END_STATE(); - case 163: - if (lookahead == '"') ADVANCE(161); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '\\') ADVANCE(431); + case 193: + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(64); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '\\') ADVANCE(469); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(163) + lookahead == 65279) SKIP(193) END_STATE(); - case 164: - if (lookahead == '#') ADVANCE(53); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '*') ADVANCE(405); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(338); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '[') ADVANCE(187); - if (lookahead == '\\') SKIP(34) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'l') ADVANCE(582); + case 194: + if (lookahead == '#') ADVANCE(61); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '*') ADVANCE(443); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '[') ADVANCE(217); + if (lookahead == '\\') SKIP(31) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'l') ADVANCE(623); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(164) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(194) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 165: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '[') ADVANCE(194); - if (lookahead == '\\') SKIP(45) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '|') ADVANCE(353); + case 195: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(373); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '[') ADVANCE(224); + if (lookahead == '\\') SKIP(42) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(165) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(195) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 166: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(518); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == 'L') ADVANCE(507); - if (lookahead == 'U') ADVANCE(193); - if (lookahead == '\\') SKIP(42) - if (lookahead == 'a') ADVANCE(268); - if (lookahead == 'f') ADVANCE(511); - if (lookahead == 'i') ADVANCE(241); - if (lookahead == 'l') ADVANCE(495); - if (lookahead == 'n') ADVANCE(503); - if (lookahead == 's') ADVANCE(490); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'w') ADVANCE(209); - if (lookahead == 'y') ADVANCE(485); - if (lookahead == '|') ADVANCE(353); + case 196: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(559); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == 'L') ADVANCE(548); + if (lookahead == 'U') ADVANCE(223); + if (lookahead == '\\') SKIP(39) + if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'i') ADVANCE(271); + if (lookahead == 'l') ADVANCE(536); + if (lookahead == 'n') ADVANCE(544); + if (lookahead == 's') ADVANCE(531); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'w') ADVANCE(239); + if (lookahead == 'y') ADVANCE(526); + if (lookahead == '|') ADVANCE(391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(523); + lookahead == 'e') ADVANCE(564); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(515); + lookahead == 'm') ADVANCE(556); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(513); + lookahead == 'Z') ADVANCE(554); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(167) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + lookahead == 65279) SKIP(197) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 167: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '\\') SKIP(42) - if (lookahead == 'a') ADVANCE(268); - if (lookahead == 'i') ADVANCE(241); - if (lookahead == 'w') ADVANCE(209); - if (lookahead == '|') ADVANCE(353); + case 197: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '\\') SKIP(39) + if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'i') ADVANCE(271); + if (lookahead == 'w') ADVANCE(239); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(167) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + lookahead == 65279) SKIP(197) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 168: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '\\') SKIP(47) - if (lookahead == 'a') ADVANCE(268); - if (lookahead == 'i') ADVANCE(241); - if (lookahead == 'w') ADVANCE(209); - if (lookahead == '|') ADVANCE(353); + case 198: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '\\') SKIP(44) + if (lookahead == 'a') ADVANCE(306); + if (lookahead == 'i') ADVANCE(271); + if (lookahead == 'w') ADVANCE(239); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(168) + lookahead == 65279) SKIP(198) END_STATE(); - case 169: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '\\') SKIP(43) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(497); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(500); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(487); - if (lookahead == '|') ADVANCE(353); + case 199: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '\\') SKIP(40) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(541); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(528); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(170) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(200) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 170: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == ')') ADVANCE(346); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(333); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '\\') SKIP(43) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == '|') ADVANCE(353); + case 200: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == ')') ADVANCE(384); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(371); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '\\') SKIP(40) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(170) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(200) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 171: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(357); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '*') ADVANCE(405); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(335); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '[') ADVANCE(194); - if (lookahead == '\\') SKIP(46) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == '|') ADVANCE(353); + case 201: + if (lookahead == '#') ADVANCE(64); + if (lookahead == '&') ADVANCE(395); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '*') ADVANCE(443); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(373); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '[') ADVANCE(224); + if (lookahead == '\\') SKIP(43) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(171) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(201) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 172: - if (lookahead == '#') ADVANCE(54); - if (lookahead == '(') ADVANCE(181); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(338); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '[') ADVANCE(187); - if (lookahead == '\\') SKIP(44) - if (lookahead == '`') ADVANCE(197); + case 202: + if (lookahead == '#') ADVANCE(62); + if (lookahead == '(') ADVANCE(211); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '[') ADVANCE(217); + if (lookahead == '\\') SKIP(41) + if (lookahead == '`') ADVANCE(227); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(172) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(202) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 173: - if (lookahead == '#') ADVANCE(413); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(345); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == ':') ADVANCE(332); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '[') ADVANCE(187); - if (lookahead == '\\') SKIP(39) - if (lookahead == '^') ADVANCE(414); - if (lookahead == '`') ADVANCE(197); + case 203: + if (lookahead == '#') ADVANCE(451); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(383); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == ':') ADVANCE(370); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '[') ADVANCE(217); + if (lookahead == '\\') SKIP(35) + if (lookahead == '^') ADVANCE(452); + if (lookahead == '`') ADVANCE(227); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(173) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(203) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 174: - if (lookahead == '#') ADVANCE(529); - if (lookahead == '(') ADVANCE(532); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '\\') ADVANCE(539); + case 204: + if (lookahead == '#') ADVANCE(570); + if (lookahead == '(') ADVANCE(573); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '\\') ADVANCE(580); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(531); - if (lookahead != 0) ADVANCE(545); + lookahead == 65279) ADVANCE(572); + if (lookahead != 0) ADVANCE(586); END_STATE(); - case 175: - if (lookahead == '\'') ADVANCE(425); - if (lookahead == '\\') ADVANCE(270); + case 205: + if (lookahead == '\'') ADVANCE(463); + if (lookahead == '\\') ADVANCE(308); if (lookahead != 0 && - (lookahead < 7 || '\r' < lookahead)) ADVANCE(175); + (lookahead < 7 || '\r' < lookahead)) ADVANCE(205); END_STATE(); - case 176: - if (lookahead == ')') ADVANCE(550); + case 206: + if (lookahead == ')') ADVANCE(591); END_STATE(); - case 177: - if (lookahead == ')') ADVANCE(444); - if (lookahead == '.') ADVANCE(57); + case 207: + if (lookahead == ')') ADVANCE(482); + if (lookahead == '.') ADVANCE(65); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -20332,23 +21939,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 178: - if (lookahead == ')') ADVANCE(444); - if (lookahead == '.') ADVANCE(183); + case 208: + if (lookahead == ')') ADVANCE(482); + if (lookahead == '.') ADVANCE(213); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); END_STATE(); - case 179: - if (lookahead == ')') ADVANCE(444); + case 209: + if (lookahead == ')') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); END_STATE(); - case 180: - if (lookahead == ')') ADVANCE(444); + case 210: + if (lookahead == ')') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -20356,16 +21963,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 181: - if (lookahead == '*') ADVANCE(546); + case 211: + if (lookahead == '*') ADVANCE(587); END_STATE(); - case 182: - if (lookahead == '.') ADVANCE(177); - if (lookahead == '?') ADVANCE(179); + case 212: + if (lookahead == '.') ADVANCE(207); + if (lookahead == '?') ADVANCE(209); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(182); + lookahead == ' ') ADVANCE(212); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -20373,1396 +21980,1420 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); - END_STATE(); - case 183: - if (lookahead == '.') ADVANCE(179); - END_STATE(); - case 184: - if (lookahead == '.') ADVANCE(404); - END_STATE(); - case 185: - if (lookahead == '/') ADVANCE(552); - END_STATE(); - case 186: - if (lookahead == '<') ADVANCE(330); - END_STATE(); - case 187: - if (lookahead == '<') ADVANCE(330); - if (lookahead == ']') ADVANCE(411); - END_STATE(); - case 188: - if (lookahead == '>') ADVANCE(381); - END_STATE(); - case 189: - if (lookahead == '>') ADVANCE(385); - END_STATE(); - case 190: - if (lookahead == '>') ADVANCE(385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); - END_STATE(); - case 191: - if (lookahead == '?') ADVANCE(350); - END_STATE(); - case 192: - if (lookahead == '@') ADVANCE(376); - END_STATE(); - case 193: - if (lookahead == 'L') ADVANCE(509); - END_STATE(); - case 194: - if (lookahead == ']') ADVANCE(411); - END_STATE(); - case 195: - if (lookahead == ']') ADVANCE(367); - if (lookahead == '}') ADVANCE(372); - END_STATE(); - case 196: - if (lookahead == ']') ADVANCE(331); - END_STATE(); - case 197: - if (lookahead == '`') ADVANCE(291); - END_STATE(); - case 198: - if (lookahead == '`') ADVANCE(572); - END_STATE(); - case 199: - if (lookahead == '`') ADVANCE(198); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(199); - END_STATE(); - case 200: - if (lookahead == 'a') ADVANCE(202); - END_STATE(); - case 201: - if (lookahead == 'a') ADVANCE(267); - END_STATE(); - case 202: - if (lookahead == 'd') ADVANCE(610); - END_STATE(); - case 203: - if (lookahead == 'd') ADVANCE(211); - END_STATE(); - case 204: - if (lookahead == 'e') ADVANCE(52); - END_STATE(); - case 205: - if (lookahead == 'e') ADVANCE(616); - END_STATE(); - case 206: - if (lookahead == 'e') ADVANCE(242); - END_STATE(); - case 207: - if (lookahead == 'f') ADVANCE(614); - END_STATE(); - case 208: - if (lookahead == 'f') ADVANCE(615); - END_STATE(); - case 209: - if (lookahead == 'h') ADVANCE(206); - END_STATE(); - case 210: - if (lookahead == 'i') ADVANCE(214); - if (lookahead == 'o') ADVANCE(200); - END_STATE(); - case 211: - if (lookahead == 'i') ADVANCE(208); - END_STATE(); - case 212: - if (lookahead == 'l') ADVANCE(269); - if (lookahead == 'n') ADVANCE(203); + lookahead == '~') ADVANCE(210); END_STATE(); case 213: - if (lookahead == 'n') SKIP(58) + if (lookahead == '.') ADVANCE(209); END_STATE(); case 214: - if (lookahead == 'n') ADVANCE(204); + if (lookahead == '.') ADVANCE(442); END_STATE(); case 215: - if (lookahead == 'n') ADVANCE(603); + if (lookahead == '/') ADVANCE(593); END_STATE(); case 216: - if (lookahead == 'n') SKIP(113) + if (lookahead == '<') ADVANCE(368); END_STATE(); case 217: - if (lookahead == 'n') SKIP(96) + if (lookahead == '<') ADVANCE(368); + if (lookahead == ']') ADVANCE(449); END_STATE(); case 218: - if (lookahead == 'n') SKIP(120) + if (lookahead == '>') ADVANCE(423); END_STATE(); case 219: - if (lookahead == 'n') SKIP(128) + if (lookahead == '>') ADVANCE(427); END_STATE(); case 220: - if (lookahead == 'n') SKIP(134) + if (lookahead == '>') ADVANCE(427); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); case 221: - if (lookahead == 'n') SKIP(118) + if (lookahead == '?') ADVANCE(388); END_STATE(); case 222: - if (lookahead == 'n') SKIP(157) + if (lookahead == '@') ADVANCE(409); END_STATE(); case 223: - if (lookahead == 'n') SKIP(108) + if (lookahead == 'L') ADVANCE(550); END_STATE(); case 224: - if (lookahead == 'n') SKIP(150) + if (lookahead == ']') ADVANCE(449); END_STATE(); case 225: - if (lookahead == 'n') SKIP(125) + if (lookahead == ']') ADVANCE(405); + if (lookahead == '}') ADVANCE(420); END_STATE(); case 226: - if (lookahead == 'n') SKIP(133) + if (lookahead == ']') ADVANCE(369); END_STATE(); case 227: - if (lookahead == 'n') SKIP(140) + if (lookahead == '`') ADVANCE(329); END_STATE(); case 228: - if (lookahead == 'n') SKIP(148) + if (lookahead == '`') ADVANCE(613); END_STATE(); case 229: - if (lookahead == 'n') SKIP(126) + if (lookahead == '`') ADVANCE(228); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(229); END_STATE(); case 230: - if (lookahead == 'n') SKIP(127) + if (lookahead == 'a') ADVANCE(232); END_STATE(); case 231: - if (lookahead == 'n') SKIP(141) + if (lookahead == 'a') ADVANCE(305); END_STATE(); case 232: - if (lookahead == 'n') SKIP(164) + if (lookahead == 'd') ADVANCE(651); END_STATE(); case 233: - if (lookahead == 'n') SKIP(142) + if (lookahead == 'd') ADVANCE(241); END_STATE(); case 234: - if (lookahead == 'n') SKIP(155) + if (lookahead == 'e') ADVANCE(60); END_STATE(); case 235: - if (lookahead == 'n') SKIP(156) + if (lookahead == 'e') ADVANCE(657); END_STATE(); case 236: - if (lookahead == 'n') SKIP(135) + if (lookahead == 'e') ADVANCE(272); END_STATE(); case 237: - if (lookahead == 'n') SKIP(173) + if (lookahead == 'f') ADVANCE(655); END_STATE(); case 238: - if (lookahead == 'n') SKIP(143) + if (lookahead == 'f') ADVANCE(656); END_STATE(); case 239: - if (lookahead == 'n') SKIP(149) + if (lookahead == 'h') ADVANCE(236); END_STATE(); case 240: - if (lookahead == 'n') SKIP(167) + if (lookahead == 'i') ADVANCE(244); + if (lookahead == 'o') ADVANCE(230); END_STATE(); case 241: - if (lookahead == 'n') ADVANCE(383); + if (lookahead == 'i') ADVANCE(238); END_STATE(); case 242: - if (lookahead == 'n') ADVANCE(400); + if (lookahead == 'l') ADVANCE(307); + if (lookahead == 'n') ADVANCE(233); END_STATE(); case 243: - if (lookahead == 'n') SKIP(170) + if (lookahead == 'n') SKIP(66) END_STATE(); case 244: - if (lookahead == 'n') SKIP(172) + if (lookahead == 'n') ADVANCE(234); END_STATE(); case 245: - if (lookahead == 'n') SKIP(165) + if (lookahead == 'n') ADVANCE(644); END_STATE(); case 246: - if (lookahead == 'n') SKIP(171) + if (lookahead == 'n') SKIP(143) END_STATE(); case 247: - if (lookahead == 'n') SKIP(168) + if (lookahead == 'n') SKIP(120) END_STATE(); case 248: - if (lookahead == 'n') SKIP(109) + if (lookahead == 'n') SKIP(158) END_STATE(); case 249: - if (lookahead == 'n') SKIP(1) + if (lookahead == 'n') SKIP(149) END_STATE(); case 250: - if (lookahead == 'n') SKIP(103) + if (lookahead == 'n') SKIP(164) END_STATE(); case 251: - if (lookahead == 'n') SKIP(94) + if (lookahead == 'n') SKIP(148) END_STATE(); case 252: - if (lookahead == 'n') SKIP(102) + if (lookahead == 'n') SKIP(187) END_STATE(); case 253: - if (lookahead == 'n') SKIP(90) + if (lookahead == 'n') SKIP(138) END_STATE(); case 254: - if (lookahead == 'n') SKIP(89) + if (lookahead == 'n') SKIP(180) END_STATE(); case 255: - if (lookahead == 'n') SKIP(91) + if (lookahead == 'n') SKIP(154) END_STATE(); case 256: - if (lookahead == 'n') SKIP(100) + if (lookahead == 'n') SKIP(163) END_STATE(); case 257: - if (lookahead == 'n') SKIP(104) + if (lookahead == 'n') SKIP(170) END_STATE(); case 258: - if (lookahead == 'n') SKIP(98) + if (lookahead == 'n') SKIP(178) END_STATE(); case 259: - if (lookahead == 'n') SKIP(93) + if (lookahead == 'n') SKIP(155) END_STATE(); case 260: - if (lookahead == 'n') SKIP(101) + if (lookahead == 'n') SKIP(156) END_STATE(); case 261: - if (lookahead == 'n') SKIP(99) + if (lookahead == 'n') SKIP(171) END_STATE(); case 262: - if (lookahead == 'n') SKIP(92) + if (lookahead == 'n') SKIP(194) END_STATE(); case 263: - if (lookahead == 'n') SKIP(95) + if (lookahead == 'n') SKIP(172) END_STATE(); case 264: - if (lookahead == 'n') SKIP(97) + if (lookahead == 'n') SKIP(185) END_STATE(); case 265: - if (lookahead == 'n') SKIP(105) + if (lookahead == 'n') SKIP(165) END_STATE(); case 266: - if (lookahead == 'o') ADVANCE(271); + if (lookahead == 'n') SKIP(203) END_STATE(); case 267: - if (lookahead == 'r') ADVANCE(215); + if (lookahead == 'n') SKIP(186) END_STATE(); case 268: - if (lookahead == 's') ADVANCE(341); + if (lookahead == 'n') SKIP(173) END_STATE(); case 269: - if (lookahead == 's') ADVANCE(205); + if (lookahead == 'n') SKIP(179) END_STATE(); case 270: - if (lookahead == 'u') ADVANCE(290); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == 'a' || - lookahead == 'b' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + if (lookahead == 'n') SKIP(197) END_STATE(); case 271: - if (lookahead == 'w') ADVANCE(201); + if (lookahead == 'n') ADVANCE(425); END_STATE(); case 272: - if (lookahead == '0' || - lookahead == '1') ADVANCE(479); + if (lookahead == 'n') ADVANCE(438); END_STATE(); case 273: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(480); + if (lookahead == 'n') SKIP(200) END_STATE(); case 274: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == 'n') SKIP(202) END_STATE(); case 275: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(422); + if (lookahead == 'n') SKIP(195) END_STATE(); case 276: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(175); + if (lookahead == 'n') SKIP(201) END_STATE(); case 277: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (lookahead == 'n') SKIP(198) END_STATE(); case 278: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(276); + if (lookahead == 'n') SKIP(139) END_STATE(); case 279: + if (lookahead == 'n') SKIP(1) + END_STATE(); + case 280: + if (lookahead == 'n') SKIP(131) + END_STATE(); + case 281: + if (lookahead == 'n') SKIP(118) + END_STATE(); + case 282: + if (lookahead == 'n') SKIP(130) + END_STATE(); + case 283: + if (lookahead == 'n') SKIP(112) + END_STATE(); + case 284: + if (lookahead == 'n') SKIP(115) + END_STATE(); + case 285: + if (lookahead == 'n') SKIP(111) + END_STATE(); + case 286: + if (lookahead == 'n') SKIP(124) + END_STATE(); + case 287: + if (lookahead == 'n') SKIP(122) + END_STATE(); + case 288: + if (lookahead == 'n') SKIP(134) + END_STATE(); + case 289: + if (lookahead == 'n') SKIP(114) + END_STATE(); + case 290: + if (lookahead == 'n') SKIP(125) + END_STATE(); + case 291: + if (lookahead == 'n') SKIP(123) + END_STATE(); + case 292: + if (lookahead == 'n') SKIP(135) + END_STATE(); + case 293: + if (lookahead == 'n') SKIP(113) + END_STATE(); + case 294: + if (lookahead == 'n') SKIP(117) + END_STATE(); + case 295: + if (lookahead == 'n') SKIP(132) + END_STATE(); + case 296: + if (lookahead == 'n') SKIP(126) + END_STATE(); + case 297: + if (lookahead == 'n') SKIP(128) + END_STATE(); + case 298: + if (lookahead == 'n') SKIP(116) + END_STATE(); + case 299: + if (lookahead == 'n') SKIP(121) + END_STATE(); + case 300: + if (lookahead == 'n') SKIP(119) + END_STATE(); + case 301: + if (lookahead == 'n') SKIP(129) + END_STATE(); + case 302: + if (lookahead == 'n') SKIP(133) + END_STATE(); + case 303: + if (lookahead == 'n') SKIP(127) + END_STATE(); + case 304: + if (lookahead == 'o') ADVANCE(309); + END_STATE(); + case 305: + if (lookahead == 'r') ADVANCE(245); + END_STATE(); + case 306: + if (lookahead == 's') ADVANCE(379); + END_STATE(); + case 307: + if (lookahead == 's') ADVANCE(235); + END_STATE(); + case 308: + if (lookahead == 'u') ADVANCE(328); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + END_STATE(); + case 309: + if (lookahead == 'w') ADVANCE(231); + END_STATE(); + case 310: + if (lookahead == '0' || + lookahead == '1') ADVANCE(520); + END_STATE(); + case 311: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(521); + END_STATE(); + case 312: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); + END_STATE(); + case 313: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); + END_STATE(); + case 314: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); + END_STATE(); + case 315: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(313); + END_STATE(); + case 316: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(314); + END_STATE(); + case 317: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(522); END_STATE(); - case 280: + case 318: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(420); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(458); END_STATE(); - case 281: + case 319: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(421); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(459); END_STATE(); - case 282: + case 320: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(205); END_STATE(); - case 283: + case 321: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(280); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); - case 284: + case 322: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(281); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319); END_STATE(); - case 285: + case 323: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(320); END_STATE(); - case 286: + case 324: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(321); END_STATE(); - case 287: + case 325: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(322); END_STATE(); - case 288: + case 326: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(323); END_STATE(); - case 289: + case 327: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(286); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(324); END_STATE(); - case 290: + case 328: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); END_STATE(); - case 291: + case 329: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != '`') ADVANCE(199); + lookahead != '`') ADVANCE(229); END_STATE(); - case 292: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(319) - if (lookahead == 'n') SKIP(315) + case 330: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(357) + if (lookahead == 'n') SKIP(353) END_STATE(); - case 293: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(323) - if (lookahead == 'n') SKIP(311) + case 331: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(361) + if (lookahead == 'n') SKIP(349) END_STATE(); - case 294: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(320) - if (lookahead == 'n') SKIP(316) + case 332: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(358) + if (lookahead == 'n') SKIP(354) END_STATE(); - case 295: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(324) - if (lookahead == 'n') SKIP(310) + case 333: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(362) + if (lookahead == 'n') SKIP(348) END_STATE(); - case 296: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(321) - if (lookahead == 'n') SKIP(318) + case 334: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(359) + if (lookahead == 'n') SKIP(356) END_STATE(); - case 297: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(322) - if (lookahead == 'n') SKIP(317) + case 335: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(360) + if (lookahead == 'n') SKIP(355) END_STATE(); - case 298: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(325) - if (lookahead == 'n') SKIP(314) + case 336: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(363) + if (lookahead == 'n') SKIP(352) END_STATE(); - case 299: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(326) - if (lookahead == 'n') SKIP(313) + case 337: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(364) + if (lookahead == 'n') SKIP(351) END_STATE(); - case 300: - if (eof) ADVANCE(328); - if (lookahead == '\r') SKIP(327) - if (lookahead == 'n') SKIP(312) + case 338: + if (eof) ADVANCE(366); + if (lookahead == '\r') SKIP(365) + if (lookahead == 'n') SKIP(350) END_STATE(); - case 301: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(428); - if (lookahead == '#') ADVANCE(412); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(417); - if (lookahead == '>') ADVANCE(396); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(361); + case 339: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(466); + if (lookahead == '#') ADVANCE(450); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(454); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '>') ADVANCE(434); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(501); + if (lookahead == '[') ADVANCE(399); if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(365); - if (lookahead == '^') ADVANCE(415); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'a') ADVANCE(596); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'i') ADVANCE(591); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'w') ADVANCE(587); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(355); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + if (lookahead == ']') ADVANCE(403); + if (lookahead == '^') ADVANCE(453); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'i') ADVANCE(632); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'w') ADVANCE(628); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(301) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(339) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 302: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(295) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '^') ADVANCE(470); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 340: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(399); + if (lookahead == '\\') SKIP(333) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '^') ADVANCE(511); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(310) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(348) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 303: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(293) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 341: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(331) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(349) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 304: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(293) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 342: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(331) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(349) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 305: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(293) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'f') ADVANCE(512); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 343: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(331) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(349) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 306: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(293) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 344: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(331) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(349) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 307: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(300) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 345: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(338) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(312) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(350) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 308: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(521); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == 'L') ADVANCE(508); - if (lookahead == 'M') ADVANCE(517); - if (lookahead == 'U') ADVANCE(578); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(299) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'm') ADVANCE(516); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 's') ADVANCE(491); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(486); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 346: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(562); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == 'L') ADVANCE(549); + if (lookahead == 'M') ADVANCE(558); + if (lookahead == 'U') ADVANCE(619); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(337) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'm') ADVANCE(557); + if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 's') ADVANCE(532); + if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'y') ADVANCE(527); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(524); + lookahead == 'e') ADVANCE(565); if (lookahead == 'G' || lookahead == 'I' || lookahead == 'N' || lookahead == 'Q' || lookahead == 'R' || - lookahead == 'Z') ADVANCE(514); + lookahead == 'Z') ADVANCE(555); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(313) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(351) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 309: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(402); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(394); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(298) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 347: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(440); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(432); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(336) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(314) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(352) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 310: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(407); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(447); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(409); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(295) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '^') ADVANCE(470); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 348: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(485); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(447); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(399); + if (lookahead == '\\') SKIP(333) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '^') ADVANCE(511); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(310) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(348) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 311: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(293) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 349: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(331) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(349) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 312: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(391); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(300) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(356); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 350: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(415); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(338) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(394); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(312) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(350) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 313: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(393); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(299) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 351: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(417); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(337) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(313) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(351) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 314: - if (eof) ADVANCE(328); - if (lookahead == '!') ADVANCE(461); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(474); - if (lookahead == '%') ADVANCE(456); - if (lookahead == '&') ADVANCE(358); - if (lookahead == '\'') ADVANCE(464); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(445); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(448); - if (lookahead == '.') ADVANCE(392); - if (lookahead == '/') ADVANCE(466); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(334); - if (lookahead == '<') ADVANCE(465); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(468); - if (lookahead == '?') ADVANCE(349); - if (lookahead == '@') ADVANCE(463); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(298) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(469); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 352: + if (eof) ADVANCE(366); + if (lookahead == '!') ADVANCE(499); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(515); + if (lookahead == '%') ADVANCE(494); + if (lookahead == '&') ADVANCE(396); + if (lookahead == '\'') ADVANCE(505); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(483); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(486); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '/') ADVANCE(507); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(372); + if (lookahead == '<') ADVANCE(506); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(509); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '@') ADVANCE(504); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(336) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(510); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '*' || - lookahead == '^') ADVANCE(470); + lookahead == '^') ADVANCE(511); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(314) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(352) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(643); END_STATE(); - case 315: - if (eof) ADVANCE(328); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(446); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(449); - if (lookahead == '.') ADVANCE(184); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(338); - if (lookahead == ';') ADVANCE(360); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(292) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(354); - if (lookahead == '}') ADVANCE(370); - if (lookahead == '~') ADVANCE(459); + case 353: + if (eof) ADVANCE(366); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(61); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(484); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(487); + if (lookahead == '.') ADVANCE(214); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(376); + if (lookahead == ';') ADVANCE(398); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(330) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(418); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(315) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(353) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 316: - if (eof) ADVANCE(328); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(446); - if (lookahead == '-') ADVANCE(449); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(338); - if (lookahead == '<') ADVANCE(410); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(196); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(294) - if (lookahead == ']') ADVANCE(365); - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '|') ADVANCE(195); - if (lookahead == '~') ADVANCE(459); + case 354: + if (eof) ADVANCE(366); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(484); + if (lookahead == '-') ADVANCE(487); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(376); + if (lookahead == '<') ADVANCE(448); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(226); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(399); + if (lookahead == '\\') SKIP(332) + if (lookahead == ']') ADVANCE(403); + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '|') ADVANCE(225); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(316) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(354) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 317: - if (eof) ADVANCE(328); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '%') ADVANCE(455); - if (lookahead == '&') ADVANCE(359); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == '+') ADVANCE(446); - if (lookahead == '-') ADVANCE(450); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(297) - if (lookahead == '`') ADVANCE(197); - if (lookahead == 'd') ADVANCE(594); - if (lookahead == 'l') ADVANCE(582); - if (lookahead == 'm') ADVANCE(579); - if (lookahead == 'r') ADVANCE(586); - if (lookahead == 'u') ADVANCE(597); - if (lookahead == 'y') ADVANCE(589); - if (lookahead == '{') ADVANCE(369); - if (lookahead == '~') ADVANCE(459); + case 355: + if (eof) ADVANCE(366); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(63); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '%') ADVANCE(493); + if (lookahead == '&') ADVANCE(397); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == '+') ADVANCE(484); + if (lookahead == '-') ADVANCE(488); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(335) + if (lookahead == '`') ADVANCE(227); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'u') ADVANCE(638); + if (lookahead == 'y') ADVANCE(630); + if (lookahead == '{') ADVANCE(407); + if (lookahead == '~') ADVANCE(497); if (lookahead == '!' || - lookahead == '?') ADVANCE(462); + lookahead == '?') ADVANCE(500); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(317) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(355) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 318: - if (eof) ADVANCE(328); - if (lookahead == '"') ADVANCE(429); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '$') ADVANCE(106); - if (lookahead == '\'') ADVANCE(175); - if (lookahead == '(') ADVANCE(343); - if (lookahead == ')') ADVANCE(346); - if (lookahead == '*') ADVANCE(405); - if (lookahead == '+') ADVANCE(274); - if (lookahead == ',') ADVANCE(347); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(390); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '0') ADVANCE(476); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(408); - if (lookahead == '=') ADVANCE(329); - if (lookahead == '>') ADVANCE(395); - if (lookahead == '?') ADVANCE(348); - if (lookahead == '@') ADVANCE(107); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(296) - if (lookahead == '`') ADVANCE(197); - if (lookahead == '{') ADVANCE(368); - if (lookahead == '|') ADVANCE(353); + case 356: + if (eof) ADVANCE(366); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '#') ADVANCE(62); + if (lookahead == '$') ADVANCE(136); + if (lookahead == '\'') ADVANCE(205); + if (lookahead == '(') ADVANCE(381); + if (lookahead == ')') ADVANCE(384); + if (lookahead == '*') ADVANCE(443); + if (lookahead == '+') ADVANCE(312); + if (lookahead == ',') ADVANCE(385); + if (lookahead == '-') ADVANCE(220); + if (lookahead == '.') ADVANCE(414); + if (lookahead == '/') ADVANCE(215); + if (lookahead == '0') ADVANCE(517); + if (lookahead == ':') ADVANCE(221); + if (lookahead == '<') ADVANCE(446); + if (lookahead == '=') ADVANCE(367); + if (lookahead == '>') ADVANCE(433); + if (lookahead == '?') ADVANCE(386); + if (lookahead == '@') ADVANCE(137); + if (lookahead == '[') ADVANCE(400); + if (lookahead == '\\') SKIP(334) + if (lookahead == '`') ADVANCE(227); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(391); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(318) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(477); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(602); + lookahead == 65279) SKIP(356) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(518); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(643); END_STATE(); - case 319: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(315) + case 357: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(353) END_STATE(); - case 320: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(316) + case 358: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(354) END_STATE(); - case 321: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(318) + case 359: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(356) END_STATE(); - case 322: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(317) + case 360: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(355) END_STATE(); - case 323: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(311) + case 361: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(349) END_STATE(); - case 324: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(310) + case 362: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(348) END_STATE(); - case 325: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(314) + case 363: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(352) END_STATE(); - case 326: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(313) + case 364: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(351) END_STATE(); - case 327: - if (eof) ADVANCE(328); - if (lookahead == 'n') SKIP(312) + case 365: + if (eof) ADVANCE(366); + if (lookahead == 'n') SKIP(350) END_STATE(); - case 328: + case 366: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 329: + case 367: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 330: + case 368: ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); - case 331: + case 369: ACCEPT_TOKEN(anon_sym_GT_RBRACK); END_STATE(); - case 332: + case 370: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 333: + case 371: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(352); + if (lookahead == ':') ADVANCE(390); END_STATE(); - case 334: + case 372: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(352); - if (lookahead == '=') ADVANCE(473); - if (lookahead == '>') ADVANCE(381); - if (lookahead == '?') ADVANCE(351); + if (lookahead == ':') ADVANCE(390); + if (lookahead == '=') ADVANCE(514); + if (lookahead == '>') ADVANCE(423); + if (lookahead == '?') ADVANCE(389); END_STATE(); - case 335: + case 373: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(352); - if (lookahead == '>') ADVANCE(381); + if (lookahead == ':') ADVANCE(390); + if (lookahead == '>') ADVANCE(423); END_STATE(); - case 336: + case 374: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(352); - if (lookahead == '>') ADVANCE(381); - if (lookahead == '?') ADVANCE(350); + if (lookahead == ':') ADVANCE(390); + if (lookahead == '>') ADVANCE(423); + if (lookahead == '?') ADVANCE(388); END_STATE(); - case 337: + case 375: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(352); - if (lookahead == '?') ADVANCE(350); + if (lookahead == ':') ADVANCE(390); + if (lookahead == '?') ADVANCE(388); END_STATE(); - case 338: + case 376: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(381); + if (lookahead == '>') ADVANCE(423); END_STATE(); - case 339: + case 377: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '!') ADVANCE(340); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(378); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 340: + case 378: ACCEPT_TOKEN(anon_sym_let_BANG); END_STATE(); - case 341: + case 379: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 342: + case 380: ACCEPT_TOKEN(anon_sym_as); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 343: + case 381: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(547); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '?') ADVANCE(179); - if (lookahead == '|') ADVANCE(442); + if (lookahead == ')') ADVANCE(479); + if (lookahead == '*') ADVANCE(588); + if (lookahead == '.') ADVANCE(207); + if (lookahead == '?') ADVANCE(209); + if (lookahead == '|') ADVANCE(480); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(182); + lookahead == ' ') ADVANCE(212); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('+' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 344: + case 382: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(546); + if (lookahead == ')') ADVANCE(479); + if (lookahead == '*') ADVANCE(587); END_STATE(); - case 345: + case 383: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '*') ADVANCE(546); + if (lookahead == '*') ADVANCE(587); END_STATE(); - case 346: + case 384: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 347: + case 385: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 348: + case 386: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 349: + case 387: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '<') ADVANCE(460); + if (lookahead == '<') ADVANCE(498); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -21770,451 +23401,480 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('=' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 350: + case 388: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 351: + case 389: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '>') ADVANCE(382); + if (lookahead == '>') ADVANCE(424); END_STATE(); - case 352: + case 390: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 353: + case 391: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 354: + case 392: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') ADVANCE(443); + if (lookahead == ')') ADVANCE(481); END_STATE(); - case 355: + case 393: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') ADVANCE(443); - if (lookahead == ']') ADVANCE(367); - if (lookahead == '|') ADVANCE(471); - if (lookahead == '}') ADVANCE(372); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ']') ADVANCE(405); + if (lookahead == '|') ADVANCE(512); + if (lookahead == '}') ADVANCE(420); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 356: + case 394: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(471); + if (lookahead == '|') ADVANCE(512); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 357: + case 395: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 358: + case 396: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(458); + if (lookahead == '&') ADVANCE(496); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 359: + case 397: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(457); + if (lookahead == '&') ADVANCE(495); END_STATE(); - case 360: + case 398: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 361: + case 399: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(330); - if (lookahead == ']') ADVANCE(411); - if (lookahead == '|') ADVANCE(366); + if (lookahead == '<') ADVANCE(368); + if (lookahead == ']') ADVANCE(449); + if (lookahead == '|') ADVANCE(404); END_STATE(); - case 362: + case 400: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(330); - if (lookahead == '|') ADVANCE(366); + if (lookahead == '<') ADVANCE(368); + if (lookahead == '|') ADVANCE(404); END_STATE(); - case 363: + case 401: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(411); - if (lookahead == '|') ADVANCE(366); + if (lookahead == ']') ADVANCE(449); + if (lookahead == '|') ADVANCE(404); END_STATE(); - case 364: + case 402: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '|') ADVANCE(366); + if (lookahead == '|') ADVANCE(404); END_STATE(); - case 365: + case 403: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 366: + case 404: ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); END_STATE(); - case 367: + case 405: ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); END_STATE(); - case 368: + case 406: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 369: + case 407: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(371); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_return_BANG); + if (lookahead == '|') ADVANCE(419); END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_yield_BANG); - END_STATE(); - case 375: + case 408: ACCEPT_TOKEN(anon_sym_LT_AT); - if (lookahead == '@') ADVANCE(379); + if (lookahead == '@') ADVANCE(412); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 376: + case 409: ACCEPT_TOKEN(anon_sym_LT_AT); - if (lookahead == '@') ADVANCE(378); + if (lookahead == '@') ADVANCE(411); END_STATE(); - case 377: + case 410: ACCEPT_TOKEN(anon_sym_AT_GT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 378: + case 411: ACCEPT_TOKEN(anon_sym_LT_AT_AT); END_STATE(); - case 379: + case 412: ACCEPT_TOKEN(anon_sym_LT_AT_AT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 380: + case 413: ACCEPT_TOKEN(anon_sym_AT_AT_GT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 381: + case 414: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(441); + if (lookahead == '[') ADVANCE(431); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(437); + if (lookahead == '[') ADVANCE(431); + END_STATE(); + case 417: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '[') ADVANCE(431); + END_STATE(); + case 418: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + END_STATE(); + case 420: + ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_return_BANG); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_yield_BANG); + END_STATE(); + case 423: ACCEPT_TOKEN(anon_sym_COLON_GT); END_STATE(); - case 382: + case 424: ACCEPT_TOKEN(anon_sym_COLON_QMARK_GT); END_STATE(); - case 383: + case 425: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 384: + case 426: ACCEPT_TOKEN(anon_sym_in); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 385: + case 427: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 386: + case 428: ACCEPT_TOKEN(anon_sym_DASH_GT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 387: + case 429: ACCEPT_TOKEN(anon_sym_match_BANG); END_STATE(); - case 388: + case 430: ACCEPT_TOKEN(anon_sym_LT_DASH); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 389: + case 431: ACCEPT_TOKEN(anon_sym_DOT_LBRACK); END_STATE(); - case 390: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 391: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(403); - if (lookahead == '[') ADVANCE(389); - END_STATE(); - case 392: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(399); - if (lookahead == '[') ADVANCE(389); - END_STATE(); - case 393: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '[') ADVANCE(389); - END_STATE(); - case 394: + case 432: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 395: + case 433: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 396: + case 434: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 397: + case 435: ACCEPT_TOKEN(anon_sym_use_BANG); END_STATE(); - case 398: + case 436: ACCEPT_TOKEN(anon_sym_do_BANG); END_STATE(); - case 399: + case 437: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 400: + case 438: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 401: + case 439: ACCEPT_TOKEN(anon_sym_when); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 402: + case 440: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 403: + case 441: ACCEPT_TOKEN(anon_sym_DOT_DOT2); END_STATE(); - case 404: + case 442: ACCEPT_TOKEN(anon_sym_DOT_DOT3); END_STATE(); - case 405: + case 443: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 406: + case 444: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == ')') ADVANCE(550); + if (lookahead == ')') ADVANCE(591); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 407: + case 445: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 408: + case 446: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 409: + case 447: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '@') ADVANCE(375); + if (lookahead == '-') ADVANCE(430); + if (lookahead == '@') ADVANCE(408); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + lookahead == '.' || + lookahead == '/' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 410: + case 448: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '@') ADVANCE(376); + if (lookahead == '@') ADVANCE(409); END_STATE(); - case 411: + case 449: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 412: + case 450: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'i') ADVANCE(207); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'i') ADVANCE(237); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); END_STATE(); - case 413: + case 451: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == ' ') ADVANCE(613); - if (lookahead == 'l') ADVANCE(210); - if (lookahead == 'n') ADVANCE(266); - if (lookahead == 'r') ADVANCE(607); + if (lookahead == ' ') ADVANCE(654); + if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'r') ADVANCE(648); END_STATE(); - case 414: + case 452: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 415: + case 453: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 416: + case 454: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 417: + case 455: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 418: + case 456: ACCEPT_TOKEN(sym__escape_char); END_STATE(); - case 419: + case 457: ACCEPT_TOKEN(sym__non_escape_char); END_STATE(); - case 420: + case 458: ACCEPT_TOKEN(sym__unicodegraph_short); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325); END_STATE(); - case 421: + case 459: ACCEPT_TOKEN(sym__unicodegraph_long); END_STATE(); - case 422: + case 460: ACCEPT_TOKEN(sym__trigraph); END_STATE(); - case 423: + case 461: ACCEPT_TOKEN(aux_sym__simple_string_char_token1); END_STATE(); - case 424: + case 462: ACCEPT_TOKEN(aux_sym_char_token1); END_STATE(); - case 425: + case 463: ACCEPT_TOKEN(aux_sym_char_token1); - if (lookahead == 'B') ADVANCE(424); + if (lookahead == 'B') ADVANCE(462); END_STATE(); - case 426: + case 464: ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); - case 427: + case 465: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); - if (lookahead == '"') ADVANCE(112); + if (lookahead == '"') ADVANCE(142); END_STATE(); - case 428: + case 466: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 429: + case 467: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(158); + if (lookahead == '"') ADVANCE(188); END_STATE(); - case 430: + case 468: ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == 'B') ADVANCE(438); + if (lookahead == 'B') ADVANCE(476); END_STATE(); - case 431: + case 469: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 432: + case 470: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\r') ADVANCE(419); - if (!sym__non_escape_char_character_set_1(lookahead)) ADVANCE(419); + if (lookahead == '\r') ADVANCE(457); + if (!sym__non_escape_char_character_set_1(lookahead)) ADVANCE(457); END_STATE(); - case 433: + case 471: ACCEPT_TOKEN(aux_sym__verbatim_string_char_token1); END_STATE(); - case 434: + case 472: ACCEPT_TOKEN(anon_sym_AT_DQUOTE); END_STATE(); - case 435: + case 473: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == '"') ADVANCE(433); + if (lookahead == '"') ADVANCE(471); END_STATE(); - case 436: + case 474: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == '"') ADVANCE(433); - if (lookahead == 'B') ADVANCE(438); + if (lookahead == '"') ADVANCE(471); + if (lookahead == 'B') ADVANCE(476); END_STATE(); - case 437: + case 475: ACCEPT_TOKEN(anon_sym_DQUOTE2); - if (lookahead == 'B') ADVANCE(438); + if (lookahead == 'B') ADVANCE(476); END_STATE(); - case 438: + case 476: ACCEPT_TOKEN(anon_sym_DQUOTEB); END_STATE(); - case 439: + case 477: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 440: + case 478: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 441: + case 479: ACCEPT_TOKEN(sym_unit); END_STATE(); - case 442: + case 480: ACCEPT_TOKEN(anon_sym_LPAREN_PIPE); - if (lookahead == ')') ADVANCE(444); + if (lookahead == ')') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -22222,132 +23882,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 443: + case 481: ACCEPT_TOKEN(anon_sym_PIPE_RPAREN); END_STATE(); - case 444: + case 482: ACCEPT_TOKEN(sym_op_identifier); END_STATE(); - case 445: + case 483: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 446: + case 484: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(451); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 447: + case 485: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '>') ADVANCE(386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(492); + if (lookahead == '>') ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 448: + case 486: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 449: + case 487: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '>') ADVANCE(385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(491); + if (lookahead == '>') ADVANCE(427); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 450: + case 488: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '.') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 451: + case 489: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 452: + case 490: ACCEPT_TOKEN(anon_sym_PLUS_DOT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 453: + case 491: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 454: + case 492: ACCEPT_TOKEN(anon_sym_DASH_DOT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 455: + case 493: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 456: + case 494: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 457: + case 495: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 458: + case 496: ACCEPT_TOKEN(anon_sym_AMP_AMP); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 459: + case 497: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 460: + case 498: ACCEPT_TOKEN(aux_sym_prefix_op_token1); - if (lookahead == '-') ADVANCE(475); + if (lookahead == '-') ADVANCE(516); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -22355,11 +24029,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 461: + case 499: ACCEPT_TOKEN(aux_sym_prefix_op_token1); - if (lookahead == '=') ADVANCE(472); + if (lookahead == '=') ADVANCE(513); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -22367,9 +24041,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 462: + case 500: ACCEPT_TOKEN(aux_sym_prefix_op_token1); if (lookahead == '!' || lookahead == '%' || @@ -22378,120 +24052,184 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 463: + case 501: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '"') ADVANCE(434); - if (lookahead == '>') ADVANCE(377); - if (lookahead == '@') ADVANCE(467); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '>') ADVANCE(410); + if (lookahead == '@') ADVANCE(508); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 464: + case 502: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '\'') ADVANCE(425); - if (lookahead == '\\') ADVANCE(270); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '>') ADVANCE(410); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(464); + lookahead == '~') ADVANCE(511); + END_STATE(); + case 503: + ACCEPT_TOKEN(aux_sym_infix_op_token1); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '@') ADVANCE(508); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(511); + END_STATE(); + case 504: + ACCEPT_TOKEN(aux_sym_infix_op_token1); + if (lookahead == '"') ADVANCE(472); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(511); + END_STATE(); + case 505: + ACCEPT_TOKEN(aux_sym_infix_op_token1); + if (lookahead == '\'') ADVANCE(463); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(505); if (lookahead != 0 && - (lookahead < 7 || '\r' < lookahead)) ADVANCE(175); + (lookahead < 7 || '\r' < lookahead)) ADVANCE(205); END_STATE(); - case 465: + case 506: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '-') ADVANCE(388); - if (lookahead == '@') ADVANCE(375); + if (lookahead == '-') ADVANCE(430); + if (lookahead == '@') ADVANCE(408); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + lookahead == '.' || + lookahead == '/' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 466: + case 507: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '/') ADVANCE(551); + if (lookahead == '/') ADVANCE(592); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 467: + case 508: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '>') ADVANCE(380); + if (lookahead == '>') ADVANCE(413); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 468: + case 509: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == ']') ADVANCE(331); + if (lookahead == ']') ADVANCE(369); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 469: + case 510: ACCEPT_TOKEN(aux_sym_infix_op_token1); - if (lookahead == '|') ADVANCE(471); + if (lookahead == '|') ADVANCE(512); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 470: + case 511: ACCEPT_TOKEN(aux_sym_infix_op_token1); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 471: + case 512: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 472: + case 513: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '!' || lookahead == '%' || @@ -22500,16 +24238,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 473: + case 514: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 474: + case 515: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(427); + if (lookahead == '"') ADVANCE(465); END_STATE(); - case 475: + case 516: ACCEPT_TOKEN(anon_sym_QMARK_LT_DASH); if (lookahead == '!' || lookahead == '%' || @@ -22518,394 +24256,396 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(462); + lookahead == '~') ADVANCE(500); END_STATE(); - case 476: + case 517: ACCEPT_TOKEN(sym_int); - if (lookahead == '_') ADVANCE(478); + if (lookahead == '_') ADVANCE(519); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(272); + lookahead == 'b') ADVANCE(310); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(311); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(279); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + lookahead == 'x') ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 477: + case 518: ACCEPT_TOKEN(sym_int); - if (lookahead == '_') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead == '_') ADVANCE(519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 478: + case 519: ACCEPT_TOKEN(sym_int); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); END_STATE(); - case 479: + case 520: ACCEPT_TOKEN(sym_xint); - if (lookahead == '_') ADVANCE(482); + if (lookahead == '_') ADVANCE(523); if (lookahead == '0' || - lookahead == '1') ADVANCE(479); + lookahead == '1') ADVANCE(520); END_STATE(); - case 480: + case 521: ACCEPT_TOKEN(sym_xint); - if (lookahead == '_') ADVANCE(483); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(480); + if (lookahead == '_') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(521); END_STATE(); - case 481: + case 522: ACCEPT_TOKEN(sym_xint); - if (lookahead == '_') ADVANCE(484); + if (lookahead == '_') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(522); END_STATE(); - case 482: + case 523: ACCEPT_TOKEN(sym_xint); if (lookahead == '0' || - lookahead == '1') ADVANCE(479); + lookahead == '1') ADVANCE(520); END_STATE(); - case 483: + case 524: ACCEPT_TOKEN(sym_xint); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(521); END_STATE(); - case 484: + case 525: ACCEPT_TOKEN(sym_xint); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(481); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(522); END_STATE(); - case 485: + case 526: ACCEPT_TOKEN(anon_sym_y); END_STATE(); - case 486: + case 527: ACCEPT_TOKEN(anon_sym_y); - if (lookahead == 'i') ADVANCE(583); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'i') ADVANCE(624); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 487: + case 528: ACCEPT_TOKEN(anon_sym_y); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 488: + case 529: ACCEPT_TOKEN(anon_sym_uy); END_STATE(); - case 489: + case 530: ACCEPT_TOKEN(anon_sym_uy); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 490: + case 531: ACCEPT_TOKEN(anon_sym_s); END_STATE(); - case 491: + case 532: ACCEPT_TOKEN(anon_sym_s); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 492: + case 533: ACCEPT_TOKEN(anon_sym_us); END_STATE(); - case 493: + case 534: ACCEPT_TOKEN(anon_sym_us); - if (lookahead == 'e') ADVANCE(574); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(615); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 494: + case 535: ACCEPT_TOKEN(anon_sym_us); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 495: + case 536: ACCEPT_TOKEN(anon_sym_l); END_STATE(); - case 496: + case 537: ACCEPT_TOKEN(anon_sym_l); - if (lookahead == 'e') ADVANCE(598); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(639); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 497: + case 538: ACCEPT_TOKEN(anon_sym_l); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 498: + case 539: ACCEPT_TOKEN(aux_sym_uint32_token1); END_STATE(); - case 499: + case 540: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(510); - if (lookahead == 'l') ADVANCE(502); - if (lookahead == 'n') ADVANCE(506); - if (lookahead == 's') ADVANCE(493); - if (lookahead == 'y') ADVANCE(489); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'L') ADVANCE(551); + if (lookahead == 'l') ADVANCE(543); + if (lookahead == 'n') ADVANCE(547); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'y') ADVANCE(530); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 500: + case 541: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(510); - if (lookahead == 'l') ADVANCE(502); - if (lookahead == 'n') ADVANCE(506); - if (lookahead == 's') ADVANCE(494); - if (lookahead == 'y') ADVANCE(489); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'L') ADVANCE(551); + if (lookahead == 'l') ADVANCE(543); + if (lookahead == 'n') ADVANCE(547); + if (lookahead == 's') ADVANCE(535); + if (lookahead == 'y') ADVANCE(530); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 501: + case 542: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'l') ADVANCE(498); - if (lookahead == 'n') ADVANCE(505); - if (lookahead == 's') ADVANCE(492); - if (lookahead == 'y') ADVANCE(488); + if (lookahead == 'L') ADVANCE(550); + if (lookahead == 'l') ADVANCE(539); + if (lookahead == 'n') ADVANCE(546); + if (lookahead == 's') ADVANCE(533); + if (lookahead == 'y') ADVANCE(529); END_STATE(); - case 502: + case 543: ACCEPT_TOKEN(aux_sym_uint32_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 503: + case 544: ACCEPT_TOKEN(anon_sym_n); END_STATE(); - case 504: + case 545: ACCEPT_TOKEN(anon_sym_n); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 505: + case 546: ACCEPT_TOKEN(anon_sym_un); END_STATE(); - case 506: + case 547: ACCEPT_TOKEN(anon_sym_un); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 507: + case 548: ACCEPT_TOKEN(anon_sym_L); END_STATE(); - case 508: + case 549: ACCEPT_TOKEN(anon_sym_L); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 509: + case 550: ACCEPT_TOKEN(aux_sym_uint64_token1); END_STATE(); - case 510: + case 551: ACCEPT_TOKEN(aux_sym_uint64_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 511: + case 552: ACCEPT_TOKEN(anon_sym_f); END_STATE(); - case 512: + case 553: ACCEPT_TOKEN(anon_sym_f); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 513: + case 554: ACCEPT_TOKEN(aux_sym_bignum_token1); END_STATE(); - case 514: + case 555: ACCEPT_TOKEN(aux_sym_bignum_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 515: + case 556: ACCEPT_TOKEN(aux_sym_decimal_token1); END_STATE(); - case 516: + case 557: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (lookahead == 'a') ADVANCE(599); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(602); + if (lookahead == 'a') ADVANCE(640); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(643); END_STATE(); - case 517: + case 558: ACCEPT_TOKEN(aux_sym_decimal_token1); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 518: + case 559: ACCEPT_TOKEN(anon_sym_DOT2); END_STATE(); - case 519: + case 560: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(403); - if (lookahead == '[') ADVANCE(389); + if (lookahead == '.') ADVANCE(441); + if (lookahead == '[') ADVANCE(431); END_STATE(); - case 520: + case 561: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(399); - if (lookahead == '[') ADVANCE(389); + if (lookahead == '.') ADVANCE(437); + if (lookahead == '[') ADVANCE(431); END_STATE(); - case 521: + case 562: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '[') ADVANCE(389); + if (lookahead == '[') ADVANCE(431); END_STATE(); - case 522: + case 563: ACCEPT_TOKEN(aux_sym_float_token1); END_STATE(); - case 523: + case 564: ACCEPT_TOKEN(aux_sym_float_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(522); + lookahead == '-') ADVANCE(563); END_STATE(); - case 524: + case 565: ACCEPT_TOKEN(aux_sym_float_token1); if (lookahead == '+' || - lookahead == '-') ADVANCE(522); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + lookahead == '-') ADVANCE(563); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 525: + case 566: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); END_STATE(); - case 526: + case 567: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 527: + case 568: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 528: + case 569: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 529: + case 570: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == ' ') ADVANCE(545); - if (lookahead == 'l') ADVANCE(538); - if (lookahead == 'n') ADVANCE(542); - if (lookahead == 'r') ADVANCE(608); + if (lookahead == ' ') ADVANCE(586); + if (lookahead == 'l') ADVANCE(579); + if (lookahead == 'n') ADVANCE(583); + if (lookahead == 'r') ADVANCE(650); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 530: + case 571: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == ' ') ADVANCE(545); + if (lookahead == ' ') ADVANCE(586); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 531: + case 572: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '#') ADVANCE(529); - if (lookahead == '(') ADVANCE(532); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '\\') ADVANCE(539); + if (lookahead == '#') ADVANCE(570); + if (lookahead == '(') ADVANCE(573); + if (lookahead == '/') ADVANCE(574); + if (lookahead == '\\') ADVANCE(580); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(531); + lookahead == 65279) ADVANCE(572); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(545); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(586); END_STATE(); - case 532: + case 573: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '*') ADVANCE(548); + if (lookahead == '*') ADVANCE(590); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 533: + case 574: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == '/') ADVANCE(553); + if (lookahead == '/') ADVANCE(595); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 534: + case 575: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'a') ADVANCE(536); + if (lookahead == 'a') ADVANCE(577); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 535: + case 576: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'a') ADVANCE(543); + if (lookahead == 'a') ADVANCE(584); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 536: + case 577: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'd') ADVANCE(611); + if (lookahead == 'd') ADVANCE(653); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 537: + case 578: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'e') ADVANCE(530); + if (lookahead == 'e') ADVANCE(571); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 538: + case 579: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'i') ADVANCE(540); - if (lookahead == 'o') ADVANCE(534); + if (lookahead == 'i') ADVANCE(581); + if (lookahead == 'o') ADVANCE(575); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 539: + case 580: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'n') ADVANCE(531); + if (lookahead == 'n') ADVANCE(572); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 540: + case 581: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'n') ADVANCE(537); + if (lookahead == 'n') ADVANCE(578); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 541: + case 582: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'n') ADVANCE(646); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 542: + case 583: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'o') ADVANCE(544); + if (lookahead == 'o') ADVANCE(585); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 543: + case 584: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'r') ADVANCE(541); + if (lookahead == 'r') ADVANCE(582); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 544: + case 585: ACCEPT_TOKEN(aux_sym_xml_doc_token1); - if (lookahead == 'w') ADVANCE(535); + if (lookahead == 'w') ADVANCE(576); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 545: + case 586: ACCEPT_TOKEN(aux_sym_xml_doc_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 546: + case 587: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); END_STATE(); - case 547: + case 588: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); - if (lookahead == ')') ADVANCE(444); + if (lookahead == ')') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(179); + lookahead == ' ') ADVANCE(209); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -22913,395 +24653,398 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(180); + lookahead == '~') ADVANCE(210); END_STATE(); - case 548: + case 589: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 549: + case 590: ACCEPT_TOKEN(anon_sym_LPAREN_STAR); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 550: + case 591: ACCEPT_TOKEN(anon_sym_STAR_RPAREN); END_STATE(); - case 551: + case 592: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '/') ADVANCE(526); + if (lookahead == '/') ADVANCE(567); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || ('<' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(470); + lookahead == '~') ADVANCE(511); END_STATE(); - case 552: + case 593: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '/') ADVANCE(525); + if (lookahead == '/') ADVANCE(566); END_STATE(); - case 553: + case 594: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '/') ADVANCE(527); + if (lookahead == '/') ADVANCE(568); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 554: + case 595: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '/') ADVANCE(528); + if (lookahead == '/') ADVANCE(569); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 555: + case 596: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == ' ') ADVANCE(571); - if (lookahead == 'l') ADVANCE(564); - if (lookahead == 'n') ADVANCE(568); - if (lookahead == 'r') ADVANCE(609); + if (lookahead == ' ') ADVANCE(612); + if (lookahead == 'l') ADVANCE(605); + if (lookahead == 'n') ADVANCE(609); + if (lookahead == 'r') ADVANCE(649); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 556: + case 597: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == ' ') ADVANCE(571); + if (lookahead == ' ') ADVANCE(612); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 557: + case 598: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '#') ADVANCE(555); - if (lookahead == '(') ADVANCE(558); - if (lookahead == '/') ADVANCE(559); - if (lookahead == '\\') ADVANCE(565); + if (lookahead == '#') ADVANCE(596); + if (lookahead == '(') ADVANCE(599); + if (lookahead == '/') ADVANCE(600); + if (lookahead == '\\') ADVANCE(606); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(557); + lookahead == 65279) ADVANCE(598); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead)) ADVANCE(571); + (lookahead < '\n' || '\r' < lookahead)) ADVANCE(612); END_STATE(); - case 558: + case 599: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '*') ADVANCE(549); + if (lookahead == '*') ADVANCE(589); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 559: + case 600: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '/') ADVANCE(554); + if (lookahead == '/') ADVANCE(594); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 560: + case 601: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'a') ADVANCE(562); + if (lookahead == 'a') ADVANCE(603); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 561: + case 602: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'a') ADVANCE(569); + if (lookahead == 'a') ADVANCE(610); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 562: + case 603: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'd') ADVANCE(612); + if (lookahead == 'd') ADVANCE(652); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 563: + case 604: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'e') ADVANCE(556); + if (lookahead == 'e') ADVANCE(597); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 564: + case 605: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'i') ADVANCE(566); - if (lookahead == 'o') ADVANCE(560); + if (lookahead == 'i') ADVANCE(607); + if (lookahead == 'o') ADVANCE(601); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 565: + case 606: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'n') ADVANCE(557); + if (lookahead == 'n') ADVANCE(598); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 566: + case 607: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'n') ADVANCE(563); + if (lookahead == 'n') ADVANCE(604); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 567: + case 608: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'n') ADVANCE(605); + if (lookahead == 'n') ADVANCE(645); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 568: + case 609: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'o') ADVANCE(570); + if (lookahead == 'o') ADVANCE(611); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 569: + case 610: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'r') ADVANCE(567); + if (lookahead == 'r') ADVANCE(608); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 570: + case 611: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == 'w') ADVANCE(561); + if (lookahead == 'w') ADVANCE(602); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 571: + case 612: ACCEPT_TOKEN(aux_sym_line_comment_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 572: + case 613: ACCEPT_TOKEN(sym_identifier); END_STATE(); - case 573: + case 614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(398); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(436); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 574: + case 615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(397); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(435); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 575: + case 616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(387); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(429); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 576: + case 617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(374); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(422); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 577: + case 618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(373); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == '!') ADVANCE(421); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 578: + case 619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(510); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'L') ADVANCE(551); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 579: + case 620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(599); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(602); + if (lookahead == 'a') ADVANCE(640); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(643); END_STATE(); - case 580: + case 621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(588); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'c') ADVANCE(629); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 581: + case 622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(576); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'd') ADVANCE(617); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 582: + case 623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(598); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(639); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 583: + case 624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(590); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(631); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 584: + case 625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(592); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(633); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 585: + case 626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(574); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(615); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 586: + case 627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(600); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'e') ADVANCE(641); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 587: + case 628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(584); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'h') ADVANCE(625); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 588: + case 629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(575); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'h') ADVANCE(616); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 589: + case 630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(583); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'i') ADVANCE(624); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 590: + case 631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(581); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'l') ADVANCE(622); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 591: + case 632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(384); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'n') ADVANCE(426); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 592: + case 633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(401); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'n') ADVANCE(439); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 593: + case 634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(577); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'n') ADVANCE(618); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 594: + case 635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(573); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'o') ADVANCE(614); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 595: + case 636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(593); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'r') ADVANCE(634); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 596: + case 637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(342); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 's') ADVANCE(380); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 597: + case 638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(585); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 's') ADVANCE(626); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 598: + case 639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(339); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 't') ADVANCE(377); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 599: + case 640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(580); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 't') ADVANCE(621); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 600: + case 641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(601); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 't') ADVANCE(642); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 601: + case 642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(595); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (lookahead == 'u') ADVANCE(636); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 602: + case 643: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(602); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(643); END_STATE(); - case 603: + case 644: ACCEPT_TOKEN(anon_sym_POUNDnowarn); END_STATE(); - case 604: + case 645: ACCEPT_TOKEN(anon_sym_POUNDnowarn); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 605: + case 646: ACCEPT_TOKEN(anon_sym_POUNDnowarn); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 606: + case 647: ACCEPT_TOKEN(aux_sym_compiler_directive_decl_token1); - if (lookahead == '\n') ADVANCE(606); + if (lookahead == '\n') ADVANCE(647); END_STATE(); - case 607: + case 648: ACCEPT_TOKEN(anon_sym_POUNDr); END_STATE(); - case 608: + case 649: ACCEPT_TOKEN(anon_sym_POUNDr); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 609: + case 650: ACCEPT_TOKEN(anon_sym_POUNDr); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 610: + case 651: ACCEPT_TOKEN(anon_sym_POUNDload); END_STATE(); - case 611: + case 652: ACCEPT_TOKEN(anon_sym_POUNDload); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(545); + lookahead != '\r') ADVANCE(612); END_STATE(); - case 612: + case 653: ACCEPT_TOKEN(anon_sym_POUNDload); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(571); + lookahead != '\r') ADVANCE(586); END_STATE(); - case 613: + case 654: ACCEPT_TOKEN(aux_sym_preproc_line_token1); END_STATE(); - case 614: + case 655: ACCEPT_TOKEN(anon_sym_POUNDif); END_STATE(); - case 615: + case 656: ACCEPT_TOKEN(anon_sym_POUNDendif); END_STATE(); - case 616: + case 657: ACCEPT_TOKEN(anon_sym_POUNDelse); END_STATE(); default: @@ -24290,4083 +26033,4083 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 315, .external_lex_state = 2}, - [2] = {.lex_state = 306, .external_lex_state = 3}, - [3] = {.lex_state = 306, .external_lex_state = 3}, - [4] = {.lex_state = 306, .external_lex_state = 3}, - [5] = {.lex_state = 306, .external_lex_state = 3}, - [6] = {.lex_state = 306, .external_lex_state = 3}, - [7] = {.lex_state = 306, .external_lex_state = 3}, - [8] = {.lex_state = 306, .external_lex_state = 3}, - [9] = {.lex_state = 306, .external_lex_state = 3}, - [10] = {.lex_state = 306, .external_lex_state = 3}, - [11] = {.lex_state = 306, .external_lex_state = 3}, - [12] = {.lex_state = 306, .external_lex_state = 3}, - [13] = {.lex_state = 306, .external_lex_state = 3}, - [14] = {.lex_state = 306, .external_lex_state = 3}, - [15] = {.lex_state = 306, .external_lex_state = 3}, - [16] = {.lex_state = 306, .external_lex_state = 3}, - [17] = {.lex_state = 306, .external_lex_state = 3}, - [18] = {.lex_state = 306, .external_lex_state = 3}, - [19] = {.lex_state = 306, .external_lex_state = 3}, - [20] = {.lex_state = 306, .external_lex_state = 3}, - [21] = {.lex_state = 306, .external_lex_state = 4}, - [22] = {.lex_state = 306, .external_lex_state = 4}, - [23] = {.lex_state = 306, .external_lex_state = 4}, - [24] = {.lex_state = 306, .external_lex_state = 4}, - [25] = {.lex_state = 306, .external_lex_state = 3}, - [26] = {.lex_state = 306, .external_lex_state = 4}, - [27] = {.lex_state = 306, .external_lex_state = 4}, - [28] = {.lex_state = 306, .external_lex_state = 4}, - [29] = {.lex_state = 306, .external_lex_state = 4}, - [30] = {.lex_state = 306, .external_lex_state = 3}, - [31] = {.lex_state = 306, .external_lex_state = 3}, - [32] = {.lex_state = 306, .external_lex_state = 4}, - [33] = {.lex_state = 306, .external_lex_state = 3}, - [34] = {.lex_state = 306, .external_lex_state = 3}, - [35] = {.lex_state = 306, .external_lex_state = 4}, - [36] = {.lex_state = 306, .external_lex_state = 3}, - [37] = {.lex_state = 306, .external_lex_state = 3}, - [38] = {.lex_state = 306, .external_lex_state = 3}, - [39] = {.lex_state = 306, .external_lex_state = 3}, - [40] = {.lex_state = 306, .external_lex_state = 3}, - [41] = {.lex_state = 306, .external_lex_state = 5}, - [42] = {.lex_state = 87, .external_lex_state = 4}, - [43] = {.lex_state = 87, .external_lex_state = 4}, - [44] = {.lex_state = 306, .external_lex_state = 5}, - [45] = {.lex_state = 87, .external_lex_state = 4}, - [46] = {.lex_state = 87, .external_lex_state = 4}, - [47] = {.lex_state = 306, .external_lex_state = 4}, - [48] = {.lex_state = 87, .external_lex_state = 4}, - [49] = {.lex_state = 87, .external_lex_state = 4}, - [50] = {.lex_state = 87, .external_lex_state = 4}, - [51] = {.lex_state = 87, .external_lex_state = 4}, - [52] = {.lex_state = 87, .external_lex_state = 4}, - [53] = {.lex_state = 306, .external_lex_state = 5}, - [54] = {.lex_state = 306, .external_lex_state = 5}, - [55] = {.lex_state = 87, .external_lex_state = 4}, - [56] = {.lex_state = 306, .external_lex_state = 3}, - [57] = {.lex_state = 306, .external_lex_state = 4}, - [58] = {.lex_state = 306, .external_lex_state = 4}, - [59] = {.lex_state = 306, .external_lex_state = 4}, - [60] = {.lex_state = 306, .external_lex_state = 5}, - [61] = {.lex_state = 306, .external_lex_state = 4}, - [62] = {.lex_state = 306, .external_lex_state = 5}, - [63] = {.lex_state = 306, .external_lex_state = 4}, - [64] = {.lex_state = 306, .external_lex_state = 4}, - [65] = {.lex_state = 306, .external_lex_state = 4}, - [66] = {.lex_state = 306, .external_lex_state = 4}, - [67] = {.lex_state = 306, .external_lex_state = 5}, - [68] = {.lex_state = 87, .external_lex_state = 3}, - [69] = {.lex_state = 306, .external_lex_state = 5}, - [70] = {.lex_state = 306, .external_lex_state = 5}, - [71] = {.lex_state = 306, .external_lex_state = 3}, - [72] = {.lex_state = 306, .external_lex_state = 5}, - [73] = {.lex_state = 306, .external_lex_state = 5}, - [74] = {.lex_state = 306, .external_lex_state = 4}, - [75] = {.lex_state = 306, .external_lex_state = 4}, - [76] = {.lex_state = 87, .external_lex_state = 3}, - [77] = {.lex_state = 306, .external_lex_state = 5}, - [78] = {.lex_state = 306, .external_lex_state = 3}, - [79] = {.lex_state = 306, .external_lex_state = 4}, - [80] = {.lex_state = 68, .external_lex_state = 3}, - [81] = {.lex_state = 306, .external_lex_state = 4}, - [82] = {.lex_state = 306, .external_lex_state = 4}, - [83] = {.lex_state = 87, .external_lex_state = 3}, - [84] = {.lex_state = 306, .external_lex_state = 3}, - [85] = {.lex_state = 306, .external_lex_state = 3}, - [86] = {.lex_state = 68, .external_lex_state = 3}, - [87] = {.lex_state = 68, .external_lex_state = 3}, - [88] = {.lex_state = 68, .external_lex_state = 3}, - [89] = {.lex_state = 87, .external_lex_state = 3}, - [90] = {.lex_state = 306, .external_lex_state = 5}, - [91] = {.lex_state = 87, .external_lex_state = 3}, - [92] = {.lex_state = 68, .external_lex_state = 3}, - [93] = {.lex_state = 306, .external_lex_state = 5}, - [94] = {.lex_state = 87, .external_lex_state = 3}, - [95] = {.lex_state = 68, .external_lex_state = 3}, - [96] = {.lex_state = 87, .external_lex_state = 3}, - [97] = {.lex_state = 87, .external_lex_state = 3}, - [98] = {.lex_state = 87, .external_lex_state = 3}, - [99] = {.lex_state = 306, .external_lex_state = 3}, - [100] = {.lex_state = 68, .external_lex_state = 3}, - [101] = {.lex_state = 306, .external_lex_state = 3}, - [102] = {.lex_state = 68, .external_lex_state = 3}, - [103] = {.lex_state = 306, .external_lex_state = 4}, - [104] = {.lex_state = 306, .external_lex_state = 4}, - [105] = {.lex_state = 306, .external_lex_state = 3}, - [106] = {.lex_state = 306, .external_lex_state = 3}, - [107] = {.lex_state = 68, .external_lex_state = 3}, - [108] = {.lex_state = 87, .external_lex_state = 3}, - [109] = {.lex_state = 68, .external_lex_state = 3}, - [110] = {.lex_state = 306, .external_lex_state = 3}, - [111] = {.lex_state = 306, .external_lex_state = 4}, - [112] = {.lex_state = 68, .external_lex_state = 3}, - [113] = {.lex_state = 306, .external_lex_state = 4}, - [114] = {.lex_state = 306, .external_lex_state = 4}, - [115] = {.lex_state = 306, .external_lex_state = 4}, - [116] = {.lex_state = 306, .external_lex_state = 3}, - [117] = {.lex_state = 68, .external_lex_state = 3}, - [118] = {.lex_state = 306, .external_lex_state = 3}, - [119] = {.lex_state = 306, .external_lex_state = 3}, - [120] = {.lex_state = 306, .external_lex_state = 3}, - [121] = {.lex_state = 306, .external_lex_state = 3}, - [122] = {.lex_state = 306, .external_lex_state = 5}, - [123] = {.lex_state = 306, .external_lex_state = 3}, - [124] = {.lex_state = 306, .external_lex_state = 3}, - [125] = {.lex_state = 306, .external_lex_state = 3}, - [126] = {.lex_state = 306, .external_lex_state = 3}, - [127] = {.lex_state = 306, .external_lex_state = 4}, - [128] = {.lex_state = 306, .external_lex_state = 4}, - [129] = {.lex_state = 306, .external_lex_state = 4}, - [130] = {.lex_state = 306, .external_lex_state = 3}, - [131] = {.lex_state = 306, .external_lex_state = 3}, - [132] = {.lex_state = 306, .external_lex_state = 3}, - [133] = {.lex_state = 306, .external_lex_state = 3}, - [134] = {.lex_state = 306, .external_lex_state = 3}, - [135] = {.lex_state = 306, .external_lex_state = 3}, - [136] = {.lex_state = 306, .external_lex_state = 3}, - [137] = {.lex_state = 306, .external_lex_state = 3}, - [138] = {.lex_state = 306, .external_lex_state = 3}, - [139] = {.lex_state = 306, .external_lex_state = 3}, - [140] = {.lex_state = 306, .external_lex_state = 3}, - [141] = {.lex_state = 306, .external_lex_state = 3}, - [142] = {.lex_state = 306, .external_lex_state = 3}, - [143] = {.lex_state = 306, .external_lex_state = 4}, - [144] = {.lex_state = 306, .external_lex_state = 3}, - [145] = {.lex_state = 306, .external_lex_state = 4}, - [146] = {.lex_state = 309, .external_lex_state = 3}, - [147] = {.lex_state = 306, .external_lex_state = 3}, - [148] = {.lex_state = 68, .external_lex_state = 3}, - [149] = {.lex_state = 309, .external_lex_state = 3}, - [150] = {.lex_state = 309, .external_lex_state = 3}, - [151] = {.lex_state = 306, .external_lex_state = 3}, - [152] = {.lex_state = 306, .external_lex_state = 3}, - [153] = {.lex_state = 309, .external_lex_state = 3}, - [154] = {.lex_state = 306, .external_lex_state = 6}, - [155] = {.lex_state = 306, .external_lex_state = 3}, - [156] = {.lex_state = 306, .external_lex_state = 4}, - [157] = {.lex_state = 306, .external_lex_state = 6}, - [158] = {.lex_state = 309, .external_lex_state = 3}, - [159] = {.lex_state = 306, .external_lex_state = 4}, - [160] = {.lex_state = 306, .external_lex_state = 3}, - [161] = {.lex_state = 309, .external_lex_state = 3}, - [162] = {.lex_state = 306, .external_lex_state = 4}, - [163] = {.lex_state = 306, .external_lex_state = 6}, - [164] = {.lex_state = 306, .external_lex_state = 6}, - [165] = {.lex_state = 83, .external_lex_state = 3}, - [166] = {.lex_state = 306, .external_lex_state = 6}, - [167] = {.lex_state = 306, .external_lex_state = 6}, - [168] = {.lex_state = 309, .external_lex_state = 3}, - [169] = {.lex_state = 83, .external_lex_state = 3}, - [170] = {.lex_state = 306, .external_lex_state = 4}, - [171] = {.lex_state = 306, .external_lex_state = 4}, - [172] = {.lex_state = 306, .external_lex_state = 3}, - [173] = {.lex_state = 68, .external_lex_state = 3}, - [174] = {.lex_state = 306, .external_lex_state = 4}, - [175] = {.lex_state = 309, .external_lex_state = 3}, - [176] = {.lex_state = 68, .external_lex_state = 3}, - [177] = {.lex_state = 306, .external_lex_state = 4}, - [178] = {.lex_state = 306, .external_lex_state = 4}, - [179] = {.lex_state = 306, .external_lex_state = 3}, - [180] = {.lex_state = 309, .external_lex_state = 3}, - [181] = {.lex_state = 306, .external_lex_state = 4}, - [182] = {.lex_state = 306, .external_lex_state = 4}, - [183] = {.lex_state = 306, .external_lex_state = 4}, - [184] = {.lex_state = 306, .external_lex_state = 4}, - [185] = {.lex_state = 306, .external_lex_state = 4}, - [186] = {.lex_state = 306, .external_lex_state = 4}, - [187] = {.lex_state = 68, .external_lex_state = 3}, - [188] = {.lex_state = 83, .external_lex_state = 3}, - [189] = {.lex_state = 306, .external_lex_state = 4}, - [190] = {.lex_state = 306, .external_lex_state = 4}, - [191] = {.lex_state = 83, .external_lex_state = 3}, - [192] = {.lex_state = 83, .external_lex_state = 3}, - [193] = {.lex_state = 306, .external_lex_state = 6}, - [194] = {.lex_state = 68, .external_lex_state = 3}, - [195] = {.lex_state = 306, .external_lex_state = 4}, - [196] = {.lex_state = 68, .external_lex_state = 3}, - [197] = {.lex_state = 306, .external_lex_state = 4}, - [198] = {.lex_state = 83, .external_lex_state = 3}, - [199] = {.lex_state = 68, .external_lex_state = 3}, - [200] = {.lex_state = 306, .external_lex_state = 4}, - [201] = {.lex_state = 306, .external_lex_state = 3}, - [202] = {.lex_state = 306, .external_lex_state = 4}, - [203] = {.lex_state = 306, .external_lex_state = 4}, - [204] = {.lex_state = 309, .external_lex_state = 3}, - [205] = {.lex_state = 306, .external_lex_state = 4}, - [206] = {.lex_state = 309, .external_lex_state = 3}, - [207] = {.lex_state = 306, .external_lex_state = 3}, - [208] = {.lex_state = 68, .external_lex_state = 3}, - [209] = {.lex_state = 306, .external_lex_state = 3}, - [210] = {.lex_state = 83, .external_lex_state = 3}, - [211] = {.lex_state = 309, .external_lex_state = 3}, - [212] = {.lex_state = 68, .external_lex_state = 3}, - [213] = {.lex_state = 309, .external_lex_state = 3}, - [214] = {.lex_state = 306, .external_lex_state = 3}, - [215] = {.lex_state = 306, .external_lex_state = 4}, - [216] = {.lex_state = 309, .external_lex_state = 3}, - [217] = {.lex_state = 309, .external_lex_state = 3}, - [218] = {.lex_state = 68, .external_lex_state = 3}, - [219] = {.lex_state = 306, .external_lex_state = 3}, - [220] = {.lex_state = 68, .external_lex_state = 3}, - [221] = {.lex_state = 68, .external_lex_state = 3}, - [222] = {.lex_state = 306, .external_lex_state = 3}, - [223] = {.lex_state = 68, .external_lex_state = 3}, - [224] = {.lex_state = 306, .external_lex_state = 4}, - [225] = {.lex_state = 306, .external_lex_state = 6}, - [226] = {.lex_state = 306, .external_lex_state = 4}, - [227] = {.lex_state = 306, .external_lex_state = 4}, - [228] = {.lex_state = 306, .external_lex_state = 4}, - [229] = {.lex_state = 306, .external_lex_state = 4}, - [230] = {.lex_state = 309, .external_lex_state = 3}, - [231] = {.lex_state = 306, .external_lex_state = 4}, - [232] = {.lex_state = 306, .external_lex_state = 4}, - [233] = {.lex_state = 68, .external_lex_state = 3}, - [234] = {.lex_state = 306, .external_lex_state = 3}, - [235] = {.lex_state = 306, .external_lex_state = 4}, - [236] = {.lex_state = 306, .external_lex_state = 4}, - [237] = {.lex_state = 306, .external_lex_state = 3}, - [238] = {.lex_state = 306, .external_lex_state = 4}, - [239] = {.lex_state = 309, .external_lex_state = 3}, - [240] = {.lex_state = 306, .external_lex_state = 4}, - [241] = {.lex_state = 306, .external_lex_state = 4}, - [242] = {.lex_state = 306, .external_lex_state = 4}, - [243] = {.lex_state = 306, .external_lex_state = 4}, - [244] = {.lex_state = 309, .external_lex_state = 3}, - [245] = {.lex_state = 309, .external_lex_state = 3}, - [246] = {.lex_state = 306, .external_lex_state = 3}, - [247] = {.lex_state = 68, .external_lex_state = 3}, - [248] = {.lex_state = 306, .external_lex_state = 4}, - [249] = {.lex_state = 306, .external_lex_state = 3}, - [250] = {.lex_state = 306, .external_lex_state = 4}, - [251] = {.lex_state = 68, .external_lex_state = 3}, - [252] = {.lex_state = 306, .external_lex_state = 4}, - [253] = {.lex_state = 83, .external_lex_state = 3}, - [254] = {.lex_state = 68, .external_lex_state = 3}, - [255] = {.lex_state = 306, .external_lex_state = 4}, - [256] = {.lex_state = 306, .external_lex_state = 6}, - [257] = {.lex_state = 309, .external_lex_state = 3}, - [258] = {.lex_state = 309, .external_lex_state = 3}, - [259] = {.lex_state = 306, .external_lex_state = 3}, - [260] = {.lex_state = 83, .external_lex_state = 3}, - [261] = {.lex_state = 306, .external_lex_state = 4}, - [262] = {.lex_state = 306, .external_lex_state = 4}, - [263] = {.lex_state = 306, .external_lex_state = 4}, - [264] = {.lex_state = 306, .external_lex_state = 3}, - [265] = {.lex_state = 306, .external_lex_state = 3}, - [266] = {.lex_state = 306, .external_lex_state = 3}, - [267] = {.lex_state = 68, .external_lex_state = 3}, - [268] = {.lex_state = 306, .external_lex_state = 4}, - [269] = {.lex_state = 83, .external_lex_state = 3}, - [270] = {.lex_state = 306, .external_lex_state = 4}, - [271] = {.lex_state = 309, .external_lex_state = 3}, - [272] = {.lex_state = 306, .external_lex_state = 3}, - [273] = {.lex_state = 306, .external_lex_state = 4}, - [274] = {.lex_state = 68, .external_lex_state = 3}, - [275] = {.lex_state = 306, .external_lex_state = 6}, - [276] = {.lex_state = 306, .external_lex_state = 3}, - [277] = {.lex_state = 306, .external_lex_state = 6}, - [278] = {.lex_state = 306, .external_lex_state = 4}, - [279] = {.lex_state = 306, .external_lex_state = 4}, - [280] = {.lex_state = 306, .external_lex_state = 4}, - [281] = {.lex_state = 306, .external_lex_state = 4}, - [282] = {.lex_state = 306, .external_lex_state = 3}, - [283] = {.lex_state = 306, .external_lex_state = 6}, - [284] = {.lex_state = 306, .external_lex_state = 4}, - [285] = {.lex_state = 309, .external_lex_state = 3}, - [286] = {.lex_state = 306, .external_lex_state = 4}, - [287] = {.lex_state = 68, .external_lex_state = 3}, - [288] = {.lex_state = 306, .external_lex_state = 4}, - [289] = {.lex_state = 306, .external_lex_state = 4}, - [290] = {.lex_state = 306, .external_lex_state = 3}, - [291] = {.lex_state = 306, .external_lex_state = 3}, - [292] = {.lex_state = 306, .external_lex_state = 4}, - [293] = {.lex_state = 309, .external_lex_state = 3}, - [294] = {.lex_state = 68, .external_lex_state = 3}, - [295] = {.lex_state = 68, .external_lex_state = 3}, - [296] = {.lex_state = 306, .external_lex_state = 4}, - [297] = {.lex_state = 306, .external_lex_state = 3}, - [298] = {.lex_state = 306, .external_lex_state = 3}, - [299] = {.lex_state = 306, .external_lex_state = 3}, - [300] = {.lex_state = 306, .external_lex_state = 3}, - [301] = {.lex_state = 306, .external_lex_state = 3}, - [302] = {.lex_state = 306, .external_lex_state = 3}, - [303] = {.lex_state = 306, .external_lex_state = 3}, - [304] = {.lex_state = 306, .external_lex_state = 3}, - [305] = {.lex_state = 306, .external_lex_state = 3}, - [306] = {.lex_state = 306, .external_lex_state = 3}, - [307] = {.lex_state = 306, .external_lex_state = 3}, - [308] = {.lex_state = 306, .external_lex_state = 3}, - [309] = {.lex_state = 306, .external_lex_state = 3}, - [310] = {.lex_state = 306, .external_lex_state = 3}, - [311] = {.lex_state = 306, .external_lex_state = 3}, - [312] = {.lex_state = 306, .external_lex_state = 3}, - [313] = {.lex_state = 306, .external_lex_state = 3}, - [314] = {.lex_state = 306, .external_lex_state = 3}, - [315] = {.lex_state = 306, .external_lex_state = 3}, - [316] = {.lex_state = 306, .external_lex_state = 3}, - [317] = {.lex_state = 306, .external_lex_state = 3}, - [318] = {.lex_state = 306, .external_lex_state = 3}, - [319] = {.lex_state = 306, .external_lex_state = 3}, - [320] = {.lex_state = 306, .external_lex_state = 3}, - [321] = {.lex_state = 306, .external_lex_state = 3}, - [322] = {.lex_state = 306, .external_lex_state = 3}, - [323] = {.lex_state = 306, .external_lex_state = 3}, - [324] = {.lex_state = 306, .external_lex_state = 3}, - [325] = {.lex_state = 306, .external_lex_state = 3}, - [326] = {.lex_state = 306, .external_lex_state = 3}, - [327] = {.lex_state = 306, .external_lex_state = 3}, - [328] = {.lex_state = 306, .external_lex_state = 3}, - [329] = {.lex_state = 306, .external_lex_state = 3}, - [330] = {.lex_state = 306, .external_lex_state = 3}, - [331] = {.lex_state = 306, .external_lex_state = 3}, - [332] = {.lex_state = 306, .external_lex_state = 3}, - [333] = {.lex_state = 306, .external_lex_state = 3}, - [334] = {.lex_state = 306, .external_lex_state = 3}, - [335] = {.lex_state = 306, .external_lex_state = 3}, - [336] = {.lex_state = 306, .external_lex_state = 3}, - [337] = {.lex_state = 306, .external_lex_state = 3}, - [338] = {.lex_state = 306, .external_lex_state = 3}, - [339] = {.lex_state = 306, .external_lex_state = 3}, - [340] = {.lex_state = 306, .external_lex_state = 3}, - [341] = {.lex_state = 306, .external_lex_state = 3}, - [342] = {.lex_state = 315, .external_lex_state = 5}, - [343] = {.lex_state = 315, .external_lex_state = 5}, - [344] = {.lex_state = 315, .external_lex_state = 5}, - [345] = {.lex_state = 315, .external_lex_state = 5}, - [346] = {.lex_state = 315, .external_lex_state = 2}, - [347] = {.lex_state = 315, .external_lex_state = 2}, - [348] = {.lex_state = 315, .external_lex_state = 2}, - [349] = {.lex_state = 315, .external_lex_state = 2}, - [350] = {.lex_state = 315, .external_lex_state = 2}, - [351] = {.lex_state = 315, .external_lex_state = 2}, - [352] = {.lex_state = 315, .external_lex_state = 2}, - [353] = {.lex_state = 315, .external_lex_state = 7}, - [354] = {.lex_state = 315, .external_lex_state = 2}, - [355] = {.lex_state = 315, .external_lex_state = 7}, - [356] = {.lex_state = 315, .external_lex_state = 2}, - [357] = {.lex_state = 315, .external_lex_state = 7}, - [358] = {.lex_state = 315, .external_lex_state = 7}, - [359] = {.lex_state = 315, .external_lex_state = 7}, - [360] = {.lex_state = 315, .external_lex_state = 7}, - [361] = {.lex_state = 315, .external_lex_state = 7}, - [362] = {.lex_state = 315, .external_lex_state = 7}, - [363] = {.lex_state = 315, .external_lex_state = 7}, - [364] = {.lex_state = 315, .external_lex_state = 7}, - [365] = {.lex_state = 315, .external_lex_state = 2}, - [366] = {.lex_state = 315, .external_lex_state = 2}, - [367] = {.lex_state = 315, .external_lex_state = 2}, - [368] = {.lex_state = 315, .external_lex_state = 7}, - [369] = {.lex_state = 315, .external_lex_state = 7}, - [370] = {.lex_state = 315, .external_lex_state = 7}, - [371] = {.lex_state = 315, .external_lex_state = 2}, - [372] = {.lex_state = 315, .external_lex_state = 2}, - [373] = {.lex_state = 315, .external_lex_state = 2}, - [374] = {.lex_state = 315, .external_lex_state = 2}, - [375] = {.lex_state = 315, .external_lex_state = 2}, - [376] = {.lex_state = 315, .external_lex_state = 2}, - [377] = {.lex_state = 315, .external_lex_state = 2}, - [378] = {.lex_state = 315, .external_lex_state = 2}, - [379] = {.lex_state = 315, .external_lex_state = 2}, - [380] = {.lex_state = 315, .external_lex_state = 2}, - [381] = {.lex_state = 315, .external_lex_state = 2}, - [382] = {.lex_state = 315, .external_lex_state = 2}, - [383] = {.lex_state = 315, .external_lex_state = 2}, - [384] = {.lex_state = 315, .external_lex_state = 2}, - [385] = {.lex_state = 315, .external_lex_state = 2}, - [386] = {.lex_state = 315, .external_lex_state = 2}, - [387] = {.lex_state = 315, .external_lex_state = 2}, - [388] = {.lex_state = 315, .external_lex_state = 2}, - [389] = {.lex_state = 315, .external_lex_state = 2}, - [390] = {.lex_state = 315, .external_lex_state = 2}, - [391] = {.lex_state = 315, .external_lex_state = 3}, - [392] = {.lex_state = 316, .external_lex_state = 3}, - [393] = {.lex_state = 113, .external_lex_state = 2}, - [394] = {.lex_state = 113, .external_lex_state = 2}, - [395] = {.lex_state = 316, .external_lex_state = 7}, - [396] = {.lex_state = 316, .external_lex_state = 7}, - [397] = {.lex_state = 316, .external_lex_state = 7}, - [398] = {.lex_state = 315, .external_lex_state = 2}, - [399] = {.lex_state = 315, .external_lex_state = 2}, - [400] = {.lex_state = 315, .external_lex_state = 2}, - [401] = {.lex_state = 315, .external_lex_state = 2}, - [402] = {.lex_state = 315, .external_lex_state = 2}, - [403] = {.lex_state = 315, .external_lex_state = 2}, - [404] = {.lex_state = 316, .external_lex_state = 2}, - [405] = {.lex_state = 316, .external_lex_state = 2}, - [406] = {.lex_state = 316, .external_lex_state = 2}, - [407] = {.lex_state = 316, .external_lex_state = 2}, - [408] = {.lex_state = 315, .external_lex_state = 2}, - [409] = {.lex_state = 316, .external_lex_state = 2}, - [410] = {.lex_state = 315, .external_lex_state = 2}, - [411] = {.lex_state = 316, .external_lex_state = 2}, - [412] = {.lex_state = 316, .external_lex_state = 2}, - [413] = {.lex_state = 315, .external_lex_state = 2}, - [414] = {.lex_state = 315, .external_lex_state = 2}, - [415] = {.lex_state = 316, .external_lex_state = 2}, - [416] = {.lex_state = 316, .external_lex_state = 2}, - [417] = {.lex_state = 316, .external_lex_state = 2}, - [418] = {.lex_state = 316, .external_lex_state = 2}, - [419] = {.lex_state = 315, .external_lex_state = 2}, - [420] = {.lex_state = 316, .external_lex_state = 2}, - [421] = {.lex_state = 316, .external_lex_state = 2}, - [422] = {.lex_state = 316, .external_lex_state = 2}, - [423] = {.lex_state = 316, .external_lex_state = 2}, - [424] = {.lex_state = 315, .external_lex_state = 2}, - [425] = {.lex_state = 315, .external_lex_state = 5}, - [426] = {.lex_state = 315, .external_lex_state = 5}, - [427] = {.lex_state = 315, .external_lex_state = 2}, - [428] = {.lex_state = 315, .external_lex_state = 2}, - [429] = {.lex_state = 315, .external_lex_state = 5}, - [430] = {.lex_state = 315, .external_lex_state = 2}, - [431] = {.lex_state = 315, .external_lex_state = 5}, - [432] = {.lex_state = 315, .external_lex_state = 5}, - [433] = {.lex_state = 315, .external_lex_state = 5}, - [434] = {.lex_state = 315, .external_lex_state = 5}, - [435] = {.lex_state = 315, .external_lex_state = 2}, - [436] = {.lex_state = 315, .external_lex_state = 5}, - [437] = {.lex_state = 315, .external_lex_state = 5}, - [438] = {.lex_state = 315, .external_lex_state = 5}, - [439] = {.lex_state = 315, .external_lex_state = 2}, - [440] = {.lex_state = 315, .external_lex_state = 5}, - [441] = {.lex_state = 315, .external_lex_state = 2}, - [442] = {.lex_state = 315, .external_lex_state = 5}, - [443] = {.lex_state = 315, .external_lex_state = 7}, - [444] = {.lex_state = 315, .external_lex_state = 2}, - [445] = {.lex_state = 315, .external_lex_state = 5}, - [446] = {.lex_state = 315, .external_lex_state = 2}, - [447] = {.lex_state = 315, .external_lex_state = 5}, - [448] = {.lex_state = 315, .external_lex_state = 2}, - [449] = {.lex_state = 315, .external_lex_state = 2}, - [450] = {.lex_state = 315, .external_lex_state = 5}, - [451] = {.lex_state = 315, .external_lex_state = 5}, - [452] = {.lex_state = 315, .external_lex_state = 5}, - [453] = {.lex_state = 315, .external_lex_state = 5}, - [454] = {.lex_state = 315, .external_lex_state = 5}, - [455] = {.lex_state = 315, .external_lex_state = 2}, - [456] = {.lex_state = 315, .external_lex_state = 5}, - [457] = {.lex_state = 315, .external_lex_state = 5}, - [458] = {.lex_state = 315, .external_lex_state = 5}, - [459] = {.lex_state = 315, .external_lex_state = 2}, - [460] = {.lex_state = 315, .external_lex_state = 2}, - [461] = {.lex_state = 315, .external_lex_state = 2}, - [462] = {.lex_state = 315, .external_lex_state = 2}, - [463] = {.lex_state = 315, .external_lex_state = 2}, - [464] = {.lex_state = 315, .external_lex_state = 2}, - [465] = {.lex_state = 315, .external_lex_state = 2}, - [466] = {.lex_state = 315, .external_lex_state = 2}, - [467] = {.lex_state = 315, .external_lex_state = 2}, - [468] = {.lex_state = 315, .external_lex_state = 2}, - [469] = {.lex_state = 315, .external_lex_state = 2}, - [470] = {.lex_state = 315, .external_lex_state = 5}, - [471] = {.lex_state = 315, .external_lex_state = 2}, - [472] = {.lex_state = 315, .external_lex_state = 2}, - [473] = {.lex_state = 315, .external_lex_state = 2}, - [474] = {.lex_state = 315, .external_lex_state = 6}, - [475] = {.lex_state = 315, .external_lex_state = 6}, - [476] = {.lex_state = 315, .external_lex_state = 6}, - [477] = {.lex_state = 315, .external_lex_state = 7}, - [478] = {.lex_state = 315, .external_lex_state = 2}, - [479] = {.lex_state = 315, .external_lex_state = 8}, - [480] = {.lex_state = 315, .external_lex_state = 2}, - [481] = {.lex_state = 315, .external_lex_state = 2}, - [482] = {.lex_state = 315, .external_lex_state = 2}, - [483] = {.lex_state = 315, .external_lex_state = 2}, - [484] = {.lex_state = 315, .external_lex_state = 9}, - [485] = {.lex_state = 315, .external_lex_state = 2}, - [486] = {.lex_state = 315, .external_lex_state = 2}, - [487] = {.lex_state = 315, .external_lex_state = 2}, - [488] = {.lex_state = 315, .external_lex_state = 2}, - [489] = {.lex_state = 315, .external_lex_state = 2}, - [490] = {.lex_state = 315, .external_lex_state = 2}, - [491] = {.lex_state = 315, .external_lex_state = 2}, - [492] = {.lex_state = 315, .external_lex_state = 2}, - [493] = {.lex_state = 315, .external_lex_state = 2}, - [494] = {.lex_state = 315, .external_lex_state = 2}, - [495] = {.lex_state = 315, .external_lex_state = 2}, - [496] = {.lex_state = 315, .external_lex_state = 2}, - [497] = {.lex_state = 315, .external_lex_state = 2}, - [498] = {.lex_state = 315, .external_lex_state = 2}, - [499] = {.lex_state = 315, .external_lex_state = 2}, - [500] = {.lex_state = 315, .external_lex_state = 2}, - [501] = {.lex_state = 315, .external_lex_state = 2}, - [502] = {.lex_state = 315, .external_lex_state = 2}, - [503] = {.lex_state = 315, .external_lex_state = 2}, - [504] = {.lex_state = 315, .external_lex_state = 2}, - [505] = {.lex_state = 315, .external_lex_state = 2}, - [506] = {.lex_state = 315, .external_lex_state = 2}, - [507] = {.lex_state = 315, .external_lex_state = 2}, - [508] = {.lex_state = 315, .external_lex_state = 2}, - [509] = {.lex_state = 315, .external_lex_state = 2}, - [510] = {.lex_state = 315, .external_lex_state = 2}, - [511] = {.lex_state = 315, .external_lex_state = 2}, - [512] = {.lex_state = 315, .external_lex_state = 2}, - [513] = {.lex_state = 315, .external_lex_state = 2}, - [514] = {.lex_state = 315, .external_lex_state = 2}, - [515] = {.lex_state = 315, .external_lex_state = 2}, - [516] = {.lex_state = 315, .external_lex_state = 2}, - [517] = {.lex_state = 315, .external_lex_state = 2}, - [518] = {.lex_state = 315, .external_lex_state = 2}, - [519] = {.lex_state = 315, .external_lex_state = 2}, - [520] = {.lex_state = 315, .external_lex_state = 2}, - [521] = {.lex_state = 315, .external_lex_state = 2}, - [522] = {.lex_state = 315, .external_lex_state = 2}, - [523] = {.lex_state = 315, .external_lex_state = 2}, - [524] = {.lex_state = 315, .external_lex_state = 2}, - [525] = {.lex_state = 315, .external_lex_state = 2}, - [526] = {.lex_state = 315, .external_lex_state = 2}, - [527] = {.lex_state = 315, .external_lex_state = 2}, - [528] = {.lex_state = 315, .external_lex_state = 2}, - [529] = {.lex_state = 315, .external_lex_state = 2}, - [530] = {.lex_state = 315, .external_lex_state = 2}, - [531] = {.lex_state = 315, .external_lex_state = 2}, - [532] = {.lex_state = 315, .external_lex_state = 2}, - [533] = {.lex_state = 315, .external_lex_state = 2}, - [534] = {.lex_state = 315, .external_lex_state = 2}, - [535] = {.lex_state = 315, .external_lex_state = 2}, - [536] = {.lex_state = 315, .external_lex_state = 2}, - [537] = {.lex_state = 315, .external_lex_state = 2}, - [538] = {.lex_state = 315, .external_lex_state = 2}, - [539] = {.lex_state = 315, .external_lex_state = 2}, - [540] = {.lex_state = 315, .external_lex_state = 2}, - [541] = {.lex_state = 315, .external_lex_state = 2}, - [542] = {.lex_state = 315, .external_lex_state = 2}, - [543] = {.lex_state = 315, .external_lex_state = 2}, - [544] = {.lex_state = 315, .external_lex_state = 2}, - [545] = {.lex_state = 315, .external_lex_state = 2}, - [546] = {.lex_state = 315, .external_lex_state = 2}, - [547] = {.lex_state = 315, .external_lex_state = 2}, - [548] = {.lex_state = 315, .external_lex_state = 2}, - [549] = {.lex_state = 315, .external_lex_state = 2}, - [550] = {.lex_state = 315, .external_lex_state = 2}, - [551] = {.lex_state = 315, .external_lex_state = 2}, - [552] = {.lex_state = 315, .external_lex_state = 2}, - [553] = {.lex_state = 315, .external_lex_state = 2}, - [554] = {.lex_state = 315, .external_lex_state = 2}, - [555] = {.lex_state = 315, .external_lex_state = 2}, - [556] = {.lex_state = 315, .external_lex_state = 2}, - [557] = {.lex_state = 315, .external_lex_state = 2}, - [558] = {.lex_state = 315, .external_lex_state = 2}, - [559] = {.lex_state = 315, .external_lex_state = 2}, - [560] = {.lex_state = 315, .external_lex_state = 2}, - [561] = {.lex_state = 315, .external_lex_state = 2}, - [562] = {.lex_state = 315, .external_lex_state = 2}, - [563] = {.lex_state = 315, .external_lex_state = 2}, - [564] = {.lex_state = 315, .external_lex_state = 2}, - [565] = {.lex_state = 315, .external_lex_state = 2}, - [566] = {.lex_state = 315, .external_lex_state = 2}, - [567] = {.lex_state = 315, .external_lex_state = 2}, - [568] = {.lex_state = 315, .external_lex_state = 2}, - [569] = {.lex_state = 315, .external_lex_state = 2}, - [570] = {.lex_state = 315, .external_lex_state = 2}, - [571] = {.lex_state = 315, .external_lex_state = 2}, - [572] = {.lex_state = 315, .external_lex_state = 2}, - [573] = {.lex_state = 315, .external_lex_state = 2}, - [574] = {.lex_state = 315, .external_lex_state = 2}, - [575] = {.lex_state = 315, .external_lex_state = 2}, - [576] = {.lex_state = 315, .external_lex_state = 2}, - [577] = {.lex_state = 315, .external_lex_state = 2}, - [578] = {.lex_state = 315, .external_lex_state = 2}, - [579] = {.lex_state = 315, .external_lex_state = 2}, - [580] = {.lex_state = 315, .external_lex_state = 2}, - [581] = {.lex_state = 315, .external_lex_state = 2}, - [582] = {.lex_state = 315, .external_lex_state = 2}, - [583] = {.lex_state = 315, .external_lex_state = 2}, - [584] = {.lex_state = 315, .external_lex_state = 2}, - [585] = {.lex_state = 315, .external_lex_state = 2}, - [586] = {.lex_state = 315, .external_lex_state = 2}, - [587] = {.lex_state = 315, .external_lex_state = 2}, - [588] = {.lex_state = 315, .external_lex_state = 2}, - [589] = {.lex_state = 315, .external_lex_state = 2}, - [590] = {.lex_state = 315, .external_lex_state = 2}, - [591] = {.lex_state = 315, .external_lex_state = 2}, - [592] = {.lex_state = 315, .external_lex_state = 2}, - [593] = {.lex_state = 315, .external_lex_state = 2}, - [594] = {.lex_state = 315, .external_lex_state = 2}, - [595] = {.lex_state = 315, .external_lex_state = 2}, - [596] = {.lex_state = 315, .external_lex_state = 2}, - [597] = {.lex_state = 315, .external_lex_state = 2}, - [598] = {.lex_state = 315, .external_lex_state = 2}, - [599] = {.lex_state = 315, .external_lex_state = 2}, - [600] = {.lex_state = 315, .external_lex_state = 2}, - [601] = {.lex_state = 315, .external_lex_state = 2}, - [602] = {.lex_state = 315, .external_lex_state = 2}, - [603] = {.lex_state = 315, .external_lex_state = 2}, - [604] = {.lex_state = 315, .external_lex_state = 2}, - [605] = {.lex_state = 315, .external_lex_state = 2}, - [606] = {.lex_state = 315, .external_lex_state = 2}, - [607] = {.lex_state = 315, .external_lex_state = 2}, - [608] = {.lex_state = 315, .external_lex_state = 2}, - [609] = {.lex_state = 315, .external_lex_state = 2}, - [610] = {.lex_state = 315, .external_lex_state = 2}, - [611] = {.lex_state = 315, .external_lex_state = 2}, - [612] = {.lex_state = 315, .external_lex_state = 2}, - [613] = {.lex_state = 315, .external_lex_state = 2}, - [614] = {.lex_state = 315, .external_lex_state = 2}, - [615] = {.lex_state = 315, .external_lex_state = 2}, - [616] = {.lex_state = 315, .external_lex_state = 2}, - [617] = {.lex_state = 315, .external_lex_state = 2}, - [618] = {.lex_state = 315, .external_lex_state = 2}, - [619] = {.lex_state = 315, .external_lex_state = 2}, - [620] = {.lex_state = 315, .external_lex_state = 2}, - [621] = {.lex_state = 315, .external_lex_state = 2}, - [622] = {.lex_state = 315, .external_lex_state = 2}, - [623] = {.lex_state = 315, .external_lex_state = 2}, - [624] = {.lex_state = 315, .external_lex_state = 2}, - [625] = {.lex_state = 315, .external_lex_state = 2}, - [626] = {.lex_state = 315, .external_lex_state = 2}, - [627] = {.lex_state = 315, .external_lex_state = 2}, - [628] = {.lex_state = 315, .external_lex_state = 2}, - [629] = {.lex_state = 315, .external_lex_state = 2}, - [630] = {.lex_state = 315, .external_lex_state = 2}, - [631] = {.lex_state = 315, .external_lex_state = 2}, - [632] = {.lex_state = 315, .external_lex_state = 2}, - [633] = {.lex_state = 315, .external_lex_state = 2}, - [634] = {.lex_state = 315, .external_lex_state = 2}, - [635] = {.lex_state = 315, .external_lex_state = 2}, - [636] = {.lex_state = 315, .external_lex_state = 2}, - [637] = {.lex_state = 315, .external_lex_state = 2}, - [638] = {.lex_state = 315, .external_lex_state = 2}, - [639] = {.lex_state = 315, .external_lex_state = 2}, - [640] = {.lex_state = 315, .external_lex_state = 2}, - [641] = {.lex_state = 315, .external_lex_state = 2}, - [642] = {.lex_state = 315, .external_lex_state = 2}, - [643] = {.lex_state = 315, .external_lex_state = 2}, - [644] = {.lex_state = 315, .external_lex_state = 2}, - [645] = {.lex_state = 315, .external_lex_state = 2}, - [646] = {.lex_state = 315, .external_lex_state = 2}, - [647] = {.lex_state = 315, .external_lex_state = 2}, - [648] = {.lex_state = 315, .external_lex_state = 2}, - [649] = {.lex_state = 315, .external_lex_state = 2}, - [650] = {.lex_state = 315, .external_lex_state = 2}, - [651] = {.lex_state = 315, .external_lex_state = 2}, - [652] = {.lex_state = 315, .external_lex_state = 2}, - [653] = {.lex_state = 315, .external_lex_state = 2}, - [654] = {.lex_state = 315, .external_lex_state = 2}, - [655] = {.lex_state = 315, .external_lex_state = 2}, - [656] = {.lex_state = 315, .external_lex_state = 2}, - [657] = {.lex_state = 315, .external_lex_state = 2}, - [658] = {.lex_state = 315, .external_lex_state = 2}, - [659] = {.lex_state = 315, .external_lex_state = 2}, - [660] = {.lex_state = 315, .external_lex_state = 2}, - [661] = {.lex_state = 315, .external_lex_state = 2}, - [662] = {.lex_state = 315, .external_lex_state = 2}, - [663] = {.lex_state = 315, .external_lex_state = 2}, - [664] = {.lex_state = 315, .external_lex_state = 2}, - [665] = {.lex_state = 315, .external_lex_state = 2}, - [666] = {.lex_state = 315, .external_lex_state = 2}, - [667] = {.lex_state = 315, .external_lex_state = 2}, - [668] = {.lex_state = 315, .external_lex_state = 2}, - [669] = {.lex_state = 315, .external_lex_state = 2}, - [670] = {.lex_state = 315, .external_lex_state = 2}, - [671] = {.lex_state = 315, .external_lex_state = 2}, - [672] = {.lex_state = 315, .external_lex_state = 2}, - [673] = {.lex_state = 315, .external_lex_state = 2}, - [674] = {.lex_state = 315, .external_lex_state = 2}, - [675] = {.lex_state = 315, .external_lex_state = 2}, - [676] = {.lex_state = 315, .external_lex_state = 2}, - [677] = {.lex_state = 315, .external_lex_state = 2}, - [678] = {.lex_state = 315, .external_lex_state = 2}, - [679] = {.lex_state = 315, .external_lex_state = 2}, - [680] = {.lex_state = 315, .external_lex_state = 2}, - [681] = {.lex_state = 315, .external_lex_state = 2}, - [682] = {.lex_state = 315, .external_lex_state = 2}, - [683] = {.lex_state = 315, .external_lex_state = 2}, - [684] = {.lex_state = 315, .external_lex_state = 2}, - [685] = {.lex_state = 315, .external_lex_state = 2}, - [686] = {.lex_state = 315, .external_lex_state = 2}, - [687] = {.lex_state = 315, .external_lex_state = 2}, - [688] = {.lex_state = 315, .external_lex_state = 2}, - [689] = {.lex_state = 315, .external_lex_state = 2}, - [690] = {.lex_state = 315, .external_lex_state = 2}, - [691] = {.lex_state = 315, .external_lex_state = 2}, - [692] = {.lex_state = 315, .external_lex_state = 2}, - [693] = {.lex_state = 315, .external_lex_state = 2}, - [694] = {.lex_state = 315, .external_lex_state = 2}, - [695] = {.lex_state = 315, .external_lex_state = 2}, - [696] = {.lex_state = 315, .external_lex_state = 2}, - [697] = {.lex_state = 315, .external_lex_state = 2}, - [698] = {.lex_state = 315, .external_lex_state = 2}, - [699] = {.lex_state = 315, .external_lex_state = 2}, - [700] = {.lex_state = 315, .external_lex_state = 2}, - [701] = {.lex_state = 315, .external_lex_state = 2}, - [702] = {.lex_state = 315, .external_lex_state = 2}, - [703] = {.lex_state = 315, .external_lex_state = 2}, - [704] = {.lex_state = 315, .external_lex_state = 2}, - [705] = {.lex_state = 315, .external_lex_state = 2}, - [706] = {.lex_state = 315, .external_lex_state = 2}, - [707] = {.lex_state = 315, .external_lex_state = 2}, - [708] = {.lex_state = 315, .external_lex_state = 2}, - [709] = {.lex_state = 315, .external_lex_state = 2}, - [710] = {.lex_state = 315, .external_lex_state = 2}, - [711] = {.lex_state = 315, .external_lex_state = 2}, - [712] = {.lex_state = 315, .external_lex_state = 2}, - [713] = {.lex_state = 315, .external_lex_state = 2}, - [714] = {.lex_state = 315, .external_lex_state = 2}, - [715] = {.lex_state = 315, .external_lex_state = 2}, - [716] = {.lex_state = 315, .external_lex_state = 2}, - [717] = {.lex_state = 315, .external_lex_state = 2}, - [718] = {.lex_state = 315, .external_lex_state = 2}, - [719] = {.lex_state = 315, .external_lex_state = 2}, - [720] = {.lex_state = 315, .external_lex_state = 2}, - [721] = {.lex_state = 315, .external_lex_state = 2}, - [722] = {.lex_state = 315, .external_lex_state = 2}, - [723] = {.lex_state = 315, .external_lex_state = 2}, - [724] = {.lex_state = 315, .external_lex_state = 2}, - [725] = {.lex_state = 315, .external_lex_state = 2}, - [726] = {.lex_state = 315, .external_lex_state = 2}, - [727] = {.lex_state = 315, .external_lex_state = 2}, - [728] = {.lex_state = 315, .external_lex_state = 2}, - [729] = {.lex_state = 315, .external_lex_state = 2}, - [730] = {.lex_state = 315, .external_lex_state = 2}, - [731] = {.lex_state = 315, .external_lex_state = 2}, - [732] = {.lex_state = 315, .external_lex_state = 2}, - [733] = {.lex_state = 315, .external_lex_state = 2}, - [734] = {.lex_state = 315, .external_lex_state = 2}, - [735] = {.lex_state = 315, .external_lex_state = 2}, - [736] = {.lex_state = 315, .external_lex_state = 2}, - [737] = {.lex_state = 315, .external_lex_state = 2}, - [738] = {.lex_state = 315, .external_lex_state = 2}, - [739] = {.lex_state = 315, .external_lex_state = 2}, - [740] = {.lex_state = 315, .external_lex_state = 2}, - [741] = {.lex_state = 315, .external_lex_state = 2}, - [742] = {.lex_state = 315, .external_lex_state = 2}, - [743] = {.lex_state = 315, .external_lex_state = 2}, - [744] = {.lex_state = 315, .external_lex_state = 2}, - [745] = {.lex_state = 315, .external_lex_state = 2}, - [746] = {.lex_state = 315, .external_lex_state = 2}, - [747] = {.lex_state = 315, .external_lex_state = 2}, - [748] = {.lex_state = 315, .external_lex_state = 2}, - [749] = {.lex_state = 315, .external_lex_state = 2}, - [750] = {.lex_state = 315, .external_lex_state = 2}, - [751] = {.lex_state = 315, .external_lex_state = 2}, - [752] = {.lex_state = 315, .external_lex_state = 2}, - [753] = {.lex_state = 315, .external_lex_state = 2}, - [754] = {.lex_state = 315, .external_lex_state = 2}, - [755] = {.lex_state = 315, .external_lex_state = 2}, - [756] = {.lex_state = 315, .external_lex_state = 2}, - [757] = {.lex_state = 315, .external_lex_state = 2}, - [758] = {.lex_state = 315, .external_lex_state = 2}, - [759] = {.lex_state = 315, .external_lex_state = 2}, - [760] = {.lex_state = 315, .external_lex_state = 2}, - [761] = {.lex_state = 315, .external_lex_state = 2}, - [762] = {.lex_state = 315, .external_lex_state = 2}, - [763] = {.lex_state = 315, .external_lex_state = 2}, - [764] = {.lex_state = 315, .external_lex_state = 2}, - [765] = {.lex_state = 315, .external_lex_state = 2}, - [766] = {.lex_state = 315, .external_lex_state = 2}, - [767] = {.lex_state = 315, .external_lex_state = 2}, - [768] = {.lex_state = 315, .external_lex_state = 2}, - [769] = {.lex_state = 315, .external_lex_state = 2}, - [770] = {.lex_state = 315, .external_lex_state = 2}, - [771] = {.lex_state = 315, .external_lex_state = 2}, - [772] = {.lex_state = 315, .external_lex_state = 2}, - [773] = {.lex_state = 315, .external_lex_state = 2}, - [774] = {.lex_state = 315, .external_lex_state = 2}, - [775] = {.lex_state = 315, .external_lex_state = 2}, - [776] = {.lex_state = 315, .external_lex_state = 2}, - [777] = {.lex_state = 315, .external_lex_state = 2}, - [778] = {.lex_state = 315, .external_lex_state = 2}, - [779] = {.lex_state = 315, .external_lex_state = 2}, - [780] = {.lex_state = 315, .external_lex_state = 2}, - [781] = {.lex_state = 315, .external_lex_state = 2}, - [782] = {.lex_state = 315, .external_lex_state = 2}, - [783] = {.lex_state = 315, .external_lex_state = 2}, - [784] = {.lex_state = 315, .external_lex_state = 2}, - [785] = {.lex_state = 315, .external_lex_state = 2}, - [786] = {.lex_state = 315, .external_lex_state = 2}, - [787] = {.lex_state = 315, .external_lex_state = 2}, - [788] = {.lex_state = 315, .external_lex_state = 2}, - [789] = {.lex_state = 315, .external_lex_state = 2}, - [790] = {.lex_state = 308, .external_lex_state = 3}, - [791] = {.lex_state = 303, .external_lex_state = 3}, - [792] = {.lex_state = 308, .external_lex_state = 3}, - [793] = {.lex_state = 308, .external_lex_state = 3}, - [794] = {.lex_state = 308, .external_lex_state = 4}, - [795] = {.lex_state = 303, .external_lex_state = 3}, - [796] = {.lex_state = 72, .external_lex_state = 4}, - [797] = {.lex_state = 303, .external_lex_state = 4}, - [798] = {.lex_state = 303, .external_lex_state = 3}, - [799] = {.lex_state = 70, .external_lex_state = 3}, - [800] = {.lex_state = 70, .external_lex_state = 4}, - [801] = {.lex_state = 308, .external_lex_state = 4}, - [802] = {.lex_state = 72, .external_lex_state = 3}, - [803] = {.lex_state = 308, .external_lex_state = 5}, - [804] = {.lex_state = 64, .external_lex_state = 3}, - [805] = {.lex_state = 303, .external_lex_state = 4}, - [806] = {.lex_state = 71, .external_lex_state = 3}, - [807] = {.lex_state = 302, .external_lex_state = 3}, - [808] = {.lex_state = 302, .external_lex_state = 3}, - [809] = {.lex_state = 302, .external_lex_state = 3}, - [810] = {.lex_state = 302, .external_lex_state = 3}, - [811] = {.lex_state = 78, .external_lex_state = 4}, - [812] = {.lex_state = 82, .external_lex_state = 3}, - [813] = {.lex_state = 63, .external_lex_state = 3}, - [814] = {.lex_state = 302, .external_lex_state = 3}, - [815] = {.lex_state = 308, .external_lex_state = 6}, - [816] = {.lex_state = 65, .external_lex_state = 3}, - [817] = {.lex_state = 303, .external_lex_state = 5}, - [818] = {.lex_state = 78, .external_lex_state = 3}, - [819] = {.lex_state = 306, .external_lex_state = 10}, - [820] = {.lex_state = 302, .external_lex_state = 3}, - [821] = {.lex_state = 302, .external_lex_state = 3}, - [822] = {.lex_state = 302, .external_lex_state = 3}, - [823] = {.lex_state = 302, .external_lex_state = 3}, - [824] = {.lex_state = 302, .external_lex_state = 3}, - [825] = {.lex_state = 74, .external_lex_state = 3}, - [826] = {.lex_state = 302, .external_lex_state = 3}, - [827] = {.lex_state = 302, .external_lex_state = 3}, - [828] = {.lex_state = 302, .external_lex_state = 3}, - [829] = {.lex_state = 302, .external_lex_state = 3}, - [830] = {.lex_state = 302, .external_lex_state = 3}, - [831] = {.lex_state = 306, .external_lex_state = 10}, - [832] = {.lex_state = 303, .external_lex_state = 6}, - [833] = {.lex_state = 302, .external_lex_state = 3}, - [834] = {.lex_state = 302, .external_lex_state = 3}, - [835] = {.lex_state = 302, .external_lex_state = 3}, - [836] = {.lex_state = 302, .external_lex_state = 3}, - [837] = {.lex_state = 84, .external_lex_state = 3}, - [838] = {.lex_state = 302, .external_lex_state = 4}, - [839] = {.lex_state = 302, .external_lex_state = 3}, - [840] = {.lex_state = 302, .external_lex_state = 3}, - [841] = {.lex_state = 302, .external_lex_state = 3}, - [842] = {.lex_state = 306, .external_lex_state = 10}, - [843] = {.lex_state = 302, .external_lex_state = 3}, - [844] = {.lex_state = 302, .external_lex_state = 3}, - [845] = {.lex_state = 302, .external_lex_state = 3}, - [846] = {.lex_state = 302, .external_lex_state = 3}, - [847] = {.lex_state = 302, .external_lex_state = 4}, - [848] = {.lex_state = 302, .external_lex_state = 3}, - [849] = {.lex_state = 302, .external_lex_state = 3}, - [850] = {.lex_state = 302, .external_lex_state = 3}, - [851] = {.lex_state = 302, .external_lex_state = 3}, - [852] = {.lex_state = 302, .external_lex_state = 3}, - [853] = {.lex_state = 302, .external_lex_state = 4}, - [854] = {.lex_state = 302, .external_lex_state = 3}, - [855] = {.lex_state = 302, .external_lex_state = 3}, - [856] = {.lex_state = 302, .external_lex_state = 3}, - [857] = {.lex_state = 302, .external_lex_state = 4}, - [858] = {.lex_state = 302, .external_lex_state = 3}, - [859] = {.lex_state = 302, .external_lex_state = 4}, - [860] = {.lex_state = 302, .external_lex_state = 3}, - [861] = {.lex_state = 302, .external_lex_state = 3}, - [862] = {.lex_state = 302, .external_lex_state = 3}, - [863] = {.lex_state = 302, .external_lex_state = 3}, - [864] = {.lex_state = 302, .external_lex_state = 3}, - [865] = {.lex_state = 302, .external_lex_state = 3}, - [866] = {.lex_state = 306, .external_lex_state = 10}, - [867] = {.lex_state = 302, .external_lex_state = 3}, - [868] = {.lex_state = 302, .external_lex_state = 3}, - [869] = {.lex_state = 302, .external_lex_state = 3}, - [870] = {.lex_state = 304, .external_lex_state = 3}, - [871] = {.lex_state = 302, .external_lex_state = 3}, - [872] = {.lex_state = 306, .external_lex_state = 10}, - [873] = {.lex_state = 307, .external_lex_state = 3}, - [874] = {.lex_state = 306, .external_lex_state = 11}, - [875] = {.lex_state = 306, .external_lex_state = 10}, - [876] = {.lex_state = 60, .external_lex_state = 4}, - [877] = {.lex_state = 302, .external_lex_state = 3}, - [878] = {.lex_state = 302, .external_lex_state = 3}, - [879] = {.lex_state = 302, .external_lex_state = 3}, - [880] = {.lex_state = 60, .external_lex_state = 4}, - [881] = {.lex_state = 302, .external_lex_state = 4}, - [882] = {.lex_state = 302, .external_lex_state = 3}, - [883] = {.lex_state = 307, .external_lex_state = 3}, - [884] = {.lex_state = 302, .external_lex_state = 3}, - [885] = {.lex_state = 302, .external_lex_state = 4}, - [886] = {.lex_state = 302, .external_lex_state = 4}, - [887] = {.lex_state = 302, .external_lex_state = 3}, - [888] = {.lex_state = 302, .external_lex_state = 3}, - [889] = {.lex_state = 302, .external_lex_state = 3}, - [890] = {.lex_state = 302, .external_lex_state = 3}, - [891] = {.lex_state = 302, .external_lex_state = 3}, - [892] = {.lex_state = 302, .external_lex_state = 4}, - [893] = {.lex_state = 305, .external_lex_state = 3}, - [894] = {.lex_state = 307, .external_lex_state = 3}, - [895] = {.lex_state = 60, .external_lex_state = 4}, - [896] = {.lex_state = 302, .external_lex_state = 4}, - [897] = {.lex_state = 302, .external_lex_state = 4}, - [898] = {.lex_state = 302, .external_lex_state = 3}, - [899] = {.lex_state = 306, .external_lex_state = 10}, - [900] = {.lex_state = 306, .external_lex_state = 10}, - [901] = {.lex_state = 302, .external_lex_state = 3}, - [902] = {.lex_state = 302, .external_lex_state = 4}, - [903] = {.lex_state = 305, .external_lex_state = 3}, - [904] = {.lex_state = 302, .external_lex_state = 4}, - [905] = {.lex_state = 60, .external_lex_state = 4}, - [906] = {.lex_state = 302, .external_lex_state = 4}, - [907] = {.lex_state = 302, .external_lex_state = 4}, - [908] = {.lex_state = 302, .external_lex_state = 3}, - [909] = {.lex_state = 302, .external_lex_state = 4}, - [910] = {.lex_state = 302, .external_lex_state = 4}, - [911] = {.lex_state = 307, .external_lex_state = 3}, - [912] = {.lex_state = 302, .external_lex_state = 3}, - [913] = {.lex_state = 307, .external_lex_state = 3}, - [914] = {.lex_state = 306, .external_lex_state = 3}, - [915] = {.lex_state = 60, .external_lex_state = 4}, - [916] = {.lex_state = 302, .external_lex_state = 3}, - [917] = {.lex_state = 302, .external_lex_state = 4}, - [918] = {.lex_state = 302, .external_lex_state = 3}, - [919] = {.lex_state = 302, .external_lex_state = 3}, - [920] = {.lex_state = 306, .external_lex_state = 11}, - [921] = {.lex_state = 306, .external_lex_state = 10}, - [922] = {.lex_state = 302, .external_lex_state = 4}, - [923] = {.lex_state = 305, .external_lex_state = 3}, - [924] = {.lex_state = 305, .external_lex_state = 3}, - [925] = {.lex_state = 304, .external_lex_state = 3}, - [926] = {.lex_state = 307, .external_lex_state = 3}, - [927] = {.lex_state = 307, .external_lex_state = 3}, - [928] = {.lex_state = 309, .external_lex_state = 3}, - [929] = {.lex_state = 307, .external_lex_state = 3}, - [930] = {.lex_state = 306, .external_lex_state = 3}, - [931] = {.lex_state = 60, .external_lex_state = 3}, - [932] = {.lex_state = 302, .external_lex_state = 4}, - [933] = {.lex_state = 60, .external_lex_state = 3}, - [934] = {.lex_state = 302, .external_lex_state = 4}, - [935] = {.lex_state = 60, .external_lex_state = 3}, - [936] = {.lex_state = 60, .external_lex_state = 3}, - [937] = {.lex_state = 302, .external_lex_state = 4}, - [938] = {.lex_state = 302, .external_lex_state = 5}, - [939] = {.lex_state = 306, .external_lex_state = 11}, - [940] = {.lex_state = 309, .external_lex_state = 3}, - [941] = {.lex_state = 302, .external_lex_state = 4}, - [942] = {.lex_state = 302, .external_lex_state = 4}, - [943] = {.lex_state = 60, .external_lex_state = 3}, - [944] = {.lex_state = 306, .external_lex_state = 3}, - [945] = {.lex_state = 302, .external_lex_state = 4}, - [946] = {.lex_state = 302, .external_lex_state = 4}, - [947] = {.lex_state = 302, .external_lex_state = 4}, - [948] = {.lex_state = 306, .external_lex_state = 3}, - [949] = {.lex_state = 306, .external_lex_state = 3}, - [950] = {.lex_state = 302, .external_lex_state = 4}, - [951] = {.lex_state = 306, .external_lex_state = 3}, - [952] = {.lex_state = 307, .external_lex_state = 3}, - [953] = {.lex_state = 302, .external_lex_state = 4}, - [954] = {.lex_state = 302, .external_lex_state = 4}, - [955] = {.lex_state = 302, .external_lex_state = 5}, - [956] = {.lex_state = 302, .external_lex_state = 5}, - [957] = {.lex_state = 302, .external_lex_state = 5}, - [958] = {.lex_state = 302, .external_lex_state = 5}, - [959] = {.lex_state = 302, .external_lex_state = 4}, - [960] = {.lex_state = 302, .external_lex_state = 4}, - [961] = {.lex_state = 302, .external_lex_state = 4}, - [962] = {.lex_state = 306, .external_lex_state = 3}, - [963] = {.lex_state = 302, .external_lex_state = 4}, - [964] = {.lex_state = 302, .external_lex_state = 4}, - [965] = {.lex_state = 307, .external_lex_state = 3}, - [966] = {.lex_state = 302, .external_lex_state = 4}, - [967] = {.lex_state = 306, .external_lex_state = 3}, - [968] = {.lex_state = 307, .external_lex_state = 3}, - [969] = {.lex_state = 306, .external_lex_state = 3}, - [970] = {.lex_state = 305, .external_lex_state = 3}, - [971] = {.lex_state = 306, .external_lex_state = 3}, - [972] = {.lex_state = 306, .external_lex_state = 3}, - [973] = {.lex_state = 306, .external_lex_state = 3}, - [974] = {.lex_state = 306, .external_lex_state = 3}, - [975] = {.lex_state = 306, .external_lex_state = 3}, - [976] = {.lex_state = 306, .external_lex_state = 3}, - [977] = {.lex_state = 60, .external_lex_state = 4}, - [978] = {.lex_state = 306, .external_lex_state = 3}, - [979] = {.lex_state = 302, .external_lex_state = 4}, - [980] = {.lex_state = 59, .external_lex_state = 3}, - [981] = {.lex_state = 306, .external_lex_state = 3}, - [982] = {.lex_state = 302, .external_lex_state = 6}, - [983] = {.lex_state = 306, .external_lex_state = 3}, - [984] = {.lex_state = 302, .external_lex_state = 6}, - [985] = {.lex_state = 302, .external_lex_state = 6}, - [986] = {.lex_state = 302, .external_lex_state = 4}, - [987] = {.lex_state = 302, .external_lex_state = 4}, - [988] = {.lex_state = 302, .external_lex_state = 4}, - [989] = {.lex_state = 306, .external_lex_state = 3}, - [990] = {.lex_state = 302, .external_lex_state = 4}, - [991] = {.lex_state = 306, .external_lex_state = 3}, - [992] = {.lex_state = 306, .external_lex_state = 3}, - [993] = {.lex_state = 309, .external_lex_state = 3}, - [994] = {.lex_state = 302, .external_lex_state = 4}, - [995] = {.lex_state = 302, .external_lex_state = 4}, - [996] = {.lex_state = 306, .external_lex_state = 3}, - [997] = {.lex_state = 306, .external_lex_state = 3}, - [998] = {.lex_state = 307, .external_lex_state = 3}, - [999] = {.lex_state = 306, .external_lex_state = 3}, - [1000] = {.lex_state = 306, .external_lex_state = 3}, - [1001] = {.lex_state = 306, .external_lex_state = 3}, - [1002] = {.lex_state = 306, .external_lex_state = 3}, - [1003] = {.lex_state = 306, .external_lex_state = 3}, - [1004] = {.lex_state = 306, .external_lex_state = 3}, - [1005] = {.lex_state = 306, .external_lex_state = 3}, - [1006] = {.lex_state = 59, .external_lex_state = 3}, - [1007] = {.lex_state = 305, .external_lex_state = 3}, - [1008] = {.lex_state = 60, .external_lex_state = 4}, - [1009] = {.lex_state = 306, .external_lex_state = 3}, - [1010] = {.lex_state = 59, .external_lex_state = 3}, - [1011] = {.lex_state = 306, .external_lex_state = 3}, - [1012] = {.lex_state = 60, .external_lex_state = 4}, - [1013] = {.lex_state = 302, .external_lex_state = 4}, - [1014] = {.lex_state = 306, .external_lex_state = 3}, - [1015] = {.lex_state = 306, .external_lex_state = 3}, - [1016] = {.lex_state = 302, .external_lex_state = 6}, - [1017] = {.lex_state = 306, .external_lex_state = 3}, - [1018] = {.lex_state = 306, .external_lex_state = 3}, - [1019] = {.lex_state = 306, .external_lex_state = 3}, - [1020] = {.lex_state = 302, .external_lex_state = 4}, - [1021] = {.lex_state = 306, .external_lex_state = 3}, - [1022] = {.lex_state = 60, .external_lex_state = 4}, - [1023] = {.lex_state = 306, .external_lex_state = 3}, - [1024] = {.lex_state = 306, .external_lex_state = 3}, - [1025] = {.lex_state = 306, .external_lex_state = 3}, - [1026] = {.lex_state = 306, .external_lex_state = 3}, - [1027] = {.lex_state = 306, .external_lex_state = 3}, - [1028] = {.lex_state = 306, .external_lex_state = 3}, - [1029] = {.lex_state = 307, .external_lex_state = 3}, - [1030] = {.lex_state = 306, .external_lex_state = 3}, - [1031] = {.lex_state = 304, .external_lex_state = 4}, - [1032] = {.lex_state = 60, .external_lex_state = 4}, - [1033] = {.lex_state = 306, .external_lex_state = 3}, - [1034] = {.lex_state = 306, .external_lex_state = 3}, - [1035] = {.lex_state = 306, .external_lex_state = 3}, - [1036] = {.lex_state = 306, .external_lex_state = 10}, - [1037] = {.lex_state = 305, .external_lex_state = 3}, - [1038] = {.lex_state = 306, .external_lex_state = 3}, - [1039] = {.lex_state = 306, .external_lex_state = 3}, - [1040] = {.lex_state = 306, .external_lex_state = 3}, - [1041] = {.lex_state = 306, .external_lex_state = 3}, - [1042] = {.lex_state = 306, .external_lex_state = 11}, - [1043] = {.lex_state = 306, .external_lex_state = 3}, - [1044] = {.lex_state = 306, .external_lex_state = 3}, - [1045] = {.lex_state = 306, .external_lex_state = 3}, - [1046] = {.lex_state = 306, .external_lex_state = 3}, - [1047] = {.lex_state = 306, .external_lex_state = 11}, - [1048] = {.lex_state = 306, .external_lex_state = 3}, - [1049] = {.lex_state = 306, .external_lex_state = 3}, - [1050] = {.lex_state = 306, .external_lex_state = 3}, - [1051] = {.lex_state = 306, .external_lex_state = 3}, - [1052] = {.lex_state = 306, .external_lex_state = 3}, - [1053] = {.lex_state = 306, .external_lex_state = 3}, - [1054] = {.lex_state = 306, .external_lex_state = 3}, - [1055] = {.lex_state = 306, .external_lex_state = 3}, - [1056] = {.lex_state = 306, .external_lex_state = 3}, - [1057] = {.lex_state = 306, .external_lex_state = 3}, - [1058] = {.lex_state = 60, .external_lex_state = 4}, - [1059] = {.lex_state = 306, .external_lex_state = 3}, - [1060] = {.lex_state = 306, .external_lex_state = 3}, - [1061] = {.lex_state = 305, .external_lex_state = 3}, - [1062] = {.lex_state = 302, .external_lex_state = 6}, - [1063] = {.lex_state = 60, .external_lex_state = 4}, - [1064] = {.lex_state = 87, .external_lex_state = 11}, - [1065] = {.lex_state = 61, .external_lex_state = 3}, - [1066] = {.lex_state = 306, .external_lex_state = 3}, - [1067] = {.lex_state = 61, .external_lex_state = 3}, - [1068] = {.lex_state = 306, .external_lex_state = 3}, - [1069] = {.lex_state = 61, .external_lex_state = 3}, - [1070] = {.lex_state = 87, .external_lex_state = 11}, - [1071] = {.lex_state = 306, .external_lex_state = 10}, - [1072] = {.lex_state = 61, .external_lex_state = 3}, - [1073] = {.lex_state = 306, .external_lex_state = 3}, - [1074] = {.lex_state = 60, .external_lex_state = 4}, - [1075] = {.lex_state = 306, .external_lex_state = 3}, - [1076] = {.lex_state = 306, .external_lex_state = 3}, - [1077] = {.lex_state = 306, .external_lex_state = 3}, - [1078] = {.lex_state = 306, .external_lex_state = 10}, - [1079] = {.lex_state = 306, .external_lex_state = 3}, - [1080] = {.lex_state = 306, .external_lex_state = 3}, - [1081] = {.lex_state = 306, .external_lex_state = 3}, - [1082] = {.lex_state = 306, .external_lex_state = 3}, - [1083] = {.lex_state = 306, .external_lex_state = 3}, - [1084] = {.lex_state = 306, .external_lex_state = 3}, - [1085] = {.lex_state = 307, .external_lex_state = 3}, - [1086] = {.lex_state = 61, .external_lex_state = 3}, - [1087] = {.lex_state = 306, .external_lex_state = 3}, - [1088] = {.lex_state = 307, .external_lex_state = 3}, - [1089] = {.lex_state = 309, .external_lex_state = 3}, - [1090] = {.lex_state = 61, .external_lex_state = 3}, - [1091] = {.lex_state = 306, .external_lex_state = 3}, - [1092] = {.lex_state = 306, .external_lex_state = 3}, - [1093] = {.lex_state = 306, .external_lex_state = 3}, - [1094] = {.lex_state = 306, .external_lex_state = 3}, - [1095] = {.lex_state = 60, .external_lex_state = 4}, - [1096] = {.lex_state = 59, .external_lex_state = 3}, - [1097] = {.lex_state = 59, .external_lex_state = 3}, - [1098] = {.lex_state = 306, .external_lex_state = 3}, - [1099] = {.lex_state = 302, .external_lex_state = 3}, - [1100] = {.lex_state = 302, .external_lex_state = 5}, - [1101] = {.lex_state = 306, .external_lex_state = 3}, - [1102] = {.lex_state = 306, .external_lex_state = 3}, - [1103] = {.lex_state = 306, .external_lex_state = 11}, - [1104] = {.lex_state = 307, .external_lex_state = 3}, - [1105] = {.lex_state = 302, .external_lex_state = 5}, - [1106] = {.lex_state = 302, .external_lex_state = 5}, - [1107] = {.lex_state = 60, .external_lex_state = 4}, - [1108] = {.lex_state = 302, .external_lex_state = 5}, - [1109] = {.lex_state = 302, .external_lex_state = 5}, - [1110] = {.lex_state = 306, .external_lex_state = 11}, - [1111] = {.lex_state = 302, .external_lex_state = 5}, - [1112] = {.lex_state = 306, .external_lex_state = 3}, - [1113] = {.lex_state = 302, .external_lex_state = 5}, - [1114] = {.lex_state = 60, .external_lex_state = 3}, - [1115] = {.lex_state = 302, .external_lex_state = 5}, - [1116] = {.lex_state = 309, .external_lex_state = 4}, - [1117] = {.lex_state = 302, .external_lex_state = 4}, - [1118] = {.lex_state = 60, .external_lex_state = 4}, - [1119] = {.lex_state = 302, .external_lex_state = 4}, - [1120] = {.lex_state = 302, .external_lex_state = 4}, - [1121] = {.lex_state = 302, .external_lex_state = 4}, - [1122] = {.lex_state = 302, .external_lex_state = 4}, - [1123] = {.lex_state = 302, .external_lex_state = 4}, - [1124] = {.lex_state = 302, .external_lex_state = 4}, - [1125] = {.lex_state = 302, .external_lex_state = 4}, - [1126] = {.lex_state = 302, .external_lex_state = 4}, - [1127] = {.lex_state = 302, .external_lex_state = 4}, - [1128] = {.lex_state = 302, .external_lex_state = 4}, - [1129] = {.lex_state = 302, .external_lex_state = 4}, - [1130] = {.lex_state = 302, .external_lex_state = 4}, - [1131] = {.lex_state = 302, .external_lex_state = 4}, - [1132] = {.lex_state = 60, .external_lex_state = 4}, - [1133] = {.lex_state = 306, .external_lex_state = 11}, - [1134] = {.lex_state = 305, .external_lex_state = 4}, - [1135] = {.lex_state = 302, .external_lex_state = 4}, - [1136] = {.lex_state = 305, .external_lex_state = 4}, - [1137] = {.lex_state = 305, .external_lex_state = 4}, - [1138] = {.lex_state = 306, .external_lex_state = 3}, - [1139] = {.lex_state = 306, .external_lex_state = 12}, - [1140] = {.lex_state = 302, .external_lex_state = 4}, - [1141] = {.lex_state = 60, .external_lex_state = 4}, - [1142] = {.lex_state = 60, .external_lex_state = 3}, - [1143] = {.lex_state = 60, .external_lex_state = 4}, - [1144] = {.lex_state = 305, .external_lex_state = 4}, - [1145] = {.lex_state = 60, .external_lex_state = 4}, - [1146] = {.lex_state = 307, .external_lex_state = 3}, - [1147] = {.lex_state = 60, .external_lex_state = 3}, - [1148] = {.lex_state = 60, .external_lex_state = 4}, - [1149] = {.lex_state = 307, .external_lex_state = 4}, - [1150] = {.lex_state = 307, .external_lex_state = 3}, - [1151] = {.lex_state = 306, .external_lex_state = 12}, - [1152] = {.lex_state = 60, .external_lex_state = 3}, - [1153] = {.lex_state = 307, .external_lex_state = 4}, - [1154] = {.lex_state = 307, .external_lex_state = 4}, - [1155] = {.lex_state = 306, .external_lex_state = 11}, - [1156] = {.lex_state = 306, .external_lex_state = 3}, - [1157] = {.lex_state = 309, .external_lex_state = 4}, - [1158] = {.lex_state = 307, .external_lex_state = 4}, - [1159] = {.lex_state = 87, .external_lex_state = 11}, - [1160] = {.lex_state = 307, .external_lex_state = 3}, - [1161] = {.lex_state = 307, .external_lex_state = 4}, - [1162] = {.lex_state = 307, .external_lex_state = 3}, - [1163] = {.lex_state = 60, .external_lex_state = 4}, - [1164] = {.lex_state = 302, .external_lex_state = 5}, - [1165] = {.lex_state = 60, .external_lex_state = 4}, - [1166] = {.lex_state = 60, .external_lex_state = 3}, - [1167] = {.lex_state = 68, .external_lex_state = 10}, - [1168] = {.lex_state = 60, .external_lex_state = 3}, - [1169] = {.lex_state = 60, .external_lex_state = 4}, - [1170] = {.lex_state = 60, .external_lex_state = 4}, - [1171] = {.lex_state = 60, .external_lex_state = 4}, - [1172] = {.lex_state = 60, .external_lex_state = 4}, - [1173] = {.lex_state = 306, .external_lex_state = 3}, - [1174] = {.lex_state = 306, .external_lex_state = 3}, - [1175] = {.lex_state = 87, .external_lex_state = 10}, - [1176] = {.lex_state = 60, .external_lex_state = 3}, - [1177] = {.lex_state = 87, .external_lex_state = 10}, - [1178] = {.lex_state = 68, .external_lex_state = 10}, - [1179] = {.lex_state = 60, .external_lex_state = 3}, - [1180] = {.lex_state = 60, .external_lex_state = 4}, - [1181] = {.lex_state = 60, .external_lex_state = 4}, - [1182] = {.lex_state = 60, .external_lex_state = 4}, - [1183] = {.lex_state = 302, .external_lex_state = 4}, - [1184] = {.lex_state = 60, .external_lex_state = 4}, - [1185] = {.lex_state = 60, .external_lex_state = 3}, - [1186] = {.lex_state = 60, .external_lex_state = 4}, - [1187] = {.lex_state = 60, .external_lex_state = 3}, - [1188] = {.lex_state = 306, .external_lex_state = 3}, - [1189] = {.lex_state = 60, .external_lex_state = 3}, - [1190] = {.lex_state = 306, .external_lex_state = 4}, - [1191] = {.lex_state = 61, .external_lex_state = 3}, - [1192] = {.lex_state = 302, .external_lex_state = 5}, - [1193] = {.lex_state = 306, .external_lex_state = 4}, - [1194] = {.lex_state = 87, .external_lex_state = 10}, - [1195] = {.lex_state = 61, .external_lex_state = 3}, - [1196] = {.lex_state = 61, .external_lex_state = 3}, - [1197] = {.lex_state = 306, .external_lex_state = 3}, - [1198] = {.lex_state = 302, .external_lex_state = 5}, - [1199] = {.lex_state = 306, .external_lex_state = 3}, - [1200] = {.lex_state = 60, .external_lex_state = 3}, - [1201] = {.lex_state = 306, .external_lex_state = 3}, - [1202] = {.lex_state = 306, .external_lex_state = 3}, - [1203] = {.lex_state = 59, .external_lex_state = 3}, - [1204] = {.lex_state = 306, .external_lex_state = 3}, - [1205] = {.lex_state = 302, .external_lex_state = 6}, - [1206] = {.lex_state = 302, .external_lex_state = 6}, - [1207] = {.lex_state = 60, .external_lex_state = 3}, - [1208] = {.lex_state = 79, .external_lex_state = 4}, - [1209] = {.lex_state = 59, .external_lex_state = 3}, - [1210] = {.lex_state = 59, .external_lex_state = 3}, - [1211] = {.lex_state = 306, .external_lex_state = 3}, - [1212] = {.lex_state = 68, .external_lex_state = 10}, - [1213] = {.lex_state = 306, .external_lex_state = 3}, - [1214] = {.lex_state = 306, .external_lex_state = 3}, - [1215] = {.lex_state = 306, .external_lex_state = 3}, - [1216] = {.lex_state = 306, .external_lex_state = 3}, - [1217] = {.lex_state = 306, .external_lex_state = 3}, - [1218] = {.lex_state = 306, .external_lex_state = 3}, - [1219] = {.lex_state = 306, .external_lex_state = 3}, - [1220] = {.lex_state = 306, .external_lex_state = 3}, - [1221] = {.lex_state = 59, .external_lex_state = 3}, - [1222] = {.lex_state = 306, .external_lex_state = 13}, - [1223] = {.lex_state = 306, .external_lex_state = 3}, - [1224] = {.lex_state = 302, .external_lex_state = 5}, - [1225] = {.lex_state = 306, .external_lex_state = 13}, - [1226] = {.lex_state = 306, .external_lex_state = 3}, - [1227] = {.lex_state = 306, .external_lex_state = 3}, - [1228] = {.lex_state = 302, .external_lex_state = 6}, - [1229] = {.lex_state = 306, .external_lex_state = 3}, - [1230] = {.lex_state = 306, .external_lex_state = 3}, - [1231] = {.lex_state = 302, .external_lex_state = 5}, - [1232] = {.lex_state = 306, .external_lex_state = 3}, - [1233] = {.lex_state = 302, .external_lex_state = 5}, - [1234] = {.lex_state = 302, .external_lex_state = 5}, - [1235] = {.lex_state = 306, .external_lex_state = 3}, - [1236] = {.lex_state = 302, .external_lex_state = 5}, - [1237] = {.lex_state = 306, .external_lex_state = 3}, - [1238] = {.lex_state = 306, .external_lex_state = 3}, - [1239] = {.lex_state = 302, .external_lex_state = 6}, - [1240] = {.lex_state = 306, .external_lex_state = 3}, - [1241] = {.lex_state = 306, .external_lex_state = 3}, - [1242] = {.lex_state = 59, .external_lex_state = 3}, - [1243] = {.lex_state = 306, .external_lex_state = 3}, - [1244] = {.lex_state = 59, .external_lex_state = 3}, - [1245] = {.lex_state = 307, .external_lex_state = 4}, - [1246] = {.lex_state = 306, .external_lex_state = 3}, - [1247] = {.lex_state = 306, .external_lex_state = 3}, - [1248] = {.lex_state = 302, .external_lex_state = 6}, - [1249] = {.lex_state = 302, .external_lex_state = 5}, - [1250] = {.lex_state = 307, .external_lex_state = 4}, - [1251] = {.lex_state = 307, .external_lex_state = 4}, - [1252] = {.lex_state = 306, .external_lex_state = 3}, - [1253] = {.lex_state = 61, .external_lex_state = 3}, - [1254] = {.lex_state = 306, .external_lex_state = 3}, - [1255] = {.lex_state = 302, .external_lex_state = 5}, - [1256] = {.lex_state = 302, .external_lex_state = 5}, - [1257] = {.lex_state = 61, .external_lex_state = 3}, - [1258] = {.lex_state = 307, .external_lex_state = 4}, - [1259] = {.lex_state = 302, .external_lex_state = 5}, - [1260] = {.lex_state = 302, .external_lex_state = 6}, - [1261] = {.lex_state = 306, .external_lex_state = 3}, - [1262] = {.lex_state = 306, .external_lex_state = 3}, - [1263] = {.lex_state = 306, .external_lex_state = 3}, - [1264] = {.lex_state = 306, .external_lex_state = 3}, - [1265] = {.lex_state = 302, .external_lex_state = 5}, - [1266] = {.lex_state = 306, .external_lex_state = 3}, - [1267] = {.lex_state = 306, .external_lex_state = 3}, - [1268] = {.lex_state = 306, .external_lex_state = 3}, - [1269] = {.lex_state = 61, .external_lex_state = 3}, - [1270] = {.lex_state = 306, .external_lex_state = 3}, - [1271] = {.lex_state = 302, .external_lex_state = 5}, - [1272] = {.lex_state = 306, .external_lex_state = 3}, - [1273] = {.lex_state = 306, .external_lex_state = 3}, - [1274] = {.lex_state = 302, .external_lex_state = 5}, - [1275] = {.lex_state = 306, .external_lex_state = 3}, - [1276] = {.lex_state = 306, .external_lex_state = 3}, - [1277] = {.lex_state = 306, .external_lex_state = 3}, - [1278] = {.lex_state = 307, .external_lex_state = 4}, - [1279] = {.lex_state = 306, .external_lex_state = 3}, - [1280] = {.lex_state = 306, .external_lex_state = 3}, - [1281] = {.lex_state = 306, .external_lex_state = 3}, - [1282] = {.lex_state = 306, .external_lex_state = 3}, - [1283] = {.lex_state = 306, .external_lex_state = 3}, - [1284] = {.lex_state = 306, .external_lex_state = 3}, - [1285] = {.lex_state = 306, .external_lex_state = 3}, - [1286] = {.lex_state = 306, .external_lex_state = 3}, - [1287] = {.lex_state = 61, .external_lex_state = 3}, - [1288] = {.lex_state = 60, .external_lex_state = 3}, - [1289] = {.lex_state = 60, .external_lex_state = 3}, - [1290] = {.lex_state = 60, .external_lex_state = 3}, - [1291] = {.lex_state = 60, .external_lex_state = 3}, - [1292] = {.lex_state = 306, .external_lex_state = 12}, - [1293] = {.lex_state = 60, .external_lex_state = 3}, - [1294] = {.lex_state = 302, .external_lex_state = 6}, - [1295] = {.lex_state = 306, .external_lex_state = 3}, - [1296] = {.lex_state = 306, .external_lex_state = 3}, - [1297] = {.lex_state = 306, .external_lex_state = 3}, - [1298] = {.lex_state = 309, .external_lex_state = 10}, - [1299] = {.lex_state = 60, .external_lex_state = 3}, - [1300] = {.lex_state = 306, .external_lex_state = 3}, - [1301] = {.lex_state = 59, .external_lex_state = 3}, - [1302] = {.lex_state = 60, .external_lex_state = 3}, - [1303] = {.lex_state = 83, .external_lex_state = 10}, - [1304] = {.lex_state = 60, .external_lex_state = 3}, - [1305] = {.lex_state = 306, .external_lex_state = 4}, - [1306] = {.lex_state = 306, .external_lex_state = 3}, - [1307] = {.lex_state = 306, .external_lex_state = 3}, - [1308] = {.lex_state = 61, .external_lex_state = 3}, - [1309] = {.lex_state = 59, .external_lex_state = 3}, - [1310] = {.lex_state = 306, .external_lex_state = 3}, - [1311] = {.lex_state = 306, .external_lex_state = 3}, - [1312] = {.lex_state = 302, .external_lex_state = 6}, - [1313] = {.lex_state = 309, .external_lex_state = 10}, - [1314] = {.lex_state = 302, .external_lex_state = 5}, - [1315] = {.lex_state = 83, .external_lex_state = 10}, - [1316] = {.lex_state = 60, .external_lex_state = 3}, - [1317] = {.lex_state = 306, .external_lex_state = 4}, - [1318] = {.lex_state = 60, .external_lex_state = 3}, - [1319] = {.lex_state = 306, .external_lex_state = 4}, - [1320] = {.lex_state = 302, .external_lex_state = 5}, - [1321] = {.lex_state = 306, .external_lex_state = 3}, - [1322] = {.lex_state = 61, .external_lex_state = 3}, - [1323] = {.lex_state = 302, .external_lex_state = 5}, - [1324] = {.lex_state = 306, .external_lex_state = 4}, - [1325] = {.lex_state = 306, .external_lex_state = 4}, - [1326] = {.lex_state = 60, .external_lex_state = 3}, - [1327] = {.lex_state = 60, .external_lex_state = 3}, - [1328] = {.lex_state = 61, .external_lex_state = 3}, - [1329] = {.lex_state = 306, .external_lex_state = 4}, - [1330] = {.lex_state = 306, .external_lex_state = 3}, - [1331] = {.lex_state = 306, .external_lex_state = 3}, - [1332] = {.lex_state = 306, .external_lex_state = 3}, - [1333] = {.lex_state = 59, .external_lex_state = 3}, - [1334] = {.lex_state = 306, .external_lex_state = 3}, - [1335] = {.lex_state = 60, .external_lex_state = 3}, - [1336] = {.lex_state = 302, .external_lex_state = 6}, - [1337] = {.lex_state = 60, .external_lex_state = 3}, - [1338] = {.lex_state = 306, .external_lex_state = 3}, - [1339] = {.lex_state = 306, .external_lex_state = 3}, - [1340] = {.lex_state = 306, .external_lex_state = 3}, - [1341] = {.lex_state = 306, .external_lex_state = 3}, - [1342] = {.lex_state = 306, .external_lex_state = 3}, - [1343] = {.lex_state = 306, .external_lex_state = 3}, - [1344] = {.lex_state = 306, .external_lex_state = 3}, - [1345] = {.lex_state = 306, .external_lex_state = 3}, - [1346] = {.lex_state = 306, .external_lex_state = 3}, - [1347] = {.lex_state = 306, .external_lex_state = 3}, - [1348] = {.lex_state = 304, .external_lex_state = 4}, - [1349] = {.lex_state = 306, .external_lex_state = 3}, - [1350] = {.lex_state = 306, .external_lex_state = 3}, - [1351] = {.lex_state = 306, .external_lex_state = 3}, - [1352] = {.lex_state = 306, .external_lex_state = 3}, - [1353] = {.lex_state = 87, .external_lex_state = 11}, - [1354] = {.lex_state = 59, .external_lex_state = 3}, - [1355] = {.lex_state = 306, .external_lex_state = 4}, - [1356] = {.lex_state = 306, .external_lex_state = 4}, - [1357] = {.lex_state = 305, .external_lex_state = 4}, - [1358] = {.lex_state = 306, .external_lex_state = 4}, - [1359] = {.lex_state = 306, .external_lex_state = 4}, - [1360] = {.lex_state = 306, .external_lex_state = 4}, - [1361] = {.lex_state = 306, .external_lex_state = 4}, - [1362] = {.lex_state = 306, .external_lex_state = 4}, - [1363] = {.lex_state = 306, .external_lex_state = 4}, - [1364] = {.lex_state = 306, .external_lex_state = 4}, - [1365] = {.lex_state = 306, .external_lex_state = 4}, - [1366] = {.lex_state = 306, .external_lex_state = 4}, - [1367] = {.lex_state = 59, .external_lex_state = 3}, - [1368] = {.lex_state = 306, .external_lex_state = 4}, - [1369] = {.lex_state = 61, .external_lex_state = 3}, - [1370] = {.lex_state = 61, .external_lex_state = 3}, - [1371] = {.lex_state = 306, .external_lex_state = 4}, - [1372] = {.lex_state = 306, .external_lex_state = 4}, - [1373] = {.lex_state = 306, .external_lex_state = 4}, - [1374] = {.lex_state = 306, .external_lex_state = 4}, - [1375] = {.lex_state = 61, .external_lex_state = 3}, - [1376] = {.lex_state = 306, .external_lex_state = 4}, - [1377] = {.lex_state = 306, .external_lex_state = 4}, - [1378] = {.lex_state = 306, .external_lex_state = 4}, - [1379] = {.lex_state = 306, .external_lex_state = 4}, - [1380] = {.lex_state = 306, .external_lex_state = 4}, - [1381] = {.lex_state = 306, .external_lex_state = 4}, - [1382] = {.lex_state = 302, .external_lex_state = 6}, - [1383] = {.lex_state = 307, .external_lex_state = 4}, - [1384] = {.lex_state = 306, .external_lex_state = 4}, - [1385] = {.lex_state = 306, .external_lex_state = 4}, - [1386] = {.lex_state = 306, .external_lex_state = 4}, - [1387] = {.lex_state = 306, .external_lex_state = 4}, - [1388] = {.lex_state = 306, .external_lex_state = 4}, - [1389] = {.lex_state = 306, .external_lex_state = 4}, - [1390] = {.lex_state = 306, .external_lex_state = 4}, - [1391] = {.lex_state = 306, .external_lex_state = 4}, - [1392] = {.lex_state = 306, .external_lex_state = 4}, - [1393] = {.lex_state = 306, .external_lex_state = 4}, - [1394] = {.lex_state = 306, .external_lex_state = 4}, - [1395] = {.lex_state = 309, .external_lex_state = 10}, - [1396] = {.lex_state = 306, .external_lex_state = 4}, - [1397] = {.lex_state = 306, .external_lex_state = 4}, - [1398] = {.lex_state = 306, .external_lex_state = 4}, - [1399] = {.lex_state = 306, .external_lex_state = 4}, - [1400] = {.lex_state = 306, .external_lex_state = 4}, - [1401] = {.lex_state = 306, .external_lex_state = 4}, - [1402] = {.lex_state = 306, .external_lex_state = 4}, - [1403] = {.lex_state = 302, .external_lex_state = 4}, - [1404] = {.lex_state = 306, .external_lex_state = 4}, - [1405] = {.lex_state = 306, .external_lex_state = 4}, - [1406] = {.lex_state = 306, .external_lex_state = 4}, - [1407] = {.lex_state = 81, .external_lex_state = 4}, - [1408] = {.lex_state = 62, .external_lex_state = 4}, - [1409] = {.lex_state = 61, .external_lex_state = 3}, - [1410] = {.lex_state = 61, .external_lex_state = 3}, - [1411] = {.lex_state = 59, .external_lex_state = 3}, - [1412] = {.lex_state = 306, .external_lex_state = 4}, - [1413] = {.lex_state = 61, .external_lex_state = 3}, - [1414] = {.lex_state = 61, .external_lex_state = 3}, - [1415] = {.lex_state = 306, .external_lex_state = 4}, - [1416] = {.lex_state = 81, .external_lex_state = 4}, - [1417] = {.lex_state = 306, .external_lex_state = 4}, - [1418] = {.lex_state = 61, .external_lex_state = 3}, - [1419] = {.lex_state = 306, .external_lex_state = 4}, - [1420] = {.lex_state = 306, .external_lex_state = 4}, - [1421] = {.lex_state = 306, .external_lex_state = 4}, - [1422] = {.lex_state = 306, .external_lex_state = 4}, - [1423] = {.lex_state = 306, .external_lex_state = 4}, - [1424] = {.lex_state = 302, .external_lex_state = 3}, - [1425] = {.lex_state = 306, .external_lex_state = 4}, - [1426] = {.lex_state = 306, .external_lex_state = 4}, - [1427] = {.lex_state = 306, .external_lex_state = 4}, - [1428] = {.lex_state = 79, .external_lex_state = 3}, - [1429] = {.lex_state = 61, .external_lex_state = 3}, - [1430] = {.lex_state = 306, .external_lex_state = 4}, - [1431] = {.lex_state = 59, .external_lex_state = 3}, - [1432] = {.lex_state = 61, .external_lex_state = 3}, - [1433] = {.lex_state = 307, .external_lex_state = 4}, - [1434] = {.lex_state = 307, .external_lex_state = 4}, - [1435] = {.lex_state = 306, .external_lex_state = 4}, - [1436] = {.lex_state = 87, .external_lex_state = 4}, - [1437] = {.lex_state = 81, .external_lex_state = 4}, - [1438] = {.lex_state = 81, .external_lex_state = 4}, - [1439] = {.lex_state = 306, .external_lex_state = 4}, - [1440] = {.lex_state = 306, .external_lex_state = 11}, - [1441] = {.lex_state = 306, .external_lex_state = 4}, - [1442] = {.lex_state = 306, .external_lex_state = 4}, - [1443] = {.lex_state = 61, .external_lex_state = 3}, - [1444] = {.lex_state = 307, .external_lex_state = 4}, - [1445] = {.lex_state = 307, .external_lex_state = 4}, - [1446] = {.lex_state = 304, .external_lex_state = 5}, - [1447] = {.lex_state = 81, .external_lex_state = 4}, - [1448] = {.lex_state = 302, .external_lex_state = 6}, - [1449] = {.lex_state = 87, .external_lex_state = 11}, - [1450] = {.lex_state = 306, .external_lex_state = 4}, - [1451] = {.lex_state = 306, .external_lex_state = 4}, - [1452] = {.lex_state = 61, .external_lex_state = 3}, - [1453] = {.lex_state = 302, .external_lex_state = 3}, - [1454] = {.lex_state = 306, .external_lex_state = 4}, - [1455] = {.lex_state = 83, .external_lex_state = 10}, - [1456] = {.lex_state = 306, .external_lex_state = 4}, - [1457] = {.lex_state = 302, .external_lex_state = 6}, - [1458] = {.lex_state = 61, .external_lex_state = 3}, - [1459] = {.lex_state = 87, .external_lex_state = 11}, - [1460] = {.lex_state = 306, .external_lex_state = 4}, - [1461] = {.lex_state = 302, .external_lex_state = 6}, - [1462] = {.lex_state = 62, .external_lex_state = 4}, - [1463] = {.lex_state = 306, .external_lex_state = 4}, - [1464] = {.lex_state = 61, .external_lex_state = 3}, - [1465] = {.lex_state = 306, .external_lex_state = 4}, - [1466] = {.lex_state = 306, .external_lex_state = 4}, - [1467] = {.lex_state = 61, .external_lex_state = 3}, - [1468] = {.lex_state = 61, .external_lex_state = 3}, - [1469] = {.lex_state = 306, .external_lex_state = 4}, - [1470] = {.lex_state = 305, .external_lex_state = 4}, - [1471] = {.lex_state = 68, .external_lex_state = 4}, - [1472] = {.lex_state = 66, .external_lex_state = 3}, - [1473] = {.lex_state = 302, .external_lex_state = 6}, - [1474] = {.lex_state = 302, .external_lex_state = 6}, - [1475] = {.lex_state = 59, .external_lex_state = 3}, - [1476] = {.lex_state = 302, .external_lex_state = 6}, - [1477] = {.lex_state = 306, .external_lex_state = 4}, - [1478] = {.lex_state = 302, .external_lex_state = 6}, - [1479] = {.lex_state = 59, .external_lex_state = 3}, - [1480] = {.lex_state = 306, .external_lex_state = 4}, - [1481] = {.lex_state = 87, .external_lex_state = 4}, - [1482] = {.lex_state = 302, .external_lex_state = 6}, - [1483] = {.lex_state = 306, .external_lex_state = 11}, - [1484] = {.lex_state = 306, .external_lex_state = 4}, - [1485] = {.lex_state = 306, .external_lex_state = 4}, - [1486] = {.lex_state = 68, .external_lex_state = 4}, - [1487] = {.lex_state = 306, .external_lex_state = 13}, - [1488] = {.lex_state = 306, .external_lex_state = 4}, - [1489] = {.lex_state = 302, .external_lex_state = 6}, - [1490] = {.lex_state = 306, .external_lex_state = 4}, - [1491] = {.lex_state = 80, .external_lex_state = 4}, - [1492] = {.lex_state = 59, .external_lex_state = 3}, - [1493] = {.lex_state = 302, .external_lex_state = 6}, - [1494] = {.lex_state = 59, .external_lex_state = 3}, - [1495] = {.lex_state = 59, .external_lex_state = 3}, - [1496] = {.lex_state = 80, .external_lex_state = 4}, - [1497] = {.lex_state = 302, .external_lex_state = 6}, - [1498] = {.lex_state = 306, .external_lex_state = 4}, - [1499] = {.lex_state = 306, .external_lex_state = 4}, - [1500] = {.lex_state = 305, .external_lex_state = 4}, - [1501] = {.lex_state = 59, .external_lex_state = 3}, - [1502] = {.lex_state = 59, .external_lex_state = 3}, - [1503] = {.lex_state = 306, .external_lex_state = 4}, - [1504] = {.lex_state = 306, .external_lex_state = 4}, - [1505] = {.lex_state = 80, .external_lex_state = 4}, - [1506] = {.lex_state = 59, .external_lex_state = 3}, - [1507] = {.lex_state = 59, .external_lex_state = 3}, - [1508] = {.lex_state = 306, .external_lex_state = 4}, - [1509] = {.lex_state = 302, .external_lex_state = 6}, - [1510] = {.lex_state = 306, .external_lex_state = 4}, - [1511] = {.lex_state = 306, .external_lex_state = 4}, - [1512] = {.lex_state = 306, .external_lex_state = 4}, - [1513] = {.lex_state = 305, .external_lex_state = 4}, - [1514] = {.lex_state = 302, .external_lex_state = 6}, - [1515] = {.lex_state = 306, .external_lex_state = 4}, - [1516] = {.lex_state = 59, .external_lex_state = 3}, - [1517] = {.lex_state = 59, .external_lex_state = 3}, - [1518] = {.lex_state = 306, .external_lex_state = 11}, - [1519] = {.lex_state = 306, .external_lex_state = 4}, - [1520] = {.lex_state = 306, .external_lex_state = 4}, - [1521] = {.lex_state = 302, .external_lex_state = 6}, - [1522] = {.lex_state = 302, .external_lex_state = 6}, - [1523] = {.lex_state = 302, .external_lex_state = 6}, - [1524] = {.lex_state = 80, .external_lex_state = 4}, - [1525] = {.lex_state = 61, .external_lex_state = 3}, - [1526] = {.lex_state = 61, .external_lex_state = 3}, - [1527] = {.lex_state = 59, .external_lex_state = 3}, - [1528] = {.lex_state = 59, .external_lex_state = 3}, - [1529] = {.lex_state = 306, .external_lex_state = 4}, - [1530] = {.lex_state = 69, .external_lex_state = 3}, - [1531] = {.lex_state = 306, .external_lex_state = 4}, - [1532] = {.lex_state = 67, .external_lex_state = 3}, - [1533] = {.lex_state = 307, .external_lex_state = 5}, - [1534] = {.lex_state = 307, .external_lex_state = 5}, - [1535] = {.lex_state = 307, .external_lex_state = 5}, - [1536] = {.lex_state = 307, .external_lex_state = 5}, - [1537] = {.lex_state = 306, .external_lex_state = 3}, - [1538] = {.lex_state = 87, .external_lex_state = 3}, - [1539] = {.lex_state = 305, .external_lex_state = 5}, - [1540] = {.lex_state = 307, .external_lex_state = 5}, - [1541] = {.lex_state = 85, .external_lex_state = 3}, - [1542] = {.lex_state = 67, .external_lex_state = 3}, - [1543] = {.lex_state = 80, .external_lex_state = 3}, - [1544] = {.lex_state = 80, .external_lex_state = 3}, - [1545] = {.lex_state = 67, .external_lex_state = 3}, - [1546] = {.lex_state = 306, .external_lex_state = 12}, - [1547] = {.lex_state = 80, .external_lex_state = 3}, - [1548] = {.lex_state = 305, .external_lex_state = 5}, - [1549] = {.lex_state = 306, .external_lex_state = 4}, - [1550] = {.lex_state = 80, .external_lex_state = 3}, - [1551] = {.lex_state = 67, .external_lex_state = 3}, - [1552] = {.lex_state = 306, .external_lex_state = 4}, - [1553] = {.lex_state = 73, .external_lex_state = 4}, - [1554] = {.lex_state = 306, .external_lex_state = 12}, - [1555] = {.lex_state = 307, .external_lex_state = 4}, - [1556] = {.lex_state = 309, .external_lex_state = 5}, - [1557] = {.lex_state = 306, .external_lex_state = 4}, - [1558] = {.lex_state = 75, .external_lex_state = 3}, - [1559] = {.lex_state = 307, .external_lex_state = 4}, - [1560] = {.lex_state = 73, .external_lex_state = 4}, - [1561] = {.lex_state = 87, .external_lex_state = 3}, - [1562] = {.lex_state = 307, .external_lex_state = 4}, - [1563] = {.lex_state = 87, .external_lex_state = 4}, - [1564] = {.lex_state = 307, .external_lex_state = 4}, - [1565] = {.lex_state = 87, .external_lex_state = 10}, - [1566] = {.lex_state = 306, .external_lex_state = 12}, - [1567] = {.lex_state = 304, .external_lex_state = 6}, - [1568] = {.lex_state = 87, .external_lex_state = 4}, - [1569] = {.lex_state = 68, .external_lex_state = 10}, - [1570] = {.lex_state = 87, .external_lex_state = 10}, - [1571] = {.lex_state = 81, .external_lex_state = 3}, - [1572] = {.lex_state = 81, .external_lex_state = 3}, - [1573] = {.lex_state = 81, .external_lex_state = 3}, - [1574] = {.lex_state = 68, .external_lex_state = 10}, - [1575] = {.lex_state = 307, .external_lex_state = 4}, - [1576] = {.lex_state = 81, .external_lex_state = 3}, - [1577] = {.lex_state = 87, .external_lex_state = 4}, - [1578] = {.lex_state = 81, .external_lex_state = 3}, - [1579] = {.lex_state = 309, .external_lex_state = 5}, - [1580] = {.lex_state = 87, .external_lex_state = 4}, - [1581] = {.lex_state = 309, .external_lex_state = 4}, - [1582] = {.lex_state = 73, .external_lex_state = 4}, - [1583] = {.lex_state = 68, .external_lex_state = 10}, - [1584] = {.lex_state = 81, .external_lex_state = 4}, - [1585] = {.lex_state = 81, .external_lex_state = 4}, - [1586] = {.lex_state = 87, .external_lex_state = 4}, + [1] = {.lex_state = 353, .external_lex_state = 2}, + [2] = {.lex_state = 344, .external_lex_state = 3}, + [3] = {.lex_state = 344, .external_lex_state = 3}, + [4] = {.lex_state = 344, .external_lex_state = 3}, + [5] = {.lex_state = 344, .external_lex_state = 3}, + [6] = {.lex_state = 344, .external_lex_state = 3}, + [7] = {.lex_state = 344, .external_lex_state = 3}, + [8] = {.lex_state = 344, .external_lex_state = 3}, + [9] = {.lex_state = 344, .external_lex_state = 3}, + [10] = {.lex_state = 344, .external_lex_state = 3}, + [11] = {.lex_state = 344, .external_lex_state = 3}, + [12] = {.lex_state = 344, .external_lex_state = 3}, + [13] = {.lex_state = 344, .external_lex_state = 3}, + [14] = {.lex_state = 344, .external_lex_state = 3}, + [15] = {.lex_state = 344, .external_lex_state = 3}, + [16] = {.lex_state = 344, .external_lex_state = 3}, + [17] = {.lex_state = 344, .external_lex_state = 3}, + [18] = {.lex_state = 344, .external_lex_state = 3}, + [19] = {.lex_state = 344, .external_lex_state = 3}, + [20] = {.lex_state = 344, .external_lex_state = 3}, + [21] = {.lex_state = 344, .external_lex_state = 4}, + [22] = {.lex_state = 344, .external_lex_state = 4}, + [23] = {.lex_state = 344, .external_lex_state = 3}, + [24] = {.lex_state = 344, .external_lex_state = 3}, + [25] = {.lex_state = 344, .external_lex_state = 3}, + [26] = {.lex_state = 344, .external_lex_state = 3}, + [27] = {.lex_state = 344, .external_lex_state = 4}, + [28] = {.lex_state = 344, .external_lex_state = 4}, + [29] = {.lex_state = 344, .external_lex_state = 4}, + [30] = {.lex_state = 344, .external_lex_state = 4}, + [31] = {.lex_state = 344, .external_lex_state = 4}, + [32] = {.lex_state = 344, .external_lex_state = 4}, + [33] = {.lex_state = 344, .external_lex_state = 3}, + [34] = {.lex_state = 344, .external_lex_state = 3}, + [35] = {.lex_state = 344, .external_lex_state = 3}, + [36] = {.lex_state = 344, .external_lex_state = 3}, + [37] = {.lex_state = 344, .external_lex_state = 3}, + [38] = {.lex_state = 344, .external_lex_state = 3}, + [39] = {.lex_state = 344, .external_lex_state = 4}, + [40] = {.lex_state = 344, .external_lex_state = 4}, + [41] = {.lex_state = 107, .external_lex_state = 4}, + [42] = {.lex_state = 344, .external_lex_state = 5}, + [43] = {.lex_state = 344, .external_lex_state = 5}, + [44] = {.lex_state = 107, .external_lex_state = 4}, + [45] = {.lex_state = 344, .external_lex_state = 5}, + [46] = {.lex_state = 107, .external_lex_state = 4}, + [47] = {.lex_state = 107, .external_lex_state = 4}, + [48] = {.lex_state = 107, .external_lex_state = 4}, + [49] = {.lex_state = 344, .external_lex_state = 5}, + [50] = {.lex_state = 344, .external_lex_state = 4}, + [51] = {.lex_state = 107, .external_lex_state = 4}, + [52] = {.lex_state = 107, .external_lex_state = 4}, + [53] = {.lex_state = 107, .external_lex_state = 4}, + [54] = {.lex_state = 107, .external_lex_state = 4}, + [55] = {.lex_state = 107, .external_lex_state = 4}, + [56] = {.lex_state = 344, .external_lex_state = 4}, + [57] = {.lex_state = 344, .external_lex_state = 3}, + [58] = {.lex_state = 78, .external_lex_state = 3}, + [59] = {.lex_state = 78, .external_lex_state = 3}, + [60] = {.lex_state = 78, .external_lex_state = 3}, + [61] = {.lex_state = 78, .external_lex_state = 3}, + [62] = {.lex_state = 78, .external_lex_state = 3}, + [63] = {.lex_state = 344, .external_lex_state = 3}, + [64] = {.lex_state = 344, .external_lex_state = 3}, + [65] = {.lex_state = 344, .external_lex_state = 3}, + [66] = {.lex_state = 344, .external_lex_state = 3}, + [67] = {.lex_state = 344, .external_lex_state = 3}, + [68] = {.lex_state = 344, .external_lex_state = 3}, + [69] = {.lex_state = 344, .external_lex_state = 3}, + [70] = {.lex_state = 344, .external_lex_state = 3}, + [71] = {.lex_state = 344, .external_lex_state = 3}, + [72] = {.lex_state = 344, .external_lex_state = 3}, + [73] = {.lex_state = 344, .external_lex_state = 4}, + [74] = {.lex_state = 344, .external_lex_state = 3}, + [75] = {.lex_state = 344, .external_lex_state = 3}, + [76] = {.lex_state = 344, .external_lex_state = 3}, + [77] = {.lex_state = 344, .external_lex_state = 4}, + [78] = {.lex_state = 344, .external_lex_state = 4}, + [79] = {.lex_state = 344, .external_lex_state = 3}, + [80] = {.lex_state = 344, .external_lex_state = 4}, + [81] = {.lex_state = 344, .external_lex_state = 3}, + [82] = {.lex_state = 344, .external_lex_state = 3}, + [83] = {.lex_state = 344, .external_lex_state = 3}, + [84] = {.lex_state = 344, .external_lex_state = 3}, + [85] = {.lex_state = 78, .external_lex_state = 3}, + [86] = {.lex_state = 344, .external_lex_state = 3}, + [87] = {.lex_state = 344, .external_lex_state = 4}, + [88] = {.lex_state = 344, .external_lex_state = 3}, + [89] = {.lex_state = 344, .external_lex_state = 5}, + [90] = {.lex_state = 344, .external_lex_state = 3}, + [91] = {.lex_state = 344, .external_lex_state = 3}, + [92] = {.lex_state = 344, .external_lex_state = 4}, + [93] = {.lex_state = 344, .external_lex_state = 3}, + [94] = {.lex_state = 344, .external_lex_state = 4}, + [95] = {.lex_state = 107, .external_lex_state = 3}, + [96] = {.lex_state = 78, .external_lex_state = 3}, + [97] = {.lex_state = 344, .external_lex_state = 3}, + [98] = {.lex_state = 344, .external_lex_state = 4}, + [99] = {.lex_state = 78, .external_lex_state = 3}, + [100] = {.lex_state = 344, .external_lex_state = 3}, + [101] = {.lex_state = 78, .external_lex_state = 3}, + [102] = {.lex_state = 344, .external_lex_state = 3}, + [103] = {.lex_state = 344, .external_lex_state = 3}, + [104] = {.lex_state = 344, .external_lex_state = 5}, + [105] = {.lex_state = 344, .external_lex_state = 4}, + [106] = {.lex_state = 344, .external_lex_state = 3}, + [107] = {.lex_state = 107, .external_lex_state = 3}, + [108] = {.lex_state = 344, .external_lex_state = 5}, + [109] = {.lex_state = 344, .external_lex_state = 5}, + [110] = {.lex_state = 344, .external_lex_state = 4}, + [111] = {.lex_state = 344, .external_lex_state = 4}, + [112] = {.lex_state = 344, .external_lex_state = 3}, + [113] = {.lex_state = 107, .external_lex_state = 3}, + [114] = {.lex_state = 344, .external_lex_state = 5}, + [115] = {.lex_state = 107, .external_lex_state = 3}, + [116] = {.lex_state = 78, .external_lex_state = 3}, + [117] = {.lex_state = 107, .external_lex_state = 3}, + [118] = {.lex_state = 107, .external_lex_state = 3}, + [119] = {.lex_state = 107, .external_lex_state = 3}, + [120] = {.lex_state = 344, .external_lex_state = 3}, + [121] = {.lex_state = 78, .external_lex_state = 3}, + [122] = {.lex_state = 344, .external_lex_state = 3}, + [123] = {.lex_state = 344, .external_lex_state = 4}, + [124] = {.lex_state = 344, .external_lex_state = 4}, + [125] = {.lex_state = 107, .external_lex_state = 3}, + [126] = {.lex_state = 344, .external_lex_state = 4}, + [127] = {.lex_state = 344, .external_lex_state = 4}, + [128] = {.lex_state = 344, .external_lex_state = 4}, + [129] = {.lex_state = 107, .external_lex_state = 3}, + [130] = {.lex_state = 344, .external_lex_state = 3}, + [131] = {.lex_state = 107, .external_lex_state = 3}, + [132] = {.lex_state = 344, .external_lex_state = 4}, + [133] = {.lex_state = 344, .external_lex_state = 4}, + [134] = {.lex_state = 344, .external_lex_state = 5}, + [135] = {.lex_state = 78, .external_lex_state = 3}, + [136] = {.lex_state = 344, .external_lex_state = 4}, + [137] = {.lex_state = 344, .external_lex_state = 5}, + [138] = {.lex_state = 344, .external_lex_state = 4}, + [139] = {.lex_state = 344, .external_lex_state = 5}, + [140] = {.lex_state = 344, .external_lex_state = 5}, + [141] = {.lex_state = 344, .external_lex_state = 5}, + [142] = {.lex_state = 344, .external_lex_state = 3}, + [143] = {.lex_state = 344, .external_lex_state = 3}, + [144] = {.lex_state = 344, .external_lex_state = 3}, + [145] = {.lex_state = 344, .external_lex_state = 4}, + [146] = {.lex_state = 344, .external_lex_state = 5}, + [147] = {.lex_state = 78, .external_lex_state = 3}, + [148] = {.lex_state = 78, .external_lex_state = 3}, + [149] = {.lex_state = 344, .external_lex_state = 4}, + [150] = {.lex_state = 347, .external_lex_state = 3}, + [151] = {.lex_state = 344, .external_lex_state = 4}, + [152] = {.lex_state = 344, .external_lex_state = 6}, + [153] = {.lex_state = 109, .external_lex_state = 3}, + [154] = {.lex_state = 344, .external_lex_state = 4}, + [155] = {.lex_state = 344, .external_lex_state = 3}, + [156] = {.lex_state = 344, .external_lex_state = 3}, + [157] = {.lex_state = 344, .external_lex_state = 4}, + [158] = {.lex_state = 78, .external_lex_state = 3}, + [159] = {.lex_state = 110, .external_lex_state = 3}, + [160] = {.lex_state = 344, .external_lex_state = 3}, + [161] = {.lex_state = 344, .external_lex_state = 6}, + [162] = {.lex_state = 344, .external_lex_state = 4}, + [163] = {.lex_state = 347, .external_lex_state = 3}, + [164] = {.lex_state = 347, .external_lex_state = 3}, + [165] = {.lex_state = 347, .external_lex_state = 3}, + [166] = {.lex_state = 344, .external_lex_state = 4}, + [167] = {.lex_state = 347, .external_lex_state = 3}, + [168] = {.lex_state = 344, .external_lex_state = 3}, + [169] = {.lex_state = 109, .external_lex_state = 3}, + [170] = {.lex_state = 344, .external_lex_state = 4}, + [171] = {.lex_state = 344, .external_lex_state = 3}, + [172] = {.lex_state = 110, .external_lex_state = 3}, + [173] = {.lex_state = 344, .external_lex_state = 3}, + [174] = {.lex_state = 110, .external_lex_state = 3}, + [175] = {.lex_state = 109, .external_lex_state = 3}, + [176] = {.lex_state = 344, .external_lex_state = 4}, + [177] = {.lex_state = 344, .external_lex_state = 4}, + [178] = {.lex_state = 344, .external_lex_state = 4}, + [179] = {.lex_state = 109, .external_lex_state = 3}, + [180] = {.lex_state = 109, .external_lex_state = 3}, + [181] = {.lex_state = 347, .external_lex_state = 3}, + [182] = {.lex_state = 109, .external_lex_state = 3}, + [183] = {.lex_state = 109, .external_lex_state = 3}, + [184] = {.lex_state = 347, .external_lex_state = 3}, + [185] = {.lex_state = 78, .external_lex_state = 3}, + [186] = {.lex_state = 109, .external_lex_state = 3}, + [187] = {.lex_state = 344, .external_lex_state = 3}, + [188] = {.lex_state = 347, .external_lex_state = 3}, + [189] = {.lex_state = 344, .external_lex_state = 4}, + [190] = {.lex_state = 109, .external_lex_state = 3}, + [191] = {.lex_state = 344, .external_lex_state = 4}, + [192] = {.lex_state = 103, .external_lex_state = 3}, + [193] = {.lex_state = 78, .external_lex_state = 3}, + [194] = {.lex_state = 103, .external_lex_state = 3}, + [195] = {.lex_state = 344, .external_lex_state = 4}, + [196] = {.lex_state = 344, .external_lex_state = 3}, + [197] = {.lex_state = 109, .external_lex_state = 3}, + [198] = {.lex_state = 344, .external_lex_state = 4}, + [199] = {.lex_state = 110, .external_lex_state = 3}, + [200] = {.lex_state = 109, .external_lex_state = 3}, + [201] = {.lex_state = 109, .external_lex_state = 3}, + [202] = {.lex_state = 103, .external_lex_state = 3}, + [203] = {.lex_state = 347, .external_lex_state = 3}, + [204] = {.lex_state = 344, .external_lex_state = 4}, + [205] = {.lex_state = 344, .external_lex_state = 4}, + [206] = {.lex_state = 344, .external_lex_state = 4}, + [207] = {.lex_state = 344, .external_lex_state = 4}, + [208] = {.lex_state = 78, .external_lex_state = 3}, + [209] = {.lex_state = 344, .external_lex_state = 4}, + [210] = {.lex_state = 347, .external_lex_state = 3}, + [211] = {.lex_state = 347, .external_lex_state = 3}, + [212] = {.lex_state = 344, .external_lex_state = 4}, + [213] = {.lex_state = 109, .external_lex_state = 3}, + [214] = {.lex_state = 344, .external_lex_state = 4}, + [215] = {.lex_state = 109, .external_lex_state = 3}, + [216] = {.lex_state = 110, .external_lex_state = 3}, + [217] = {.lex_state = 344, .external_lex_state = 3}, + [218] = {.lex_state = 344, .external_lex_state = 4}, + [219] = {.lex_state = 344, .external_lex_state = 4}, + [220] = {.lex_state = 344, .external_lex_state = 4}, + [221] = {.lex_state = 344, .external_lex_state = 4}, + [222] = {.lex_state = 78, .external_lex_state = 3}, + [223] = {.lex_state = 344, .external_lex_state = 3}, + [224] = {.lex_state = 344, .external_lex_state = 4}, + [225] = {.lex_state = 344, .external_lex_state = 4}, + [226] = {.lex_state = 344, .external_lex_state = 4}, + [227] = {.lex_state = 110, .external_lex_state = 3}, + [228] = {.lex_state = 344, .external_lex_state = 3}, + [229] = {.lex_state = 78, .external_lex_state = 3}, + [230] = {.lex_state = 344, .external_lex_state = 4}, + [231] = {.lex_state = 344, .external_lex_state = 4}, + [232] = {.lex_state = 344, .external_lex_state = 4}, + [233] = {.lex_state = 347, .external_lex_state = 3}, + [234] = {.lex_state = 109, .external_lex_state = 3}, + [235] = {.lex_state = 344, .external_lex_state = 3}, + [236] = {.lex_state = 110, .external_lex_state = 3}, + [237] = {.lex_state = 78, .external_lex_state = 3}, + [238] = {.lex_state = 344, .external_lex_state = 3}, + [239] = {.lex_state = 347, .external_lex_state = 3}, + [240] = {.lex_state = 347, .external_lex_state = 3}, + [241] = {.lex_state = 344, .external_lex_state = 3}, + [242] = {.lex_state = 344, .external_lex_state = 4}, + [243] = {.lex_state = 344, .external_lex_state = 4}, + [244] = {.lex_state = 344, .external_lex_state = 4}, + [245] = {.lex_state = 110, .external_lex_state = 3}, + [246] = {.lex_state = 110, .external_lex_state = 3}, + [247] = {.lex_state = 110, .external_lex_state = 3}, + [248] = {.lex_state = 344, .external_lex_state = 3}, + [249] = {.lex_state = 78, .external_lex_state = 3}, + [250] = {.lex_state = 103, .external_lex_state = 3}, + [251] = {.lex_state = 103, .external_lex_state = 3}, + [252] = {.lex_state = 344, .external_lex_state = 4}, + [253] = {.lex_state = 78, .external_lex_state = 3}, + [254] = {.lex_state = 344, .external_lex_state = 4}, + [255] = {.lex_state = 78, .external_lex_state = 3}, + [256] = {.lex_state = 344, .external_lex_state = 4}, + [257] = {.lex_state = 344, .external_lex_state = 3}, + [258] = {.lex_state = 103, .external_lex_state = 3}, + [259] = {.lex_state = 347, .external_lex_state = 3}, + [260] = {.lex_state = 344, .external_lex_state = 3}, + [261] = {.lex_state = 110, .external_lex_state = 3}, + [262] = {.lex_state = 103, .external_lex_state = 3}, + [263] = {.lex_state = 103, .external_lex_state = 3}, + [264] = {.lex_state = 78, .external_lex_state = 3}, + [265] = {.lex_state = 347, .external_lex_state = 3}, + [266] = {.lex_state = 109, .external_lex_state = 3}, + [267] = {.lex_state = 344, .external_lex_state = 4}, + [268] = {.lex_state = 110, .external_lex_state = 3}, + [269] = {.lex_state = 109, .external_lex_state = 3}, + [270] = {.lex_state = 344, .external_lex_state = 3}, + [271] = {.lex_state = 110, .external_lex_state = 3}, + [272] = {.lex_state = 344, .external_lex_state = 4}, + [273] = {.lex_state = 344, .external_lex_state = 4}, + [274] = {.lex_state = 103, .external_lex_state = 3}, + [275] = {.lex_state = 344, .external_lex_state = 4}, + [276] = {.lex_state = 347, .external_lex_state = 3}, + [277] = {.lex_state = 110, .external_lex_state = 3}, + [278] = {.lex_state = 344, .external_lex_state = 3}, + [279] = {.lex_state = 344, .external_lex_state = 4}, + [280] = {.lex_state = 78, .external_lex_state = 3}, + [281] = {.lex_state = 344, .external_lex_state = 4}, + [282] = {.lex_state = 347, .external_lex_state = 3}, + [283] = {.lex_state = 344, .external_lex_state = 4}, + [284] = {.lex_state = 344, .external_lex_state = 6}, + [285] = {.lex_state = 344, .external_lex_state = 6}, + [286] = {.lex_state = 344, .external_lex_state = 4}, + [287] = {.lex_state = 344, .external_lex_state = 4}, + [288] = {.lex_state = 344, .external_lex_state = 6}, + [289] = {.lex_state = 347, .external_lex_state = 3}, + [290] = {.lex_state = 347, .external_lex_state = 3}, + [291] = {.lex_state = 344, .external_lex_state = 4}, + [292] = {.lex_state = 78, .external_lex_state = 3}, + [293] = {.lex_state = 344, .external_lex_state = 4}, + [294] = {.lex_state = 347, .external_lex_state = 3}, + [295] = {.lex_state = 344, .external_lex_state = 4}, + [296] = {.lex_state = 78, .external_lex_state = 3}, + [297] = {.lex_state = 344, .external_lex_state = 3}, + [298] = {.lex_state = 110, .external_lex_state = 3}, + [299] = {.lex_state = 109, .external_lex_state = 3}, + [300] = {.lex_state = 347, .external_lex_state = 3}, + [301] = {.lex_state = 344, .external_lex_state = 4}, + [302] = {.lex_state = 344, .external_lex_state = 6}, + [303] = {.lex_state = 109, .external_lex_state = 3}, + [304] = {.lex_state = 344, .external_lex_state = 4}, + [305] = {.lex_state = 344, .external_lex_state = 3}, + [306] = {.lex_state = 110, .external_lex_state = 3}, + [307] = {.lex_state = 344, .external_lex_state = 4}, + [308] = {.lex_state = 109, .external_lex_state = 3}, + [309] = {.lex_state = 78, .external_lex_state = 3}, + [310] = {.lex_state = 110, .external_lex_state = 3}, + [311] = {.lex_state = 344, .external_lex_state = 3}, + [312] = {.lex_state = 344, .external_lex_state = 3}, + [313] = {.lex_state = 78, .external_lex_state = 3}, + [314] = {.lex_state = 344, .external_lex_state = 4}, + [315] = {.lex_state = 344, .external_lex_state = 4}, + [316] = {.lex_state = 344, .external_lex_state = 4}, + [317] = {.lex_state = 110, .external_lex_state = 3}, + [318] = {.lex_state = 109, .external_lex_state = 3}, + [319] = {.lex_state = 344, .external_lex_state = 3}, + [320] = {.lex_state = 344, .external_lex_state = 4}, + [321] = {.lex_state = 78, .external_lex_state = 3}, + [322] = {.lex_state = 344, .external_lex_state = 6}, + [323] = {.lex_state = 344, .external_lex_state = 4}, + [324] = {.lex_state = 347, .external_lex_state = 3}, + [325] = {.lex_state = 344, .external_lex_state = 3}, + [326] = {.lex_state = 344, .external_lex_state = 3}, + [327] = {.lex_state = 103, .external_lex_state = 3}, + [328] = {.lex_state = 110, .external_lex_state = 3}, + [329] = {.lex_state = 78, .external_lex_state = 3}, + [330] = {.lex_state = 344, .external_lex_state = 4}, + [331] = {.lex_state = 109, .external_lex_state = 3}, + [332] = {.lex_state = 78, .external_lex_state = 3}, + [333] = {.lex_state = 344, .external_lex_state = 4}, + [334] = {.lex_state = 78, .external_lex_state = 3}, + [335] = {.lex_state = 78, .external_lex_state = 3}, + [336] = {.lex_state = 110, .external_lex_state = 3}, + [337] = {.lex_state = 344, .external_lex_state = 3}, + [338] = {.lex_state = 344, .external_lex_state = 3}, + [339] = {.lex_state = 344, .external_lex_state = 3}, + [340] = {.lex_state = 344, .external_lex_state = 4}, + [341] = {.lex_state = 344, .external_lex_state = 4}, + [342] = {.lex_state = 344, .external_lex_state = 4}, + [343] = {.lex_state = 344, .external_lex_state = 4}, + [344] = {.lex_state = 344, .external_lex_state = 4}, + [345] = {.lex_state = 110, .external_lex_state = 3}, + [346] = {.lex_state = 344, .external_lex_state = 4}, + [347] = {.lex_state = 110, .external_lex_state = 3}, + [348] = {.lex_state = 344, .external_lex_state = 3}, + [349] = {.lex_state = 78, .external_lex_state = 3}, + [350] = {.lex_state = 344, .external_lex_state = 6}, + [351] = {.lex_state = 344, .external_lex_state = 6}, + [352] = {.lex_state = 347, .external_lex_state = 3}, + [353] = {.lex_state = 344, .external_lex_state = 3}, + [354] = {.lex_state = 347, .external_lex_state = 3}, + [355] = {.lex_state = 344, .external_lex_state = 6}, + [356] = {.lex_state = 344, .external_lex_state = 6}, + [357] = {.lex_state = 344, .external_lex_state = 6}, + [358] = {.lex_state = 347, .external_lex_state = 3}, + [359] = {.lex_state = 344, .external_lex_state = 3}, + [360] = {.lex_state = 344, .external_lex_state = 3}, + [361] = {.lex_state = 344, .external_lex_state = 3}, + [362] = {.lex_state = 344, .external_lex_state = 3}, + [363] = {.lex_state = 344, .external_lex_state = 3}, + [364] = {.lex_state = 344, .external_lex_state = 3}, + [365] = {.lex_state = 344, .external_lex_state = 3}, + [366] = {.lex_state = 344, .external_lex_state = 3}, + [367] = {.lex_state = 344, .external_lex_state = 3}, + [368] = {.lex_state = 344, .external_lex_state = 3}, + [369] = {.lex_state = 344, .external_lex_state = 3}, + [370] = {.lex_state = 344, .external_lex_state = 3}, + [371] = {.lex_state = 344, .external_lex_state = 3}, + [372] = {.lex_state = 344, .external_lex_state = 3}, + [373] = {.lex_state = 344, .external_lex_state = 3}, + [374] = {.lex_state = 344, .external_lex_state = 3}, + [375] = {.lex_state = 344, .external_lex_state = 3}, + [376] = {.lex_state = 344, .external_lex_state = 3}, + [377] = {.lex_state = 344, .external_lex_state = 3}, + [378] = {.lex_state = 344, .external_lex_state = 3}, + [379] = {.lex_state = 344, .external_lex_state = 3}, + [380] = {.lex_state = 344, .external_lex_state = 3}, + [381] = {.lex_state = 344, .external_lex_state = 3}, + [382] = {.lex_state = 344, .external_lex_state = 3}, + [383] = {.lex_state = 344, .external_lex_state = 3}, + [384] = {.lex_state = 344, .external_lex_state = 3}, + [385] = {.lex_state = 344, .external_lex_state = 3}, + [386] = {.lex_state = 353, .external_lex_state = 5}, + [387] = {.lex_state = 353, .external_lex_state = 5}, + [388] = {.lex_state = 353, .external_lex_state = 5}, + [389] = {.lex_state = 353, .external_lex_state = 5}, + [390] = {.lex_state = 353, .external_lex_state = 2}, + [391] = {.lex_state = 353, .external_lex_state = 2}, + [392] = {.lex_state = 353, .external_lex_state = 2}, + [393] = {.lex_state = 353, .external_lex_state = 2}, + [394] = {.lex_state = 353, .external_lex_state = 2}, + [395] = {.lex_state = 353, .external_lex_state = 2}, + [396] = {.lex_state = 353, .external_lex_state = 2}, + [397] = {.lex_state = 353, .external_lex_state = 7}, + [398] = {.lex_state = 353, .external_lex_state = 7}, + [399] = {.lex_state = 353, .external_lex_state = 7}, + [400] = {.lex_state = 353, .external_lex_state = 2}, + [401] = {.lex_state = 353, .external_lex_state = 7}, + [402] = {.lex_state = 353, .external_lex_state = 7}, + [403] = {.lex_state = 353, .external_lex_state = 7}, + [404] = {.lex_state = 353, .external_lex_state = 7}, + [405] = {.lex_state = 353, .external_lex_state = 2}, + [406] = {.lex_state = 353, .external_lex_state = 2}, + [407] = {.lex_state = 353, .external_lex_state = 7}, + [408] = {.lex_state = 353, .external_lex_state = 2}, + [409] = {.lex_state = 353, .external_lex_state = 2}, + [410] = {.lex_state = 353, .external_lex_state = 2}, + [411] = {.lex_state = 353, .external_lex_state = 7}, + [412] = {.lex_state = 353, .external_lex_state = 2}, + [413] = {.lex_state = 353, .external_lex_state = 7}, + [414] = {.lex_state = 353, .external_lex_state = 7}, + [415] = {.lex_state = 353, .external_lex_state = 7}, + [416] = {.lex_state = 353, .external_lex_state = 7}, + [417] = {.lex_state = 353, .external_lex_state = 2}, + [418] = {.lex_state = 353, .external_lex_state = 2}, + [419] = {.lex_state = 353, .external_lex_state = 2}, + [420] = {.lex_state = 353, .external_lex_state = 2}, + [421] = {.lex_state = 353, .external_lex_state = 2}, + [422] = {.lex_state = 353, .external_lex_state = 2}, + [423] = {.lex_state = 353, .external_lex_state = 2}, + [424] = {.lex_state = 353, .external_lex_state = 2}, + [425] = {.lex_state = 353, .external_lex_state = 2}, + [426] = {.lex_state = 353, .external_lex_state = 2}, + [427] = {.lex_state = 353, .external_lex_state = 2}, + [428] = {.lex_state = 353, .external_lex_state = 2}, + [429] = {.lex_state = 353, .external_lex_state = 2}, + [430] = {.lex_state = 353, .external_lex_state = 2}, + [431] = {.lex_state = 353, .external_lex_state = 2}, + [432] = {.lex_state = 353, .external_lex_state = 2}, + [433] = {.lex_state = 353, .external_lex_state = 2}, + [434] = {.lex_state = 353, .external_lex_state = 2}, + [435] = {.lex_state = 353, .external_lex_state = 3}, + [436] = {.lex_state = 354, .external_lex_state = 3}, + [437] = {.lex_state = 143, .external_lex_state = 2}, + [438] = {.lex_state = 143, .external_lex_state = 2}, + [439] = {.lex_state = 354, .external_lex_state = 7}, + [440] = {.lex_state = 354, .external_lex_state = 7}, + [441] = {.lex_state = 354, .external_lex_state = 7}, + [442] = {.lex_state = 353, .external_lex_state = 2}, + [443] = {.lex_state = 354, .external_lex_state = 2}, + [444] = {.lex_state = 354, .external_lex_state = 2}, + [445] = {.lex_state = 354, .external_lex_state = 2}, + [446] = {.lex_state = 354, .external_lex_state = 2}, + [447] = {.lex_state = 354, .external_lex_state = 2}, + [448] = {.lex_state = 353, .external_lex_state = 2}, + [449] = {.lex_state = 354, .external_lex_state = 2}, + [450] = {.lex_state = 354, .external_lex_state = 2}, + [451] = {.lex_state = 354, .external_lex_state = 2}, + [452] = {.lex_state = 353, .external_lex_state = 2}, + [453] = {.lex_state = 353, .external_lex_state = 2}, + [454] = {.lex_state = 354, .external_lex_state = 2}, + [455] = {.lex_state = 353, .external_lex_state = 2}, + [456] = {.lex_state = 354, .external_lex_state = 2}, + [457] = {.lex_state = 353, .external_lex_state = 2}, + [458] = {.lex_state = 353, .external_lex_state = 2}, + [459] = {.lex_state = 353, .external_lex_state = 2}, + [460] = {.lex_state = 354, .external_lex_state = 2}, + [461] = {.lex_state = 354, .external_lex_state = 2}, + [462] = {.lex_state = 353, .external_lex_state = 2}, + [463] = {.lex_state = 353, .external_lex_state = 2}, + [464] = {.lex_state = 354, .external_lex_state = 2}, + [465] = {.lex_state = 353, .external_lex_state = 2}, + [466] = {.lex_state = 353, .external_lex_state = 2}, + [467] = {.lex_state = 353, .external_lex_state = 2}, + [468] = {.lex_state = 354, .external_lex_state = 2}, + [469] = {.lex_state = 354, .external_lex_state = 2}, + [470] = {.lex_state = 353, .external_lex_state = 2}, + [471] = {.lex_state = 354, .external_lex_state = 2}, + [472] = {.lex_state = 354, .external_lex_state = 2}, + [473] = {.lex_state = 353, .external_lex_state = 5}, + [474] = {.lex_state = 353, .external_lex_state = 2}, + [475] = {.lex_state = 353, .external_lex_state = 5}, + [476] = {.lex_state = 353, .external_lex_state = 5}, + [477] = {.lex_state = 353, .external_lex_state = 2}, + [478] = {.lex_state = 353, .external_lex_state = 5}, + [479] = {.lex_state = 353, .external_lex_state = 5}, + [480] = {.lex_state = 353, .external_lex_state = 5}, + [481] = {.lex_state = 353, .external_lex_state = 7}, + [482] = {.lex_state = 353, .external_lex_state = 5}, + [483] = {.lex_state = 353, .external_lex_state = 2}, + [484] = {.lex_state = 353, .external_lex_state = 5}, + [485] = {.lex_state = 353, .external_lex_state = 5}, + [486] = {.lex_state = 353, .external_lex_state = 5}, + [487] = {.lex_state = 353, .external_lex_state = 5}, + [488] = {.lex_state = 353, .external_lex_state = 5}, + [489] = {.lex_state = 353, .external_lex_state = 2}, + [490] = {.lex_state = 353, .external_lex_state = 5}, + [491] = {.lex_state = 353, .external_lex_state = 2}, + [492] = {.lex_state = 353, .external_lex_state = 2}, + [493] = {.lex_state = 353, .external_lex_state = 2}, + [494] = {.lex_state = 353, .external_lex_state = 5}, + [495] = {.lex_state = 353, .external_lex_state = 5}, + [496] = {.lex_state = 353, .external_lex_state = 5}, + [497] = {.lex_state = 353, .external_lex_state = 2}, + [498] = {.lex_state = 353, .external_lex_state = 5}, + [499] = {.lex_state = 353, .external_lex_state = 2}, + [500] = {.lex_state = 353, .external_lex_state = 5}, + [501] = {.lex_state = 353, .external_lex_state = 2}, + [502] = {.lex_state = 353, .external_lex_state = 2}, + [503] = {.lex_state = 353, .external_lex_state = 2}, + [504] = {.lex_state = 353, .external_lex_state = 5}, + [505] = {.lex_state = 353, .external_lex_state = 5}, + [506] = {.lex_state = 353, .external_lex_state = 5}, + [507] = {.lex_state = 353, .external_lex_state = 5}, + [508] = {.lex_state = 353, .external_lex_state = 2}, + [509] = {.lex_state = 353, .external_lex_state = 5}, + [510] = {.lex_state = 353, .external_lex_state = 2}, + [511] = {.lex_state = 353, .external_lex_state = 5}, + [512] = {.lex_state = 353, .external_lex_state = 5}, + [513] = {.lex_state = 353, .external_lex_state = 5}, + [514] = {.lex_state = 353, .external_lex_state = 2}, + [515] = {.lex_state = 353, .external_lex_state = 2}, + [516] = {.lex_state = 353, .external_lex_state = 2}, + [517] = {.lex_state = 353, .external_lex_state = 2}, + [518] = {.lex_state = 353, .external_lex_state = 2}, + [519] = {.lex_state = 353, .external_lex_state = 2}, + [520] = {.lex_state = 353, .external_lex_state = 2}, + [521] = {.lex_state = 353, .external_lex_state = 5}, + [522] = {.lex_state = 353, .external_lex_state = 2}, + [523] = {.lex_state = 353, .external_lex_state = 2}, + [524] = {.lex_state = 353, .external_lex_state = 2}, + [525] = {.lex_state = 353, .external_lex_state = 2}, + [526] = {.lex_state = 353, .external_lex_state = 2}, + [527] = {.lex_state = 353, .external_lex_state = 2}, + [528] = {.lex_state = 353, .external_lex_state = 2}, + [529] = {.lex_state = 353, .external_lex_state = 2}, + [530] = {.lex_state = 353, .external_lex_state = 6}, + [531] = {.lex_state = 353, .external_lex_state = 6}, + [532] = {.lex_state = 353, .external_lex_state = 6}, + [533] = {.lex_state = 353, .external_lex_state = 2}, + [534] = {.lex_state = 353, .external_lex_state = 2}, + [535] = {.lex_state = 353, .external_lex_state = 8}, + [536] = {.lex_state = 353, .external_lex_state = 7}, + [537] = {.lex_state = 353, .external_lex_state = 9}, + [538] = {.lex_state = 353, .external_lex_state = 2}, + [539] = {.lex_state = 353, .external_lex_state = 2}, + [540] = {.lex_state = 353, .external_lex_state = 2}, + [541] = {.lex_state = 353, .external_lex_state = 2}, + [542] = {.lex_state = 353, .external_lex_state = 2}, + [543] = {.lex_state = 353, .external_lex_state = 2}, + [544] = {.lex_state = 353, .external_lex_state = 2}, + [545] = {.lex_state = 353, .external_lex_state = 2}, + [546] = {.lex_state = 353, .external_lex_state = 2}, + [547] = {.lex_state = 353, .external_lex_state = 2}, + [548] = {.lex_state = 353, .external_lex_state = 2}, + [549] = {.lex_state = 353, .external_lex_state = 2}, + [550] = {.lex_state = 353, .external_lex_state = 2}, + [551] = {.lex_state = 353, .external_lex_state = 2}, + [552] = {.lex_state = 353, .external_lex_state = 2}, + [553] = {.lex_state = 353, .external_lex_state = 2}, + [554] = {.lex_state = 353, .external_lex_state = 2}, + [555] = {.lex_state = 353, .external_lex_state = 2}, + [556] = {.lex_state = 353, .external_lex_state = 2}, + [557] = {.lex_state = 353, .external_lex_state = 2}, + [558] = {.lex_state = 353, .external_lex_state = 2}, + [559] = {.lex_state = 353, .external_lex_state = 2}, + [560] = {.lex_state = 353, .external_lex_state = 2}, + [561] = {.lex_state = 353, .external_lex_state = 2}, + [562] = {.lex_state = 353, .external_lex_state = 2}, + [563] = {.lex_state = 353, .external_lex_state = 2}, + [564] = {.lex_state = 353, .external_lex_state = 2}, + [565] = {.lex_state = 353, .external_lex_state = 2}, + [566] = {.lex_state = 353, .external_lex_state = 2}, + [567] = {.lex_state = 353, .external_lex_state = 2}, + [568] = {.lex_state = 353, .external_lex_state = 2}, + [569] = {.lex_state = 353, .external_lex_state = 2}, + [570] = {.lex_state = 353, .external_lex_state = 2}, + [571] = {.lex_state = 353, .external_lex_state = 2}, + [572] = {.lex_state = 353, .external_lex_state = 2}, + [573] = {.lex_state = 353, .external_lex_state = 2}, + [574] = {.lex_state = 353, .external_lex_state = 2}, + [575] = {.lex_state = 353, .external_lex_state = 2}, + [576] = {.lex_state = 353, .external_lex_state = 2}, + [577] = {.lex_state = 353, .external_lex_state = 2}, + [578] = {.lex_state = 353, .external_lex_state = 2}, + [579] = {.lex_state = 353, .external_lex_state = 2}, + [580] = {.lex_state = 353, .external_lex_state = 2}, + [581] = {.lex_state = 353, .external_lex_state = 2}, + [582] = {.lex_state = 353, .external_lex_state = 2}, + [583] = {.lex_state = 353, .external_lex_state = 2}, + [584] = {.lex_state = 353, .external_lex_state = 2}, + [585] = {.lex_state = 353, .external_lex_state = 2}, + [586] = {.lex_state = 353, .external_lex_state = 2}, + [587] = {.lex_state = 353, .external_lex_state = 2}, + [588] = {.lex_state = 353, .external_lex_state = 2}, + [589] = {.lex_state = 353, .external_lex_state = 2}, + [590] = {.lex_state = 353, .external_lex_state = 2}, + [591] = {.lex_state = 353, .external_lex_state = 2}, + [592] = {.lex_state = 353, .external_lex_state = 2}, + [593] = {.lex_state = 353, .external_lex_state = 2}, + [594] = {.lex_state = 353, .external_lex_state = 2}, + [595] = {.lex_state = 353, .external_lex_state = 2}, + [596] = {.lex_state = 353, .external_lex_state = 2}, + [597] = {.lex_state = 353, .external_lex_state = 2}, + [598] = {.lex_state = 353, .external_lex_state = 2}, + [599] = {.lex_state = 353, .external_lex_state = 2}, + [600] = {.lex_state = 353, .external_lex_state = 2}, + [601] = {.lex_state = 353, .external_lex_state = 2}, + [602] = {.lex_state = 353, .external_lex_state = 2}, + [603] = {.lex_state = 353, .external_lex_state = 2}, + [604] = {.lex_state = 353, .external_lex_state = 2}, + [605] = {.lex_state = 353, .external_lex_state = 2}, + [606] = {.lex_state = 353, .external_lex_state = 2}, + [607] = {.lex_state = 353, .external_lex_state = 2}, + [608] = {.lex_state = 353, .external_lex_state = 2}, + [609] = {.lex_state = 353, .external_lex_state = 2}, + [610] = {.lex_state = 353, .external_lex_state = 2}, + [611] = {.lex_state = 353, .external_lex_state = 2}, + [612] = {.lex_state = 353, .external_lex_state = 2}, + [613] = {.lex_state = 353, .external_lex_state = 2}, + [614] = {.lex_state = 353, .external_lex_state = 2}, + [615] = {.lex_state = 353, .external_lex_state = 2}, + [616] = {.lex_state = 353, .external_lex_state = 2}, + [617] = {.lex_state = 353, .external_lex_state = 2}, + [618] = {.lex_state = 353, .external_lex_state = 2}, + [619] = {.lex_state = 353, .external_lex_state = 2}, + [620] = {.lex_state = 353, .external_lex_state = 2}, + [621] = {.lex_state = 353, .external_lex_state = 2}, + [622] = {.lex_state = 353, .external_lex_state = 2}, + [623] = {.lex_state = 353, .external_lex_state = 2}, + [624] = {.lex_state = 353, .external_lex_state = 2}, + [625] = {.lex_state = 353, .external_lex_state = 2}, + [626] = {.lex_state = 353, .external_lex_state = 2}, + [627] = {.lex_state = 353, .external_lex_state = 2}, + [628] = {.lex_state = 353, .external_lex_state = 2}, + [629] = {.lex_state = 353, .external_lex_state = 2}, + [630] = {.lex_state = 353, .external_lex_state = 2}, + [631] = {.lex_state = 353, .external_lex_state = 2}, + [632] = {.lex_state = 353, .external_lex_state = 2}, + [633] = {.lex_state = 353, .external_lex_state = 2}, + [634] = {.lex_state = 353, .external_lex_state = 2}, + [635] = {.lex_state = 353, .external_lex_state = 2}, + [636] = {.lex_state = 353, .external_lex_state = 2}, + [637] = {.lex_state = 353, .external_lex_state = 2}, + [638] = {.lex_state = 353, .external_lex_state = 2}, + [639] = {.lex_state = 353, .external_lex_state = 2}, + [640] = {.lex_state = 353, .external_lex_state = 2}, + [641] = {.lex_state = 353, .external_lex_state = 2}, + [642] = {.lex_state = 353, .external_lex_state = 2}, + [643] = {.lex_state = 353, .external_lex_state = 2}, + [644] = {.lex_state = 353, .external_lex_state = 2}, + [645] = {.lex_state = 353, .external_lex_state = 2}, + [646] = {.lex_state = 353, .external_lex_state = 2}, + [647] = {.lex_state = 353, .external_lex_state = 2}, + [648] = {.lex_state = 353, .external_lex_state = 2}, + [649] = {.lex_state = 353, .external_lex_state = 2}, + [650] = {.lex_state = 353, .external_lex_state = 2}, + [651] = {.lex_state = 353, .external_lex_state = 2}, + [652] = {.lex_state = 353, .external_lex_state = 2}, + [653] = {.lex_state = 353, .external_lex_state = 2}, + [654] = {.lex_state = 353, .external_lex_state = 2}, + [655] = {.lex_state = 353, .external_lex_state = 2}, + [656] = {.lex_state = 353, .external_lex_state = 2}, + [657] = {.lex_state = 353, .external_lex_state = 2}, + [658] = {.lex_state = 353, .external_lex_state = 2}, + [659] = {.lex_state = 353, .external_lex_state = 2}, + [660] = {.lex_state = 353, .external_lex_state = 2}, + [661] = {.lex_state = 353, .external_lex_state = 2}, + [662] = {.lex_state = 353, .external_lex_state = 2}, + [663] = {.lex_state = 353, .external_lex_state = 2}, + [664] = {.lex_state = 353, .external_lex_state = 2}, + [665] = {.lex_state = 353, .external_lex_state = 2}, + [666] = {.lex_state = 353, .external_lex_state = 2}, + [667] = {.lex_state = 353, .external_lex_state = 2}, + [668] = {.lex_state = 353, .external_lex_state = 2}, + [669] = {.lex_state = 353, .external_lex_state = 2}, + [670] = {.lex_state = 353, .external_lex_state = 2}, + [671] = {.lex_state = 353, .external_lex_state = 2}, + [672] = {.lex_state = 353, .external_lex_state = 2}, + [673] = {.lex_state = 353, .external_lex_state = 2}, + [674] = {.lex_state = 353, .external_lex_state = 2}, + [675] = {.lex_state = 353, .external_lex_state = 2}, + [676] = {.lex_state = 353, .external_lex_state = 2}, + [677] = {.lex_state = 353, .external_lex_state = 2}, + [678] = {.lex_state = 353, .external_lex_state = 2}, + [679] = {.lex_state = 353, .external_lex_state = 2}, + [680] = {.lex_state = 353, .external_lex_state = 2}, + [681] = {.lex_state = 353, .external_lex_state = 2}, + [682] = {.lex_state = 353, .external_lex_state = 2}, + [683] = {.lex_state = 353, .external_lex_state = 2}, + [684] = {.lex_state = 353, .external_lex_state = 2}, + [685] = {.lex_state = 353, .external_lex_state = 2}, + [686] = {.lex_state = 353, .external_lex_state = 2}, + [687] = {.lex_state = 353, .external_lex_state = 2}, + [688] = {.lex_state = 353, .external_lex_state = 2}, + [689] = {.lex_state = 353, .external_lex_state = 2}, + [690] = {.lex_state = 353, .external_lex_state = 2}, + [691] = {.lex_state = 353, .external_lex_state = 2}, + [692] = {.lex_state = 353, .external_lex_state = 2}, + [693] = {.lex_state = 353, .external_lex_state = 2}, + [694] = {.lex_state = 353, .external_lex_state = 2}, + [695] = {.lex_state = 353, .external_lex_state = 2}, + [696] = {.lex_state = 353, .external_lex_state = 2}, + [697] = {.lex_state = 353, .external_lex_state = 2}, + [698] = {.lex_state = 353, .external_lex_state = 2}, + [699] = {.lex_state = 353, .external_lex_state = 2}, + [700] = {.lex_state = 353, .external_lex_state = 2}, + [701] = {.lex_state = 353, .external_lex_state = 2}, + [702] = {.lex_state = 353, .external_lex_state = 2}, + [703] = {.lex_state = 353, .external_lex_state = 2}, + [704] = {.lex_state = 353, .external_lex_state = 2}, + [705] = {.lex_state = 353, .external_lex_state = 2}, + [706] = {.lex_state = 353, .external_lex_state = 2}, + [707] = {.lex_state = 353, .external_lex_state = 2}, + [708] = {.lex_state = 353, .external_lex_state = 2}, + [709] = {.lex_state = 353, .external_lex_state = 2}, + [710] = {.lex_state = 353, .external_lex_state = 2}, + [711] = {.lex_state = 353, .external_lex_state = 2}, + [712] = {.lex_state = 353, .external_lex_state = 2}, + [713] = {.lex_state = 353, .external_lex_state = 2}, + [714] = {.lex_state = 353, .external_lex_state = 2}, + [715] = {.lex_state = 353, .external_lex_state = 2}, + [716] = {.lex_state = 353, .external_lex_state = 2}, + [717] = {.lex_state = 353, .external_lex_state = 2}, + [718] = {.lex_state = 353, .external_lex_state = 2}, + [719] = {.lex_state = 353, .external_lex_state = 2}, + [720] = {.lex_state = 353, .external_lex_state = 2}, + [721] = {.lex_state = 353, .external_lex_state = 2}, + [722] = {.lex_state = 353, .external_lex_state = 2}, + [723] = {.lex_state = 353, .external_lex_state = 2}, + [724] = {.lex_state = 353, .external_lex_state = 2}, + [725] = {.lex_state = 353, .external_lex_state = 2}, + [726] = {.lex_state = 353, .external_lex_state = 2}, + [727] = {.lex_state = 353, .external_lex_state = 2}, + [728] = {.lex_state = 353, .external_lex_state = 2}, + [729] = {.lex_state = 353, .external_lex_state = 2}, + [730] = {.lex_state = 353, .external_lex_state = 2}, + [731] = {.lex_state = 353, .external_lex_state = 2}, + [732] = {.lex_state = 353, .external_lex_state = 2}, + [733] = {.lex_state = 353, .external_lex_state = 2}, + [734] = {.lex_state = 353, .external_lex_state = 2}, + [735] = {.lex_state = 353, .external_lex_state = 2}, + [736] = {.lex_state = 353, .external_lex_state = 2}, + [737] = {.lex_state = 353, .external_lex_state = 2}, + [738] = {.lex_state = 353, .external_lex_state = 2}, + [739] = {.lex_state = 353, .external_lex_state = 2}, + [740] = {.lex_state = 353, .external_lex_state = 2}, + [741] = {.lex_state = 353, .external_lex_state = 2}, + [742] = {.lex_state = 353, .external_lex_state = 2}, + [743] = {.lex_state = 353, .external_lex_state = 2}, + [744] = {.lex_state = 353, .external_lex_state = 2}, + [745] = {.lex_state = 353, .external_lex_state = 2}, + [746] = {.lex_state = 353, .external_lex_state = 2}, + [747] = {.lex_state = 353, .external_lex_state = 2}, + [748] = {.lex_state = 353, .external_lex_state = 2}, + [749] = {.lex_state = 353, .external_lex_state = 2}, + [750] = {.lex_state = 353, .external_lex_state = 2}, + [751] = {.lex_state = 353, .external_lex_state = 2}, + [752] = {.lex_state = 353, .external_lex_state = 2}, + [753] = {.lex_state = 353, .external_lex_state = 2}, + [754] = {.lex_state = 353, .external_lex_state = 2}, + [755] = {.lex_state = 353, .external_lex_state = 2}, + [756] = {.lex_state = 353, .external_lex_state = 2}, + [757] = {.lex_state = 353, .external_lex_state = 2}, + [758] = {.lex_state = 353, .external_lex_state = 2}, + [759] = {.lex_state = 353, .external_lex_state = 2}, + [760] = {.lex_state = 353, .external_lex_state = 2}, + [761] = {.lex_state = 353, .external_lex_state = 2}, + [762] = {.lex_state = 353, .external_lex_state = 2}, + [763] = {.lex_state = 353, .external_lex_state = 2}, + [764] = {.lex_state = 353, .external_lex_state = 2}, + [765] = {.lex_state = 353, .external_lex_state = 2}, + [766] = {.lex_state = 353, .external_lex_state = 2}, + [767] = {.lex_state = 353, .external_lex_state = 2}, + [768] = {.lex_state = 353, .external_lex_state = 2}, + [769] = {.lex_state = 353, .external_lex_state = 2}, + [770] = {.lex_state = 353, .external_lex_state = 2}, + [771] = {.lex_state = 353, .external_lex_state = 2}, + [772] = {.lex_state = 353, .external_lex_state = 2}, + [773] = {.lex_state = 353, .external_lex_state = 2}, + [774] = {.lex_state = 353, .external_lex_state = 2}, + [775] = {.lex_state = 353, .external_lex_state = 2}, + [776] = {.lex_state = 353, .external_lex_state = 2}, + [777] = {.lex_state = 353, .external_lex_state = 2}, + [778] = {.lex_state = 353, .external_lex_state = 2}, + [779] = {.lex_state = 353, .external_lex_state = 2}, + [780] = {.lex_state = 353, .external_lex_state = 2}, + [781] = {.lex_state = 353, .external_lex_state = 2}, + [782] = {.lex_state = 353, .external_lex_state = 2}, + [783] = {.lex_state = 353, .external_lex_state = 2}, + [784] = {.lex_state = 353, .external_lex_state = 2}, + [785] = {.lex_state = 353, .external_lex_state = 2}, + [786] = {.lex_state = 353, .external_lex_state = 2}, + [787] = {.lex_state = 353, .external_lex_state = 2}, + [788] = {.lex_state = 353, .external_lex_state = 2}, + [789] = {.lex_state = 353, .external_lex_state = 2}, + [790] = {.lex_state = 353, .external_lex_state = 2}, + [791] = {.lex_state = 353, .external_lex_state = 2}, + [792] = {.lex_state = 353, .external_lex_state = 2}, + [793] = {.lex_state = 353, .external_lex_state = 2}, + [794] = {.lex_state = 353, .external_lex_state = 2}, + [795] = {.lex_state = 353, .external_lex_state = 2}, + [796] = {.lex_state = 353, .external_lex_state = 2}, + [797] = {.lex_state = 353, .external_lex_state = 2}, + [798] = {.lex_state = 353, .external_lex_state = 2}, + [799] = {.lex_state = 353, .external_lex_state = 2}, + [800] = {.lex_state = 353, .external_lex_state = 2}, + [801] = {.lex_state = 353, .external_lex_state = 2}, + [802] = {.lex_state = 353, .external_lex_state = 2}, + [803] = {.lex_state = 353, .external_lex_state = 2}, + [804] = {.lex_state = 353, .external_lex_state = 2}, + [805] = {.lex_state = 353, .external_lex_state = 2}, + [806] = {.lex_state = 353, .external_lex_state = 2}, + [807] = {.lex_state = 353, .external_lex_state = 2}, + [808] = {.lex_state = 353, .external_lex_state = 2}, + [809] = {.lex_state = 353, .external_lex_state = 2}, + [810] = {.lex_state = 353, .external_lex_state = 2}, + [811] = {.lex_state = 353, .external_lex_state = 2}, + [812] = {.lex_state = 353, .external_lex_state = 2}, + [813] = {.lex_state = 353, .external_lex_state = 2}, + [814] = {.lex_state = 353, .external_lex_state = 2}, + [815] = {.lex_state = 353, .external_lex_state = 2}, + [816] = {.lex_state = 353, .external_lex_state = 2}, + [817] = {.lex_state = 353, .external_lex_state = 2}, + [818] = {.lex_state = 353, .external_lex_state = 2}, + [819] = {.lex_state = 353, .external_lex_state = 2}, + [820] = {.lex_state = 353, .external_lex_state = 2}, + [821] = {.lex_state = 353, .external_lex_state = 2}, + [822] = {.lex_state = 353, .external_lex_state = 2}, + [823] = {.lex_state = 353, .external_lex_state = 2}, + [824] = {.lex_state = 353, .external_lex_state = 2}, + [825] = {.lex_state = 353, .external_lex_state = 2}, + [826] = {.lex_state = 353, .external_lex_state = 2}, + [827] = {.lex_state = 353, .external_lex_state = 2}, + [828] = {.lex_state = 353, .external_lex_state = 2}, + [829] = {.lex_state = 353, .external_lex_state = 2}, + [830] = {.lex_state = 353, .external_lex_state = 2}, + [831] = {.lex_state = 353, .external_lex_state = 2}, + [832] = {.lex_state = 353, .external_lex_state = 2}, + [833] = {.lex_state = 353, .external_lex_state = 2}, + [834] = {.lex_state = 353, .external_lex_state = 2}, + [835] = {.lex_state = 353, .external_lex_state = 2}, + [836] = {.lex_state = 353, .external_lex_state = 2}, + [837] = {.lex_state = 353, .external_lex_state = 2}, + [838] = {.lex_state = 353, .external_lex_state = 2}, + [839] = {.lex_state = 353, .external_lex_state = 2}, + [840] = {.lex_state = 353, .external_lex_state = 2}, + [841] = {.lex_state = 353, .external_lex_state = 2}, + [842] = {.lex_state = 353, .external_lex_state = 2}, + [843] = {.lex_state = 353, .external_lex_state = 2}, + [844] = {.lex_state = 353, .external_lex_state = 2}, + [845] = {.lex_state = 353, .external_lex_state = 2}, + [846] = {.lex_state = 353, .external_lex_state = 2}, + [847] = {.lex_state = 353, .external_lex_state = 2}, + [848] = {.lex_state = 353, .external_lex_state = 2}, + [849] = {.lex_state = 353, .external_lex_state = 2}, + [850] = {.lex_state = 353, .external_lex_state = 2}, + [851] = {.lex_state = 353, .external_lex_state = 2}, + [852] = {.lex_state = 353, .external_lex_state = 2}, + [853] = {.lex_state = 353, .external_lex_state = 2}, + [854] = {.lex_state = 353, .external_lex_state = 2}, + [855] = {.lex_state = 353, .external_lex_state = 2}, + [856] = {.lex_state = 353, .external_lex_state = 2}, + [857] = {.lex_state = 353, .external_lex_state = 2}, + [858] = {.lex_state = 353, .external_lex_state = 2}, + [859] = {.lex_state = 353, .external_lex_state = 2}, + [860] = {.lex_state = 353, .external_lex_state = 2}, + [861] = {.lex_state = 353, .external_lex_state = 2}, + [862] = {.lex_state = 353, .external_lex_state = 2}, + [863] = {.lex_state = 353, .external_lex_state = 2}, + [864] = {.lex_state = 346, .external_lex_state = 3}, + [865] = {.lex_state = 346, .external_lex_state = 3}, + [866] = {.lex_state = 341, .external_lex_state = 3}, + [867] = {.lex_state = 346, .external_lex_state = 4}, + [868] = {.lex_state = 346, .external_lex_state = 3}, + [869] = {.lex_state = 341, .external_lex_state = 3}, + [870] = {.lex_state = 341, .external_lex_state = 4}, + [871] = {.lex_state = 82, .external_lex_state = 4}, + [872] = {.lex_state = 341, .external_lex_state = 3}, + [873] = {.lex_state = 82, .external_lex_state = 3}, + [874] = {.lex_state = 346, .external_lex_state = 5}, + [875] = {.lex_state = 80, .external_lex_state = 3}, + [876] = {.lex_state = 80, .external_lex_state = 4}, + [877] = {.lex_state = 346, .external_lex_state = 4}, + [878] = {.lex_state = 74, .external_lex_state = 3}, + [879] = {.lex_state = 340, .external_lex_state = 3}, + [880] = {.lex_state = 340, .external_lex_state = 3}, + [881] = {.lex_state = 90, .external_lex_state = 4}, + [882] = {.lex_state = 340, .external_lex_state = 3}, + [883] = {.lex_state = 73, .external_lex_state = 3}, + [884] = {.lex_state = 102, .external_lex_state = 3}, + [885] = {.lex_state = 83, .external_lex_state = 3}, + [886] = {.lex_state = 340, .external_lex_state = 3}, + [887] = {.lex_state = 341, .external_lex_state = 4}, + [888] = {.lex_state = 81, .external_lex_state = 3}, + [889] = {.lex_state = 84, .external_lex_state = 3}, + [890] = {.lex_state = 340, .external_lex_state = 3}, + [891] = {.lex_state = 346, .external_lex_state = 6}, + [892] = {.lex_state = 90, .external_lex_state = 3}, + [893] = {.lex_state = 75, .external_lex_state = 3}, + [894] = {.lex_state = 341, .external_lex_state = 5}, + [895] = {.lex_state = 86, .external_lex_state = 3}, + [896] = {.lex_state = 340, .external_lex_state = 3}, + [897] = {.lex_state = 98, .external_lex_state = 3}, + [898] = {.lex_state = 340, .external_lex_state = 3}, + [899] = {.lex_state = 104, .external_lex_state = 3}, + [900] = {.lex_state = 340, .external_lex_state = 3}, + [901] = {.lex_state = 340, .external_lex_state = 3}, + [902] = {.lex_state = 340, .external_lex_state = 3}, + [903] = {.lex_state = 340, .external_lex_state = 3}, + [904] = {.lex_state = 340, .external_lex_state = 3}, + [905] = {.lex_state = 94, .external_lex_state = 3}, + [906] = {.lex_state = 341, .external_lex_state = 6}, + [907] = {.lex_state = 340, .external_lex_state = 3}, + [908] = {.lex_state = 344, .external_lex_state = 10}, + [909] = {.lex_state = 340, .external_lex_state = 3}, + [910] = {.lex_state = 340, .external_lex_state = 3}, + [911] = {.lex_state = 340, .external_lex_state = 3}, + [912] = {.lex_state = 340, .external_lex_state = 3}, + [913] = {.lex_state = 340, .external_lex_state = 3}, + [914] = {.lex_state = 344, .external_lex_state = 10}, + [915] = {.lex_state = 340, .external_lex_state = 3}, + [916] = {.lex_state = 340, .external_lex_state = 3}, + [917] = {.lex_state = 340, .external_lex_state = 3}, + [918] = {.lex_state = 340, .external_lex_state = 3}, + [919] = {.lex_state = 340, .external_lex_state = 3}, + [920] = {.lex_state = 340, .external_lex_state = 3}, + [921] = {.lex_state = 340, .external_lex_state = 3}, + [922] = {.lex_state = 340, .external_lex_state = 3}, + [923] = {.lex_state = 340, .external_lex_state = 3}, + [924] = {.lex_state = 340, .external_lex_state = 3}, + [925] = {.lex_state = 340, .external_lex_state = 3}, + [926] = {.lex_state = 340, .external_lex_state = 4}, + [927] = {.lex_state = 340, .external_lex_state = 3}, + [928] = {.lex_state = 340, .external_lex_state = 3}, + [929] = {.lex_state = 340, .external_lex_state = 4}, + [930] = {.lex_state = 340, .external_lex_state = 3}, + [931] = {.lex_state = 344, .external_lex_state = 10}, + [932] = {.lex_state = 340, .external_lex_state = 4}, + [933] = {.lex_state = 340, .external_lex_state = 4}, + [934] = {.lex_state = 340, .external_lex_state = 3}, + [935] = {.lex_state = 340, .external_lex_state = 3}, + [936] = {.lex_state = 340, .external_lex_state = 3}, + [937] = {.lex_state = 340, .external_lex_state = 4}, + [938] = {.lex_state = 340, .external_lex_state = 3}, + [939] = {.lex_state = 340, .external_lex_state = 3}, + [940] = {.lex_state = 340, .external_lex_state = 3}, + [941] = {.lex_state = 340, .external_lex_state = 3}, + [942] = {.lex_state = 340, .external_lex_state = 3}, + [943] = {.lex_state = 340, .external_lex_state = 3}, + [944] = {.lex_state = 340, .external_lex_state = 3}, + [945] = {.lex_state = 344, .external_lex_state = 10}, + [946] = {.lex_state = 340, .external_lex_state = 3}, + [947] = {.lex_state = 340, .external_lex_state = 3}, + [948] = {.lex_state = 340, .external_lex_state = 3}, + [949] = {.lex_state = 342, .external_lex_state = 3}, + [950] = {.lex_state = 344, .external_lex_state = 10}, + [951] = {.lex_state = 340, .external_lex_state = 3}, + [952] = {.lex_state = 340, .external_lex_state = 4}, + [953] = {.lex_state = 340, .external_lex_state = 4}, + [954] = {.lex_state = 343, .external_lex_state = 3}, + [955] = {.lex_state = 344, .external_lex_state = 10}, + [956] = {.lex_state = 345, .external_lex_state = 3}, + [957] = {.lex_state = 344, .external_lex_state = 11}, + [958] = {.lex_state = 340, .external_lex_state = 3}, + [959] = {.lex_state = 340, .external_lex_state = 4}, + [960] = {.lex_state = 343, .external_lex_state = 3}, + [961] = {.lex_state = 68, .external_lex_state = 4}, + [962] = {.lex_state = 340, .external_lex_state = 4}, + [963] = {.lex_state = 340, .external_lex_state = 3}, + [964] = {.lex_state = 340, .external_lex_state = 4}, + [965] = {.lex_state = 340, .external_lex_state = 4}, + [966] = {.lex_state = 343, .external_lex_state = 3}, + [967] = {.lex_state = 340, .external_lex_state = 3}, + [968] = {.lex_state = 68, .external_lex_state = 4}, + [969] = {.lex_state = 340, .external_lex_state = 4}, + [970] = {.lex_state = 340, .external_lex_state = 3}, + [971] = {.lex_state = 344, .external_lex_state = 3}, + [972] = {.lex_state = 345, .external_lex_state = 3}, + [973] = {.lex_state = 340, .external_lex_state = 4}, + [974] = {.lex_state = 345, .external_lex_state = 3}, + [975] = {.lex_state = 344, .external_lex_state = 11}, + [976] = {.lex_state = 343, .external_lex_state = 3}, + [977] = {.lex_state = 340, .external_lex_state = 3}, + [978] = {.lex_state = 344, .external_lex_state = 10}, + [979] = {.lex_state = 340, .external_lex_state = 3}, + [980] = {.lex_state = 340, .external_lex_state = 3}, + [981] = {.lex_state = 340, .external_lex_state = 3}, + [982] = {.lex_state = 340, .external_lex_state = 3}, + [983] = {.lex_state = 340, .external_lex_state = 3}, + [984] = {.lex_state = 340, .external_lex_state = 3}, + [985] = {.lex_state = 340, .external_lex_state = 3}, + [986] = {.lex_state = 345, .external_lex_state = 3}, + [987] = {.lex_state = 340, .external_lex_state = 4}, + [988] = {.lex_state = 68, .external_lex_state = 4}, + [989] = {.lex_state = 340, .external_lex_state = 4}, + [990] = {.lex_state = 340, .external_lex_state = 4}, + [991] = {.lex_state = 340, .external_lex_state = 4}, + [992] = {.lex_state = 68, .external_lex_state = 4}, + [993] = {.lex_state = 344, .external_lex_state = 10}, + [994] = {.lex_state = 340, .external_lex_state = 4}, + [995] = {.lex_state = 340, .external_lex_state = 3}, + [996] = {.lex_state = 68, .external_lex_state = 4}, + [997] = {.lex_state = 340, .external_lex_state = 3}, + [998] = {.lex_state = 345, .external_lex_state = 3}, + [999] = {.lex_state = 340, .external_lex_state = 3}, + [1000] = {.lex_state = 344, .external_lex_state = 10}, + [1001] = {.lex_state = 340, .external_lex_state = 3}, + [1002] = {.lex_state = 340, .external_lex_state = 4}, + [1003] = {.lex_state = 340, .external_lex_state = 5}, + [1004] = {.lex_state = 344, .external_lex_state = 3}, + [1005] = {.lex_state = 340, .external_lex_state = 4}, + [1006] = {.lex_state = 68, .external_lex_state = 3}, + [1007] = {.lex_state = 345, .external_lex_state = 3}, + [1008] = {.lex_state = 340, .external_lex_state = 4}, + [1009] = {.lex_state = 344, .external_lex_state = 3}, + [1010] = {.lex_state = 345, .external_lex_state = 3}, + [1011] = {.lex_state = 345, .external_lex_state = 3}, + [1012] = {.lex_state = 340, .external_lex_state = 5}, + [1013] = {.lex_state = 345, .external_lex_state = 3}, + [1014] = {.lex_state = 340, .external_lex_state = 4}, + [1015] = {.lex_state = 340, .external_lex_state = 4}, + [1016] = {.lex_state = 344, .external_lex_state = 3}, + [1017] = {.lex_state = 68, .external_lex_state = 3}, + [1018] = {.lex_state = 345, .external_lex_state = 3}, + [1019] = {.lex_state = 68, .external_lex_state = 3}, + [1020] = {.lex_state = 68, .external_lex_state = 3}, + [1021] = {.lex_state = 340, .external_lex_state = 4}, + [1022] = {.lex_state = 347, .external_lex_state = 3}, + [1023] = {.lex_state = 342, .external_lex_state = 3}, + [1024] = {.lex_state = 340, .external_lex_state = 4}, + [1025] = {.lex_state = 340, .external_lex_state = 4}, + [1026] = {.lex_state = 340, .external_lex_state = 4}, + [1027] = {.lex_state = 347, .external_lex_state = 3}, + [1028] = {.lex_state = 340, .external_lex_state = 4}, + [1029] = {.lex_state = 340, .external_lex_state = 4}, + [1030] = {.lex_state = 340, .external_lex_state = 5}, + [1031] = {.lex_state = 340, .external_lex_state = 4}, + [1032] = {.lex_state = 340, .external_lex_state = 4}, + [1033] = {.lex_state = 344, .external_lex_state = 3}, + [1034] = {.lex_state = 340, .external_lex_state = 4}, + [1035] = {.lex_state = 340, .external_lex_state = 5}, + [1036] = {.lex_state = 340, .external_lex_state = 4}, + [1037] = {.lex_state = 68, .external_lex_state = 3}, + [1038] = {.lex_state = 340, .external_lex_state = 4}, + [1039] = {.lex_state = 344, .external_lex_state = 3}, + [1040] = {.lex_state = 344, .external_lex_state = 3}, + [1041] = {.lex_state = 340, .external_lex_state = 5}, + [1042] = {.lex_state = 340, .external_lex_state = 4}, + [1043] = {.lex_state = 344, .external_lex_state = 11}, + [1044] = {.lex_state = 340, .external_lex_state = 4}, + [1045] = {.lex_state = 71, .external_lex_state = 3}, + [1046] = {.lex_state = 344, .external_lex_state = 3}, + [1047] = {.lex_state = 344, .external_lex_state = 3}, + [1048] = {.lex_state = 344, .external_lex_state = 3}, + [1049] = {.lex_state = 344, .external_lex_state = 11}, + [1050] = {.lex_state = 68, .external_lex_state = 4}, + [1051] = {.lex_state = 344, .external_lex_state = 11}, + [1052] = {.lex_state = 340, .external_lex_state = 4}, + [1053] = {.lex_state = 340, .external_lex_state = 4}, + [1054] = {.lex_state = 344, .external_lex_state = 3}, + [1055] = {.lex_state = 344, .external_lex_state = 3}, + [1056] = {.lex_state = 342, .external_lex_state = 4}, + [1057] = {.lex_state = 71, .external_lex_state = 3}, + [1058] = {.lex_state = 344, .external_lex_state = 3}, + [1059] = {.lex_state = 344, .external_lex_state = 3}, + [1060] = {.lex_state = 344, .external_lex_state = 3}, + [1061] = {.lex_state = 347, .external_lex_state = 3}, + [1062] = {.lex_state = 68, .external_lex_state = 4}, + [1063] = {.lex_state = 68, .external_lex_state = 4}, + [1064] = {.lex_state = 344, .external_lex_state = 3}, + [1065] = {.lex_state = 344, .external_lex_state = 3}, + [1066] = {.lex_state = 344, .external_lex_state = 3}, + [1067] = {.lex_state = 67, .external_lex_state = 3}, + [1068] = {.lex_state = 344, .external_lex_state = 3}, + [1069] = {.lex_state = 344, .external_lex_state = 3}, + [1070] = {.lex_state = 344, .external_lex_state = 3}, + [1071] = {.lex_state = 340, .external_lex_state = 4}, + [1072] = {.lex_state = 340, .external_lex_state = 4}, + [1073] = {.lex_state = 344, .external_lex_state = 3}, + [1074] = {.lex_state = 344, .external_lex_state = 3}, + [1075] = {.lex_state = 340, .external_lex_state = 6}, + [1076] = {.lex_state = 343, .external_lex_state = 3}, + [1077] = {.lex_state = 68, .external_lex_state = 4}, + [1078] = {.lex_state = 344, .external_lex_state = 3}, + [1079] = {.lex_state = 344, .external_lex_state = 3}, + [1080] = {.lex_state = 70, .external_lex_state = 3}, + [1081] = {.lex_state = 340, .external_lex_state = 4}, + [1082] = {.lex_state = 344, .external_lex_state = 3}, + [1083] = {.lex_state = 344, .external_lex_state = 3}, + [1084] = {.lex_state = 343, .external_lex_state = 3}, + [1085] = {.lex_state = 344, .external_lex_state = 3}, + [1086] = {.lex_state = 344, .external_lex_state = 3}, + [1087] = {.lex_state = 344, .external_lex_state = 3}, + [1088] = {.lex_state = 340, .external_lex_state = 4}, + [1089] = {.lex_state = 344, .external_lex_state = 3}, + [1090] = {.lex_state = 347, .external_lex_state = 3}, + [1091] = {.lex_state = 344, .external_lex_state = 3}, + [1092] = {.lex_state = 344, .external_lex_state = 3}, + [1093] = {.lex_state = 344, .external_lex_state = 3}, + [1094] = {.lex_state = 344, .external_lex_state = 3}, + [1095] = {.lex_state = 344, .external_lex_state = 3}, + [1096] = {.lex_state = 344, .external_lex_state = 3}, + [1097] = {.lex_state = 344, .external_lex_state = 3}, + [1098] = {.lex_state = 344, .external_lex_state = 3}, + [1099] = {.lex_state = 69, .external_lex_state = 3}, + [1100] = {.lex_state = 340, .external_lex_state = 6}, + [1101] = {.lex_state = 344, .external_lex_state = 3}, + [1102] = {.lex_state = 71, .external_lex_state = 3}, + [1103] = {.lex_state = 344, .external_lex_state = 3}, + [1104] = {.lex_state = 67, .external_lex_state = 3}, + [1105] = {.lex_state = 344, .external_lex_state = 3}, + [1106] = {.lex_state = 71, .external_lex_state = 3}, + [1107] = {.lex_state = 344, .external_lex_state = 3}, + [1108] = {.lex_state = 344, .external_lex_state = 3}, + [1109] = {.lex_state = 344, .external_lex_state = 3}, + [1110] = {.lex_state = 344, .external_lex_state = 3}, + [1111] = {.lex_state = 344, .external_lex_state = 3}, + [1112] = {.lex_state = 344, .external_lex_state = 3}, + [1113] = {.lex_state = 344, .external_lex_state = 3}, + [1114] = {.lex_state = 344, .external_lex_state = 3}, + [1115] = {.lex_state = 340, .external_lex_state = 4}, + [1116] = {.lex_state = 107, .external_lex_state = 11}, + [1117] = {.lex_state = 344, .external_lex_state = 3}, + [1118] = {.lex_state = 344, .external_lex_state = 3}, + [1119] = {.lex_state = 340, .external_lex_state = 4}, + [1120] = {.lex_state = 344, .external_lex_state = 3}, + [1121] = {.lex_state = 344, .external_lex_state = 3}, + [1122] = {.lex_state = 344, .external_lex_state = 3}, + [1123] = {.lex_state = 69, .external_lex_state = 3}, + [1124] = {.lex_state = 69, .external_lex_state = 3}, + [1125] = {.lex_state = 344, .external_lex_state = 3}, + [1126] = {.lex_state = 344, .external_lex_state = 3}, + [1127] = {.lex_state = 344, .external_lex_state = 3}, + [1128] = {.lex_state = 69, .external_lex_state = 3}, + [1129] = {.lex_state = 68, .external_lex_state = 4}, + [1130] = {.lex_state = 344, .external_lex_state = 10}, + [1131] = {.lex_state = 340, .external_lex_state = 6}, + [1132] = {.lex_state = 340, .external_lex_state = 6}, + [1133] = {.lex_state = 344, .external_lex_state = 3}, + [1134] = {.lex_state = 343, .external_lex_state = 3}, + [1135] = {.lex_state = 107, .external_lex_state = 11}, + [1136] = {.lex_state = 71, .external_lex_state = 3}, + [1137] = {.lex_state = 70, .external_lex_state = 3}, + [1138] = {.lex_state = 70, .external_lex_state = 3}, + [1139] = {.lex_state = 70, .external_lex_state = 3}, + [1140] = {.lex_state = 68, .external_lex_state = 4}, + [1141] = {.lex_state = 344, .external_lex_state = 3}, + [1142] = {.lex_state = 344, .external_lex_state = 10}, + [1143] = {.lex_state = 344, .external_lex_state = 3}, + [1144] = {.lex_state = 345, .external_lex_state = 3}, + [1145] = {.lex_state = 345, .external_lex_state = 3}, + [1146] = {.lex_state = 344, .external_lex_state = 3}, + [1147] = {.lex_state = 68, .external_lex_state = 4}, + [1148] = {.lex_state = 340, .external_lex_state = 6}, + [1149] = {.lex_state = 344, .external_lex_state = 3}, + [1150] = {.lex_state = 340, .external_lex_state = 4}, + [1151] = {.lex_state = 344, .external_lex_state = 3}, + [1152] = {.lex_state = 344, .external_lex_state = 3}, + [1153] = {.lex_state = 68, .external_lex_state = 4}, + [1154] = {.lex_state = 344, .external_lex_state = 3}, + [1155] = {.lex_state = 344, .external_lex_state = 3}, + [1156] = {.lex_state = 345, .external_lex_state = 3}, + [1157] = {.lex_state = 71, .external_lex_state = 3}, + [1158] = {.lex_state = 344, .external_lex_state = 10}, + [1159] = {.lex_state = 67, .external_lex_state = 3}, + [1160] = {.lex_state = 344, .external_lex_state = 3}, + [1161] = {.lex_state = 344, .external_lex_state = 3}, + [1162] = {.lex_state = 68, .external_lex_state = 4}, + [1163] = {.lex_state = 344, .external_lex_state = 3}, + [1164] = {.lex_state = 345, .external_lex_state = 3}, + [1165] = {.lex_state = 344, .external_lex_state = 3}, + [1166] = {.lex_state = 345, .external_lex_state = 3}, + [1167] = {.lex_state = 70, .external_lex_state = 3}, + [1168] = {.lex_state = 344, .external_lex_state = 3}, + [1169] = {.lex_state = 344, .external_lex_state = 3}, + [1170] = {.lex_state = 344, .external_lex_state = 3}, + [1171] = {.lex_state = 344, .external_lex_state = 3}, + [1172] = {.lex_state = 344, .external_lex_state = 3}, + [1173] = {.lex_state = 67, .external_lex_state = 3}, + [1174] = {.lex_state = 344, .external_lex_state = 3}, + [1175] = {.lex_state = 69, .external_lex_state = 3}, + [1176] = {.lex_state = 344, .external_lex_state = 3}, + [1177] = {.lex_state = 344, .external_lex_state = 3}, + [1178] = {.lex_state = 344, .external_lex_state = 3}, + [1179] = {.lex_state = 344, .external_lex_state = 3}, + [1180] = {.lex_state = 67, .external_lex_state = 3}, + [1181] = {.lex_state = 344, .external_lex_state = 3}, + [1182] = {.lex_state = 344, .external_lex_state = 3}, + [1183] = {.lex_state = 344, .external_lex_state = 3}, + [1184] = {.lex_state = 343, .external_lex_state = 3}, + [1185] = {.lex_state = 344, .external_lex_state = 3}, + [1186] = {.lex_state = 344, .external_lex_state = 11}, + [1187] = {.lex_state = 68, .external_lex_state = 3}, + [1188] = {.lex_state = 340, .external_lex_state = 4}, + [1189] = {.lex_state = 340, .external_lex_state = 5}, + [1190] = {.lex_state = 68, .external_lex_state = 4}, + [1191] = {.lex_state = 68, .external_lex_state = 4}, + [1192] = {.lex_state = 344, .external_lex_state = 11}, + [1193] = {.lex_state = 344, .external_lex_state = 3}, + [1194] = {.lex_state = 340, .external_lex_state = 4}, + [1195] = {.lex_state = 343, .external_lex_state = 4}, + [1196] = {.lex_state = 340, .external_lex_state = 4}, + [1197] = {.lex_state = 68, .external_lex_state = 3}, + [1198] = {.lex_state = 68, .external_lex_state = 3}, + [1199] = {.lex_state = 340, .external_lex_state = 4}, + [1200] = {.lex_state = 344, .external_lex_state = 11}, + [1201] = {.lex_state = 344, .external_lex_state = 3}, + [1202] = {.lex_state = 68, .external_lex_state = 4}, + [1203] = {.lex_state = 68, .external_lex_state = 4}, + [1204] = {.lex_state = 68, .external_lex_state = 4}, + [1205] = {.lex_state = 344, .external_lex_state = 11}, + [1206] = {.lex_state = 340, .external_lex_state = 4}, + [1207] = {.lex_state = 343, .external_lex_state = 4}, + [1208] = {.lex_state = 344, .external_lex_state = 3}, + [1209] = {.lex_state = 68, .external_lex_state = 4}, + [1210] = {.lex_state = 345, .external_lex_state = 3}, + [1211] = {.lex_state = 344, .external_lex_state = 3}, + [1212] = {.lex_state = 340, .external_lex_state = 5}, + [1213] = {.lex_state = 340, .external_lex_state = 4}, + [1214] = {.lex_state = 340, .external_lex_state = 4}, + [1215] = {.lex_state = 68, .external_lex_state = 4}, + [1216] = {.lex_state = 340, .external_lex_state = 4}, + [1217] = {.lex_state = 340, .external_lex_state = 4}, + [1218] = {.lex_state = 345, .external_lex_state = 4}, + [1219] = {.lex_state = 345, .external_lex_state = 4}, + [1220] = {.lex_state = 343, .external_lex_state = 4}, + [1221] = {.lex_state = 345, .external_lex_state = 4}, + [1222] = {.lex_state = 340, .external_lex_state = 4}, + [1223] = {.lex_state = 345, .external_lex_state = 4}, + [1224] = {.lex_state = 340, .external_lex_state = 5}, + [1225] = {.lex_state = 340, .external_lex_state = 5}, + [1226] = {.lex_state = 340, .external_lex_state = 5}, + [1227] = {.lex_state = 344, .external_lex_state = 3}, + [1228] = {.lex_state = 340, .external_lex_state = 5}, + [1229] = {.lex_state = 344, .external_lex_state = 12}, + [1230] = {.lex_state = 347, .external_lex_state = 4}, + [1231] = {.lex_state = 340, .external_lex_state = 4}, + [1232] = {.lex_state = 340, .external_lex_state = 5}, + [1233] = {.lex_state = 344, .external_lex_state = 12}, + [1234] = {.lex_state = 340, .external_lex_state = 4}, + [1235] = {.lex_state = 68, .external_lex_state = 4}, + [1236] = {.lex_state = 340, .external_lex_state = 5}, + [1237] = {.lex_state = 68, .external_lex_state = 3}, + [1238] = {.lex_state = 345, .external_lex_state = 4}, + [1239] = {.lex_state = 340, .external_lex_state = 4}, + [1240] = {.lex_state = 107, .external_lex_state = 10}, + [1241] = {.lex_state = 68, .external_lex_state = 4}, + [1242] = {.lex_state = 68, .external_lex_state = 3}, + [1243] = {.lex_state = 68, .external_lex_state = 4}, + [1244] = {.lex_state = 68, .external_lex_state = 4}, + [1245] = {.lex_state = 68, .external_lex_state = 4}, + [1246] = {.lex_state = 345, .external_lex_state = 3}, + [1247] = {.lex_state = 344, .external_lex_state = 3}, + [1248] = {.lex_state = 68, .external_lex_state = 4}, + [1249] = {.lex_state = 68, .external_lex_state = 3}, + [1250] = {.lex_state = 340, .external_lex_state = 4}, + [1251] = {.lex_state = 68, .external_lex_state = 3}, + [1252] = {.lex_state = 68, .external_lex_state = 4}, + [1253] = {.lex_state = 68, .external_lex_state = 4}, + [1254] = {.lex_state = 340, .external_lex_state = 4}, + [1255] = {.lex_state = 107, .external_lex_state = 11}, + [1256] = {.lex_state = 68, .external_lex_state = 3}, + [1257] = {.lex_state = 68, .external_lex_state = 4}, + [1258] = {.lex_state = 68, .external_lex_state = 3}, + [1259] = {.lex_state = 344, .external_lex_state = 3}, + [1260] = {.lex_state = 343, .external_lex_state = 4}, + [1261] = {.lex_state = 68, .external_lex_state = 4}, + [1262] = {.lex_state = 344, .external_lex_state = 3}, + [1263] = {.lex_state = 345, .external_lex_state = 3}, + [1264] = {.lex_state = 340, .external_lex_state = 3}, + [1265] = {.lex_state = 340, .external_lex_state = 5}, + [1266] = {.lex_state = 347, .external_lex_state = 4}, + [1267] = {.lex_state = 78, .external_lex_state = 10}, + [1268] = {.lex_state = 340, .external_lex_state = 4}, + [1269] = {.lex_state = 68, .external_lex_state = 4}, + [1270] = {.lex_state = 345, .external_lex_state = 3}, + [1271] = {.lex_state = 345, .external_lex_state = 3}, + [1272] = {.lex_state = 107, .external_lex_state = 10}, + [1273] = {.lex_state = 78, .external_lex_state = 10}, + [1274] = {.lex_state = 340, .external_lex_state = 4}, + [1275] = {.lex_state = 344, .external_lex_state = 3}, + [1276] = {.lex_state = 344, .external_lex_state = 3}, + [1277] = {.lex_state = 344, .external_lex_state = 3}, + [1278] = {.lex_state = 344, .external_lex_state = 4}, + [1279] = {.lex_state = 70, .external_lex_state = 3}, + [1280] = {.lex_state = 69, .external_lex_state = 3}, + [1281] = {.lex_state = 340, .external_lex_state = 5}, + [1282] = {.lex_state = 344, .external_lex_state = 3}, + [1283] = {.lex_state = 344, .external_lex_state = 3}, + [1284] = {.lex_state = 344, .external_lex_state = 3}, + [1285] = {.lex_state = 68, .external_lex_state = 3}, + [1286] = {.lex_state = 67, .external_lex_state = 3}, + [1287] = {.lex_state = 344, .external_lex_state = 4}, + [1288] = {.lex_state = 70, .external_lex_state = 3}, + [1289] = {.lex_state = 344, .external_lex_state = 3}, + [1290] = {.lex_state = 344, .external_lex_state = 3}, + [1291] = {.lex_state = 344, .external_lex_state = 3}, + [1292] = {.lex_state = 344, .external_lex_state = 3}, + [1293] = {.lex_state = 70, .external_lex_state = 3}, + [1294] = {.lex_state = 344, .external_lex_state = 4}, + [1295] = {.lex_state = 69, .external_lex_state = 3}, + [1296] = {.lex_state = 70, .external_lex_state = 3}, + [1297] = {.lex_state = 69, .external_lex_state = 3}, + [1298] = {.lex_state = 340, .external_lex_state = 6}, + [1299] = {.lex_state = 344, .external_lex_state = 3}, + [1300] = {.lex_state = 344, .external_lex_state = 3}, + [1301] = {.lex_state = 68, .external_lex_state = 3}, + [1302] = {.lex_state = 67, .external_lex_state = 3}, + [1303] = {.lex_state = 68, .external_lex_state = 3}, + [1304] = {.lex_state = 110, .external_lex_state = 10}, + [1305] = {.lex_state = 68, .external_lex_state = 3}, + [1306] = {.lex_state = 344, .external_lex_state = 3}, + [1307] = {.lex_state = 344, .external_lex_state = 3}, + [1308] = {.lex_state = 67, .external_lex_state = 3}, + [1309] = {.lex_state = 78, .external_lex_state = 10}, + [1310] = {.lex_state = 344, .external_lex_state = 3}, + [1311] = {.lex_state = 344, .external_lex_state = 3}, + [1312] = {.lex_state = 68, .external_lex_state = 3}, + [1313] = {.lex_state = 344, .external_lex_state = 3}, + [1314] = {.lex_state = 67, .external_lex_state = 3}, + [1315] = {.lex_state = 344, .external_lex_state = 3}, + [1316] = {.lex_state = 345, .external_lex_state = 4}, + [1317] = {.lex_state = 69, .external_lex_state = 3}, + [1318] = {.lex_state = 344, .external_lex_state = 3}, + [1319] = {.lex_state = 344, .external_lex_state = 3}, + [1320] = {.lex_state = 344, .external_lex_state = 3}, + [1321] = {.lex_state = 347, .external_lex_state = 10}, + [1322] = {.lex_state = 344, .external_lex_state = 3}, + [1323] = {.lex_state = 344, .external_lex_state = 3}, + [1324] = {.lex_state = 70, .external_lex_state = 3}, + [1325] = {.lex_state = 340, .external_lex_state = 5}, + [1326] = {.lex_state = 71, .external_lex_state = 3}, + [1327] = {.lex_state = 68, .external_lex_state = 3}, + [1328] = {.lex_state = 344, .external_lex_state = 3}, + [1329] = {.lex_state = 344, .external_lex_state = 3}, + [1330] = {.lex_state = 68, .external_lex_state = 3}, + [1331] = {.lex_state = 344, .external_lex_state = 3}, + [1332] = {.lex_state = 340, .external_lex_state = 6}, + [1333] = {.lex_state = 344, .external_lex_state = 3}, + [1334] = {.lex_state = 71, .external_lex_state = 3}, + [1335] = {.lex_state = 109, .external_lex_state = 10}, + [1336] = {.lex_state = 344, .external_lex_state = 3}, + [1337] = {.lex_state = 67, .external_lex_state = 3}, + [1338] = {.lex_state = 340, .external_lex_state = 6}, + [1339] = {.lex_state = 344, .external_lex_state = 12}, + [1340] = {.lex_state = 342, .external_lex_state = 4}, + [1341] = {.lex_state = 347, .external_lex_state = 10}, + [1342] = {.lex_state = 344, .external_lex_state = 3}, + [1343] = {.lex_state = 344, .external_lex_state = 4}, + [1344] = {.lex_state = 340, .external_lex_state = 6}, + [1345] = {.lex_state = 344, .external_lex_state = 3}, + [1346] = {.lex_state = 340, .external_lex_state = 6}, + [1347] = {.lex_state = 344, .external_lex_state = 3}, + [1348] = {.lex_state = 107, .external_lex_state = 10}, + [1349] = {.lex_state = 344, .external_lex_state = 3}, + [1350] = {.lex_state = 344, .external_lex_state = 3}, + [1351] = {.lex_state = 340, .external_lex_state = 5}, + [1352] = {.lex_state = 340, .external_lex_state = 6}, + [1353] = {.lex_state = 340, .external_lex_state = 5}, + [1354] = {.lex_state = 340, .external_lex_state = 5}, + [1355] = {.lex_state = 69, .external_lex_state = 3}, + [1356] = {.lex_state = 344, .external_lex_state = 3}, + [1357] = {.lex_state = 344, .external_lex_state = 4}, + [1358] = {.lex_state = 340, .external_lex_state = 5}, + [1359] = {.lex_state = 109, .external_lex_state = 10}, + [1360] = {.lex_state = 344, .external_lex_state = 3}, + [1361] = {.lex_state = 68, .external_lex_state = 3}, + [1362] = {.lex_state = 344, .external_lex_state = 3}, + [1363] = {.lex_state = 68, .external_lex_state = 3}, + [1364] = {.lex_state = 70, .external_lex_state = 3}, + [1365] = {.lex_state = 340, .external_lex_state = 5}, + [1366] = {.lex_state = 344, .external_lex_state = 3}, + [1367] = {.lex_state = 344, .external_lex_state = 3}, + [1368] = {.lex_state = 344, .external_lex_state = 3}, + [1369] = {.lex_state = 344, .external_lex_state = 3}, + [1370] = {.lex_state = 340, .external_lex_state = 5}, + [1371] = {.lex_state = 344, .external_lex_state = 3}, + [1372] = {.lex_state = 344, .external_lex_state = 3}, + [1373] = {.lex_state = 344, .external_lex_state = 3}, + [1374] = {.lex_state = 344, .external_lex_state = 3}, + [1375] = {.lex_state = 344, .external_lex_state = 3}, + [1376] = {.lex_state = 340, .external_lex_state = 5}, + [1377] = {.lex_state = 110, .external_lex_state = 10}, + [1378] = {.lex_state = 340, .external_lex_state = 5}, + [1379] = {.lex_state = 344, .external_lex_state = 3}, + [1380] = {.lex_state = 344, .external_lex_state = 3}, + [1381] = {.lex_state = 340, .external_lex_state = 5}, + [1382] = {.lex_state = 103, .external_lex_state = 10}, + [1383] = {.lex_state = 71, .external_lex_state = 3}, + [1384] = {.lex_state = 344, .external_lex_state = 3}, + [1385] = {.lex_state = 71, .external_lex_state = 3}, + [1386] = {.lex_state = 344, .external_lex_state = 3}, + [1387] = {.lex_state = 344, .external_lex_state = 3}, + [1388] = {.lex_state = 340, .external_lex_state = 6}, + [1389] = {.lex_state = 340, .external_lex_state = 5}, + [1390] = {.lex_state = 68, .external_lex_state = 3}, + [1391] = {.lex_state = 340, .external_lex_state = 6}, + [1392] = {.lex_state = 344, .external_lex_state = 3}, + [1393] = {.lex_state = 340, .external_lex_state = 5}, + [1394] = {.lex_state = 68, .external_lex_state = 3}, + [1395] = {.lex_state = 71, .external_lex_state = 3}, + [1396] = {.lex_state = 344, .external_lex_state = 3}, + [1397] = {.lex_state = 344, .external_lex_state = 3}, + [1398] = {.lex_state = 344, .external_lex_state = 3}, + [1399] = {.lex_state = 103, .external_lex_state = 10}, + [1400] = {.lex_state = 68, .external_lex_state = 3}, + [1401] = {.lex_state = 67, .external_lex_state = 3}, + [1402] = {.lex_state = 344, .external_lex_state = 4}, + [1403] = {.lex_state = 345, .external_lex_state = 4}, + [1404] = {.lex_state = 345, .external_lex_state = 4}, + [1405] = {.lex_state = 340, .external_lex_state = 5}, + [1406] = {.lex_state = 344, .external_lex_state = 4}, + [1407] = {.lex_state = 344, .external_lex_state = 3}, + [1408] = {.lex_state = 71, .external_lex_state = 3}, + [1409] = {.lex_state = 344, .external_lex_state = 3}, + [1410] = {.lex_state = 344, .external_lex_state = 3}, + [1411] = {.lex_state = 344, .external_lex_state = 13}, + [1412] = {.lex_state = 344, .external_lex_state = 3}, + [1413] = {.lex_state = 344, .external_lex_state = 3}, + [1414] = {.lex_state = 344, .external_lex_state = 3}, + [1415] = {.lex_state = 340, .external_lex_state = 5}, + [1416] = {.lex_state = 70, .external_lex_state = 3}, + [1417] = {.lex_state = 344, .external_lex_state = 3}, + [1418] = {.lex_state = 344, .external_lex_state = 3}, + [1419] = {.lex_state = 69, .external_lex_state = 3}, + [1420] = {.lex_state = 71, .external_lex_state = 3}, + [1421] = {.lex_state = 344, .external_lex_state = 3}, + [1422] = {.lex_state = 70, .external_lex_state = 3}, + [1423] = {.lex_state = 344, .external_lex_state = 3}, + [1424] = {.lex_state = 344, .external_lex_state = 4}, + [1425] = {.lex_state = 340, .external_lex_state = 6}, + [1426] = {.lex_state = 345, .external_lex_state = 4}, + [1427] = {.lex_state = 71, .external_lex_state = 3}, + [1428] = {.lex_state = 345, .external_lex_state = 4}, + [1429] = {.lex_state = 344, .external_lex_state = 3}, + [1430] = {.lex_state = 344, .external_lex_state = 3}, + [1431] = {.lex_state = 344, .external_lex_state = 3}, + [1432] = {.lex_state = 71, .external_lex_state = 3}, + [1433] = {.lex_state = 344, .external_lex_state = 13}, + [1434] = {.lex_state = 344, .external_lex_state = 3}, + [1435] = {.lex_state = 67, .external_lex_state = 3}, + [1436] = {.lex_state = 344, .external_lex_state = 3}, + [1437] = {.lex_state = 91, .external_lex_state = 4}, + [1438] = {.lex_state = 68, .external_lex_state = 3}, + [1439] = {.lex_state = 69, .external_lex_state = 3}, + [1440] = {.lex_state = 69, .external_lex_state = 3}, + [1441] = {.lex_state = 68, .external_lex_state = 3}, + [1442] = {.lex_state = 344, .external_lex_state = 3}, + [1443] = {.lex_state = 344, .external_lex_state = 3}, + [1444] = {.lex_state = 68, .external_lex_state = 3}, + [1445] = {.lex_state = 344, .external_lex_state = 3}, + [1446] = {.lex_state = 344, .external_lex_state = 3}, + [1447] = {.lex_state = 344, .external_lex_state = 3}, + [1448] = {.lex_state = 68, .external_lex_state = 3}, + [1449] = {.lex_state = 67, .external_lex_state = 3}, + [1450] = {.lex_state = 344, .external_lex_state = 3}, + [1451] = {.lex_state = 68, .external_lex_state = 3}, + [1452] = {.lex_state = 69, .external_lex_state = 3}, + [1453] = {.lex_state = 67, .external_lex_state = 3}, + [1454] = {.lex_state = 344, .external_lex_state = 3}, + [1455] = {.lex_state = 344, .external_lex_state = 3}, + [1456] = {.lex_state = 68, .external_lex_state = 3}, + [1457] = {.lex_state = 344, .external_lex_state = 3}, + [1458] = {.lex_state = 344, .external_lex_state = 3}, + [1459] = {.lex_state = 71, .external_lex_state = 3}, + [1460] = {.lex_state = 70, .external_lex_state = 3}, + [1461] = {.lex_state = 340, .external_lex_state = 5}, + [1462] = {.lex_state = 340, .external_lex_state = 5}, + [1463] = {.lex_state = 340, .external_lex_state = 3}, + [1464] = {.lex_state = 344, .external_lex_state = 4}, + [1465] = {.lex_state = 344, .external_lex_state = 11}, + [1466] = {.lex_state = 344, .external_lex_state = 4}, + [1467] = {.lex_state = 71, .external_lex_state = 3}, + [1468] = {.lex_state = 340, .external_lex_state = 6}, + [1469] = {.lex_state = 71, .external_lex_state = 3}, + [1470] = {.lex_state = 340, .external_lex_state = 3}, + [1471] = {.lex_state = 71, .external_lex_state = 3}, + [1472] = {.lex_state = 71, .external_lex_state = 3}, + [1473] = {.lex_state = 71, .external_lex_state = 3}, + [1474] = {.lex_state = 92, .external_lex_state = 4}, + [1475] = {.lex_state = 69, .external_lex_state = 3}, + [1476] = {.lex_state = 67, .external_lex_state = 3}, + [1477] = {.lex_state = 344, .external_lex_state = 4}, + [1478] = {.lex_state = 340, .external_lex_state = 6}, + [1479] = {.lex_state = 340, .external_lex_state = 6}, + [1480] = {.lex_state = 71, .external_lex_state = 3}, + [1481] = {.lex_state = 340, .external_lex_state = 6}, + [1482] = {.lex_state = 67, .external_lex_state = 3}, + [1483] = {.lex_state = 67, .external_lex_state = 3}, + [1484] = {.lex_state = 67, .external_lex_state = 3}, + [1485] = {.lex_state = 69, .external_lex_state = 3}, + [1486] = {.lex_state = 344, .external_lex_state = 4}, + [1487] = {.lex_state = 344, .external_lex_state = 13}, + [1488] = {.lex_state = 344, .external_lex_state = 4}, + [1489] = {.lex_state = 78, .external_lex_state = 4}, + [1490] = {.lex_state = 344, .external_lex_state = 4}, + [1491] = {.lex_state = 344, .external_lex_state = 11}, + [1492] = {.lex_state = 70, .external_lex_state = 3}, + [1493] = {.lex_state = 344, .external_lex_state = 4}, + [1494] = {.lex_state = 67, .external_lex_state = 3}, + [1495] = {.lex_state = 67, .external_lex_state = 3}, + [1496] = {.lex_state = 67, .external_lex_state = 3}, + [1497] = {.lex_state = 343, .external_lex_state = 4}, + [1498] = {.lex_state = 344, .external_lex_state = 4}, + [1499] = {.lex_state = 71, .external_lex_state = 3}, + [1500] = {.lex_state = 92, .external_lex_state = 4}, + [1501] = {.lex_state = 70, .external_lex_state = 3}, + [1502] = {.lex_state = 67, .external_lex_state = 3}, + [1503] = {.lex_state = 344, .external_lex_state = 4}, + [1504] = {.lex_state = 340, .external_lex_state = 6}, + [1505] = {.lex_state = 340, .external_lex_state = 4}, + [1506] = {.lex_state = 344, .external_lex_state = 4}, + [1507] = {.lex_state = 92, .external_lex_state = 4}, + [1508] = {.lex_state = 67, .external_lex_state = 3}, + [1509] = {.lex_state = 344, .external_lex_state = 4}, + [1510] = {.lex_state = 344, .external_lex_state = 4}, + [1511] = {.lex_state = 67, .external_lex_state = 3}, + [1512] = {.lex_state = 344, .external_lex_state = 4}, + [1513] = {.lex_state = 67, .external_lex_state = 3}, + [1514] = {.lex_state = 67, .external_lex_state = 3}, + [1515] = {.lex_state = 71, .external_lex_state = 3}, + [1516] = {.lex_state = 345, .external_lex_state = 4}, + [1517] = {.lex_state = 92, .external_lex_state = 4}, + [1518] = {.lex_state = 67, .external_lex_state = 3}, + [1519] = {.lex_state = 340, .external_lex_state = 6}, + [1520] = {.lex_state = 71, .external_lex_state = 3}, + [1521] = {.lex_state = 345, .external_lex_state = 4}, + [1522] = {.lex_state = 345, .external_lex_state = 4}, + [1523] = {.lex_state = 340, .external_lex_state = 6}, + [1524] = {.lex_state = 71, .external_lex_state = 3}, + [1525] = {.lex_state = 103, .external_lex_state = 10}, + [1526] = {.lex_state = 344, .external_lex_state = 4}, + [1527] = {.lex_state = 71, .external_lex_state = 3}, + [1528] = {.lex_state = 67, .external_lex_state = 3}, + [1529] = {.lex_state = 344, .external_lex_state = 4}, + [1530] = {.lex_state = 344, .external_lex_state = 11}, + [1531] = {.lex_state = 70, .external_lex_state = 3}, + [1532] = {.lex_state = 344, .external_lex_state = 4}, + [1533] = {.lex_state = 71, .external_lex_state = 3}, + [1534] = {.lex_state = 76, .external_lex_state = 3}, + [1535] = {.lex_state = 345, .external_lex_state = 4}, + [1536] = {.lex_state = 340, .external_lex_state = 6}, + [1537] = {.lex_state = 344, .external_lex_state = 4}, + [1538] = {.lex_state = 340, .external_lex_state = 6}, + [1539] = {.lex_state = 344, .external_lex_state = 4}, + [1540] = {.lex_state = 345, .external_lex_state = 4}, + [1541] = {.lex_state = 344, .external_lex_state = 4}, + [1542] = {.lex_state = 340, .external_lex_state = 6}, + [1543] = {.lex_state = 340, .external_lex_state = 6}, + [1544] = {.lex_state = 340, .external_lex_state = 6}, + [1545] = {.lex_state = 340, .external_lex_state = 6}, + [1546] = {.lex_state = 72, .external_lex_state = 4}, + [1547] = {.lex_state = 344, .external_lex_state = 4}, + [1548] = {.lex_state = 91, .external_lex_state = 3}, + [1549] = {.lex_state = 344, .external_lex_state = 4}, + [1550] = {.lex_state = 70, .external_lex_state = 3}, + [1551] = {.lex_state = 69, .external_lex_state = 3}, + [1552] = {.lex_state = 344, .external_lex_state = 4}, + [1553] = {.lex_state = 344, .external_lex_state = 4}, + [1554] = {.lex_state = 344, .external_lex_state = 4}, + [1555] = {.lex_state = 69, .external_lex_state = 3}, + [1556] = {.lex_state = 70, .external_lex_state = 3}, + [1557] = {.lex_state = 78, .external_lex_state = 4}, + [1558] = {.lex_state = 344, .external_lex_state = 4}, + [1559] = {.lex_state = 69, .external_lex_state = 3}, + [1560] = {.lex_state = 70, .external_lex_state = 3}, + [1561] = {.lex_state = 344, .external_lex_state = 4}, + [1562] = {.lex_state = 344, .external_lex_state = 4}, + [1563] = {.lex_state = 344, .external_lex_state = 4}, + [1564] = {.lex_state = 344, .external_lex_state = 4}, + [1565] = {.lex_state = 344, .external_lex_state = 4}, + [1566] = {.lex_state = 344, .external_lex_state = 4}, + [1567] = {.lex_state = 70, .external_lex_state = 3}, + [1568] = {.lex_state = 344, .external_lex_state = 4}, + [1569] = {.lex_state = 107, .external_lex_state = 11}, + [1570] = {.lex_state = 344, .external_lex_state = 4}, + [1571] = {.lex_state = 344, .external_lex_state = 4}, + [1572] = {.lex_state = 70, .external_lex_state = 3}, + [1573] = {.lex_state = 67, .external_lex_state = 3}, + [1574] = {.lex_state = 69, .external_lex_state = 3}, + [1575] = {.lex_state = 344, .external_lex_state = 4}, + [1576] = {.lex_state = 344, .external_lex_state = 4}, + [1577] = {.lex_state = 344, .external_lex_state = 4}, + [1578] = {.lex_state = 69, .external_lex_state = 3}, + [1579] = {.lex_state = 67, .external_lex_state = 3}, + [1580] = {.lex_state = 344, .external_lex_state = 4}, + [1581] = {.lex_state = 343, .external_lex_state = 4}, + [1582] = {.lex_state = 70, .external_lex_state = 3}, + [1583] = {.lex_state = 70, .external_lex_state = 3}, + [1584] = {.lex_state = 344, .external_lex_state = 4}, + [1585] = {.lex_state = 107, .external_lex_state = 11}, + [1586] = {.lex_state = 69, .external_lex_state = 3}, [1587] = {.lex_state = 69, .external_lex_state = 3}, - [1588] = {.lex_state = 87, .external_lex_state = 4}, - [1589] = {.lex_state = 305, .external_lex_state = 5}, - [1590] = {.lex_state = 81, .external_lex_state = 4}, - [1591] = {.lex_state = 87, .external_lex_state = 10}, - [1592] = {.lex_state = 81, .external_lex_state = 4}, - [1593] = {.lex_state = 69, .external_lex_state = 3}, - [1594] = {.lex_state = 69, .external_lex_state = 3}, - [1595] = {.lex_state = 69, .external_lex_state = 3}, - [1596] = {.lex_state = 306, .external_lex_state = 4}, - [1597] = {.lex_state = 306, .external_lex_state = 4}, - [1598] = {.lex_state = 305, .external_lex_state = 5}, - [1599] = {.lex_state = 87, .external_lex_state = 4}, - [1600] = {.lex_state = 87, .external_lex_state = 4}, - [1601] = {.lex_state = 306, .external_lex_state = 4}, - [1602] = {.lex_state = 309, .external_lex_state = 4}, - [1603] = {.lex_state = 81, .external_lex_state = 4}, - [1604] = {.lex_state = 83, .external_lex_state = 10}, - [1605] = {.lex_state = 88, .external_lex_state = 3}, - [1606] = {.lex_state = 306, .external_lex_state = 4}, - [1607] = {.lex_state = 306, .external_lex_state = 4}, - [1608] = {.lex_state = 87, .external_lex_state = 4}, - [1609] = {.lex_state = 307, .external_lex_state = 5}, - [1610] = {.lex_state = 306, .external_lex_state = 4}, - [1611] = {.lex_state = 306, .external_lex_state = 4}, - [1612] = {.lex_state = 306, .external_lex_state = 4}, - [1613] = {.lex_state = 306, .external_lex_state = 4}, - [1614] = {.lex_state = 307, .external_lex_state = 6}, - [1615] = {.lex_state = 68, .external_lex_state = 3}, - [1616] = {.lex_state = 307, .external_lex_state = 5}, - [1617] = {.lex_state = 307, .external_lex_state = 6}, - [1618] = {.lex_state = 87, .external_lex_state = 4}, - [1619] = {.lex_state = 87, .external_lex_state = 4}, - [1620] = {.lex_state = 87, .external_lex_state = 4}, - [1621] = {.lex_state = 87, .external_lex_state = 4}, - [1622] = {.lex_state = 87, .external_lex_state = 4}, - [1623] = {.lex_state = 306, .external_lex_state = 4}, - [1624] = {.lex_state = 87, .external_lex_state = 4}, - [1625] = {.lex_state = 87, .external_lex_state = 4}, - [1626] = {.lex_state = 306, .external_lex_state = 4}, - [1627] = {.lex_state = 87, .external_lex_state = 4}, - [1628] = {.lex_state = 87, .external_lex_state = 4}, - [1629] = {.lex_state = 87, .external_lex_state = 4}, - [1630] = {.lex_state = 87, .external_lex_state = 4}, - [1631] = {.lex_state = 87, .external_lex_state = 4}, - [1632] = {.lex_state = 87, .external_lex_state = 4}, - [1633] = {.lex_state = 306, .external_lex_state = 4}, - [1634] = {.lex_state = 306, .external_lex_state = 4}, - [1635] = {.lex_state = 87, .external_lex_state = 4}, - [1636] = {.lex_state = 307, .external_lex_state = 6}, - [1637] = {.lex_state = 307, .external_lex_state = 6}, - [1638] = {.lex_state = 306, .external_lex_state = 4}, - [1639] = {.lex_state = 306, .external_lex_state = 4}, - [1640] = {.lex_state = 87, .external_lex_state = 4}, - [1641] = {.lex_state = 87, .external_lex_state = 4}, - [1642] = {.lex_state = 69, .external_lex_state = 3}, - [1643] = {.lex_state = 83, .external_lex_state = 10}, - [1644] = {.lex_state = 306, .external_lex_state = 4}, - [1645] = {.lex_state = 307, .external_lex_state = 5}, - [1646] = {.lex_state = 81, .external_lex_state = 3}, - [1647] = {.lex_state = 86, .external_lex_state = 3}, - [1648] = {.lex_state = 87, .external_lex_state = 4}, - [1649] = {.lex_state = 87, .external_lex_state = 4}, - [1650] = {.lex_state = 87, .external_lex_state = 4}, - [1651] = {.lex_state = 306, .external_lex_state = 4}, - [1652] = {.lex_state = 306, .external_lex_state = 4}, - [1653] = {.lex_state = 87, .external_lex_state = 4}, - [1654] = {.lex_state = 307, .external_lex_state = 6}, - [1655] = {.lex_state = 87, .external_lex_state = 4}, - [1656] = {.lex_state = 87, .external_lex_state = 4}, - [1657] = {.lex_state = 87, .external_lex_state = 4}, - [1658] = {.lex_state = 87, .external_lex_state = 4}, - [1659] = {.lex_state = 306, .external_lex_state = 4}, - [1660] = {.lex_state = 307, .external_lex_state = 5}, - [1661] = {.lex_state = 306, .external_lex_state = 3}, - [1662] = {.lex_state = 86, .external_lex_state = 3}, - [1663] = {.lex_state = 73, .external_lex_state = 3}, - [1664] = {.lex_state = 306, .external_lex_state = 5}, - [1665] = {.lex_state = 306, .external_lex_state = 4}, - [1666] = {.lex_state = 306, .external_lex_state = 4}, - [1667] = {.lex_state = 306, .external_lex_state = 4}, - [1668] = {.lex_state = 306, .external_lex_state = 4}, - [1669] = {.lex_state = 306, .external_lex_state = 4}, - [1670] = {.lex_state = 306, .external_lex_state = 4}, - [1671] = {.lex_state = 87, .external_lex_state = 4}, - [1672] = {.lex_state = 87, .external_lex_state = 4}, - [1673] = {.lex_state = 87, .external_lex_state = 4}, - [1674] = {.lex_state = 87, .external_lex_state = 4}, - [1675] = {.lex_state = 306, .external_lex_state = 4}, - [1676] = {.lex_state = 306, .external_lex_state = 4}, - [1677] = {.lex_state = 309, .external_lex_state = 6}, - [1678] = {.lex_state = 87, .external_lex_state = 4}, - [1679] = {.lex_state = 306, .external_lex_state = 4}, - [1680] = {.lex_state = 306, .external_lex_state = 13}, - [1681] = {.lex_state = 69, .external_lex_state = 3}, - [1682] = {.lex_state = 306, .external_lex_state = 4}, - [1683] = {.lex_state = 306, .external_lex_state = 4}, - [1684] = {.lex_state = 69, .external_lex_state = 3}, - [1685] = {.lex_state = 306, .external_lex_state = 4}, - [1686] = {.lex_state = 87, .external_lex_state = 4}, - [1687] = {.lex_state = 69, .external_lex_state = 3}, - [1688] = {.lex_state = 69, .external_lex_state = 3}, - [1689] = {.lex_state = 306, .external_lex_state = 4}, - [1690] = {.lex_state = 309, .external_lex_state = 10}, - [1691] = {.lex_state = 306, .external_lex_state = 13}, - [1692] = {.lex_state = 68, .external_lex_state = 3}, - [1693] = {.lex_state = 306, .external_lex_state = 4}, - [1694] = {.lex_state = 86, .external_lex_state = 3}, - [1695] = {.lex_state = 307, .external_lex_state = 5}, - [1696] = {.lex_state = 306, .external_lex_state = 4}, - [1697] = {.lex_state = 87, .external_lex_state = 4}, - [1698] = {.lex_state = 306, .external_lex_state = 4}, - [1699] = {.lex_state = 87, .external_lex_state = 3}, - [1700] = {.lex_state = 306, .external_lex_state = 4}, - [1701] = {.lex_state = 87, .external_lex_state = 4}, - [1702] = {.lex_state = 87, .external_lex_state = 4}, - [1703] = {.lex_state = 306, .external_lex_state = 4}, - [1704] = {.lex_state = 87, .external_lex_state = 4}, - [1705] = {.lex_state = 87, .external_lex_state = 3}, - [1706] = {.lex_state = 87, .external_lex_state = 4}, - [1707] = {.lex_state = 306, .external_lex_state = 4}, - [1708] = {.lex_state = 87, .external_lex_state = 4}, - [1709] = {.lex_state = 306, .external_lex_state = 5}, - [1710] = {.lex_state = 87, .external_lex_state = 4}, - [1711] = {.lex_state = 87, .external_lex_state = 4}, - [1712] = {.lex_state = 87, .external_lex_state = 3}, - [1713] = {.lex_state = 83, .external_lex_state = 3}, - [1714] = {.lex_state = 306, .external_lex_state = 4}, - [1715] = {.lex_state = 83, .external_lex_state = 3}, - [1716] = {.lex_state = 87, .external_lex_state = 4}, - [1717] = {.lex_state = 306, .external_lex_state = 13}, - [1718] = {.lex_state = 87, .external_lex_state = 4}, - [1719] = {.lex_state = 87, .external_lex_state = 4}, - [1720] = {.lex_state = 68, .external_lex_state = 3}, - [1721] = {.lex_state = 306, .external_lex_state = 4}, - [1722] = {.lex_state = 87, .external_lex_state = 4}, - [1723] = {.lex_state = 306, .external_lex_state = 4}, - [1724] = {.lex_state = 306, .external_lex_state = 4}, - [1725] = {.lex_state = 309, .external_lex_state = 10}, - [1726] = {.lex_state = 68, .external_lex_state = 3}, - [1727] = {.lex_state = 306, .external_lex_state = 4}, - [1728] = {.lex_state = 306, .external_lex_state = 4}, - [1729] = {.lex_state = 306, .external_lex_state = 4}, - [1730] = {.lex_state = 306, .external_lex_state = 4}, - [1731] = {.lex_state = 306, .external_lex_state = 4}, - [1732] = {.lex_state = 306, .external_lex_state = 4}, - [1733] = {.lex_state = 81, .external_lex_state = 3}, - [1734] = {.lex_state = 306, .external_lex_state = 4}, - [1735] = {.lex_state = 306, .external_lex_state = 4}, - [1736] = {.lex_state = 87, .external_lex_state = 4}, - [1737] = {.lex_state = 306, .external_lex_state = 4}, - [1738] = {.lex_state = 306, .external_lex_state = 4}, - [1739] = {.lex_state = 306, .external_lex_state = 4}, - [1740] = {.lex_state = 87, .external_lex_state = 4}, - [1741] = {.lex_state = 87, .external_lex_state = 4}, - [1742] = {.lex_state = 306, .external_lex_state = 4}, - [1743] = {.lex_state = 87, .external_lex_state = 4}, - [1744] = {.lex_state = 87, .external_lex_state = 4}, - [1745] = {.lex_state = 306, .external_lex_state = 4}, - [1746] = {.lex_state = 81, .external_lex_state = 3}, - [1747] = {.lex_state = 306, .external_lex_state = 4}, - [1748] = {.lex_state = 306, .external_lex_state = 4}, - [1749] = {.lex_state = 68, .external_lex_state = 3}, - [1750] = {.lex_state = 87, .external_lex_state = 4}, - [1751] = {.lex_state = 87, .external_lex_state = 4}, - [1752] = {.lex_state = 87, .external_lex_state = 4}, - [1753] = {.lex_state = 87, .external_lex_state = 4}, - [1754] = {.lex_state = 87, .external_lex_state = 4}, - [1755] = {.lex_state = 87, .external_lex_state = 4}, - [1756] = {.lex_state = 306, .external_lex_state = 4}, - [1757] = {.lex_state = 87, .external_lex_state = 4}, - [1758] = {.lex_state = 87, .external_lex_state = 4}, - [1759] = {.lex_state = 306, .external_lex_state = 4}, - [1760] = {.lex_state = 306, .external_lex_state = 4}, - [1761] = {.lex_state = 306, .external_lex_state = 4}, - [1762] = {.lex_state = 306, .external_lex_state = 4}, - [1763] = {.lex_state = 306, .external_lex_state = 5}, - [1764] = {.lex_state = 73, .external_lex_state = 4}, - [1765] = {.lex_state = 87, .external_lex_state = 4}, - [1766] = {.lex_state = 81, .external_lex_state = 3}, - [1767] = {.lex_state = 81, .external_lex_state = 3}, - [1768] = {.lex_state = 87, .external_lex_state = 4}, - [1769] = {.lex_state = 87, .external_lex_state = 4}, - [1770] = {.lex_state = 306, .external_lex_state = 4}, - [1771] = {.lex_state = 306, .external_lex_state = 4}, - [1772] = {.lex_state = 306, .external_lex_state = 5}, - [1773] = {.lex_state = 306, .external_lex_state = 4}, - [1774] = {.lex_state = 87, .external_lex_state = 4}, - [1775] = {.lex_state = 306, .external_lex_state = 4}, - [1776] = {.lex_state = 87, .external_lex_state = 4}, - [1777] = {.lex_state = 306, .external_lex_state = 4}, - [1778] = {.lex_state = 87, .external_lex_state = 4}, - [1779] = {.lex_state = 306, .external_lex_state = 4}, - [1780] = {.lex_state = 306, .external_lex_state = 4}, - [1781] = {.lex_state = 306, .external_lex_state = 4}, - [1782] = {.lex_state = 87, .external_lex_state = 4}, - [1783] = {.lex_state = 306, .external_lex_state = 4}, - [1784] = {.lex_state = 83, .external_lex_state = 10}, - [1785] = {.lex_state = 86, .external_lex_state = 3}, - [1786] = {.lex_state = 87, .external_lex_state = 4}, - [1787] = {.lex_state = 68, .external_lex_state = 3}, - [1788] = {.lex_state = 87, .external_lex_state = 4}, - [1789] = {.lex_state = 309, .external_lex_state = 10}, - [1790] = {.lex_state = 306, .external_lex_state = 4}, - [1791] = {.lex_state = 87, .external_lex_state = 4}, - [1792] = {.lex_state = 68, .external_lex_state = 3}, - [1793] = {.lex_state = 68, .external_lex_state = 3}, - [1794] = {.lex_state = 309, .external_lex_state = 6}, - [1795] = {.lex_state = 306, .external_lex_state = 5}, - [1796] = {.lex_state = 87, .external_lex_state = 4}, - [1797] = {.lex_state = 306, .external_lex_state = 5}, - [1798] = {.lex_state = 87, .external_lex_state = 4}, - [1799] = {.lex_state = 87, .external_lex_state = 4}, - [1800] = {.lex_state = 87, .external_lex_state = 4}, - [1801] = {.lex_state = 87, .external_lex_state = 3}, - [1802] = {.lex_state = 87, .external_lex_state = 4}, - [1803] = {.lex_state = 305, .external_lex_state = 6}, - [1804] = {.lex_state = 68, .external_lex_state = 3}, - [1805] = {.lex_state = 76, .external_lex_state = 3}, - [1806] = {.lex_state = 306, .external_lex_state = 4}, - [1807] = {.lex_state = 76, .external_lex_state = 3}, - [1808] = {.lex_state = 306, .external_lex_state = 4}, - [1809] = {.lex_state = 87, .external_lex_state = 4}, - [1810] = {.lex_state = 306, .external_lex_state = 3}, - [1811] = {.lex_state = 73, .external_lex_state = 4}, - [1812] = {.lex_state = 87, .external_lex_state = 4}, - [1813] = {.lex_state = 306, .external_lex_state = 4}, - [1814] = {.lex_state = 87, .external_lex_state = 4}, - [1815] = {.lex_state = 68, .external_lex_state = 3}, - [1816] = {.lex_state = 76, .external_lex_state = 3}, - [1817] = {.lex_state = 306, .external_lex_state = 5}, - [1818] = {.lex_state = 305, .external_lex_state = 6}, - [1819] = {.lex_state = 87, .external_lex_state = 3}, - [1820] = {.lex_state = 73, .external_lex_state = 3}, - [1821] = {.lex_state = 68, .external_lex_state = 3}, - [1822] = {.lex_state = 77, .external_lex_state = 3}, - [1823] = {.lex_state = 87, .external_lex_state = 4}, - [1824] = {.lex_state = 88, .external_lex_state = 3}, - [1825] = {.lex_state = 76, .external_lex_state = 3}, - [1826] = {.lex_state = 87, .external_lex_state = 3}, - [1827] = {.lex_state = 77, .external_lex_state = 3}, - [1828] = {.lex_state = 77, .external_lex_state = 3}, - [1829] = {.lex_state = 306, .external_lex_state = 4}, - [1830] = {.lex_state = 306, .external_lex_state = 4}, - [1831] = {.lex_state = 306, .external_lex_state = 4}, - [1832] = {.lex_state = 305, .external_lex_state = 6}, - [1833] = {.lex_state = 88, .external_lex_state = 3}, - [1834] = {.lex_state = 88, .external_lex_state = 3}, - [1835] = {.lex_state = 87, .external_lex_state = 4}, - [1836] = {.lex_state = 77, .external_lex_state = 3}, - [1837] = {.lex_state = 77, .external_lex_state = 3}, - [1838] = {.lex_state = 306, .external_lex_state = 5}, - [1839] = {.lex_state = 88, .external_lex_state = 3}, - [1840] = {.lex_state = 87, .external_lex_state = 3}, - [1841] = {.lex_state = 73, .external_lex_state = 3}, - [1842] = {.lex_state = 306, .external_lex_state = 4}, - [1843] = {.lex_state = 305, .external_lex_state = 6}, - [1844] = {.lex_state = 306, .external_lex_state = 4}, - [1845] = {.lex_state = 87, .external_lex_state = 3}, - [1846] = {.lex_state = 306, .external_lex_state = 4}, - [1847] = {.lex_state = 306, .external_lex_state = 4}, - [1848] = {.lex_state = 306, .external_lex_state = 4}, - [1849] = {.lex_state = 87, .external_lex_state = 3}, - [1850] = {.lex_state = 68, .external_lex_state = 3}, - [1851] = {.lex_state = 87, .external_lex_state = 3}, - [1852] = {.lex_state = 87, .external_lex_state = 3}, - [1853] = {.lex_state = 87, .external_lex_state = 3}, - [1854] = {.lex_state = 87, .external_lex_state = 3}, - [1855] = {.lex_state = 77, .external_lex_state = 3}, - [1856] = {.lex_state = 87, .external_lex_state = 3}, - [1857] = {.lex_state = 87, .external_lex_state = 3}, - [1858] = {.lex_state = 309, .external_lex_state = 3}, - [1859] = {.lex_state = 68, .external_lex_state = 3}, - [1860] = {.lex_state = 87, .external_lex_state = 3}, - [1861] = {.lex_state = 306, .external_lex_state = 6}, - [1862] = {.lex_state = 87, .external_lex_state = 3}, - [1863] = {.lex_state = 87, .external_lex_state = 3}, - [1864] = {.lex_state = 68, .external_lex_state = 3}, - [1865] = {.lex_state = 68, .external_lex_state = 3}, - [1866] = {.lex_state = 68, .external_lex_state = 3}, - [1867] = {.lex_state = 73, .external_lex_state = 3}, - [1868] = {.lex_state = 306, .external_lex_state = 5}, - [1869] = {.lex_state = 306, .external_lex_state = 5}, - [1870] = {.lex_state = 87, .external_lex_state = 3}, - [1871] = {.lex_state = 77, .external_lex_state = 3}, - [1872] = {.lex_state = 306, .external_lex_state = 5}, - [1873] = {.lex_state = 77, .external_lex_state = 3}, - [1874] = {.lex_state = 68, .external_lex_state = 3}, - [1875] = {.lex_state = 306, .external_lex_state = 5}, - [1876] = {.lex_state = 87, .external_lex_state = 3}, - [1877] = {.lex_state = 306, .external_lex_state = 5}, - [1878] = {.lex_state = 306, .external_lex_state = 5}, - [1879] = {.lex_state = 306, .external_lex_state = 5}, - [1880] = {.lex_state = 306, .external_lex_state = 5}, - [1881] = {.lex_state = 306, .external_lex_state = 5}, - [1882] = {.lex_state = 87, .external_lex_state = 3}, - [1883] = {.lex_state = 87, .external_lex_state = 3}, - [1884] = {.lex_state = 87, .external_lex_state = 3}, - [1885] = {.lex_state = 87, .external_lex_state = 3}, - [1886] = {.lex_state = 87, .external_lex_state = 3}, - [1887] = {.lex_state = 87, .external_lex_state = 3}, - [1888] = {.lex_state = 306, .external_lex_state = 5}, - [1889] = {.lex_state = 88, .external_lex_state = 3}, - [1890] = {.lex_state = 88, .external_lex_state = 3}, - [1891] = {.lex_state = 306, .external_lex_state = 5}, - [1892] = {.lex_state = 87, .external_lex_state = 3}, - [1893] = {.lex_state = 307, .external_lex_state = 6}, - [1894] = {.lex_state = 87, .external_lex_state = 3}, - [1895] = {.lex_state = 306, .external_lex_state = 5}, - [1896] = {.lex_state = 87, .external_lex_state = 3}, - [1897] = {.lex_state = 87, .external_lex_state = 3}, - [1898] = {.lex_state = 87, .external_lex_state = 3}, - [1899] = {.lex_state = 87, .external_lex_state = 3}, - [1900] = {.lex_state = 306, .external_lex_state = 5}, - [1901] = {.lex_state = 306, .external_lex_state = 5}, - [1902] = {.lex_state = 306, .external_lex_state = 5}, - [1903] = {.lex_state = 306, .external_lex_state = 5}, - [1904] = {.lex_state = 306, .external_lex_state = 5}, - [1905] = {.lex_state = 87, .external_lex_state = 3}, - [1906] = {.lex_state = 68, .external_lex_state = 3}, - [1907] = {.lex_state = 309, .external_lex_state = 3}, - [1908] = {.lex_state = 68, .external_lex_state = 3}, - [1909] = {.lex_state = 87, .external_lex_state = 3}, - [1910] = {.lex_state = 306, .external_lex_state = 5}, - [1911] = {.lex_state = 306, .external_lex_state = 5}, - [1912] = {.lex_state = 87, .external_lex_state = 3}, - [1913] = {.lex_state = 306, .external_lex_state = 5}, - [1914] = {.lex_state = 306, .external_lex_state = 5}, - [1915] = {.lex_state = 306, .external_lex_state = 5}, - [1916] = {.lex_state = 306, .external_lex_state = 5}, - [1917] = {.lex_state = 87, .external_lex_state = 3}, - [1918] = {.lex_state = 306, .external_lex_state = 5}, - [1919] = {.lex_state = 88, .external_lex_state = 3}, - [1920] = {.lex_state = 87, .external_lex_state = 3}, - [1921] = {.lex_state = 88, .external_lex_state = 3}, - [1922] = {.lex_state = 68, .external_lex_state = 3}, - [1923] = {.lex_state = 87, .external_lex_state = 3}, - [1924] = {.lex_state = 68, .external_lex_state = 3}, - [1925] = {.lex_state = 87, .external_lex_state = 3}, - [1926] = {.lex_state = 87, .external_lex_state = 3}, - [1927] = {.lex_state = 87, .external_lex_state = 3}, - [1928] = {.lex_state = 306, .external_lex_state = 5}, - [1929] = {.lex_state = 87, .external_lex_state = 3}, - [1930] = {.lex_state = 68, .external_lex_state = 3}, - [1931] = {.lex_state = 87, .external_lex_state = 3}, - [1932] = {.lex_state = 87, .external_lex_state = 3}, - [1933] = {.lex_state = 87, .external_lex_state = 3}, - [1934] = {.lex_state = 306, .external_lex_state = 6}, - [1935] = {.lex_state = 68, .external_lex_state = 3}, - [1936] = {.lex_state = 87, .external_lex_state = 3}, - [1937] = {.lex_state = 73, .external_lex_state = 3}, - [1938] = {.lex_state = 68, .external_lex_state = 3}, - [1939] = {.lex_state = 306, .external_lex_state = 5}, - [1940] = {.lex_state = 306, .external_lex_state = 5}, - [1941] = {.lex_state = 306, .external_lex_state = 5}, - [1942] = {.lex_state = 68, .external_lex_state = 3}, - [1943] = {.lex_state = 68, .external_lex_state = 3}, - [1944] = {.lex_state = 306, .external_lex_state = 5}, - [1945] = {.lex_state = 306, .external_lex_state = 5}, - [1946] = {.lex_state = 68, .external_lex_state = 3}, - [1947] = {.lex_state = 68, .external_lex_state = 3}, - [1948] = {.lex_state = 68, .external_lex_state = 3}, - [1949] = {.lex_state = 68, .external_lex_state = 3}, - [1950] = {.lex_state = 306, .external_lex_state = 5}, - [1951] = {.lex_state = 87, .external_lex_state = 3}, - [1952] = {.lex_state = 87, .external_lex_state = 3}, - [1953] = {.lex_state = 87, .external_lex_state = 3}, - [1954] = {.lex_state = 68, .external_lex_state = 3}, - [1955] = {.lex_state = 68, .external_lex_state = 3}, - [1956] = {.lex_state = 68, .external_lex_state = 3}, - [1957] = {.lex_state = 306, .external_lex_state = 5}, - [1958] = {.lex_state = 306, .external_lex_state = 5}, - [1959] = {.lex_state = 306, .external_lex_state = 5}, - [1960] = {.lex_state = 306, .external_lex_state = 5}, - [1961] = {.lex_state = 306, .external_lex_state = 5}, - [1962] = {.lex_state = 68, .external_lex_state = 3}, - [1963] = {.lex_state = 68, .external_lex_state = 3}, - [1964] = {.lex_state = 306, .external_lex_state = 5}, - [1965] = {.lex_state = 83, .external_lex_state = 3}, - [1966] = {.lex_state = 306, .external_lex_state = 5}, - [1967] = {.lex_state = 306, .external_lex_state = 6}, - [1968] = {.lex_state = 306, .external_lex_state = 5}, - [1969] = {.lex_state = 87, .external_lex_state = 3}, - [1970] = {.lex_state = 68, .external_lex_state = 3}, - [1971] = {.lex_state = 83, .external_lex_state = 3}, - [1972] = {.lex_state = 83, .external_lex_state = 3}, - [1973] = {.lex_state = 68, .external_lex_state = 3}, - [1974] = {.lex_state = 83, .external_lex_state = 3}, - [1975] = {.lex_state = 306, .external_lex_state = 5}, - [1976] = {.lex_state = 306, .external_lex_state = 5}, - [1977] = {.lex_state = 306, .external_lex_state = 5}, - [1978] = {.lex_state = 87, .external_lex_state = 3}, - [1979] = {.lex_state = 87, .external_lex_state = 3}, - [1980] = {.lex_state = 306, .external_lex_state = 5}, - [1981] = {.lex_state = 68, .external_lex_state = 3}, - [1982] = {.lex_state = 306, .external_lex_state = 5}, - [1983] = {.lex_state = 306, .external_lex_state = 5}, - [1984] = {.lex_state = 87, .external_lex_state = 3}, - [1985] = {.lex_state = 87, .external_lex_state = 3}, - [1986] = {.lex_state = 77, .external_lex_state = 3}, - [1987] = {.lex_state = 68, .external_lex_state = 3}, - [1988] = {.lex_state = 68, .external_lex_state = 3}, - [1989] = {.lex_state = 68, .external_lex_state = 3}, - [1990] = {.lex_state = 87, .external_lex_state = 3}, - [1991] = {.lex_state = 68, .external_lex_state = 3}, - [1992] = {.lex_state = 306, .external_lex_state = 5}, - [1993] = {.lex_state = 87, .external_lex_state = 3}, - [1994] = {.lex_state = 68, .external_lex_state = 3}, - [1995] = {.lex_state = 68, .external_lex_state = 3}, - [1996] = {.lex_state = 68, .external_lex_state = 3}, - [1997] = {.lex_state = 87, .external_lex_state = 3}, - [1998] = {.lex_state = 87, .external_lex_state = 3}, - [1999] = {.lex_state = 309, .external_lex_state = 3}, - [2000] = {.lex_state = 68, .external_lex_state = 3}, - [2001] = {.lex_state = 309, .external_lex_state = 3}, - [2002] = {.lex_state = 68, .external_lex_state = 3}, - [2003] = {.lex_state = 87, .external_lex_state = 3}, - [2004] = {.lex_state = 83, .external_lex_state = 3}, - [2005] = {.lex_state = 87, .external_lex_state = 3}, - [2006] = {.lex_state = 87, .external_lex_state = 3}, - [2007] = {.lex_state = 87, .external_lex_state = 3}, - [2008] = {.lex_state = 87, .external_lex_state = 3}, - [2009] = {.lex_state = 87, .external_lex_state = 3}, - [2010] = {.lex_state = 87, .external_lex_state = 3}, - [2011] = {.lex_state = 87, .external_lex_state = 3}, - [2012] = {.lex_state = 87, .external_lex_state = 3}, - [2013] = {.lex_state = 87, .external_lex_state = 3}, - [2014] = {.lex_state = 87, .external_lex_state = 3}, - [2015] = {.lex_state = 87, .external_lex_state = 3}, - [2016] = {.lex_state = 87, .external_lex_state = 3}, - [2017] = {.lex_state = 87, .external_lex_state = 3}, - [2018] = {.lex_state = 306, .external_lex_state = 5}, - [2019] = {.lex_state = 68, .external_lex_state = 3}, - [2020] = {.lex_state = 87, .external_lex_state = 3}, - [2021] = {.lex_state = 68, .external_lex_state = 3}, - [2022] = {.lex_state = 83, .external_lex_state = 3}, - [2023] = {.lex_state = 68, .external_lex_state = 3}, - [2024] = {.lex_state = 68, .external_lex_state = 3}, - [2025] = {.lex_state = 68, .external_lex_state = 3}, - [2026] = {.lex_state = 68, .external_lex_state = 3}, - [2027] = {.lex_state = 68, .external_lex_state = 3}, - [2028] = {.lex_state = 68, .external_lex_state = 3}, - [2029] = {.lex_state = 68, .external_lex_state = 3}, - [2030] = {.lex_state = 68, .external_lex_state = 3}, - [2031] = {.lex_state = 68, .external_lex_state = 3}, - [2032] = {.lex_state = 68, .external_lex_state = 3}, - [2033] = {.lex_state = 306, .external_lex_state = 5}, - [2034] = {.lex_state = 68, .external_lex_state = 3}, - [2035] = {.lex_state = 68, .external_lex_state = 3}, - [2036] = {.lex_state = 306, .external_lex_state = 5}, - [2037] = {.lex_state = 306, .external_lex_state = 5}, - [2038] = {.lex_state = 87, .external_lex_state = 3}, - [2039] = {.lex_state = 306, .external_lex_state = 5}, - [2040] = {.lex_state = 87, .external_lex_state = 3}, - [2041] = {.lex_state = 87, .external_lex_state = 3}, - [2042] = {.lex_state = 87, .external_lex_state = 3}, - [2043] = {.lex_state = 68, .external_lex_state = 3}, - [2044] = {.lex_state = 309, .external_lex_state = 3}, - [2045] = {.lex_state = 87, .external_lex_state = 3}, - [2046] = {.lex_state = 68, .external_lex_state = 3}, - [2047] = {.lex_state = 307, .external_lex_state = 6}, - [2048] = {.lex_state = 68, .external_lex_state = 3}, - [2049] = {.lex_state = 306, .external_lex_state = 5}, - [2050] = {.lex_state = 68, .external_lex_state = 3}, - [2051] = {.lex_state = 306, .external_lex_state = 5}, - [2052] = {.lex_state = 83, .external_lex_state = 3}, - [2053] = {.lex_state = 309, .external_lex_state = 3}, - [2054] = {.lex_state = 306, .external_lex_state = 6}, - [2055] = {.lex_state = 68, .external_lex_state = 3}, - [2056] = {.lex_state = 306, .external_lex_state = 5}, - [2057] = {.lex_state = 306, .external_lex_state = 5}, - [2058] = {.lex_state = 68, .external_lex_state = 3}, - [2059] = {.lex_state = 306, .external_lex_state = 5}, - [2060] = {.lex_state = 87, .external_lex_state = 3}, - [2061] = {.lex_state = 88, .external_lex_state = 3}, - [2062] = {.lex_state = 306, .external_lex_state = 6}, - [2063] = {.lex_state = 306, .external_lex_state = 5}, - [2064] = {.lex_state = 68, .external_lex_state = 3}, - [2065] = {.lex_state = 306, .external_lex_state = 5}, - [2066] = {.lex_state = 68, .external_lex_state = 3}, - [2067] = {.lex_state = 306, .external_lex_state = 5}, - [2068] = {.lex_state = 306, .external_lex_state = 5}, - [2069] = {.lex_state = 306, .external_lex_state = 5}, - [2070] = {.lex_state = 68, .external_lex_state = 3}, - [2071] = {.lex_state = 68, .external_lex_state = 3}, - [2072] = {.lex_state = 306, .external_lex_state = 6}, - [2073] = {.lex_state = 68, .external_lex_state = 3}, - [2074] = {.lex_state = 87, .external_lex_state = 3}, - [2075] = {.lex_state = 306, .external_lex_state = 5}, - [2076] = {.lex_state = 87, .external_lex_state = 3}, - [2077] = {.lex_state = 306, .external_lex_state = 5}, - [2078] = {.lex_state = 87, .external_lex_state = 3}, - [2079] = {.lex_state = 306, .external_lex_state = 6}, - [2080] = {.lex_state = 87, .external_lex_state = 3}, - [2081] = {.lex_state = 309, .external_lex_state = 3}, - [2082] = {.lex_state = 68, .external_lex_state = 3}, - [2083] = {.lex_state = 87, .external_lex_state = 3}, - [2084] = {.lex_state = 306, .external_lex_state = 6}, - [2085] = {.lex_state = 306, .external_lex_state = 5}, - [2086] = {.lex_state = 306, .external_lex_state = 5}, - [2087] = {.lex_state = 68, .external_lex_state = 3}, - [2088] = {.lex_state = 68, .external_lex_state = 3}, - [2089] = {.lex_state = 306, .external_lex_state = 5}, - [2090] = {.lex_state = 77, .external_lex_state = 3}, - [2091] = {.lex_state = 306, .external_lex_state = 5}, - [2092] = {.lex_state = 306, .external_lex_state = 5}, - [2093] = {.lex_state = 306, .external_lex_state = 5}, - [2094] = {.lex_state = 68, .external_lex_state = 3}, - [2095] = {.lex_state = 306, .external_lex_state = 5}, - [2096] = {.lex_state = 306, .external_lex_state = 5}, - [2097] = {.lex_state = 309, .external_lex_state = 3}, - [2098] = {.lex_state = 68, .external_lex_state = 3}, - [2099] = {.lex_state = 68, .external_lex_state = 3}, - [2100] = {.lex_state = 306, .external_lex_state = 5}, - [2101] = {.lex_state = 306, .external_lex_state = 5}, - [2102] = {.lex_state = 306, .external_lex_state = 5}, - [2103] = {.lex_state = 68, .external_lex_state = 3}, - [2104] = {.lex_state = 306, .external_lex_state = 5}, - [2105] = {.lex_state = 309, .external_lex_state = 3}, - [2106] = {.lex_state = 307, .external_lex_state = 6}, - [2107] = {.lex_state = 306, .external_lex_state = 5}, - [2108] = {.lex_state = 68, .external_lex_state = 3}, - [2109] = {.lex_state = 83, .external_lex_state = 3}, - [2110] = {.lex_state = 68, .external_lex_state = 3}, - [2111] = {.lex_state = 68, .external_lex_state = 3}, - [2112] = {.lex_state = 307, .external_lex_state = 6}, - [2113] = {.lex_state = 307, .external_lex_state = 6}, - [2114] = {.lex_state = 306, .external_lex_state = 5}, - [2115] = {.lex_state = 68, .external_lex_state = 3}, - [2116] = {.lex_state = 68, .external_lex_state = 3}, - [2117] = {.lex_state = 68, .external_lex_state = 3}, - [2118] = {.lex_state = 68, .external_lex_state = 3}, - [2119] = {.lex_state = 68, .external_lex_state = 3}, - [2120] = {.lex_state = 68, .external_lex_state = 3}, - [2121] = {.lex_state = 68, .external_lex_state = 3}, - [2122] = {.lex_state = 83, .external_lex_state = 3}, - [2123] = {.lex_state = 83, .external_lex_state = 3}, - [2124] = {.lex_state = 83, .external_lex_state = 3}, - [2125] = {.lex_state = 306, .external_lex_state = 6}, - [2126] = {.lex_state = 309, .external_lex_state = 3}, - [2127] = {.lex_state = 306, .external_lex_state = 6}, - [2128] = {.lex_state = 309, .external_lex_state = 3}, - [2129] = {.lex_state = 306, .external_lex_state = 6}, - [2130] = {.lex_state = 83, .external_lex_state = 3}, - [2131] = {.lex_state = 309, .external_lex_state = 3}, - [2132] = {.lex_state = 306, .external_lex_state = 6}, - [2133] = {.lex_state = 306, .external_lex_state = 6}, - [2134] = {.lex_state = 83, .external_lex_state = 3}, - [2135] = {.lex_state = 306, .external_lex_state = 6}, - [2136] = {.lex_state = 83, .external_lex_state = 3}, - [2137] = {.lex_state = 306, .external_lex_state = 6}, - [2138] = {.lex_state = 306, .external_lex_state = 6}, - [2139] = {.lex_state = 83, .external_lex_state = 3}, - [2140] = {.lex_state = 309, .external_lex_state = 3}, - [2141] = {.lex_state = 83, .external_lex_state = 3}, - [2142] = {.lex_state = 83, .external_lex_state = 3}, - [2143] = {.lex_state = 309, .external_lex_state = 3}, - [2144] = {.lex_state = 309, .external_lex_state = 3}, - [2145] = {.lex_state = 309, .external_lex_state = 3}, - [2146] = {.lex_state = 309, .external_lex_state = 3}, - [2147] = {.lex_state = 83, .external_lex_state = 3}, - [2148] = {.lex_state = 309, .external_lex_state = 3}, - [2149] = {.lex_state = 309, .external_lex_state = 3}, - [2150] = {.lex_state = 83, .external_lex_state = 3}, - [2151] = {.lex_state = 83, .external_lex_state = 3}, - [2152] = {.lex_state = 83, .external_lex_state = 3}, - [2153] = {.lex_state = 309, .external_lex_state = 3}, - [2154] = {.lex_state = 83, .external_lex_state = 3}, - [2155] = {.lex_state = 83, .external_lex_state = 3}, - [2156] = {.lex_state = 83, .external_lex_state = 3}, - [2157] = {.lex_state = 83, .external_lex_state = 3}, - [2158] = {.lex_state = 306, .external_lex_state = 6}, - [2159] = {.lex_state = 306, .external_lex_state = 6}, - [2160] = {.lex_state = 309, .external_lex_state = 3}, - [2161] = {.lex_state = 83, .external_lex_state = 3}, - [2162] = {.lex_state = 83, .external_lex_state = 3}, - [2163] = {.lex_state = 306, .external_lex_state = 6}, - [2164] = {.lex_state = 83, .external_lex_state = 3}, - [2165] = {.lex_state = 309, .external_lex_state = 3}, - [2166] = {.lex_state = 309, .external_lex_state = 3}, - [2167] = {.lex_state = 306, .external_lex_state = 6}, - [2168] = {.lex_state = 83, .external_lex_state = 3}, - [2169] = {.lex_state = 306, .external_lex_state = 6}, - [2170] = {.lex_state = 309, .external_lex_state = 3}, - [2171] = {.lex_state = 306, .external_lex_state = 6}, - [2172] = {.lex_state = 309, .external_lex_state = 3}, - [2173] = {.lex_state = 306, .external_lex_state = 6}, - [2174] = {.lex_state = 306, .external_lex_state = 6}, - [2175] = {.lex_state = 83, .external_lex_state = 3}, - [2176] = {.lex_state = 309, .external_lex_state = 3}, - [2177] = {.lex_state = 306, .external_lex_state = 6}, - [2178] = {.lex_state = 83, .external_lex_state = 3}, - [2179] = {.lex_state = 83, .external_lex_state = 3}, - [2180] = {.lex_state = 83, .external_lex_state = 3}, - [2181] = {.lex_state = 306, .external_lex_state = 6}, - [2182] = {.lex_state = 83, .external_lex_state = 3}, - [2183] = {.lex_state = 309, .external_lex_state = 3}, - [2184] = {.lex_state = 309, .external_lex_state = 3}, - [2185] = {.lex_state = 309, .external_lex_state = 3}, - [2186] = {.lex_state = 309, .external_lex_state = 3}, - [2187] = {.lex_state = 309, .external_lex_state = 3}, - [2188] = {.lex_state = 306, .external_lex_state = 6}, - [2189] = {.lex_state = 83, .external_lex_state = 3}, - [2190] = {.lex_state = 309, .external_lex_state = 3}, - [2191] = {.lex_state = 83, .external_lex_state = 3}, - [2192] = {.lex_state = 83, .external_lex_state = 3}, - [2193] = {.lex_state = 309, .external_lex_state = 3}, - [2194] = {.lex_state = 306, .external_lex_state = 6}, - [2195] = {.lex_state = 309, .external_lex_state = 3}, - [2196] = {.lex_state = 309, .external_lex_state = 3}, - [2197] = {.lex_state = 309, .external_lex_state = 3}, - [2198] = {.lex_state = 306, .external_lex_state = 6}, - [2199] = {.lex_state = 83, .external_lex_state = 3}, - [2200] = {.lex_state = 309, .external_lex_state = 3}, - [2201] = {.lex_state = 306, .external_lex_state = 6}, - [2202] = {.lex_state = 83, .external_lex_state = 3}, - [2203] = {.lex_state = 306, .external_lex_state = 6}, - [2204] = {.lex_state = 306, .external_lex_state = 6}, - [2205] = {.lex_state = 309, .external_lex_state = 3}, - [2206] = {.lex_state = 306, .external_lex_state = 6}, - [2207] = {.lex_state = 309, .external_lex_state = 3}, - [2208] = {.lex_state = 309, .external_lex_state = 3}, - [2209] = {.lex_state = 306, .external_lex_state = 6}, - [2210] = {.lex_state = 119, .external_lex_state = 14}, - [2211] = {.lex_state = 306, .external_lex_state = 6}, - [2212] = {.lex_state = 306, .external_lex_state = 6}, - [2213] = {.lex_state = 306, .external_lex_state = 6}, - [2214] = {.lex_state = 306, .external_lex_state = 6}, - [2215] = {.lex_state = 309, .external_lex_state = 3}, - [2216] = {.lex_state = 83, .external_lex_state = 3}, - [2217] = {.lex_state = 309, .external_lex_state = 3}, - [2218] = {.lex_state = 309, .external_lex_state = 3}, - [2219] = {.lex_state = 306, .external_lex_state = 6}, - [2220] = {.lex_state = 309, .external_lex_state = 3}, - [2221] = {.lex_state = 309, .external_lex_state = 3}, - [2222] = {.lex_state = 306, .external_lex_state = 6}, - [2223] = {.lex_state = 309, .external_lex_state = 3}, - [2224] = {.lex_state = 309, .external_lex_state = 3}, - [2225] = {.lex_state = 309, .external_lex_state = 3}, - [2226] = {.lex_state = 306, .external_lex_state = 6}, - [2227] = {.lex_state = 309, .external_lex_state = 3}, - [2228] = {.lex_state = 306, .external_lex_state = 6}, - [2229] = {.lex_state = 306, .external_lex_state = 6}, - [2230] = {.lex_state = 306, .external_lex_state = 6}, - [2231] = {.lex_state = 309, .external_lex_state = 3}, - [2232] = {.lex_state = 309, .external_lex_state = 3}, - [2233] = {.lex_state = 309, .external_lex_state = 3}, - [2234] = {.lex_state = 309, .external_lex_state = 3}, - [2235] = {.lex_state = 306, .external_lex_state = 6}, - [2236] = {.lex_state = 309, .external_lex_state = 3}, - [2237] = {.lex_state = 306, .external_lex_state = 6}, - [2238] = {.lex_state = 83, .external_lex_state = 3}, - [2239] = {.lex_state = 83, .external_lex_state = 3}, - [2240] = {.lex_state = 309, .external_lex_state = 3}, - [2241] = {.lex_state = 83, .external_lex_state = 3}, - [2242] = {.lex_state = 309, .external_lex_state = 3}, - [2243] = {.lex_state = 83, .external_lex_state = 3}, - [2244] = {.lex_state = 309, .external_lex_state = 3}, - [2245] = {.lex_state = 306, .external_lex_state = 6}, - [2246] = {.lex_state = 309, .external_lex_state = 3}, - [2247] = {.lex_state = 309, .external_lex_state = 3}, - [2248] = {.lex_state = 309, .external_lex_state = 3}, - [2249] = {.lex_state = 306, .external_lex_state = 6}, - [2250] = {.lex_state = 306, .external_lex_state = 6}, - [2251] = {.lex_state = 309, .external_lex_state = 3}, - [2252] = {.lex_state = 83, .external_lex_state = 3}, - [2253] = {.lex_state = 119}, - [2254] = {.lex_state = 309, .external_lex_state = 3}, - [2255] = {.lex_state = 83, .external_lex_state = 3}, - [2256] = {.lex_state = 306, .external_lex_state = 6}, - [2257] = {.lex_state = 83, .external_lex_state = 3}, - [2258] = {.lex_state = 128}, - [2259] = {.lex_state = 306, .external_lex_state = 6}, - [2260] = {.lex_state = 306, .external_lex_state = 6}, - [2261] = {.lex_state = 306, .external_lex_state = 6}, - [2262] = {.lex_state = 306, .external_lex_state = 6}, - [2263] = {.lex_state = 306, .external_lex_state = 6}, - [2264] = {.lex_state = 306, .external_lex_state = 6}, - [2265] = {.lex_state = 306, .external_lex_state = 6}, - [2266] = {.lex_state = 306, .external_lex_state = 6}, - [2267] = {.lex_state = 306, .external_lex_state = 6}, - [2268] = {.lex_state = 83, .external_lex_state = 3}, - [2269] = {.lex_state = 83, .external_lex_state = 3}, - [2270] = {.lex_state = 306, .external_lex_state = 6}, - [2271] = {.lex_state = 306, .external_lex_state = 6}, - [2272] = {.lex_state = 309, .external_lex_state = 3}, - [2273] = {.lex_state = 309, .external_lex_state = 3}, - [2274] = {.lex_state = 306, .external_lex_state = 6}, - [2275] = {.lex_state = 306, .external_lex_state = 6}, - [2276] = {.lex_state = 309, .external_lex_state = 3}, - [2277] = {.lex_state = 83, .external_lex_state = 3}, - [2278] = {.lex_state = 309, .external_lex_state = 3}, - [2279] = {.lex_state = 306, .external_lex_state = 6}, - [2280] = {.lex_state = 309, .external_lex_state = 3}, - [2281] = {.lex_state = 306, .external_lex_state = 6}, - [2282] = {.lex_state = 306, .external_lex_state = 6}, - [2283] = {.lex_state = 83, .external_lex_state = 3}, - [2284] = {.lex_state = 306, .external_lex_state = 6}, - [2285] = {.lex_state = 83, .external_lex_state = 3}, - [2286] = {.lex_state = 83, .external_lex_state = 3}, - [2287] = {.lex_state = 83, .external_lex_state = 3}, - [2288] = {.lex_state = 83, .external_lex_state = 3}, - [2289] = {.lex_state = 83, .external_lex_state = 3}, - [2290] = {.lex_state = 306, .external_lex_state = 6}, - [2291] = {.lex_state = 83, .external_lex_state = 3}, - [2292] = {.lex_state = 306, .external_lex_state = 6}, - [2293] = {.lex_state = 83, .external_lex_state = 3}, - [2294] = {.lex_state = 309, .external_lex_state = 3}, - [2295] = {.lex_state = 306, .external_lex_state = 6}, - [2296] = {.lex_state = 309, .external_lex_state = 3}, - [2297] = {.lex_state = 306, .external_lex_state = 6}, - [2298] = {.lex_state = 306, .external_lex_state = 6}, - [2299] = {.lex_state = 83, .external_lex_state = 3}, - [2300] = {.lex_state = 83, .external_lex_state = 3}, - [2301] = {.lex_state = 83, .external_lex_state = 3}, - [2302] = {.lex_state = 309, .external_lex_state = 3}, - [2303] = {.lex_state = 83, .external_lex_state = 3}, - [2304] = {.lex_state = 306, .external_lex_state = 6}, - [2305] = {.lex_state = 306, .external_lex_state = 6}, - [2306] = {.lex_state = 306, .external_lex_state = 6}, - [2307] = {.lex_state = 306, .external_lex_state = 6}, - [2308] = {.lex_state = 306, .external_lex_state = 6}, - [2309] = {.lex_state = 309, .external_lex_state = 3}, - [2310] = {.lex_state = 83, .external_lex_state = 3}, - [2311] = {.lex_state = 83, .external_lex_state = 3}, - [2312] = {.lex_state = 83, .external_lex_state = 3}, - [2313] = {.lex_state = 306, .external_lex_state = 6}, - [2314] = {.lex_state = 309, .external_lex_state = 3}, - [2315] = {.lex_state = 119}, - [2316] = {.lex_state = 306, .external_lex_state = 6}, - [2317] = {.lex_state = 306, .external_lex_state = 6}, - [2318] = {.lex_state = 309, .external_lex_state = 3}, - [2319] = {.lex_state = 309, .external_lex_state = 3}, - [2320] = {.lex_state = 309, .external_lex_state = 3}, - [2321] = {.lex_state = 306, .external_lex_state = 6}, - [2322] = {.lex_state = 83, .external_lex_state = 3}, - [2323] = {.lex_state = 83, .external_lex_state = 3}, - [2324] = {.lex_state = 306, .external_lex_state = 6}, - [2325] = {.lex_state = 83, .external_lex_state = 3}, - [2326] = {.lex_state = 83, .external_lex_state = 3}, - [2327] = {.lex_state = 309, .external_lex_state = 3}, - [2328] = {.lex_state = 306, .external_lex_state = 6}, - [2329] = {.lex_state = 83, .external_lex_state = 3}, - [2330] = {.lex_state = 83, .external_lex_state = 3}, - [2331] = {.lex_state = 306, .external_lex_state = 6}, - [2332] = {.lex_state = 309, .external_lex_state = 3}, - [2333] = {.lex_state = 83, .external_lex_state = 3}, - [2334] = {.lex_state = 309, .external_lex_state = 3}, - [2335] = {.lex_state = 83, .external_lex_state = 3}, - [2336] = {.lex_state = 309, .external_lex_state = 3}, - [2337] = {.lex_state = 83, .external_lex_state = 3}, - [2338] = {.lex_state = 83, .external_lex_state = 3}, - [2339] = {.lex_state = 83, .external_lex_state = 3}, - [2340] = {.lex_state = 309, .external_lex_state = 3}, - [2341] = {.lex_state = 83, .external_lex_state = 3}, - [2342] = {.lex_state = 306, .external_lex_state = 6}, - [2343] = {.lex_state = 83, .external_lex_state = 3}, - [2344] = {.lex_state = 83, .external_lex_state = 3}, - [2345] = {.lex_state = 83, .external_lex_state = 3}, - [2346] = {.lex_state = 83, .external_lex_state = 3}, - [2347] = {.lex_state = 309, .external_lex_state = 3}, - [2348] = {.lex_state = 83, .external_lex_state = 3}, - [2349] = {.lex_state = 83, .external_lex_state = 3}, - [2350] = {.lex_state = 309, .external_lex_state = 3}, - [2351] = {.lex_state = 309, .external_lex_state = 3}, - [2352] = {.lex_state = 309, .external_lex_state = 3}, - [2353] = {.lex_state = 309, .external_lex_state = 3}, - [2354] = {.lex_state = 83, .external_lex_state = 3}, - [2355] = {.lex_state = 119}, - [2356] = {.lex_state = 316, .external_lex_state = 2}, - [2357] = {.lex_state = 316, .external_lex_state = 2}, - [2358] = {.lex_state = 119}, - [2359] = {.lex_state = 316, .external_lex_state = 2}, - [2360] = {.lex_state = 119}, - [2361] = {.lex_state = 119}, - [2362] = {.lex_state = 128}, - [2363] = {.lex_state = 128}, - [2364] = {.lex_state = 316, .external_lex_state = 2}, - [2365] = {.lex_state = 316, .external_lex_state = 2}, - [2366] = {.lex_state = 316, .external_lex_state = 2}, - [2367] = {.lex_state = 134}, - [2368] = {.lex_state = 119}, - [2369] = {.lex_state = 119}, - [2370] = {.lex_state = 119}, - [2371] = {.lex_state = 316, .external_lex_state = 2}, - [2372] = {.lex_state = 119, .external_lex_state = 14}, - [2373] = {.lex_state = 318}, - [2374] = {.lex_state = 318}, - [2375] = {.lex_state = 318}, - [2376] = {.lex_state = 316, .external_lex_state = 2}, - [2377] = {.lex_state = 119}, - [2378] = {.lex_state = 318}, - [2379] = {.lex_state = 119}, - [2380] = {.lex_state = 318}, - [2381] = {.lex_state = 318}, - [2382] = {.lex_state = 318}, - [2383] = {.lex_state = 318}, - [2384] = {.lex_state = 316, .external_lex_state = 2}, - [2385] = {.lex_state = 119}, - [2386] = {.lex_state = 318}, - [2387] = {.lex_state = 119}, - [2388] = {.lex_state = 134}, - [2389] = {.lex_state = 318}, - [2390] = {.lex_state = 318}, - [2391] = {.lex_state = 318}, - [2392] = {.lex_state = 318}, - [2393] = {.lex_state = 316, .external_lex_state = 2}, - [2394] = {.lex_state = 316, .external_lex_state = 7}, - [2395] = {.lex_state = 316, .external_lex_state = 7}, - [2396] = {.lex_state = 316, .external_lex_state = 7}, - [2397] = {.lex_state = 128}, - [2398] = {.lex_state = 316, .external_lex_state = 2}, - [2399] = {.lex_state = 316, .external_lex_state = 2}, - [2400] = {.lex_state = 318}, - [2401] = {.lex_state = 318}, - [2402] = {.lex_state = 318}, - [2403] = {.lex_state = 318}, - [2404] = {.lex_state = 134}, - [2405] = {.lex_state = 318}, - [2406] = {.lex_state = 318}, - [2407] = {.lex_state = 316, .external_lex_state = 7}, - [2408] = {.lex_state = 119}, - [2409] = {.lex_state = 318}, - [2410] = {.lex_state = 316, .external_lex_state = 7}, - [2411] = {.lex_state = 318}, - [2412] = {.lex_state = 316, .external_lex_state = 7}, - [2413] = {.lex_state = 316, .external_lex_state = 2}, - [2414] = {.lex_state = 316, .external_lex_state = 2}, - [2415] = {.lex_state = 318}, - [2416] = {.lex_state = 119}, - [2417] = {.lex_state = 318}, - [2418] = {.lex_state = 316, .external_lex_state = 2}, - [2419] = {.lex_state = 318}, - [2420] = {.lex_state = 318}, - [2421] = {.lex_state = 316, .external_lex_state = 7}, - [2422] = {.lex_state = 318}, - [2423] = {.lex_state = 318}, - [2424] = {.lex_state = 318}, - [2425] = {.lex_state = 318}, - [2426] = {.lex_state = 119}, - [2427] = {.lex_state = 316, .external_lex_state = 2}, - [2428] = {.lex_state = 315, .external_lex_state = 2}, - [2429] = {.lex_state = 318}, - [2430] = {.lex_state = 318}, - [2431] = {.lex_state = 134}, - [2432] = {.lex_state = 316, .external_lex_state = 7}, - [2433] = {.lex_state = 318}, - [2434] = {.lex_state = 316, .external_lex_state = 2}, - [2435] = {.lex_state = 316, .external_lex_state = 2}, - [2436] = {.lex_state = 318}, - [2437] = {.lex_state = 318}, - [2438] = {.lex_state = 316, .external_lex_state = 2}, - [2439] = {.lex_state = 318}, - [2440] = {.lex_state = 315, .external_lex_state = 2}, - [2441] = {.lex_state = 316, .external_lex_state = 2}, - [2442] = {.lex_state = 318}, - [2443] = {.lex_state = 318}, - [2444] = {.lex_state = 316, .external_lex_state = 2}, - [2445] = {.lex_state = 318}, - [2446] = {.lex_state = 316, .external_lex_state = 2}, - [2447] = {.lex_state = 318}, - [2448] = {.lex_state = 318}, - [2449] = {.lex_state = 318}, - [2450] = {.lex_state = 316, .external_lex_state = 7}, - [2451] = {.lex_state = 316, .external_lex_state = 7}, - [2452] = {.lex_state = 316, .external_lex_state = 7}, - [2453] = {.lex_state = 318}, - [2454] = {.lex_state = 316, .external_lex_state = 2}, - [2455] = {.lex_state = 316, .external_lex_state = 7}, - [2456] = {.lex_state = 318}, - [2457] = {.lex_state = 315, .external_lex_state = 2}, - [2458] = {.lex_state = 318}, - [2459] = {.lex_state = 318}, - [2460] = {.lex_state = 318}, - [2461] = {.lex_state = 318}, - [2462] = {.lex_state = 316, .external_lex_state = 7}, - [2463] = {.lex_state = 316, .external_lex_state = 2}, - [2464] = {.lex_state = 316, .external_lex_state = 7}, - [2465] = {.lex_state = 316, .external_lex_state = 7}, - [2466] = {.lex_state = 316, .external_lex_state = 2}, - [2467] = {.lex_state = 316, .external_lex_state = 2}, - [2468] = {.lex_state = 316, .external_lex_state = 7}, - [2469] = {.lex_state = 316, .external_lex_state = 7}, - [2470] = {.lex_state = 316, .external_lex_state = 2}, - [2471] = {.lex_state = 315, .external_lex_state = 7}, - [2472] = {.lex_state = 316, .external_lex_state = 2}, - [2473] = {.lex_state = 316, .external_lex_state = 7}, - [2474] = {.lex_state = 316, .external_lex_state = 7}, - [2475] = {.lex_state = 316, .external_lex_state = 7}, - [2476] = {.lex_state = 316, .external_lex_state = 7}, - [2477] = {.lex_state = 316, .external_lex_state = 2}, - [2478] = {.lex_state = 316, .external_lex_state = 2}, - [2479] = {.lex_state = 315, .external_lex_state = 7}, - [2480] = {.lex_state = 316, .external_lex_state = 7}, - [2481] = {.lex_state = 315, .external_lex_state = 7}, - [2482] = {.lex_state = 316, .external_lex_state = 7}, - [2483] = {.lex_state = 316, .external_lex_state = 2}, - [2484] = {.lex_state = 316, .external_lex_state = 2}, - [2485] = {.lex_state = 316, .external_lex_state = 7}, - [2486] = {.lex_state = 316, .external_lex_state = 7}, - [2487] = {.lex_state = 316, .external_lex_state = 2}, - [2488] = {.lex_state = 316, .external_lex_state = 2}, - [2489] = {.lex_state = 316, .external_lex_state = 2}, - [2490] = {.lex_state = 316, .external_lex_state = 2}, - [2491] = {.lex_state = 316, .external_lex_state = 7}, - [2492] = {.lex_state = 316, .external_lex_state = 7}, - [2493] = {.lex_state = 316, .external_lex_state = 7}, - [2494] = {.lex_state = 316, .external_lex_state = 7}, - [2495] = {.lex_state = 316, .external_lex_state = 7}, - [2496] = {.lex_state = 316, .external_lex_state = 7}, - [2497] = {.lex_state = 316, .external_lex_state = 7}, - [2498] = {.lex_state = 316, .external_lex_state = 7}, - [2499] = {.lex_state = 316, .external_lex_state = 7}, - [2500] = {.lex_state = 316, .external_lex_state = 7}, - [2501] = {.lex_state = 316, .external_lex_state = 7}, - [2502] = {.lex_state = 318}, - [2503] = {.lex_state = 318}, - [2504] = {.lex_state = 318}, - [2505] = {.lex_state = 318}, - [2506] = {.lex_state = 318}, - [2507] = {.lex_state = 318}, - [2508] = {.lex_state = 318}, - [2509] = {.lex_state = 318}, - [2510] = {.lex_state = 318}, - [2511] = {.lex_state = 318}, - [2512] = {.lex_state = 318}, - [2513] = {.lex_state = 318}, - [2514] = {.lex_state = 318}, - [2515] = {.lex_state = 318}, - [2516] = {.lex_state = 318}, - [2517] = {.lex_state = 318}, - [2518] = {.lex_state = 318}, - [2519] = {.lex_state = 318}, - [2520] = {.lex_state = 318}, - [2521] = {.lex_state = 318}, - [2522] = {.lex_state = 318}, - [2523] = {.lex_state = 318}, - [2524] = {.lex_state = 318}, - [2525] = {.lex_state = 318}, - [2526] = {.lex_state = 318}, - [2527] = {.lex_state = 318}, - [2528] = {.lex_state = 318}, - [2529] = {.lex_state = 318}, - [2530] = {.lex_state = 318}, - [2531] = {.lex_state = 318}, - [2532] = {.lex_state = 318}, - [2533] = {.lex_state = 318}, - [2534] = {.lex_state = 318}, - [2535] = {.lex_state = 318}, - [2536] = {.lex_state = 318}, - [2537] = {.lex_state = 318}, - [2538] = {.lex_state = 318}, - [2539] = {.lex_state = 318}, - [2540] = {.lex_state = 318}, - [2541] = {.lex_state = 318}, - [2542] = {.lex_state = 318}, - [2543] = {.lex_state = 318}, - [2544] = {.lex_state = 318}, - [2545] = {.lex_state = 318}, - [2546] = {.lex_state = 318}, - [2547] = {.lex_state = 318}, - [2548] = {.lex_state = 318}, - [2549] = {.lex_state = 318}, - [2550] = {.lex_state = 318}, - [2551] = {.lex_state = 318}, - [2552] = {.lex_state = 318}, - [2553] = {.lex_state = 318}, - [2554] = {.lex_state = 318}, - [2555] = {.lex_state = 318}, - [2556] = {.lex_state = 318}, - [2557] = {.lex_state = 318}, - [2558] = {.lex_state = 318}, - [2559] = {.lex_state = 318}, - [2560] = {.lex_state = 318}, - [2561] = {.lex_state = 318}, - [2562] = {.lex_state = 318}, - [2563] = {.lex_state = 318}, - [2564] = {.lex_state = 318}, - [2565] = {.lex_state = 318}, - [2566] = {.lex_state = 318}, - [2567] = {.lex_state = 318}, - [2568] = {.lex_state = 318}, - [2569] = {.lex_state = 318}, - [2570] = {.lex_state = 318}, - [2571] = {.lex_state = 318}, - [2572] = {.lex_state = 318}, - [2573] = {.lex_state = 318}, - [2574] = {.lex_state = 318}, - [2575] = {.lex_state = 318}, - [2576] = {.lex_state = 318}, - [2577] = {.lex_state = 318}, - [2578] = {.lex_state = 316, .external_lex_state = 2}, - [2579] = {.lex_state = 318}, - [2580] = {.lex_state = 318}, - [2581] = {.lex_state = 114, .external_lex_state = 2}, - [2582] = {.lex_state = 318}, - [2583] = {.lex_state = 318}, - [2584] = {.lex_state = 318}, - [2585] = {.lex_state = 318}, - [2586] = {.lex_state = 318}, - [2587] = {.lex_state = 318}, - [2588] = {.lex_state = 318}, - [2589] = {.lex_state = 318}, - [2590] = {.lex_state = 318}, - [2591] = {.lex_state = 318}, - [2592] = {.lex_state = 318}, - [2593] = {.lex_state = 318}, - [2594] = {.lex_state = 318}, - [2595] = {.lex_state = 318}, - [2596] = {.lex_state = 316, .external_lex_state = 7}, - [2597] = {.lex_state = 318}, - [2598] = {.lex_state = 318}, - [2599] = {.lex_state = 318}, - [2600] = {.lex_state = 318}, - [2601] = {.lex_state = 318}, - [2602] = {.lex_state = 318}, - [2603] = {.lex_state = 318}, - [2604] = {.lex_state = 318}, - [2605] = {.lex_state = 318}, - [2606] = {.lex_state = 318}, - [2607] = {.lex_state = 318}, - [2608] = {.lex_state = 318}, - [2609] = {.lex_state = 315, .external_lex_state = 2}, - [2610] = {.lex_state = 318}, - [2611] = {.lex_state = 318}, - [2612] = {.lex_state = 318}, - [2613] = {.lex_state = 318}, - [2614] = {.lex_state = 315, .external_lex_state = 2}, - [2615] = {.lex_state = 318}, - [2616] = {.lex_state = 315, .external_lex_state = 2}, - [2617] = {.lex_state = 318}, - [2618] = {.lex_state = 318}, - [2619] = {.lex_state = 318}, - [2620] = {.lex_state = 318}, - [2621] = {.lex_state = 318}, - [2622] = {.lex_state = 315, .external_lex_state = 2}, - [2623] = {.lex_state = 318}, - [2624] = {.lex_state = 318}, - [2625] = {.lex_state = 318}, - [2626] = {.lex_state = 318}, - [2627] = {.lex_state = 315, .external_lex_state = 2}, - [2628] = {.lex_state = 318}, - [2629] = {.lex_state = 318}, - [2630] = {.lex_state = 318}, - [2631] = {.lex_state = 318}, - [2632] = {.lex_state = 318}, - [2633] = {.lex_state = 318}, - [2634] = {.lex_state = 318}, - [2635] = {.lex_state = 315, .external_lex_state = 2}, - [2636] = {.lex_state = 318}, - [2637] = {.lex_state = 318}, - [2638] = {.lex_state = 318}, - [2639] = {.lex_state = 318}, - [2640] = {.lex_state = 318}, - [2641] = {.lex_state = 318}, - [2642] = {.lex_state = 318}, - [2643] = {.lex_state = 318}, - [2644] = {.lex_state = 318}, - [2645] = {.lex_state = 318}, - [2646] = {.lex_state = 315, .external_lex_state = 2}, - [2647] = {.lex_state = 318}, - [2648] = {.lex_state = 318}, - [2649] = {.lex_state = 318}, - [2650] = {.lex_state = 315, .external_lex_state = 2}, - [2651] = {.lex_state = 318}, - [2652] = {.lex_state = 315, .external_lex_state = 2}, - [2653] = {.lex_state = 315, .external_lex_state = 2}, - [2654] = {.lex_state = 318}, - [2655] = {.lex_state = 318, .external_lex_state = 15}, - [2656] = {.lex_state = 318}, - [2657] = {.lex_state = 318}, - [2658] = {.lex_state = 318}, - [2659] = {.lex_state = 315, .external_lex_state = 7}, - [2660] = {.lex_state = 318}, - [2661] = {.lex_state = 318}, - [2662] = {.lex_state = 318}, - [2663] = {.lex_state = 318}, - [2664] = {.lex_state = 318}, - [2665] = {.lex_state = 318}, - [2666] = {.lex_state = 318}, - [2667] = {.lex_state = 318}, - [2668] = {.lex_state = 318}, - [2669] = {.lex_state = 318}, - [2670] = {.lex_state = 318}, - [2671] = {.lex_state = 318}, - [2672] = {.lex_state = 315, .external_lex_state = 2}, - [2673] = {.lex_state = 318}, - [2674] = {.lex_state = 315, .external_lex_state = 2}, - [2675] = {.lex_state = 318}, - [2676] = {.lex_state = 315, .external_lex_state = 2}, - [2677] = {.lex_state = 318}, - [2678] = {.lex_state = 318}, - [2679] = {.lex_state = 315, .external_lex_state = 2}, - [2680] = {.lex_state = 318}, - [2681] = {.lex_state = 315, .external_lex_state = 2}, - [2682] = {.lex_state = 318}, - [2683] = {.lex_state = 318}, - [2684] = {.lex_state = 318}, - [2685] = {.lex_state = 318}, - [2686] = {.lex_state = 318}, - [2687] = {.lex_state = 315, .external_lex_state = 2}, - [2688] = {.lex_state = 318}, - [2689] = {.lex_state = 318}, - [2690] = {.lex_state = 315, .external_lex_state = 2}, - [2691] = {.lex_state = 318}, - [2692] = {.lex_state = 318}, - [2693] = {.lex_state = 318}, - [2694] = {.lex_state = 318}, - [2695] = {.lex_state = 318}, - [2696] = {.lex_state = 315, .external_lex_state = 2}, - [2697] = {.lex_state = 318}, - [2698] = {.lex_state = 318}, - [2699] = {.lex_state = 318}, - [2700] = {.lex_state = 318}, - [2701] = {.lex_state = 318}, - [2702] = {.lex_state = 318}, - [2703] = {.lex_state = 318}, - [2704] = {.lex_state = 318}, - [2705] = {.lex_state = 318}, - [2706] = {.lex_state = 318}, - [2707] = {.lex_state = 318}, - [2708] = {.lex_state = 318}, - [2709] = {.lex_state = 318}, - [2710] = {.lex_state = 318}, - [2711] = {.lex_state = 318}, - [2712] = {.lex_state = 318}, - [2713] = {.lex_state = 318}, - [2714] = {.lex_state = 318}, - [2715] = {.lex_state = 318}, - [2716] = {.lex_state = 318}, - [2717] = {.lex_state = 318}, - [2718] = {.lex_state = 318}, - [2719] = {.lex_state = 318}, - [2720] = {.lex_state = 315, .external_lex_state = 2}, - [2721] = {.lex_state = 315, .external_lex_state = 2}, - [2722] = {.lex_state = 318}, - [2723] = {.lex_state = 318}, - [2724] = {.lex_state = 318}, - [2725] = {.lex_state = 318}, - [2726] = {.lex_state = 315, .external_lex_state = 2}, - [2727] = {.lex_state = 318}, - [2728] = {.lex_state = 318}, - [2729] = {.lex_state = 318}, - [2730] = {.lex_state = 318}, - [2731] = {.lex_state = 318}, - [2732] = {.lex_state = 318}, - [2733] = {.lex_state = 318}, - [2734] = {.lex_state = 318}, - [2735] = {.lex_state = 318}, - [2736] = {.lex_state = 318}, - [2737] = {.lex_state = 318}, - [2738] = {.lex_state = 315, .external_lex_state = 2}, - [2739] = {.lex_state = 318}, - [2740] = {.lex_state = 318}, - [2741] = {.lex_state = 318}, - [2742] = {.lex_state = 318}, - [2743] = {.lex_state = 315, .external_lex_state = 2}, - [2744] = {.lex_state = 318}, - [2745] = {.lex_state = 315, .external_lex_state = 2}, - [2746] = {.lex_state = 315, .external_lex_state = 7}, - [2747] = {.lex_state = 318}, - [2748] = {.lex_state = 318}, - [2749] = {.lex_state = 318}, - [2750] = {.lex_state = 318}, - [2751] = {.lex_state = 318}, - [2752] = {.lex_state = 315, .external_lex_state = 2}, - [2753] = {.lex_state = 318}, - [2754] = {.lex_state = 318}, - [2755] = {.lex_state = 315, .external_lex_state = 7}, - [2756] = {.lex_state = 318}, - [2757] = {.lex_state = 318}, - [2758] = {.lex_state = 318}, - [2759] = {.lex_state = 318}, - [2760] = {.lex_state = 318}, - [2761] = {.lex_state = 318}, - [2762] = {.lex_state = 318}, - [2763] = {.lex_state = 318}, - [2764] = {.lex_state = 318}, - [2765] = {.lex_state = 318}, - [2766] = {.lex_state = 318}, - [2767] = {.lex_state = 318}, - [2768] = {.lex_state = 318}, - [2769] = {.lex_state = 318}, - [2770] = {.lex_state = 318}, - [2771] = {.lex_state = 318}, - [2772] = {.lex_state = 318}, - [2773] = {.lex_state = 315, .external_lex_state = 2}, - [2774] = {.lex_state = 315, .external_lex_state = 7}, - [2775] = {.lex_state = 318}, - [2776] = {.lex_state = 318}, - [2777] = {.lex_state = 318}, - [2778] = {.lex_state = 315, .external_lex_state = 7}, - [2779] = {.lex_state = 318}, - [2780] = {.lex_state = 318}, - [2781] = {.lex_state = 318}, - [2782] = {.lex_state = 315, .external_lex_state = 7}, - [2783] = {.lex_state = 318}, - [2784] = {.lex_state = 318}, - [2785] = {.lex_state = 115, .external_lex_state = 2}, - [2786] = {.lex_state = 318}, - [2787] = {.lex_state = 318}, - [2788] = {.lex_state = 318}, - [2789] = {.lex_state = 318}, - [2790] = {.lex_state = 315, .external_lex_state = 2}, - [2791] = {.lex_state = 318}, - [2792] = {.lex_state = 318}, - [2793] = {.lex_state = 315, .external_lex_state = 7}, - [2794] = {.lex_state = 318}, - [2795] = {.lex_state = 318}, - [2796] = {.lex_state = 318}, - [2797] = {.lex_state = 318}, - [2798] = {.lex_state = 318}, - [2799] = {.lex_state = 318}, - [2800] = {.lex_state = 315, .external_lex_state = 7}, - [2801] = {.lex_state = 318}, - [2802] = {.lex_state = 318}, - [2803] = {.lex_state = 315, .external_lex_state = 7}, - [2804] = {.lex_state = 318}, - [2805] = {.lex_state = 318}, - [2806] = {.lex_state = 318}, - [2807] = {.lex_state = 315, .external_lex_state = 7}, - [2808] = {.lex_state = 318}, - [2809] = {.lex_state = 318}, - [2810] = {.lex_state = 318}, - [2811] = {.lex_state = 318}, - [2812] = {.lex_state = 318}, - [2813] = {.lex_state = 318}, - [2814] = {.lex_state = 318}, - [2815] = {.lex_state = 315, .external_lex_state = 7}, - [2816] = {.lex_state = 315, .external_lex_state = 7}, - [2817] = {.lex_state = 315, .external_lex_state = 7}, - [2818] = {.lex_state = 315, .external_lex_state = 7}, - [2819] = {.lex_state = 315, .external_lex_state = 7}, - [2820] = {.lex_state = 315, .external_lex_state = 7}, - [2821] = {.lex_state = 315, .external_lex_state = 7}, - [2822] = {.lex_state = 315, .external_lex_state = 7}, - [2823] = {.lex_state = 315, .external_lex_state = 7}, - [2824] = {.lex_state = 315, .external_lex_state = 7}, - [2825] = {.lex_state = 315, .external_lex_state = 7}, - [2826] = {.lex_state = 315, .external_lex_state = 7}, - [2827] = {.lex_state = 315, .external_lex_state = 7}, - [2828] = {.lex_state = 315, .external_lex_state = 7}, - [2829] = {.lex_state = 315, .external_lex_state = 7}, - [2830] = {.lex_state = 315, .external_lex_state = 7}, - [2831] = {.lex_state = 315, .external_lex_state = 7}, - [2832] = {.lex_state = 315, .external_lex_state = 2}, - [2833] = {.lex_state = 315, .external_lex_state = 2}, - [2834] = {.lex_state = 315, .external_lex_state = 2}, - [2835] = {.lex_state = 315, .external_lex_state = 2}, - [2836] = {.lex_state = 315, .external_lex_state = 2}, - [2837] = {.lex_state = 315, .external_lex_state = 2}, - [2838] = {.lex_state = 315, .external_lex_state = 7}, - [2839] = {.lex_state = 315, .external_lex_state = 7}, - [2840] = {.lex_state = 315, .external_lex_state = 2}, - [2841] = {.lex_state = 315, .external_lex_state = 7}, - [2842] = {.lex_state = 315, .external_lex_state = 7}, - [2843] = {.lex_state = 315, .external_lex_state = 7}, - [2844] = {.lex_state = 316, .external_lex_state = 3}, - [2845] = {.lex_state = 316, .external_lex_state = 3}, - [2846] = {.lex_state = 315, .external_lex_state = 7}, - [2847] = {.lex_state = 315, .external_lex_state = 7}, - [2848] = {.lex_state = 113, .external_lex_state = 2}, - [2849] = {.lex_state = 113, .external_lex_state = 2}, - [2850] = {.lex_state = 113, .external_lex_state = 2}, - [2851] = {.lex_state = 316, .external_lex_state = 3}, - [2852] = {.lex_state = 316, .external_lex_state = 3}, - [2853] = {.lex_state = 113, .external_lex_state = 2}, - [2854] = {.lex_state = 316, .external_lex_state = 3}, - [2855] = {.lex_state = 316, .external_lex_state = 3}, - [2856] = {.lex_state = 316, .external_lex_state = 3}, - [2857] = {.lex_state = 113, .external_lex_state = 2}, - [2858] = {.lex_state = 113, .external_lex_state = 2}, - [2859] = {.lex_state = 113, .external_lex_state = 2}, - [2860] = {.lex_state = 316, .external_lex_state = 3}, - [2861] = {.lex_state = 315, .external_lex_state = 2}, - [2862] = {.lex_state = 315, .external_lex_state = 2}, - [2863] = {.lex_state = 317, .external_lex_state = 2}, - [2864] = {.lex_state = 316, .external_lex_state = 3}, - [2865] = {.lex_state = 316, .external_lex_state = 7}, - [2866] = {.lex_state = 315, .external_lex_state = 2}, - [2867] = {.lex_state = 316, .external_lex_state = 3}, - [2868] = {.lex_state = 316, .external_lex_state = 7}, - [2869] = {.lex_state = 317, .external_lex_state = 2}, - [2870] = {.lex_state = 316, .external_lex_state = 3}, - [2871] = {.lex_state = 113, .external_lex_state = 2}, - [2872] = {.lex_state = 119}, - [2873] = {.lex_state = 317, .external_lex_state = 2}, - [2874] = {.lex_state = 317, .external_lex_state = 2}, - [2875] = {.lex_state = 316, .external_lex_state = 3}, - [2876] = {.lex_state = 317, .external_lex_state = 2}, - [2877] = {.lex_state = 113, .external_lex_state = 2}, - [2878] = {.lex_state = 316, .external_lex_state = 7}, - [2879] = {.lex_state = 317, .external_lex_state = 2}, - [2880] = {.lex_state = 317, .external_lex_state = 2}, - [2881] = {.lex_state = 316, .external_lex_state = 7}, - [2882] = {.lex_state = 316, .external_lex_state = 7}, - [2883] = {.lex_state = 315, .external_lex_state = 2}, - [2884] = {.lex_state = 119}, - [2885] = {.lex_state = 113, .external_lex_state = 2}, - [2886] = {.lex_state = 316, .external_lex_state = 7}, - [2887] = {.lex_state = 113, .external_lex_state = 2}, - [2888] = {.lex_state = 315, .external_lex_state = 2}, - [2889] = {.lex_state = 316, .external_lex_state = 7}, - [2890] = {.lex_state = 315, .external_lex_state = 2}, - [2891] = {.lex_state = 113, .external_lex_state = 2}, - [2892] = {.lex_state = 315, .external_lex_state = 2}, - [2893] = {.lex_state = 316, .external_lex_state = 2}, - [2894] = {.lex_state = 315, .external_lex_state = 2}, - [2895] = {.lex_state = 316, .external_lex_state = 2}, - [2896] = {.lex_state = 315, .external_lex_state = 2}, - [2897] = {.lex_state = 315, .external_lex_state = 7}, - [2898] = {.lex_state = 316, .external_lex_state = 2}, - [2899] = {.lex_state = 315, .external_lex_state = 2}, - [2900] = {.lex_state = 315, .external_lex_state = 7}, - [2901] = {.lex_state = 316, .external_lex_state = 7}, - [2902] = {.lex_state = 315, .external_lex_state = 7}, - [2903] = {.lex_state = 316, .external_lex_state = 3}, - [2904] = {.lex_state = 315, .external_lex_state = 2}, - [2905] = {.lex_state = 315, .external_lex_state = 2}, - [2906] = {.lex_state = 317, .external_lex_state = 2}, - [2907] = {.lex_state = 113, .external_lex_state = 2}, - [2908] = {.lex_state = 315, .external_lex_state = 2}, - [2909] = {.lex_state = 316, .external_lex_state = 2}, - [2910] = {.lex_state = 316, .external_lex_state = 2}, - [2911] = {.lex_state = 316, .external_lex_state = 2}, - [2912] = {.lex_state = 316, .external_lex_state = 7}, - [2913] = {.lex_state = 315, .external_lex_state = 2}, - [2914] = {.lex_state = 315, .external_lex_state = 2}, - [2915] = {.lex_state = 316, .external_lex_state = 7}, - [2916] = {.lex_state = 316, .external_lex_state = 3}, - [2917] = {.lex_state = 317, .external_lex_state = 7}, - [2918] = {.lex_state = 315, .external_lex_state = 2}, - [2919] = {.lex_state = 315, .external_lex_state = 2}, - [2920] = {.lex_state = 315, .external_lex_state = 2}, - [2921] = {.lex_state = 315, .external_lex_state = 2}, - [2922] = {.lex_state = 315, .external_lex_state = 2}, - [2923] = {.lex_state = 315, .external_lex_state = 2}, - [2924] = {.lex_state = 316, .external_lex_state = 2}, - [2925] = {.lex_state = 315, .external_lex_state = 7}, - [2926] = {.lex_state = 315, .external_lex_state = 2}, - [2927] = {.lex_state = 316, .external_lex_state = 7}, - [2928] = {.lex_state = 315, .external_lex_state = 2}, - [2929] = {.lex_state = 316, .external_lex_state = 7}, - [2930] = {.lex_state = 113, .external_lex_state = 2}, - [2931] = {.lex_state = 315, .external_lex_state = 7}, - [2932] = {.lex_state = 316, .external_lex_state = 3}, - [2933] = {.lex_state = 315, .external_lex_state = 2}, - [2934] = {.lex_state = 113, .external_lex_state = 2}, - [2935] = {.lex_state = 113, .external_lex_state = 2}, - [2936] = {.lex_state = 113, .external_lex_state = 2}, - [2937] = {.lex_state = 315, .external_lex_state = 7}, - [2938] = {.lex_state = 315, .external_lex_state = 2}, - [2939] = {.lex_state = 316, .external_lex_state = 3}, - [2940] = {.lex_state = 316, .external_lex_state = 3}, - [2941] = {.lex_state = 317, .external_lex_state = 7}, - [2942] = {.lex_state = 317, .external_lex_state = 7}, - [2943] = {.lex_state = 157}, - [2944] = {.lex_state = 316, .external_lex_state = 2}, - [2945] = {.lex_state = 315, .external_lex_state = 7}, - [2946] = {.lex_state = 316, .external_lex_state = 2}, - [2947] = {.lex_state = 157}, - [2948] = {.lex_state = 315, .external_lex_state = 7}, - [2949] = {.lex_state = 157}, - [2950] = {.lex_state = 316, .external_lex_state = 7}, - [2951] = {.lex_state = 315, .external_lex_state = 2}, - [2952] = {.lex_state = 315, .external_lex_state = 2}, - [2953] = {.lex_state = 315, .external_lex_state = 2}, - [2954] = {.lex_state = 113, .external_lex_state = 2}, - [2955] = {.lex_state = 113, .external_lex_state = 2}, - [2956] = {.lex_state = 315, .external_lex_state = 2}, - [2957] = {.lex_state = 317, .external_lex_state = 7}, - [2958] = {.lex_state = 316, .external_lex_state = 7}, - [2959] = {.lex_state = 316, .external_lex_state = 2}, - [2960] = {.lex_state = 315, .external_lex_state = 7}, - [2961] = {.lex_state = 316, .external_lex_state = 7}, - [2962] = {.lex_state = 316, .external_lex_state = 3}, - [2963] = {.lex_state = 316, .external_lex_state = 2}, - [2964] = {.lex_state = 113, .external_lex_state = 2}, - [2965] = {.lex_state = 157}, - [2966] = {.lex_state = 113, .external_lex_state = 2}, - [2967] = {.lex_state = 315, .external_lex_state = 2}, - [2968] = {.lex_state = 315, .external_lex_state = 2}, - [2969] = {.lex_state = 315, .external_lex_state = 2}, - [2970] = {.lex_state = 315, .external_lex_state = 7}, - [2971] = {.lex_state = 157}, - [2972] = {.lex_state = 157}, - [2973] = {.lex_state = 315, .external_lex_state = 7}, - [2974] = {.lex_state = 157}, - [2975] = {.lex_state = 157}, - [2976] = {.lex_state = 316, .external_lex_state = 2}, - [2977] = {.lex_state = 315, .external_lex_state = 7}, - [2978] = {.lex_state = 157}, - [2979] = {.lex_state = 315, .external_lex_state = 2}, - [2980] = {.lex_state = 157}, - [2981] = {.lex_state = 316, .external_lex_state = 3}, - [2982] = {.lex_state = 315, .external_lex_state = 2}, - [2983] = {.lex_state = 113, .external_lex_state = 2}, - [2984] = {.lex_state = 316, .external_lex_state = 3}, - [2985] = {.lex_state = 113, .external_lex_state = 2}, - [2986] = {.lex_state = 315, .external_lex_state = 7}, - [2987] = {.lex_state = 315, .external_lex_state = 7}, - [2988] = {.lex_state = 315, .external_lex_state = 7}, - [2989] = {.lex_state = 315, .external_lex_state = 7}, - [2990] = {.lex_state = 315, .external_lex_state = 7}, - [2991] = {.lex_state = 157}, - [2992] = {.lex_state = 315, .external_lex_state = 2}, - [2993] = {.lex_state = 316, .external_lex_state = 3}, - [2994] = {.lex_state = 157}, - [2995] = {.lex_state = 315, .external_lex_state = 2}, - [2996] = {.lex_state = 157}, - [2997] = {.lex_state = 315, .external_lex_state = 2}, - [2998] = {.lex_state = 316, .external_lex_state = 7}, - [2999] = {.lex_state = 315, .external_lex_state = 7}, - [3000] = {.lex_state = 315, .external_lex_state = 7}, - [3001] = {.lex_state = 316, .external_lex_state = 3}, - [3002] = {.lex_state = 316, .external_lex_state = 3}, - [3003] = {.lex_state = 157}, - [3004] = {.lex_state = 157}, - [3005] = {.lex_state = 316, .external_lex_state = 3}, - [3006] = {.lex_state = 157}, - [3007] = {.lex_state = 113, .external_lex_state = 2}, - [3008] = {.lex_state = 157}, - [3009] = {.lex_state = 113, .external_lex_state = 2}, - [3010] = {.lex_state = 113, .external_lex_state = 2}, - [3011] = {.lex_state = 315, .external_lex_state = 7}, - [3012] = {.lex_state = 315, .external_lex_state = 7}, - [3013] = {.lex_state = 315, .external_lex_state = 7}, - [3014] = {.lex_state = 113, .external_lex_state = 2}, - [3015] = {.lex_state = 315, .external_lex_state = 2}, - [3016] = {.lex_state = 316, .external_lex_state = 3}, - [3017] = {.lex_state = 316, .external_lex_state = 3}, - [3018] = {.lex_state = 157}, - [3019] = {.lex_state = 315, .external_lex_state = 7}, - [3020] = {.lex_state = 315, .external_lex_state = 2}, - [3021] = {.lex_state = 157}, - [3022] = {.lex_state = 157}, - [3023] = {.lex_state = 157}, - [3024] = {.lex_state = 316, .external_lex_state = 3}, - [3025] = {.lex_state = 315, .external_lex_state = 2}, - [3026] = {.lex_state = 157}, - [3027] = {.lex_state = 315, .external_lex_state = 7}, - [3028] = {.lex_state = 157}, - [3029] = {.lex_state = 157}, - [3030] = {.lex_state = 157}, - [3031] = {.lex_state = 113, .external_lex_state = 2}, - [3032] = {.lex_state = 157}, - [3033] = {.lex_state = 315, .external_lex_state = 2}, - [3034] = {.lex_state = 157}, - [3035] = {.lex_state = 316, .external_lex_state = 7}, - [3036] = {.lex_state = 157}, - [3037] = {.lex_state = 315, .external_lex_state = 7}, - [3038] = {.lex_state = 316, .external_lex_state = 3}, - [3039] = {.lex_state = 157}, - [3040] = {.lex_state = 157}, - [3041] = {.lex_state = 157}, - [3042] = {.lex_state = 315, .external_lex_state = 7}, - [3043] = {.lex_state = 316, .external_lex_state = 2}, - [3044] = {.lex_state = 157}, - [3045] = {.lex_state = 315, .external_lex_state = 7}, - [3046] = {.lex_state = 315, .external_lex_state = 7}, - [3047] = {.lex_state = 316, .external_lex_state = 2}, - [3048] = {.lex_state = 316, .external_lex_state = 2}, - [3049] = {.lex_state = 315, .external_lex_state = 7}, - [3050] = {.lex_state = 315, .external_lex_state = 7}, - [3051] = {.lex_state = 315, .external_lex_state = 7}, - [3052] = {.lex_state = 157}, - [3053] = {.lex_state = 157}, - [3054] = {.lex_state = 316, .external_lex_state = 7}, - [3055] = {.lex_state = 315, .external_lex_state = 7}, - [3056] = {.lex_state = 316, .external_lex_state = 2}, - [3057] = {.lex_state = 315, .external_lex_state = 7}, - [3058] = {.lex_state = 316, .external_lex_state = 7}, - [3059] = {.lex_state = 316, .external_lex_state = 7}, - [3060] = {.lex_state = 316, .external_lex_state = 7}, - [3061] = {.lex_state = 316, .external_lex_state = 7}, - [3062] = {.lex_state = 315, .external_lex_state = 7}, - [3063] = {.lex_state = 315, .external_lex_state = 7}, - [3064] = {.lex_state = 316, .external_lex_state = 7}, - [3065] = {.lex_state = 116, .external_lex_state = 2}, - [3066] = {.lex_state = 316, .external_lex_state = 2}, - [3067] = {.lex_state = 315, .external_lex_state = 7}, - [3068] = {.lex_state = 315, .external_lex_state = 7}, - [3069] = {.lex_state = 157}, - [3070] = {.lex_state = 315, .external_lex_state = 7}, - [3071] = {.lex_state = 315, .external_lex_state = 7}, - [3072] = {.lex_state = 316, .external_lex_state = 7}, - [3073] = {.lex_state = 316, .external_lex_state = 7}, - [3074] = {.lex_state = 315, .external_lex_state = 7}, - [3075] = {.lex_state = 316, .external_lex_state = 7}, - [3076] = {.lex_state = 316, .external_lex_state = 7}, - [3077] = {.lex_state = 316, .external_lex_state = 7}, - [3078] = {.lex_state = 315, .external_lex_state = 7}, - [3079] = {.lex_state = 316, .external_lex_state = 2}, - [3080] = {.lex_state = 316, .external_lex_state = 2}, - [3081] = {.lex_state = 315, .external_lex_state = 8}, - [3082] = {.lex_state = 316, .external_lex_state = 2}, - [3083] = {.lex_state = 108, .external_lex_state = 2}, - [3084] = {.lex_state = 108, .external_lex_state = 2}, - [3085] = {.lex_state = 315, .external_lex_state = 8}, - [3086] = {.lex_state = 117, .external_lex_state = 2}, - [3087] = {.lex_state = 316, .external_lex_state = 2}, - [3088] = {.lex_state = 316, .external_lex_state = 2}, - [3089] = {.lex_state = 316, .external_lex_state = 2}, - [3090] = {.lex_state = 108, .external_lex_state = 2}, - [3091] = {.lex_state = 117, .external_lex_state = 2}, - [3092] = {.lex_state = 316, .external_lex_state = 2}, - [3093] = {.lex_state = 316, .external_lex_state = 2}, - [3094] = {.lex_state = 108, .external_lex_state = 2}, - [3095] = {.lex_state = 117, .external_lex_state = 2}, - [3096] = {.lex_state = 315, .external_lex_state = 8}, - [3097] = {.lex_state = 157}, - [3098] = {.lex_state = 316, .external_lex_state = 2}, - [3099] = {.lex_state = 316, .external_lex_state = 2}, - [3100] = {.lex_state = 316, .external_lex_state = 2}, - [3101] = {.lex_state = 117, .external_lex_state = 2}, - [3102] = {.lex_state = 315, .external_lex_state = 8}, - [3103] = {.lex_state = 315, .external_lex_state = 9}, - [3104] = {.lex_state = 315, .external_lex_state = 9}, - [3105] = {.lex_state = 315, .external_lex_state = 9}, - [3106] = {.lex_state = 315, .external_lex_state = 8}, - [3107] = {.lex_state = 315, .external_lex_state = 8}, - [3108] = {.lex_state = 315, .external_lex_state = 8}, - [3109] = {.lex_state = 315, .external_lex_state = 2}, - [3110] = {.lex_state = 315, .external_lex_state = 2}, - [3111] = {.lex_state = 315, .external_lex_state = 9}, - [3112] = {.lex_state = 315, .external_lex_state = 2}, - [3113] = {.lex_state = 315, .external_lex_state = 2}, - [3114] = {.lex_state = 315, .external_lex_state = 2}, - [3115] = {.lex_state = 315, .external_lex_state = 2}, - [3116] = {.lex_state = 315, .external_lex_state = 2}, - [3117] = {.lex_state = 315, .external_lex_state = 2}, - [3118] = {.lex_state = 315, .external_lex_state = 2}, - [3119] = {.lex_state = 315, .external_lex_state = 2}, - [3120] = {.lex_state = 315, .external_lex_state = 2}, - [3121] = {.lex_state = 315, .external_lex_state = 2}, - [3122] = {.lex_state = 315, .external_lex_state = 2}, - [3123] = {.lex_state = 315, .external_lex_state = 2}, - [3124] = {.lex_state = 315, .external_lex_state = 2}, - [3125] = {.lex_state = 315, .external_lex_state = 2}, - [3126] = {.lex_state = 315, .external_lex_state = 2}, - [3127] = {.lex_state = 315, .external_lex_state = 2}, - [3128] = {.lex_state = 315, .external_lex_state = 2}, - [3129] = {.lex_state = 315, .external_lex_state = 2}, - [3130] = {.lex_state = 315, .external_lex_state = 8}, - [3131] = {.lex_state = 315, .external_lex_state = 2}, - [3132] = {.lex_state = 315, .external_lex_state = 9}, - [3133] = {.lex_state = 315, .external_lex_state = 2}, - [3134] = {.lex_state = 315, .external_lex_state = 2}, - [3135] = {.lex_state = 315, .external_lex_state = 2}, - [3136] = {.lex_state = 315, .external_lex_state = 2}, - [3137] = {.lex_state = 315, .external_lex_state = 2}, - [3138] = {.lex_state = 315, .external_lex_state = 2}, - [3139] = {.lex_state = 315, .external_lex_state = 9}, - [3140] = {.lex_state = 315, .external_lex_state = 2}, - [3141] = {.lex_state = 315, .external_lex_state = 2}, - [3142] = {.lex_state = 315, .external_lex_state = 2}, - [3143] = {.lex_state = 315, .external_lex_state = 2}, - [3144] = {.lex_state = 315, .external_lex_state = 2}, - [3145] = {.lex_state = 315, .external_lex_state = 2}, - [3146] = {.lex_state = 315, .external_lex_state = 9}, - [3147] = {.lex_state = 315, .external_lex_state = 8}, - [3148] = {.lex_state = 315, .external_lex_state = 9}, - [3149] = {.lex_state = 315, .external_lex_state = 2}, - [3150] = {.lex_state = 315, .external_lex_state = 2}, - [3151] = {.lex_state = 315, .external_lex_state = 2}, - [3152] = {.lex_state = 315, .external_lex_state = 2}, - [3153] = {.lex_state = 315, .external_lex_state = 2}, - [3154] = {.lex_state = 315, .external_lex_state = 9}, - [3155] = {.lex_state = 315, .external_lex_state = 2}, - [3156] = {.lex_state = 315, .external_lex_state = 2}, - [3157] = {.lex_state = 315, .external_lex_state = 2}, - [3158] = {.lex_state = 315, .external_lex_state = 2}, - [3159] = {.lex_state = 315, .external_lex_state = 2}, - [3160] = {.lex_state = 315, .external_lex_state = 2}, - [3161] = {.lex_state = 315, .external_lex_state = 2}, - [3162] = {.lex_state = 150}, - [3163] = {.lex_state = 150}, - [3164] = {.lex_state = 150}, - [3165] = {.lex_state = 150}, - [3166] = {.lex_state = 150}, - [3167] = {.lex_state = 150}, - [3168] = {.lex_state = 150}, - [3169] = {.lex_state = 150}, - [3170] = {.lex_state = 150}, - [3171] = {.lex_state = 150}, - [3172] = {.lex_state = 150}, - [3173] = {.lex_state = 150}, - [3174] = {.lex_state = 150}, - [3175] = {.lex_state = 150}, - [3176] = {.lex_state = 150}, - [3177] = {.lex_state = 150}, - [3178] = {.lex_state = 150}, - [3179] = {.lex_state = 150}, - [3180] = {.lex_state = 150}, - [3181] = {.lex_state = 150}, - [3182] = {.lex_state = 121}, - [3183] = {.lex_state = 122}, - [3184] = {.lex_state = 129}, - [3185] = {.lex_state = 121, .external_lex_state = 14}, - [3186] = {.lex_state = 136}, - [3187] = {.lex_state = 122, .external_lex_state = 14}, - [3188] = {.lex_state = 130}, - [3189] = {.lex_state = 137}, - [3190] = {.lex_state = 144}, - [3191] = {.lex_state = 126}, - [3192] = {.lex_state = 127}, - [3193] = {.lex_state = 126}, - [3194] = {.lex_state = 127}, - [3195] = {.lex_state = 127}, - [3196] = {.lex_state = 127}, - [3197] = {.lex_state = 126}, - [3198] = {.lex_state = 127}, - [3199] = {.lex_state = 126}, - [3200] = {.lex_state = 126}, - [3201] = {.lex_state = 127}, - [3202] = {.lex_state = 126}, - [3203] = {.lex_state = 126}, - [3204] = {.lex_state = 127}, - [3205] = {.lex_state = 127}, - [3206] = {.lex_state = 127}, - [3207] = {.lex_state = 126}, - [3208] = {.lex_state = 145}, - [3209] = {.lex_state = 127}, - [3210] = {.lex_state = 127}, - [3211] = {.lex_state = 126}, - [3212] = {.lex_state = 126}, - [3213] = {.lex_state = 127}, - [3214] = {.lex_state = 127}, - [3215] = {.lex_state = 127}, - [3216] = {.lex_state = 127}, - [3217] = {.lex_state = 126}, - [3218] = {.lex_state = 126}, - [3219] = {.lex_state = 126}, - [3220] = {.lex_state = 127}, - [3221] = {.lex_state = 126}, - [3222] = {.lex_state = 126}, - [3223] = {.lex_state = 127}, - [3224] = {.lex_state = 127}, - [3225] = {.lex_state = 123}, - [3226] = {.lex_state = 318}, - [3227] = {.lex_state = 126}, - [3228] = {.lex_state = 126}, - [3229] = {.lex_state = 127}, - [3230] = {.lex_state = 126}, - [3231] = {.lex_state = 127}, - [3232] = {.lex_state = 141}, - [3233] = {.lex_state = 124}, - [3234] = {.lex_state = 164, .external_lex_state = 5}, - [3235] = {.lex_state = 124}, - [3236] = {.lex_state = 124}, - [3237] = {.lex_state = 126}, - [3238] = {.lex_state = 141}, - [3239] = {.lex_state = 127}, - [3240] = {.lex_state = 127}, - [3241] = {.lex_state = 119}, - [3242] = {.lex_state = 127}, - [3243] = {.lex_state = 126}, - [3244] = {.lex_state = 141}, - [3245] = {.lex_state = 141}, - [3246] = {.lex_state = 127}, - [3247] = {.lex_state = 164, .external_lex_state = 5}, - [3248] = {.lex_state = 126}, - [3249] = {.lex_state = 119}, - [3250] = {.lex_state = 318}, - [3251] = {.lex_state = 126}, - [3252] = {.lex_state = 126}, - [3253] = {.lex_state = 126}, - [3254] = {.lex_state = 164, .external_lex_state = 5}, - [3255] = {.lex_state = 127}, - [3256] = {.lex_state = 141}, - [3257] = {.lex_state = 164, .external_lex_state = 5}, - [3258] = {.lex_state = 126}, - [3259] = {.lex_state = 164, .external_lex_state = 5}, - [3260] = {.lex_state = 127}, - [3261] = {.lex_state = 127}, - [3262] = {.lex_state = 127}, - [3263] = {.lex_state = 141}, - [3264] = {.lex_state = 141}, - [3265] = {.lex_state = 124}, - [3266] = {.lex_state = 126}, - [3267] = {.lex_state = 126}, - [3268] = {.lex_state = 126}, - [3269] = {.lex_state = 164, .external_lex_state = 5}, - [3270] = {.lex_state = 127}, - [3271] = {.lex_state = 127}, - [3272] = {.lex_state = 126}, - [3273] = {.lex_state = 127}, - [3274] = {.lex_state = 119}, - [3275] = {.lex_state = 142}, - [3276] = {.lex_state = 141}, - [3277] = {.lex_state = 141}, - [3278] = {.lex_state = 142}, - [3279] = {.lex_state = 141}, - [3280] = {.lex_state = 164, .external_lex_state = 5}, - [3281] = {.lex_state = 141}, - [3282] = {.lex_state = 151}, - [3283] = {.lex_state = 119}, - [3284] = {.lex_state = 119}, - [3285] = {.lex_state = 142}, - [3286] = {.lex_state = 141}, - [3287] = {.lex_state = 142}, - [3288] = {.lex_state = 141}, - [3289] = {.lex_state = 119}, - [3290] = {.lex_state = 131}, - [3291] = {.lex_state = 142}, - [3292] = {.lex_state = 142}, - [3293] = {.lex_state = 123, .external_lex_state = 14}, - [3294] = {.lex_state = 142}, - [3295] = {.lex_state = 132}, - [3296] = {.lex_state = 141}, - [3297] = {.lex_state = 119}, - [3298] = {.lex_state = 119}, - [3299] = {.lex_state = 119}, - [3300] = {.lex_state = 119}, - [3301] = {.lex_state = 119}, - [3302] = {.lex_state = 119}, - [3303] = {.lex_state = 119}, - [3304] = {.lex_state = 119}, - [3305] = {.lex_state = 119}, - [3306] = {.lex_state = 119}, - [3307] = {.lex_state = 119}, - [3308] = {.lex_state = 119}, - [3309] = {.lex_state = 164, .external_lex_state = 6}, - [3310] = {.lex_state = 119}, - [3311] = {.lex_state = 119}, - [3312] = {.lex_state = 119}, - [3313] = {.lex_state = 141}, - [3314] = {.lex_state = 128}, - [3315] = {.lex_state = 134}, - [3316] = {.lex_state = 142}, - [3317] = {.lex_state = 141}, - [3318] = {.lex_state = 119}, - [3319] = {.lex_state = 119}, - [3320] = {.lex_state = 119}, - [3321] = {.lex_state = 119}, - [3322] = {.lex_state = 119}, - [3323] = {.lex_state = 119}, - [3324] = {.lex_state = 119}, - [3325] = {.lex_state = 128}, - [3326] = {.lex_state = 142}, - [3327] = {.lex_state = 119}, - [3328] = {.lex_state = 132}, - [3329] = {.lex_state = 119}, - [3330] = {.lex_state = 119}, - [3331] = {.lex_state = 134}, - [3332] = {.lex_state = 138}, - [3333] = {.lex_state = 119}, - [3334] = {.lex_state = 119}, - [3335] = {.lex_state = 128}, - [3336] = {.lex_state = 141}, - [3337] = {.lex_state = 119}, - [3338] = {.lex_state = 124, .external_lex_state = 14}, - [3339] = {.lex_state = 119}, - [3340] = {.lex_state = 119}, - [3341] = {.lex_state = 119}, - [3342] = {.lex_state = 119}, - [3343] = {.lex_state = 119}, - [3344] = {.lex_state = 132}, - [3345] = {.lex_state = 142}, - [3346] = {.lex_state = 119, .external_lex_state = 14}, - [3347] = {.lex_state = 141}, - [3348] = {.lex_state = 142}, - [3349] = {.lex_state = 141}, - [3350] = {.lex_state = 119}, - [3351] = {.lex_state = 142}, - [3352] = {.lex_state = 142}, - [3353] = {.lex_state = 142}, - [3354] = {.lex_state = 119, .external_lex_state = 14}, - [3355] = {.lex_state = 119, .external_lex_state = 14}, - [3356] = {.lex_state = 119}, - [3357] = {.lex_state = 124, .external_lex_state = 14}, - [3358] = {.lex_state = 132}, - [3359] = {.lex_state = 119}, - [3360] = {.lex_state = 164, .external_lex_state = 6}, - [3361] = {.lex_state = 124, .external_lex_state = 14}, - [3362] = {.lex_state = 119}, - [3363] = {.lex_state = 124, .external_lex_state = 14}, - [3364] = {.lex_state = 119}, - [3365] = {.lex_state = 119}, - [3366] = {.lex_state = 164, .external_lex_state = 6}, - [3367] = {.lex_state = 142}, - [3368] = {.lex_state = 119}, - [3369] = {.lex_state = 141}, - [3370] = {.lex_state = 152}, - [3371] = {.lex_state = 119, .external_lex_state = 14}, - [3372] = {.lex_state = 139}, - [3373] = {.lex_state = 135}, - [3374] = {.lex_state = 173}, - [3375] = {.lex_state = 139}, - [3376] = {.lex_state = 119}, - [3377] = {.lex_state = 173}, - [3378] = {.lex_state = 141}, - [3379] = {.lex_state = 119}, - [3380] = {.lex_state = 119}, - [3381] = {.lex_state = 119, .external_lex_state = 14}, - [3382] = {.lex_state = 173}, - [3383] = {.lex_state = 119}, - [3384] = {.lex_state = 142}, - [3385] = {.lex_state = 141}, - [3386] = {.lex_state = 141}, - [3387] = {.lex_state = 135}, - [3388] = {.lex_state = 142}, - [3389] = {.lex_state = 141}, - [3390] = {.lex_state = 139}, - [3391] = {.lex_state = 135}, - [3392] = {.lex_state = 134}, - [3393] = {.lex_state = 128}, - [3394] = {.lex_state = 119}, - [3395] = {.lex_state = 128}, - [3396] = {.lex_state = 135}, - [3397] = {.lex_state = 173}, - [3398] = {.lex_state = 119, .external_lex_state = 14}, - [3399] = {.lex_state = 142}, - [3400] = {.lex_state = 139}, - [3401] = {.lex_state = 141}, - [3402] = {.lex_state = 142}, - [3403] = {.lex_state = 141}, - [3404] = {.lex_state = 135}, - [3405] = {.lex_state = 141}, - [3406] = {.lex_state = 128}, - [3407] = {.lex_state = 141}, - [3408] = {.lex_state = 141}, - [3409] = {.lex_state = 134}, - [3410] = {.lex_state = 135}, - [3411] = {.lex_state = 142}, - [3412] = {.lex_state = 173}, - [3413] = {.lex_state = 141}, - [3414] = {.lex_state = 135}, - [3415] = {.lex_state = 142}, - [3416] = {.lex_state = 135}, - [3417] = {.lex_state = 135}, - [3418] = {.lex_state = 142}, - [3419] = {.lex_state = 135}, - [3420] = {.lex_state = 135}, - [3421] = {.lex_state = 119}, - [3422] = {.lex_state = 119, .external_lex_state = 14}, - [3423] = {.lex_state = 128}, - [3424] = {.lex_state = 119}, - [3425] = {.lex_state = 119}, - [3426] = {.lex_state = 128}, - [3427] = {.lex_state = 128}, - [3428] = {.lex_state = 134}, - [3429] = {.lex_state = 119}, - [3430] = {.lex_state = 142}, - [3431] = {.lex_state = 128}, - [3432] = {.lex_state = 128}, - [3433] = {.lex_state = 119}, - [3434] = {.lex_state = 128}, - [3435] = {.lex_state = 128}, - [3436] = {.lex_state = 142}, - [3437] = {.lex_state = 128}, - [3438] = {.lex_state = 119}, - [3439] = {.lex_state = 119}, - [3440] = {.lex_state = 128}, - [3441] = {.lex_state = 119, .external_lex_state = 14}, - [3442] = {.lex_state = 128}, - [3443] = {.lex_state = 119}, - [3444] = {.lex_state = 128}, - [3445] = {.lex_state = 119, .external_lex_state = 14}, - [3446] = {.lex_state = 119, .external_lex_state = 14}, - [3447] = {.lex_state = 128}, - [3448] = {.lex_state = 119}, - [3449] = {.lex_state = 119}, - [3450] = {.lex_state = 119, .external_lex_state = 14}, - [3451] = {.lex_state = 119, .external_lex_state = 14}, - [3452] = {.lex_state = 142}, - [3453] = {.lex_state = 119, .external_lex_state = 14}, - [3454] = {.lex_state = 119, .external_lex_state = 14}, - [3455] = {.lex_state = 142}, - [3456] = {.lex_state = 142}, - [3457] = {.lex_state = 128}, - [3458] = {.lex_state = 108, .external_lex_state = 2}, - [3459] = {.lex_state = 119, .external_lex_state = 14}, - [3460] = {.lex_state = 119, .external_lex_state = 14}, - [3461] = {.lex_state = 128}, - [3462] = {.lex_state = 128}, - [3463] = {.lex_state = 128}, - [3464] = {.lex_state = 134}, - [3465] = {.lex_state = 119, .external_lex_state = 14}, - [3466] = {.lex_state = 128}, - [3467] = {.lex_state = 128}, - [3468] = {.lex_state = 128}, - [3469] = {.lex_state = 119, .external_lex_state = 14}, - [3470] = {.lex_state = 119, .external_lex_state = 14}, - [3471] = {.lex_state = 119, .external_lex_state = 14}, - [3472] = {.lex_state = 119, .external_lex_state = 14}, - [3473] = {.lex_state = 119}, - [3474] = {.lex_state = 119, .external_lex_state = 14}, - [3475] = {.lex_state = 119, .external_lex_state = 14}, - [3476] = {.lex_state = 119, .external_lex_state = 14}, - [3477] = {.lex_state = 119, .external_lex_state = 14}, - [3478] = {.lex_state = 119, .external_lex_state = 14}, - [3479] = {.lex_state = 119, .external_lex_state = 14}, - [3480] = {.lex_state = 119, .external_lex_state = 14}, - [3481] = {.lex_state = 119, .external_lex_state = 14}, - [3482] = {.lex_state = 119, .external_lex_state = 14}, - [3483] = {.lex_state = 119, .external_lex_state = 14}, - [3484] = {.lex_state = 119, .external_lex_state = 14}, - [3485] = {.lex_state = 119, .external_lex_state = 14}, - [3486] = {.lex_state = 119, .external_lex_state = 14}, - [3487] = {.lex_state = 119, .external_lex_state = 14}, - [3488] = {.lex_state = 119, .external_lex_state = 14}, - [3489] = {.lex_state = 119, .external_lex_state = 14}, - [3490] = {.lex_state = 128}, - [3491] = {.lex_state = 142}, - [3492] = {.lex_state = 119, .external_lex_state = 14}, - [3493] = {.lex_state = 142}, - [3494] = {.lex_state = 128}, - [3495] = {.lex_state = 142}, - [3496] = {.lex_state = 142}, - [3497] = {.lex_state = 108, .external_lex_state = 2}, - [3498] = {.lex_state = 119, .external_lex_state = 14}, - [3499] = {.lex_state = 128}, - [3500] = {.lex_state = 119, .external_lex_state = 14}, - [3501] = {.lex_state = 128}, - [3502] = {.lex_state = 119, .external_lex_state = 14}, - [3503] = {.lex_state = 119, .external_lex_state = 14}, - [3504] = {.lex_state = 119, .external_lex_state = 14}, - [3505] = {.lex_state = 128}, - [3506] = {.lex_state = 142}, - [3507] = {.lex_state = 119}, - [3508] = {.lex_state = 128}, - [3509] = {.lex_state = 119}, - [3510] = {.lex_state = 128}, - [3511] = {.lex_state = 128}, - [3512] = {.lex_state = 128}, - [3513] = {.lex_state = 119}, - [3514] = {.lex_state = 128}, - [3515] = {.lex_state = 119}, - [3516] = {.lex_state = 128}, - [3517] = {.lex_state = 108, .external_lex_state = 2}, - [3518] = {.lex_state = 128}, - [3519] = {.lex_state = 119}, - [3520] = {.lex_state = 128}, - [3521] = {.lex_state = 119, .external_lex_state = 14}, - [3522] = {.lex_state = 128}, - [3523] = {.lex_state = 119}, - [3524] = {.lex_state = 128}, - [3525] = {.lex_state = 119}, - [3526] = {.lex_state = 119}, - [3527] = {.lex_state = 128}, - [3528] = {.lex_state = 128}, - [3529] = {.lex_state = 128}, - [3530] = {.lex_state = 108, .external_lex_state = 2}, - [3531] = {.lex_state = 119}, - [3532] = {.lex_state = 142}, - [3533] = {.lex_state = 128}, - [3534] = {.lex_state = 119}, - [3535] = {.lex_state = 119}, - [3536] = {.lex_state = 119}, - [3537] = {.lex_state = 119}, - [3538] = {.lex_state = 119}, - [3539] = {.lex_state = 119}, - [3540] = {.lex_state = 134}, - [3541] = {.lex_state = 173}, - [3542] = {.lex_state = 173}, - [3543] = {.lex_state = 108, .external_lex_state = 2}, - [3544] = {.lex_state = 173}, - [3545] = {.lex_state = 119}, - [3546] = {.lex_state = 119}, - [3547] = {.lex_state = 119}, - [3548] = {.lex_state = 134}, - [3549] = {.lex_state = 134}, - [3550] = {.lex_state = 134}, - [3551] = {.lex_state = 134}, - [3552] = {.lex_state = 173}, - [3553] = {.lex_state = 173}, - [3554] = {.lex_state = 119}, - [3555] = {.lex_state = 134}, - [3556] = {.lex_state = 108, .external_lex_state = 2}, - [3557] = {.lex_state = 119}, - [3558] = {.lex_state = 173}, - [3559] = {.lex_state = 173}, - [3560] = {.lex_state = 119}, - [3561] = {.lex_state = 119}, - [3562] = {.lex_state = 119}, - [3563] = {.lex_state = 119}, - [3564] = {.lex_state = 173}, - [3565] = {.lex_state = 173}, - [3566] = {.lex_state = 119}, - [3567] = {.lex_state = 119}, - [3568] = {.lex_state = 134}, - [3569] = {.lex_state = 119}, - [3570] = {.lex_state = 134}, - [3571] = {.lex_state = 134}, - [3572] = {.lex_state = 134}, - [3573] = {.lex_state = 134}, - [3574] = {.lex_state = 134}, - [3575] = {.lex_state = 119}, - [3576] = {.lex_state = 134}, - [3577] = {.lex_state = 119}, - [3578] = {.lex_state = 119}, - [3579] = {.lex_state = 173}, - [3580] = {.lex_state = 134}, - [3581] = {.lex_state = 134}, - [3582] = {.lex_state = 134}, - [3583] = {.lex_state = 134}, - [3584] = {.lex_state = 134}, - [3585] = {.lex_state = 134}, - [3586] = {.lex_state = 119}, - [3587] = {.lex_state = 134}, - [3588] = {.lex_state = 119}, - [3589] = {.lex_state = 134}, - [3590] = {.lex_state = 134}, - [3591] = {.lex_state = 134}, - [3592] = {.lex_state = 134}, - [3593] = {.lex_state = 134}, - [3594] = {.lex_state = 119}, - [3595] = {.lex_state = 119}, - [3596] = {.lex_state = 134}, - [3597] = {.lex_state = 134}, - [3598] = {.lex_state = 173}, - [3599] = {.lex_state = 119}, - [3600] = {.lex_state = 134}, - [3601] = {.lex_state = 134}, - [3602] = {.lex_state = 119}, - [3603] = {.lex_state = 173}, - [3604] = {.lex_state = 134}, - [3605] = {.lex_state = 173}, - [3606] = {.lex_state = 134}, - [3607] = {.lex_state = 108, .external_lex_state = 2}, - [3608] = {.lex_state = 134}, - [3609] = {.lex_state = 119}, - [3610] = {.lex_state = 119}, - [3611] = {.lex_state = 134}, - [3612] = {.lex_state = 119}, - [3613] = {.lex_state = 119}, - [3614] = {.lex_state = 134}, - [3615] = {.lex_state = 119}, - [3616] = {.lex_state = 134}, - [3617] = {.lex_state = 173}, - [3618] = {.lex_state = 134}, - [3619] = {.lex_state = 173}, - [3620] = {.lex_state = 134}, - [3621] = {.lex_state = 134}, - [3622] = {.lex_state = 173}, - [3623] = {.lex_state = 119}, - [3624] = {.lex_state = 173}, - [3625] = {.lex_state = 173}, - [3626] = {.lex_state = 173}, - [3627] = {.lex_state = 143}, - [3628] = {.lex_state = 173}, - [3629] = {.lex_state = 143}, - [3630] = {.lex_state = 143}, - [3631] = {.lex_state = 146}, - [3632] = {.lex_state = 173}, - [3633] = {.lex_state = 173}, - [3634] = {.lex_state = 173}, - [3635] = {.lex_state = 173}, - [3636] = {.lex_state = 173}, - [3637] = {.lex_state = 164, .external_lex_state = 5}, - [3638] = {.lex_state = 147}, - [3639] = {.lex_state = 147}, - [3640] = {.lex_state = 149}, - [3641] = {.lex_state = 143}, - [3642] = {.lex_state = 143}, - [3643] = {.lex_state = 147}, - [3644] = {.lex_state = 143}, - [3645] = {.lex_state = 147}, - [3646] = {.lex_state = 143}, - [3647] = {.lex_state = 143}, - [3648] = {.lex_state = 164, .external_lex_state = 6}, - [3649] = {.lex_state = 164, .external_lex_state = 5}, - [3650] = {.lex_state = 166}, - [3651] = {.lex_state = 143}, - [3652] = {.lex_state = 143}, - [3653] = {.lex_state = 143}, - [3654] = {.lex_state = 173}, - [3655] = {.lex_state = 143}, - [3656] = {.lex_state = 143}, - [3657] = {.lex_state = 143}, - [3658] = {.lex_state = 143}, - [3659] = {.lex_state = 164, .external_lex_state = 5}, - [3660] = {.lex_state = 143}, - [3661] = {.lex_state = 143}, - [3662] = {.lex_state = 164, .external_lex_state = 5}, - [3663] = {.lex_state = 143}, - [3664] = {.lex_state = 164, .external_lex_state = 5}, - [3665] = {.lex_state = 143}, - [3666] = {.lex_state = 164, .external_lex_state = 5}, - [3667] = {.lex_state = 143}, - [3668] = {.lex_state = 143}, - [3669] = {.lex_state = 164, .external_lex_state = 5}, - [3670] = {.lex_state = 143}, - [3671] = {.lex_state = 164, .external_lex_state = 5}, - [3672] = {.lex_state = 164, .external_lex_state = 5}, - [3673] = {.lex_state = 164, .external_lex_state = 5}, - [3674] = {.lex_state = 143}, - [3675] = {.lex_state = 164, .external_lex_state = 5}, - [3676] = {.lex_state = 143}, - [3677] = {.lex_state = 164, .external_lex_state = 6}, - [3678] = {.lex_state = 143}, - [3679] = {.lex_state = 143}, - [3680] = {.lex_state = 164, .external_lex_state = 5}, - [3681] = {.lex_state = 143}, - [3682] = {.lex_state = 143}, - [3683] = {.lex_state = 143}, - [3684] = {.lex_state = 164, .external_lex_state = 5}, - [3685] = {.lex_state = 143}, - [3686] = {.lex_state = 143}, - [3687] = {.lex_state = 143}, - [3688] = {.lex_state = 143}, - [3689] = {.lex_state = 143}, - [3690] = {.lex_state = 164, .external_lex_state = 5}, - [3691] = {.lex_state = 164, .external_lex_state = 6}, + [1588] = {.lex_state = 344, .external_lex_state = 4}, + [1589] = {.lex_state = 109, .external_lex_state = 10}, + [1590] = {.lex_state = 344, .external_lex_state = 4}, + [1591] = {.lex_state = 344, .external_lex_state = 4}, + [1592] = {.lex_state = 344, .external_lex_state = 4}, + [1593] = {.lex_state = 70, .external_lex_state = 3}, + [1594] = {.lex_state = 344, .external_lex_state = 4}, + [1595] = {.lex_state = 67, .external_lex_state = 3}, + [1596] = {.lex_state = 344, .external_lex_state = 4}, + [1597] = {.lex_state = 340, .external_lex_state = 6}, + [1598] = {.lex_state = 340, .external_lex_state = 6}, + [1599] = {.lex_state = 93, .external_lex_state = 4}, + [1600] = {.lex_state = 107, .external_lex_state = 4}, + [1601] = {.lex_state = 69, .external_lex_state = 3}, + [1602] = {.lex_state = 344, .external_lex_state = 4}, + [1603] = {.lex_state = 342, .external_lex_state = 5}, + [1604] = {.lex_state = 71, .external_lex_state = 3}, + [1605] = {.lex_state = 344, .external_lex_state = 4}, + [1606] = {.lex_state = 71, .external_lex_state = 3}, + [1607] = {.lex_state = 71, .external_lex_state = 3}, + [1608] = {.lex_state = 110, .external_lex_state = 10}, + [1609] = {.lex_state = 340, .external_lex_state = 6}, + [1610] = {.lex_state = 70, .external_lex_state = 3}, + [1611] = {.lex_state = 344, .external_lex_state = 4}, + [1612] = {.lex_state = 344, .external_lex_state = 4}, + [1613] = {.lex_state = 344, .external_lex_state = 4}, + [1614] = {.lex_state = 344, .external_lex_state = 4}, + [1615] = {.lex_state = 344, .external_lex_state = 4}, + [1616] = {.lex_state = 70, .external_lex_state = 3}, + [1617] = {.lex_state = 69, .external_lex_state = 3}, + [1618] = {.lex_state = 344, .external_lex_state = 4}, + [1619] = {.lex_state = 93, .external_lex_state = 4}, + [1620] = {.lex_state = 93, .external_lex_state = 4}, + [1621] = {.lex_state = 344, .external_lex_state = 4}, + [1622] = {.lex_state = 340, .external_lex_state = 6}, + [1623] = {.lex_state = 343, .external_lex_state = 4}, + [1624] = {.lex_state = 344, .external_lex_state = 4}, + [1625] = {.lex_state = 344, .external_lex_state = 4}, + [1626] = {.lex_state = 344, .external_lex_state = 4}, + [1627] = {.lex_state = 93, .external_lex_state = 4}, + [1628] = {.lex_state = 344, .external_lex_state = 4}, + [1629] = {.lex_state = 70, .external_lex_state = 3}, + [1630] = {.lex_state = 70, .external_lex_state = 3}, + [1631] = {.lex_state = 107, .external_lex_state = 11}, + [1632] = {.lex_state = 69, .external_lex_state = 3}, + [1633] = {.lex_state = 70, .external_lex_state = 3}, + [1634] = {.lex_state = 69, .external_lex_state = 3}, + [1635] = {.lex_state = 344, .external_lex_state = 4}, + [1636] = {.lex_state = 344, .external_lex_state = 4}, + [1637] = {.lex_state = 344, .external_lex_state = 4}, + [1638] = {.lex_state = 107, .external_lex_state = 4}, + [1639] = {.lex_state = 344, .external_lex_state = 4}, + [1640] = {.lex_state = 344, .external_lex_state = 4}, + [1641] = {.lex_state = 344, .external_lex_state = 4}, + [1642] = {.lex_state = 344, .external_lex_state = 4}, + [1643] = {.lex_state = 344, .external_lex_state = 4}, + [1644] = {.lex_state = 344, .external_lex_state = 4}, + [1645] = {.lex_state = 344, .external_lex_state = 4}, + [1646] = {.lex_state = 93, .external_lex_state = 4}, + [1647] = {.lex_state = 344, .external_lex_state = 4}, + [1648] = {.lex_state = 70, .external_lex_state = 3}, + [1649] = {.lex_state = 344, .external_lex_state = 4}, + [1650] = {.lex_state = 344, .external_lex_state = 4}, + [1651] = {.lex_state = 69, .external_lex_state = 3}, + [1652] = {.lex_state = 71, .external_lex_state = 3}, + [1653] = {.lex_state = 344, .external_lex_state = 4}, + [1654] = {.lex_state = 344, .external_lex_state = 4}, + [1655] = {.lex_state = 69, .external_lex_state = 3}, + [1656] = {.lex_state = 72, .external_lex_state = 4}, + [1657] = {.lex_state = 344, .external_lex_state = 4}, + [1658] = {.lex_state = 344, .external_lex_state = 4}, + [1659] = {.lex_state = 344, .external_lex_state = 4}, + [1660] = {.lex_state = 344, .external_lex_state = 4}, + [1661] = {.lex_state = 344, .external_lex_state = 4}, + [1662] = {.lex_state = 344, .external_lex_state = 4}, + [1663] = {.lex_state = 344, .external_lex_state = 4}, + [1664] = {.lex_state = 69, .external_lex_state = 3}, + [1665] = {.lex_state = 343, .external_lex_state = 4}, + [1666] = {.lex_state = 344, .external_lex_state = 4}, + [1667] = {.lex_state = 344, .external_lex_state = 4}, + [1668] = {.lex_state = 344, .external_lex_state = 4}, + [1669] = {.lex_state = 344, .external_lex_state = 4}, + [1670] = {.lex_state = 71, .external_lex_state = 3}, + [1671] = {.lex_state = 347, .external_lex_state = 10}, + [1672] = {.lex_state = 344, .external_lex_state = 4}, + [1673] = {.lex_state = 69, .external_lex_state = 3}, + [1674] = {.lex_state = 344, .external_lex_state = 4}, + [1675] = {.lex_state = 71, .external_lex_state = 3}, + [1676] = {.lex_state = 93, .external_lex_state = 4}, + [1677] = {.lex_state = 93, .external_lex_state = 4}, + [1678] = {.lex_state = 345, .external_lex_state = 4}, + [1679] = {.lex_state = 345, .external_lex_state = 5}, + [1680] = {.lex_state = 340, .external_lex_state = 3}, + [1681] = {.lex_state = 343, .external_lex_state = 5}, + [1682] = {.lex_state = 344, .external_lex_state = 3}, + [1683] = {.lex_state = 93, .external_lex_state = 4}, + [1684] = {.lex_state = 344, .external_lex_state = 12}, + [1685] = {.lex_state = 107, .external_lex_state = 10}, + [1686] = {.lex_state = 77, .external_lex_state = 3}, + [1687] = {.lex_state = 93, .external_lex_state = 4}, + [1688] = {.lex_state = 345, .external_lex_state = 5}, + [1689] = {.lex_state = 345, .external_lex_state = 5}, + [1690] = {.lex_state = 345, .external_lex_state = 5}, + [1691] = {.lex_state = 107, .external_lex_state = 3}, + [1692] = {.lex_state = 345, .external_lex_state = 5}, + [1693] = {.lex_state = 85, .external_lex_state = 4}, + [1694] = {.lex_state = 344, .external_lex_state = 4}, + [1695] = {.lex_state = 343, .external_lex_state = 5}, + [1696] = {.lex_state = 93, .external_lex_state = 3}, + [1697] = {.lex_state = 85, .external_lex_state = 4}, + [1698] = {.lex_state = 85, .external_lex_state = 4}, + [1699] = {.lex_state = 107, .external_lex_state = 10}, + [1700] = {.lex_state = 87, .external_lex_state = 3}, + [1701] = {.lex_state = 92, .external_lex_state = 3}, + [1702] = {.lex_state = 347, .external_lex_state = 5}, + [1703] = {.lex_state = 344, .external_lex_state = 4}, + [1704] = {.lex_state = 343, .external_lex_state = 5}, + [1705] = {.lex_state = 343, .external_lex_state = 5}, + [1706] = {.lex_state = 107, .external_lex_state = 4}, + [1707] = {.lex_state = 107, .external_lex_state = 4}, + [1708] = {.lex_state = 105, .external_lex_state = 3}, + [1709] = {.lex_state = 93, .external_lex_state = 3}, + [1710] = {.lex_state = 93, .external_lex_state = 3}, + [1711] = {.lex_state = 78, .external_lex_state = 10}, + [1712] = {.lex_state = 342, .external_lex_state = 6}, + [1713] = {.lex_state = 93, .external_lex_state = 3}, + [1714] = {.lex_state = 107, .external_lex_state = 4}, + [1715] = {.lex_state = 93, .external_lex_state = 3}, + [1716] = {.lex_state = 344, .external_lex_state = 4}, + [1717] = {.lex_state = 347, .external_lex_state = 5}, + [1718] = {.lex_state = 344, .external_lex_state = 12}, + [1719] = {.lex_state = 78, .external_lex_state = 10}, + [1720] = {.lex_state = 345, .external_lex_state = 4}, + [1721] = {.lex_state = 77, .external_lex_state = 3}, + [1722] = {.lex_state = 92, .external_lex_state = 3}, + [1723] = {.lex_state = 345, .external_lex_state = 4}, + [1724] = {.lex_state = 107, .external_lex_state = 3}, + [1725] = {.lex_state = 345, .external_lex_state = 4}, + [1726] = {.lex_state = 77, .external_lex_state = 3}, + [1727] = {.lex_state = 99, .external_lex_state = 3}, + [1728] = {.lex_state = 345, .external_lex_state = 4}, + [1729] = {.lex_state = 77, .external_lex_state = 3}, + [1730] = {.lex_state = 93, .external_lex_state = 4}, + [1731] = {.lex_state = 107, .external_lex_state = 4}, + [1732] = {.lex_state = 78, .external_lex_state = 10}, + [1733] = {.lex_state = 107, .external_lex_state = 4}, + [1734] = {.lex_state = 92, .external_lex_state = 3}, + [1735] = {.lex_state = 79, .external_lex_state = 3}, + [1736] = {.lex_state = 344, .external_lex_state = 12}, + [1737] = {.lex_state = 347, .external_lex_state = 4}, + [1738] = {.lex_state = 344, .external_lex_state = 4}, + [1739] = {.lex_state = 92, .external_lex_state = 3}, + [1740] = {.lex_state = 95, .external_lex_state = 3}, + [1741] = {.lex_state = 79, .external_lex_state = 3}, + [1742] = {.lex_state = 344, .external_lex_state = 4}, + [1743] = {.lex_state = 79, .external_lex_state = 3}, + [1744] = {.lex_state = 107, .external_lex_state = 4}, + [1745] = {.lex_state = 107, .external_lex_state = 10}, + [1746] = {.lex_state = 79, .external_lex_state = 3}, + [1747] = {.lex_state = 79, .external_lex_state = 3}, + [1748] = {.lex_state = 347, .external_lex_state = 4}, + [1749] = {.lex_state = 344, .external_lex_state = 4}, + [1750] = {.lex_state = 107, .external_lex_state = 4}, + [1751] = {.lex_state = 107, .external_lex_state = 4}, + [1752] = {.lex_state = 344, .external_lex_state = 4}, + [1753] = {.lex_state = 344, .external_lex_state = 4}, + [1754] = {.lex_state = 347, .external_lex_state = 10}, + [1755] = {.lex_state = 107, .external_lex_state = 4}, + [1756] = {.lex_state = 107, .external_lex_state = 4}, + [1757] = {.lex_state = 78, .external_lex_state = 3}, + [1758] = {.lex_state = 100, .external_lex_state = 3}, + [1759] = {.lex_state = 103, .external_lex_state = 10}, + [1760] = {.lex_state = 347, .external_lex_state = 6}, + [1761] = {.lex_state = 78, .external_lex_state = 3}, + [1762] = {.lex_state = 107, .external_lex_state = 4}, + [1763] = {.lex_state = 78, .external_lex_state = 3}, + [1764] = {.lex_state = 103, .external_lex_state = 10}, + [1765] = {.lex_state = 88, .external_lex_state = 3}, + [1766] = {.lex_state = 88, .external_lex_state = 3}, + [1767] = {.lex_state = 107, .external_lex_state = 3}, + [1768] = {.lex_state = 344, .external_lex_state = 5}, + [1769] = {.lex_state = 89, .external_lex_state = 3}, + [1770] = {.lex_state = 344, .external_lex_state = 4}, + [1771] = {.lex_state = 344, .external_lex_state = 4}, + [1772] = {.lex_state = 88, .external_lex_state = 3}, + [1773] = {.lex_state = 107, .external_lex_state = 3}, + [1774] = {.lex_state = 89, .external_lex_state = 3}, + [1775] = {.lex_state = 107, .external_lex_state = 4}, + [1776] = {.lex_state = 89, .external_lex_state = 3}, + [1777] = {.lex_state = 107, .external_lex_state = 4}, + [1778] = {.lex_state = 344, .external_lex_state = 4}, + [1779] = {.lex_state = 344, .external_lex_state = 4}, + [1780] = {.lex_state = 107, .external_lex_state = 4}, + [1781] = {.lex_state = 78, .external_lex_state = 3}, + [1782] = {.lex_state = 107, .external_lex_state = 4}, + [1783] = {.lex_state = 89, .external_lex_state = 3}, + [1784] = {.lex_state = 106, .external_lex_state = 3}, + [1785] = {.lex_state = 347, .external_lex_state = 6}, + [1786] = {.lex_state = 85, .external_lex_state = 3}, + [1787] = {.lex_state = 89, .external_lex_state = 3}, + [1788] = {.lex_state = 85, .external_lex_state = 4}, + [1789] = {.lex_state = 344, .external_lex_state = 13}, + [1790] = {.lex_state = 107, .external_lex_state = 3}, + [1791] = {.lex_state = 106, .external_lex_state = 3}, + [1792] = {.lex_state = 345, .external_lex_state = 5}, + [1793] = {.lex_state = 344, .external_lex_state = 4}, + [1794] = {.lex_state = 345, .external_lex_state = 5}, + [1795] = {.lex_state = 85, .external_lex_state = 4}, + [1796] = {.lex_state = 107, .external_lex_state = 3}, + [1797] = {.lex_state = 88, .external_lex_state = 3}, + [1798] = {.lex_state = 344, .external_lex_state = 4}, + [1799] = {.lex_state = 345, .external_lex_state = 5}, + [1800] = {.lex_state = 345, .external_lex_state = 5}, + [1801] = {.lex_state = 344, .external_lex_state = 5}, + [1802] = {.lex_state = 107, .external_lex_state = 3}, + [1803] = {.lex_state = 107, .external_lex_state = 3}, + [1804] = {.lex_state = 107, .external_lex_state = 4}, + [1805] = {.lex_state = 344, .external_lex_state = 4}, + [1806] = {.lex_state = 101, .external_lex_state = 3}, + [1807] = {.lex_state = 108, .external_lex_state = 3}, + [1808] = {.lex_state = 108, .external_lex_state = 3}, + [1809] = {.lex_state = 344, .external_lex_state = 4}, + [1810] = {.lex_state = 108, .external_lex_state = 3}, + [1811] = {.lex_state = 109, .external_lex_state = 10}, + [1812] = {.lex_state = 108, .external_lex_state = 3}, + [1813] = {.lex_state = 344, .external_lex_state = 4}, + [1814] = {.lex_state = 344, .external_lex_state = 4}, + [1815] = {.lex_state = 344, .external_lex_state = 4}, + [1816] = {.lex_state = 157}, + [1817] = {.lex_state = 100, .external_lex_state = 3}, + [1818] = {.lex_state = 344, .external_lex_state = 4}, + [1819] = {.lex_state = 344, .external_lex_state = 4}, + [1820] = {.lex_state = 149, .external_lex_state = 14}, + [1821] = {.lex_state = 344, .external_lex_state = 4}, + [1822] = {.lex_state = 345, .external_lex_state = 5}, + [1823] = {.lex_state = 344, .external_lex_state = 4}, + [1824] = {.lex_state = 344, .external_lex_state = 4}, + [1825] = {.lex_state = 344, .external_lex_state = 4}, + [1826] = {.lex_state = 344, .external_lex_state = 4}, + [1827] = {.lex_state = 344, .external_lex_state = 4}, + [1828] = {.lex_state = 344, .external_lex_state = 4}, + [1829] = {.lex_state = 106, .external_lex_state = 3}, + [1830] = {.lex_state = 100, .external_lex_state = 3}, + [1831] = {.lex_state = 344, .external_lex_state = 4}, + [1832] = {.lex_state = 344, .external_lex_state = 4}, + [1833] = {.lex_state = 344, .external_lex_state = 4}, + [1834] = {.lex_state = 344, .external_lex_state = 4}, + [1835] = {.lex_state = 344, .external_lex_state = 4}, + [1836] = {.lex_state = 344, .external_lex_state = 4}, + [1837] = {.lex_state = 344, .external_lex_state = 4}, + [1838] = {.lex_state = 344, .external_lex_state = 4}, + [1839] = {.lex_state = 344, .external_lex_state = 4}, + [1840] = {.lex_state = 85, .external_lex_state = 3}, + [1841] = {.lex_state = 344, .external_lex_state = 4}, + [1842] = {.lex_state = 344, .external_lex_state = 4}, + [1843] = {.lex_state = 103, .external_lex_state = 3}, + [1844] = {.lex_state = 78, .external_lex_state = 3}, + [1845] = {.lex_state = 109, .external_lex_state = 3}, + [1846] = {.lex_state = 344, .external_lex_state = 4}, + [1847] = {.lex_state = 344, .external_lex_state = 4}, + [1848] = {.lex_state = 344, .external_lex_state = 4}, + [1849] = {.lex_state = 344, .external_lex_state = 4}, + [1850] = {.lex_state = 344, .external_lex_state = 4}, + [1851] = {.lex_state = 344, .external_lex_state = 4}, + [1852] = {.lex_state = 344, .external_lex_state = 5}, + [1853] = {.lex_state = 343, .external_lex_state = 6}, + [1854] = {.lex_state = 93, .external_lex_state = 3}, + [1855] = {.lex_state = 344, .external_lex_state = 5}, + [1856] = {.lex_state = 103, .external_lex_state = 10}, + [1857] = {.lex_state = 109, .external_lex_state = 10}, + [1858] = {.lex_state = 344, .external_lex_state = 3}, + [1859] = {.lex_state = 79, .external_lex_state = 3}, + [1860] = {.lex_state = 93, .external_lex_state = 3}, + [1861] = {.lex_state = 93, .external_lex_state = 3}, + [1862] = {.lex_state = 106, .external_lex_state = 3}, + [1863] = {.lex_state = 343, .external_lex_state = 6}, + [1864] = {.lex_state = 107, .external_lex_state = 4}, + [1865] = {.lex_state = 107, .external_lex_state = 3}, + [1866] = {.lex_state = 108, .external_lex_state = 3}, + [1867] = {.lex_state = 344, .external_lex_state = 5}, + [1868] = {.lex_state = 78, .external_lex_state = 3}, + [1869] = {.lex_state = 101, .external_lex_state = 3}, + [1870] = {.lex_state = 101, .external_lex_state = 3}, + [1871] = {.lex_state = 110, .external_lex_state = 3}, + [1872] = {.lex_state = 344, .external_lex_state = 5}, + [1873] = {.lex_state = 344, .external_lex_state = 4}, + [1874] = {.lex_state = 344, .external_lex_state = 3}, + [1875] = {.lex_state = 96, .external_lex_state = 3}, + [1876] = {.lex_state = 93, .external_lex_state = 3}, + [1877] = {.lex_state = 343, .external_lex_state = 6}, + [1878] = {.lex_state = 78, .external_lex_state = 3}, + [1879] = {.lex_state = 347, .external_lex_state = 10}, + [1880] = {.lex_state = 110, .external_lex_state = 10}, + [1881] = {.lex_state = 107, .external_lex_state = 4}, + [1882] = {.lex_state = 93, .external_lex_state = 3}, + [1883] = {.lex_state = 78, .external_lex_state = 3}, + [1884] = {.lex_state = 85, .external_lex_state = 3}, + [1885] = {.lex_state = 107, .external_lex_state = 4}, + [1886] = {.lex_state = 107, .external_lex_state = 4}, + [1887] = {.lex_state = 344, .external_lex_state = 5}, + [1888] = {.lex_state = 107, .external_lex_state = 4}, + [1889] = {.lex_state = 343, .external_lex_state = 6}, + [1890] = {.lex_state = 107, .external_lex_state = 4}, + [1891] = {.lex_state = 107, .external_lex_state = 4}, + [1892] = {.lex_state = 107, .external_lex_state = 4}, + [1893] = {.lex_state = 107, .external_lex_state = 4}, + [1894] = {.lex_state = 107, .external_lex_state = 4}, + [1895] = {.lex_state = 149}, + [1896] = {.lex_state = 107, .external_lex_state = 4}, + [1897] = {.lex_state = 107, .external_lex_state = 4}, + [1898] = {.lex_state = 107, .external_lex_state = 4}, + [1899] = {.lex_state = 107, .external_lex_state = 4}, + [1900] = {.lex_state = 107, .external_lex_state = 4}, + [1901] = {.lex_state = 78, .external_lex_state = 3}, + [1902] = {.lex_state = 107, .external_lex_state = 4}, + [1903] = {.lex_state = 107, .external_lex_state = 4}, + [1904] = {.lex_state = 101, .external_lex_state = 3}, + [1905] = {.lex_state = 107, .external_lex_state = 4}, + [1906] = {.lex_state = 344, .external_lex_state = 4}, + [1907] = {.lex_state = 101, .external_lex_state = 3}, + [1908] = {.lex_state = 107, .external_lex_state = 4}, + [1909] = {.lex_state = 344, .external_lex_state = 4}, + [1910] = {.lex_state = 100, .external_lex_state = 3}, + [1911] = {.lex_state = 107, .external_lex_state = 3}, + [1912] = {.lex_state = 347, .external_lex_state = 10}, + [1913] = {.lex_state = 107, .external_lex_state = 4}, + [1914] = {.lex_state = 344, .external_lex_state = 4}, + [1915] = {.lex_state = 110, .external_lex_state = 3}, + [1916] = {.lex_state = 344, .external_lex_state = 4}, + [1917] = {.lex_state = 109, .external_lex_state = 10}, + [1918] = {.lex_state = 345, .external_lex_state = 6}, + [1919] = {.lex_state = 96, .external_lex_state = 3}, + [1920] = {.lex_state = 344, .external_lex_state = 4}, + [1921] = {.lex_state = 78, .external_lex_state = 3}, + [1922] = {.lex_state = 344, .external_lex_state = 4}, + [1923] = {.lex_state = 107, .external_lex_state = 4}, + [1924] = {.lex_state = 344, .external_lex_state = 4}, + [1925] = {.lex_state = 345, .external_lex_state = 6}, + [1926] = {.lex_state = 107, .external_lex_state = 4}, + [1927] = {.lex_state = 107, .external_lex_state = 4}, + [1928] = {.lex_state = 107, .external_lex_state = 4}, + [1929] = {.lex_state = 107, .external_lex_state = 4}, + [1930] = {.lex_state = 107, .external_lex_state = 4}, + [1931] = {.lex_state = 344, .external_lex_state = 4}, + [1932] = {.lex_state = 107, .external_lex_state = 4}, + [1933] = {.lex_state = 344, .external_lex_state = 4}, + [1934] = {.lex_state = 107, .external_lex_state = 4}, + [1935] = {.lex_state = 107, .external_lex_state = 4}, + [1936] = {.lex_state = 107, .external_lex_state = 4}, + [1937] = {.lex_state = 107, .external_lex_state = 4}, + [1938] = {.lex_state = 344, .external_lex_state = 4}, + [1939] = {.lex_state = 344, .external_lex_state = 4}, + [1940] = {.lex_state = 344, .external_lex_state = 4}, + [1941] = {.lex_state = 107, .external_lex_state = 4}, + [1942] = {.lex_state = 344, .external_lex_state = 13}, + [1943] = {.lex_state = 107, .external_lex_state = 4}, + [1944] = {.lex_state = 96, .external_lex_state = 3}, + [1945] = {.lex_state = 103, .external_lex_state = 3}, + [1946] = {.lex_state = 107, .external_lex_state = 4}, + [1947] = {.lex_state = 107, .external_lex_state = 4}, + [1948] = {.lex_state = 344, .external_lex_state = 4}, + [1949] = {.lex_state = 97, .external_lex_state = 3}, + [1950] = {.lex_state = 107, .external_lex_state = 4}, + [1951] = {.lex_state = 344, .external_lex_state = 4}, + [1952] = {.lex_state = 345, .external_lex_state = 6}, + [1953] = {.lex_state = 345, .external_lex_state = 6}, + [1954] = {.lex_state = 344, .external_lex_state = 4}, + [1955] = {.lex_state = 97, .external_lex_state = 3}, + [1956] = {.lex_state = 344, .external_lex_state = 4}, + [1957] = {.lex_state = 344, .external_lex_state = 4}, + [1958] = {.lex_state = 344, .external_lex_state = 4}, + [1959] = {.lex_state = 107, .external_lex_state = 4}, + [1960] = {.lex_state = 107, .external_lex_state = 4}, + [1961] = {.lex_state = 107, .external_lex_state = 4}, + [1962] = {.lex_state = 107, .external_lex_state = 4}, + [1963] = {.lex_state = 107, .external_lex_state = 4}, + [1964] = {.lex_state = 79, .external_lex_state = 3}, + [1965] = {.lex_state = 110, .external_lex_state = 10}, + [1966] = {.lex_state = 344, .external_lex_state = 4}, + [1967] = {.lex_state = 79, .external_lex_state = 3}, + [1968] = {.lex_state = 344, .external_lex_state = 4}, + [1969] = {.lex_state = 344, .external_lex_state = 4}, + [1970] = {.lex_state = 344, .external_lex_state = 4}, + [1971] = {.lex_state = 344, .external_lex_state = 4}, + [1972] = {.lex_state = 344, .external_lex_state = 4}, + [1973] = {.lex_state = 344, .external_lex_state = 4}, + [1974] = {.lex_state = 107, .external_lex_state = 4}, + [1975] = {.lex_state = 107, .external_lex_state = 4}, + [1976] = {.lex_state = 110, .external_lex_state = 10}, + [1977] = {.lex_state = 107, .external_lex_state = 4}, + [1978] = {.lex_state = 107, .external_lex_state = 4}, + [1979] = {.lex_state = 344, .external_lex_state = 4}, + [1980] = {.lex_state = 107, .external_lex_state = 4}, + [1981] = {.lex_state = 344, .external_lex_state = 4}, + [1982] = {.lex_state = 107, .external_lex_state = 4}, + [1983] = {.lex_state = 344, .external_lex_state = 4}, + [1984] = {.lex_state = 78, .external_lex_state = 3}, + [1985] = {.lex_state = 107, .external_lex_state = 4}, + [1986] = {.lex_state = 107, .external_lex_state = 4}, + [1987] = {.lex_state = 107, .external_lex_state = 4}, + [1988] = {.lex_state = 107, .external_lex_state = 4}, + [1989] = {.lex_state = 107, .external_lex_state = 4}, + [1990] = {.lex_state = 107, .external_lex_state = 4}, + [1991] = {.lex_state = 109, .external_lex_state = 3}, + [1992] = {.lex_state = 344, .external_lex_state = 4}, + [1993] = {.lex_state = 107, .external_lex_state = 4}, + [1994] = {.lex_state = 97, .external_lex_state = 3}, + [1995] = {.lex_state = 107, .external_lex_state = 4}, + [1996] = {.lex_state = 97, .external_lex_state = 3}, + [1997] = {.lex_state = 79, .external_lex_state = 3}, + [1998] = {.lex_state = 79, .external_lex_state = 3}, + [1999] = {.lex_state = 344, .external_lex_state = 4}, + [2000] = {.lex_state = 345, .external_lex_state = 6}, + [2001] = {.lex_state = 344, .external_lex_state = 4}, + [2002] = {.lex_state = 344, .external_lex_state = 5}, + [2003] = {.lex_state = 107, .external_lex_state = 4}, + [2004] = {.lex_state = 107, .external_lex_state = 4}, + [2005] = {.lex_state = 149}, + [2006] = {.lex_state = 107, .external_lex_state = 4}, + [2007] = {.lex_state = 344, .external_lex_state = 13}, + [2008] = {.lex_state = 344, .external_lex_state = 4}, + [2009] = {.lex_state = 107, .external_lex_state = 4}, + [2010] = {.lex_state = 107, .external_lex_state = 4}, + [2011] = {.lex_state = 107, .external_lex_state = 4}, + [2012] = {.lex_state = 107, .external_lex_state = 4}, + [2013] = {.lex_state = 344, .external_lex_state = 4}, + [2014] = {.lex_state = 97, .external_lex_state = 3}, + [2015] = {.lex_state = 344, .external_lex_state = 4}, + [2016] = {.lex_state = 344, .external_lex_state = 4}, + [2017] = {.lex_state = 344, .external_lex_state = 4}, + [2018] = {.lex_state = 344, .external_lex_state = 4}, + [2019] = {.lex_state = 344, .external_lex_state = 4}, + [2020] = {.lex_state = 344, .external_lex_state = 4}, + [2021] = {.lex_state = 344, .external_lex_state = 4}, + [2022] = {.lex_state = 107, .external_lex_state = 4}, + [2023] = {.lex_state = 107, .external_lex_state = 4}, + [2024] = {.lex_state = 107, .external_lex_state = 4}, + [2025] = {.lex_state = 107, .external_lex_state = 4}, + [2026] = {.lex_state = 107, .external_lex_state = 4}, + [2027] = {.lex_state = 96, .external_lex_state = 3}, + [2028] = {.lex_state = 344, .external_lex_state = 4}, + [2029] = {.lex_state = 107, .external_lex_state = 4}, + [2030] = {.lex_state = 108, .external_lex_state = 3}, + [2031] = {.lex_state = 78, .external_lex_state = 3}, + [2032] = {.lex_state = 107, .external_lex_state = 3}, + [2033] = {.lex_state = 103, .external_lex_state = 3}, + [2034] = {.lex_state = 78, .external_lex_state = 3}, + [2035] = {.lex_state = 103, .external_lex_state = 3}, + [2036] = {.lex_state = 344, .external_lex_state = 5}, + [2037] = {.lex_state = 107, .external_lex_state = 3}, + [2038] = {.lex_state = 107, .external_lex_state = 3}, + [2039] = {.lex_state = 110, .external_lex_state = 3}, + [2040] = {.lex_state = 107, .external_lex_state = 3}, + [2041] = {.lex_state = 78, .external_lex_state = 3}, + [2042] = {.lex_state = 107, .external_lex_state = 3}, + [2043] = {.lex_state = 107, .external_lex_state = 3}, + [2044] = {.lex_state = 107, .external_lex_state = 3}, + [2045] = {.lex_state = 107, .external_lex_state = 3}, + [2046] = {.lex_state = 78, .external_lex_state = 3}, + [2047] = {.lex_state = 103, .external_lex_state = 3}, + [2048] = {.lex_state = 78, .external_lex_state = 3}, + [2049] = {.lex_state = 85, .external_lex_state = 3}, + [2050] = {.lex_state = 78, .external_lex_state = 3}, + [2051] = {.lex_state = 107, .external_lex_state = 3}, + [2052] = {.lex_state = 354, .external_lex_state = 2}, + [2053] = {.lex_state = 107, .external_lex_state = 3}, + [2054] = {.lex_state = 107, .external_lex_state = 3}, + [2055] = {.lex_state = 107, .external_lex_state = 3}, + [2056] = {.lex_state = 107, .external_lex_state = 3}, + [2057] = {.lex_state = 149}, + [2058] = {.lex_state = 107, .external_lex_state = 3}, + [2059] = {.lex_state = 107, .external_lex_state = 3}, + [2060] = {.lex_state = 107, .external_lex_state = 3}, + [2061] = {.lex_state = 107, .external_lex_state = 3}, + [2062] = {.lex_state = 109, .external_lex_state = 3}, + [2063] = {.lex_state = 78, .external_lex_state = 3}, + [2064] = {.lex_state = 107, .external_lex_state = 3}, + [2065] = {.lex_state = 107, .external_lex_state = 3}, + [2066] = {.lex_state = 107, .external_lex_state = 3}, + [2067] = {.lex_state = 107, .external_lex_state = 3}, + [2068] = {.lex_state = 107, .external_lex_state = 3}, + [2069] = {.lex_state = 107, .external_lex_state = 3}, + [2070] = {.lex_state = 107, .external_lex_state = 3}, + [2071] = {.lex_state = 107, .external_lex_state = 3}, + [2072] = {.lex_state = 107, .external_lex_state = 3}, + [2073] = {.lex_state = 107, .external_lex_state = 3}, + [2074] = {.lex_state = 107, .external_lex_state = 3}, + [2075] = {.lex_state = 107, .external_lex_state = 3}, + [2076] = {.lex_state = 107, .external_lex_state = 3}, + [2077] = {.lex_state = 107, .external_lex_state = 3}, + [2078] = {.lex_state = 107, .external_lex_state = 3}, + [2079] = {.lex_state = 107, .external_lex_state = 3}, + [2080] = {.lex_state = 103, .external_lex_state = 3}, + [2081] = {.lex_state = 164}, + [2082] = {.lex_state = 107, .external_lex_state = 3}, + [2083] = {.lex_state = 107, .external_lex_state = 3}, + [2084] = {.lex_state = 347, .external_lex_state = 3}, + [2085] = {.lex_state = 107, .external_lex_state = 3}, + [2086] = {.lex_state = 107, .external_lex_state = 3}, + [2087] = {.lex_state = 107, .external_lex_state = 3}, + [2088] = {.lex_state = 344, .external_lex_state = 5}, + [2089] = {.lex_state = 107, .external_lex_state = 3}, + [2090] = {.lex_state = 344, .external_lex_state = 6}, + [2091] = {.lex_state = 107, .external_lex_state = 3}, + [2092] = {.lex_state = 347, .external_lex_state = 3}, + [2093] = {.lex_state = 354, .external_lex_state = 2}, + [2094] = {.lex_state = 149}, + [2095] = {.lex_state = 110, .external_lex_state = 3}, + [2096] = {.lex_state = 107, .external_lex_state = 3}, + [2097] = {.lex_state = 107, .external_lex_state = 3}, + [2098] = {.lex_state = 107, .external_lex_state = 3}, + [2099] = {.lex_state = 107, .external_lex_state = 3}, + [2100] = {.lex_state = 344, .external_lex_state = 5}, + [2101] = {.lex_state = 354, .external_lex_state = 2}, + [2102] = {.lex_state = 354, .external_lex_state = 2}, + [2103] = {.lex_state = 107, .external_lex_state = 3}, + [2104] = {.lex_state = 107, .external_lex_state = 3}, + [2105] = {.lex_state = 107, .external_lex_state = 3}, + [2106] = {.lex_state = 354, .external_lex_state = 2}, + [2107] = {.lex_state = 344, .external_lex_state = 5}, + [2108] = {.lex_state = 344, .external_lex_state = 5}, + [2109] = {.lex_state = 344, .external_lex_state = 6}, + [2110] = {.lex_state = 107, .external_lex_state = 3}, + [2111] = {.lex_state = 107, .external_lex_state = 3}, + [2112] = {.lex_state = 107, .external_lex_state = 3}, + [2113] = {.lex_state = 107, .external_lex_state = 3}, + [2114] = {.lex_state = 344, .external_lex_state = 5}, + [2115] = {.lex_state = 107, .external_lex_state = 3}, + [2116] = {.lex_state = 344, .external_lex_state = 5}, + [2117] = {.lex_state = 344, .external_lex_state = 6}, + [2118] = {.lex_state = 107, .external_lex_state = 3}, + [2119] = {.lex_state = 344, .external_lex_state = 5}, + [2120] = {.lex_state = 89, .external_lex_state = 3}, + [2121] = {.lex_state = 89, .external_lex_state = 3}, + [2122] = {.lex_state = 344, .external_lex_state = 5}, + [2123] = {.lex_state = 103, .external_lex_state = 3}, + [2124] = {.lex_state = 344, .external_lex_state = 5}, + [2125] = {.lex_state = 344, .external_lex_state = 6}, + [2126] = {.lex_state = 107, .external_lex_state = 3}, + [2127] = {.lex_state = 107, .external_lex_state = 3}, + [2128] = {.lex_state = 344, .external_lex_state = 6}, + [2129] = {.lex_state = 107, .external_lex_state = 3}, + [2130] = {.lex_state = 78, .external_lex_state = 3}, + [2131] = {.lex_state = 107, .external_lex_state = 3}, + [2132] = {.lex_state = 107, .external_lex_state = 3}, + [2133] = {.lex_state = 344, .external_lex_state = 5}, + [2134] = {.lex_state = 344, .external_lex_state = 6}, + [2135] = {.lex_state = 344, .external_lex_state = 5}, + [2136] = {.lex_state = 107, .external_lex_state = 3}, + [2137] = {.lex_state = 347, .external_lex_state = 3}, + [2138] = {.lex_state = 344, .external_lex_state = 5}, + [2139] = {.lex_state = 107, .external_lex_state = 3}, + [2140] = {.lex_state = 107, .external_lex_state = 3}, + [2141] = {.lex_state = 107, .external_lex_state = 3}, + [2142] = {.lex_state = 107, .external_lex_state = 3}, + [2143] = {.lex_state = 344, .external_lex_state = 5}, + [2144] = {.lex_state = 89, .external_lex_state = 3}, + [2145] = {.lex_state = 107, .external_lex_state = 3}, + [2146] = {.lex_state = 107, .external_lex_state = 3}, + [2147] = {.lex_state = 149}, + [2148] = {.lex_state = 344, .external_lex_state = 5}, + [2149] = {.lex_state = 344, .external_lex_state = 5}, + [2150] = {.lex_state = 101, .external_lex_state = 3}, + [2151] = {.lex_state = 107, .external_lex_state = 3}, + [2152] = {.lex_state = 107, .external_lex_state = 3}, + [2153] = {.lex_state = 97, .external_lex_state = 3}, + [2154] = {.lex_state = 157}, + [2155] = {.lex_state = 97, .external_lex_state = 3}, + [2156] = {.lex_state = 347, .external_lex_state = 3}, + [2157] = {.lex_state = 89, .external_lex_state = 3}, + [2158] = {.lex_state = 107, .external_lex_state = 3}, + [2159] = {.lex_state = 78, .external_lex_state = 3}, + [2160] = {.lex_state = 344, .external_lex_state = 5}, + [2161] = {.lex_state = 344, .external_lex_state = 5}, + [2162] = {.lex_state = 101, .external_lex_state = 3}, + [2163] = {.lex_state = 107, .external_lex_state = 3}, + [2164] = {.lex_state = 149, .external_lex_state = 14}, + [2165] = {.lex_state = 344, .external_lex_state = 5}, + [2166] = {.lex_state = 110, .external_lex_state = 3}, + [2167] = {.lex_state = 109, .external_lex_state = 3}, + [2168] = {.lex_state = 78, .external_lex_state = 3}, + [2169] = {.lex_state = 78, .external_lex_state = 3}, + [2170] = {.lex_state = 344, .external_lex_state = 5}, + [2171] = {.lex_state = 78, .external_lex_state = 3}, + [2172] = {.lex_state = 107, .external_lex_state = 3}, + [2173] = {.lex_state = 78, .external_lex_state = 3}, + [2174] = {.lex_state = 107, .external_lex_state = 3}, + [2175] = {.lex_state = 108, .external_lex_state = 3}, + [2176] = {.lex_state = 103, .external_lex_state = 3}, + [2177] = {.lex_state = 107, .external_lex_state = 3}, + [2178] = {.lex_state = 78, .external_lex_state = 3}, + [2179] = {.lex_state = 78, .external_lex_state = 3}, + [2180] = {.lex_state = 108, .external_lex_state = 3}, + [2181] = {.lex_state = 78, .external_lex_state = 3}, + [2182] = {.lex_state = 345, .external_lex_state = 6}, + [2183] = {.lex_state = 78, .external_lex_state = 3}, + [2184] = {.lex_state = 345, .external_lex_state = 6}, + [2185] = {.lex_state = 78, .external_lex_state = 3}, + [2186] = {.lex_state = 344, .external_lex_state = 6}, + [2187] = {.lex_state = 344, .external_lex_state = 5}, + [2188] = {.lex_state = 109, .external_lex_state = 3}, + [2189] = {.lex_state = 108, .external_lex_state = 3}, + [2190] = {.lex_state = 345, .external_lex_state = 6}, + [2191] = {.lex_state = 344, .external_lex_state = 5}, + [2192] = {.lex_state = 344, .external_lex_state = 5}, + [2193] = {.lex_state = 107, .external_lex_state = 3}, + [2194] = {.lex_state = 78, .external_lex_state = 3}, + [2195] = {.lex_state = 110, .external_lex_state = 3}, + [2196] = {.lex_state = 78, .external_lex_state = 3}, + [2197] = {.lex_state = 78, .external_lex_state = 3}, + [2198] = {.lex_state = 78, .external_lex_state = 3}, + [2199] = {.lex_state = 78, .external_lex_state = 3}, + [2200] = {.lex_state = 78, .external_lex_state = 3}, + [2201] = {.lex_state = 347, .external_lex_state = 3}, + [2202] = {.lex_state = 347, .external_lex_state = 3}, + [2203] = {.lex_state = 78, .external_lex_state = 3}, + [2204] = {.lex_state = 110, .external_lex_state = 3}, + [2205] = {.lex_state = 78, .external_lex_state = 3}, + [2206] = {.lex_state = 78, .external_lex_state = 3}, + [2207] = {.lex_state = 78, .external_lex_state = 3}, + [2208] = {.lex_state = 344, .external_lex_state = 5}, + [2209] = {.lex_state = 107, .external_lex_state = 3}, + [2210] = {.lex_state = 97, .external_lex_state = 3}, + [2211] = {.lex_state = 344, .external_lex_state = 5}, + [2212] = {.lex_state = 78, .external_lex_state = 3}, + [2213] = {.lex_state = 78, .external_lex_state = 3}, + [2214] = {.lex_state = 344, .external_lex_state = 5}, + [2215] = {.lex_state = 344, .external_lex_state = 5}, + [2216] = {.lex_state = 78, .external_lex_state = 3}, + [2217] = {.lex_state = 78, .external_lex_state = 3}, + [2218] = {.lex_state = 78, .external_lex_state = 3}, + [2219] = {.lex_state = 78, .external_lex_state = 3}, + [2220] = {.lex_state = 78, .external_lex_state = 3}, + [2221] = {.lex_state = 78, .external_lex_state = 3}, + [2222] = {.lex_state = 78, .external_lex_state = 3}, + [2223] = {.lex_state = 78, .external_lex_state = 3}, + [2224] = {.lex_state = 344, .external_lex_state = 5}, + [2225] = {.lex_state = 78, .external_lex_state = 3}, + [2226] = {.lex_state = 78, .external_lex_state = 3}, + [2227] = {.lex_state = 78, .external_lex_state = 3}, + [2228] = {.lex_state = 78, .external_lex_state = 3}, + [2229] = {.lex_state = 78, .external_lex_state = 3}, + [2230] = {.lex_state = 101, .external_lex_state = 3}, + [2231] = {.lex_state = 101, .external_lex_state = 3}, + [2232] = {.lex_state = 78, .external_lex_state = 3}, + [2233] = {.lex_state = 78, .external_lex_state = 3}, + [2234] = {.lex_state = 78, .external_lex_state = 3}, + [2235] = {.lex_state = 110, .external_lex_state = 3}, + [2236] = {.lex_state = 149}, + [2237] = {.lex_state = 344, .external_lex_state = 5}, + [2238] = {.lex_state = 344, .external_lex_state = 5}, + [2239] = {.lex_state = 344, .external_lex_state = 5}, + [2240] = {.lex_state = 344, .external_lex_state = 5}, + [2241] = {.lex_state = 78, .external_lex_state = 3}, + [2242] = {.lex_state = 157}, + [2243] = {.lex_state = 97, .external_lex_state = 3}, + [2244] = {.lex_state = 110, .external_lex_state = 3}, + [2245] = {.lex_state = 85, .external_lex_state = 3}, + [2246] = {.lex_state = 78, .external_lex_state = 3}, + [2247] = {.lex_state = 78, .external_lex_state = 3}, + [2248] = {.lex_state = 78, .external_lex_state = 3}, + [2249] = {.lex_state = 344, .external_lex_state = 6}, + [2250] = {.lex_state = 103, .external_lex_state = 3}, + [2251] = {.lex_state = 347, .external_lex_state = 3}, + [2252] = {.lex_state = 344, .external_lex_state = 5}, + [2253] = {.lex_state = 107, .external_lex_state = 3}, + [2254] = {.lex_state = 109, .external_lex_state = 3}, + [2255] = {.lex_state = 78, .external_lex_state = 3}, + [2256] = {.lex_state = 78, .external_lex_state = 3}, + [2257] = {.lex_state = 344, .external_lex_state = 5}, + [2258] = {.lex_state = 344, .external_lex_state = 5}, + [2259] = {.lex_state = 344, .external_lex_state = 5}, + [2260] = {.lex_state = 344, .external_lex_state = 5}, + [2261] = {.lex_state = 109, .external_lex_state = 3}, + [2262] = {.lex_state = 101, .external_lex_state = 3}, + [2263] = {.lex_state = 344, .external_lex_state = 5}, + [2264] = {.lex_state = 78, .external_lex_state = 3}, + [2265] = {.lex_state = 78, .external_lex_state = 3}, + [2266] = {.lex_state = 78, .external_lex_state = 3}, + [2267] = {.lex_state = 345, .external_lex_state = 6}, + [2268] = {.lex_state = 149}, + [2269] = {.lex_state = 89, .external_lex_state = 3}, + [2270] = {.lex_state = 78, .external_lex_state = 3}, + [2271] = {.lex_state = 78, .external_lex_state = 3}, + [2272] = {.lex_state = 78, .external_lex_state = 3}, + [2273] = {.lex_state = 78, .external_lex_state = 3}, + [2274] = {.lex_state = 78, .external_lex_state = 3}, + [2275] = {.lex_state = 344, .external_lex_state = 5}, + [2276] = {.lex_state = 354, .external_lex_state = 2}, + [2277] = {.lex_state = 344, .external_lex_state = 5}, + [2278] = {.lex_state = 347, .external_lex_state = 3}, + [2279] = {.lex_state = 103, .external_lex_state = 3}, + [2280] = {.lex_state = 344, .external_lex_state = 5}, + [2281] = {.lex_state = 347, .external_lex_state = 3}, + [2282] = {.lex_state = 78, .external_lex_state = 3}, + [2283] = {.lex_state = 108, .external_lex_state = 3}, + [2284] = {.lex_state = 149}, + [2285] = {.lex_state = 344, .external_lex_state = 5}, + [2286] = {.lex_state = 344, .external_lex_state = 5}, + [2287] = {.lex_state = 344, .external_lex_state = 5}, + [2288] = {.lex_state = 344, .external_lex_state = 5}, + [2289] = {.lex_state = 344, .external_lex_state = 5}, + [2290] = {.lex_state = 344, .external_lex_state = 5}, + [2291] = {.lex_state = 78, .external_lex_state = 3}, + [2292] = {.lex_state = 344, .external_lex_state = 5}, + [2293] = {.lex_state = 344, .external_lex_state = 5}, + [2294] = {.lex_state = 344, .external_lex_state = 5}, + [2295] = {.lex_state = 78, .external_lex_state = 3}, + [2296] = {.lex_state = 78, .external_lex_state = 3}, + [2297] = {.lex_state = 97, .external_lex_state = 3}, + [2298] = {.lex_state = 78, .external_lex_state = 3}, + [2299] = {.lex_state = 78, .external_lex_state = 3}, + [2300] = {.lex_state = 344, .external_lex_state = 5}, + [2301] = {.lex_state = 107, .external_lex_state = 3}, + [2302] = {.lex_state = 344, .external_lex_state = 5}, + [2303] = {.lex_state = 78, .external_lex_state = 3}, + [2304] = {.lex_state = 109, .external_lex_state = 3}, + [2305] = {.lex_state = 78, .external_lex_state = 3}, + [2306] = {.lex_state = 344, .external_lex_state = 5}, + [2307] = {.lex_state = 344, .external_lex_state = 5}, + [2308] = {.lex_state = 344, .external_lex_state = 5}, + [2309] = {.lex_state = 344, .external_lex_state = 5}, + [2310] = {.lex_state = 78, .external_lex_state = 3}, + [2311] = {.lex_state = 78, .external_lex_state = 3}, + [2312] = {.lex_state = 78, .external_lex_state = 3}, + [2313] = {.lex_state = 354, .external_lex_state = 2}, + [2314] = {.lex_state = 344, .external_lex_state = 5}, + [2315] = {.lex_state = 78, .external_lex_state = 3}, + [2316] = {.lex_state = 149}, + [2317] = {.lex_state = 109, .external_lex_state = 3}, + [2318] = {.lex_state = 78, .external_lex_state = 3}, + [2319] = {.lex_state = 78, .external_lex_state = 3}, + [2320] = {.lex_state = 344, .external_lex_state = 5}, + [2321] = {.lex_state = 344, .external_lex_state = 5}, + [2322] = {.lex_state = 344, .external_lex_state = 5}, + [2323] = {.lex_state = 344, .external_lex_state = 5}, + [2324] = {.lex_state = 344, .external_lex_state = 5}, + [2325] = {.lex_state = 344, .external_lex_state = 5}, + [2326] = {.lex_state = 344, .external_lex_state = 5}, + [2327] = {.lex_state = 344, .external_lex_state = 5}, + [2328] = {.lex_state = 344, .external_lex_state = 5}, + [2329] = {.lex_state = 344, .external_lex_state = 5}, + [2330] = {.lex_state = 78, .external_lex_state = 3}, + [2331] = {.lex_state = 78, .external_lex_state = 3}, + [2332] = {.lex_state = 110, .external_lex_state = 3}, + [2333] = {.lex_state = 344, .external_lex_state = 5}, + [2334] = {.lex_state = 345, .external_lex_state = 6}, + [2335] = {.lex_state = 344, .external_lex_state = 5}, + [2336] = {.lex_state = 344, .external_lex_state = 5}, + [2337] = {.lex_state = 344, .external_lex_state = 5}, + [2338] = {.lex_state = 344, .external_lex_state = 5}, + [2339] = {.lex_state = 344, .external_lex_state = 5}, + [2340] = {.lex_state = 109, .external_lex_state = 3}, + [2341] = {.lex_state = 78, .external_lex_state = 3}, + [2342] = {.lex_state = 344, .external_lex_state = 5}, + [2343] = {.lex_state = 344, .external_lex_state = 5}, + [2344] = {.lex_state = 344, .external_lex_state = 5}, + [2345] = {.lex_state = 344, .external_lex_state = 5}, + [2346] = {.lex_state = 78, .external_lex_state = 3}, + [2347] = {.lex_state = 344, .external_lex_state = 6}, + [2348] = {.lex_state = 354, .external_lex_state = 7}, + [2349] = {.lex_state = 347, .external_lex_state = 3}, + [2350] = {.lex_state = 347, .external_lex_state = 3}, + [2351] = {.lex_state = 344, .external_lex_state = 6}, + [2352] = {.lex_state = 344, .external_lex_state = 6}, + [2353] = {.lex_state = 109, .external_lex_state = 3}, + [2354] = {.lex_state = 109, .external_lex_state = 3}, + [2355] = {.lex_state = 110, .external_lex_state = 3}, + [2356] = {.lex_state = 149}, + [2357] = {.lex_state = 347, .external_lex_state = 3}, + [2358] = {.lex_state = 344, .external_lex_state = 6}, + [2359] = {.lex_state = 344, .external_lex_state = 6}, + [2360] = {.lex_state = 109, .external_lex_state = 3}, + [2361] = {.lex_state = 354, .external_lex_state = 2}, + [2362] = {.lex_state = 347, .external_lex_state = 3}, + [2363] = {.lex_state = 109, .external_lex_state = 3}, + [2364] = {.lex_state = 109, .external_lex_state = 3}, + [2365] = {.lex_state = 347, .external_lex_state = 3}, + [2366] = {.lex_state = 344, .external_lex_state = 6}, + [2367] = {.lex_state = 344, .external_lex_state = 6}, + [2368] = {.lex_state = 344, .external_lex_state = 6}, + [2369] = {.lex_state = 344, .external_lex_state = 6}, + [2370] = {.lex_state = 109, .external_lex_state = 3}, + [2371] = {.lex_state = 344, .external_lex_state = 6}, + [2372] = {.lex_state = 110, .external_lex_state = 3}, + [2373] = {.lex_state = 109, .external_lex_state = 3}, + [2374] = {.lex_state = 110, .external_lex_state = 3}, + [2375] = {.lex_state = 344, .external_lex_state = 6}, + [2376] = {.lex_state = 344, .external_lex_state = 6}, + [2377] = {.lex_state = 344, .external_lex_state = 6}, + [2378] = {.lex_state = 110, .external_lex_state = 3}, + [2379] = {.lex_state = 344, .external_lex_state = 6}, + [2380] = {.lex_state = 344, .external_lex_state = 6}, + [2381] = {.lex_state = 103, .external_lex_state = 3}, + [2382] = {.lex_state = 344, .external_lex_state = 6}, + [2383] = {.lex_state = 347, .external_lex_state = 3}, + [2384] = {.lex_state = 344, .external_lex_state = 6}, + [2385] = {.lex_state = 344, .external_lex_state = 6}, + [2386] = {.lex_state = 347, .external_lex_state = 3}, + [2387] = {.lex_state = 109, .external_lex_state = 3}, + [2388] = {.lex_state = 347, .external_lex_state = 3}, + [2389] = {.lex_state = 103, .external_lex_state = 3}, + [2390] = {.lex_state = 103, .external_lex_state = 3}, + [2391] = {.lex_state = 109, .external_lex_state = 3}, + [2392] = {.lex_state = 110, .external_lex_state = 3}, + [2393] = {.lex_state = 356}, + [2394] = {.lex_state = 344, .external_lex_state = 6}, + [2395] = {.lex_state = 344, .external_lex_state = 6}, + [2396] = {.lex_state = 344, .external_lex_state = 6}, + [2397] = {.lex_state = 344, .external_lex_state = 6}, + [2398] = {.lex_state = 344, .external_lex_state = 6}, + [2399] = {.lex_state = 347, .external_lex_state = 3}, + [2400] = {.lex_state = 149}, + [2401] = {.lex_state = 103, .external_lex_state = 3}, + [2402] = {.lex_state = 347, .external_lex_state = 3}, + [2403] = {.lex_state = 109, .external_lex_state = 3}, + [2404] = {.lex_state = 344, .external_lex_state = 6}, + [2405] = {.lex_state = 347, .external_lex_state = 3}, + [2406] = {.lex_state = 344, .external_lex_state = 6}, + [2407] = {.lex_state = 110, .external_lex_state = 3}, + [2408] = {.lex_state = 103, .external_lex_state = 3}, + [2409] = {.lex_state = 103, .external_lex_state = 3}, + [2410] = {.lex_state = 354, .external_lex_state = 2}, + [2411] = {.lex_state = 103, .external_lex_state = 3}, + [2412] = {.lex_state = 103, .external_lex_state = 3}, + [2413] = {.lex_state = 344, .external_lex_state = 6}, + [2414] = {.lex_state = 347, .external_lex_state = 3}, + [2415] = {.lex_state = 347, .external_lex_state = 3}, + [2416] = {.lex_state = 344, .external_lex_state = 6}, + [2417] = {.lex_state = 344, .external_lex_state = 6}, + [2418] = {.lex_state = 344, .external_lex_state = 6}, + [2419] = {.lex_state = 344, .external_lex_state = 6}, + [2420] = {.lex_state = 344, .external_lex_state = 6}, + [2421] = {.lex_state = 354, .external_lex_state = 2}, + [2422] = {.lex_state = 110, .external_lex_state = 3}, + [2423] = {.lex_state = 347, .external_lex_state = 3}, + [2424] = {.lex_state = 109, .external_lex_state = 3}, + [2425] = {.lex_state = 109, .external_lex_state = 3}, + [2426] = {.lex_state = 347, .external_lex_state = 3}, + [2427] = {.lex_state = 347, .external_lex_state = 3}, + [2428] = {.lex_state = 347, .external_lex_state = 3}, + [2429] = {.lex_state = 344, .external_lex_state = 6}, + [2430] = {.lex_state = 109, .external_lex_state = 3}, + [2431] = {.lex_state = 109, .external_lex_state = 3}, + [2432] = {.lex_state = 110, .external_lex_state = 3}, + [2433] = {.lex_state = 347, .external_lex_state = 3}, + [2434] = {.lex_state = 347, .external_lex_state = 3}, + [2435] = {.lex_state = 344, .external_lex_state = 6}, + [2436] = {.lex_state = 344, .external_lex_state = 6}, + [2437] = {.lex_state = 347, .external_lex_state = 3}, + [2438] = {.lex_state = 110, .external_lex_state = 3}, + [2439] = {.lex_state = 354, .external_lex_state = 7}, + [2440] = {.lex_state = 344, .external_lex_state = 6}, + [2441] = {.lex_state = 110, .external_lex_state = 3}, + [2442] = {.lex_state = 347, .external_lex_state = 3}, + [2443] = {.lex_state = 110, .external_lex_state = 3}, + [2444] = {.lex_state = 356}, + [2445] = {.lex_state = 356}, + [2446] = {.lex_state = 110, .external_lex_state = 3}, + [2447] = {.lex_state = 110, .external_lex_state = 3}, + [2448] = {.lex_state = 356}, + [2449] = {.lex_state = 356}, + [2450] = {.lex_state = 347, .external_lex_state = 3}, + [2451] = {.lex_state = 110, .external_lex_state = 3}, + [2452] = {.lex_state = 347, .external_lex_state = 3}, + [2453] = {.lex_state = 347, .external_lex_state = 3}, + [2454] = {.lex_state = 347, .external_lex_state = 3}, + [2455] = {.lex_state = 110, .external_lex_state = 3}, + [2456] = {.lex_state = 110, .external_lex_state = 3}, + [2457] = {.lex_state = 110, .external_lex_state = 3}, + [2458] = {.lex_state = 109, .external_lex_state = 3}, + [2459] = {.lex_state = 110, .external_lex_state = 3}, + [2460] = {.lex_state = 110, .external_lex_state = 3}, + [2461] = {.lex_state = 110, .external_lex_state = 3}, + [2462] = {.lex_state = 110, .external_lex_state = 3}, + [2463] = {.lex_state = 347, .external_lex_state = 3}, + [2464] = {.lex_state = 347, .external_lex_state = 3}, + [2465] = {.lex_state = 109, .external_lex_state = 3}, + [2466] = {.lex_state = 344, .external_lex_state = 6}, + [2467] = {.lex_state = 109, .external_lex_state = 3}, + [2468] = {.lex_state = 347, .external_lex_state = 3}, + [2469] = {.lex_state = 109, .external_lex_state = 3}, + [2470] = {.lex_state = 109, .external_lex_state = 3}, + [2471] = {.lex_state = 109, .external_lex_state = 3}, + [2472] = {.lex_state = 109, .external_lex_state = 3}, + [2473] = {.lex_state = 109, .external_lex_state = 3}, + [2474] = {.lex_state = 109, .external_lex_state = 3}, + [2475] = {.lex_state = 109, .external_lex_state = 3}, + [2476] = {.lex_state = 109, .external_lex_state = 3}, + [2477] = {.lex_state = 109, .external_lex_state = 3}, + [2478] = {.lex_state = 109, .external_lex_state = 3}, + [2479] = {.lex_state = 109, .external_lex_state = 3}, + [2480] = {.lex_state = 110, .external_lex_state = 3}, + [2481] = {.lex_state = 356}, + [2482] = {.lex_state = 356}, + [2483] = {.lex_state = 109, .external_lex_state = 3}, + [2484] = {.lex_state = 109, .external_lex_state = 3}, + [2485] = {.lex_state = 356}, + [2486] = {.lex_state = 344, .external_lex_state = 6}, + [2487] = {.lex_state = 109, .external_lex_state = 3}, + [2488] = {.lex_state = 109, .external_lex_state = 3}, + [2489] = {.lex_state = 109, .external_lex_state = 3}, + [2490] = {.lex_state = 109, .external_lex_state = 3}, + [2491] = {.lex_state = 109, .external_lex_state = 3}, + [2492] = {.lex_state = 344, .external_lex_state = 6}, + [2493] = {.lex_state = 109, .external_lex_state = 3}, + [2494] = {.lex_state = 109, .external_lex_state = 3}, + [2495] = {.lex_state = 344, .external_lex_state = 6}, + [2496] = {.lex_state = 356}, + [2497] = {.lex_state = 110, .external_lex_state = 3}, + [2498] = {.lex_state = 109, .external_lex_state = 3}, + [2499] = {.lex_state = 109, .external_lex_state = 3}, + [2500] = {.lex_state = 356}, + [2501] = {.lex_state = 344, .external_lex_state = 6}, + [2502] = {.lex_state = 344, .external_lex_state = 6}, + [2503] = {.lex_state = 356}, + [2504] = {.lex_state = 344, .external_lex_state = 6}, + [2505] = {.lex_state = 347, .external_lex_state = 3}, + [2506] = {.lex_state = 347, .external_lex_state = 3}, + [2507] = {.lex_state = 110, .external_lex_state = 3}, + [2508] = {.lex_state = 110, .external_lex_state = 3}, + [2509] = {.lex_state = 344, .external_lex_state = 6}, + [2510] = {.lex_state = 344, .external_lex_state = 6}, + [2511] = {.lex_state = 110, .external_lex_state = 3}, + [2512] = {.lex_state = 109, .external_lex_state = 3}, + [2513] = {.lex_state = 110, .external_lex_state = 3}, + [2514] = {.lex_state = 110, .external_lex_state = 3}, + [2515] = {.lex_state = 110, .external_lex_state = 3}, + [2516] = {.lex_state = 109, .external_lex_state = 3}, + [2517] = {.lex_state = 109, .external_lex_state = 3}, + [2518] = {.lex_state = 109, .external_lex_state = 3}, + [2519] = {.lex_state = 109, .external_lex_state = 3}, + [2520] = {.lex_state = 109, .external_lex_state = 3}, + [2521] = {.lex_state = 347, .external_lex_state = 3}, + [2522] = {.lex_state = 110, .external_lex_state = 3}, + [2523] = {.lex_state = 110, .external_lex_state = 3}, + [2524] = {.lex_state = 110, .external_lex_state = 3}, + [2525] = {.lex_state = 347, .external_lex_state = 3}, + [2526] = {.lex_state = 347, .external_lex_state = 3}, + [2527] = {.lex_state = 344, .external_lex_state = 6}, + [2528] = {.lex_state = 347, .external_lex_state = 3}, + [2529] = {.lex_state = 347, .external_lex_state = 3}, + [2530] = {.lex_state = 109, .external_lex_state = 3}, + [2531] = {.lex_state = 354, .external_lex_state = 7}, + [2532] = {.lex_state = 109, .external_lex_state = 3}, + [2533] = {.lex_state = 109, .external_lex_state = 3}, + [2534] = {.lex_state = 109, .external_lex_state = 3}, + [2535] = {.lex_state = 109, .external_lex_state = 3}, + [2536] = {.lex_state = 109, .external_lex_state = 3}, + [2537] = {.lex_state = 109, .external_lex_state = 3}, + [2538] = {.lex_state = 103, .external_lex_state = 3}, + [2539] = {.lex_state = 110, .external_lex_state = 3}, + [2540] = {.lex_state = 344, .external_lex_state = 6}, + [2541] = {.lex_state = 149}, + [2542] = {.lex_state = 356}, + [2543] = {.lex_state = 103, .external_lex_state = 3}, + [2544] = {.lex_state = 344, .external_lex_state = 6}, + [2545] = {.lex_state = 109, .external_lex_state = 3}, + [2546] = {.lex_state = 110, .external_lex_state = 3}, + [2547] = {.lex_state = 110, .external_lex_state = 3}, + [2548] = {.lex_state = 103, .external_lex_state = 3}, + [2549] = {.lex_state = 110, .external_lex_state = 3}, + [2550] = {.lex_state = 347, .external_lex_state = 3}, + [2551] = {.lex_state = 110, .external_lex_state = 3}, + [2552] = {.lex_state = 109, .external_lex_state = 3}, + [2553] = {.lex_state = 344, .external_lex_state = 6}, + [2554] = {.lex_state = 347, .external_lex_state = 3}, + [2555] = {.lex_state = 109, .external_lex_state = 3}, + [2556] = {.lex_state = 103, .external_lex_state = 3}, + [2557] = {.lex_state = 103, .external_lex_state = 3}, + [2558] = {.lex_state = 347, .external_lex_state = 3}, + [2559] = {.lex_state = 356}, + [2560] = {.lex_state = 347, .external_lex_state = 3}, + [2561] = {.lex_state = 110, .external_lex_state = 3}, + [2562] = {.lex_state = 344, .external_lex_state = 6}, + [2563] = {.lex_state = 110, .external_lex_state = 3}, + [2564] = {.lex_state = 110, .external_lex_state = 3}, + [2565] = {.lex_state = 103, .external_lex_state = 3}, + [2566] = {.lex_state = 347, .external_lex_state = 3}, + [2567] = {.lex_state = 103, .external_lex_state = 3}, + [2568] = {.lex_state = 110, .external_lex_state = 3}, + [2569] = {.lex_state = 344, .external_lex_state = 6}, + [2570] = {.lex_state = 103, .external_lex_state = 3}, + [2571] = {.lex_state = 356}, + [2572] = {.lex_state = 344, .external_lex_state = 6}, + [2573] = {.lex_state = 164}, + [2574] = {.lex_state = 344, .external_lex_state = 6}, + [2575] = {.lex_state = 109, .external_lex_state = 3}, + [2576] = {.lex_state = 109, .external_lex_state = 3}, + [2577] = {.lex_state = 344, .external_lex_state = 6}, + [2578] = {.lex_state = 109, .external_lex_state = 3}, + [2579] = {.lex_state = 110, .external_lex_state = 3}, + [2580] = {.lex_state = 344, .external_lex_state = 6}, + [2581] = {.lex_state = 110, .external_lex_state = 3}, + [2582] = {.lex_state = 344, .external_lex_state = 6}, + [2583] = {.lex_state = 347, .external_lex_state = 3}, + [2584] = {.lex_state = 347, .external_lex_state = 3}, + [2585] = {.lex_state = 110, .external_lex_state = 3}, + [2586] = {.lex_state = 110, .external_lex_state = 3}, + [2587] = {.lex_state = 356}, + [2588] = {.lex_state = 103, .external_lex_state = 3}, + [2589] = {.lex_state = 347, .external_lex_state = 3}, + [2590] = {.lex_state = 109, .external_lex_state = 3}, + [2591] = {.lex_state = 347, .external_lex_state = 3}, + [2592] = {.lex_state = 354, .external_lex_state = 2}, + [2593] = {.lex_state = 110, .external_lex_state = 3}, + [2594] = {.lex_state = 109, .external_lex_state = 3}, + [2595] = {.lex_state = 347, .external_lex_state = 3}, + [2596] = {.lex_state = 109, .external_lex_state = 3}, + [2597] = {.lex_state = 110, .external_lex_state = 3}, + [2598] = {.lex_state = 110, .external_lex_state = 3}, + [2599] = {.lex_state = 109, .external_lex_state = 3}, + [2600] = {.lex_state = 103, .external_lex_state = 3}, + [2601] = {.lex_state = 110, .external_lex_state = 3}, + [2602] = {.lex_state = 110, .external_lex_state = 3}, + [2603] = {.lex_state = 109, .external_lex_state = 3}, + [2604] = {.lex_state = 354, .external_lex_state = 2}, + [2605] = {.lex_state = 103, .external_lex_state = 3}, + [2606] = {.lex_state = 103, .external_lex_state = 3}, + [2607] = {.lex_state = 356}, + [2608] = {.lex_state = 347, .external_lex_state = 3}, + [2609] = {.lex_state = 347, .external_lex_state = 3}, + [2610] = {.lex_state = 344, .external_lex_state = 6}, + [2611] = {.lex_state = 344, .external_lex_state = 6}, + [2612] = {.lex_state = 344, .external_lex_state = 6}, + [2613] = {.lex_state = 344, .external_lex_state = 6}, + [2614] = {.lex_state = 344, .external_lex_state = 6}, + [2615] = {.lex_state = 149}, + [2616] = {.lex_state = 354, .external_lex_state = 2}, + [2617] = {.lex_state = 103, .external_lex_state = 3}, + [2618] = {.lex_state = 103, .external_lex_state = 3}, + [2619] = {.lex_state = 103, .external_lex_state = 3}, + [2620] = {.lex_state = 354, .external_lex_state = 2}, + [2621] = {.lex_state = 347, .external_lex_state = 3}, + [2622] = {.lex_state = 347, .external_lex_state = 3}, + [2623] = {.lex_state = 347, .external_lex_state = 3}, + [2624] = {.lex_state = 103, .external_lex_state = 3}, + [2625] = {.lex_state = 344, .external_lex_state = 6}, + [2626] = {.lex_state = 344, .external_lex_state = 6}, + [2627] = {.lex_state = 110, .external_lex_state = 3}, + [2628] = {.lex_state = 110, .external_lex_state = 3}, + [2629] = {.lex_state = 110, .external_lex_state = 3}, + [2630] = {.lex_state = 103, .external_lex_state = 3}, + [2631] = {.lex_state = 110, .external_lex_state = 3}, + [2632] = {.lex_state = 103, .external_lex_state = 3}, + [2633] = {.lex_state = 103, .external_lex_state = 3}, + [2634] = {.lex_state = 347, .external_lex_state = 3}, + [2635] = {.lex_state = 110, .external_lex_state = 3}, + [2636] = {.lex_state = 110, .external_lex_state = 3}, + [2637] = {.lex_state = 347, .external_lex_state = 3}, + [2638] = {.lex_state = 356}, + [2639] = {.lex_state = 347, .external_lex_state = 3}, + [2640] = {.lex_state = 347, .external_lex_state = 3}, + [2641] = {.lex_state = 109, .external_lex_state = 3}, + [2642] = {.lex_state = 347, .external_lex_state = 3}, + [2643] = {.lex_state = 344, .external_lex_state = 6}, + [2644] = {.lex_state = 354, .external_lex_state = 2}, + [2645] = {.lex_state = 344, .external_lex_state = 6}, + [2646] = {.lex_state = 110, .external_lex_state = 3}, + [2647] = {.lex_state = 344, .external_lex_state = 6}, + [2648] = {.lex_state = 344, .external_lex_state = 6}, + [2649] = {.lex_state = 103, .external_lex_state = 3}, + [2650] = {.lex_state = 109, .external_lex_state = 3}, + [2651] = {.lex_state = 356}, + [2652] = {.lex_state = 103, .external_lex_state = 3}, + [2653] = {.lex_state = 103, .external_lex_state = 3}, + [2654] = {.lex_state = 103, .external_lex_state = 3}, + [2655] = {.lex_state = 103, .external_lex_state = 3}, + [2656] = {.lex_state = 103, .external_lex_state = 3}, + [2657] = {.lex_state = 103, .external_lex_state = 3}, + [2658] = {.lex_state = 344, .external_lex_state = 6}, + [2659] = {.lex_state = 344, .external_lex_state = 6}, + [2660] = {.lex_state = 110, .external_lex_state = 3}, + [2661] = {.lex_state = 347, .external_lex_state = 3}, + [2662] = {.lex_state = 110, .external_lex_state = 3}, + [2663] = {.lex_state = 110, .external_lex_state = 3}, + [2664] = {.lex_state = 110, .external_lex_state = 3}, + [2665] = {.lex_state = 344, .external_lex_state = 6}, + [2666] = {.lex_state = 344, .external_lex_state = 6}, + [2667] = {.lex_state = 103, .external_lex_state = 3}, + [2668] = {.lex_state = 347, .external_lex_state = 3}, + [2669] = {.lex_state = 344, .external_lex_state = 6}, + [2670] = {.lex_state = 110, .external_lex_state = 3}, + [2671] = {.lex_state = 344, .external_lex_state = 6}, + [2672] = {.lex_state = 347, .external_lex_state = 3}, + [2673] = {.lex_state = 354, .external_lex_state = 7}, + [2674] = {.lex_state = 344, .external_lex_state = 6}, + [2675] = {.lex_state = 347, .external_lex_state = 3}, + [2676] = {.lex_state = 347, .external_lex_state = 3}, + [2677] = {.lex_state = 110, .external_lex_state = 3}, + [2678] = {.lex_state = 103, .external_lex_state = 3}, + [2679] = {.lex_state = 149}, + [2680] = {.lex_state = 344, .external_lex_state = 6}, + [2681] = {.lex_state = 157}, + [2682] = {.lex_state = 354, .external_lex_state = 7}, + [2683] = {.lex_state = 103, .external_lex_state = 3}, + [2684] = {.lex_state = 347, .external_lex_state = 3}, + [2685] = {.lex_state = 103, .external_lex_state = 3}, + [2686] = {.lex_state = 103, .external_lex_state = 3}, + [2687] = {.lex_state = 103, .external_lex_state = 3}, + [2688] = {.lex_state = 103, .external_lex_state = 3}, + [2689] = {.lex_state = 103, .external_lex_state = 3}, + [2690] = {.lex_state = 356}, + [2691] = {.lex_state = 347, .external_lex_state = 3}, + [2692] = {.lex_state = 110, .external_lex_state = 3}, + [2693] = {.lex_state = 110, .external_lex_state = 3}, + [2694] = {.lex_state = 103, .external_lex_state = 3}, + [2695] = {.lex_state = 110, .external_lex_state = 3}, + [2696] = {.lex_state = 110, .external_lex_state = 3}, + [2697] = {.lex_state = 103, .external_lex_state = 3}, + [2698] = {.lex_state = 149}, + [2699] = {.lex_state = 110, .external_lex_state = 3}, + [2700] = {.lex_state = 103, .external_lex_state = 3}, + [2701] = {.lex_state = 103, .external_lex_state = 3}, + [2702] = {.lex_state = 103, .external_lex_state = 3}, + [2703] = {.lex_state = 103, .external_lex_state = 3}, + [2704] = {.lex_state = 103, .external_lex_state = 3}, + [2705] = {.lex_state = 103, .external_lex_state = 3}, + [2706] = {.lex_state = 103, .external_lex_state = 3}, + [2707] = {.lex_state = 347, .external_lex_state = 3}, + [2708] = {.lex_state = 110, .external_lex_state = 3}, + [2709] = {.lex_state = 110, .external_lex_state = 3}, + [2710] = {.lex_state = 110, .external_lex_state = 3}, + [2711] = {.lex_state = 347, .external_lex_state = 3}, + [2712] = {.lex_state = 356}, + [2713] = {.lex_state = 110, .external_lex_state = 3}, + [2714] = {.lex_state = 103, .external_lex_state = 3}, + [2715] = {.lex_state = 356}, + [2716] = {.lex_state = 356}, + [2717] = {.lex_state = 344, .external_lex_state = 6}, + [2718] = {.lex_state = 103, .external_lex_state = 3}, + [2719] = {.lex_state = 344, .external_lex_state = 6}, + [2720] = {.lex_state = 347, .external_lex_state = 3}, + [2721] = {.lex_state = 103, .external_lex_state = 3}, + [2722] = {.lex_state = 103, .external_lex_state = 3}, + [2723] = {.lex_state = 110, .external_lex_state = 3}, + [2724] = {.lex_state = 103, .external_lex_state = 3}, + [2725] = {.lex_state = 103, .external_lex_state = 3}, + [2726] = {.lex_state = 103, .external_lex_state = 3}, + [2727] = {.lex_state = 110, .external_lex_state = 3}, + [2728] = {.lex_state = 356}, + [2729] = {.lex_state = 356}, + [2730] = {.lex_state = 356}, + [2731] = {.lex_state = 347, .external_lex_state = 3}, + [2732] = {.lex_state = 103, .external_lex_state = 3}, + [2733] = {.lex_state = 347, .external_lex_state = 3}, + [2734] = {.lex_state = 110, .external_lex_state = 3}, + [2735] = {.lex_state = 109, .external_lex_state = 3}, + [2736] = {.lex_state = 164}, + [2737] = {.lex_state = 103, .external_lex_state = 3}, + [2738] = {.lex_state = 103, .external_lex_state = 3}, + [2739] = {.lex_state = 354, .external_lex_state = 7}, + [2740] = {.lex_state = 109, .external_lex_state = 3}, + [2741] = {.lex_state = 103, .external_lex_state = 3}, + [2742] = {.lex_state = 109, .external_lex_state = 3}, + [2743] = {.lex_state = 347, .external_lex_state = 3}, + [2744] = {.lex_state = 344, .external_lex_state = 6}, + [2745] = {.lex_state = 109, .external_lex_state = 3}, + [2746] = {.lex_state = 109, .external_lex_state = 3}, + [2747] = {.lex_state = 109, .external_lex_state = 3}, + [2748] = {.lex_state = 103, .external_lex_state = 3}, + [2749] = {.lex_state = 103, .external_lex_state = 3}, + [2750] = {.lex_state = 109, .external_lex_state = 3}, + [2751] = {.lex_state = 347, .external_lex_state = 3}, + [2752] = {.lex_state = 103, .external_lex_state = 3}, + [2753] = {.lex_state = 347, .external_lex_state = 3}, + [2754] = {.lex_state = 356}, + [2755] = {.lex_state = 103, .external_lex_state = 3}, + [2756] = {.lex_state = 103, .external_lex_state = 3}, + [2757] = {.lex_state = 103, .external_lex_state = 3}, + [2758] = {.lex_state = 103, .external_lex_state = 3}, + [2759] = {.lex_state = 103, .external_lex_state = 3}, + [2760] = {.lex_state = 103, .external_lex_state = 3}, + [2761] = {.lex_state = 347, .external_lex_state = 3}, + [2762] = {.lex_state = 354, .external_lex_state = 7}, + [2763] = {.lex_state = 347, .external_lex_state = 3}, + [2764] = {.lex_state = 356}, + [2765] = {.lex_state = 347, .external_lex_state = 3}, + [2766] = {.lex_state = 109, .external_lex_state = 3}, + [2767] = {.lex_state = 347, .external_lex_state = 3}, + [2768] = {.lex_state = 356}, + [2769] = {.lex_state = 347, .external_lex_state = 3}, + [2770] = {.lex_state = 347, .external_lex_state = 3}, + [2771] = {.lex_state = 110, .external_lex_state = 3}, + [2772] = {.lex_state = 103, .external_lex_state = 3}, + [2773] = {.lex_state = 103, .external_lex_state = 3}, + [2774] = {.lex_state = 103, .external_lex_state = 3}, + [2775] = {.lex_state = 103, .external_lex_state = 3}, + [2776] = {.lex_state = 103, .external_lex_state = 3}, + [2777] = {.lex_state = 109, .external_lex_state = 3}, + [2778] = {.lex_state = 109, .external_lex_state = 3}, + [2779] = {.lex_state = 109, .external_lex_state = 3}, + [2780] = {.lex_state = 356}, + [2781] = {.lex_state = 354, .external_lex_state = 7}, + [2782] = {.lex_state = 354, .external_lex_state = 7}, + [2783] = {.lex_state = 149}, + [2784] = {.lex_state = 356}, + [2785] = {.lex_state = 356}, + [2786] = {.lex_state = 354, .external_lex_state = 2}, + [2787] = {.lex_state = 353, .external_lex_state = 2}, + [2788] = {.lex_state = 356}, + [2789] = {.lex_state = 354, .external_lex_state = 2}, + [2790] = {.lex_state = 354, .external_lex_state = 2}, + [2791] = {.lex_state = 354, .external_lex_state = 7}, + [2792] = {.lex_state = 356}, + [2793] = {.lex_state = 356}, + [2794] = {.lex_state = 356}, + [2795] = {.lex_state = 356}, + [2796] = {.lex_state = 354, .external_lex_state = 7}, + [2797] = {.lex_state = 164}, + [2798] = {.lex_state = 354, .external_lex_state = 2}, + [2799] = {.lex_state = 356}, + [2800] = {.lex_state = 354, .external_lex_state = 2}, + [2801] = {.lex_state = 354, .external_lex_state = 2}, + [2802] = {.lex_state = 356}, + [2803] = {.lex_state = 354, .external_lex_state = 2}, + [2804] = {.lex_state = 356}, + [2805] = {.lex_state = 354, .external_lex_state = 7}, + [2806] = {.lex_state = 354, .external_lex_state = 2}, + [2807] = {.lex_state = 354, .external_lex_state = 2}, + [2808] = {.lex_state = 356}, + [2809] = {.lex_state = 356}, + [2810] = {.lex_state = 356}, + [2811] = {.lex_state = 356}, + [2812] = {.lex_state = 353, .external_lex_state = 2}, + [2813] = {.lex_state = 356}, + [2814] = {.lex_state = 356}, + [2815] = {.lex_state = 356}, + [2816] = {.lex_state = 356}, + [2817] = {.lex_state = 353, .external_lex_state = 2}, + [2818] = {.lex_state = 354, .external_lex_state = 7}, + [2819] = {.lex_state = 354, .external_lex_state = 7}, + [2820] = {.lex_state = 354, .external_lex_state = 2}, + [2821] = {.lex_state = 354, .external_lex_state = 7}, + [2822] = {.lex_state = 354, .external_lex_state = 7}, + [2823] = {.lex_state = 354, .external_lex_state = 7}, + [2824] = {.lex_state = 354, .external_lex_state = 2}, + [2825] = {.lex_state = 354, .external_lex_state = 7}, + [2826] = {.lex_state = 354, .external_lex_state = 2}, + [2827] = {.lex_state = 354, .external_lex_state = 2}, + [2828] = {.lex_state = 354, .external_lex_state = 7}, + [2829] = {.lex_state = 354, .external_lex_state = 7}, + [2830] = {.lex_state = 354, .external_lex_state = 2}, + [2831] = {.lex_state = 354, .external_lex_state = 7}, + [2832] = {.lex_state = 354, .external_lex_state = 2}, + [2833] = {.lex_state = 354, .external_lex_state = 7}, + [2834] = {.lex_state = 354, .external_lex_state = 7}, + [2835] = {.lex_state = 353, .external_lex_state = 7}, + [2836] = {.lex_state = 354, .external_lex_state = 2}, + [2837] = {.lex_state = 354, .external_lex_state = 2}, + [2838] = {.lex_state = 353, .external_lex_state = 7}, + [2839] = {.lex_state = 354, .external_lex_state = 2}, + [2840] = {.lex_state = 354, .external_lex_state = 7}, + [2841] = {.lex_state = 354, .external_lex_state = 2}, + [2842] = {.lex_state = 354, .external_lex_state = 2}, + [2843] = {.lex_state = 354, .external_lex_state = 2}, + [2844] = {.lex_state = 354, .external_lex_state = 7}, + [2845] = {.lex_state = 353, .external_lex_state = 7}, + [2846] = {.lex_state = 354, .external_lex_state = 7}, + [2847] = {.lex_state = 354, .external_lex_state = 7}, + [2848] = {.lex_state = 354, .external_lex_state = 7}, + [2849] = {.lex_state = 354, .external_lex_state = 7}, + [2850] = {.lex_state = 354, .external_lex_state = 7}, + [2851] = {.lex_state = 354, .external_lex_state = 7}, + [2852] = {.lex_state = 354, .external_lex_state = 7}, + [2853] = {.lex_state = 354, .external_lex_state = 7}, + [2854] = {.lex_state = 354, .external_lex_state = 7}, + [2855] = {.lex_state = 354, .external_lex_state = 7}, + [2856] = {.lex_state = 354, .external_lex_state = 7}, + [2857] = {.lex_state = 356}, + [2858] = {.lex_state = 356}, + [2859] = {.lex_state = 356}, + [2860] = {.lex_state = 356}, + [2861] = {.lex_state = 356}, + [2862] = {.lex_state = 356}, + [2863] = {.lex_state = 356}, + [2864] = {.lex_state = 356}, + [2865] = {.lex_state = 356}, + [2866] = {.lex_state = 356}, + [2867] = {.lex_state = 356}, + [2868] = {.lex_state = 356}, + [2869] = {.lex_state = 356}, + [2870] = {.lex_state = 356}, + [2871] = {.lex_state = 356}, + [2872] = {.lex_state = 356}, + [2873] = {.lex_state = 356}, + [2874] = {.lex_state = 356}, + [2875] = {.lex_state = 356}, + [2876] = {.lex_state = 356}, + [2877] = {.lex_state = 356}, + [2878] = {.lex_state = 356}, + [2879] = {.lex_state = 356}, + [2880] = {.lex_state = 356}, + [2881] = {.lex_state = 356}, + [2882] = {.lex_state = 356}, + [2883] = {.lex_state = 356}, + [2884] = {.lex_state = 356}, + [2885] = {.lex_state = 356}, + [2886] = {.lex_state = 356}, + [2887] = {.lex_state = 356}, + [2888] = {.lex_state = 356}, + [2889] = {.lex_state = 356}, + [2890] = {.lex_state = 354, .external_lex_state = 2}, + [2891] = {.lex_state = 356}, + [2892] = {.lex_state = 356}, + [2893] = {.lex_state = 356}, + [2894] = {.lex_state = 356}, + [2895] = {.lex_state = 356}, + [2896] = {.lex_state = 356}, + [2897] = {.lex_state = 356}, + [2898] = {.lex_state = 356}, + [2899] = {.lex_state = 356}, + [2900] = {.lex_state = 356}, + [2901] = {.lex_state = 356}, + [2902] = {.lex_state = 356}, + [2903] = {.lex_state = 356}, + [2904] = {.lex_state = 356}, + [2905] = {.lex_state = 356}, + [2906] = {.lex_state = 356}, + [2907] = {.lex_state = 356}, + [2908] = {.lex_state = 356}, + [2909] = {.lex_state = 356}, + [2910] = {.lex_state = 356}, + [2911] = {.lex_state = 356}, + [2912] = {.lex_state = 356}, + [2913] = {.lex_state = 356}, + [2914] = {.lex_state = 356}, + [2915] = {.lex_state = 356}, + [2916] = {.lex_state = 356}, + [2917] = {.lex_state = 356}, + [2918] = {.lex_state = 356}, + [2919] = {.lex_state = 356}, + [2920] = {.lex_state = 356}, + [2921] = {.lex_state = 356}, + [2922] = {.lex_state = 356}, + [2923] = {.lex_state = 356}, + [2924] = {.lex_state = 356}, + [2925] = {.lex_state = 356}, + [2926] = {.lex_state = 356}, + [2927] = {.lex_state = 356}, + [2928] = {.lex_state = 356}, + [2929] = {.lex_state = 356}, + [2930] = {.lex_state = 356}, + [2931] = {.lex_state = 356}, + [2932] = {.lex_state = 356}, + [2933] = {.lex_state = 356}, + [2934] = {.lex_state = 356}, + [2935] = {.lex_state = 356}, + [2936] = {.lex_state = 356}, + [2937] = {.lex_state = 356}, + [2938] = {.lex_state = 356}, + [2939] = {.lex_state = 356}, + [2940] = {.lex_state = 356}, + [2941] = {.lex_state = 356}, + [2942] = {.lex_state = 356}, + [2943] = {.lex_state = 356}, + [2944] = {.lex_state = 356}, + [2945] = {.lex_state = 356}, + [2946] = {.lex_state = 356}, + [2947] = {.lex_state = 356}, + [2948] = {.lex_state = 356}, + [2949] = {.lex_state = 356}, + [2950] = {.lex_state = 356}, + [2951] = {.lex_state = 356}, + [2952] = {.lex_state = 356}, + [2953] = {.lex_state = 356}, + [2954] = {.lex_state = 356}, + [2955] = {.lex_state = 356}, + [2956] = {.lex_state = 356}, + [2957] = {.lex_state = 354, .external_lex_state = 7}, + [2958] = {.lex_state = 356}, + [2959] = {.lex_state = 356}, + [2960] = {.lex_state = 356}, + [2961] = {.lex_state = 356}, + [2962] = {.lex_state = 144, .external_lex_state = 2}, + [2963] = {.lex_state = 356}, + [2964] = {.lex_state = 356}, + [2965] = {.lex_state = 356}, + [2966] = {.lex_state = 356}, + [2967] = {.lex_state = 356}, + [2968] = {.lex_state = 356}, + [2969] = {.lex_state = 356}, + [2970] = {.lex_state = 353, .external_lex_state = 2}, + [2971] = {.lex_state = 356}, + [2972] = {.lex_state = 356}, + [2973] = {.lex_state = 356}, + [2974] = {.lex_state = 353, .external_lex_state = 2}, + [2975] = {.lex_state = 356}, + [2976] = {.lex_state = 353, .external_lex_state = 2}, + [2977] = {.lex_state = 353, .external_lex_state = 2}, + [2978] = {.lex_state = 356}, + [2979] = {.lex_state = 356}, + [2980] = {.lex_state = 356}, + [2981] = {.lex_state = 356}, + [2982] = {.lex_state = 353, .external_lex_state = 2}, + [2983] = {.lex_state = 356}, + [2984] = {.lex_state = 356}, + [2985] = {.lex_state = 356}, + [2986] = {.lex_state = 356}, + [2987] = {.lex_state = 356}, + [2988] = {.lex_state = 356}, + [2989] = {.lex_state = 356}, + [2990] = {.lex_state = 356}, + [2991] = {.lex_state = 356}, + [2992] = {.lex_state = 356}, + [2993] = {.lex_state = 356}, + [2994] = {.lex_state = 356}, + [2995] = {.lex_state = 356}, + [2996] = {.lex_state = 356}, + [2997] = {.lex_state = 356}, + [2998] = {.lex_state = 356}, + [2999] = {.lex_state = 356}, + [3000] = {.lex_state = 356}, + [3001] = {.lex_state = 356}, + [3002] = {.lex_state = 353, .external_lex_state = 2}, + [3003] = {.lex_state = 356}, + [3004] = {.lex_state = 356}, + [3005] = {.lex_state = 356}, + [3006] = {.lex_state = 356}, + [3007] = {.lex_state = 356}, + [3008] = {.lex_state = 356}, + [3009] = {.lex_state = 353, .external_lex_state = 2}, + [3010] = {.lex_state = 356}, + [3011] = {.lex_state = 356}, + [3012] = {.lex_state = 356}, + [3013] = {.lex_state = 353, .external_lex_state = 2}, + [3014] = {.lex_state = 353, .external_lex_state = 2}, + [3015] = {.lex_state = 356}, + [3016] = {.lex_state = 356}, + [3017] = {.lex_state = 356}, + [3018] = {.lex_state = 356}, + [3019] = {.lex_state = 356}, + [3020] = {.lex_state = 356}, + [3021] = {.lex_state = 356}, + [3022] = {.lex_state = 356}, + [3023] = {.lex_state = 356}, + [3024] = {.lex_state = 356}, + [3025] = {.lex_state = 356}, + [3026] = {.lex_state = 356}, + [3027] = {.lex_state = 356}, + [3028] = {.lex_state = 356}, + [3029] = {.lex_state = 356}, + [3030] = {.lex_state = 356, .external_lex_state = 15}, + [3031] = {.lex_state = 356}, + [3032] = {.lex_state = 353, .external_lex_state = 2}, + [3033] = {.lex_state = 356}, + [3034] = {.lex_state = 356}, + [3035] = {.lex_state = 356}, + [3036] = {.lex_state = 356}, + [3037] = {.lex_state = 353, .external_lex_state = 2}, + [3038] = {.lex_state = 353, .external_lex_state = 2}, + [3039] = {.lex_state = 353, .external_lex_state = 2}, + [3040] = {.lex_state = 356}, + [3041] = {.lex_state = 356}, + [3042] = {.lex_state = 356}, + [3043] = {.lex_state = 356}, + [3044] = {.lex_state = 356}, + [3045] = {.lex_state = 356}, + [3046] = {.lex_state = 356}, + [3047] = {.lex_state = 356}, + [3048] = {.lex_state = 356}, + [3049] = {.lex_state = 356}, + [3050] = {.lex_state = 356}, + [3051] = {.lex_state = 356}, + [3052] = {.lex_state = 356}, + [3053] = {.lex_state = 356}, + [3054] = {.lex_state = 356}, + [3055] = {.lex_state = 353, .external_lex_state = 2}, + [3056] = {.lex_state = 353, .external_lex_state = 2}, + [3057] = {.lex_state = 356}, + [3058] = {.lex_state = 356}, + [3059] = {.lex_state = 356}, + [3060] = {.lex_state = 356}, + [3061] = {.lex_state = 356}, + [3062] = {.lex_state = 356}, + [3063] = {.lex_state = 356}, + [3064] = {.lex_state = 356}, + [3065] = {.lex_state = 356}, + [3066] = {.lex_state = 356}, + [3067] = {.lex_state = 356}, + [3068] = {.lex_state = 356}, + [3069] = {.lex_state = 356}, + [3070] = {.lex_state = 356}, + [3071] = {.lex_state = 356}, + [3072] = {.lex_state = 356}, + [3073] = {.lex_state = 356}, + [3074] = {.lex_state = 356}, + [3075] = {.lex_state = 353, .external_lex_state = 2}, + [3076] = {.lex_state = 356}, + [3077] = {.lex_state = 356}, + [3078] = {.lex_state = 356}, + [3079] = {.lex_state = 356}, + [3080] = {.lex_state = 356}, + [3081] = {.lex_state = 356}, + [3082] = {.lex_state = 356}, + [3083] = {.lex_state = 356}, + [3084] = {.lex_state = 356}, + [3085] = {.lex_state = 356}, + [3086] = {.lex_state = 356}, + [3087] = {.lex_state = 356}, + [3088] = {.lex_state = 356}, + [3089] = {.lex_state = 353, .external_lex_state = 2}, + [3090] = {.lex_state = 356}, + [3091] = {.lex_state = 356}, + [3092] = {.lex_state = 353, .external_lex_state = 2}, + [3093] = {.lex_state = 356}, + [3094] = {.lex_state = 353, .external_lex_state = 2}, + [3095] = {.lex_state = 356}, + [3096] = {.lex_state = 356}, + [3097] = {.lex_state = 356}, + [3098] = {.lex_state = 356}, + [3099] = {.lex_state = 356}, + [3100] = {.lex_state = 356}, + [3101] = {.lex_state = 356}, + [3102] = {.lex_state = 356}, + [3103] = {.lex_state = 356}, + [3104] = {.lex_state = 356}, + [3105] = {.lex_state = 356}, + [3106] = {.lex_state = 356}, + [3107] = {.lex_state = 356}, + [3108] = {.lex_state = 356}, + [3109] = {.lex_state = 356}, + [3110] = {.lex_state = 356}, + [3111] = {.lex_state = 356}, + [3112] = {.lex_state = 356}, + [3113] = {.lex_state = 356}, + [3114] = {.lex_state = 356}, + [3115] = {.lex_state = 356}, + [3116] = {.lex_state = 356}, + [3117] = {.lex_state = 356}, + [3118] = {.lex_state = 356}, + [3119] = {.lex_state = 356}, + [3120] = {.lex_state = 356}, + [3121] = {.lex_state = 356}, + [3122] = {.lex_state = 356}, + [3123] = {.lex_state = 356}, + [3124] = {.lex_state = 356}, + [3125] = {.lex_state = 356}, + [3126] = {.lex_state = 356}, + [3127] = {.lex_state = 356}, + [3128] = {.lex_state = 356}, + [3129] = {.lex_state = 356}, + [3130] = {.lex_state = 353, .external_lex_state = 2}, + [3131] = {.lex_state = 356}, + [3132] = {.lex_state = 353, .external_lex_state = 2}, + [3133] = {.lex_state = 356}, + [3134] = {.lex_state = 353, .external_lex_state = 2}, + [3135] = {.lex_state = 356}, + [3136] = {.lex_state = 356}, + [3137] = {.lex_state = 356}, + [3138] = {.lex_state = 356}, + [3139] = {.lex_state = 356}, + [3140] = {.lex_state = 353, .external_lex_state = 2}, + [3141] = {.lex_state = 356}, + [3142] = {.lex_state = 356}, + [3143] = {.lex_state = 356}, + [3144] = {.lex_state = 356}, + [3145] = {.lex_state = 356}, + [3146] = {.lex_state = 356}, + [3147] = {.lex_state = 356}, + [3148] = {.lex_state = 353, .external_lex_state = 7}, + [3149] = {.lex_state = 353, .external_lex_state = 2}, + [3150] = {.lex_state = 356}, + [3151] = {.lex_state = 356}, + [3152] = {.lex_state = 353, .external_lex_state = 7}, + [3153] = {.lex_state = 356}, + [3154] = {.lex_state = 145, .external_lex_state = 2}, + [3155] = {.lex_state = 353, .external_lex_state = 2}, + [3156] = {.lex_state = 356}, + [3157] = {.lex_state = 356}, + [3158] = {.lex_state = 356}, + [3159] = {.lex_state = 356}, + [3160] = {.lex_state = 356}, + [3161] = {.lex_state = 356}, + [3162] = {.lex_state = 356}, + [3163] = {.lex_state = 356}, + [3164] = {.lex_state = 353, .external_lex_state = 2}, + [3165] = {.lex_state = 356}, + [3166] = {.lex_state = 356}, + [3167] = {.lex_state = 356}, + [3168] = {.lex_state = 356}, + [3169] = {.lex_state = 356}, + [3170] = {.lex_state = 356}, + [3171] = {.lex_state = 356}, + [3172] = {.lex_state = 356}, + [3173] = {.lex_state = 353, .external_lex_state = 2}, + [3174] = {.lex_state = 356}, + [3175] = {.lex_state = 353, .external_lex_state = 7}, + [3176] = {.lex_state = 356}, + [3177] = {.lex_state = 356}, + [3178] = {.lex_state = 356}, + [3179] = {.lex_state = 356}, + [3180] = {.lex_state = 353, .external_lex_state = 7}, + [3181] = {.lex_state = 356}, + [3182] = {.lex_state = 356}, + [3183] = {.lex_state = 353, .external_lex_state = 7}, + [3184] = {.lex_state = 353, .external_lex_state = 7}, + [3185] = {.lex_state = 356}, + [3186] = {.lex_state = 353, .external_lex_state = 7}, + [3187] = {.lex_state = 356}, + [3188] = {.lex_state = 353, .external_lex_state = 7}, + [3189] = {.lex_state = 356}, + [3190] = {.lex_state = 353, .external_lex_state = 7}, + [3191] = {.lex_state = 353, .external_lex_state = 7}, + [3192] = {.lex_state = 353, .external_lex_state = 7}, + [3193] = {.lex_state = 353, .external_lex_state = 7}, + [3194] = {.lex_state = 353, .external_lex_state = 7}, + [3195] = {.lex_state = 353, .external_lex_state = 7}, + [3196] = {.lex_state = 353, .external_lex_state = 7}, + [3197] = {.lex_state = 353, .external_lex_state = 7}, + [3198] = {.lex_state = 353, .external_lex_state = 7}, + [3199] = {.lex_state = 353, .external_lex_state = 7}, + [3200] = {.lex_state = 353, .external_lex_state = 7}, + [3201] = {.lex_state = 353, .external_lex_state = 7}, + [3202] = {.lex_state = 353, .external_lex_state = 7}, + [3203] = {.lex_state = 353, .external_lex_state = 7}, + [3204] = {.lex_state = 353, .external_lex_state = 7}, + [3205] = {.lex_state = 353, .external_lex_state = 7}, + [3206] = {.lex_state = 353, .external_lex_state = 7}, + [3207] = {.lex_state = 353, .external_lex_state = 7}, + [3208] = {.lex_state = 353, .external_lex_state = 7}, + [3209] = {.lex_state = 353, .external_lex_state = 2}, + [3210] = {.lex_state = 353, .external_lex_state = 2}, + [3211] = {.lex_state = 353, .external_lex_state = 2}, + [3212] = {.lex_state = 353, .external_lex_state = 2}, + [3213] = {.lex_state = 353, .external_lex_state = 2}, + [3214] = {.lex_state = 353, .external_lex_state = 2}, + [3215] = {.lex_state = 353, .external_lex_state = 7}, + [3216] = {.lex_state = 353, .external_lex_state = 7}, + [3217] = {.lex_state = 353, .external_lex_state = 7}, + [3218] = {.lex_state = 353, .external_lex_state = 7}, + [3219] = {.lex_state = 353, .external_lex_state = 7}, + [3220] = {.lex_state = 353, .external_lex_state = 2}, + [3221] = {.lex_state = 143, .external_lex_state = 2}, + [3222] = {.lex_state = 354, .external_lex_state = 3}, + [3223] = {.lex_state = 143, .external_lex_state = 2}, + [3224] = {.lex_state = 353, .external_lex_state = 7}, + [3225] = {.lex_state = 143, .external_lex_state = 2}, + [3226] = {.lex_state = 353, .external_lex_state = 7}, + [3227] = {.lex_state = 143, .external_lex_state = 2}, + [3228] = {.lex_state = 143, .external_lex_state = 2}, + [3229] = {.lex_state = 143, .external_lex_state = 2}, + [3230] = {.lex_state = 143, .external_lex_state = 2}, + [3231] = {.lex_state = 354, .external_lex_state = 3}, + [3232] = {.lex_state = 354, .external_lex_state = 3}, + [3233] = {.lex_state = 354, .external_lex_state = 3}, + [3234] = {.lex_state = 354, .external_lex_state = 3}, + [3235] = {.lex_state = 354, .external_lex_state = 3}, + [3236] = {.lex_state = 354, .external_lex_state = 3}, + [3237] = {.lex_state = 355, .external_lex_state = 2}, + [3238] = {.lex_state = 354, .external_lex_state = 7}, + [3239] = {.lex_state = 353, .external_lex_state = 2}, + [3240] = {.lex_state = 354, .external_lex_state = 3}, + [3241] = {.lex_state = 353, .external_lex_state = 2}, + [3242] = {.lex_state = 143, .external_lex_state = 2}, + [3243] = {.lex_state = 355, .external_lex_state = 2}, + [3244] = {.lex_state = 149}, + [3245] = {.lex_state = 355, .external_lex_state = 2}, + [3246] = {.lex_state = 354, .external_lex_state = 3}, + [3247] = {.lex_state = 354, .external_lex_state = 7}, + [3248] = {.lex_state = 143, .external_lex_state = 2}, + [3249] = {.lex_state = 353, .external_lex_state = 2}, + [3250] = {.lex_state = 354, .external_lex_state = 7}, + [3251] = {.lex_state = 354, .external_lex_state = 3}, + [3252] = {.lex_state = 149}, + [3253] = {.lex_state = 354, .external_lex_state = 7}, + [3254] = {.lex_state = 353, .external_lex_state = 2}, + [3255] = {.lex_state = 354, .external_lex_state = 7}, + [3256] = {.lex_state = 143, .external_lex_state = 2}, + [3257] = {.lex_state = 355, .external_lex_state = 2}, + [3258] = {.lex_state = 354, .external_lex_state = 7}, + [3259] = {.lex_state = 143, .external_lex_state = 2}, + [3260] = {.lex_state = 354, .external_lex_state = 7}, + [3261] = {.lex_state = 355, .external_lex_state = 2}, + [3262] = {.lex_state = 355, .external_lex_state = 2}, + [3263] = {.lex_state = 354, .external_lex_state = 3}, + [3264] = {.lex_state = 355, .external_lex_state = 2}, + [3265] = {.lex_state = 353, .external_lex_state = 2}, + [3266] = {.lex_state = 353, .external_lex_state = 2}, + [3267] = {.lex_state = 143, .external_lex_state = 2}, + [3268] = {.lex_state = 354, .external_lex_state = 3}, + [3269] = {.lex_state = 353, .external_lex_state = 2}, + [3270] = {.lex_state = 353, .external_lex_state = 2}, + [3271] = {.lex_state = 354, .external_lex_state = 2}, + [3272] = {.lex_state = 143, .external_lex_state = 2}, + [3273] = {.lex_state = 354, .external_lex_state = 7}, + [3274] = {.lex_state = 354, .external_lex_state = 7}, + [3275] = {.lex_state = 353, .external_lex_state = 7}, + [3276] = {.lex_state = 355, .external_lex_state = 2}, + [3277] = {.lex_state = 354, .external_lex_state = 3}, + [3278] = {.lex_state = 354, .external_lex_state = 2}, + [3279] = {.lex_state = 355, .external_lex_state = 7}, + [3280] = {.lex_state = 353, .external_lex_state = 2}, + [3281] = {.lex_state = 354, .external_lex_state = 7}, + [3282] = {.lex_state = 353, .external_lex_state = 2}, + [3283] = {.lex_state = 353, .external_lex_state = 2}, + [3284] = {.lex_state = 143, .external_lex_state = 2}, + [3285] = {.lex_state = 354, .external_lex_state = 7}, + [3286] = {.lex_state = 354, .external_lex_state = 2}, + [3287] = {.lex_state = 353, .external_lex_state = 2}, + [3288] = {.lex_state = 353, .external_lex_state = 2}, + [3289] = {.lex_state = 353, .external_lex_state = 7}, + [3290] = {.lex_state = 143, .external_lex_state = 2}, + [3291] = {.lex_state = 354, .external_lex_state = 3}, + [3292] = {.lex_state = 354, .external_lex_state = 3}, + [3293] = {.lex_state = 143, .external_lex_state = 2}, + [3294] = {.lex_state = 353, .external_lex_state = 2}, + [3295] = {.lex_state = 354, .external_lex_state = 7}, + [3296] = {.lex_state = 353, .external_lex_state = 2}, + [3297] = {.lex_state = 355, .external_lex_state = 7}, + [3298] = {.lex_state = 353, .external_lex_state = 2}, + [3299] = {.lex_state = 353, .external_lex_state = 7}, + [3300] = {.lex_state = 354, .external_lex_state = 3}, + [3301] = {.lex_state = 354, .external_lex_state = 2}, + [3302] = {.lex_state = 143, .external_lex_state = 2}, + [3303] = {.lex_state = 353, .external_lex_state = 2}, + [3304] = {.lex_state = 353, .external_lex_state = 2}, + [3305] = {.lex_state = 355, .external_lex_state = 7}, + [3306] = {.lex_state = 353, .external_lex_state = 7}, + [3307] = {.lex_state = 353, .external_lex_state = 2}, + [3308] = {.lex_state = 353, .external_lex_state = 2}, + [3309] = {.lex_state = 353, .external_lex_state = 7}, + [3310] = {.lex_state = 353, .external_lex_state = 2}, + [3311] = {.lex_state = 353, .external_lex_state = 2}, + [3312] = {.lex_state = 354, .external_lex_state = 2}, + [3313] = {.lex_state = 354, .external_lex_state = 3}, + [3314] = {.lex_state = 353, .external_lex_state = 2}, + [3315] = {.lex_state = 353, .external_lex_state = 2}, + [3316] = {.lex_state = 354, .external_lex_state = 2}, + [3317] = {.lex_state = 354, .external_lex_state = 2}, + [3318] = {.lex_state = 353, .external_lex_state = 7}, + [3319] = {.lex_state = 353, .external_lex_state = 2}, + [3320] = {.lex_state = 187}, + [3321] = {.lex_state = 187}, + [3322] = {.lex_state = 354, .external_lex_state = 2}, + [3323] = {.lex_state = 187}, + [3324] = {.lex_state = 187}, + [3325] = {.lex_state = 354, .external_lex_state = 3}, + [3326] = {.lex_state = 353, .external_lex_state = 2}, + [3327] = {.lex_state = 353, .external_lex_state = 7}, + [3328] = {.lex_state = 187}, + [3329] = {.lex_state = 353, .external_lex_state = 7}, + [3330] = {.lex_state = 353, .external_lex_state = 2}, + [3331] = {.lex_state = 354, .external_lex_state = 3}, + [3332] = {.lex_state = 354, .external_lex_state = 2}, + [3333] = {.lex_state = 353, .external_lex_state = 7}, + [3334] = {.lex_state = 354, .external_lex_state = 7}, + [3335] = {.lex_state = 355, .external_lex_state = 7}, + [3336] = {.lex_state = 353, .external_lex_state = 2}, + [3337] = {.lex_state = 187}, + [3338] = {.lex_state = 354, .external_lex_state = 3}, + [3339] = {.lex_state = 187}, + [3340] = {.lex_state = 187}, + [3341] = {.lex_state = 187}, + [3342] = {.lex_state = 143, .external_lex_state = 2}, + [3343] = {.lex_state = 187}, + [3344] = {.lex_state = 143, .external_lex_state = 2}, + [3345] = {.lex_state = 353, .external_lex_state = 2}, + [3346] = {.lex_state = 354, .external_lex_state = 3}, + [3347] = {.lex_state = 187}, + [3348] = {.lex_state = 354, .external_lex_state = 2}, + [3349] = {.lex_state = 187}, + [3350] = {.lex_state = 187}, + [3351] = {.lex_state = 353, .external_lex_state = 2}, + [3352] = {.lex_state = 143, .external_lex_state = 2}, + [3353] = {.lex_state = 353, .external_lex_state = 2}, + [3354] = {.lex_state = 187}, + [3355] = {.lex_state = 143, .external_lex_state = 2}, + [3356] = {.lex_state = 187}, + [3357] = {.lex_state = 353, .external_lex_state = 2}, + [3358] = {.lex_state = 187}, + [3359] = {.lex_state = 354, .external_lex_state = 3}, + [3360] = {.lex_state = 354, .external_lex_state = 3}, + [3361] = {.lex_state = 353, .external_lex_state = 2}, + [3362] = {.lex_state = 187}, + [3363] = {.lex_state = 143, .external_lex_state = 2}, + [3364] = {.lex_state = 353, .external_lex_state = 7}, + [3365] = {.lex_state = 353, .external_lex_state = 2}, + [3366] = {.lex_state = 354, .external_lex_state = 7}, + [3367] = {.lex_state = 354, .external_lex_state = 3}, + [3368] = {.lex_state = 187}, + [3369] = {.lex_state = 187}, + [3370] = {.lex_state = 353, .external_lex_state = 2}, + [3371] = {.lex_state = 353, .external_lex_state = 7}, + [3372] = {.lex_state = 354, .external_lex_state = 3}, + [3373] = {.lex_state = 353, .external_lex_state = 7}, + [3374] = {.lex_state = 187}, + [3375] = {.lex_state = 187}, + [3376] = {.lex_state = 353, .external_lex_state = 7}, + [3377] = {.lex_state = 143, .external_lex_state = 2}, + [3378] = {.lex_state = 353, .external_lex_state = 7}, + [3379] = {.lex_state = 143, .external_lex_state = 2}, + [3380] = {.lex_state = 353, .external_lex_state = 7}, + [3381] = {.lex_state = 187}, + [3382] = {.lex_state = 143, .external_lex_state = 2}, + [3383] = {.lex_state = 187}, + [3384] = {.lex_state = 143, .external_lex_state = 2}, + [3385] = {.lex_state = 354, .external_lex_state = 3}, + [3386] = {.lex_state = 354, .external_lex_state = 2}, + [3387] = {.lex_state = 353, .external_lex_state = 2}, + [3388] = {.lex_state = 353, .external_lex_state = 7}, + [3389] = {.lex_state = 353, .external_lex_state = 2}, + [3390] = {.lex_state = 187}, + [3391] = {.lex_state = 353, .external_lex_state = 2}, + [3392] = {.lex_state = 187}, + [3393] = {.lex_state = 353, .external_lex_state = 2}, + [3394] = {.lex_state = 187}, + [3395] = {.lex_state = 354, .external_lex_state = 2}, + [3396] = {.lex_state = 187}, + [3397] = {.lex_state = 353, .external_lex_state = 7}, + [3398] = {.lex_state = 353, .external_lex_state = 2}, + [3399] = {.lex_state = 187}, + [3400] = {.lex_state = 354, .external_lex_state = 7}, + [3401] = {.lex_state = 143, .external_lex_state = 2}, + [3402] = {.lex_state = 354, .external_lex_state = 3}, + [3403] = {.lex_state = 353, .external_lex_state = 7}, + [3404] = {.lex_state = 354, .external_lex_state = 3}, + [3405] = {.lex_state = 187}, + [3406] = {.lex_state = 187}, + [3407] = {.lex_state = 353, .external_lex_state = 7}, + [3408] = {.lex_state = 353, .external_lex_state = 7}, + [3409] = {.lex_state = 353, .external_lex_state = 7}, + [3410] = {.lex_state = 353, .external_lex_state = 7}, + [3411] = {.lex_state = 353, .external_lex_state = 7}, + [3412] = {.lex_state = 353, .external_lex_state = 7}, + [3413] = {.lex_state = 354, .external_lex_state = 7}, + [3414] = {.lex_state = 187}, + [3415] = {.lex_state = 187}, + [3416] = {.lex_state = 143, .external_lex_state = 2}, + [3417] = {.lex_state = 354, .external_lex_state = 7}, + [3418] = {.lex_state = 187}, + [3419] = {.lex_state = 353, .external_lex_state = 7}, + [3420] = {.lex_state = 353, .external_lex_state = 2}, + [3421] = {.lex_state = 353, .external_lex_state = 7}, + [3422] = {.lex_state = 353, .external_lex_state = 7}, + [3423] = {.lex_state = 353, .external_lex_state = 7}, + [3424] = {.lex_state = 353, .external_lex_state = 7}, + [3425] = {.lex_state = 353, .external_lex_state = 7}, + [3426] = {.lex_state = 353, .external_lex_state = 7}, + [3427] = {.lex_state = 353, .external_lex_state = 7}, + [3428] = {.lex_state = 354, .external_lex_state = 7}, + [3429] = {.lex_state = 146, .external_lex_state = 2}, + [3430] = {.lex_state = 354, .external_lex_state = 7}, + [3431] = {.lex_state = 354, .external_lex_state = 7}, + [3432] = {.lex_state = 354, .external_lex_state = 2}, + [3433] = {.lex_state = 354, .external_lex_state = 2}, + [3434] = {.lex_state = 353, .external_lex_state = 7}, + [3435] = {.lex_state = 353, .external_lex_state = 7}, + [3436] = {.lex_state = 353, .external_lex_state = 7}, + [3437] = {.lex_state = 354, .external_lex_state = 7}, + [3438] = {.lex_state = 354, .external_lex_state = 2}, + [3439] = {.lex_state = 353, .external_lex_state = 7}, + [3440] = {.lex_state = 354, .external_lex_state = 2}, + [3441] = {.lex_state = 354, .external_lex_state = 7}, + [3442] = {.lex_state = 354, .external_lex_state = 7}, + [3443] = {.lex_state = 354, .external_lex_state = 7}, + [3444] = {.lex_state = 353, .external_lex_state = 7}, + [3445] = {.lex_state = 354, .external_lex_state = 7}, + [3446] = {.lex_state = 354, .external_lex_state = 7}, + [3447] = {.lex_state = 353, .external_lex_state = 7}, + [3448] = {.lex_state = 353, .external_lex_state = 7}, + [3449] = {.lex_state = 354, .external_lex_state = 2}, + [3450] = {.lex_state = 354, .external_lex_state = 7}, + [3451] = {.lex_state = 187}, + [3452] = {.lex_state = 354, .external_lex_state = 7}, + [3453] = {.lex_state = 187}, + [3454] = {.lex_state = 353, .external_lex_state = 7}, + [3455] = {.lex_state = 353, .external_lex_state = 7}, + [3456] = {.lex_state = 187}, + [3457] = {.lex_state = 187}, + [3458] = {.lex_state = 147, .external_lex_state = 2}, + [3459] = {.lex_state = 354, .external_lex_state = 2}, + [3460] = {.lex_state = 147, .external_lex_state = 2}, + [3461] = {.lex_state = 147, .external_lex_state = 2}, + [3462] = {.lex_state = 138, .external_lex_state = 2}, + [3463] = {.lex_state = 147, .external_lex_state = 2}, + [3464] = {.lex_state = 354, .external_lex_state = 2}, + [3465] = {.lex_state = 138, .external_lex_state = 2}, + [3466] = {.lex_state = 354, .external_lex_state = 2}, + [3467] = {.lex_state = 353, .external_lex_state = 8}, + [3468] = {.lex_state = 354, .external_lex_state = 2}, + [3469] = {.lex_state = 354, .external_lex_state = 2}, + [3470] = {.lex_state = 138, .external_lex_state = 2}, + [3471] = {.lex_state = 354, .external_lex_state = 2}, + [3472] = {.lex_state = 354, .external_lex_state = 2}, + [3473] = {.lex_state = 353, .external_lex_state = 8}, + [3474] = {.lex_state = 354, .external_lex_state = 2}, + [3475] = {.lex_state = 354, .external_lex_state = 2}, + [3476] = {.lex_state = 354, .external_lex_state = 2}, + [3477] = {.lex_state = 187}, + [3478] = {.lex_state = 138, .external_lex_state = 2}, + [3479] = {.lex_state = 354, .external_lex_state = 2}, + [3480] = {.lex_state = 353, .external_lex_state = 8}, + [3481] = {.lex_state = 353, .external_lex_state = 8}, + [3482] = {.lex_state = 353, .external_lex_state = 8}, + [3483] = {.lex_state = 353, .external_lex_state = 8}, + [3484] = {.lex_state = 353, .external_lex_state = 9}, + [3485] = {.lex_state = 353, .external_lex_state = 9}, + [3486] = {.lex_state = 353, .external_lex_state = 9}, + [3487] = {.lex_state = 353, .external_lex_state = 8}, + [3488] = {.lex_state = 353, .external_lex_state = 2}, + [3489] = {.lex_state = 353, .external_lex_state = 2}, + [3490] = {.lex_state = 353, .external_lex_state = 2}, + [3491] = {.lex_state = 353, .external_lex_state = 8}, + [3492] = {.lex_state = 353, .external_lex_state = 2}, + [3493] = {.lex_state = 353, .external_lex_state = 2}, + [3494] = {.lex_state = 353, .external_lex_state = 9}, + [3495] = {.lex_state = 353, .external_lex_state = 8}, + [3496] = {.lex_state = 353, .external_lex_state = 2}, + [3497] = {.lex_state = 353, .external_lex_state = 2}, + [3498] = {.lex_state = 353, .external_lex_state = 2}, + [3499] = {.lex_state = 353, .external_lex_state = 2}, + [3500] = {.lex_state = 353, .external_lex_state = 2}, + [3501] = {.lex_state = 353, .external_lex_state = 2}, + [3502] = {.lex_state = 353, .external_lex_state = 2}, + [3503] = {.lex_state = 353, .external_lex_state = 2}, + [3504] = {.lex_state = 353, .external_lex_state = 9}, + [3505] = {.lex_state = 353, .external_lex_state = 2}, + [3506] = {.lex_state = 353, .external_lex_state = 2}, + [3507] = {.lex_state = 353, .external_lex_state = 2}, + [3508] = {.lex_state = 353, .external_lex_state = 9}, + [3509] = {.lex_state = 353, .external_lex_state = 2}, + [3510] = {.lex_state = 353, .external_lex_state = 2}, + [3511] = {.lex_state = 353, .external_lex_state = 2}, + [3512] = {.lex_state = 353, .external_lex_state = 2}, + [3513] = {.lex_state = 353, .external_lex_state = 2}, + [3514] = {.lex_state = 353, .external_lex_state = 2}, + [3515] = {.lex_state = 353, .external_lex_state = 2}, + [3516] = {.lex_state = 353, .external_lex_state = 9}, + [3517] = {.lex_state = 353, .external_lex_state = 2}, + [3518] = {.lex_state = 353, .external_lex_state = 2}, + [3519] = {.lex_state = 353, .external_lex_state = 2}, + [3520] = {.lex_state = 353, .external_lex_state = 2}, + [3521] = {.lex_state = 353, .external_lex_state = 2}, + [3522] = {.lex_state = 353, .external_lex_state = 2}, + [3523] = {.lex_state = 353, .external_lex_state = 2}, + [3524] = {.lex_state = 353, .external_lex_state = 2}, + [3525] = {.lex_state = 353, .external_lex_state = 2}, + [3526] = {.lex_state = 353, .external_lex_state = 2}, + [3527] = {.lex_state = 353, .external_lex_state = 2}, + [3528] = {.lex_state = 353, .external_lex_state = 9}, + [3529] = {.lex_state = 353, .external_lex_state = 2}, + [3530] = {.lex_state = 353, .external_lex_state = 2}, + [3531] = {.lex_state = 353, .external_lex_state = 2}, + [3532] = {.lex_state = 353, .external_lex_state = 2}, + [3533] = {.lex_state = 353, .external_lex_state = 9}, + [3534] = {.lex_state = 353, .external_lex_state = 2}, + [3535] = {.lex_state = 353, .external_lex_state = 2}, + [3536] = {.lex_state = 353, .external_lex_state = 2}, + [3537] = {.lex_state = 353, .external_lex_state = 2}, + [3538] = {.lex_state = 353, .external_lex_state = 2}, + [3539] = {.lex_state = 353, .external_lex_state = 2}, + [3540] = {.lex_state = 353, .external_lex_state = 2}, + [3541] = {.lex_state = 353, .external_lex_state = 2}, + [3542] = {.lex_state = 180}, + [3543] = {.lex_state = 180}, + [3544] = {.lex_state = 180}, + [3545] = {.lex_state = 180}, + [3546] = {.lex_state = 180}, + [3547] = {.lex_state = 180}, + [3548] = {.lex_state = 180}, + [3549] = {.lex_state = 180}, + [3550] = {.lex_state = 180}, + [3551] = {.lex_state = 180}, + [3552] = {.lex_state = 180}, + [3553] = {.lex_state = 180}, + [3554] = {.lex_state = 180}, + [3555] = {.lex_state = 180}, + [3556] = {.lex_state = 180}, + [3557] = {.lex_state = 180}, + [3558] = {.lex_state = 180}, + [3559] = {.lex_state = 180}, + [3560] = {.lex_state = 180}, + [3561] = {.lex_state = 180}, + [3562] = {.lex_state = 180}, + [3563] = {.lex_state = 180}, + [3564] = {.lex_state = 150}, + [3565] = {.lex_state = 159}, + [3566] = {.lex_state = 150, .external_lex_state = 14}, + [3567] = {.lex_state = 151}, + [3568] = {.lex_state = 166}, + [3569] = {.lex_state = 160}, + [3570] = {.lex_state = 151, .external_lex_state = 14}, + [3571] = {.lex_state = 167}, + [3572] = {.lex_state = 174}, + [3573] = {.lex_state = 155}, + [3574] = {.lex_state = 155}, + [3575] = {.lex_state = 156}, + [3576] = {.lex_state = 156}, + [3577] = {.lex_state = 156}, + [3578] = {.lex_state = 155}, + [3579] = {.lex_state = 155}, + [3580] = {.lex_state = 155}, + [3581] = {.lex_state = 156}, + [3582] = {.lex_state = 155}, + [3583] = {.lex_state = 156}, + [3584] = {.lex_state = 156}, + [3585] = {.lex_state = 175}, + [3586] = {.lex_state = 156}, + [3587] = {.lex_state = 155}, + [3588] = {.lex_state = 156}, + [3589] = {.lex_state = 156}, + [3590] = {.lex_state = 155}, + [3591] = {.lex_state = 156}, + [3592] = {.lex_state = 156}, + [3593] = {.lex_state = 155}, + [3594] = {.lex_state = 156}, + [3595] = {.lex_state = 156}, + [3596] = {.lex_state = 156}, + [3597] = {.lex_state = 155}, + [3598] = {.lex_state = 155}, + [3599] = {.lex_state = 156}, + [3600] = {.lex_state = 155}, + [3601] = {.lex_state = 155}, + [3602] = {.lex_state = 155}, + [3603] = {.lex_state = 155}, + [3604] = {.lex_state = 156}, + [3605] = {.lex_state = 156}, + [3606] = {.lex_state = 155}, + [3607] = {.lex_state = 156}, + [3608] = {.lex_state = 156}, + [3609] = {.lex_state = 155}, + [3610] = {.lex_state = 152}, + [3611] = {.lex_state = 156}, + [3612] = {.lex_state = 356}, + [3613] = {.lex_state = 155}, + [3614] = {.lex_state = 155}, + [3615] = {.lex_state = 356}, + [3616] = {.lex_state = 171}, + [3617] = {.lex_state = 155}, + [3618] = {.lex_state = 194, .external_lex_state = 5}, + [3619] = {.lex_state = 155}, + [3620] = {.lex_state = 156}, + [3621] = {.lex_state = 194, .external_lex_state = 5}, + [3622] = {.lex_state = 155}, + [3623] = {.lex_state = 155}, + [3624] = {.lex_state = 153}, + [3625] = {.lex_state = 155}, + [3626] = {.lex_state = 155}, + [3627] = {.lex_state = 155}, + [3628] = {.lex_state = 194, .external_lex_state = 5}, + [3629] = {.lex_state = 153}, + [3630] = {.lex_state = 171}, + [3631] = {.lex_state = 171}, + [3632] = {.lex_state = 171}, + [3633] = {.lex_state = 156}, + [3634] = {.lex_state = 194, .external_lex_state = 5}, + [3635] = {.lex_state = 156}, + [3636] = {.lex_state = 155}, + [3637] = {.lex_state = 155}, + [3638] = {.lex_state = 156}, + [3639] = {.lex_state = 149}, + [3640] = {.lex_state = 156}, + [3641] = {.lex_state = 156}, + [3642] = {.lex_state = 171}, + [3643] = {.lex_state = 156}, + [3644] = {.lex_state = 194, .external_lex_state = 5}, + [3645] = {.lex_state = 155}, + [3646] = {.lex_state = 171}, + [3647] = {.lex_state = 153}, + [3648] = {.lex_state = 194, .external_lex_state = 5}, + [3649] = {.lex_state = 156}, + [3650] = {.lex_state = 149}, + [3651] = {.lex_state = 156}, + [3652] = {.lex_state = 153}, + [3653] = {.lex_state = 171}, + [3654] = {.lex_state = 156}, + [3655] = {.lex_state = 156}, + [3656] = {.lex_state = 149}, + [3657] = {.lex_state = 171}, + [3658] = {.lex_state = 149}, + [3659] = {.lex_state = 172}, + [3660] = {.lex_state = 172}, + [3661] = {.lex_state = 171}, + [3662] = {.lex_state = 161}, + [3663] = {.lex_state = 149}, + [3664] = {.lex_state = 171}, + [3665] = {.lex_state = 171}, + [3666] = {.lex_state = 194, .external_lex_state = 5}, + [3667] = {.lex_state = 181}, + [3668] = {.lex_state = 172}, + [3669] = {.lex_state = 171}, + [3670] = {.lex_state = 172}, + [3671] = {.lex_state = 149}, + [3672] = {.lex_state = 172}, + [3673] = {.lex_state = 172}, + [3674] = {.lex_state = 171}, + [3675] = {.lex_state = 172}, + [3676] = {.lex_state = 152, .external_lex_state = 14}, + [3677] = {.lex_state = 149}, + [3678] = {.lex_state = 162}, + [3679] = {.lex_state = 172}, + [3680] = {.lex_state = 149}, + [3681] = {.lex_state = 153, .external_lex_state = 14}, + [3682] = {.lex_state = 171}, + [3683] = {.lex_state = 149, .external_lex_state = 14}, + [3684] = {.lex_state = 171}, + [3685] = {.lex_state = 172}, + [3686] = {.lex_state = 157}, + [3687] = {.lex_state = 149}, + [3688] = {.lex_state = 171}, + [3689] = {.lex_state = 149}, + [3690] = {.lex_state = 194, .external_lex_state = 6}, + [3691] = {.lex_state = 149, .external_lex_state = 14}, [3692] = {.lex_state = 149}, - [3693] = {.lex_state = 143}, - [3694] = {.lex_state = 143}, - [3695] = {.lex_state = 143}, - [3696] = {.lex_state = 143}, - [3697] = {.lex_state = 149}, - [3698] = {.lex_state = 164, .external_lex_state = 5}, - [3699] = {.lex_state = 143}, - [3700] = {.lex_state = 143}, - [3701] = {.lex_state = 143}, - [3702] = {.lex_state = 143}, - [3703] = {.lex_state = 164, .external_lex_state = 6}, - [3704] = {.lex_state = 143}, - [3705] = {.lex_state = 143}, - [3706] = {.lex_state = 143}, - [3707] = {.lex_state = 164, .external_lex_state = 5}, - [3708] = {.lex_state = 143}, - [3709] = {.lex_state = 143}, - [3710] = {.lex_state = 164, .external_lex_state = 5}, - [3711] = {.lex_state = 143}, - [3712] = {.lex_state = 143}, - [3713] = {.lex_state = 143}, - [3714] = {.lex_state = 143}, - [3715] = {.lex_state = 164, .external_lex_state = 6}, - [3716] = {.lex_state = 143}, - [3717] = {.lex_state = 143}, - [3718] = {.lex_state = 164, .external_lex_state = 6}, - [3719] = {.lex_state = 143}, - [3720] = {.lex_state = 143}, - [3721] = {.lex_state = 143}, - [3722] = {.lex_state = 164, .external_lex_state = 5}, - [3723] = {.lex_state = 143}, - [3724] = {.lex_state = 164, .external_lex_state = 6}, - [3725] = {.lex_state = 143}, - [3726] = {.lex_state = 143}, + [3693] = {.lex_state = 171}, + [3694] = {.lex_state = 171}, + [3695] = {.lex_state = 153, .external_lex_state = 14}, + [3696] = {.lex_state = 153, .external_lex_state = 14}, + [3697] = {.lex_state = 162}, + [3698] = {.lex_state = 172}, + [3699] = {.lex_state = 172}, + [3700] = {.lex_state = 162}, + [3701] = {.lex_state = 172}, + [3702] = {.lex_state = 149}, + [3703] = {.lex_state = 149}, + [3704] = {.lex_state = 171}, + [3705] = {.lex_state = 149}, + [3706] = {.lex_state = 172}, + [3707] = {.lex_state = 149}, + [3708] = {.lex_state = 162}, + [3709] = {.lex_state = 194, .external_lex_state = 6}, + [3710] = {.lex_state = 149}, + [3711] = {.lex_state = 149}, + [3712] = {.lex_state = 164}, + [3713] = {.lex_state = 149}, + [3714] = {.lex_state = 149}, + [3715] = {.lex_state = 168}, + [3716] = {.lex_state = 149}, + [3717] = {.lex_state = 149}, + [3718] = {.lex_state = 149}, + [3719] = {.lex_state = 149}, + [3720] = {.lex_state = 149}, + [3721] = {.lex_state = 153, .external_lex_state = 14}, + [3722] = {.lex_state = 149}, + [3723] = {.lex_state = 149}, + [3724] = {.lex_state = 149}, + [3725] = {.lex_state = 149}, + [3726] = {.lex_state = 164}, [3727] = {.lex_state = 149}, - [3728] = {.lex_state = 164, .external_lex_state = 6}, - [3729] = {.lex_state = 143}, - [3730] = {.lex_state = 143}, - [3731] = {.lex_state = 143}, - [3732] = {.lex_state = 143}, - [3733] = {.lex_state = 164, .external_lex_state = 5}, - [3734] = {.lex_state = 318}, - [3735] = {.lex_state = 143}, - [3736] = {.lex_state = 143}, - [3737] = {.lex_state = 164, .external_lex_state = 5}, - [3738] = {.lex_state = 143}, - [3739] = {.lex_state = 143}, - [3740] = {.lex_state = 143}, - [3741] = {.lex_state = 143}, - [3742] = {.lex_state = 143}, - [3743] = {.lex_state = 143}, - [3744] = {.lex_state = 143}, - [3745] = {.lex_state = 143}, - [3746] = {.lex_state = 143}, - [3747] = {.lex_state = 143}, - [3748] = {.lex_state = 143}, - [3749] = {.lex_state = 164, .external_lex_state = 6}, - [3750] = {.lex_state = 143}, - [3751] = {.lex_state = 143}, - [3752] = {.lex_state = 143}, - [3753] = {.lex_state = 143}, - [3754] = {.lex_state = 164, .external_lex_state = 5}, - [3755] = {.lex_state = 143}, - [3756] = {.lex_state = 143}, - [3757] = {.lex_state = 143}, - [3758] = {.lex_state = 143}, - [3759] = {.lex_state = 143}, - [3760] = {.lex_state = 143}, - [3761] = {.lex_state = 143}, - [3762] = {.lex_state = 143}, - [3763] = {.lex_state = 143}, - [3764] = {.lex_state = 164, .external_lex_state = 6}, - [3765] = {.lex_state = 143}, - [3766] = {.lex_state = 143}, - [3767] = {.lex_state = 143}, - [3768] = {.lex_state = 143}, - [3769] = {.lex_state = 143}, - [3770] = {.lex_state = 143}, - [3771] = {.lex_state = 143}, - [3772] = {.lex_state = 143}, - [3773] = {.lex_state = 143}, - [3774] = {.lex_state = 164, .external_lex_state = 6}, - [3775] = {.lex_state = 143}, - [3776] = {.lex_state = 164, .external_lex_state = 6}, - [3777] = {.lex_state = 164, .external_lex_state = 5}, - [3778] = {.lex_state = 164, .external_lex_state = 6}, - [3779] = {.lex_state = 164, .external_lex_state = 6}, - [3780] = {.lex_state = 169}, - [3781] = {.lex_state = 173}, - [3782] = {.lex_state = 173}, - [3783] = {.lex_state = 164, .external_lex_state = 6}, - [3784] = {.lex_state = 164, .external_lex_state = 5}, - [3785] = {.lex_state = 164, .external_lex_state = 6}, - [3786] = {.lex_state = 164, .external_lex_state = 6}, - [3787] = {.lex_state = 164, .external_lex_state = 6}, - [3788] = {.lex_state = 164, .external_lex_state = 5}, - [3789] = {.lex_state = 164, .external_lex_state = 5}, - [3790] = {.lex_state = 173}, - [3791] = {.lex_state = 149}, - [3792] = {.lex_state = 164, .external_lex_state = 5}, - [3793] = {.lex_state = 164, .external_lex_state = 6}, - [3794] = {.lex_state = 164, .external_lex_state = 6}, - [3795] = {.lex_state = 164, .external_lex_state = 6}, - [3796] = {.lex_state = 318}, - [3797] = {.lex_state = 164, .external_lex_state = 5}, - [3798] = {.lex_state = 164, .external_lex_state = 5}, - [3799] = {.lex_state = 173}, - [3800] = {.lex_state = 164, .external_lex_state = 5}, - [3801] = {.lex_state = 173}, - [3802] = {.lex_state = 164, .external_lex_state = 5}, - [3803] = {.lex_state = 164, .external_lex_state = 6}, - [3804] = {.lex_state = 164, .external_lex_state = 5}, - [3805] = {.lex_state = 164, .external_lex_state = 5}, - [3806] = {.lex_state = 318}, - [3807] = {.lex_state = 164, .external_lex_state = 5}, - [3808] = {.lex_state = 164, .external_lex_state = 6}, - [3809] = {.lex_state = 173}, - [3810] = {.lex_state = 164, .external_lex_state = 5}, - [3811] = {.lex_state = 164, .external_lex_state = 5}, - [3812] = {.lex_state = 164, .external_lex_state = 6}, - [3813] = {.lex_state = 164, .external_lex_state = 6}, - [3814] = {.lex_state = 164, .external_lex_state = 5}, - [3815] = {.lex_state = 164, .external_lex_state = 6}, - [3816] = {.lex_state = 164, .external_lex_state = 6}, - [3817] = {.lex_state = 164, .external_lex_state = 5}, - [3818] = {.lex_state = 164, .external_lex_state = 6}, - [3819] = {.lex_state = 164, .external_lex_state = 6}, - [3820] = {.lex_state = 164, .external_lex_state = 5}, - [3821] = {.lex_state = 164, .external_lex_state = 5}, - [3822] = {.lex_state = 164, .external_lex_state = 5}, - [3823] = {.lex_state = 173}, - [3824] = {.lex_state = 164, .external_lex_state = 6}, - [3825] = {.lex_state = 318, .external_lex_state = 16}, - [3826] = {.lex_state = 164, .external_lex_state = 6}, - [3827] = {.lex_state = 153}, - [3828] = {.lex_state = 318, .external_lex_state = 16}, - [3829] = {.lex_state = 173}, - [3830] = {.lex_state = 318, .external_lex_state = 16}, - [3831] = {.lex_state = 318, .external_lex_state = 16}, - [3832] = {.lex_state = 157, .external_lex_state = 16}, - [3833] = {.lex_state = 318, .external_lex_state = 16}, - [3834] = {.lex_state = 164, .external_lex_state = 6}, - [3835] = {.lex_state = 318, .external_lex_state = 16}, - [3836] = {.lex_state = 164, .external_lex_state = 6}, - [3837] = {.lex_state = 164, .external_lex_state = 6}, - [3838] = {.lex_state = 318, .external_lex_state = 16}, - [3839] = {.lex_state = 164, .external_lex_state = 6}, - [3840] = {.lex_state = 318, .external_lex_state = 16}, - [3841] = {.lex_state = 164, .external_lex_state = 6}, - [3842] = {.lex_state = 164, .external_lex_state = 6}, - [3843] = {.lex_state = 173}, - [3844] = {.lex_state = 166, .external_lex_state = 14}, - [3845] = {.lex_state = 173}, - [3846] = {.lex_state = 164, .external_lex_state = 6}, - [3847] = {.lex_state = 164, .external_lex_state = 6}, - [3848] = {.lex_state = 164, .external_lex_state = 6}, - [3849] = {.lex_state = 157}, - [3850] = {.lex_state = 173}, - [3851] = {.lex_state = 154}, + [3728] = {.lex_state = 157}, + [3729] = {.lex_state = 172}, + [3730] = {.lex_state = 149}, + [3731] = {.lex_state = 149}, + [3732] = {.lex_state = 149}, + [3733] = {.lex_state = 149}, + [3734] = {.lex_state = 149}, + [3735] = {.lex_state = 149}, + [3736] = {.lex_state = 149}, + [3737] = {.lex_state = 149}, + [3738] = {.lex_state = 149}, + [3739] = {.lex_state = 194, .external_lex_state = 6}, + [3740] = {.lex_state = 149}, + [3741] = {.lex_state = 172}, + [3742] = {.lex_state = 157}, + [3743] = {.lex_state = 149, .external_lex_state = 14}, + [3744] = {.lex_state = 149}, + [3745] = {.lex_state = 149}, + [3746] = {.lex_state = 149}, + [3747] = {.lex_state = 149}, + [3748] = {.lex_state = 149}, + [3749] = {.lex_state = 149}, + [3750] = {.lex_state = 149, .external_lex_state = 14}, + [3751] = {.lex_state = 165}, + [3752] = {.lex_state = 171}, + [3753] = {.lex_state = 157}, + [3754] = {.lex_state = 172}, + [3755] = {.lex_state = 165}, + [3756] = {.lex_state = 157}, + [3757] = {.lex_state = 149}, + [3758] = {.lex_state = 149}, + [3759] = {.lex_state = 169}, + [3760] = {.lex_state = 172}, + [3761] = {.lex_state = 149}, + [3762] = {.lex_state = 171}, + [3763] = {.lex_state = 149, .external_lex_state = 14}, + [3764] = {.lex_state = 169}, + [3765] = {.lex_state = 165}, + [3766] = {.lex_state = 172}, + [3767] = {.lex_state = 169}, + [3768] = {.lex_state = 203}, + [3769] = {.lex_state = 149, .external_lex_state = 14}, + [3770] = {.lex_state = 171}, + [3771] = {.lex_state = 203}, + [3772] = {.lex_state = 164}, + [3773] = {.lex_state = 203}, + [3774] = {.lex_state = 171}, + [3775] = {.lex_state = 165}, + [3776] = {.lex_state = 165}, + [3777] = {.lex_state = 203}, + [3778] = {.lex_state = 165}, + [3779] = {.lex_state = 169}, + [3780] = {.lex_state = 171}, + [3781] = {.lex_state = 165}, + [3782] = {.lex_state = 172}, + [3783] = {.lex_state = 149}, + [3784] = {.lex_state = 165}, + [3785] = {.lex_state = 149}, + [3786] = {.lex_state = 171}, + [3787] = {.lex_state = 172}, + [3788] = {.lex_state = 165}, + [3789] = {.lex_state = 172}, + [3790] = {.lex_state = 171}, + [3791] = {.lex_state = 171}, + [3792] = {.lex_state = 182}, + [3793] = {.lex_state = 164}, + [3794] = {.lex_state = 165}, + [3795] = {.lex_state = 171}, + [3796] = {.lex_state = 165}, + [3797] = {.lex_state = 149}, + [3798] = {.lex_state = 157}, + [3799] = {.lex_state = 165}, + [3800] = {.lex_state = 172}, + [3801] = {.lex_state = 171}, + [3802] = {.lex_state = 171}, + [3803] = {.lex_state = 165}, + [3804] = {.lex_state = 203}, + [3805] = {.lex_state = 149, .external_lex_state = 14}, + [3806] = {.lex_state = 149}, + [3807] = {.lex_state = 149, .external_lex_state = 14}, + [3808] = {.lex_state = 149, .external_lex_state = 14}, + [3809] = {.lex_state = 149}, + [3810] = {.lex_state = 149, .external_lex_state = 14}, + [3811] = {.lex_state = 149}, + [3812] = {.lex_state = 149, .external_lex_state = 14}, + [3813] = {.lex_state = 149}, + [3814] = {.lex_state = 149, .external_lex_state = 14}, + [3815] = {.lex_state = 149}, + [3816] = {.lex_state = 149}, + [3817] = {.lex_state = 157}, + [3818] = {.lex_state = 172}, + [3819] = {.lex_state = 149}, + [3820] = {.lex_state = 157}, + [3821] = {.lex_state = 149, .external_lex_state = 14}, + [3822] = {.lex_state = 149, .external_lex_state = 14}, + [3823] = {.lex_state = 149, .external_lex_state = 14}, + [3824] = {.lex_state = 149, .external_lex_state = 14}, + [3825] = {.lex_state = 149, .external_lex_state = 14}, + [3826] = {.lex_state = 149, .external_lex_state = 14}, + [3827] = {.lex_state = 149, .external_lex_state = 14}, + [3828] = {.lex_state = 149, .external_lex_state = 14}, + [3829] = {.lex_state = 157}, + [3830] = {.lex_state = 149, .external_lex_state = 14}, + [3831] = {.lex_state = 157}, + [3832] = {.lex_state = 138, .external_lex_state = 2}, + [3833] = {.lex_state = 157}, + [3834] = {.lex_state = 149}, + [3835] = {.lex_state = 149, .external_lex_state = 14}, + [3836] = {.lex_state = 149, .external_lex_state = 14}, + [3837] = {.lex_state = 149, .external_lex_state = 14}, + [3838] = {.lex_state = 149, .external_lex_state = 14}, + [3839] = {.lex_state = 149, .external_lex_state = 14}, + [3840] = {.lex_state = 149, .external_lex_state = 14}, + [3841] = {.lex_state = 149}, + [3842] = {.lex_state = 149}, + [3843] = {.lex_state = 157}, + [3844] = {.lex_state = 149, .external_lex_state = 14}, + [3845] = {.lex_state = 157}, + [3846] = {.lex_state = 149}, + [3847] = {.lex_state = 157}, + [3848] = {.lex_state = 157}, + [3849] = {.lex_state = 149, .external_lex_state = 14}, + [3850] = {.lex_state = 157}, + [3851] = {.lex_state = 149, .external_lex_state = 14}, [3852] = {.lex_state = 157}, - [3853] = {.lex_state = 173}, - [3854] = {.lex_state = 157}, - [3855] = {.lex_state = 154}, - [3856] = {.lex_state = 173}, - [3857] = {.lex_state = 173}, - [3858] = {.lex_state = 172, .external_lex_state = 17}, - [3859] = {.lex_state = 150}, - [3860] = {.lex_state = 154}, - [3861] = {.lex_state = 173}, - [3862] = {.lex_state = 150}, + [3853] = {.lex_state = 149, .external_lex_state = 14}, + [3854] = {.lex_state = 149, .external_lex_state = 14}, + [3855] = {.lex_state = 157}, + [3856] = {.lex_state = 157}, + [3857] = {.lex_state = 149, .external_lex_state = 14}, + [3858] = {.lex_state = 149, .external_lex_state = 14}, + [3859] = {.lex_state = 157}, + [3860] = {.lex_state = 149, .external_lex_state = 14}, + [3861] = {.lex_state = 157}, + [3862] = {.lex_state = 157}, [3863] = {.lex_state = 157}, [3864] = {.lex_state = 157}, [3865] = {.lex_state = 157}, [3866] = {.lex_state = 157}, [3867] = {.lex_state = 157}, - [3868] = {.lex_state = 173}, - [3869] = {.lex_state = 157}, + [3868] = {.lex_state = 157}, + [3869] = {.lex_state = 149}, [3870] = {.lex_state = 157}, - [3871] = {.lex_state = 318}, - [3872] = {.lex_state = 173}, - [3873] = {.lex_state = 157}, - [3874] = {.lex_state = 173}, - [3875] = {.lex_state = 157}, - [3876] = {.lex_state = 172, .external_lex_state = 17}, - [3877] = {.lex_state = 157}, - [3878] = {.lex_state = 173}, - [3879] = {.lex_state = 318}, - [3880] = {.lex_state = 173}, - [3881] = {.lex_state = 173}, - [3882] = {.lex_state = 172, .external_lex_state = 17}, - [3883] = {.lex_state = 173}, - [3884] = {.lex_state = 318}, - [3885] = {.lex_state = 157}, - [3886] = {.lex_state = 172, .external_lex_state = 17}, - [3887] = {.lex_state = 150}, - [3888] = {.lex_state = 173}, - [3889] = {.lex_state = 173}, - [3890] = {.lex_state = 154}, - [3891] = {.lex_state = 157}, - [3892] = {.lex_state = 172, .external_lex_state = 17}, - [3893] = {.lex_state = 172, .external_lex_state = 17}, - [3894] = {.lex_state = 157}, - [3895] = {.lex_state = 172, .external_lex_state = 17}, - [3896] = {.lex_state = 157, .external_lex_state = 16}, - [3897] = {.lex_state = 172, .external_lex_state = 17}, - [3898] = {.lex_state = 172, .external_lex_state = 18}, - [3899] = {.lex_state = 108}, - [3900] = {.lex_state = 157, .external_lex_state = 14}, - [3901] = {.lex_state = 157, .external_lex_state = 14}, - [3902] = {.lex_state = 172, .external_lex_state = 17}, - [3903] = {.lex_state = 150}, - [3904] = {.lex_state = 157, .external_lex_state = 14}, - [3905] = {.lex_state = 150}, - [3906] = {.lex_state = 173}, - [3907] = {.lex_state = 150}, - [3908] = {.lex_state = 150}, - [3909] = {.lex_state = 145, .external_lex_state = 14}, - [3910] = {.lex_state = 157, .external_lex_state = 14}, - [3911] = {.lex_state = 172, .external_lex_state = 18}, - [3912] = {.lex_state = 172, .external_lex_state = 18}, - [3913] = {.lex_state = 172, .external_lex_state = 18}, - [3914] = {.lex_state = 173}, - [3915] = {.lex_state = 172, .external_lex_state = 18}, - [3916] = {.lex_state = 157, .external_lex_state = 14}, - [3917] = {.lex_state = 157, .external_lex_state = 16}, - [3918] = {.lex_state = 157, .external_lex_state = 16}, - [3919] = {.lex_state = 157, .external_lex_state = 16}, - [3920] = {.lex_state = 157, .external_lex_state = 16}, - [3921] = {.lex_state = 157, .external_lex_state = 16}, - [3922] = {.lex_state = 157, .external_lex_state = 14}, - [3923] = {.lex_state = 157, .external_lex_state = 14}, - [3924] = {.lex_state = 173}, - [3925] = {.lex_state = 173}, - [3926] = {.lex_state = 157, .external_lex_state = 16}, - [3927] = {.lex_state = 157, .external_lex_state = 16}, - [3928] = {.lex_state = 172, .external_lex_state = 17}, - [3929] = {.lex_state = 172, .external_lex_state = 17}, - [3930] = {.lex_state = 157, .external_lex_state = 16}, - [3931] = {.lex_state = 172, .external_lex_state = 17}, - [3932] = {.lex_state = 172, .external_lex_state = 18}, - [3933] = {.lex_state = 108}, - [3934] = {.lex_state = 157, .external_lex_state = 16}, - [3935] = {.lex_state = 172, .external_lex_state = 18}, - [3936] = {.lex_state = 172, .external_lex_state = 17}, - [3937] = {.lex_state = 157, .external_lex_state = 16}, - [3938] = {.lex_state = 157, .external_lex_state = 16}, - [3939] = {.lex_state = 172, .external_lex_state = 17}, - [3940] = {.lex_state = 150}, - [3941] = {.lex_state = 172, .external_lex_state = 17}, - [3942] = {.lex_state = 150}, - [3943] = {.lex_state = 173}, - [3944] = {.lex_state = 173}, - [3945] = {.lex_state = 173}, - [3946] = {.lex_state = 173}, - [3947] = {.lex_state = 173}, - [3948] = {.lex_state = 150}, - [3949] = {.lex_state = 173}, - [3950] = {.lex_state = 150}, - [3951] = {.lex_state = 173}, - [3952] = {.lex_state = 173}, - [3953] = {.lex_state = 173}, - [3954] = {.lex_state = 173}, - [3955] = {.lex_state = 157, .external_lex_state = 14}, - [3956] = {.lex_state = 173}, - [3957] = {.lex_state = 173}, - [3958] = {.lex_state = 173}, - [3959] = {.lex_state = 173}, - [3960] = {.lex_state = 173}, - [3961] = {.lex_state = 173}, - [3962] = {.lex_state = 173}, - [3963] = {.lex_state = 173}, - [3964] = {.lex_state = 173}, - [3965] = {.lex_state = 173}, - [3966] = {.lex_state = 157, .external_lex_state = 16}, - [3967] = {.lex_state = 173}, - [3968] = {.lex_state = 173}, - [3969] = {.lex_state = 173}, - [3970] = {.lex_state = 173}, - [3971] = {.lex_state = 173}, - [3972] = {.lex_state = 173}, - [3973] = {.lex_state = 173}, - [3974] = {.lex_state = 173}, - [3975] = {.lex_state = 173}, - [3976] = {.lex_state = 173}, - [3977] = {.lex_state = 173}, - [3978] = {.lex_state = 157, .external_lex_state = 14}, - [3979] = {.lex_state = 173}, - [3980] = {.lex_state = 173}, - [3981] = {.lex_state = 173}, - [3982] = {.lex_state = 173}, - [3983] = {.lex_state = 173}, - [3984] = {.lex_state = 173}, - [3985] = {.lex_state = 173}, - [3986] = {.lex_state = 173}, - [3987] = {.lex_state = 157, .external_lex_state = 14}, - [3988] = {.lex_state = 173}, - [3989] = {.lex_state = 173}, - [3990] = {.lex_state = 173}, - [3991] = {.lex_state = 173}, - [3992] = {.lex_state = 173}, - [3993] = {.lex_state = 173}, - [3994] = {.lex_state = 173}, - [3995] = {.lex_state = 173}, - [3996] = {.lex_state = 173}, - [3997] = {.lex_state = 318}, - [3998] = {.lex_state = 173}, - [3999] = {.lex_state = 173}, - [4000] = {.lex_state = 173}, - [4001] = {.lex_state = 173}, - [4002] = {.lex_state = 150}, - [4003] = {.lex_state = 173}, - [4004] = {.lex_state = 173}, - [4005] = {.lex_state = 173}, - [4006] = {.lex_state = 173}, - [4007] = {.lex_state = 173}, - [4008] = {.lex_state = 173}, - [4009] = {.lex_state = 173}, - [4010] = {.lex_state = 173}, - [4011] = {.lex_state = 173}, + [3871] = {.lex_state = 157}, + [3872] = {.lex_state = 157}, + [3873] = {.lex_state = 149}, + [3874] = {.lex_state = 157}, + [3875] = {.lex_state = 149}, + [3876] = {.lex_state = 149, .external_lex_state = 14}, + [3877] = {.lex_state = 172}, + [3878] = {.lex_state = 149, .external_lex_state = 14}, + [3879] = {.lex_state = 157}, + [3880] = {.lex_state = 157}, + [3881] = {.lex_state = 157}, + [3882] = {.lex_state = 157}, + [3883] = {.lex_state = 157}, + [3884] = {.lex_state = 157}, + [3885] = {.lex_state = 172}, + [3886] = {.lex_state = 149}, + [3887] = {.lex_state = 138, .external_lex_state = 2}, + [3888] = {.lex_state = 149}, + [3889] = {.lex_state = 149}, + [3890] = {.lex_state = 172}, + [3891] = {.lex_state = 172}, + [3892] = {.lex_state = 172}, + [3893] = {.lex_state = 172}, + [3894] = {.lex_state = 138, .external_lex_state = 2}, + [3895] = {.lex_state = 149, .external_lex_state = 14}, + [3896] = {.lex_state = 172}, + [3897] = {.lex_state = 149}, + [3898] = {.lex_state = 149, .external_lex_state = 14}, + [3899] = {.lex_state = 157}, + [3900] = {.lex_state = 138, .external_lex_state = 2}, + [3901] = {.lex_state = 149}, + [3902] = {.lex_state = 157}, + [3903] = {.lex_state = 172}, + [3904] = {.lex_state = 157}, + [3905] = {.lex_state = 149, .external_lex_state = 14}, + [3906] = {.lex_state = 157}, + [3907] = {.lex_state = 149}, + [3908] = {.lex_state = 149}, + [3909] = {.lex_state = 157}, + [3910] = {.lex_state = 149}, + [3911] = {.lex_state = 164}, + [3912] = {.lex_state = 164}, + [3913] = {.lex_state = 172}, + [3914] = {.lex_state = 149, .external_lex_state = 14}, + [3915] = {.lex_state = 172}, + [3916] = {.lex_state = 149}, + [3917] = {.lex_state = 149, .external_lex_state = 14}, + [3918] = {.lex_state = 149, .external_lex_state = 14}, + [3919] = {.lex_state = 149, .external_lex_state = 14}, + [3920] = {.lex_state = 149}, + [3921] = {.lex_state = 149}, + [3922] = {.lex_state = 149}, + [3923] = {.lex_state = 157}, + [3924] = {.lex_state = 138, .external_lex_state = 2}, + [3925] = {.lex_state = 149}, + [3926] = {.lex_state = 149}, + [3927] = {.lex_state = 164}, + [3928] = {.lex_state = 164}, + [3929] = {.lex_state = 149}, + [3930] = {.lex_state = 164}, + [3931] = {.lex_state = 149}, + [3932] = {.lex_state = 149}, + [3933] = {.lex_state = 164}, + [3934] = {.lex_state = 164}, + [3935] = {.lex_state = 149}, + [3936] = {.lex_state = 149}, + [3937] = {.lex_state = 149}, + [3938] = {.lex_state = 149}, + [3939] = {.lex_state = 203}, + [3940] = {.lex_state = 138, .external_lex_state = 2}, + [3941] = {.lex_state = 164}, + [3942] = {.lex_state = 203}, + [3943] = {.lex_state = 164}, + [3944] = {.lex_state = 164}, + [3945] = {.lex_state = 203}, + [3946] = {.lex_state = 203}, + [3947] = {.lex_state = 164}, + [3948] = {.lex_state = 149}, + [3949] = {.lex_state = 149}, + [3950] = {.lex_state = 149}, + [3951] = {.lex_state = 149}, + [3952] = {.lex_state = 203}, + [3953] = {.lex_state = 149}, + [3954] = {.lex_state = 149}, + [3955] = {.lex_state = 149}, + [3956] = {.lex_state = 164}, + [3957] = {.lex_state = 149}, + [3958] = {.lex_state = 149}, + [3959] = {.lex_state = 149}, + [3960] = {.lex_state = 164}, + [3961] = {.lex_state = 149}, + [3962] = {.lex_state = 149}, + [3963] = {.lex_state = 164}, + [3964] = {.lex_state = 203}, + [3965] = {.lex_state = 164}, + [3966] = {.lex_state = 149}, + [3967] = {.lex_state = 149}, + [3968] = {.lex_state = 164}, + [3969] = {.lex_state = 203}, + [3970] = {.lex_state = 203}, + [3971] = {.lex_state = 164}, + [3972] = {.lex_state = 164}, + [3973] = {.lex_state = 164}, + [3974] = {.lex_state = 164}, + [3975] = {.lex_state = 203}, + [3976] = {.lex_state = 203}, + [3977] = {.lex_state = 149}, + [3978] = {.lex_state = 203}, + [3979] = {.lex_state = 164}, + [3980] = {.lex_state = 164}, + [3981] = {.lex_state = 164}, + [3982] = {.lex_state = 164}, + [3983] = {.lex_state = 149}, + [3984] = {.lex_state = 164}, + [3985] = {.lex_state = 149}, + [3986] = {.lex_state = 164}, + [3987] = {.lex_state = 164}, + [3988] = {.lex_state = 164}, + [3989] = {.lex_state = 149}, + [3990] = {.lex_state = 164}, + [3991] = {.lex_state = 203}, + [3992] = {.lex_state = 203}, + [3993] = {.lex_state = 203}, + [3994] = {.lex_state = 164}, + [3995] = {.lex_state = 164}, + [3996] = {.lex_state = 164}, + [3997] = {.lex_state = 164}, + [3998] = {.lex_state = 164}, + [3999] = {.lex_state = 138, .external_lex_state = 2}, + [4000] = {.lex_state = 164}, + [4001] = {.lex_state = 164}, + [4002] = {.lex_state = 164}, + [4003] = {.lex_state = 164}, + [4004] = {.lex_state = 203}, + [4005] = {.lex_state = 164}, + [4006] = {.lex_state = 203}, + [4007] = {.lex_state = 164}, + [4008] = {.lex_state = 176}, + [4009] = {.lex_state = 203}, + [4010] = {.lex_state = 203}, + [4011] = {.lex_state = 203}, [4012] = {.lex_state = 173}, - [4013] = {.lex_state = 173}, - [4014] = {.lex_state = 173}, + [4013] = {.lex_state = 203}, + [4014] = {.lex_state = 203}, [4015] = {.lex_state = 173}, - [4016] = {.lex_state = 173}, + [4016] = {.lex_state = 203}, [4017] = {.lex_state = 173}, - [4018] = {.lex_state = 173}, - [4019] = {.lex_state = 173}, - [4020] = {.lex_state = 173}, + [4018] = {.lex_state = 203}, + [4019] = {.lex_state = 203}, + [4020] = {.lex_state = 203}, [4021] = {.lex_state = 173}, - [4022] = {.lex_state = 173}, + [4022] = {.lex_state = 177}, [4023] = {.lex_state = 173}, - [4024] = {.lex_state = 173}, - [4025] = {.lex_state = 173}, + [4024] = {.lex_state = 177}, + [4025] = {.lex_state = 177}, [4026] = {.lex_state = 173}, [4027] = {.lex_state = 173}, - [4028] = {.lex_state = 173}, - [4029] = {.lex_state = 173}, - [4030] = {.lex_state = 173}, - [4031] = {.lex_state = 173}, + [4028] = {.lex_state = 194, .external_lex_state = 5}, + [4029] = {.lex_state = 177}, + [4030] = {.lex_state = 179}, + [4031] = {.lex_state = 194, .external_lex_state = 5}, [4032] = {.lex_state = 173}, [4033] = {.lex_state = 173}, - [4034] = {.lex_state = 157, .external_lex_state = 16}, - [4035] = {.lex_state = 157, .external_lex_state = 16}, + [4034] = {.lex_state = 194, .external_lex_state = 6}, + [4035] = {.lex_state = 194, .external_lex_state = 5}, [4036] = {.lex_state = 173}, - [4037] = {.lex_state = 173}, - [4038] = {.lex_state = 318}, - [4039] = {.lex_state = 173}, - [4040] = {.lex_state = 173}, - [4041] = {.lex_state = 173}, - [4042] = {.lex_state = 173}, + [4037] = {.lex_state = 194, .external_lex_state = 5}, + [4038] = {.lex_state = 194, .external_lex_state = 5}, + [4039] = {.lex_state = 194, .external_lex_state = 5}, + [4040] = {.lex_state = 194, .external_lex_state = 5}, + [4041] = {.lex_state = 194, .external_lex_state = 5}, + [4042] = {.lex_state = 196}, [4043] = {.lex_state = 173}, [4044] = {.lex_state = 173}, [4045] = {.lex_state = 173}, - [4046] = {.lex_state = 318}, + [4046] = {.lex_state = 194, .external_lex_state = 5}, [4047] = {.lex_state = 173}, - [4048] = {.lex_state = 173}, + [4048] = {.lex_state = 203}, [4049] = {.lex_state = 173}, [4050] = {.lex_state = 173}, [4051] = {.lex_state = 173}, - [4052] = {.lex_state = 173}, + [4052] = {.lex_state = 194, .external_lex_state = 5}, [4053] = {.lex_state = 173}, [4054] = {.lex_state = 173}, [4055] = {.lex_state = 173}, - [4056] = {.lex_state = 173}, + [4056] = {.lex_state = 194, .external_lex_state = 5}, [4057] = {.lex_state = 173}, [4058] = {.lex_state = 173}, [4059] = {.lex_state = 173}, [4060] = {.lex_state = 173}, - [4061] = {.lex_state = 173}, + [4061] = {.lex_state = 194, .external_lex_state = 6}, [4062] = {.lex_state = 173}, [4063] = {.lex_state = 173}, - [4064] = {.lex_state = 318}, + [4064] = {.lex_state = 173}, [4065] = {.lex_state = 173}, - [4066] = {.lex_state = 173}, - [4067] = {.lex_state = 173}, + [4066] = {.lex_state = 194, .external_lex_state = 5}, + [4067] = {.lex_state = 194, .external_lex_state = 5}, [4068] = {.lex_state = 173}, - [4069] = {.lex_state = 173}, - [4070] = {.lex_state = 173}, + [4069] = {.lex_state = 194, .external_lex_state = 5}, + [4070] = {.lex_state = 194, .external_lex_state = 5}, [4071] = {.lex_state = 173}, - [4072] = {.lex_state = 173}, + [4072] = {.lex_state = 194, .external_lex_state = 5}, [4073] = {.lex_state = 173}, [4074] = {.lex_state = 173}, [4075] = {.lex_state = 173}, [4076] = {.lex_state = 173}, - [4077] = {.lex_state = 173}, + [4077] = {.lex_state = 356}, [4078] = {.lex_state = 173}, [4079] = {.lex_state = 173}, [4080] = {.lex_state = 173}, @@ -28376,50 +30119,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4084] = {.lex_state = 173}, [4085] = {.lex_state = 173}, [4086] = {.lex_state = 173}, - [4087] = {.lex_state = 172, .external_lex_state = 17}, + [4087] = {.lex_state = 194, .external_lex_state = 5}, [4088] = {.lex_state = 173}, [4089] = {.lex_state = 173}, [4090] = {.lex_state = 173}, [4091] = {.lex_state = 173}, - [4092] = {.lex_state = 173}, + [4092] = {.lex_state = 194, .external_lex_state = 6}, [4093] = {.lex_state = 173}, - [4094] = {.lex_state = 172, .external_lex_state = 17}, - [4095] = {.lex_state = 173}, + [4094] = {.lex_state = 173}, + [4095] = {.lex_state = 194, .external_lex_state = 6}, [4096] = {.lex_state = 173}, - [4097] = {.lex_state = 173}, + [4097] = {.lex_state = 194, .external_lex_state = 6}, [4098] = {.lex_state = 173}, - [4099] = {.lex_state = 164, .external_lex_state = 5}, - [4100] = {.lex_state = 173}, - [4101] = {.lex_state = 173}, - [4102] = {.lex_state = 172, .external_lex_state = 17}, - [4103] = {.lex_state = 173}, + [4099] = {.lex_state = 173}, + [4100] = {.lex_state = 194, .external_lex_state = 5}, + [4101] = {.lex_state = 194, .external_lex_state = 6}, + [4102] = {.lex_state = 173}, + [4103] = {.lex_state = 194, .external_lex_state = 6}, [4104] = {.lex_state = 173}, - [4105] = {.lex_state = 164, .external_lex_state = 5}, + [4105] = {.lex_state = 173}, [4106] = {.lex_state = 173}, - [4107] = {.lex_state = 173}, - [4108] = {.lex_state = 318}, + [4107] = {.lex_state = 194, .external_lex_state = 6}, + [4108] = {.lex_state = 179}, [4109] = {.lex_state = 173}, [4110] = {.lex_state = 173}, - [4111] = {.lex_state = 173}, - [4112] = {.lex_state = 150}, - [4113] = {.lex_state = 150}, - [4114] = {.lex_state = 150}, + [4111] = {.lex_state = 194, .external_lex_state = 5}, + [4112] = {.lex_state = 173}, + [4113] = {.lex_state = 194, .external_lex_state = 5}, + [4114] = {.lex_state = 179}, [4115] = {.lex_state = 173}, - [4116] = {.lex_state = 173}, - [4117] = {.lex_state = 164, .external_lex_state = 5}, - [4118] = {.lex_state = 173}, + [4116] = {.lex_state = 194, .external_lex_state = 6}, + [4117] = {.lex_state = 194, .external_lex_state = 5}, + [4118] = {.lex_state = 179}, [4119] = {.lex_state = 173}, - [4120] = {.lex_state = 157, .external_lex_state = 16}, + [4120] = {.lex_state = 173}, [4121] = {.lex_state = 173}, [4122] = {.lex_state = 173}, - [4123] = {.lex_state = 150}, + [4123] = {.lex_state = 173}, [4124] = {.lex_state = 173}, - [4125] = {.lex_state = 150}, + [4125] = {.lex_state = 173}, [4126] = {.lex_state = 173}, [4127] = {.lex_state = 173}, - [4128] = {.lex_state = 157, .external_lex_state = 16}, - [4129] = {.lex_state = 173}, - [4130] = {.lex_state = 150}, + [4128] = {.lex_state = 173}, + [4129] = {.lex_state = 194, .external_lex_state = 6}, + [4130] = {.lex_state = 173}, [4131] = {.lex_state = 173}, [4132] = {.lex_state = 173}, [4133] = {.lex_state = 173}, @@ -28427,7 +30170,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4135] = {.lex_state = 173}, [4136] = {.lex_state = 173}, [4137] = {.lex_state = 173}, - [4138] = {.lex_state = 173}, + [4138] = {.lex_state = 194, .external_lex_state = 6}, [4139] = {.lex_state = 173}, [4140] = {.lex_state = 173}, [4141] = {.lex_state = 173}, @@ -28449,3668 +30192,4244 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4157] = {.lex_state = 173}, [4158] = {.lex_state = 173}, [4159] = {.lex_state = 173}, - [4160] = {.lex_state = 157, .external_lex_state = 14}, - [4161] = {.lex_state = 173}, - [4162] = {.lex_state = 173}, - [4163] = {.lex_state = 173}, - [4164] = {.lex_state = 173}, - [4165] = {.lex_state = 173}, - [4166] = {.lex_state = 172, .external_lex_state = 18}, - [4167] = {.lex_state = 173}, - [4168] = {.lex_state = 173}, - [4169] = {.lex_state = 173}, - [4170] = {.lex_state = 173}, - [4171] = {.lex_state = 157, .external_lex_state = 14}, - [4172] = {.lex_state = 173}, - [4173] = {.lex_state = 173}, - [4174] = {.lex_state = 173}, - [4175] = {.lex_state = 173}, - [4176] = {.lex_state = 173}, - [4177] = {.lex_state = 173}, - [4178] = {.lex_state = 173}, - [4179] = {.lex_state = 173}, - [4180] = {.lex_state = 173}, - [4181] = {.lex_state = 173}, - [4182] = {.lex_state = 173}, - [4183] = {.lex_state = 173}, - [4184] = {.lex_state = 173}, - [4185] = {.lex_state = 173}, - [4186] = {.lex_state = 173}, - [4187] = {.lex_state = 173}, - [4188] = {.lex_state = 173}, - [4189] = {.lex_state = 173}, - [4190] = {.lex_state = 173}, - [4191] = {.lex_state = 173}, - [4192] = {.lex_state = 173}, - [4193] = {.lex_state = 173}, - [4194] = {.lex_state = 173}, - [4195] = {.lex_state = 173}, - [4196] = {.lex_state = 173}, - [4197] = {.lex_state = 173}, - [4198] = {.lex_state = 172, .external_lex_state = 18}, - [4199] = {.lex_state = 173}, - [4200] = {.lex_state = 173}, - [4201] = {.lex_state = 173}, - [4202] = {.lex_state = 173}, - [4203] = {.lex_state = 173}, - [4204] = {.lex_state = 172, .external_lex_state = 18}, - [4205] = {.lex_state = 172, .external_lex_state = 17}, - [4206] = {.lex_state = 173}, - [4207] = {.lex_state = 173}, - [4208] = {.lex_state = 173}, - [4209] = {.lex_state = 173}, - [4210] = {.lex_state = 173}, - [4211] = {.lex_state = 173}, - [4212] = {.lex_state = 173}, - [4213] = {.lex_state = 173}, - [4214] = {.lex_state = 173}, - [4215] = {.lex_state = 173}, - [4216] = {.lex_state = 173}, - [4217] = {.lex_state = 173}, - [4218] = {.lex_state = 173}, - [4219] = {.lex_state = 173}, - [4220] = {.lex_state = 173}, - [4221] = {.lex_state = 173}, - [4222] = {.lex_state = 173}, - [4223] = {.lex_state = 173}, - [4224] = {.lex_state = 173}, - [4225] = {.lex_state = 173}, - [4226] = {.lex_state = 173}, - [4227] = {.lex_state = 173}, - [4228] = {.lex_state = 173}, - [4229] = {.lex_state = 173}, - [4230] = {.lex_state = 173}, - [4231] = {.lex_state = 173}, - [4232] = {.lex_state = 173}, - [4233] = {.lex_state = 173}, - [4234] = {.lex_state = 173}, - [4235] = {.lex_state = 173}, - [4236] = {.lex_state = 173}, - [4237] = {.lex_state = 172, .external_lex_state = 18}, - [4238] = {.lex_state = 172, .external_lex_state = 18}, - [4239] = {.lex_state = 173}, - [4240] = {.lex_state = 173}, - [4241] = {.lex_state = 173}, - [4242] = {.lex_state = 157, .external_lex_state = 14}, - [4243] = {.lex_state = 173}, - [4244] = {.lex_state = 173}, - [4245] = {.lex_state = 173}, - [4246] = {.lex_state = 173}, - [4247] = {.lex_state = 173}, - [4248] = {.lex_state = 173}, - [4249] = {.lex_state = 173}, - [4250] = {.lex_state = 173}, - [4251] = {.lex_state = 173}, - [4252] = {.lex_state = 150}, - [4253] = {.lex_state = 164, .external_lex_state = 5}, - [4254] = {.lex_state = 150}, - [4255] = {.lex_state = 173}, - [4256] = {.lex_state = 150}, - [4257] = {.lex_state = 150}, - [4258] = {.lex_state = 173}, - [4259] = {.lex_state = 164, .external_lex_state = 5}, - [4260] = {.lex_state = 164, .external_lex_state = 5}, - [4261] = {.lex_state = 173}, - [4262] = {.lex_state = 173}, - [4263] = {.lex_state = 173}, - [4264] = {.lex_state = 173}, - [4265] = {.lex_state = 173}, - [4266] = {.lex_state = 150}, - [4267] = {.lex_state = 150}, - [4268] = {.lex_state = 150}, - [4269] = {.lex_state = 150}, - [4270] = {.lex_state = 173}, - [4271] = {.lex_state = 173}, - [4272] = {.lex_state = 173}, - [4273] = {.lex_state = 173}, - [4274] = {.lex_state = 150}, - [4275] = {.lex_state = 172, .external_lex_state = 17}, - [4276] = {.lex_state = 173}, - [4277] = {.lex_state = 150}, - [4278] = {.lex_state = 173}, - [4279] = {.lex_state = 150}, - [4280] = {.lex_state = 172, .external_lex_state = 17}, - [4281] = {.lex_state = 150}, - [4282] = {.lex_state = 173}, - [4283] = {.lex_state = 172, .external_lex_state = 17}, - [4284] = {.lex_state = 150}, - [4285] = {.lex_state = 150}, - [4286] = {.lex_state = 150}, - [4287] = {.lex_state = 172, .external_lex_state = 17}, - [4288] = {.lex_state = 150}, - [4289] = {.lex_state = 150}, - [4290] = {.lex_state = 150}, - [4291] = {.lex_state = 173}, - [4292] = {.lex_state = 150}, - [4293] = {.lex_state = 172, .external_lex_state = 17}, - [4294] = {.lex_state = 173}, - [4295] = {.lex_state = 173}, - [4296] = {.lex_state = 173}, - [4297] = {.lex_state = 150}, - [4298] = {.lex_state = 172, .external_lex_state = 17}, - [4299] = {.lex_state = 150}, - [4300] = {.lex_state = 150}, - [4301] = {.lex_state = 150}, - [4302] = {.lex_state = 150}, - [4303] = {.lex_state = 172, .external_lex_state = 18}, - [4304] = {.lex_state = 173}, - [4305] = {.lex_state = 157, .external_lex_state = 14}, - [4306] = {.lex_state = 150}, - [4307] = {.lex_state = 172, .external_lex_state = 18}, - [4308] = {.lex_state = 157, .external_lex_state = 14}, - [4309] = {.lex_state = 172, .external_lex_state = 18}, - [4310] = {.lex_state = 173}, - [4311] = {.lex_state = 173}, - [4312] = {.lex_state = 173}, - [4313] = {.lex_state = 173}, - [4314] = {.lex_state = 173}, - [4315] = {.lex_state = 173}, - [4316] = {.lex_state = 173}, - [4317] = {.lex_state = 150}, - [4318] = {.lex_state = 150}, - [4319] = {.lex_state = 150}, - [4320] = {.lex_state = 150}, - [4321] = {.lex_state = 150}, - [4322] = {.lex_state = 157, .external_lex_state = 16}, - [4323] = {.lex_state = 172, .external_lex_state = 17}, - [4324] = {.lex_state = 172, .external_lex_state = 17}, - [4325] = {.lex_state = 164, .external_lex_state = 5}, - [4326] = {.lex_state = 318, .external_lex_state = 17}, - [4327] = {.lex_state = 108}, - [4328] = {.lex_state = 164, .external_lex_state = 5}, - [4329] = {.lex_state = 172, .external_lex_state = 17}, - [4330] = {.lex_state = 141}, - [4331] = {.lex_state = 164, .external_lex_state = 5}, - [4332] = {.lex_state = 108}, - [4333] = {.lex_state = 172, .external_lex_state = 17}, - [4334] = {.lex_state = 172, .external_lex_state = 18}, - [4335] = {.lex_state = 318, .external_lex_state = 17}, - [4336] = {.lex_state = 172, .external_lex_state = 17}, - [4337] = {.lex_state = 141, .external_lex_state = 14}, - [4338] = {.lex_state = 157, .external_lex_state = 14}, - [4339] = {.lex_state = 318, .external_lex_state = 17}, - [4340] = {.lex_state = 172, .external_lex_state = 17}, - [4341] = {.lex_state = 172, .external_lex_state = 17}, - [4342] = {.lex_state = 164, .external_lex_state = 6}, - [4343] = {.lex_state = 157, .external_lex_state = 16}, - [4344] = {.lex_state = 157, .external_lex_state = 16}, - [4345] = {.lex_state = 157, .external_lex_state = 14}, - [4346] = {.lex_state = 172, .external_lex_state = 17}, - [4347] = {.lex_state = 172, .external_lex_state = 17}, - [4348] = {.lex_state = 157, .external_lex_state = 14}, - [4349] = {.lex_state = 172, .external_lex_state = 17}, - [4350] = {.lex_state = 172, .external_lex_state = 17}, - [4351] = {.lex_state = 164, .external_lex_state = 6}, - [4352] = {.lex_state = 164, .external_lex_state = 6}, - [4353] = {.lex_state = 157, .external_lex_state = 14}, - [4354] = {.lex_state = 172, .external_lex_state = 18}, - [4355] = {.lex_state = 108}, - [4356] = {.lex_state = 172, .external_lex_state = 18}, - [4357] = {.lex_state = 172, .external_lex_state = 18}, - [4358] = {.lex_state = 164, .external_lex_state = 6}, - [4359] = {.lex_state = 157, .external_lex_state = 14}, - [4360] = {.lex_state = 172, .external_lex_state = 18}, - [4361] = {.lex_state = 172, .external_lex_state = 18}, - [4362] = {.lex_state = 157, .external_lex_state = 14}, - [4363] = {.lex_state = 150}, - [4364] = {.lex_state = 157, .external_lex_state = 16}, - [4365] = {.lex_state = 164, .external_lex_state = 5}, - [4366] = {.lex_state = 157, .external_lex_state = 16}, - [4367] = {.lex_state = 164, .external_lex_state = 5}, - [4368] = {.lex_state = 157, .external_lex_state = 14}, - [4369] = {.lex_state = 164, .external_lex_state = 6}, - [4370] = {.lex_state = 164, .external_lex_state = 5}, - [4371] = {.lex_state = 150}, - [4372] = {.lex_state = 164, .external_lex_state = 5}, - [4373] = {.lex_state = 157, .external_lex_state = 14}, - [4374] = {.lex_state = 157, .external_lex_state = 14}, - [4375] = {.lex_state = 157, .external_lex_state = 14}, - [4376] = {.lex_state = 172, .external_lex_state = 18}, - [4377] = {.lex_state = 164, .external_lex_state = 6}, - [4378] = {.lex_state = 164, .external_lex_state = 5}, - [4379] = {.lex_state = 164, .external_lex_state = 5}, - [4380] = {.lex_state = 150}, - [4381] = {.lex_state = 157, .external_lex_state = 16}, - [4382] = {.lex_state = 157, .external_lex_state = 16}, - [4383] = {.lex_state = 164, .external_lex_state = 5}, - [4384] = {.lex_state = 172, .external_lex_state = 18}, - [4385] = {.lex_state = 172, .external_lex_state = 18}, - [4386] = {.lex_state = 172, .external_lex_state = 18}, - [4387] = {.lex_state = 150}, - [4388] = {.lex_state = 164, .external_lex_state = 5}, - [4389] = {.lex_state = 157, .external_lex_state = 16}, - [4390] = {.lex_state = 164, .external_lex_state = 5}, - [4391] = {.lex_state = 150}, - [4392] = {.lex_state = 157, .external_lex_state = 16}, - [4393] = {.lex_state = 142, .external_lex_state = 14}, - [4394] = {.lex_state = 157, .external_lex_state = 14}, - [4395] = {.lex_state = 157, .external_lex_state = 16}, - [4396] = {.lex_state = 172, .external_lex_state = 18}, - [4397] = {.lex_state = 318, .external_lex_state = 14}, - [4398] = {.lex_state = 172, .external_lex_state = 18}, - [4399] = {.lex_state = 164, .external_lex_state = 5}, - [4400] = {.lex_state = 157, .external_lex_state = 16}, - [4401] = {.lex_state = 141, .external_lex_state = 14}, - [4402] = {.lex_state = 141, .external_lex_state = 14}, - [4403] = {.lex_state = 142, .external_lex_state = 14}, - [4404] = {.lex_state = 142, .external_lex_state = 14}, - [4405] = {.lex_state = 172, .external_lex_state = 18}, - [4406] = {.lex_state = 172, .external_lex_state = 18}, - [4407] = {.lex_state = 164, .external_lex_state = 5}, - [4408] = {.lex_state = 157, .external_lex_state = 16}, - [4409] = {.lex_state = 157, .external_lex_state = 14}, - [4410] = {.lex_state = 157, .external_lex_state = 14}, - [4411] = {.lex_state = 318, .external_lex_state = 14}, - [4412] = {.lex_state = 165}, - [4413] = {.lex_state = 164, .external_lex_state = 5}, - [4414] = {.lex_state = 164, .external_lex_state = 5}, - [4415] = {.lex_state = 164, .external_lex_state = 5}, - [4416] = {.lex_state = 164, .external_lex_state = 5}, - [4417] = {.lex_state = 157, .external_lex_state = 16}, - [4418] = {.lex_state = 172, .external_lex_state = 18}, - [4419] = {.lex_state = 157, .external_lex_state = 16}, - [4420] = {.lex_state = 318, .external_lex_state = 14}, - [4421] = {.lex_state = 157, .external_lex_state = 16}, - [4422] = {.lex_state = 172, .external_lex_state = 18}, - [4423] = {.lex_state = 157, .external_lex_state = 14}, - [4424] = {.lex_state = 142}, - [4425] = {.lex_state = 164, .external_lex_state = 5}, - [4426] = {.lex_state = 164, .external_lex_state = 5}, - [4427] = {.lex_state = 164, .external_lex_state = 5}, - [4428] = {.lex_state = 172, .external_lex_state = 18}, - [4429] = {.lex_state = 164, .external_lex_state = 5}, - [4430] = {.lex_state = 157, .external_lex_state = 14}, - [4431] = {.lex_state = 157, .external_lex_state = 14}, - [4432] = {.lex_state = 164, .external_lex_state = 5}, - [4433] = {.lex_state = 164, .external_lex_state = 5}, - [4434] = {.lex_state = 164, .external_lex_state = 6}, - [4435] = {.lex_state = 172, .external_lex_state = 18}, - [4436] = {.lex_state = 157, .external_lex_state = 14}, - [4437] = {.lex_state = 157, .external_lex_state = 14}, - [4438] = {.lex_state = 164, .external_lex_state = 6}, - [4439] = {.lex_state = 164, .external_lex_state = 5}, - [4440] = {.lex_state = 164, .external_lex_state = 5}, - [4441] = {.lex_state = 157, .external_lex_state = 14}, - [4442] = {.lex_state = 157, .external_lex_state = 14}, - [4443] = {.lex_state = 157, .external_lex_state = 16}, - [4444] = {.lex_state = 157, .external_lex_state = 16}, - [4445] = {.lex_state = 157, .external_lex_state = 16}, - [4446] = {.lex_state = 164, .external_lex_state = 5}, - [4447] = {.lex_state = 142, .external_lex_state = 14}, - [4448] = {.lex_state = 164, .external_lex_state = 6}, - [4449] = {.lex_state = 164, .external_lex_state = 5}, - [4450] = {.lex_state = 164, .external_lex_state = 6}, - [4451] = {.lex_state = 164, .external_lex_state = 5}, - [4452] = {.lex_state = 157, .external_lex_state = 16}, - [4453] = {.lex_state = 164, .external_lex_state = 5}, - [4454] = {.lex_state = 172, .external_lex_state = 18}, - [4455] = {.lex_state = 172, .external_lex_state = 18}, - [4456] = {.lex_state = 164, .external_lex_state = 5}, - [4457] = {.lex_state = 164, .external_lex_state = 6}, - [4458] = {.lex_state = 172, .external_lex_state = 18}, - [4459] = {.lex_state = 142, .external_lex_state = 14}, - [4460] = {.lex_state = 157, .external_lex_state = 16}, - [4461] = {.lex_state = 157, .external_lex_state = 14}, - [4462] = {.lex_state = 164, .external_lex_state = 6}, - [4463] = {.lex_state = 142, .external_lex_state = 14}, - [4464] = {.lex_state = 164, .external_lex_state = 5}, - [4465] = {.lex_state = 157, .external_lex_state = 16}, - [4466] = {.lex_state = 157, .external_lex_state = 16}, - [4467] = {.lex_state = 164, .external_lex_state = 5}, - [4468] = {.lex_state = 164, .external_lex_state = 5}, - [4469] = {.lex_state = 164, .external_lex_state = 6}, - [4470] = {.lex_state = 164, .external_lex_state = 5}, - [4471] = {.lex_state = 164, .external_lex_state = 5}, - [4472] = {.lex_state = 157, .external_lex_state = 16}, - [4473] = {.lex_state = 164, .external_lex_state = 5}, - [4474] = {.lex_state = 164, .external_lex_state = 5}, - [4475] = {.lex_state = 157, .external_lex_state = 16}, - [4476] = {.lex_state = 318, .external_lex_state = 18}, - [4477] = {.lex_state = 164, .external_lex_state = 5}, - [4478] = {.lex_state = 142, .external_lex_state = 14}, - [4479] = {.lex_state = 164, .external_lex_state = 5}, - [4480] = {.lex_state = 164, .external_lex_state = 6}, - [4481] = {.lex_state = 318, .external_lex_state = 18}, - [4482] = {.lex_state = 318, .external_lex_state = 18}, - [4483] = {.lex_state = 164, .external_lex_state = 6}, - [4484] = {.lex_state = 142, .external_lex_state = 14}, - [4485] = {.lex_state = 141, .external_lex_state = 14}, - [4486] = {.lex_state = 164, .external_lex_state = 5}, - [4487] = {.lex_state = 164, .external_lex_state = 5}, - [4488] = {.lex_state = 164, .external_lex_state = 5}, - [4489] = {.lex_state = 164, .external_lex_state = 6}, - [4490] = {.lex_state = 164, .external_lex_state = 6}, - [4491] = {.lex_state = 164, .external_lex_state = 5}, - [4492] = {.lex_state = 164, .external_lex_state = 5}, - [4493] = {.lex_state = 141, .external_lex_state = 14}, - [4494] = {.lex_state = 142, .external_lex_state = 14}, - [4495] = {.lex_state = 141}, - [4496] = {.lex_state = 142}, - [4497] = {.lex_state = 164, .external_lex_state = 6}, - [4498] = {.lex_state = 141, .external_lex_state = 14}, - [4499] = {.lex_state = 141, .external_lex_state = 14}, - [4500] = {.lex_state = 164, .external_lex_state = 5}, - [4501] = {.lex_state = 141, .external_lex_state = 14}, - [4502] = {.lex_state = 164, .external_lex_state = 5}, - [4503] = {.lex_state = 164, .external_lex_state = 5}, - [4504] = {.lex_state = 164, .external_lex_state = 6}, - [4505] = {.lex_state = 164, .external_lex_state = 6}, - [4506] = {.lex_state = 164, .external_lex_state = 6}, - [4507] = {.lex_state = 164, .external_lex_state = 6}, - [4508] = {.lex_state = 164, .external_lex_state = 6}, - [4509] = {.lex_state = 142}, - [4510] = {.lex_state = 164, .external_lex_state = 6}, - [4511] = {.lex_state = 164, .external_lex_state = 6}, - [4512] = {.lex_state = 164, .external_lex_state = 6}, - [4513] = {.lex_state = 164, .external_lex_state = 6}, - [4514] = {.lex_state = 142, .external_lex_state = 14}, - [4515] = {.lex_state = 141, .external_lex_state = 14}, - [4516] = {.lex_state = 164, .external_lex_state = 6}, - [4517] = {.lex_state = 142, .external_lex_state = 14}, - [4518] = {.lex_state = 142}, - [4519] = {.lex_state = 164, .external_lex_state = 6}, - [4520] = {.lex_state = 164, .external_lex_state = 6}, - [4521] = {.lex_state = 141}, - [4522] = {.lex_state = 141, .external_lex_state = 14}, - [4523] = {.lex_state = 164, .external_lex_state = 6}, - [4524] = {.lex_state = 164, .external_lex_state = 6}, - [4525] = {.lex_state = 141, .external_lex_state = 14}, - [4526] = {.lex_state = 164, .external_lex_state = 6}, - [4527] = {.lex_state = 165}, - [4528] = {.lex_state = 165}, - [4529] = {.lex_state = 164, .external_lex_state = 6}, - [4530] = {.lex_state = 164, .external_lex_state = 6}, - [4531] = {.lex_state = 164, .external_lex_state = 6}, - [4532] = {.lex_state = 171}, - [4533] = {.lex_state = 318, .external_lex_state = 16}, - [4534] = {.lex_state = 164, .external_lex_state = 6}, - [4535] = {.lex_state = 318, .external_lex_state = 16}, - [4536] = {.lex_state = 141}, - [4537] = {.lex_state = 164, .external_lex_state = 6}, - [4538] = {.lex_state = 165}, - [4539] = {.lex_state = 164, .external_lex_state = 6}, - [4540] = {.lex_state = 164, .external_lex_state = 6}, - [4541] = {.lex_state = 164, .external_lex_state = 6}, - [4542] = {.lex_state = 164, .external_lex_state = 6}, - [4543] = {.lex_state = 171}, - [4544] = {.lex_state = 164, .external_lex_state = 6}, - [4545] = {.lex_state = 318, .external_lex_state = 16}, - [4546] = {.lex_state = 165}, - [4547] = {.lex_state = 150}, - [4548] = {.lex_state = 171}, - [4549] = {.lex_state = 165}, - [4550] = {.lex_state = 164, .external_lex_state = 6}, - [4551] = {.lex_state = 150}, - [4552] = {.lex_state = 164, .external_lex_state = 6}, - [4553] = {.lex_state = 171}, - [4554] = {.lex_state = 164, .external_lex_state = 6}, - [4555] = {.lex_state = 164, .external_lex_state = 6}, - [4556] = {.lex_state = 164, .external_lex_state = 6}, - [4557] = {.lex_state = 171}, - [4558] = {.lex_state = 142, .external_lex_state = 14}, - [4559] = {.lex_state = 164, .external_lex_state = 6}, - [4560] = {.lex_state = 171}, - [4561] = {.lex_state = 165}, - [4562] = {.lex_state = 171}, - [4563] = {.lex_state = 142, .external_lex_state = 14}, - [4564] = {.lex_state = 165}, - [4565] = {.lex_state = 164, .external_lex_state = 6}, - [4566] = {.lex_state = 142, .external_lex_state = 14}, - [4567] = {.lex_state = 141, .external_lex_state = 14}, - [4568] = {.lex_state = 164, .external_lex_state = 6}, - [4569] = {.lex_state = 164, .external_lex_state = 6}, - [4570] = {.lex_state = 141, .external_lex_state = 14}, - [4571] = {.lex_state = 164, .external_lex_state = 6}, - [4572] = {.lex_state = 164, .external_lex_state = 6}, - [4573] = {.lex_state = 171}, - [4574] = {.lex_state = 150}, - [4575] = {.lex_state = 142, .external_lex_state = 14}, - [4576] = {.lex_state = 171}, - [4577] = {.lex_state = 141}, - [4578] = {.lex_state = 166, .external_lex_state = 16}, - [4579] = {.lex_state = 165}, - [4580] = {.lex_state = 165}, - [4581] = {.lex_state = 318}, - [4582] = {.lex_state = 165}, - [4583] = {.lex_state = 173}, - [4584] = {.lex_state = 318}, - [4585] = {.lex_state = 318}, - [4586] = {.lex_state = 165}, - [4587] = {.lex_state = 171}, - [4588] = {.lex_state = 165}, - [4589] = {.lex_state = 318}, - [4590] = {.lex_state = 171}, - [4591] = {.lex_state = 142, .external_lex_state = 14}, - [4592] = {.lex_state = 165}, - [4593] = {.lex_state = 166}, - [4594] = {.lex_state = 318}, - [4595] = {.lex_state = 171}, - [4596] = {.lex_state = 141, .external_lex_state = 14}, - [4597] = {.lex_state = 173}, - [4598] = {.lex_state = 165}, - [4599] = {.lex_state = 157, .external_lex_state = 16}, - [4600] = {.lex_state = 171}, - [4601] = {.lex_state = 318}, - [4602] = {.lex_state = 318}, - [4603] = {.lex_state = 141}, - [4604] = {.lex_state = 141, .external_lex_state = 14}, - [4605] = {.lex_state = 142, .external_lex_state = 14}, - [4606] = {.lex_state = 171}, - [4607] = {.lex_state = 142, .external_lex_state = 14}, - [4608] = {.lex_state = 141, .external_lex_state = 14}, - [4609] = {.lex_state = 142, .external_lex_state = 14}, - [4610] = {.lex_state = 141, .external_lex_state = 14}, - [4611] = {.lex_state = 171}, - [4612] = {.lex_state = 141, .external_lex_state = 14}, - [4613] = {.lex_state = 142, .external_lex_state = 14}, - [4614] = {.lex_state = 165}, - [4615] = {.lex_state = 318}, - [4616] = {.lex_state = 173}, - [4617] = {.lex_state = 166}, - [4618] = {.lex_state = 166}, - [4619] = {.lex_state = 171}, - [4620] = {.lex_state = 142, .external_lex_state = 14}, - [4621] = {.lex_state = 171}, - [4622] = {.lex_state = 171}, - [4623] = {.lex_state = 173}, - [4624] = {.lex_state = 142, .external_lex_state = 14}, - [4625] = {.lex_state = 142, .external_lex_state = 14}, - [4626] = {.lex_state = 142, .external_lex_state = 14}, - [4627] = {.lex_state = 165}, - [4628] = {.lex_state = 142, .external_lex_state = 14}, - [4629] = {.lex_state = 171}, - [4630] = {.lex_state = 141, .external_lex_state = 14}, - [4631] = {.lex_state = 141, .external_lex_state = 14}, - [4632] = {.lex_state = 166}, - [4633] = {.lex_state = 168}, - [4634] = {.lex_state = 142, .external_lex_state = 14}, - [4635] = {.lex_state = 142, .external_lex_state = 14}, - [4636] = {.lex_state = 141, .external_lex_state = 14}, - [4637] = {.lex_state = 142, .external_lex_state = 14}, - [4638] = {.lex_state = 165}, - [4639] = {.lex_state = 165}, - [4640] = {.lex_state = 165}, - [4641] = {.lex_state = 142, .external_lex_state = 14}, - [4642] = {.lex_state = 142, .external_lex_state = 14}, - [4643] = {.lex_state = 141, .external_lex_state = 14}, - [4644] = {.lex_state = 141, .external_lex_state = 14}, - [4645] = {.lex_state = 165}, - [4646] = {.lex_state = 108}, - [4647] = {.lex_state = 168}, - [4648] = {.lex_state = 165}, - [4649] = {.lex_state = 165}, - [4650] = {.lex_state = 142, .external_lex_state = 14}, - [4651] = {.lex_state = 166}, - [4652] = {.lex_state = 318, .external_lex_state = 16}, - [4653] = {.lex_state = 108}, - [4654] = {.lex_state = 168}, - [4655] = {.lex_state = 141, .external_lex_state = 14}, - [4656] = {.lex_state = 141, .external_lex_state = 14}, - [4657] = {.lex_state = 165}, - [4658] = {.lex_state = 141, .external_lex_state = 14}, - [4659] = {.lex_state = 141, .external_lex_state = 14}, - [4660] = {.lex_state = 141, .external_lex_state = 14}, - [4661] = {.lex_state = 141, .external_lex_state = 14}, - [4662] = {.lex_state = 157, .external_lex_state = 16}, - [4663] = {.lex_state = 173}, - [4664] = {.lex_state = 165}, - [4665] = {.lex_state = 172, .external_lex_state = 17}, - [4666] = {.lex_state = 165}, - [4667] = {.lex_state = 157, .external_lex_state = 16}, - [4668] = {.lex_state = 165}, - [4669] = {.lex_state = 318, .external_lex_state = 16}, - [4670] = {.lex_state = 318, .external_lex_state = 16}, - [4671] = {.lex_state = 165}, - [4672] = {.lex_state = 173}, - [4673] = {.lex_state = 165}, - [4674] = {.lex_state = 108}, - [4675] = {.lex_state = 171}, - [4676] = {.lex_state = 165}, - [4677] = {.lex_state = 165}, - [4678] = {.lex_state = 318, .external_lex_state = 16}, - [4679] = {.lex_state = 165}, - [4680] = {.lex_state = 165}, - [4681] = {.lex_state = 171}, - [4682] = {.lex_state = 171}, - [4683] = {.lex_state = 165}, - [4684] = {.lex_state = 157}, - [4685] = {.lex_state = 152, .external_lex_state = 16}, - [4686] = {.lex_state = 172, .external_lex_state = 18}, - [4687] = {.lex_state = 171}, - [4688] = {.lex_state = 171}, - [4689] = {.lex_state = 108}, - [4690] = {.lex_state = 171}, - [4691] = {.lex_state = 171}, - [4692] = {.lex_state = 165}, - [4693] = {.lex_state = 318, .external_lex_state = 16}, - [4694] = {.lex_state = 108}, - [4695] = {.lex_state = 171}, - [4696] = {.lex_state = 165}, - [4697] = {.lex_state = 171}, - [4698] = {.lex_state = 318, .external_lex_state = 14}, - [4699] = {.lex_state = 165}, - [4700] = {.lex_state = 318, .external_lex_state = 16}, - [4701] = {.lex_state = 318, .external_lex_state = 16}, - [4702] = {.lex_state = 157}, - [4703] = {.lex_state = 165}, - [4704] = {.lex_state = 166}, - [4705] = {.lex_state = 108}, - [4706] = {.lex_state = 171}, - [4707] = {.lex_state = 165}, - [4708] = {.lex_state = 165}, - [4709] = {.lex_state = 318, .external_lex_state = 16}, - [4710] = {.lex_state = 318, .external_lex_state = 16}, - [4711] = {.lex_state = 165}, - [4712] = {.lex_state = 171}, - [4713] = {.lex_state = 168}, - [4714] = {.lex_state = 171}, - [4715] = {.lex_state = 157}, - [4716] = {.lex_state = 173}, - [4717] = {.lex_state = 110, .external_lex_state = 19}, - [4718] = {.lex_state = 110, .external_lex_state = 19}, - [4719] = {.lex_state = 166}, - [4720] = {.lex_state = 166}, - [4721] = {.lex_state = 166}, - [4722] = {.lex_state = 110, .external_lex_state = 19}, - [4723] = {.lex_state = 108}, - [4724] = {.lex_state = 110, .external_lex_state = 19}, - [4725] = {.lex_state = 108}, - [4726] = {.lex_state = 157}, - [4727] = {.lex_state = 157}, - [4728] = {.lex_state = 110, .external_lex_state = 19}, - [4729] = {.lex_state = 157}, - [4730] = {.lex_state = 110, .external_lex_state = 19}, - [4731] = {.lex_state = 110, .external_lex_state = 19}, - [4732] = {.lex_state = 166}, - [4733] = {.lex_state = 166}, - [4734] = {.lex_state = 166}, - [4735] = {.lex_state = 110, .external_lex_state = 19}, - [4736] = {.lex_state = 110, .external_lex_state = 19}, - [4737] = {.lex_state = 110, .external_lex_state = 19}, - [4738] = {.lex_state = 110, .external_lex_state = 19}, - [4739] = {.lex_state = 110, .external_lex_state = 19}, - [4740] = {.lex_state = 110, .external_lex_state = 19}, - [4741] = {.lex_state = 173}, - [4742] = {.lex_state = 173}, - [4743] = {.lex_state = 110, .external_lex_state = 19}, - [4744] = {.lex_state = 110, .external_lex_state = 19}, - [4745] = {.lex_state = 110, .external_lex_state = 19}, - [4746] = {.lex_state = 110, .external_lex_state = 19}, - [4747] = {.lex_state = 110, .external_lex_state = 19}, - [4748] = {.lex_state = 110, .external_lex_state = 19}, - [4749] = {.lex_state = 157, .external_lex_state = 14}, - [4750] = {.lex_state = 110, .external_lex_state = 19}, - [4751] = {.lex_state = 166}, - [4752] = {.lex_state = 110, .external_lex_state = 19}, - [4753] = {.lex_state = 166}, - [4754] = {.lex_state = 166}, - [4755] = {.lex_state = 166}, - [4756] = {.lex_state = 110, .external_lex_state = 19}, - [4757] = {.lex_state = 318, .external_lex_state = 16}, - [4758] = {.lex_state = 166}, - [4759] = {.lex_state = 110, .external_lex_state = 19}, - [4760] = {.lex_state = 110, .external_lex_state = 19}, - [4761] = {.lex_state = 110, .external_lex_state = 19}, - [4762] = {.lex_state = 166}, - [4763] = {.lex_state = 166}, - [4764] = {.lex_state = 166}, - [4765] = {.lex_state = 318, .external_lex_state = 16}, - [4766] = {.lex_state = 157}, - [4767] = {.lex_state = 173}, - [4768] = {.lex_state = 173}, - [4769] = {.lex_state = 166}, - [4770] = {.lex_state = 318, .external_lex_state = 16}, - [4771] = {.lex_state = 110, .external_lex_state = 19}, - [4772] = {.lex_state = 166}, - [4773] = {.lex_state = 318, .external_lex_state = 17}, - [4774] = {.lex_state = 110, .external_lex_state = 19}, - [4775] = {.lex_state = 166}, - [4776] = {.lex_state = 110, .external_lex_state = 19}, - [4777] = {.lex_state = 166}, - [4778] = {.lex_state = 318, .external_lex_state = 17}, - [4779] = {.lex_state = 166}, - [4780] = {.lex_state = 166}, - [4781] = {.lex_state = 318, .external_lex_state = 17}, - [4782] = {.lex_state = 166}, - [4783] = {.lex_state = 166}, - [4784] = {.lex_state = 166}, - [4785] = {.lex_state = 166}, - [4786] = {.lex_state = 110, .external_lex_state = 19}, - [4787] = {.lex_state = 318, .external_lex_state = 17}, - [4788] = {.lex_state = 166}, - [4789] = {.lex_state = 166}, - [4790] = {.lex_state = 166}, - [4791] = {.lex_state = 166}, - [4792] = {.lex_state = 166}, - [4793] = {.lex_state = 318, .external_lex_state = 17}, - [4794] = {.lex_state = 166}, - [4795] = {.lex_state = 318, .external_lex_state = 17}, - [4796] = {.lex_state = 166}, - [4797] = {.lex_state = 166}, - [4798] = {.lex_state = 166}, - [4799] = {.lex_state = 166}, - [4800] = {.lex_state = 166}, - [4801] = {.lex_state = 318, .external_lex_state = 17}, - [4802] = {.lex_state = 318, .external_lex_state = 17}, - [4803] = {.lex_state = 173}, - [4804] = {.lex_state = 318, .external_lex_state = 17}, - [4805] = {.lex_state = 110, .external_lex_state = 19}, - [4806] = {.lex_state = 166}, - [4807] = {.lex_state = 166}, - [4808] = {.lex_state = 318, .external_lex_state = 17}, - [4809] = {.lex_state = 166}, - [4810] = {.lex_state = 166}, - [4811] = {.lex_state = 110, .external_lex_state = 19}, - [4812] = {.lex_state = 110, .external_lex_state = 19}, - [4813] = {.lex_state = 166}, - [4814] = {.lex_state = 157}, - [4815] = {.lex_state = 166}, - [4816] = {.lex_state = 166}, - [4817] = {.lex_state = 157}, - [4818] = {.lex_state = 108}, - [4819] = {.lex_state = 166}, - [4820] = {.lex_state = 110, .external_lex_state = 19}, - [4821] = {.lex_state = 110, .external_lex_state = 19}, - [4822] = {.lex_state = 110, .external_lex_state = 19}, - [4823] = {.lex_state = 110, .external_lex_state = 19}, - [4824] = {.lex_state = 110, .external_lex_state = 19}, - [4825] = {.lex_state = 166}, - [4826] = {.lex_state = 166}, - [4827] = {.lex_state = 166}, - [4828] = {.lex_state = 110, .external_lex_state = 19}, - [4829] = {.lex_state = 110, .external_lex_state = 19}, - [4830] = {.lex_state = 110, .external_lex_state = 19}, - [4831] = {.lex_state = 110, .external_lex_state = 19}, - [4832] = {.lex_state = 110, .external_lex_state = 19}, - [4833] = {.lex_state = 110, .external_lex_state = 19}, - [4834] = {.lex_state = 318, .external_lex_state = 17}, - [4835] = {.lex_state = 318, .external_lex_state = 17}, - [4836] = {.lex_state = 159, .external_lex_state = 19}, - [4837] = {.lex_state = 318, .external_lex_state = 17}, - [4838] = {.lex_state = 159, .external_lex_state = 19}, - [4839] = {.lex_state = 159, .external_lex_state = 19}, - [4840] = {.lex_state = 159, .external_lex_state = 19}, - [4841] = {.lex_state = 318, .external_lex_state = 18}, - [4842] = {.lex_state = 159, .external_lex_state = 19}, - [4843] = {.lex_state = 159, .external_lex_state = 19}, - [4844] = {.lex_state = 159, .external_lex_state = 19}, - [4845] = {.lex_state = 159, .external_lex_state = 19}, - [4846] = {.lex_state = 159, .external_lex_state = 19}, - [4847] = {.lex_state = 166, .external_lex_state = 14}, - [4848] = {.lex_state = 166, .external_lex_state = 14}, - [4849] = {.lex_state = 318, .external_lex_state = 17}, - [4850] = {.lex_state = 318, .external_lex_state = 17}, - [4851] = {.lex_state = 157, .external_lex_state = 16}, - [4852] = {.lex_state = 157}, - [4853] = {.lex_state = 159, .external_lex_state = 19}, - [4854] = {.lex_state = 318, .external_lex_state = 18}, - [4855] = {.lex_state = 159, .external_lex_state = 19}, - [4856] = {.lex_state = 318, .external_lex_state = 18}, - [4857] = {.lex_state = 318, .external_lex_state = 17}, - [4858] = {.lex_state = 159, .external_lex_state = 19}, - [4859] = {.lex_state = 168, .external_lex_state = 14}, - [4860] = {.lex_state = 159, .external_lex_state = 19}, - [4861] = {.lex_state = 159, .external_lex_state = 19}, - [4862] = {.lex_state = 159, .external_lex_state = 19}, - [4863] = {.lex_state = 318, .external_lex_state = 17}, - [4864] = {.lex_state = 318, .external_lex_state = 18}, - [4865] = {.lex_state = 318, .external_lex_state = 18}, - [4866] = {.lex_state = 159, .external_lex_state = 19}, - [4867] = {.lex_state = 318, .external_lex_state = 17}, - [4868] = {.lex_state = 159, .external_lex_state = 19}, - [4869] = {.lex_state = 159, .external_lex_state = 19}, - [4870] = {.lex_state = 159, .external_lex_state = 19}, - [4871] = {.lex_state = 159, .external_lex_state = 19}, - [4872] = {.lex_state = 159, .external_lex_state = 19}, - [4873] = {.lex_state = 318, .external_lex_state = 18}, - [4874] = {.lex_state = 159, .external_lex_state = 19}, - [4875] = {.lex_state = 159, .external_lex_state = 19}, - [4876] = {.lex_state = 159, .external_lex_state = 19}, - [4877] = {.lex_state = 318, .external_lex_state = 14}, - [4878] = {.lex_state = 318, .external_lex_state = 18}, - [4879] = {.lex_state = 318, .external_lex_state = 17}, - [4880] = {.lex_state = 159, .external_lex_state = 19}, - [4881] = {.lex_state = 159, .external_lex_state = 19}, - [4882] = {.lex_state = 318, .external_lex_state = 17}, - [4883] = {.lex_state = 318, .external_lex_state = 17}, - [4884] = {.lex_state = 318, .external_lex_state = 18}, - [4885] = {.lex_state = 159, .external_lex_state = 19}, - [4886] = {.lex_state = 159, .external_lex_state = 19}, - [4887] = {.lex_state = 159, .external_lex_state = 19}, - [4888] = {.lex_state = 318, .external_lex_state = 18}, - [4889] = {.lex_state = 159, .external_lex_state = 19}, - [4890] = {.lex_state = 159, .external_lex_state = 19}, - [4891] = {.lex_state = 168, .external_lex_state = 14}, - [4892] = {.lex_state = 318, .external_lex_state = 17}, - [4893] = {.lex_state = 318, .external_lex_state = 17}, - [4894] = {.lex_state = 168, .external_lex_state = 14}, - [4895] = {.lex_state = 318, .external_lex_state = 16}, - [4896] = {.lex_state = 159, .external_lex_state = 19}, - [4897] = {.lex_state = 159, .external_lex_state = 19}, - [4898] = {.lex_state = 159, .external_lex_state = 19}, - [4899] = {.lex_state = 318, .external_lex_state = 17}, - [4900] = {.lex_state = 159, .external_lex_state = 19}, - [4901] = {.lex_state = 159, .external_lex_state = 19}, - [4902] = {.lex_state = 318, .external_lex_state = 17}, - [4903] = {.lex_state = 318, .external_lex_state = 17}, - [4904] = {.lex_state = 318, .external_lex_state = 17}, - [4905] = {.lex_state = 159, .external_lex_state = 19}, - [4906] = {.lex_state = 157}, - [4907] = {.lex_state = 318, .external_lex_state = 14}, - [4908] = {.lex_state = 318, .external_lex_state = 14}, - [4909] = {.lex_state = 318, .external_lex_state = 14}, - [4910] = {.lex_state = 318, .external_lex_state = 14}, - [4911] = {.lex_state = 159, .external_lex_state = 19}, - [4912] = {.lex_state = 159, .external_lex_state = 19}, - [4913] = {.lex_state = 318, .external_lex_state = 14}, - [4914] = {.lex_state = 159, .external_lex_state = 19}, - [4915] = {.lex_state = 318, .external_lex_state = 14}, - [4916] = {.lex_state = 318, .external_lex_state = 18}, - [4917] = {.lex_state = 159, .external_lex_state = 19}, - [4918] = {.lex_state = 318, .external_lex_state = 14}, - [4919] = {.lex_state = 318, .external_lex_state = 14}, - [4920] = {.lex_state = 159, .external_lex_state = 19}, - [4921] = {.lex_state = 159, .external_lex_state = 19}, - [4922] = {.lex_state = 318, .external_lex_state = 16}, - [4923] = {.lex_state = 318, .external_lex_state = 14}, - [4924] = {.lex_state = 142, .external_lex_state = 14}, - [4925] = {.lex_state = 173}, - [4926] = {.lex_state = 318, .external_lex_state = 16}, - [4927] = {.lex_state = 318, .external_lex_state = 14}, - [4928] = {.lex_state = 318, .external_lex_state = 14}, - [4929] = {.lex_state = 318, .external_lex_state = 18}, - [4930] = {.lex_state = 166, .external_lex_state = 14}, - [4931] = {.lex_state = 318, .external_lex_state = 14}, - [4932] = {.lex_state = 173}, - [4933] = {.lex_state = 318, .external_lex_state = 14}, - [4934] = {.lex_state = 318, .external_lex_state = 14}, - [4935] = {.lex_state = 142, .external_lex_state = 14}, - [4936] = {.lex_state = 318, .external_lex_state = 18}, - [4937] = {.lex_state = 318, .external_lex_state = 14}, - [4938] = {.lex_state = 318, .external_lex_state = 14}, - [4939] = {.lex_state = 318, .external_lex_state = 18}, - [4940] = {.lex_state = 318, .external_lex_state = 14}, - [4941] = {.lex_state = 318, .external_lex_state = 16}, - [4942] = {.lex_state = 318, .external_lex_state = 14}, - [4943] = {.lex_state = 318, .external_lex_state = 18}, - [4944] = {.lex_state = 318, .external_lex_state = 18}, - [4945] = {.lex_state = 318, .external_lex_state = 18}, - [4946] = {.lex_state = 318, .external_lex_state = 14}, - [4947] = {.lex_state = 157}, - [4948] = {.lex_state = 141}, - [4949] = {.lex_state = 166, .external_lex_state = 14}, - [4950] = {.lex_state = 141}, - [4951] = {.lex_state = 318, .external_lex_state = 16}, - [4952] = {.lex_state = 142, .external_lex_state = 14}, - [4953] = {.lex_state = 318, .external_lex_state = 18}, - [4954] = {.lex_state = 142, .external_lex_state = 14}, - [4955] = {.lex_state = 168, .external_lex_state = 14}, - [4956] = {.lex_state = 318, .external_lex_state = 16}, - [4957] = {.lex_state = 318, .external_lex_state = 18}, - [4958] = {.lex_state = 142}, - [4959] = {.lex_state = 142}, - [4960] = {.lex_state = 142}, - [4961] = {.lex_state = 318, .external_lex_state = 18}, - [4962] = {.lex_state = 111, .external_lex_state = 19}, - [4963] = {.lex_state = 157}, - [4964] = {.lex_state = 318, .external_lex_state = 16}, - [4965] = {.lex_state = 318, .external_lex_state = 16}, - [4966] = {.lex_state = 318, .external_lex_state = 18}, - [4967] = {.lex_state = 318, .external_lex_state = 18}, - [4968] = {.lex_state = 318, .external_lex_state = 18}, - [4969] = {.lex_state = 318, .external_lex_state = 18}, - [4970] = {.lex_state = 318, .external_lex_state = 14}, - [4971] = {.lex_state = 318, .external_lex_state = 18}, - [4972] = {.lex_state = 142}, - [4973] = {.lex_state = 318, .external_lex_state = 14}, - [4974] = {.lex_state = 318, .external_lex_state = 14}, - [4975] = {.lex_state = 157}, - [4976] = {.lex_state = 318, .external_lex_state = 16}, - [4977] = {.lex_state = 318, .external_lex_state = 18}, - [4978] = {.lex_state = 318, .external_lex_state = 16}, - [4979] = {.lex_state = 142, .external_lex_state = 14}, - [4980] = {.lex_state = 142, .external_lex_state = 14}, - [4981] = {.lex_state = 157}, - [4982] = {.lex_state = 141}, - [4983] = {.lex_state = 166, .external_lex_state = 14}, - [4984] = {.lex_state = 142}, - [4985] = {.lex_state = 142}, - [4986] = {.lex_state = 166, .external_lex_state = 14}, - [4987] = {.lex_state = 318, .external_lex_state = 14}, - [4988] = {.lex_state = 166, .external_lex_state = 14}, - [4989] = {.lex_state = 111, .external_lex_state = 19}, - [4990] = {.lex_state = 111, .external_lex_state = 19}, - [4991] = {.lex_state = 173}, - [4992] = {.lex_state = 318, .external_lex_state = 14}, - [4993] = {.lex_state = 173}, - [4994] = {.lex_state = 318, .external_lex_state = 14}, - [4995] = {.lex_state = 318, .external_lex_state = 18}, - [4996] = {.lex_state = 318, .external_lex_state = 18}, - [4997] = {.lex_state = 142, .external_lex_state = 14}, - [4998] = {.lex_state = 171}, - [4999] = {.lex_state = 166, .external_lex_state = 14}, - [5000] = {.lex_state = 160, .external_lex_state = 19}, - [5001] = {.lex_state = 166, .external_lex_state = 14}, - [5002] = {.lex_state = 160, .external_lex_state = 19}, - [5003] = {.lex_state = 173}, - [5004] = {.lex_state = 318, .external_lex_state = 16}, - [5005] = {.lex_state = 160, .external_lex_state = 19}, - [5006] = {.lex_state = 166}, - [5007] = {.lex_state = 166, .external_lex_state = 14}, - [5008] = {.lex_state = 318, .external_lex_state = 16}, - [5009] = {.lex_state = 160, .external_lex_state = 19}, - [5010] = {.lex_state = 318}, - [5011] = {.lex_state = 157}, - [5012] = {.lex_state = 166, .external_lex_state = 14}, - [5013] = {.lex_state = 166, .external_lex_state = 14}, - [5014] = {.lex_state = 166, .external_lex_state = 14}, - [5015] = {.lex_state = 173}, - [5016] = {.lex_state = 166, .external_lex_state = 14}, - [5017] = {.lex_state = 157}, - [5018] = {.lex_state = 166, .external_lex_state = 14}, - [5019] = {.lex_state = 160, .external_lex_state = 19}, - [5020] = {.lex_state = 318}, - [5021] = {.lex_state = 318, .external_lex_state = 16}, - [5022] = {.lex_state = 160, .external_lex_state = 19}, - [5023] = {.lex_state = 166}, - [5024] = {.lex_state = 160, .external_lex_state = 19}, - [5025] = {.lex_state = 173}, - [5026] = {.lex_state = 166, .external_lex_state = 14}, - [5027] = {.lex_state = 157, .external_lex_state = 14}, - [5028] = {.lex_state = 157, .external_lex_state = 14}, - [5029] = {.lex_state = 166, .external_lex_state = 14}, - [5030] = {.lex_state = 160, .external_lex_state = 19}, - [5031] = {.lex_state = 142, .external_lex_state = 14}, - [5032] = {.lex_state = 157, .external_lex_state = 14}, - [5033] = {.lex_state = 166}, - [5034] = {.lex_state = 166}, - [5035] = {.lex_state = 318, .external_lex_state = 16}, - [5036] = {.lex_state = 160, .external_lex_state = 19}, - [5037] = {.lex_state = 318, .external_lex_state = 16}, - [5038] = {.lex_state = 166}, - [5039] = {.lex_state = 166}, - [5040] = {.lex_state = 166}, - [5041] = {.lex_state = 157, .external_lex_state = 14}, - [5042] = {.lex_state = 166}, - [5043] = {.lex_state = 318, .external_lex_state = 16}, - [5044] = {.lex_state = 160, .external_lex_state = 19}, - [5045] = {.lex_state = 157}, - [5046] = {.lex_state = 142, .external_lex_state = 14}, - [5047] = {.lex_state = 318}, - [5048] = {.lex_state = 173}, - [5049] = {.lex_state = 166}, - [5050] = {.lex_state = 166}, - [5051] = {.lex_state = 157}, - [5052] = {.lex_state = 166}, - [5053] = {.lex_state = 166}, - [5054] = {.lex_state = 157}, - [5055] = {.lex_state = 166, .external_lex_state = 14}, - [5056] = {.lex_state = 166}, - [5057] = {.lex_state = 318, .external_lex_state = 16}, - [5058] = {.lex_state = 157}, - [5059] = {.lex_state = 171}, - [5060] = {.lex_state = 160, .external_lex_state = 19}, - [5061] = {.lex_state = 160, .external_lex_state = 19}, - [5062] = {.lex_state = 318}, - [5063] = {.lex_state = 318}, - [5064] = {.lex_state = 166}, - [5065] = {.lex_state = 160, .external_lex_state = 19}, - [5066] = {.lex_state = 160, .external_lex_state = 19}, - [5067] = {.lex_state = 166}, - [5068] = {.lex_state = 166}, - [5069] = {.lex_state = 166}, - [5070] = {.lex_state = 166}, - [5071] = {.lex_state = 166}, - [5072] = {.lex_state = 166}, - [5073] = {.lex_state = 157}, - [5074] = {.lex_state = 166}, - [5075] = {.lex_state = 166}, - [5076] = {.lex_state = 166, .external_lex_state = 14}, - [5077] = {.lex_state = 160, .external_lex_state = 19}, - [5078] = {.lex_state = 318, .external_lex_state = 16}, - [5079] = {.lex_state = 318, .external_lex_state = 16}, - [5080] = {.lex_state = 318, .external_lex_state = 16}, - [5081] = {.lex_state = 166}, - [5082] = {.lex_state = 318, .external_lex_state = 16}, - [5083] = {.lex_state = 173}, - [5084] = {.lex_state = 166}, - [5085] = {.lex_state = 160, .external_lex_state = 19}, - [5086] = {.lex_state = 166}, - [5087] = {.lex_state = 166}, - [5088] = {.lex_state = 166}, - [5089] = {.lex_state = 166}, - [5090] = {.lex_state = 166}, - [5091] = {.lex_state = 157}, - [5092] = {.lex_state = 166}, - [5093] = {.lex_state = 318, .external_lex_state = 16}, - [5094] = {.lex_state = 166, .external_lex_state = 14}, - [5095] = {.lex_state = 166}, - [5096] = {.lex_state = 157}, - [5097] = {.lex_state = 160, .external_lex_state = 19}, - [5098] = {.lex_state = 173}, - [5099] = {.lex_state = 166}, - [5100] = {.lex_state = 166, .external_lex_state = 14}, - [5101] = {.lex_state = 157}, - [5102] = {.lex_state = 166}, - [5103] = {.lex_state = 318, .external_lex_state = 16}, - [5104] = {.lex_state = 160, .external_lex_state = 19}, - [5105] = {.lex_state = 166}, - [5106] = {.lex_state = 160, .external_lex_state = 19}, - [5107] = {.lex_state = 166}, - [5108] = {.lex_state = 160, .external_lex_state = 19}, - [5109] = {.lex_state = 157}, - [5110] = {.lex_state = 160, .external_lex_state = 19}, - [5111] = {.lex_state = 160, .external_lex_state = 19}, - [5112] = {.lex_state = 166}, - [5113] = {.lex_state = 166}, - [5114] = {.lex_state = 166}, - [5115] = {.lex_state = 166}, - [5116] = {.lex_state = 166}, - [5117] = {.lex_state = 318}, - [5118] = {.lex_state = 160, .external_lex_state = 19}, - [5119] = {.lex_state = 173}, - [5120] = {.lex_state = 166, .external_lex_state = 14}, - [5121] = {.lex_state = 318}, - [5122] = {.lex_state = 157}, - [5123] = {.lex_state = 173}, - [5124] = {.lex_state = 166}, - [5125] = {.lex_state = 166}, - [5126] = {.lex_state = 160, .external_lex_state = 19}, - [5127] = {.lex_state = 157}, - [5128] = {.lex_state = 157}, - [5129] = {.lex_state = 157}, - [5130] = {.lex_state = 318, .external_lex_state = 16}, - [5131] = {.lex_state = 166}, - [5132] = {.lex_state = 142, .external_lex_state = 14}, - [5133] = {.lex_state = 142, .external_lex_state = 14}, - [5134] = {.lex_state = 160, .external_lex_state = 19}, - [5135] = {.lex_state = 318, .external_lex_state = 16}, - [5136] = {.lex_state = 171}, - [5137] = {.lex_state = 318, .external_lex_state = 16}, - [5138] = {.lex_state = 166}, - [5139] = {.lex_state = 160, .external_lex_state = 19}, - [5140] = {.lex_state = 160, .external_lex_state = 19}, - [5141] = {.lex_state = 166}, - [5142] = {.lex_state = 160, .external_lex_state = 19}, - [5143] = {.lex_state = 318, .external_lex_state = 16}, - [5144] = {.lex_state = 160, .external_lex_state = 19}, - [5145] = {.lex_state = 157}, - [5146] = {.lex_state = 157}, - [5147] = {.lex_state = 157}, - [5148] = {.lex_state = 160, .external_lex_state = 19}, - [5149] = {.lex_state = 166}, - [5150] = {.lex_state = 166}, - [5151] = {.lex_state = 160, .external_lex_state = 19}, - [5152] = {.lex_state = 166}, - [5153] = {.lex_state = 166}, - [5154] = {.lex_state = 160, .external_lex_state = 19}, - [5155] = {.lex_state = 157}, - [5156] = {.lex_state = 142, .external_lex_state = 14}, - [5157] = {.lex_state = 160, .external_lex_state = 19}, - [5158] = {.lex_state = 157}, - [5159] = {.lex_state = 157}, - [5160] = {.lex_state = 157}, - [5161] = {.lex_state = 157}, - [5162] = {.lex_state = 157}, - [5163] = {.lex_state = 142, .external_lex_state = 14}, - [5164] = {.lex_state = 157}, - [5165] = {.lex_state = 157}, - [5166] = {.lex_state = 160, .external_lex_state = 19}, - [5167] = {.lex_state = 157}, - [5168] = {.lex_state = 157}, - [5169] = {.lex_state = 318}, - [5170] = {.lex_state = 157}, - [5171] = {.lex_state = 157}, - [5172] = {.lex_state = 157}, - [5173] = {.lex_state = 157}, - [5174] = {.lex_state = 157}, - [5175] = {.lex_state = 318}, - [5176] = {.lex_state = 160, .external_lex_state = 19}, - [5177] = {.lex_state = 157}, - [5178] = {.lex_state = 157}, - [5179] = {.lex_state = 157}, - [5180] = {.lex_state = 160, .external_lex_state = 19}, - [5181] = {.lex_state = 157}, - [5182] = {.lex_state = 166, .external_lex_state = 14}, - [5183] = {.lex_state = 157}, - [5184] = {.lex_state = 160, .external_lex_state = 19}, - [5185] = {.lex_state = 318}, - [5186] = {.lex_state = 160, .external_lex_state = 19}, - [5187] = {.lex_state = 160, .external_lex_state = 19}, - [5188] = {.lex_state = 157}, - [5189] = {.lex_state = 160, .external_lex_state = 19}, - [5190] = {.lex_state = 157}, - [5191] = {.lex_state = 318, .external_lex_state = 16}, - [5192] = {.lex_state = 160, .external_lex_state = 19}, - [5193] = {.lex_state = 157}, - [5194] = {.lex_state = 160, .external_lex_state = 19}, - [5195] = {.lex_state = 157}, - [5196] = {.lex_state = 157}, - [5197] = {.lex_state = 318}, - [5198] = {.lex_state = 157}, - [5199] = {.lex_state = 157}, - [5200] = {.lex_state = 157}, - [5201] = {.lex_state = 318}, - [5202] = {.lex_state = 318, .external_lex_state = 16}, - [5203] = {.lex_state = 160, .external_lex_state = 19}, - [5204] = {.lex_state = 142, .external_lex_state = 14}, - [5205] = {.lex_state = 166}, - [5206] = {.lex_state = 142, .external_lex_state = 14}, - [5207] = {.lex_state = 166}, - [5208] = {.lex_state = 157}, - [5209] = {.lex_state = 166, .external_lex_state = 14}, - [5210] = {.lex_state = 166, .external_lex_state = 14}, - [5211] = {.lex_state = 157}, - [5212] = {.lex_state = 166}, - [5213] = {.lex_state = 157}, - [5214] = {.lex_state = 162, .external_lex_state = 19}, - [5215] = {.lex_state = 157}, - [5216] = {.lex_state = 157}, - [5217] = {.lex_state = 157}, - [5218] = {.lex_state = 166, .external_lex_state = 14}, - [5219] = {.lex_state = 166, .external_lex_state = 14}, - [5220] = {.lex_state = 166}, - [5221] = {.lex_state = 157}, - [5222] = {.lex_state = 157}, - [5223] = {.lex_state = 166}, - [5224] = {.lex_state = 166}, - [5225] = {.lex_state = 166}, - [5226] = {.lex_state = 166}, - [5227] = {.lex_state = 166}, - [5228] = {.lex_state = 166}, - [5229] = {.lex_state = 166, .external_lex_state = 14}, - [5230] = {.lex_state = 166, .external_lex_state = 14}, - [5231] = {.lex_state = 162, .external_lex_state = 19}, - [5232] = {.lex_state = 157, .external_lex_state = 16}, - [5233] = {.lex_state = 166}, - [5234] = {.lex_state = 166}, - [5235] = {.lex_state = 166}, - [5236] = {.lex_state = 159, .external_lex_state = 19}, - [5237] = {.lex_state = 166, .external_lex_state = 14}, - [5238] = {.lex_state = 157, .external_lex_state = 16}, - [5239] = {.lex_state = 157}, - [5240] = {.lex_state = 157}, - [5241] = {.lex_state = 157}, - [5242] = {.lex_state = 166}, - [5243] = {.lex_state = 166}, - [5244] = {.lex_state = 157}, - [5245] = {.lex_state = 157}, - [5246] = {.lex_state = 157}, - [5247] = {.lex_state = 166, .external_lex_state = 14}, - [5248] = {.lex_state = 166}, - [5249] = {.lex_state = 166, .external_lex_state = 14}, - [5250] = {.lex_state = 166, .external_lex_state = 14}, - [5251] = {.lex_state = 166, .external_lex_state = 14}, - [5252] = {.lex_state = 157}, - [5253] = {.lex_state = 166, .external_lex_state = 14}, - [5254] = {.lex_state = 110, .external_lex_state = 19}, - [5255] = {.lex_state = 166}, - [5256] = {.lex_state = 110, .external_lex_state = 19}, - [5257] = {.lex_state = 166}, - [5258] = {.lex_state = 157}, - [5259] = {.lex_state = 166, .external_lex_state = 14}, - [5260] = {.lex_state = 166}, - [5261] = {.lex_state = 166}, - [5262] = {.lex_state = 166}, - [5263] = {.lex_state = 166}, - [5264] = {.lex_state = 166}, - [5265] = {.lex_state = 166}, - [5266] = {.lex_state = 110, .external_lex_state = 19}, - [5267] = {.lex_state = 166}, - [5268] = {.lex_state = 166}, - [5269] = {.lex_state = 166, .external_lex_state = 14}, - [5270] = {.lex_state = 157}, - [5271] = {.lex_state = 157, .external_lex_state = 16}, - [5272] = {.lex_state = 157}, - [5273] = {.lex_state = 157}, - [5274] = {.lex_state = 157}, - [5275] = {.lex_state = 166, .external_lex_state = 14}, - [5276] = {.lex_state = 157}, - [5277] = {.lex_state = 157}, - [5278] = {.lex_state = 166, .external_lex_state = 14}, - [5279] = {.lex_state = 166, .external_lex_state = 14}, - [5280] = {.lex_state = 166}, - [5281] = {.lex_state = 166, .external_lex_state = 14}, - [5282] = {.lex_state = 166, .external_lex_state = 14}, - [5283] = {.lex_state = 166, .external_lex_state = 14}, - [5284] = {.lex_state = 166}, - [5285] = {.lex_state = 157}, - [5286] = {.lex_state = 157}, - [5287] = {.lex_state = 166, .external_lex_state = 14}, - [5288] = {.lex_state = 173}, - [5289] = {.lex_state = 166, .external_lex_state = 14}, - [5290] = {.lex_state = 166, .external_lex_state = 14}, - [5291] = {.lex_state = 157}, - [5292] = {.lex_state = 166, .external_lex_state = 14}, - [5293] = {.lex_state = 166}, - [5294] = {.lex_state = 166}, - [5295] = {.lex_state = 110, .external_lex_state = 19}, - [5296] = {.lex_state = 166}, - [5297] = {.lex_state = 157, .external_lex_state = 16}, - [5298] = {.lex_state = 166}, - [5299] = {.lex_state = 157}, - [5300] = {.lex_state = 157}, - [5301] = {.lex_state = 157}, - [5302] = {.lex_state = 157}, - [5303] = {.lex_state = 166, .external_lex_state = 14}, - [5304] = {.lex_state = 157}, - [5305] = {.lex_state = 166}, - [5306] = {.lex_state = 157, .external_lex_state = 16}, - [5307] = {.lex_state = 157}, - [5308] = {.lex_state = 166}, - [5309] = {.lex_state = 157}, - [5310] = {.lex_state = 166}, - [5311] = {.lex_state = 157}, - [5312] = {.lex_state = 157}, - [5313] = {.lex_state = 166}, - [5314] = {.lex_state = 166}, - [5315] = {.lex_state = 157}, - [5316] = {.lex_state = 166, .external_lex_state = 14}, - [5317] = {.lex_state = 166, .external_lex_state = 14}, - [5318] = {.lex_state = 166, .external_lex_state = 14}, - [5319] = {.lex_state = 166, .external_lex_state = 14}, - [5320] = {.lex_state = 166}, - [5321] = {.lex_state = 166}, - [5322] = {.lex_state = 157}, - [5323] = {.lex_state = 166, .external_lex_state = 14}, - [5324] = {.lex_state = 166}, - [5325] = {.lex_state = 166, .external_lex_state = 14}, - [5326] = {.lex_state = 166}, - [5327] = {.lex_state = 166, .external_lex_state = 14}, - [5328] = {.lex_state = 166}, - [5329] = {.lex_state = 166}, - [5330] = {.lex_state = 157}, - [5331] = {.lex_state = 157}, - [5332] = {.lex_state = 166, .external_lex_state = 14}, - [5333] = {.lex_state = 157}, - [5334] = {.lex_state = 157}, - [5335] = {.lex_state = 157}, - [5336] = {.lex_state = 157}, - [5337] = {.lex_state = 173}, - [5338] = {.lex_state = 166}, - [5339] = {.lex_state = 166}, - [5340] = {.lex_state = 166}, - [5341] = {.lex_state = 157}, - [5342] = {.lex_state = 166, .external_lex_state = 14}, - [5343] = {.lex_state = 166, .external_lex_state = 14}, - [5344] = {.lex_state = 166}, - [5345] = {.lex_state = 166, .external_lex_state = 14}, - [5346] = {.lex_state = 157}, - [5347] = {.lex_state = 157}, - [5348] = {.lex_state = 166}, - [5349] = {.lex_state = 166}, - [5350] = {.lex_state = 166}, - [5351] = {.lex_state = 157}, - [5352] = {.lex_state = 157}, - [5353] = {.lex_state = 166}, - [5354] = {.lex_state = 157}, - [5355] = {.lex_state = 166}, - [5356] = {.lex_state = 157}, - [5357] = {.lex_state = 157}, - [5358] = {.lex_state = 318}, - [5359] = {.lex_state = 166}, - [5360] = {.lex_state = 166}, - [5361] = {.lex_state = 166, .external_lex_state = 14}, - [5362] = {.lex_state = 157}, - [5363] = {.lex_state = 157}, - [5364] = {.lex_state = 157}, - [5365] = {.lex_state = 173}, - [5366] = {.lex_state = 157}, - [5367] = {.lex_state = 157}, - [5368] = {.lex_state = 157}, - [5369] = {.lex_state = 159, .external_lex_state = 19}, - [5370] = {.lex_state = 157}, - [5371] = {.lex_state = 157}, - [5372] = {.lex_state = 159, .external_lex_state = 19}, - [5373] = {.lex_state = 157}, - [5374] = {.lex_state = 166, .external_lex_state = 14}, - [5375] = {.lex_state = 157}, - [5376] = {.lex_state = 166}, - [5377] = {.lex_state = 157}, - [5378] = {.lex_state = 166, .external_lex_state = 14}, - [5379] = {.lex_state = 157}, - [5380] = {.lex_state = 166, .external_lex_state = 14}, - [5381] = {.lex_state = 166, .external_lex_state = 14}, - [5382] = {.lex_state = 162, .external_lex_state = 19}, - [5383] = {.lex_state = 166, .external_lex_state = 14}, - [5384] = {.lex_state = 173}, - [5385] = {.lex_state = 166, .external_lex_state = 14}, - [5386] = {.lex_state = 166}, - [5387] = {.lex_state = 166}, - [5388] = {.lex_state = 166, .external_lex_state = 14}, - [5389] = {.lex_state = 166}, - [5390] = {.lex_state = 157}, - [5391] = {.lex_state = 157}, - [5392] = {.lex_state = 166}, - [5393] = {.lex_state = 157}, - [5394] = {.lex_state = 157}, - [5395] = {.lex_state = 157}, - [5396] = {.lex_state = 166, .external_lex_state = 14}, - [5397] = {.lex_state = 166, .external_lex_state = 14}, - [5398] = {.lex_state = 166}, - [5399] = {.lex_state = 166}, - [5400] = {.lex_state = 166}, - [5401] = {.lex_state = 166}, - [5402] = {.lex_state = 318, .external_lex_state = 17}, - [5403] = {.lex_state = 166}, - [5404] = {.lex_state = 166}, - [5405] = {.lex_state = 166}, - [5406] = {.lex_state = 166}, - [5407] = {.lex_state = 318, .external_lex_state = 17}, - [5408] = {.lex_state = 166}, - [5409] = {.lex_state = 166}, - [5410] = {.lex_state = 173}, - [5411] = {.lex_state = 166}, - [5412] = {.lex_state = 166}, - [5413] = {.lex_state = 318, .external_lex_state = 17}, - [5414] = {.lex_state = 157}, - [5415] = {.lex_state = 166}, - [5416] = {.lex_state = 166}, - [5417] = {.lex_state = 111, .external_lex_state = 19}, - [5418] = {.lex_state = 166}, - [5419] = {.lex_state = 166}, - [5420] = {.lex_state = 166}, - [5421] = {.lex_state = 166}, - [5422] = {.lex_state = 166}, - [5423] = {.lex_state = 111, .external_lex_state = 19}, - [5424] = {.lex_state = 166}, - [5425] = {.lex_state = 166}, - [5426] = {.lex_state = 318, .external_lex_state = 17}, - [5427] = {.lex_state = 166}, - [5428] = {.lex_state = 166}, - [5429] = {.lex_state = 166}, - [5430] = {.lex_state = 173}, - [5431] = {.lex_state = 166}, - [5432] = {.lex_state = 166}, - [5433] = {.lex_state = 166}, - [5434] = {.lex_state = 111, .external_lex_state = 19}, - [5435] = {.lex_state = 166}, - [5436] = {.lex_state = 166}, - [5437] = {.lex_state = 173}, - [5438] = {.lex_state = 173}, - [5439] = {.lex_state = 166}, - [5440] = {.lex_state = 157}, - [5441] = {.lex_state = 166}, - [5442] = {.lex_state = 166}, - [5443] = {.lex_state = 166}, - [5444] = {.lex_state = 166}, - [5445] = {.lex_state = 166}, - [5446] = {.lex_state = 166}, - [5447] = {.lex_state = 318, .external_lex_state = 17}, - [5448] = {.lex_state = 166}, - [5449] = {.lex_state = 166}, - [5450] = {.lex_state = 166}, - [5451] = {.lex_state = 166}, - [5452] = {.lex_state = 166}, - [5453] = {.lex_state = 166}, - [5454] = {.lex_state = 166}, - [5455] = {.lex_state = 166}, - [5456] = {.lex_state = 166}, - [5457] = {.lex_state = 166}, - [5458] = {.lex_state = 157}, - [5459] = {.lex_state = 166}, - [5460] = {.lex_state = 166}, - [5461] = {.lex_state = 157}, - [5462] = {.lex_state = 166}, - [5463] = {.lex_state = 166}, - [5464] = {.lex_state = 166}, - [5465] = {.lex_state = 318}, - [5466] = {.lex_state = 318, .external_lex_state = 18}, - [5467] = {.lex_state = 157}, - [5468] = {.lex_state = 318}, - [5469] = {.lex_state = 157}, - [5470] = {.lex_state = 157}, - [5471] = {.lex_state = 318}, - [5472] = {.lex_state = 157}, - [5473] = {.lex_state = 318, .external_lex_state = 17}, - [5474] = {.lex_state = 318}, - [5475] = {.lex_state = 157}, - [5476] = {.lex_state = 157}, - [5477] = {.lex_state = 157}, - [5478] = {.lex_state = 157}, - [5479] = {.lex_state = 160, .external_lex_state = 19}, - [5480] = {.lex_state = 157}, - [5481] = {.lex_state = 318}, - [5482] = {.lex_state = 157}, - [5483] = {.lex_state = 318}, - [5484] = {.lex_state = 108}, - [5485] = {.lex_state = 160, .external_lex_state = 19}, - [5486] = {.lex_state = 318, .external_lex_state = 18}, - [5487] = {.lex_state = 157}, - [5488] = {.lex_state = 318}, - [5489] = {.lex_state = 157}, - [5490] = {.lex_state = 318}, - [5491] = {.lex_state = 318, .external_lex_state = 18}, - [5492] = {.lex_state = 108}, - [5493] = {.lex_state = 108}, - [5494] = {.lex_state = 318, .external_lex_state = 17}, - [5495] = {.lex_state = 160, .external_lex_state = 19}, - [5496] = {.lex_state = 318}, - [5497] = {.lex_state = 318}, - [5498] = {.lex_state = 318}, - [5499] = {.lex_state = 318, .external_lex_state = 18}, - [5500] = {.lex_state = 108}, - [5501] = {.lex_state = 318, .external_lex_state = 18}, - [5502] = {.lex_state = 157}, - [5503] = {.lex_state = 108}, - [5504] = {.lex_state = 318}, - [5505] = {.lex_state = 157}, - [5506] = {.lex_state = 318}, - [5507] = {.lex_state = 157}, - [5508] = {.lex_state = 157}, - [5509] = {.lex_state = 157}, - [5510] = {.lex_state = 157}, - [5511] = {.lex_state = 157}, - [5512] = {.lex_state = 108}, - [5513] = {.lex_state = 318}, - [5514] = {.lex_state = 318}, - [5515] = {.lex_state = 318}, - [5516] = {.lex_state = 108}, - [5517] = {.lex_state = 318}, - [5518] = {.lex_state = 318}, - [5519] = {.lex_state = 318}, - [5520] = {.lex_state = 318}, - [5521] = {.lex_state = 318}, - [5522] = {.lex_state = 318}, - [5523] = {.lex_state = 318}, - [5524] = {.lex_state = 108}, - [5525] = {.lex_state = 318}, - [5526] = {.lex_state = 162, .external_lex_state = 19}, - [5527] = {.lex_state = 318}, - [5528] = {.lex_state = 108}, - [5529] = {.lex_state = 318}, - [5530] = {.lex_state = 318}, - [5531] = {.lex_state = 318}, - [5532] = {.lex_state = 318}, - [5533] = {.lex_state = 162, .external_lex_state = 19}, - [5534] = {.lex_state = 162, .external_lex_state = 19}, - [5535] = {.lex_state = 318}, - [5536] = {.lex_state = 173}, - [5537] = {.lex_state = 318, .external_lex_state = 18}, - [5538] = {.lex_state = 318}, - [5539] = {.lex_state = 318}, - [5540] = {.lex_state = 318, .external_lex_state = 18}, - [5541] = {.lex_state = 318}, - [5542] = {.lex_state = 318}, - [5543] = {.lex_state = 173}, - [5544] = {.lex_state = 318}, - [5545] = {.lex_state = 108}, - [5546] = {.lex_state = 318}, - [5547] = {.lex_state = 108}, - [5548] = {.lex_state = 318}, - [5549] = {.lex_state = 318}, - [5550] = {.lex_state = 166}, - [5551] = {.lex_state = 318}, - [5552] = {.lex_state = 318}, - [5553] = {.lex_state = 318}, - [5554] = {.lex_state = 166}, - [5555] = {.lex_state = 166}, - [5556] = {.lex_state = 166}, - [5557] = {.lex_state = 166}, - [5558] = {.lex_state = 318}, - [5559] = {.lex_state = 318}, - [5560] = {.lex_state = 157}, - [5561] = {.lex_state = 157}, - [5562] = {.lex_state = 166}, - [5563] = {.lex_state = 166}, - [5564] = {.lex_state = 166}, - [5565] = {.lex_state = 318}, - [5566] = {.lex_state = 166}, - [5567] = {.lex_state = 166}, - [5568] = {.lex_state = 166}, - [5569] = {.lex_state = 166}, - [5570] = {.lex_state = 318}, - [5571] = {.lex_state = 166}, - [5572] = {.lex_state = 318}, - [5573] = {.lex_state = 166}, - [5574] = {.lex_state = 318}, - [5575] = {.lex_state = 166}, - [5576] = {.lex_state = 318}, - [5577] = {.lex_state = 318}, - [5578] = {.lex_state = 318}, - [5579] = {.lex_state = 166}, - [5580] = {.lex_state = 166}, - [5581] = {.lex_state = 166}, - [5582] = {.lex_state = 166}, - [5583] = {.lex_state = 318}, - [5584] = {.lex_state = 157}, - [5585] = {.lex_state = 318}, - [5586] = {.lex_state = 166}, - [5587] = {.lex_state = 157}, - [5588] = {.lex_state = 318}, - [5589] = {.lex_state = 318}, - [5590] = {.lex_state = 166}, - [5591] = {.lex_state = 157}, - [5592] = {.lex_state = 318}, - [5593] = {.lex_state = 318}, - [5594] = {.lex_state = 166}, - [5595] = {.lex_state = 166}, - [5596] = {.lex_state = 318, .external_lex_state = 17}, - [5597] = {.lex_state = 166}, - [5598] = {.lex_state = 166}, - [5599] = {.lex_state = 166}, - [5600] = {.lex_state = 318}, - [5601] = {.lex_state = 318}, - [5602] = {.lex_state = 318}, - [5603] = {.lex_state = 166}, - [5604] = {.lex_state = 318}, - [5605] = {.lex_state = 157}, - [5606] = {.lex_state = 166}, - [5607] = {.lex_state = 157}, - [5608] = {.lex_state = 166}, - [5609] = {.lex_state = 318}, - [5610] = {.lex_state = 318}, - [5611] = {.lex_state = 318}, - [5612] = {.lex_state = 157}, - [5613] = {.lex_state = 166}, - [5614] = {.lex_state = 166}, - [5615] = {.lex_state = 166}, - [5616] = {.lex_state = 166}, - [5617] = {.lex_state = 166}, - [5618] = {.lex_state = 157}, - [5619] = {.lex_state = 318}, - [5620] = {.lex_state = 318}, - [5621] = {.lex_state = 318}, - [5622] = {.lex_state = 318}, - [5623] = {.lex_state = 166, .external_lex_state = 16}, - [5624] = {.lex_state = 318}, - [5625] = {.lex_state = 318}, - [5626] = {.lex_state = 166}, - [5627] = {.lex_state = 1}, - [5628] = {.lex_state = 166}, - [5629] = {.lex_state = 318}, - [5630] = {.lex_state = 166}, - [5631] = {.lex_state = 318}, - [5632] = {.lex_state = 318}, - [5633] = {.lex_state = 166}, - [5634] = {.lex_state = 166}, - [5635] = {.lex_state = 318}, - [5636] = {.lex_state = 318}, - [5637] = {.lex_state = 166}, - [5638] = {.lex_state = 166}, - [5639] = {.lex_state = 166}, - [5640] = {.lex_state = 318}, - [5641] = {.lex_state = 318}, - [5642] = {.lex_state = 318}, - [5643] = {.lex_state = 318}, - [5644] = {.lex_state = 166}, - [5645] = {.lex_state = 166}, - [5646] = {.lex_state = 318}, - [5647] = {.lex_state = 166}, - [5648] = {.lex_state = 318}, - [5649] = {.lex_state = 166}, - [5650] = {.lex_state = 318}, - [5651] = {.lex_state = 318, .external_lex_state = 17}, - [5652] = {.lex_state = 318, .external_lex_state = 14}, - [5653] = {.lex_state = 166}, - [5654] = {.lex_state = 318}, - [5655] = {.lex_state = 166}, - [5656] = {.lex_state = 318}, - [5657] = {.lex_state = 166}, - [5658] = {.lex_state = 318}, - [5659] = {.lex_state = 166}, - [5660] = {.lex_state = 318}, - [5661] = {.lex_state = 166}, - [5662] = {.lex_state = 318}, - [5663] = {.lex_state = 318}, - [5664] = {.lex_state = 166, .external_lex_state = 16}, - [5665] = {.lex_state = 318}, - [5666] = {.lex_state = 318}, - [5667] = {.lex_state = 166}, - [5668] = {.lex_state = 318}, - [5669] = {.lex_state = 318}, - [5670] = {.lex_state = 166}, - [5671] = {.lex_state = 166}, - [5672] = {.lex_state = 318}, - [5673] = {.lex_state = 318}, - [5674] = {.lex_state = 318}, - [5675] = {.lex_state = 318}, - [5676] = {.lex_state = 157}, - [5677] = {.lex_state = 157}, - [5678] = {.lex_state = 166}, - [5679] = {.lex_state = 166}, - [5680] = {.lex_state = 166}, - [5681] = {.lex_state = 166}, - [5682] = {.lex_state = 318}, - [5683] = {.lex_state = 318}, - [5684] = {.lex_state = 318}, - [5685] = {.lex_state = 318}, - [5686] = {.lex_state = 318}, - [5687] = {.lex_state = 318}, - [5688] = {.lex_state = 166}, - [5689] = {.lex_state = 166}, - [5690] = {.lex_state = 166}, - [5691] = {.lex_state = 166}, - [5692] = {.lex_state = 318, .external_lex_state = 14}, - [5693] = {.lex_state = 166}, - [5694] = {.lex_state = 318}, - [5695] = {.lex_state = 166}, - [5696] = {.lex_state = 318}, - [5697] = {.lex_state = 318, .external_lex_state = 17}, - [5698] = {.lex_state = 166}, - [5699] = {.lex_state = 318}, - [5700] = {.lex_state = 166}, - [5701] = {.lex_state = 318, .external_lex_state = 17}, - [5702] = {.lex_state = 318, .external_lex_state = 17}, - [5703] = {.lex_state = 318}, - [5704] = {.lex_state = 318}, - [5705] = {.lex_state = 318}, - [5706] = {.lex_state = 318}, - [5707] = {.lex_state = 318}, - [5708] = {.lex_state = 318, .external_lex_state = 17}, - [5709] = {.lex_state = 318}, - [5710] = {.lex_state = 318}, - [5711] = {.lex_state = 318, .external_lex_state = 16}, - [5712] = {.lex_state = 318}, - [5713] = {.lex_state = 318, .external_lex_state = 17}, - [5714] = {.lex_state = 318}, - [5715] = {.lex_state = 318}, - [5716] = {.lex_state = 318, .external_lex_state = 17}, - [5717] = {.lex_state = 318}, - [5718] = {.lex_state = 318, .external_lex_state = 17}, - [5719] = {.lex_state = 318}, - [5720] = {.lex_state = 318}, - [5721] = {.lex_state = 318, .external_lex_state = 17}, - [5722] = {.lex_state = 318}, - [5723] = {.lex_state = 318}, - [5724] = {.lex_state = 318}, - [5725] = {.lex_state = 318}, - [5726] = {.lex_state = 318}, - [5727] = {.lex_state = 318}, - [5728] = {.lex_state = 318}, - [5729] = {.lex_state = 318}, - [5730] = {.lex_state = 318}, - [5731] = {.lex_state = 318}, - [5732] = {.lex_state = 318}, - [5733] = {.lex_state = 318}, - [5734] = {.lex_state = 318}, - [5735] = {.lex_state = 318}, - [5736] = {.lex_state = 318}, - [5737] = {.lex_state = 318, .external_lex_state = 16}, - [5738] = {.lex_state = 318}, - [5739] = {.lex_state = 318}, - [5740] = {.lex_state = 318}, - [5741] = {.lex_state = 318}, - [5742] = {.lex_state = 318, .external_lex_state = 17}, - [5743] = {.lex_state = 318}, - [5744] = {.lex_state = 318}, - [5745] = {.lex_state = 318}, - [5746] = {.lex_state = 315, .external_lex_state = 14}, - [5747] = {.lex_state = 166, .external_lex_state = 16}, - [5748] = {.lex_state = 318}, - [5749] = {.lex_state = 318}, - [5750] = {.lex_state = 318}, - [5751] = {.lex_state = 318, .external_lex_state = 18}, - [5752] = {.lex_state = 318, .external_lex_state = 16}, - [5753] = {.lex_state = 318}, - [5754] = {.lex_state = 318}, - [5755] = {.lex_state = 318}, - [5756] = {.lex_state = 318}, - [5757] = {.lex_state = 318, .external_lex_state = 17}, - [5758] = {.lex_state = 318}, - [5759] = {.lex_state = 318}, - [5760] = {.lex_state = 318}, - [5761] = {.lex_state = 318}, - [5762] = {.lex_state = 318}, - [5763] = {.lex_state = 318}, - [5764] = {.lex_state = 318}, - [5765] = {.lex_state = 318, .external_lex_state = 16}, - [5766] = {.lex_state = 318, .external_lex_state = 17}, - [5767] = {.lex_state = 318}, - [5768] = {.lex_state = 318}, - [5769] = {.lex_state = 318}, - [5770] = {.lex_state = 315, .external_lex_state = 14}, - [5771] = {.lex_state = 318, .external_lex_state = 17}, - [5772] = {.lex_state = 318}, - [5773] = {.lex_state = 315, .external_lex_state = 14}, - [5774] = {.lex_state = 166, .external_lex_state = 16}, - [5775] = {.lex_state = 166, .external_lex_state = 16}, - [5776] = {.lex_state = 318}, - [5777] = {.lex_state = 318}, - [5778] = {.lex_state = 318, .external_lex_state = 17}, - [5779] = {.lex_state = 318}, - [5780] = {.lex_state = 315, .external_lex_state = 14}, - [5781] = {.lex_state = 318, .external_lex_state = 14}, - [5782] = {.lex_state = 318}, - [5783] = {.lex_state = 318}, - [5784] = {.lex_state = 318, .external_lex_state = 14}, - [5785] = {.lex_state = 318}, - [5786] = {.lex_state = 318}, - [5787] = {.lex_state = 318, .external_lex_state = 14}, - [5788] = {.lex_state = 318, .external_lex_state = 17}, - [5789] = {.lex_state = 318, .external_lex_state = 16}, - [5790] = {.lex_state = 318, .external_lex_state = 17}, - [5791] = {.lex_state = 315, .external_lex_state = 14}, - [5792] = {.lex_state = 318, .external_lex_state = 18}, - [5793] = {.lex_state = 318, .external_lex_state = 18}, - [5794] = {.lex_state = 315, .external_lex_state = 14}, - [5795] = {.lex_state = 318, .external_lex_state = 17}, - [5796] = {.lex_state = 166}, - [5797] = {.lex_state = 318, .external_lex_state = 17}, - [5798] = {.lex_state = 318, .external_lex_state = 17}, - [5799] = {.lex_state = 318, .external_lex_state = 16}, - [5800] = {.lex_state = 318, .external_lex_state = 17}, - [5801] = {.lex_state = 315, .external_lex_state = 14}, - [5802] = {.lex_state = 318}, - [5803] = {.lex_state = 315, .external_lex_state = 14}, - [5804] = {.lex_state = 318, .external_lex_state = 17}, - [5805] = {.lex_state = 318}, - [5806] = {.lex_state = 315}, - [5807] = {.lex_state = 315, .external_lex_state = 16}, - [5808] = {.lex_state = 315, .external_lex_state = 20}, - [5809] = {.lex_state = 315, .external_lex_state = 20}, - [5810] = {.lex_state = 318, .external_lex_state = 15}, - [5811] = {.lex_state = 157}, - [5812] = {.lex_state = 316, .external_lex_state = 20}, - [5813] = {.lex_state = 318}, - [5814] = {.lex_state = 318}, - [5815] = {.lex_state = 157}, - [5816] = {.lex_state = 166}, - [5817] = {.lex_state = 315}, - [5818] = {.lex_state = 318}, - [5819] = {.lex_state = 157}, - [5820] = {.lex_state = 315}, - [5821] = {.lex_state = 315, .external_lex_state = 14}, - [5822] = {.lex_state = 318}, - [5823] = {.lex_state = 316, .external_lex_state = 15}, - [5824] = {.lex_state = 318, .external_lex_state = 15}, - [5825] = {.lex_state = 318}, - [5826] = {.lex_state = 315, .external_lex_state = 20}, - [5827] = {.lex_state = 318, .external_lex_state = 18}, - [5828] = {.lex_state = 315, .external_lex_state = 16}, - [5829] = {.lex_state = 316, .external_lex_state = 20}, - [5830] = {.lex_state = 318, .external_lex_state = 16}, - [5831] = {.lex_state = 157}, - [5832] = {.lex_state = 318, .external_lex_state = 17}, - [5833] = {.lex_state = 315}, - [5834] = {.lex_state = 318, .external_lex_state = 16}, - [5835] = {.lex_state = 157}, - [5836] = {.lex_state = 318, .external_lex_state = 17}, - [5837] = {.lex_state = 318}, - [5838] = {.lex_state = 315}, - [5839] = {.lex_state = 315}, - [5840] = {.lex_state = 318}, - [5841] = {.lex_state = 166}, - [5842] = {.lex_state = 315}, - [5843] = {.lex_state = 318, .external_lex_state = 15}, - [5844] = {.lex_state = 157}, - [5845] = {.lex_state = 318, .external_lex_state = 17}, - [5846] = {.lex_state = 157}, - [5847] = {.lex_state = 318}, - [5848] = {.lex_state = 315, .external_lex_state = 20}, - [5849] = {.lex_state = 157}, - [5850] = {.lex_state = 315}, - [5851] = {.lex_state = 315, .external_lex_state = 14}, - [5852] = {.lex_state = 315}, - [5853] = {.lex_state = 157}, - [5854] = {.lex_state = 315, .external_lex_state = 14}, - [5855] = {.lex_state = 318, .external_lex_state = 16}, - [5856] = {.lex_state = 315, .external_lex_state = 14}, - [5857] = {.lex_state = 316, .external_lex_state = 15}, - [5858] = {.lex_state = 157}, - [5859] = {.lex_state = 157}, - [5860] = {.lex_state = 315, .external_lex_state = 14}, - [5861] = {.lex_state = 318, .external_lex_state = 14}, - [5862] = {.lex_state = 318, .external_lex_state = 18}, - [5863] = {.lex_state = 157}, - [5864] = {.lex_state = 318, .external_lex_state = 15}, - [5865] = {.lex_state = 318, .external_lex_state = 14}, - [5866] = {.lex_state = 315, .external_lex_state = 20}, - [5867] = {.lex_state = 316, .external_lex_state = 20}, - [5868] = {.lex_state = 318, .external_lex_state = 14}, - [5869] = {.lex_state = 318}, - [5870] = {.lex_state = 315, .external_lex_state = 14}, - [5871] = {.lex_state = 318}, - [5872] = {.lex_state = 316, .external_lex_state = 20}, - [5873] = {.lex_state = 315, .external_lex_state = 20}, - [5874] = {.lex_state = 318}, - [5875] = {.lex_state = 318, .external_lex_state = 15}, - [5876] = {.lex_state = 315, .external_lex_state = 16}, - [5877] = {.lex_state = 157}, - [5878] = {.lex_state = 315, .external_lex_state = 14}, - [5879] = {.lex_state = 315, .external_lex_state = 14}, - [5880] = {.lex_state = 318}, - [5881] = {.lex_state = 157}, - [5882] = {.lex_state = 315}, - [5883] = {.lex_state = 318, .external_lex_state = 15}, - [5884] = {.lex_state = 315, .external_lex_state = 14}, - [5885] = {.lex_state = 318}, - [5886] = {.lex_state = 315}, - [5887] = {.lex_state = 318}, - [5888] = {.lex_state = 318}, - [5889] = {.lex_state = 318, .external_lex_state = 18}, - [5890] = {.lex_state = 318, .external_lex_state = 15}, - [5891] = {.lex_state = 166}, - [5892] = {.lex_state = 318}, - [5893] = {.lex_state = 315, .external_lex_state = 20}, - [5894] = {.lex_state = 157}, - [5895] = {.lex_state = 315, .external_lex_state = 14}, - [5896] = {.lex_state = 157}, - [5897] = {.lex_state = 318, .external_lex_state = 18}, - [5898] = {.lex_state = 318}, - [5899] = {.lex_state = 315, .external_lex_state = 16}, - [5900] = {.lex_state = 315}, - [5901] = {.lex_state = 316, .external_lex_state = 20}, - [5902] = {.lex_state = 315, .external_lex_state = 20}, - [5903] = {.lex_state = 315, .external_lex_state = 14}, - [5904] = {.lex_state = 318}, - [5905] = {.lex_state = 166}, - [5906] = {.lex_state = 315}, - [5907] = {.lex_state = 315}, - [5908] = {.lex_state = 318, .external_lex_state = 18}, - [5909] = {.lex_state = 315, .external_lex_state = 17}, - [5910] = {.lex_state = 318, .external_lex_state = 14}, - [5911] = {.lex_state = 157}, - [5912] = {.lex_state = 318}, - [5913] = {.lex_state = 318}, - [5914] = {.lex_state = 315, .external_lex_state = 20}, - [5915] = {.lex_state = 315}, - [5916] = {.lex_state = 157}, - [5917] = {.lex_state = 318}, - [5918] = {.lex_state = 318, .external_lex_state = 18}, - [5919] = {.lex_state = 315}, - [5920] = {.lex_state = 315, .external_lex_state = 20}, - [5921] = {.lex_state = 315}, - [5922] = {.lex_state = 315, .external_lex_state = 14}, - [5923] = {.lex_state = 318}, - [5924] = {.lex_state = 119}, - [5925] = {.lex_state = 316, .external_lex_state = 20}, - [5926] = {.lex_state = 315, .external_lex_state = 17}, - [5927] = {.lex_state = 157}, - [5928] = {.lex_state = 315, .external_lex_state = 20}, - [5929] = {.lex_state = 318}, - [5930] = {.lex_state = 318}, - [5931] = {.lex_state = 315}, - [5932] = {.lex_state = 318}, - [5933] = {.lex_state = 318, .external_lex_state = 15}, - [5934] = {.lex_state = 318}, - [5935] = {.lex_state = 166}, - [5936] = {.lex_state = 157}, - [5937] = {.lex_state = 318}, - [5938] = {.lex_state = 318}, - [5939] = {.lex_state = 316, .external_lex_state = 20}, - [5940] = {.lex_state = 315, .external_lex_state = 20}, - [5941] = {.lex_state = 318}, - [5942] = {.lex_state = 315, .external_lex_state = 14}, - [5943] = {.lex_state = 318}, - [5944] = {.lex_state = 318}, - [5945] = {.lex_state = 316, .external_lex_state = 20}, - [5946] = {.lex_state = 318, .external_lex_state = 18}, - [5947] = {.lex_state = 315, .external_lex_state = 20}, - [5948] = {.lex_state = 318}, - [5949] = {.lex_state = 157}, - [5950] = {.lex_state = 318, .external_lex_state = 18}, - [5951] = {.lex_state = 315, .external_lex_state = 20}, - [5952] = {.lex_state = 316, .external_lex_state = 20}, - [5953] = {.lex_state = 157}, - [5954] = {.lex_state = 318}, - [5955] = {.lex_state = 318, .external_lex_state = 14}, - [5956] = {.lex_state = 318}, - [5957] = {.lex_state = 318}, - [5958] = {.lex_state = 318}, - [5959] = {.lex_state = 166}, - [5960] = {.lex_state = 318}, - [5961] = {.lex_state = 157}, - [5962] = {.lex_state = 315}, - [5963] = {.lex_state = 157}, - [5964] = {.lex_state = 318, .external_lex_state = 18}, - [5965] = {.lex_state = 318, .external_lex_state = 18}, - [5966] = {.lex_state = 315}, - [5967] = {.lex_state = 318}, - [5968] = {.lex_state = 318}, - [5969] = {.lex_state = 318}, - [5970] = {.lex_state = 315}, - [5971] = {.lex_state = 318}, - [5972] = {.lex_state = 318}, - [5973] = {.lex_state = 318, .external_lex_state = 18}, - [5974] = {.lex_state = 318, .external_lex_state = 18}, - [5975] = {.lex_state = 318, .external_lex_state = 18}, - [5976] = {.lex_state = 315, .external_lex_state = 20}, - [5977] = {.lex_state = 315, .external_lex_state = 20}, - [5978] = {.lex_state = 166}, - [5979] = {.lex_state = 318}, - [5980] = {.lex_state = 157}, - [5981] = {.lex_state = 315, .external_lex_state = 14}, - [5982] = {.lex_state = 316, .external_lex_state = 15}, - [5983] = {.lex_state = 157}, - [5984] = {.lex_state = 157}, - [5985] = {.lex_state = 318}, - [5986] = {.lex_state = 318}, - [5987] = {.lex_state = 318}, - [5988] = {.lex_state = 318}, - [5989] = {.lex_state = 157}, - [5990] = {.lex_state = 318}, - [5991] = {.lex_state = 315}, - [5992] = {.lex_state = 318, .external_lex_state = 18}, - [5993] = {.lex_state = 318}, - [5994] = {.lex_state = 157}, - [5995] = {.lex_state = 315}, - [5996] = {.lex_state = 315}, - [5997] = {.lex_state = 315}, - [5998] = {.lex_state = 318}, - [5999] = {.lex_state = 318, .external_lex_state = 18}, - [6000] = {.lex_state = 318}, - [6001] = {.lex_state = 318}, - [6002] = {.lex_state = 318}, - [6003] = {.lex_state = 318}, - [6004] = {.lex_state = 318, .external_lex_state = 15}, - [6005] = {.lex_state = 315}, - [6006] = {.lex_state = 318}, - [6007] = {.lex_state = 318, .external_lex_state = 15}, - [6008] = {.lex_state = 157}, - [6009] = {.lex_state = 318}, - [6010] = {.lex_state = 318}, - [6011] = {.lex_state = 315, .external_lex_state = 14}, - [6012] = {.lex_state = 315, .external_lex_state = 17}, - [6013] = {.lex_state = 318}, - [6014] = {.lex_state = 157}, - [6015] = {.lex_state = 315, .external_lex_state = 16}, - [6016] = {.lex_state = 315, .external_lex_state = 16}, - [6017] = {.lex_state = 318}, - [6018] = {.lex_state = 318}, - [6019] = {.lex_state = 318}, - [6020] = {.lex_state = 157}, - [6021] = {.lex_state = 318}, - [6022] = {.lex_state = 315}, - [6023] = {.lex_state = 318}, - [6024] = {.lex_state = 315, .external_lex_state = 14}, - [6025] = {.lex_state = 318}, - [6026] = {.lex_state = 318}, - [6027] = {.lex_state = 318}, - [6028] = {.lex_state = 318}, - [6029] = {.lex_state = 157}, - [6030] = {.lex_state = 315}, - [6031] = {.lex_state = 315}, - [6032] = {.lex_state = 318}, - [6033] = {.lex_state = 318}, - [6034] = {.lex_state = 318}, - [6035] = {.lex_state = 318}, - [6036] = {.lex_state = 318}, - [6037] = {.lex_state = 318}, - [6038] = {.lex_state = 315}, - [6039] = {.lex_state = 318}, - [6040] = {.lex_state = 318}, - [6041] = {.lex_state = 157}, - [6042] = {.lex_state = 315}, - [6043] = {.lex_state = 316}, - [6044] = {.lex_state = 315}, - [6045] = {.lex_state = 157}, - [6046] = {.lex_state = 316, .external_lex_state = 15}, - [6047] = {.lex_state = 157}, - [6048] = {.lex_state = 318, .external_lex_state = 18}, - [6049] = {.lex_state = 315, .external_lex_state = 20}, - [6050] = {.lex_state = 157}, - [6051] = {.lex_state = 316, .external_lex_state = 15}, - [6052] = {.lex_state = 315}, - [6053] = {.lex_state = 113}, - [6054] = {.lex_state = 318}, - [6055] = {.lex_state = 315}, - [6056] = {.lex_state = 316, .external_lex_state = 20}, - [6057] = {.lex_state = 318}, - [6058] = {.lex_state = 318}, - [6059] = {.lex_state = 315}, - [6060] = {.lex_state = 318}, - [6061] = {.lex_state = 316, .external_lex_state = 20}, - [6062] = {.lex_state = 315, .external_lex_state = 20}, - [6063] = {.lex_state = 315, .external_lex_state = 20}, - [6064] = {.lex_state = 316, .external_lex_state = 15}, - [6065] = {.lex_state = 316, .external_lex_state = 15}, - [6066] = {.lex_state = 315}, - [6067] = {.lex_state = 157}, - [6068] = {.lex_state = 318, .external_lex_state = 18}, - [6069] = {.lex_state = 318, .external_lex_state = 18}, - [6070] = {.lex_state = 315, .external_lex_state = 20}, - [6071] = {.lex_state = 315}, - [6072] = {.lex_state = 157}, - [6073] = {.lex_state = 316, .external_lex_state = 20}, - [6074] = {.lex_state = 316, .external_lex_state = 20}, - [6075] = {.lex_state = 315, .external_lex_state = 20}, - [6076] = {.lex_state = 318}, - [6077] = {.lex_state = 318}, - [6078] = {.lex_state = 318}, - [6079] = {.lex_state = 315}, - [6080] = {.lex_state = 318}, - [6081] = {.lex_state = 315}, - [6082] = {.lex_state = 315}, - [6083] = {.lex_state = 318}, - [6084] = {.lex_state = 315, .external_lex_state = 20}, - [6085] = {.lex_state = 157}, - [6086] = {.lex_state = 318}, - [6087] = {.lex_state = 316, .external_lex_state = 15}, - [6088] = {.lex_state = 157}, - [6089] = {.lex_state = 315}, - [6090] = {.lex_state = 318}, - [6091] = {.lex_state = 318}, - [6092] = {.lex_state = 318, .external_lex_state = 15}, - [6093] = {.lex_state = 318}, - [6094] = {.lex_state = 157}, - [6095] = {.lex_state = 318}, - [6096] = {.lex_state = 316, .external_lex_state = 20}, - [6097] = {.lex_state = 315, .external_lex_state = 20}, - [6098] = {.lex_state = 318}, - [6099] = {.lex_state = 316, .external_lex_state = 15}, - [6100] = {.lex_state = 315, .external_lex_state = 20}, - [6101] = {.lex_state = 315}, - [6102] = {.lex_state = 318, .external_lex_state = 18}, - [6103] = {.lex_state = 318}, - [6104] = {.lex_state = 315, .external_lex_state = 20}, - [6105] = {.lex_state = 318, .external_lex_state = 14}, - [6106] = {.lex_state = 316, .external_lex_state = 20}, - [6107] = {.lex_state = 315, .external_lex_state = 17}, - [6108] = {.lex_state = 315, .external_lex_state = 20}, - [6109] = {.lex_state = 318, .external_lex_state = 15}, - [6110] = {.lex_state = 316, .external_lex_state = 20}, - [6111] = {.lex_state = 318}, - [6112] = {.lex_state = 318}, - [6113] = {.lex_state = 318}, - [6114] = {.lex_state = 315}, - [6115] = {.lex_state = 315}, - [6116] = {.lex_state = 315, .external_lex_state = 20}, - [6117] = {.lex_state = 157}, - [6118] = {.lex_state = 318}, - [6119] = {.lex_state = 315, .external_lex_state = 20}, - [6120] = {.lex_state = 315}, - [6121] = {.lex_state = 315, .external_lex_state = 20}, - [6122] = {.lex_state = 315, .external_lex_state = 20}, - [6123] = {.lex_state = 318}, - [6124] = {.lex_state = 315, .external_lex_state = 20}, - [6125] = {.lex_state = 315, .external_lex_state = 20}, - [6126] = {.lex_state = 108}, - [6127] = {.lex_state = 108}, - [6128] = {.lex_state = 318}, - [6129] = {.lex_state = 315, .external_lex_state = 20}, - [6130] = {.lex_state = 315, .external_lex_state = 20}, - [6131] = {.lex_state = 315, .external_lex_state = 20}, - [6132] = {.lex_state = 315, .external_lex_state = 20}, - [6133] = {.lex_state = 315, .external_lex_state = 20}, - [6134] = {.lex_state = 315, .external_lex_state = 20}, - [6135] = {.lex_state = 315, .external_lex_state = 20}, - [6136] = {.lex_state = 315, .external_lex_state = 20}, - [6137] = {.lex_state = 315, .external_lex_state = 20}, - [6138] = {.lex_state = 315, .external_lex_state = 20}, - [6139] = {.lex_state = 315, .external_lex_state = 20}, - [6140] = {.lex_state = 318}, - [6141] = {.lex_state = 318}, - [6142] = {.lex_state = 315, .external_lex_state = 20}, - [6143] = {.lex_state = 315, .external_lex_state = 20}, - [6144] = {.lex_state = 318}, - [6145] = {.lex_state = 318}, - [6146] = {.lex_state = 315, .external_lex_state = 20}, - [6147] = {.lex_state = 316, .external_lex_state = 15}, - [6148] = {.lex_state = 315, .external_lex_state = 20}, - [6149] = {.lex_state = 315, .external_lex_state = 20}, - [6150] = {.lex_state = 315, .external_lex_state = 20}, - [6151] = {.lex_state = 315, .external_lex_state = 20}, - [6152] = {.lex_state = 315, .external_lex_state = 20}, - [6153] = {.lex_state = 315, .external_lex_state = 20}, - [6154] = {.lex_state = 315, .external_lex_state = 20}, - [6155] = {.lex_state = 315, .external_lex_state = 20}, - [6156] = {.lex_state = 318}, - [6157] = {.lex_state = 315, .external_lex_state = 20}, - [6158] = {.lex_state = 315, .external_lex_state = 20}, - [6159] = {.lex_state = 315, .external_lex_state = 20}, - [6160] = {.lex_state = 315, .external_lex_state = 20}, - [6161] = {.lex_state = 315, .external_lex_state = 20}, - [6162] = {.lex_state = 315, .external_lex_state = 20}, - [6163] = {.lex_state = 318}, - [6164] = {.lex_state = 315, .external_lex_state = 20}, - [6165] = {.lex_state = 315}, - [6166] = {.lex_state = 318}, - [6167] = {.lex_state = 315, .external_lex_state = 20}, - [6168] = {.lex_state = 318, .external_lex_state = 16}, - [6169] = {.lex_state = 315, .external_lex_state = 20}, - [6170] = {.lex_state = 318}, - [6171] = {.lex_state = 173}, - [6172] = {.lex_state = 173}, - [6173] = {.lex_state = 315, .external_lex_state = 20}, - [6174] = {.lex_state = 315, .external_lex_state = 20}, - [6175] = {.lex_state = 173}, - [6176] = {.lex_state = 315, .external_lex_state = 20}, - [6177] = {.lex_state = 315, .external_lex_state = 20}, - [6178] = {.lex_state = 173}, - [6179] = {.lex_state = 318}, - [6180] = {.lex_state = 173}, - [6181] = {.lex_state = 315, .external_lex_state = 20}, - [6182] = {.lex_state = 173}, - [6183] = {.lex_state = 315, .external_lex_state = 20}, - [6184] = {.lex_state = 315, .external_lex_state = 20}, - [6185] = {.lex_state = 315, .external_lex_state = 20}, - [6186] = {.lex_state = 315, .external_lex_state = 20}, - [6187] = {.lex_state = 315, .external_lex_state = 20}, - [6188] = {.lex_state = 315, .external_lex_state = 20}, - [6189] = {.lex_state = 315, .external_lex_state = 20}, - [6190] = {.lex_state = 315, .external_lex_state = 20}, - [6191] = {.lex_state = 315, .external_lex_state = 20}, - [6192] = {.lex_state = 315, .external_lex_state = 20}, - [6193] = {.lex_state = 315, .external_lex_state = 20}, - [6194] = {.lex_state = 315, .external_lex_state = 20}, - [6195] = {.lex_state = 315, .external_lex_state = 20}, - [6196] = {.lex_state = 315, .external_lex_state = 20}, - [6197] = {.lex_state = 318}, - [6198] = {.lex_state = 315, .external_lex_state = 20}, - [6199] = {.lex_state = 315, .external_lex_state = 20}, - [6200] = {.lex_state = 315, .external_lex_state = 20}, - [6201] = {.lex_state = 315, .external_lex_state = 20}, - [6202] = {.lex_state = 318}, - [6203] = {.lex_state = 315, .external_lex_state = 20}, - [6204] = {.lex_state = 315, .external_lex_state = 20}, - [6205] = {.lex_state = 315, .external_lex_state = 20}, - [6206] = {.lex_state = 315, .external_lex_state = 20}, - [6207] = {.lex_state = 173}, - [6208] = {.lex_state = 315, .external_lex_state = 20}, - [6209] = {.lex_state = 315, .external_lex_state = 20}, - [6210] = {.lex_state = 315, .external_lex_state = 20}, - [6211] = {.lex_state = 315, .external_lex_state = 20}, - [6212] = {.lex_state = 315, .external_lex_state = 20}, - [6213] = {.lex_state = 315, .external_lex_state = 20}, - [6214] = {.lex_state = 318}, - [6215] = {.lex_state = 318}, - [6216] = {.lex_state = 315, .external_lex_state = 20}, - [6217] = {.lex_state = 315, .external_lex_state = 20}, - [6218] = {.lex_state = 315}, - [6219] = {.lex_state = 315, .external_lex_state = 20}, - [6220] = {.lex_state = 315, .external_lex_state = 20}, - [6221] = {.lex_state = 315, .external_lex_state = 20}, - [6222] = {.lex_state = 315}, - [6223] = {.lex_state = 315, .external_lex_state = 16}, - [6224] = {.lex_state = 315, .external_lex_state = 20}, - [6225] = {.lex_state = 315, .external_lex_state = 20}, - [6226] = {.lex_state = 315, .external_lex_state = 16}, - [6227] = {.lex_state = 315, .external_lex_state = 20}, - [6228] = {.lex_state = 318}, - [6229] = {.lex_state = 315, .external_lex_state = 20}, - [6230] = {.lex_state = 315, .external_lex_state = 20}, - [6231] = {.lex_state = 315, .external_lex_state = 20}, - [6232] = {.lex_state = 315, .external_lex_state = 20}, - [6233] = {.lex_state = 315, .external_lex_state = 20}, - [6234] = {.lex_state = 315, .external_lex_state = 20}, - [6235] = {.lex_state = 315, .external_lex_state = 20}, - [6236] = {.lex_state = 315, .external_lex_state = 20}, - [6237] = {.lex_state = 318}, - [6238] = {.lex_state = 315, .external_lex_state = 20}, - [6239] = {.lex_state = 318}, - [6240] = {.lex_state = 315, .external_lex_state = 20}, - [6241] = {.lex_state = 315, .external_lex_state = 20}, - [6242] = {.lex_state = 315, .external_lex_state = 20}, - [6243] = {.lex_state = 315, .external_lex_state = 20}, - [6244] = {.lex_state = 315, .external_lex_state = 21}, - [6245] = {.lex_state = 315, .external_lex_state = 20}, - [6246] = {.lex_state = 315, .external_lex_state = 20}, - [6247] = {.lex_state = 315, .external_lex_state = 20}, - [6248] = {.lex_state = 315, .external_lex_state = 20}, - [6249] = {.lex_state = 318, .external_lex_state = 16}, - [6250] = {.lex_state = 315, .external_lex_state = 20}, - [6251] = {.lex_state = 315, .external_lex_state = 20}, - [6252] = {.lex_state = 315, .external_lex_state = 20}, - [6253] = {.lex_state = 318}, - [6254] = {.lex_state = 315, .external_lex_state = 20}, - [6255] = {.lex_state = 318}, - [6256] = {.lex_state = 315, .external_lex_state = 20}, - [6257] = {.lex_state = 315, .external_lex_state = 20}, - [6258] = {.lex_state = 318}, - [6259] = {.lex_state = 315, .external_lex_state = 20}, - [6260] = {.lex_state = 315, .external_lex_state = 20}, - [6261] = {.lex_state = 315, .external_lex_state = 20}, - [6262] = {.lex_state = 315, .external_lex_state = 20}, - [6263] = {.lex_state = 315, .external_lex_state = 20}, - [6264] = {.lex_state = 318}, - [6265] = {.lex_state = 315, .external_lex_state = 20}, - [6266] = {.lex_state = 316, .external_lex_state = 15}, - [6267] = {.lex_state = 315, .external_lex_state = 20}, - [6268] = {.lex_state = 315, .external_lex_state = 17}, - [6269] = {.lex_state = 315, .external_lex_state = 20}, - [6270] = {.lex_state = 315, .external_lex_state = 20}, - [6271] = {.lex_state = 315, .external_lex_state = 20}, - [6272] = {.lex_state = 315, .external_lex_state = 20}, - [6273] = {.lex_state = 316, .external_lex_state = 15}, - [6274] = {.lex_state = 315, .external_lex_state = 20}, - [6275] = {.lex_state = 315, .external_lex_state = 20}, - [6276] = {.lex_state = 318}, - [6277] = {.lex_state = 318}, - [6278] = {.lex_state = 315, .external_lex_state = 20}, - [6279] = {.lex_state = 318}, - [6280] = {.lex_state = 315, .external_lex_state = 20}, - [6281] = {.lex_state = 315, .external_lex_state = 20}, - [6282] = {.lex_state = 315, .external_lex_state = 20}, - [6283] = {.lex_state = 318}, - [6284] = {.lex_state = 315}, - [6285] = {.lex_state = 315, .external_lex_state = 20}, - [6286] = {.lex_state = 315}, - [6287] = {.lex_state = 315, .external_lex_state = 20}, - [6288] = {.lex_state = 315, .external_lex_state = 20}, - [6289] = {.lex_state = 315, .external_lex_state = 20}, - [6290] = {.lex_state = 315, .external_lex_state = 20}, - [6291] = {.lex_state = 315, .external_lex_state = 20}, - [6292] = {.lex_state = 315, .external_lex_state = 20}, - [6293] = {.lex_state = 315, .external_lex_state = 20}, - [6294] = {.lex_state = 318}, - [6295] = {.lex_state = 318}, - [6296] = {.lex_state = 315, .external_lex_state = 20}, - [6297] = {.lex_state = 315, .external_lex_state = 20}, - [6298] = {.lex_state = 315, .external_lex_state = 20}, - [6299] = {.lex_state = 315, .external_lex_state = 20}, - [6300] = {.lex_state = 315, .external_lex_state = 20}, - [6301] = {.lex_state = 315, .external_lex_state = 20}, - [6302] = {.lex_state = 318}, - [6303] = {.lex_state = 173}, - [6304] = {.lex_state = 315}, - [6305] = {.lex_state = 315, .external_lex_state = 20}, - [6306] = {.lex_state = 315}, - [6307] = {.lex_state = 315, .external_lex_state = 20}, - [6308] = {.lex_state = 315, .external_lex_state = 20}, - [6309] = {.lex_state = 315, .external_lex_state = 20}, - [6310] = {.lex_state = 315, .external_lex_state = 20}, - [6311] = {.lex_state = 315, .external_lex_state = 20}, - [6312] = {.lex_state = 315, .external_lex_state = 20}, - [6313] = {.lex_state = 316}, - [6314] = {.lex_state = 315, .external_lex_state = 20}, - [6315] = {.lex_state = 315, .external_lex_state = 20}, - [6316] = {.lex_state = 315, .external_lex_state = 20}, - [6317] = {.lex_state = 315, .external_lex_state = 20}, - [6318] = {.lex_state = 315, .external_lex_state = 20}, - [6319] = {.lex_state = 315, .external_lex_state = 20}, - [6320] = {.lex_state = 315, .external_lex_state = 20}, - [6321] = {.lex_state = 315, .external_lex_state = 20}, - [6322] = {.lex_state = 315, .external_lex_state = 20}, - [6323] = {.lex_state = 315, .external_lex_state = 14}, - [6324] = {.lex_state = 315, .external_lex_state = 20}, - [6325] = {.lex_state = 315, .external_lex_state = 20}, - [6326] = {.lex_state = 315, .external_lex_state = 21}, - [6327] = {.lex_state = 315, .external_lex_state = 20}, - [6328] = {.lex_state = 318}, - [6329] = {.lex_state = 315, .external_lex_state = 20}, - [6330] = {.lex_state = 315}, - [6331] = {.lex_state = 315, .external_lex_state = 17}, - [6332] = {.lex_state = 318}, - [6333] = {.lex_state = 315, .external_lex_state = 20}, - [6334] = {.lex_state = 315, .external_lex_state = 20}, - [6335] = {.lex_state = 315, .external_lex_state = 20}, - [6336] = {.lex_state = 315, .external_lex_state = 14}, - [6337] = {.lex_state = 315, .external_lex_state = 20}, - [6338] = {.lex_state = 315, .external_lex_state = 20}, - [6339] = {.lex_state = 318, .external_lex_state = 16}, - [6340] = {.lex_state = 315, .external_lex_state = 20}, - [6341] = {.lex_state = 318}, - [6342] = {.lex_state = 318}, - [6343] = {.lex_state = 315, .external_lex_state = 20}, - [6344] = {.lex_state = 315, .external_lex_state = 20}, - [6345] = {.lex_state = 315, .external_lex_state = 20}, - [6346] = {.lex_state = 315, .external_lex_state = 20}, - [6347] = {.lex_state = 318}, - [6348] = {.lex_state = 315, .external_lex_state = 17}, - [6349] = {.lex_state = 318}, - [6350] = {.lex_state = 315, .external_lex_state = 20}, - [6351] = {.lex_state = 315, .external_lex_state = 20}, - [6352] = {.lex_state = 315, .external_lex_state = 20}, - [6353] = {.lex_state = 315, .external_lex_state = 20}, - [6354] = {.lex_state = 318}, - [6355] = {.lex_state = 318}, - [6356] = {.lex_state = 318}, - [6357] = {.lex_state = 318}, - [6358] = {.lex_state = 315, .external_lex_state = 20}, - [6359] = {.lex_state = 318}, - [6360] = {.lex_state = 318}, - [6361] = {.lex_state = 315, .external_lex_state = 17}, - [6362] = {.lex_state = 318}, - [6363] = {.lex_state = 315, .external_lex_state = 20}, - [6364] = {.lex_state = 315, .external_lex_state = 14}, - [6365] = {.lex_state = 315, .external_lex_state = 17}, - [6366] = {.lex_state = 318}, - [6367] = {.lex_state = 315, .external_lex_state = 20}, - [6368] = {.lex_state = 315, .external_lex_state = 20}, - [6369] = {.lex_state = 315, .external_lex_state = 20}, - [6370] = {.lex_state = 315, .external_lex_state = 20}, - [6371] = {.lex_state = 318}, - [6372] = {.lex_state = 315, .external_lex_state = 20}, - [6373] = {.lex_state = 318}, - [6374] = {.lex_state = 315, .external_lex_state = 20}, - [6375] = {.lex_state = 318, .external_lex_state = 16}, - [6376] = {.lex_state = 315, .external_lex_state = 14}, - [6377] = {.lex_state = 318}, - [6378] = {.lex_state = 315, .external_lex_state = 21}, - [6379] = {.lex_state = 315, .external_lex_state = 20}, - [6380] = {.lex_state = 318}, - [6381] = {.lex_state = 315, .external_lex_state = 20}, - [6382] = {.lex_state = 315, .external_lex_state = 17}, - [6383] = {.lex_state = 315, .external_lex_state = 17}, - [6384] = {.lex_state = 315, .external_lex_state = 20}, - [6385] = {.lex_state = 315, .external_lex_state = 21}, - [6386] = {.lex_state = 318}, - [6387] = {.lex_state = 315, .external_lex_state = 20}, - [6388] = {.lex_state = 318}, - [6389] = {.lex_state = 315, .external_lex_state = 20}, - [6390] = {.lex_state = 315}, - [6391] = {.lex_state = 315, .external_lex_state = 20}, - [6392] = {.lex_state = 318}, - [6393] = {.lex_state = 315, .external_lex_state = 20}, - [6394] = {.lex_state = 318}, - [6395] = {.lex_state = 318}, - [6396] = {.lex_state = 315, .external_lex_state = 20}, - [6397] = {.lex_state = 315, .external_lex_state = 21}, - [6398] = {.lex_state = 315, .external_lex_state = 20}, - [6399] = {.lex_state = 318}, - [6400] = {.lex_state = 315, .external_lex_state = 21}, - [6401] = {.lex_state = 315, .external_lex_state = 20}, - [6402] = {.lex_state = 318}, - [6403] = {.lex_state = 315, .external_lex_state = 20}, - [6404] = {.lex_state = 315}, - [6405] = {.lex_state = 315, .external_lex_state = 17}, - [6406] = {.lex_state = 315, .external_lex_state = 20}, - [6407] = {.lex_state = 315}, - [6408] = {.lex_state = 315}, - [6409] = {.lex_state = 315, .external_lex_state = 20}, - [6410] = {.lex_state = 318, .external_lex_state = 16}, - [6411] = {.lex_state = 315, .external_lex_state = 20}, - [6412] = {.lex_state = 316}, - [6413] = {.lex_state = 315}, - [6414] = {.lex_state = 315, .external_lex_state = 20}, - [6415] = {.lex_state = 315, .external_lex_state = 20}, - [6416] = {.lex_state = 315, .external_lex_state = 20}, - [6417] = {.lex_state = 318}, - [6418] = {.lex_state = 315, .external_lex_state = 20}, - [6419] = {.lex_state = 315, .external_lex_state = 21}, - [6420] = {.lex_state = 315, .external_lex_state = 17}, - [6421] = {.lex_state = 315, .external_lex_state = 20}, - [6422] = {.lex_state = 315, .external_lex_state = 20}, - [6423] = {.lex_state = 318}, - [6424] = {.lex_state = 315, .external_lex_state = 21}, - [6425] = {.lex_state = 318}, - [6426] = {.lex_state = 315, .external_lex_state = 17}, - [6427] = {.lex_state = 315, .external_lex_state = 20}, - [6428] = {.lex_state = 318, .external_lex_state = 16}, - [6429] = {.lex_state = 315, .external_lex_state = 16}, - [6430] = {.lex_state = 315}, - [6431] = {.lex_state = 315, .external_lex_state = 14}, - [6432] = {.lex_state = 315, .external_lex_state = 20}, - [6433] = {.lex_state = 315}, - [6434] = {.lex_state = 315, .external_lex_state = 20}, - [6435] = {.lex_state = 315, .external_lex_state = 20}, - [6436] = {.lex_state = 315}, - [6437] = {.lex_state = 315, .external_lex_state = 20}, - [6438] = {.lex_state = 318}, - [6439] = {.lex_state = 315, .external_lex_state = 21}, - [6440] = {.lex_state = 315, .external_lex_state = 20}, - [6441] = {.lex_state = 318}, - [6442] = {.lex_state = 315, .external_lex_state = 20}, - [6443] = {.lex_state = 318}, - [6444] = {.lex_state = 318}, - [6445] = {.lex_state = 315, .external_lex_state = 20}, - [6446] = {.lex_state = 318}, - [6447] = {.lex_state = 315, .external_lex_state = 21}, - [6448] = {.lex_state = 318}, - [6449] = {.lex_state = 318}, - [6450] = {.lex_state = 315, .external_lex_state = 20}, - [6451] = {.lex_state = 315, .external_lex_state = 20}, - [6452] = {.lex_state = 318}, - [6453] = {.lex_state = 315, .external_lex_state = 20}, - [6454] = {.lex_state = 315, .external_lex_state = 20}, - [6455] = {.lex_state = 315}, - [6456] = {.lex_state = 315, .external_lex_state = 20}, - [6457] = {.lex_state = 315, .external_lex_state = 20}, - [6458] = {.lex_state = 315}, - [6459] = {.lex_state = 315, .external_lex_state = 20}, - [6460] = {.lex_state = 315}, - [6461] = {.lex_state = 315, .external_lex_state = 20}, - [6462] = {.lex_state = 318}, - [6463] = {.lex_state = 315, .external_lex_state = 20}, - [6464] = {.lex_state = 315}, - [6465] = {.lex_state = 315, .external_lex_state = 20}, - [6466] = {.lex_state = 318}, - [6467] = {.lex_state = 315, .external_lex_state = 14}, - [6468] = {.lex_state = 315, .external_lex_state = 21}, - [6469] = {.lex_state = 318}, - [6470] = {.lex_state = 315, .external_lex_state = 20}, - [6471] = {.lex_state = 318}, - [6472] = {.lex_state = 315, .external_lex_state = 21}, - [6473] = {.lex_state = 318}, - [6474] = {.lex_state = 318}, - [6475] = {.lex_state = 318}, - [6476] = {.lex_state = 315, .external_lex_state = 20}, - [6477] = {.lex_state = 315, .external_lex_state = 20}, - [6478] = {.lex_state = 315, .external_lex_state = 20}, - [6479] = {.lex_state = 315}, - [6480] = {.lex_state = 315, .external_lex_state = 20}, - [6481] = {.lex_state = 315, .external_lex_state = 20}, - [6482] = {.lex_state = 315, .external_lex_state = 20}, - [6483] = {.lex_state = 315, .external_lex_state = 20}, - [6484] = {.lex_state = 318}, - [6485] = {.lex_state = 315}, - [6486] = {.lex_state = 315, .external_lex_state = 20}, - [6487] = {.lex_state = 315, .external_lex_state = 20}, - [6488] = {.lex_state = 315, .external_lex_state = 20}, - [6489] = {.lex_state = 318}, - [6490] = {.lex_state = 315, .external_lex_state = 21}, - [6491] = {.lex_state = 318}, - [6492] = {.lex_state = 315, .external_lex_state = 20}, - [6493] = {.lex_state = 315, .external_lex_state = 20}, - [6494] = {.lex_state = 315, .external_lex_state = 20}, - [6495] = {.lex_state = 318}, - [6496] = {.lex_state = 315, .external_lex_state = 20}, - [6497] = {.lex_state = 315, .external_lex_state = 21}, - [6498] = {.lex_state = 318}, - [6499] = {.lex_state = 318}, - [6500] = {.lex_state = 315, .external_lex_state = 20}, - [6501] = {.lex_state = 318}, - [6502] = {.lex_state = 315, .external_lex_state = 20}, - [6503] = {.lex_state = 315, .external_lex_state = 20}, - [6504] = {.lex_state = 315, .external_lex_state = 20}, - [6505] = {.lex_state = 318}, - [6506] = {.lex_state = 315, .external_lex_state = 20}, - [6507] = {.lex_state = 315, .external_lex_state = 20}, - [6508] = {.lex_state = 315}, - [6509] = {.lex_state = 315, .external_lex_state = 20}, - [6510] = {.lex_state = 315, .external_lex_state = 17}, - [6511] = {.lex_state = 315}, - [6512] = {.lex_state = 316}, - [6513] = {.lex_state = 315, .external_lex_state = 20}, - [6514] = {.lex_state = 315, .external_lex_state = 20}, - [6515] = {.lex_state = 318}, - [6516] = {.lex_state = 318}, - [6517] = {.lex_state = 108}, - [6518] = {.lex_state = 318}, - [6519] = {.lex_state = 315, .external_lex_state = 20}, - [6520] = {.lex_state = 315}, - [6521] = {.lex_state = 315, .external_lex_state = 20}, - [6522] = {.lex_state = 318}, - [6523] = {.lex_state = 318}, - [6524] = {.lex_state = 315, .external_lex_state = 20}, - [6525] = {.lex_state = 315, .external_lex_state = 21}, - [6526] = {.lex_state = 318}, - [6527] = {.lex_state = 315}, - [6528] = {.lex_state = 315}, - [6529] = {.lex_state = 315, .external_lex_state = 20}, - [6530] = {.lex_state = 318}, - [6531] = {.lex_state = 315, .external_lex_state = 20}, - [6532] = {.lex_state = 315}, - [6533] = {.lex_state = 315, .external_lex_state = 17}, - [6534] = {.lex_state = 315, .external_lex_state = 20}, - [6535] = {.lex_state = 315, .external_lex_state = 20}, - [6536] = {.lex_state = 315, .external_lex_state = 20}, - [6537] = {.lex_state = 318}, - [6538] = {.lex_state = 315, .external_lex_state = 20}, - [6539] = {.lex_state = 315, .external_lex_state = 20}, - [6540] = {.lex_state = 315, .external_lex_state = 20}, - [6541] = {.lex_state = 315, .external_lex_state = 21}, - [6542] = {.lex_state = 318}, - [6543] = {.lex_state = 318}, - [6544] = {.lex_state = 318}, - [6545] = {.lex_state = 315, .external_lex_state = 20}, - [6546] = {.lex_state = 318}, - [6547] = {.lex_state = 318}, - [6548] = {.lex_state = 315, .external_lex_state = 20}, - [6549] = {.lex_state = 318}, - [6550] = {.lex_state = 315, .external_lex_state = 20}, - [6551] = {.lex_state = 315}, - [6552] = {.lex_state = 318}, - [6553] = {.lex_state = 315, .external_lex_state = 21}, - [6554] = {.lex_state = 318}, - [6555] = {.lex_state = 318}, - [6556] = {.lex_state = 318}, - [6557] = {.lex_state = 315, .external_lex_state = 14}, - [6558] = {.lex_state = 315, .external_lex_state = 20}, - [6559] = {.lex_state = 108}, - [6560] = {.lex_state = 315, .external_lex_state = 16}, - [6561] = {.lex_state = 315, .external_lex_state = 20}, - [6562] = {.lex_state = 315, .external_lex_state = 16}, - [6563] = {.lex_state = 318}, - [6564] = {.lex_state = 315, .external_lex_state = 20}, - [6565] = {.lex_state = 318, .external_lex_state = 18}, - [6566] = {.lex_state = 315, .external_lex_state = 16}, - [6567] = {.lex_state = 315, .external_lex_state = 14}, - [6568] = {.lex_state = 318, .external_lex_state = 18}, - [6569] = {.lex_state = 315, .external_lex_state = 16}, - [6570] = {.lex_state = 315, .external_lex_state = 21}, - [6571] = {.lex_state = 315, .external_lex_state = 20}, - [6572] = {.lex_state = 315}, - [6573] = {.lex_state = 318}, - [6574] = {.lex_state = 315, .external_lex_state = 16}, - [6575] = {.lex_state = 318}, - [6576] = {.lex_state = 315, .external_lex_state = 17}, - [6577] = {.lex_state = 315, .external_lex_state = 16}, - [6578] = {.lex_state = 315, .external_lex_state = 20}, - [6579] = {.lex_state = 315, .external_lex_state = 17}, - [6580] = {.lex_state = 318}, - [6581] = {.lex_state = 318}, - [6582] = {.lex_state = 315, .external_lex_state = 20}, - [6583] = {.lex_state = 318}, - [6584] = {.lex_state = 315, .external_lex_state = 21}, - [6585] = {.lex_state = 315}, - [6586] = {.lex_state = 315, .external_lex_state = 16}, - [6587] = {.lex_state = 315, .external_lex_state = 16}, - [6588] = {.lex_state = 318}, - [6589] = {.lex_state = 318, .external_lex_state = 18}, - [6590] = {.lex_state = 315, .external_lex_state = 16}, - [6591] = {.lex_state = 315, .external_lex_state = 20}, - [6592] = {.lex_state = 315, .external_lex_state = 16}, - [6593] = {.lex_state = 318}, - [6594] = {.lex_state = 315, .external_lex_state = 20}, - [6595] = {.lex_state = 315, .external_lex_state = 16}, - [6596] = {.lex_state = 315, .external_lex_state = 20}, - [6597] = {.lex_state = 318}, - [6598] = {.lex_state = 315, .external_lex_state = 16}, - [6599] = {.lex_state = 315, .external_lex_state = 20}, - [6600] = {.lex_state = 315, .external_lex_state = 16}, - [6601] = {.lex_state = 318}, - [6602] = {.lex_state = 315, .external_lex_state = 16}, - [6603] = {.lex_state = 315, .external_lex_state = 20}, - [6604] = {.lex_state = 315, .external_lex_state = 17}, - [6605] = {.lex_state = 173}, - [6606] = {.lex_state = 315, .external_lex_state = 21}, - [6607] = {.lex_state = 318}, - [6608] = {.lex_state = 315, .external_lex_state = 20}, - [6609] = {.lex_state = 315, .external_lex_state = 16}, - [6610] = {.lex_state = 318}, - [6611] = {.lex_state = 315, .external_lex_state = 16}, - [6612] = {.lex_state = 315, .external_lex_state = 20}, - [6613] = {.lex_state = 315, .external_lex_state = 20}, - [6614] = {.lex_state = 315}, - [6615] = {.lex_state = 316}, - [6616] = {.lex_state = 315, .external_lex_state = 20}, - [6617] = {.lex_state = 315, .external_lex_state = 16}, - [6618] = {.lex_state = 315, .external_lex_state = 14}, - [6619] = {.lex_state = 315, .external_lex_state = 20}, - [6620] = {.lex_state = 315, .external_lex_state = 14}, - [6621] = {.lex_state = 315, .external_lex_state = 20}, - [6622] = {.lex_state = 315, .external_lex_state = 16}, - [6623] = {.lex_state = 318}, - [6624] = {.lex_state = 315, .external_lex_state = 20}, - [6625] = {.lex_state = 108}, - [6626] = {.lex_state = 315, .external_lex_state = 20}, - [6627] = {.lex_state = 315, .external_lex_state = 16}, - [6628] = {.lex_state = 315, .external_lex_state = 16}, - [6629] = {.lex_state = 315, .external_lex_state = 16}, - [6630] = {.lex_state = 315, .external_lex_state = 16}, - [6631] = {.lex_state = 315, .external_lex_state = 16}, - [6632] = {.lex_state = 315}, - [6633] = {.lex_state = 315, .external_lex_state = 16}, - [6634] = {.lex_state = 315, .external_lex_state = 14}, - [6635] = {.lex_state = 315, .external_lex_state = 14}, - [6636] = {.lex_state = 315, .external_lex_state = 14}, - [6637] = {.lex_state = 315, .external_lex_state = 20}, - [6638] = {.lex_state = 315, .external_lex_state = 16}, - [6639] = {.lex_state = 315, .external_lex_state = 14}, - [6640] = {.lex_state = 315, .external_lex_state = 20}, - [6641] = {.lex_state = 315, .external_lex_state = 16}, - [6642] = {.lex_state = 315, .external_lex_state = 16}, - [6643] = {.lex_state = 315, .external_lex_state = 14}, - [6644] = {.lex_state = 108}, - [6645] = {.lex_state = 315, .external_lex_state = 20}, - [6646] = {.lex_state = 315, .external_lex_state = 20}, - [6647] = {.lex_state = 315, .external_lex_state = 14}, - [6648] = {.lex_state = 318}, - [6649] = {.lex_state = 315, .external_lex_state = 20}, - [6650] = {.lex_state = 315, .external_lex_state = 21}, - [6651] = {.lex_state = 315, .external_lex_state = 14}, - [6652] = {.lex_state = 315, .external_lex_state = 16}, - [6653] = {.lex_state = 315, .external_lex_state = 20}, - [6654] = {.lex_state = 315, .external_lex_state = 20}, - [6655] = {.lex_state = 315, .external_lex_state = 20}, - [6656] = {.lex_state = 318}, - [6657] = {.lex_state = 315, .external_lex_state = 16}, - [6658] = {.lex_state = 315}, - [6659] = {.lex_state = 318}, - [6660] = {.lex_state = 315, .external_lex_state = 20}, - [6661] = {.lex_state = 315, .external_lex_state = 16}, - [6662] = {.lex_state = 315, .external_lex_state = 16}, - [6663] = {.lex_state = 315, .external_lex_state = 20}, - [6664] = {.lex_state = 315}, - [6665] = {.lex_state = 315, .external_lex_state = 16}, - [6666] = {.lex_state = 318}, - [6667] = {.lex_state = 315, .external_lex_state = 21}, - [6668] = {.lex_state = 318}, - [6669] = {.lex_state = 318}, - [6670] = {.lex_state = 318}, - [6671] = {.lex_state = 315}, - [6672] = {.lex_state = 318}, - [6673] = {.lex_state = 315}, - [6674] = {.lex_state = 315, .external_lex_state = 16}, - [6675] = {.lex_state = 315, .external_lex_state = 16}, - [6676] = {.lex_state = 318}, - [6677] = {.lex_state = 1}, - [6678] = {.lex_state = 315}, - [6679] = {.lex_state = 315}, - [6680] = {.lex_state = 315}, - [6681] = {.lex_state = 1}, - [6682] = {.lex_state = 315}, - [6683] = {.lex_state = 315, .external_lex_state = 16}, - [6684] = {.lex_state = 315}, - [6685] = {.lex_state = 315}, - [6686] = {.lex_state = 315}, - [6687] = {.lex_state = 316}, - [6688] = {.lex_state = 315}, - [6689] = {.lex_state = 318}, - [6690] = {.lex_state = 318, .external_lex_state = 22}, - [6691] = {.lex_state = 318}, - [6692] = {.lex_state = 315, .external_lex_state = 23}, - [6693] = {.lex_state = 318}, - [6694] = {.lex_state = 315, .external_lex_state = 23}, - [6695] = {.lex_state = 315, .external_lex_state = 18}, - [6696] = {.lex_state = 315}, - [6697] = {.lex_state = 315}, - [6698] = {.lex_state = 315, .external_lex_state = 16}, - [6699] = {.lex_state = 315}, - [6700] = {.lex_state = 315}, - [6701] = {.lex_state = 315}, - [6702] = {.lex_state = 108}, - [6703] = {.lex_state = 315}, - [6704] = {.lex_state = 318}, - [6705] = {.lex_state = 315, .external_lex_state = 18}, - [6706] = {.lex_state = 315}, - [6707] = {.lex_state = 315}, - [6708] = {.lex_state = 318, .external_lex_state = 22}, - [6709] = {.lex_state = 315, .external_lex_state = 18}, - [6710] = {.lex_state = 318}, - [6711] = {.lex_state = 1}, - [6712] = {.lex_state = 315}, - [6713] = {.lex_state = 318}, - [6714] = {.lex_state = 315}, - [6715] = {.lex_state = 318}, - [6716] = {.lex_state = 315}, - [6717] = {.lex_state = 318}, - [6718] = {.lex_state = 315}, - [6719] = {.lex_state = 318}, - [6720] = {.lex_state = 108}, - [6721] = {.lex_state = 315}, - [6722] = {.lex_state = 315}, - [6723] = {.lex_state = 315}, - [6724] = {.lex_state = 315}, - [6725] = {.lex_state = 315}, - [6726] = {.lex_state = 119}, - [6727] = {.lex_state = 119}, - [6728] = {.lex_state = 318}, - [6729] = {.lex_state = 318}, - [6730] = {.lex_state = 318}, - [6731] = {.lex_state = 315}, - [6732] = {.lex_state = 315}, - [6733] = {.lex_state = 315}, - [6734] = {.lex_state = 315, .external_lex_state = 16}, - [6735] = {.lex_state = 318}, - [6736] = {.lex_state = 318}, - [6737] = {.lex_state = 315, .external_lex_state = 23}, - [6738] = {.lex_state = 315, .external_lex_state = 23}, - [6739] = {.lex_state = 318}, - [6740] = {.lex_state = 318, .external_lex_state = 22}, - [6741] = {.lex_state = 315, .external_lex_state = 16}, - [6742] = {.lex_state = 316}, - [6743] = {.lex_state = 315}, - [6744] = {.lex_state = 315}, - [6745] = {.lex_state = 315}, - [6746] = {.lex_state = 315}, - [6747] = {.lex_state = 315}, - [6748] = {.lex_state = 318}, - [6749] = {.lex_state = 315}, - [6750] = {.lex_state = 1}, - [6751] = {.lex_state = 315, .external_lex_state = 16}, - [6752] = {.lex_state = 318}, - [6753] = {.lex_state = 1}, - [6754] = {.lex_state = 318}, - [6755] = {.lex_state = 315}, - [6756] = {.lex_state = 315, .external_lex_state = 18}, - [6757] = {.lex_state = 315}, - [6758] = {.lex_state = 315}, - [6759] = {.lex_state = 315, .external_lex_state = 16}, - [6760] = {.lex_state = 315, .external_lex_state = 16}, - [6761] = {.lex_state = 315}, - [6762] = {.lex_state = 315}, - [6763] = {.lex_state = 315}, - [6764] = {.lex_state = 315}, - [6765] = {.lex_state = 315}, - [6766] = {.lex_state = 315}, - [6767] = {.lex_state = 315, .external_lex_state = 16}, - [6768] = {.lex_state = 315}, - [6769] = {.lex_state = 315, .external_lex_state = 16}, - [6770] = {.lex_state = 315}, - [6771] = {.lex_state = 315}, - [6772] = {.lex_state = 315, .external_lex_state = 16}, - [6773] = {.lex_state = 1}, - [6774] = {.lex_state = 1}, - [6775] = {.lex_state = 315}, - [6776] = {.lex_state = 318}, - [6777] = {.lex_state = 318, .external_lex_state = 22}, - [6778] = {.lex_state = 315, .external_lex_state = 16}, - [6779] = {.lex_state = 315}, - [6780] = {.lex_state = 318}, - [6781] = {.lex_state = 315, .external_lex_state = 16}, - [6782] = {.lex_state = 315}, - [6783] = {.lex_state = 318}, - [6784] = {.lex_state = 315}, - [6785] = {.lex_state = 315}, - [6786] = {.lex_state = 315, .external_lex_state = 16}, - [6787] = {.lex_state = 318}, - [6788] = {.lex_state = 315, .external_lex_state = 16}, - [6789] = {.lex_state = 315}, - [6790] = {.lex_state = 318, .external_lex_state = 22}, - [6791] = {.lex_state = 315}, - [6792] = {.lex_state = 318}, - [6793] = {.lex_state = 318}, - [6794] = {.lex_state = 315}, - [6795] = {.lex_state = 318}, - [6796] = {.lex_state = 318}, - [6797] = {.lex_state = 315}, - [6798] = {.lex_state = 315}, - [6799] = {.lex_state = 318}, - [6800] = {.lex_state = 318}, - [6801] = {.lex_state = 315}, - [6802] = {.lex_state = 315}, - [6803] = {.lex_state = 318}, - [6804] = {.lex_state = 315}, - [6805] = {.lex_state = 315}, - [6806] = {.lex_state = 315, .external_lex_state = 16}, - [6807] = {.lex_state = 318}, - [6808] = {.lex_state = 318}, - [6809] = {.lex_state = 315, .external_lex_state = 16}, - [6810] = {.lex_state = 315}, - [6811] = {.lex_state = 315}, - [6812] = {.lex_state = 318}, - [6813] = {.lex_state = 318}, - [6814] = {.lex_state = 315, .external_lex_state = 23}, - [6815] = {.lex_state = 315, .external_lex_state = 23}, - [6816] = {.lex_state = 318}, - [6817] = {.lex_state = 318, .external_lex_state = 22}, - [6818] = {.lex_state = 316}, - [6819] = {.lex_state = 315}, - [6820] = {.lex_state = 315, .external_lex_state = 16}, - [6821] = {.lex_state = 315, .external_lex_state = 16}, - [6822] = {.lex_state = 315}, - [6823] = {.lex_state = 315}, - [6824] = {.lex_state = 315, .external_lex_state = 16}, - [6825] = {.lex_state = 315}, - [6826] = {.lex_state = 315}, - [6827] = {.lex_state = 108}, - [6828] = {.lex_state = 1}, - [6829] = {.lex_state = 318}, - [6830] = {.lex_state = 315, .external_lex_state = 16}, - [6831] = {.lex_state = 315}, - [6832] = {.lex_state = 315, .external_lex_state = 16}, - [6833] = {.lex_state = 315, .external_lex_state = 16}, - [6834] = {.lex_state = 318}, - [6835] = {.lex_state = 1}, - [6836] = {.lex_state = 1}, - [6837] = {.lex_state = 315}, - [6838] = {.lex_state = 315, .external_lex_state = 16}, - [6839] = {.lex_state = 315, .external_lex_state = 18}, - [6840] = {.lex_state = 315}, - [6841] = {.lex_state = 315, .external_lex_state = 16}, - [6842] = {.lex_state = 315}, - [6843] = {.lex_state = 315}, - [6844] = {.lex_state = 315}, - [6845] = {.lex_state = 318, .external_lex_state = 22}, - [6846] = {.lex_state = 318}, - [6847] = {.lex_state = 318}, - [6848] = {.lex_state = 315, .external_lex_state = 23}, - [6849] = {.lex_state = 315}, - [6850] = {.lex_state = 315, .external_lex_state = 23}, - [6851] = {.lex_state = 315, .external_lex_state = 16}, - [6852] = {.lex_state = 315, .external_lex_state = 16}, - [6853] = {.lex_state = 315}, - [6854] = {.lex_state = 315}, - [6855] = {.lex_state = 315, .external_lex_state = 16}, - [6856] = {.lex_state = 315}, - [6857] = {.lex_state = 318, .external_lex_state = 22}, - [6858] = {.lex_state = 315, .external_lex_state = 18}, - [6859] = {.lex_state = 318}, - [6860] = {.lex_state = 318}, - [6861] = {.lex_state = 315}, - [6862] = {.lex_state = 315}, - [6863] = {.lex_state = 315}, - [6864] = {.lex_state = 315}, - [6865] = {.lex_state = 315, .external_lex_state = 18}, - [6866] = {.lex_state = 315}, - [6867] = {.lex_state = 315}, - [6868] = {.lex_state = 318}, - [6869] = {.lex_state = 315}, - [6870] = {.lex_state = 318}, - [6871] = {.lex_state = 315, .external_lex_state = 16}, - [6872] = {.lex_state = 315}, - [6873] = {.lex_state = 318}, - [6874] = {.lex_state = 315, .external_lex_state = 23}, - [6875] = {.lex_state = 315, .external_lex_state = 23}, - [6876] = {.lex_state = 318}, - [6877] = {.lex_state = 318, .external_lex_state = 22}, - [6878] = {.lex_state = 315, .external_lex_state = 16}, - [6879] = {.lex_state = 318}, - [6880] = {.lex_state = 316}, - [6881] = {.lex_state = 318}, - [6882] = {.lex_state = 315}, - [6883] = {.lex_state = 315, .external_lex_state = 18}, - [6884] = {.lex_state = 318}, - [6885] = {.lex_state = 315}, - [6886] = {.lex_state = 318}, - [6887] = {.lex_state = 315}, - [6888] = {.lex_state = 1}, - [6889] = {.lex_state = 318}, - [6890] = {.lex_state = 315}, - [6891] = {.lex_state = 318}, - [6892] = {.lex_state = 315, .external_lex_state = 16}, - [6893] = {.lex_state = 315, .external_lex_state = 16}, - [6894] = {.lex_state = 315}, - [6895] = {.lex_state = 318}, - [6896] = {.lex_state = 108}, - [6897] = {.lex_state = 318}, - [6898] = {.lex_state = 315, .external_lex_state = 18}, - [6899] = {.lex_state = 315}, - [6900] = {.lex_state = 318}, - [6901] = {.lex_state = 315}, - [6902] = {.lex_state = 318}, - [6903] = {.lex_state = 315, .external_lex_state = 18}, - [6904] = {.lex_state = 108}, - [6905] = {.lex_state = 318}, - [6906] = {.lex_state = 315}, - [6907] = {.lex_state = 315}, - [6908] = {.lex_state = 315}, - [6909] = {.lex_state = 318}, - [6910] = {.lex_state = 315, .external_lex_state = 16}, - [6911] = {.lex_state = 315}, - [6912] = {.lex_state = 315}, - [6913] = {.lex_state = 318}, - [6914] = {.lex_state = 318}, - [6915] = {.lex_state = 318}, - [6916] = {.lex_state = 318, .external_lex_state = 22}, - [6917] = {.lex_state = 318}, - [6918] = {.lex_state = 1}, - [6919] = {.lex_state = 318}, - [6920] = {.lex_state = 315}, - [6921] = {.lex_state = 318}, - [6922] = {.lex_state = 315}, - [6923] = {.lex_state = 315}, - [6924] = {.lex_state = 315}, - [6925] = {.lex_state = 315}, - [6926] = {.lex_state = 315}, - [6927] = {.lex_state = 315}, - [6928] = {.lex_state = 318}, - [6929] = {.lex_state = 315, .external_lex_state = 16}, - [6930] = {.lex_state = 315, .external_lex_state = 23}, - [6931] = {.lex_state = 315, .external_lex_state = 23}, - [6932] = {.lex_state = 318}, - [6933] = {.lex_state = 318, .external_lex_state = 22}, - [6934] = {.lex_state = 318}, - [6935] = {.lex_state = 316}, - [6936] = {.lex_state = 318}, - [6937] = {.lex_state = 1}, - [6938] = {.lex_state = 315}, - [6939] = {.lex_state = 315}, - [6940] = {.lex_state = 318}, - [6941] = {.lex_state = 315}, - [6942] = {.lex_state = 318}, - [6943] = {.lex_state = 315}, - [6944] = {.lex_state = 1}, - [6945] = {.lex_state = 315}, - [6946] = {.lex_state = 315, .external_lex_state = 16}, - [6947] = {.lex_state = 315, .external_lex_state = 16}, - [6948] = {.lex_state = 315, .external_lex_state = 16}, - [6949] = {.lex_state = 315}, - [6950] = {.lex_state = 315}, - [6951] = {.lex_state = 315}, - [6952] = {.lex_state = 315}, - [6953] = {.lex_state = 315}, - [6954] = {.lex_state = 315, .external_lex_state = 18}, - [6955] = {.lex_state = 315}, - [6956] = {.lex_state = 315}, - [6957] = {.lex_state = 315, .external_lex_state = 16}, - [6958] = {.lex_state = 318}, - [6959] = {.lex_state = 318}, - [6960] = {.lex_state = 318}, - [6961] = {.lex_state = 318}, - [6962] = {.lex_state = 315}, - [6963] = {.lex_state = 315}, - [6964] = {.lex_state = 315, .external_lex_state = 16}, - [6965] = {.lex_state = 315}, - [6966] = {.lex_state = 315}, - [6967] = {.lex_state = 315}, - [6968] = {.lex_state = 315}, - [6969] = {.lex_state = 318}, - [6970] = {.lex_state = 318, .external_lex_state = 22}, - [6971] = {.lex_state = 318}, - [6972] = {.lex_state = 318}, - [6973] = {.lex_state = 315}, - [6974] = {.lex_state = 315}, - [6975] = {.lex_state = 315}, - [6976] = {.lex_state = 315, .external_lex_state = 16}, - [6977] = {.lex_state = 315}, - [6978] = {.lex_state = 315}, - [6979] = {.lex_state = 315}, - [6980] = {.lex_state = 315}, - [6981] = {.lex_state = 315}, - [6982] = {.lex_state = 316}, - [6983] = {.lex_state = 315}, - [6984] = {.lex_state = 315, .external_lex_state = 23}, - [6985] = {.lex_state = 315, .external_lex_state = 23}, - [6986] = {.lex_state = 318}, - [6987] = {.lex_state = 318, .external_lex_state = 22}, - [6988] = {.lex_state = 318, .external_lex_state = 22}, - [6989] = {.lex_state = 315}, - [6990] = {.lex_state = 315}, - [6991] = {.lex_state = 315, .external_lex_state = 16}, - [6992] = {.lex_state = 315}, - [6993] = {.lex_state = 315}, - [6994] = {.lex_state = 315}, - [6995] = {.lex_state = 315}, - [6996] = {.lex_state = 315, .external_lex_state = 20}, - [6997] = {.lex_state = 315}, - [6998] = {.lex_state = 1}, - [6999] = {.lex_state = 318}, - [7000] = {.lex_state = 315, .external_lex_state = 16}, - [7001] = {.lex_state = 315, .external_lex_state = 16}, - [7002] = {.lex_state = 318}, - [7003] = {.lex_state = 315}, - [7004] = {.lex_state = 108}, - [7005] = {.lex_state = 315, .external_lex_state = 16}, - [7006] = {.lex_state = 315, .external_lex_state = 18}, - [7007] = {.lex_state = 315}, - [7008] = {.lex_state = 318}, - [7009] = {.lex_state = 315}, - [7010] = {.lex_state = 315}, - [7011] = {.lex_state = 318}, - [7012] = {.lex_state = 315, .external_lex_state = 18}, - [7013] = {.lex_state = 318}, - [7014] = {.lex_state = 318}, - [7015] = {.lex_state = 318}, - [7016] = {.lex_state = 315}, - [7017] = {.lex_state = 318}, - [7018] = {.lex_state = 315, .external_lex_state = 16}, - [7019] = {.lex_state = 315}, - [7020] = {.lex_state = 315}, - [7021] = {.lex_state = 318}, - [7022] = {.lex_state = 318}, - [7023] = {.lex_state = 108}, - [7024] = {.lex_state = 318, .external_lex_state = 22}, - [7025] = {.lex_state = 318}, - [7026] = {.lex_state = 315}, - [7027] = {.lex_state = 315}, - [7028] = {.lex_state = 315}, - [7029] = {.lex_state = 315, .external_lex_state = 16}, - [7030] = {.lex_state = 318}, - [7031] = {.lex_state = 315}, - [7032] = {.lex_state = 315}, - [7033] = {.lex_state = 315}, - [7034] = {.lex_state = 318}, - [7035] = {.lex_state = 315}, - [7036] = {.lex_state = 316}, - [7037] = {.lex_state = 318}, - [7038] = {.lex_state = 315, .external_lex_state = 23}, - [7039] = {.lex_state = 315, .external_lex_state = 23}, - [7040] = {.lex_state = 318}, - [7041] = {.lex_state = 318, .external_lex_state = 22}, - [7042] = {.lex_state = 315}, - [7043] = {.lex_state = 315}, - [7044] = {.lex_state = 315}, - [7045] = {.lex_state = 318}, - [7046] = {.lex_state = 315}, - [7047] = {.lex_state = 315}, - [7048] = {.lex_state = 315}, - [7049] = {.lex_state = 315}, - [7050] = {.lex_state = 315}, - [7051] = {.lex_state = 316}, - [7052] = {.lex_state = 1}, - [7053] = {.lex_state = 315, .external_lex_state = 16}, - [7054] = {.lex_state = 315, .external_lex_state = 16}, - [7055] = {.lex_state = 318}, - [7056] = {.lex_state = 315}, - [7057] = {.lex_state = 315}, - [7058] = {.lex_state = 318}, - [7059] = {.lex_state = 318}, - [7060] = {.lex_state = 318}, - [7061] = {.lex_state = 1}, - [7062] = {.lex_state = 318}, - [7063] = {.lex_state = 315}, - [7064] = {.lex_state = 316}, - [7065] = {.lex_state = 315}, - [7066] = {.lex_state = 315}, - [7067] = {.lex_state = 315, .external_lex_state = 16}, - [7068] = {.lex_state = 315}, - [7069] = {.lex_state = 315}, - [7070] = {.lex_state = 318, .external_lex_state = 22}, - [7071] = {.lex_state = 315}, - [7072] = {.lex_state = 315, .external_lex_state = 16}, - [7073] = {.lex_state = 315}, - [7074] = {.lex_state = 315}, - [7075] = {.lex_state = 108}, - [7076] = {.lex_state = 318}, - [7077] = {.lex_state = 315}, - [7078] = {.lex_state = 315, .external_lex_state = 23}, - [7079] = {.lex_state = 315, .external_lex_state = 23}, - [7080] = {.lex_state = 318}, - [7081] = {.lex_state = 318, .external_lex_state = 22}, - [7082] = {.lex_state = 318}, - [7083] = {.lex_state = 318}, - [7084] = {.lex_state = 315, .external_lex_state = 16}, - [7085] = {.lex_state = 315}, - [7086] = {.lex_state = 315}, - [7087] = {.lex_state = 318}, - [7088] = {.lex_state = 315, .external_lex_state = 20}, - [7089] = {.lex_state = 315}, - [7090] = {.lex_state = 318}, - [7091] = {.lex_state = 315}, - [7092] = {.lex_state = 1}, - [7093] = {.lex_state = 315, .external_lex_state = 16}, - [7094] = {.lex_state = 315, .external_lex_state = 16}, - [7095] = {.lex_state = 315}, - [7096] = {.lex_state = 315}, - [7097] = {.lex_state = 318}, - [7098] = {.lex_state = 315}, - [7099] = {.lex_state = 318}, - [7100] = {.lex_state = 318}, - [7101] = {.lex_state = 318}, - [7102] = {.lex_state = 318}, - [7103] = {.lex_state = 315, .external_lex_state = 16}, - [7104] = {.lex_state = 315}, - [7105] = {.lex_state = 315}, - [7106] = {.lex_state = 315}, - [7107] = {.lex_state = 315, .external_lex_state = 16}, - [7108] = {.lex_state = 315}, - [7109] = {.lex_state = 315, .external_lex_state = 20}, - [7110] = {.lex_state = 318, .external_lex_state = 22}, - [7111] = {.lex_state = 318}, - [7112] = {.lex_state = 318}, - [7113] = {.lex_state = 315}, - [7114] = {.lex_state = 318}, - [7115] = {.lex_state = 315}, - [7116] = {.lex_state = 315, .external_lex_state = 23}, - [7117] = {.lex_state = 315, .external_lex_state = 23}, - [7118] = {.lex_state = 318}, - [7119] = {.lex_state = 318, .external_lex_state = 22}, - [7120] = {.lex_state = 315}, - [7121] = {.lex_state = 315, .external_lex_state = 20}, - [7122] = {.lex_state = 315}, - [7123] = {.lex_state = 315}, - [7124] = {.lex_state = 315}, - [7125] = {.lex_state = 315}, - [7126] = {.lex_state = 318}, - [7127] = {.lex_state = 315}, - [7128] = {.lex_state = 316}, - [7129] = {.lex_state = 315, .external_lex_state = 16}, - [7130] = {.lex_state = 1}, - [7131] = {.lex_state = 315, .external_lex_state = 16}, - [7132] = {.lex_state = 315, .external_lex_state = 16}, - [7133] = {.lex_state = 315}, - [7134] = {.lex_state = 315}, - [7135] = {.lex_state = 315}, - [7136] = {.lex_state = 315}, - [7137] = {.lex_state = 315, .external_lex_state = 16}, - [7138] = {.lex_state = 318}, - [7139] = {.lex_state = 315, .external_lex_state = 16}, - [7140] = {.lex_state = 318}, - [7141] = {.lex_state = 318}, - [7142] = {.lex_state = 315}, - [7143] = {.lex_state = 315}, - [7144] = {.lex_state = 108}, - [7145] = {.lex_state = 315, .external_lex_state = 16}, - [7146] = {.lex_state = 318}, - [7147] = {.lex_state = 315, .external_lex_state = 18}, - [7148] = {.lex_state = 318, .external_lex_state = 22}, - [7149] = {.lex_state = 315, .external_lex_state = 16}, - [7150] = {.lex_state = 315, .external_lex_state = 23}, - [7151] = {.lex_state = 315, .external_lex_state = 23}, - [7152] = {.lex_state = 318}, - [7153] = {.lex_state = 315, .external_lex_state = 16}, - [7154] = {.lex_state = 315, .external_lex_state = 16}, - [7155] = {.lex_state = 315}, - [7156] = {.lex_state = 315}, - [7157] = {.lex_state = 315}, - [7158] = {.lex_state = 315}, - [7159] = {.lex_state = 315}, - [7160] = {.lex_state = 315}, - [7161] = {.lex_state = 315, .external_lex_state = 16}, - [7162] = {.lex_state = 315, .external_lex_state = 16}, - [7163] = {.lex_state = 315, .external_lex_state = 23}, - [7164] = {.lex_state = 315, .external_lex_state = 23}, - [7165] = {.lex_state = 318}, - [7166] = {.lex_state = 315, .external_lex_state = 16}, - [7167] = {.lex_state = 318}, - [7168] = {.lex_state = 315}, - [7169] = {.lex_state = 318}, - [7170] = {.lex_state = 315}, - [7171] = {.lex_state = 318}, - [7172] = {.lex_state = 315, .external_lex_state = 18}, - [7173] = {.lex_state = 315, .external_lex_state = 23}, - [7174] = {.lex_state = 315, .external_lex_state = 23}, - [7175] = {.lex_state = 318}, - [7176] = {.lex_state = 315}, - [7177] = {.lex_state = 315}, - [7178] = {.lex_state = 315}, - [7179] = {.lex_state = 315}, - [7180] = {.lex_state = 315}, - [7181] = {.lex_state = 318}, - [7182] = {.lex_state = 315}, - [7183] = {.lex_state = 315, .external_lex_state = 23}, - [7184] = {.lex_state = 315, .external_lex_state = 23}, - [7185] = {.lex_state = 318}, - [7186] = {.lex_state = 315, .external_lex_state = 20}, - [7187] = {.lex_state = 315, .external_lex_state = 18}, - [7188] = {.lex_state = 315}, - [7189] = {.lex_state = 315, .external_lex_state = 18}, - [7190] = {.lex_state = 315}, - [7191] = {.lex_state = 315, .external_lex_state = 16}, - [7192] = {.lex_state = 315, .external_lex_state = 23}, - [7193] = {.lex_state = 315, .external_lex_state = 23}, - [7194] = {.lex_state = 318}, - [7195] = {.lex_state = 318}, - [7196] = {.lex_state = 315}, - [7197] = {.lex_state = 315, .external_lex_state = 16}, - [7198] = {.lex_state = 318}, - [7199] = {.lex_state = 315}, - [7200] = {.lex_state = 315, .external_lex_state = 23}, - [7201] = {.lex_state = 315, .external_lex_state = 23}, - [7202] = {.lex_state = 318}, - [7203] = {.lex_state = 315}, - [7204] = {.lex_state = 315}, - [7205] = {.lex_state = 315, .external_lex_state = 23}, - [7206] = {.lex_state = 315, .external_lex_state = 23}, - [7207] = {.lex_state = 315}, - [7208] = {.lex_state = 315}, - [7209] = {.lex_state = 315}, - [7210] = {.lex_state = 315, .external_lex_state = 23}, - [7211] = {.lex_state = 315, .external_lex_state = 23}, - [7212] = {.lex_state = 315}, - [7213] = {.lex_state = 318}, - [7214] = {.lex_state = 315}, - [7215] = {.lex_state = 315, .external_lex_state = 23}, - [7216] = {.lex_state = 315, .external_lex_state = 23}, - [7217] = {.lex_state = 315}, - [7218] = {.lex_state = 315}, - [7219] = {.lex_state = 316}, - [7220] = {.lex_state = 315, .external_lex_state = 23}, - [7221] = {.lex_state = 315, .external_lex_state = 23}, - [7222] = {.lex_state = 1}, - [7223] = {.lex_state = 318}, - [7224] = {.lex_state = 315, .external_lex_state = 16}, - [7225] = {.lex_state = 315}, - [7226] = {.lex_state = 315, .external_lex_state = 16}, - [7227] = {.lex_state = 318}, - [7228] = {.lex_state = 315, .external_lex_state = 20}, - [7229] = {.lex_state = 315, .external_lex_state = 18}, - [7230] = {.lex_state = 315, .external_lex_state = 18}, - [7231] = {.lex_state = 108}, - [7232] = {.lex_state = 108}, - [7233] = {.lex_state = 315}, - [7234] = {.lex_state = 315}, - [7235] = {.lex_state = 315}, - [7236] = {.lex_state = 318}, - [7237] = {.lex_state = 315}, - [7238] = {.lex_state = 315}, - [7239] = {.lex_state = 108}, - [7240] = {.lex_state = 316}, - [7241] = {.lex_state = 315}, - [7242] = {.lex_state = 315}, - [7243] = {.lex_state = 315}, - [7244] = {.lex_state = 315}, - [7245] = {.lex_state = 318}, - [7246] = {.lex_state = 315}, - [7247] = {.lex_state = 108}, - [7248] = {.lex_state = 315}, - [7249] = {.lex_state = 1}, - [7250] = {.lex_state = 318}, - [7251] = {.lex_state = 315}, - [7252] = {.lex_state = 316}, - [7253] = {.lex_state = 318}, - [7254] = {.lex_state = 315, .external_lex_state = 16}, - [7255] = {.lex_state = 318}, - [7256] = {.lex_state = 315, .external_lex_state = 16}, - [7257] = {.lex_state = 315}, - [7258] = {.lex_state = 315}, - [7259] = {.lex_state = 315, .external_lex_state = 20}, - [7260] = {.lex_state = 315}, - [7261] = {.lex_state = 316}, - [7262] = {.lex_state = 315}, - [7263] = {.lex_state = 108}, - [7264] = {.lex_state = 315}, - [7265] = {.lex_state = 315}, - [7266] = {.lex_state = 315}, - [7267] = {.lex_state = 315}, - [7268] = {.lex_state = 316}, - [7269] = {.lex_state = 315}, - [7270] = {.lex_state = 108}, - [7271] = {.lex_state = 315}, - [7272] = {.lex_state = 315}, - [7273] = {.lex_state = 315}, - [7274] = {.lex_state = 315}, - [7275] = {.lex_state = 318}, - [7276] = {.lex_state = 315}, - [7277] = {.lex_state = 315}, - [7278] = {.lex_state = 318}, - [7279] = {.lex_state = 315, .external_lex_state = 20}, - [7280] = {.lex_state = 318}, - [7281] = {.lex_state = 318}, - [7282] = {.lex_state = 318}, - [7283] = {.lex_state = 318}, - [7284] = {.lex_state = 108}, - [7285] = {.lex_state = 315}, - [7286] = {.lex_state = 108}, - [7287] = {.lex_state = 315, .external_lex_state = 20}, - [7288] = {.lex_state = 315, .external_lex_state = 20}, - [7289] = {.lex_state = 315, .external_lex_state = 20}, - [7290] = {.lex_state = 315, .external_lex_state = 20}, - [7291] = {.lex_state = 318}, - [7292] = {.lex_state = 315}, - [7293] = {.lex_state = 315, .external_lex_state = 16}, - [7294] = {.lex_state = 315, .external_lex_state = 16}, - [7295] = {.lex_state = 315, .external_lex_state = 20}, - [7296] = {.lex_state = 315}, - [7297] = {.lex_state = 315}, - [7298] = {.lex_state = 315, .external_lex_state = 20}, - [7299] = {.lex_state = 316}, - [7300] = {.lex_state = 315}, - [7301] = {.lex_state = 318}, - [7302] = {.lex_state = 318}, - [7303] = {.lex_state = 315, .external_lex_state = 20}, - [7304] = {.lex_state = 318}, - [7305] = {.lex_state = 315}, - [7306] = {.lex_state = 315, .external_lex_state = 20}, - [7307] = {.lex_state = 316}, - [7308] = {.lex_state = 315}, - [7309] = {.lex_state = 315}, - [7310] = {.lex_state = 315, .external_lex_state = 18}, - [7311] = {.lex_state = 315, .external_lex_state = 20}, - [7312] = {.lex_state = 318}, - [7313] = {.lex_state = 315, .external_lex_state = 20}, - [7314] = {.lex_state = 318}, - [7315] = {.lex_state = 315, .external_lex_state = 16}, - [7316] = {.lex_state = 318}, - [7317] = {.lex_state = 315, .external_lex_state = 20}, - [7318] = {.lex_state = 315, .external_lex_state = 16}, - [7319] = {.lex_state = 315}, - [7320] = {.lex_state = 315, .external_lex_state = 18}, - [7321] = {.lex_state = 315, .external_lex_state = 20}, - [7322] = {.lex_state = 315}, - [7323] = {.lex_state = 318}, - [7324] = {.lex_state = 1}, - [7325] = {.lex_state = 318}, - [7326] = {.lex_state = 318}, - [7327] = {.lex_state = 315, .external_lex_state = 16}, - [7328] = {.lex_state = 318}, - [7329] = {.lex_state = 119}, - [7330] = {.lex_state = 315}, - [7331] = {.lex_state = 315}, - [7332] = {.lex_state = 108}, - [7333] = {.lex_state = 315, .external_lex_state = 18}, - [7334] = {.lex_state = 315}, - [7335] = {.lex_state = 315}, - [7336] = {.lex_state = 315}, - [7337] = {.lex_state = 315}, - [7338] = {.lex_state = 315, .external_lex_state = 18}, - [7339] = {.lex_state = 315, .external_lex_state = 16}, - [7340] = {.lex_state = 315}, - [7341] = {.lex_state = 315, .external_lex_state = 18}, - [7342] = {.lex_state = 315, .external_lex_state = 18}, - [7343] = {.lex_state = 315}, - [7344] = {.lex_state = 318}, - [7345] = {.lex_state = 315}, - [7346] = {.lex_state = 315, .external_lex_state = 20}, - [7347] = {.lex_state = 318}, - [7348] = {.lex_state = 318}, - [7349] = {.lex_state = 318}, - [7350] = {.lex_state = 318}, - [7351] = {.lex_state = 315, .external_lex_state = 16}, - [7352] = {.lex_state = 108}, - [7353] = {.lex_state = 318}, - [7354] = {.lex_state = 315, .external_lex_state = 20}, - [7355] = {.lex_state = 315, .external_lex_state = 20}, - [7356] = {.lex_state = 315, .external_lex_state = 20}, - [7357] = {.lex_state = 315, .external_lex_state = 20}, - [7358] = {.lex_state = 315}, - [7359] = {.lex_state = 318}, - [7360] = {.lex_state = 318}, - [7361] = {.lex_state = 318}, - [7362] = {.lex_state = 315}, - [7363] = {.lex_state = 315, .external_lex_state = 16}, - [7364] = {.lex_state = 315}, - [7365] = {.lex_state = 315, .external_lex_state = 20}, - [7366] = {.lex_state = 318}, - [7367] = {.lex_state = 315}, - [7368] = {.lex_state = 318}, - [7369] = {.lex_state = 315}, - [7370] = {.lex_state = 315, .external_lex_state = 20}, - [7371] = {.lex_state = 318}, - [7372] = {.lex_state = 315, .external_lex_state = 16}, - [7373] = {.lex_state = 315, .external_lex_state = 20}, - [7374] = {.lex_state = 315, .external_lex_state = 18}, - [7375] = {.lex_state = 315}, - [7376] = {.lex_state = 315}, - [7377] = {.lex_state = 318}, - [7378] = {.lex_state = 315, .external_lex_state = 20}, - [7379] = {.lex_state = 318}, - [7380] = {.lex_state = 315, .external_lex_state = 20}, - [7381] = {.lex_state = 315}, - [7382] = {.lex_state = 318}, - [7383] = {.lex_state = 318}, - [7384] = {.lex_state = 315, .external_lex_state = 20}, - [7385] = {.lex_state = 108}, - [7386] = {.lex_state = 315, .external_lex_state = 16}, - [7387] = {.lex_state = 315, .external_lex_state = 20}, - [7388] = {.lex_state = 315}, - [7389] = {.lex_state = 315}, - [7390] = {.lex_state = 315, .external_lex_state = 16}, - [7391] = {.lex_state = 318}, - [7392] = {.lex_state = 315}, - [7393] = {.lex_state = 315, .external_lex_state = 16}, - [7394] = {.lex_state = 318}, - [7395] = {.lex_state = 119}, - [7396] = {.lex_state = 315}, - [7397] = {.lex_state = 315}, - [7398] = {.lex_state = 315, .external_lex_state = 16}, - [7399] = {.lex_state = 315}, - [7400] = {.lex_state = 318}, - [7401] = {.lex_state = 315, .external_lex_state = 18}, - [7402] = {.lex_state = 315, .external_lex_state = 20}, - [7403] = {.lex_state = 318}, - [7404] = {.lex_state = 318}, - [7405] = {.lex_state = 318}, - [7406] = {.lex_state = 315, .external_lex_state = 18}, - [7407] = {.lex_state = 315, .external_lex_state = 16}, - [7408] = {.lex_state = 315, .external_lex_state = 18}, - [7409] = {.lex_state = 315, .external_lex_state = 20}, - [7410] = {.lex_state = 315, .external_lex_state = 20}, - [7411] = {.lex_state = 315, .external_lex_state = 20}, - [7412] = {.lex_state = 315, .external_lex_state = 20}, - [7413] = {.lex_state = 315, .external_lex_state = 16}, - [7414] = {.lex_state = 315}, - [7415] = {.lex_state = 315, .external_lex_state = 20}, - [7416] = {.lex_state = 315}, - [7417] = {.lex_state = 315}, - [7418] = {.lex_state = 315}, - [7419] = {.lex_state = 315, .external_lex_state = 20}, - [7420] = {.lex_state = 318}, - [7421] = {.lex_state = 315, .external_lex_state = 16}, - [7422] = {.lex_state = 318}, - [7423] = {.lex_state = 315}, - [7424] = {.lex_state = 315, .external_lex_state = 20}, - [7425] = {.lex_state = 318}, - [7426] = {.lex_state = 315, .external_lex_state = 16}, - [7427] = {.lex_state = 315, .external_lex_state = 20}, - [7428] = {.lex_state = 108}, - [7429] = {.lex_state = 315}, - [7430] = {.lex_state = 315}, - [7431] = {.lex_state = 315}, - [7432] = {.lex_state = 315, .external_lex_state = 20}, - [7433] = {.lex_state = 315}, - [7434] = {.lex_state = 315, .external_lex_state = 16}, - [7435] = {.lex_state = 318}, - [7436] = {.lex_state = 315, .external_lex_state = 20}, - [7437] = {.lex_state = 315}, - [7438] = {.lex_state = 315}, - [7439] = {.lex_state = 315, .external_lex_state = 20}, - [7440] = {.lex_state = 315}, - [7441] = {.lex_state = 315, .external_lex_state = 16}, - [7442] = {.lex_state = 315, .external_lex_state = 18}, - [7443] = {.lex_state = 318}, - [7444] = {.lex_state = 315}, - [7445] = {.lex_state = 315, .external_lex_state = 16}, - [7446] = {.lex_state = 318}, - [7447] = {.lex_state = 119}, - [7448] = {.lex_state = 315}, - [7449] = {.lex_state = 315}, - [7450] = {.lex_state = 315}, - [7451] = {.lex_state = 315}, - [7452] = {.lex_state = 315}, - [7453] = {.lex_state = 315, .external_lex_state = 20}, - [7454] = {.lex_state = 318}, - [7455] = {.lex_state = 318}, - [7456] = {.lex_state = 315, .external_lex_state = 16}, - [7457] = {.lex_state = 315}, - [7458] = {.lex_state = 315}, - [7459] = {.lex_state = 315, .external_lex_state = 20}, - [7460] = {.lex_state = 315, .external_lex_state = 20}, - [7461] = {.lex_state = 316}, - [7462] = {.lex_state = 315}, - [7463] = {.lex_state = 315}, - [7464] = {.lex_state = 318}, - [7465] = {.lex_state = 108}, - [7466] = {.lex_state = 315}, - [7467] = {.lex_state = 315}, - [7468] = {.lex_state = 318}, - [7469] = {.lex_state = 315}, - [7470] = {.lex_state = 318}, - [7471] = {.lex_state = 315}, - [7472] = {.lex_state = 108}, - [7473] = {.lex_state = 315, .external_lex_state = 20}, - [7474] = {.lex_state = 315, .external_lex_state = 16}, - [7475] = {.lex_state = 318}, - [7476] = {.lex_state = 318}, - [7477] = {.lex_state = 315, .external_lex_state = 20}, - [7478] = {.lex_state = 318}, - [7479] = {.lex_state = 315, .external_lex_state = 16}, - [7480] = {.lex_state = 315, .external_lex_state = 18}, - [7481] = {.lex_state = 315, .external_lex_state = 16}, - [7482] = {.lex_state = 318}, - [7483] = {.lex_state = 315, .external_lex_state = 16}, - [7484] = {.lex_state = 318}, - [7485] = {.lex_state = 315, .external_lex_state = 16}, - [7486] = {.lex_state = 315, .external_lex_state = 18}, - [7487] = {.lex_state = 315, .external_lex_state = 18}, - [7488] = {.lex_state = 315, .external_lex_state = 20}, - [7489] = {.lex_state = 318}, - [7490] = {.lex_state = 318}, - [7491] = {.lex_state = 315}, - [7492] = {.lex_state = 315}, - [7493] = {.lex_state = 315}, - [7494] = {.lex_state = 315, .external_lex_state = 20}, - [7495] = {.lex_state = 108}, - [7496] = {.lex_state = 315}, - [7497] = {.lex_state = 315, .external_lex_state = 16}, - [7498] = {.lex_state = 315}, - [7499] = {.lex_state = 113}, - [7500] = {.lex_state = 318}, - [7501] = {.lex_state = 108}, - [7502] = {.lex_state = 318}, - [7503] = {.lex_state = 315, .external_lex_state = 16}, - [7504] = {.lex_state = 318}, - [7505] = {.lex_state = 315, .external_lex_state = 18}, - [7506] = {.lex_state = 315}, - [7507] = {.lex_state = 315, .external_lex_state = 20}, - [7508] = {.lex_state = 315, .external_lex_state = 16}, - [7509] = {.lex_state = 315, .external_lex_state = 16}, - [7510] = {.lex_state = 318}, - [7511] = {.lex_state = 315, .external_lex_state = 20}, - [7512] = {.lex_state = 318}, - [7513] = {.lex_state = 315}, - [7514] = {.lex_state = 315}, - [7515] = {.lex_state = 318}, - [7516] = {.lex_state = 315}, - [7517] = {.lex_state = 318}, - [7518] = {.lex_state = 315}, - [7519] = {.lex_state = 315, .external_lex_state = 16}, - [7520] = {.lex_state = 315}, - [7521] = {.lex_state = 315, .external_lex_state = 20}, - [7522] = {.lex_state = 318}, - [7523] = {.lex_state = 318}, - [7524] = {.lex_state = 315, .external_lex_state = 16}, - [7525] = {.lex_state = 318}, - [7526] = {.lex_state = 315}, - [7527] = {.lex_state = 315, .external_lex_state = 20}, - [7528] = {.lex_state = 316}, - [7529] = {.lex_state = 315}, - [7530] = {.lex_state = 316}, - [7531] = {.lex_state = 315}, - [7532] = {.lex_state = 108}, - [7533] = {.lex_state = 318}, - [7534] = {.lex_state = 318}, - [7535] = {.lex_state = 318}, - [7536] = {.lex_state = 318}, - [7537] = {.lex_state = 318}, - [7538] = {.lex_state = 315}, - [7539] = {.lex_state = 315, .external_lex_state = 18}, - [7540] = {.lex_state = 315, .external_lex_state = 20}, - [7541] = {.lex_state = 315}, - [7542] = {.lex_state = 315, .external_lex_state = 18}, - [7543] = {.lex_state = 318}, - [7544] = {.lex_state = 315, .external_lex_state = 20}, - [7545] = {.lex_state = 108}, - [7546] = {.lex_state = 315}, - [7547] = {.lex_state = 315}, - [7548] = {.lex_state = 318}, - [7549] = {.lex_state = 315}, - [7550] = {.lex_state = 318}, - [7551] = {.lex_state = 315}, - [7552] = {.lex_state = 316}, - [7553] = {.lex_state = 315}, - [7554] = {.lex_state = 315, .external_lex_state = 20}, - [7555] = {.lex_state = 318}, - [7556] = {.lex_state = 318}, - [7557] = {.lex_state = 315}, - [7558] = {.lex_state = 315}, - [7559] = {.lex_state = 315, .external_lex_state = 18}, - [7560] = {.lex_state = 315, .external_lex_state = 20}, - [7561] = {.lex_state = 318}, - [7562] = {.lex_state = 315}, - [7563] = {.lex_state = 315, .external_lex_state = 16}, - [7564] = {.lex_state = 318}, - [7565] = {.lex_state = 315}, - [7566] = {.lex_state = 316}, - [7567] = {.lex_state = 318}, - [7568] = {.lex_state = 318}, - [7569] = {.lex_state = 318}, - [7570] = {.lex_state = 318}, - [7571] = {.lex_state = 108}, - [7572] = {.lex_state = 315}, - [7573] = {.lex_state = 315, .external_lex_state = 20}, - [7574] = {.lex_state = 315}, - [7575] = {.lex_state = 318}, - [7576] = {.lex_state = 318}, - [7577] = {.lex_state = 315, .external_lex_state = 20}, - [7578] = {.lex_state = 315, .external_lex_state = 16}, - [7579] = {.lex_state = 318}, - [7580] = {.lex_state = 318}, - [7581] = {.lex_state = 318}, - [7582] = {.lex_state = 318}, - [7583] = {.lex_state = 318}, - [7584] = {.lex_state = 315, .external_lex_state = 16}, - [7585] = {.lex_state = 315}, - [7586] = {.lex_state = 318, .external_lex_state = 22}, - [7587] = {.lex_state = 315, .external_lex_state = 20}, - [7588] = {.lex_state = 318}, - [7589] = {.lex_state = 318}, - [7590] = {.lex_state = 315}, - [7591] = {.lex_state = 316}, - [7592] = {.lex_state = 315, .external_lex_state = 20}, - [7593] = {.lex_state = 315, .external_lex_state = 20}, - [7594] = {.lex_state = 315, .external_lex_state = 20}, - [7595] = {.lex_state = 318}, - [7596] = {.lex_state = 318}, - [7597] = {.lex_state = 315}, - [7598] = {.lex_state = 318}, - [7599] = {.lex_state = 1}, - [7600] = {.lex_state = 315, .external_lex_state = 18}, - [7601] = {.lex_state = 315}, - [7602] = {.lex_state = 315}, - [7603] = {.lex_state = 315, .external_lex_state = 16}, - [7604] = {.lex_state = 315, .external_lex_state = 20}, - [7605] = {.lex_state = 318}, - [7606] = {.lex_state = 318}, - [7607] = {.lex_state = 315}, - [7608] = {.lex_state = 315}, - [7609] = {.lex_state = 318}, - [7610] = {.lex_state = 315, .external_lex_state = 20}, - [7611] = {.lex_state = 315, .external_lex_state = 20}, - [7612] = {.lex_state = 1}, - [7613] = {.lex_state = 1}, - [7614] = {.lex_state = 108}, - [7615] = {.lex_state = 315}, - [7616] = {.lex_state = 108}, - [7617] = {.lex_state = 318}, - [7618] = {.lex_state = 315}, - [7619] = {.lex_state = 108}, - [7620] = {.lex_state = 315, .external_lex_state = 20}, - [7621] = {.lex_state = 318}, - [7622] = {.lex_state = 318}, - [7623] = {.lex_state = 315}, - [7624] = {.lex_state = 315}, - [7625] = {.lex_state = 316}, - [7626] = {.lex_state = 315, .external_lex_state = 20}, - [7627] = {.lex_state = 315}, - [7628] = {.lex_state = 316}, - [7629] = {.lex_state = 315}, - [7630] = {.lex_state = 315}, - [7631] = {.lex_state = 315}, - [7632] = {.lex_state = 315, .external_lex_state = 18}, - [7633] = {.lex_state = 315}, - [7634] = {.lex_state = 1}, - [7635] = {.lex_state = 318}, - [7636] = {.lex_state = 318}, - [7637] = {.lex_state = 315, .external_lex_state = 20}, - [7638] = {.lex_state = 318}, - [7639] = {.lex_state = 318}, - [7640] = {.lex_state = 318}, - [7641] = {.lex_state = 315, .external_lex_state = 20}, - [7642] = {.lex_state = 315, .external_lex_state = 20}, - [7643] = {.lex_state = 318}, - [7644] = {.lex_state = 1}, - [7645] = {.lex_state = 1}, - [7646] = {.lex_state = 315}, - [7647] = {.lex_state = 315}, - [7648] = {.lex_state = 315}, - [7649] = {.lex_state = 318}, - [7650] = {.lex_state = 318}, - [7651] = {.lex_state = 108}, - [7652] = {.lex_state = 318}, - [7653] = {.lex_state = 108}, - [7654] = {.lex_state = 315}, - [7655] = {.lex_state = 315}, - [7656] = {.lex_state = 318}, - [7657] = {.lex_state = 318}, - [7658] = {.lex_state = 315}, - [7659] = {.lex_state = 318}, - [7660] = {.lex_state = 315}, - [7661] = {.lex_state = 315}, - [7662] = {.lex_state = 315}, - [7663] = {.lex_state = 315, .external_lex_state = 20}, - [7664] = {.lex_state = 315, .external_lex_state = 20}, - [7665] = {.lex_state = 315}, - [7666] = {.lex_state = 108}, - [7667] = {.lex_state = 318}, - [7668] = {.lex_state = 108}, - [7669] = {.lex_state = 315}, - [7670] = {.lex_state = 318}, - [7671] = {.lex_state = 315}, - [7672] = {.lex_state = 315}, - [7673] = {.lex_state = 315}, - [7674] = {.lex_state = 318}, - [7675] = {.lex_state = 318}, - [7676] = {.lex_state = 318}, - [7677] = {.lex_state = 318}, - [7678] = {.lex_state = 315, .external_lex_state = 20}, - [7679] = {.lex_state = 315, .external_lex_state = 20}, - [7680] = {.lex_state = 315, .external_lex_state = 16}, - [7681] = {.lex_state = 318}, - [7682] = {.lex_state = 318}, - [7683] = {.lex_state = 315}, - [7684] = {.lex_state = 315}, - [7685] = {.lex_state = 318}, - [7686] = {.lex_state = 318}, - [7687] = {.lex_state = 318}, - [7688] = {.lex_state = 315}, - [7689] = {.lex_state = 318}, - [7690] = {.lex_state = 318}, - [7691] = {.lex_state = 315, .external_lex_state = 18}, - [7692] = {.lex_state = 318}, - [7693] = {.lex_state = 315, .external_lex_state = 20}, - [7694] = {.lex_state = 315, .external_lex_state = 20}, - [7695] = {.lex_state = 315}, - [7696] = {.lex_state = 315}, - [7697] = {.lex_state = 108}, - [7698] = {.lex_state = 315, .external_lex_state = 20}, - [7699] = {.lex_state = 315, .external_lex_state = 20}, - [7700] = {.lex_state = 315}, - [7701] = {.lex_state = 315, .external_lex_state = 18}, - [7702] = {.lex_state = 318, .external_lex_state = 22}, - [7703] = {.lex_state = 315, .external_lex_state = 20}, - [7704] = {.lex_state = 315, .external_lex_state = 20}, - [7705] = {.lex_state = 318}, - [7706] = {.lex_state = 315}, - [7707] = {.lex_state = 315}, - [7708] = {.lex_state = 315, .external_lex_state = 20}, - [7709] = {.lex_state = 315, .external_lex_state = 20}, - [7710] = {.lex_state = 316}, - [7711] = {.lex_state = 315}, - [7712] = {.lex_state = 315}, - [7713] = {.lex_state = 315, .external_lex_state = 20}, - [7714] = {.lex_state = 315, .external_lex_state = 20}, - [7715] = {.lex_state = 174}, - [7716] = {.lex_state = 315, .external_lex_state = 16}, - [7717] = {.lex_state = 316}, - [7718] = {.lex_state = 315, .external_lex_state = 20}, - [7719] = {.lex_state = 315, .external_lex_state = 20}, - [7720] = {.lex_state = 315}, - [7721] = {.lex_state = 315}, - [7722] = {.lex_state = 315, .external_lex_state = 16}, - [7723] = {.lex_state = 315, .external_lex_state = 20}, - [7724] = {.lex_state = 315, .external_lex_state = 20}, - [7725] = {.lex_state = 315}, - [7726] = {.lex_state = 315, .external_lex_state = 16}, - [7727] = {.lex_state = 315}, - [7728] = {.lex_state = 315}, - [7729] = {.lex_state = 318}, - [7730] = {.lex_state = 108}, - [7731] = {.lex_state = 315}, - [7732] = {.lex_state = 315, .external_lex_state = 16}, - [7733] = {.lex_state = 315, .external_lex_state = 16}, - [7734] = {.lex_state = 318}, - [7735] = {.lex_state = 315}, - [7736] = {.lex_state = 315, .external_lex_state = 18}, - [7737] = {.lex_state = 315, .external_lex_state = 18}, - [7738] = {.lex_state = 315, .external_lex_state = 18}, - [7739] = {.lex_state = 315, .external_lex_state = 16}, - [7740] = {.lex_state = 315, .external_lex_state = 18}, - [7741] = {.lex_state = 315, .external_lex_state = 20}, - [7742] = {.lex_state = 315}, - [7743] = {.lex_state = 119}, - [7744] = {.lex_state = 315}, - [7745] = {.lex_state = 318}, - [7746] = {.lex_state = 315}, - [7747] = {.lex_state = 315, .external_lex_state = 18}, - [7748] = {.lex_state = 315, .external_lex_state = 18}, - [7749] = {.lex_state = 315}, - [7750] = {.lex_state = 315}, - [7751] = {.lex_state = 315, .external_lex_state = 16}, - [7752] = {.lex_state = 315, .external_lex_state = 16}, - [7753] = {.lex_state = 318}, - [7754] = {.lex_state = 108}, - [7755] = {.lex_state = 315, .external_lex_state = 20}, - [7756] = {.lex_state = 119}, - [7757] = {.lex_state = 315}, - [7758] = {.lex_state = 318}, - [7759] = {.lex_state = 315}, - [7760] = {.lex_state = 315, .external_lex_state = 20}, - [7761] = {.lex_state = 119}, - [7762] = {.lex_state = 315}, - [7763] = {.lex_state = 315}, - [7764] = {.lex_state = 315}, - [7765] = {.lex_state = 318}, - [7766] = {.lex_state = 315}, - [7767] = {.lex_state = 315}, - [7768] = {.lex_state = 108}, - [7769] = {.lex_state = 315}, - [7770] = {.lex_state = 1}, - [7771] = {.lex_state = 1}, - [7772] = {.lex_state = 318}, - [7773] = {.lex_state = 315}, - [7774] = {.lex_state = 119}, - [7775] = {.lex_state = 315}, - [7776] = {.lex_state = 315}, - [7777] = {.lex_state = 318, .external_lex_state = 22}, - [7778] = {.lex_state = 318}, - [7779] = {.lex_state = 315}, - [7780] = {.lex_state = 315}, - [7781] = {.lex_state = 315}, - [7782] = {.lex_state = 315}, - [7783] = {.lex_state = 108}, - [7784] = {.lex_state = 318}, - [7785] = {.lex_state = 318}, - [7786] = {.lex_state = 315, .external_lex_state = 23}, - [7787] = {.lex_state = 315, .external_lex_state = 23}, - [7788] = {.lex_state = 315, .external_lex_state = 16}, - [7789] = {.lex_state = 315, .external_lex_state = 16}, - [7790] = {.lex_state = 315, .external_lex_state = 16}, - [7791] = {.lex_state = 315, .external_lex_state = 16}, - [7792] = {.lex_state = 315}, - [7793] = {.lex_state = 318}, - [7794] = {.lex_state = 315, .external_lex_state = 20}, - [7795] = {.lex_state = 315}, - [7796] = {.lex_state = 315}, - [7797] = {.lex_state = 315, .external_lex_state = 20}, - [7798] = {.lex_state = 315, .external_lex_state = 20}, - [7799] = {.lex_state = 318}, - [7800] = {.lex_state = 315}, - [7801] = {.lex_state = 315}, - [7802] = {.lex_state = 315, .external_lex_state = 18}, - [7803] = {.lex_state = 315}, - [7804] = {.lex_state = 315}, - [7805] = {.lex_state = 315}, - [7806] = {.lex_state = 108}, - [7807] = {.lex_state = 315}, - [7808] = {.lex_state = 108}, - [7809] = {.lex_state = 315}, - [7810] = {.lex_state = 108}, - [7811] = {.lex_state = 557}, - [7812] = {.lex_state = 315, .external_lex_state = 24}, - [7813] = {.lex_state = 315}, - [7814] = {(TSStateId)(-1)}, - [7815] = {(TSStateId)(-1)}, - [7816] = {(TSStateId)(-1)}, - [7817] = {(TSStateId)(-1)}, - [7818] = {(TSStateId)(-1)}, - [7819] = {(TSStateId)(-1)}, - [7820] = {(TSStateId)(-1)}, - [7821] = {(TSStateId)(-1)}, + [4160] = {.lex_state = 194, .external_lex_state = 6}, + [4161] = {.lex_state = 194, .external_lex_state = 5}, + [4162] = {.lex_state = 194, .external_lex_state = 5}, + [4163] = {.lex_state = 203}, + [4164] = {.lex_state = 356}, + [4165] = {.lex_state = 203}, + [4166] = {.lex_state = 194, .external_lex_state = 6}, + [4167] = {.lex_state = 194, .external_lex_state = 5}, + [4168] = {.lex_state = 194, .external_lex_state = 6}, + [4169] = {.lex_state = 179}, + [4170] = {.lex_state = 199}, + [4171] = {.lex_state = 194, .external_lex_state = 6}, + [4172] = {.lex_state = 194, .external_lex_state = 5}, + [4173] = {.lex_state = 203}, + [4174] = {.lex_state = 194, .external_lex_state = 5}, + [4175] = {.lex_state = 194, .external_lex_state = 6}, + [4176] = {.lex_state = 203}, + [4177] = {.lex_state = 194, .external_lex_state = 6}, + [4178] = {.lex_state = 194, .external_lex_state = 6}, + [4179] = {.lex_state = 194, .external_lex_state = 6}, + [4180] = {.lex_state = 194, .external_lex_state = 6}, + [4181] = {.lex_state = 194, .external_lex_state = 6}, + [4182] = {.lex_state = 194, .external_lex_state = 5}, + [4183] = {.lex_state = 194, .external_lex_state = 5}, + [4184] = {.lex_state = 194, .external_lex_state = 5}, + [4185] = {.lex_state = 194, .external_lex_state = 6}, + [4186] = {.lex_state = 194, .external_lex_state = 5}, + [4187] = {.lex_state = 194, .external_lex_state = 6}, + [4188] = {.lex_state = 194, .external_lex_state = 6}, + [4189] = {.lex_state = 194, .external_lex_state = 6}, + [4190] = {.lex_state = 194, .external_lex_state = 5}, + [4191] = {.lex_state = 194, .external_lex_state = 6}, + [4192] = {.lex_state = 194, .external_lex_state = 6}, + [4193] = {.lex_state = 194, .external_lex_state = 6}, + [4194] = {.lex_state = 203}, + [4195] = {.lex_state = 194, .external_lex_state = 5}, + [4196] = {.lex_state = 194, .external_lex_state = 5}, + [4197] = {.lex_state = 203}, + [4198] = {.lex_state = 194, .external_lex_state = 5}, + [4199] = {.lex_state = 194, .external_lex_state = 5}, + [4200] = {.lex_state = 194, .external_lex_state = 6}, + [4201] = {.lex_state = 194, .external_lex_state = 5}, + [4202] = {.lex_state = 194, .external_lex_state = 5}, + [4203] = {.lex_state = 194, .external_lex_state = 5}, + [4204] = {.lex_state = 356}, + [4205] = {.lex_state = 194, .external_lex_state = 5}, + [4206] = {.lex_state = 194, .external_lex_state = 5}, + [4207] = {.lex_state = 194, .external_lex_state = 6}, + [4208] = {.lex_state = 203}, + [4209] = {.lex_state = 356, .external_lex_state = 16}, + [4210] = {.lex_state = 194, .external_lex_state = 6}, + [4211] = {.lex_state = 183}, + [4212] = {.lex_state = 194, .external_lex_state = 6}, + [4213] = {.lex_state = 356, .external_lex_state = 16}, + [4214] = {.lex_state = 194, .external_lex_state = 6}, + [4215] = {.lex_state = 194, .external_lex_state = 6}, + [4216] = {.lex_state = 194, .external_lex_state = 6}, + [4217] = {.lex_state = 194, .external_lex_state = 6}, + [4218] = {.lex_state = 194, .external_lex_state = 6}, + [4219] = {.lex_state = 194, .external_lex_state = 6}, + [4220] = {.lex_state = 194, .external_lex_state = 6}, + [4221] = {.lex_state = 196, .external_lex_state = 14}, + [4222] = {.lex_state = 356, .external_lex_state = 16}, + [4223] = {.lex_state = 356, .external_lex_state = 16}, + [4224] = {.lex_state = 194, .external_lex_state = 6}, + [4225] = {.lex_state = 356, .external_lex_state = 16}, + [4226] = {.lex_state = 203}, + [4227] = {.lex_state = 203}, + [4228] = {.lex_state = 356, .external_lex_state = 16}, + [4229] = {.lex_state = 187, .external_lex_state = 16}, + [4230] = {.lex_state = 356, .external_lex_state = 16}, + [4231] = {.lex_state = 203}, + [4232] = {.lex_state = 356, .external_lex_state = 16}, + [4233] = {.lex_state = 203}, + [4234] = {.lex_state = 203}, + [4235] = {.lex_state = 187}, + [4236] = {.lex_state = 203}, + [4237] = {.lex_state = 203}, + [4238] = {.lex_state = 203}, + [4239] = {.lex_state = 356}, + [4240] = {.lex_state = 202, .external_lex_state = 17}, + [4241] = {.lex_state = 202, .external_lex_state = 17}, + [4242] = {.lex_state = 356}, + [4243] = {.lex_state = 184}, + [4244] = {.lex_state = 203}, + [4245] = {.lex_state = 356}, + [4246] = {.lex_state = 187}, + [4247] = {.lex_state = 203}, + [4248] = {.lex_state = 187}, + [4249] = {.lex_state = 187}, + [4250] = {.lex_state = 203}, + [4251] = {.lex_state = 203}, + [4252] = {.lex_state = 187}, + [4253] = {.lex_state = 203}, + [4254] = {.lex_state = 187}, + [4255] = {.lex_state = 187}, + [4256] = {.lex_state = 184}, + [4257] = {.lex_state = 202, .external_lex_state = 17}, + [4258] = {.lex_state = 203}, + [4259] = {.lex_state = 203}, + [4260] = {.lex_state = 187}, + [4261] = {.lex_state = 187}, + [4262] = {.lex_state = 202, .external_lex_state = 17}, + [4263] = {.lex_state = 184}, + [4264] = {.lex_state = 180}, + [4265] = {.lex_state = 187}, + [4266] = {.lex_state = 203}, + [4267] = {.lex_state = 187}, + [4268] = {.lex_state = 187}, + [4269] = {.lex_state = 184}, + [4270] = {.lex_state = 203}, + [4271] = {.lex_state = 187}, + [4272] = {.lex_state = 202, .external_lex_state = 17}, + [4273] = {.lex_state = 203}, + [4274] = {.lex_state = 203}, + [4275] = {.lex_state = 202, .external_lex_state = 17}, + [4276] = {.lex_state = 187}, + [4277] = {.lex_state = 187}, + [4278] = {.lex_state = 180}, + [4279] = {.lex_state = 202, .external_lex_state = 17}, + [4280] = {.lex_state = 187}, + [4281] = {.lex_state = 180}, + [4282] = {.lex_state = 203}, + [4283] = {.lex_state = 202, .external_lex_state = 18}, + [4284] = {.lex_state = 187, .external_lex_state = 16}, + [4285] = {.lex_state = 202, .external_lex_state = 18}, + [4286] = {.lex_state = 202, .external_lex_state = 18}, + [4287] = {.lex_state = 202, .external_lex_state = 18}, + [4288] = {.lex_state = 187, .external_lex_state = 16}, + [4289] = {.lex_state = 187, .external_lex_state = 16}, + [4290] = {.lex_state = 202, .external_lex_state = 17}, + [4291] = {.lex_state = 187, .external_lex_state = 14}, + [4292] = {.lex_state = 203}, + [4293] = {.lex_state = 202, .external_lex_state = 18}, + [4294] = {.lex_state = 202, .external_lex_state = 17}, + [4295] = {.lex_state = 202, .external_lex_state = 17}, + [4296] = {.lex_state = 138}, + [4297] = {.lex_state = 202, .external_lex_state = 17}, + [4298] = {.lex_state = 180}, + [4299] = {.lex_state = 187, .external_lex_state = 16}, + [4300] = {.lex_state = 202, .external_lex_state = 17}, + [4301] = {.lex_state = 202, .external_lex_state = 17}, + [4302] = {.lex_state = 187, .external_lex_state = 14}, + [4303] = {.lex_state = 187, .external_lex_state = 14}, + [4304] = {.lex_state = 187, .external_lex_state = 16}, + [4305] = {.lex_state = 187, .external_lex_state = 14}, + [4306] = {.lex_state = 203}, + [4307] = {.lex_state = 202, .external_lex_state = 18}, + [4308] = {.lex_state = 187, .external_lex_state = 16}, + [4309] = {.lex_state = 187, .external_lex_state = 16}, + [4310] = {.lex_state = 202, .external_lex_state = 17}, + [4311] = {.lex_state = 187, .external_lex_state = 14}, + [4312] = {.lex_state = 187, .external_lex_state = 16}, + [4313] = {.lex_state = 203}, + [4314] = {.lex_state = 180}, + [4315] = {.lex_state = 202, .external_lex_state = 17}, + [4316] = {.lex_state = 180}, + [4317] = {.lex_state = 175, .external_lex_state = 14}, + [4318] = {.lex_state = 180}, + [4319] = {.lex_state = 180}, + [4320] = {.lex_state = 187, .external_lex_state = 14}, + [4321] = {.lex_state = 187, .external_lex_state = 16}, + [4322] = {.lex_state = 187, .external_lex_state = 16}, + [4323] = {.lex_state = 187, .external_lex_state = 16}, + [4324] = {.lex_state = 138}, + [4325] = {.lex_state = 187, .external_lex_state = 14}, + [4326] = {.lex_state = 187, .external_lex_state = 16}, + [4327] = {.lex_state = 202, .external_lex_state = 18}, + [4328] = {.lex_state = 203}, + [4329] = {.lex_state = 203}, + [4330] = {.lex_state = 203}, + [4331] = {.lex_state = 203}, + [4332] = {.lex_state = 203}, + [4333] = {.lex_state = 203}, + [4334] = {.lex_state = 203}, + [4335] = {.lex_state = 203}, + [4336] = {.lex_state = 203}, + [4337] = {.lex_state = 203}, + [4338] = {.lex_state = 203}, + [4339] = {.lex_state = 203}, + [4340] = {.lex_state = 203}, + [4341] = {.lex_state = 203}, + [4342] = {.lex_state = 203}, + [4343] = {.lex_state = 356}, + [4344] = {.lex_state = 203}, + [4345] = {.lex_state = 203}, + [4346] = {.lex_state = 180}, + [4347] = {.lex_state = 180}, + [4348] = {.lex_state = 203}, + [4349] = {.lex_state = 203}, + [4350] = {.lex_state = 203}, + [4351] = {.lex_state = 203}, + [4352] = {.lex_state = 203}, + [4353] = {.lex_state = 203}, + [4354] = {.lex_state = 203}, + [4355] = {.lex_state = 203}, + [4356] = {.lex_state = 187, .external_lex_state = 14}, + [4357] = {.lex_state = 180}, + [4358] = {.lex_state = 203}, + [4359] = {.lex_state = 203}, + [4360] = {.lex_state = 180}, + [4361] = {.lex_state = 187, .external_lex_state = 14}, + [4362] = {.lex_state = 203}, + [4363] = {.lex_state = 203}, + [4364] = {.lex_state = 187, .external_lex_state = 16}, + [4365] = {.lex_state = 203}, + [4366] = {.lex_state = 203}, + [4367] = {.lex_state = 203}, + [4368] = {.lex_state = 203}, + [4369] = {.lex_state = 180}, + [4370] = {.lex_state = 203}, + [4371] = {.lex_state = 203}, + [4372] = {.lex_state = 203}, + [4373] = {.lex_state = 203}, + [4374] = {.lex_state = 203}, + [4375] = {.lex_state = 203}, + [4376] = {.lex_state = 203}, + [4377] = {.lex_state = 187, .external_lex_state = 14}, + [4378] = {.lex_state = 203}, + [4379] = {.lex_state = 203}, + [4380] = {.lex_state = 203}, + [4381] = {.lex_state = 203}, + [4382] = {.lex_state = 203}, + [4383] = {.lex_state = 203}, + [4384] = {.lex_state = 203}, + [4385] = {.lex_state = 203}, + [4386] = {.lex_state = 203}, + [4387] = {.lex_state = 187, .external_lex_state = 14}, + [4388] = {.lex_state = 202, .external_lex_state = 17}, + [4389] = {.lex_state = 356}, + [4390] = {.lex_state = 356}, + [4391] = {.lex_state = 203}, + [4392] = {.lex_state = 203}, + [4393] = {.lex_state = 180}, + [4394] = {.lex_state = 180}, + [4395] = {.lex_state = 202, .external_lex_state = 17}, + [4396] = {.lex_state = 203}, + [4397] = {.lex_state = 203}, + [4398] = {.lex_state = 180}, + [4399] = {.lex_state = 203}, + [4400] = {.lex_state = 203}, + [4401] = {.lex_state = 203}, + [4402] = {.lex_state = 203}, + [4403] = {.lex_state = 202, .external_lex_state = 17}, + [4404] = {.lex_state = 203}, + [4405] = {.lex_state = 203}, + [4406] = {.lex_state = 203}, + [4407] = {.lex_state = 180}, + [4408] = {.lex_state = 203}, + [4409] = {.lex_state = 203}, + [4410] = {.lex_state = 203}, + [4411] = {.lex_state = 203}, + [4412] = {.lex_state = 180}, + [4413] = {.lex_state = 180}, + [4414] = {.lex_state = 203}, + [4415] = {.lex_state = 203}, + [4416] = {.lex_state = 203}, + [4417] = {.lex_state = 180}, + [4418] = {.lex_state = 203}, + [4419] = {.lex_state = 203}, + [4420] = {.lex_state = 180}, + [4421] = {.lex_state = 203}, + [4422] = {.lex_state = 180}, + [4423] = {.lex_state = 203}, + [4424] = {.lex_state = 203}, + [4425] = {.lex_state = 203}, + [4426] = {.lex_state = 203}, + [4427] = {.lex_state = 203}, + [4428] = {.lex_state = 187, .external_lex_state = 16}, + [4429] = {.lex_state = 203}, + [4430] = {.lex_state = 203}, + [4431] = {.lex_state = 203}, + [4432] = {.lex_state = 203}, + [4433] = {.lex_state = 203}, + [4434] = {.lex_state = 203}, + [4435] = {.lex_state = 180}, + [4436] = {.lex_state = 203}, + [4437] = {.lex_state = 203}, + [4438] = {.lex_state = 203}, + [4439] = {.lex_state = 203}, + [4440] = {.lex_state = 180}, + [4441] = {.lex_state = 203}, + [4442] = {.lex_state = 203}, + [4443] = {.lex_state = 203}, + [4444] = {.lex_state = 203}, + [4445] = {.lex_state = 203}, + [4446] = {.lex_state = 203}, + [4447] = {.lex_state = 187, .external_lex_state = 16}, + [4448] = {.lex_state = 203}, + [4449] = {.lex_state = 203}, + [4450] = {.lex_state = 203}, + [4451] = {.lex_state = 203}, + [4452] = {.lex_state = 203}, + [4453] = {.lex_state = 203}, + [4454] = {.lex_state = 203}, + [4455] = {.lex_state = 203}, + [4456] = {.lex_state = 180}, + [4457] = {.lex_state = 203}, + [4458] = {.lex_state = 180}, + [4459] = {.lex_state = 203}, + [4460] = {.lex_state = 203}, + [4461] = {.lex_state = 203}, + [4462] = {.lex_state = 180}, + [4463] = {.lex_state = 203}, + [4464] = {.lex_state = 203}, + [4465] = {.lex_state = 203}, + [4466] = {.lex_state = 203}, + [4467] = {.lex_state = 203}, + [4468] = {.lex_state = 203}, + [4469] = {.lex_state = 203}, + [4470] = {.lex_state = 180}, + [4471] = {.lex_state = 203}, + [4472] = {.lex_state = 180}, + [4473] = {.lex_state = 203}, + [4474] = {.lex_state = 203}, + [4475] = {.lex_state = 203}, + [4476] = {.lex_state = 203}, + [4477] = {.lex_state = 203}, + [4478] = {.lex_state = 203}, + [4479] = {.lex_state = 203}, + [4480] = {.lex_state = 203}, + [4481] = {.lex_state = 187, .external_lex_state = 16}, + [4482] = {.lex_state = 203}, + [4483] = {.lex_state = 203}, + [4484] = {.lex_state = 203}, + [4485] = {.lex_state = 203}, + [4486] = {.lex_state = 203}, + [4487] = {.lex_state = 203}, + [4488] = {.lex_state = 203}, + [4489] = {.lex_state = 187, .external_lex_state = 16}, + [4490] = {.lex_state = 203}, + [4491] = {.lex_state = 203}, + [4492] = {.lex_state = 203}, + [4493] = {.lex_state = 203}, + [4494] = {.lex_state = 203}, + [4495] = {.lex_state = 203}, + [4496] = {.lex_state = 203}, + [4497] = {.lex_state = 203}, + [4498] = {.lex_state = 203}, + [4499] = {.lex_state = 203}, + [4500] = {.lex_state = 203}, + [4501] = {.lex_state = 203}, + [4502] = {.lex_state = 356}, + [4503] = {.lex_state = 203}, + [4504] = {.lex_state = 203}, + [4505] = {.lex_state = 203}, + [4506] = {.lex_state = 202, .external_lex_state = 17}, + [4507] = {.lex_state = 203}, + [4508] = {.lex_state = 203}, + [4509] = {.lex_state = 203}, + [4510] = {.lex_state = 203}, + [4511] = {.lex_state = 203}, + [4512] = {.lex_state = 180}, + [4513] = {.lex_state = 203}, + [4514] = {.lex_state = 203}, + [4515] = {.lex_state = 203}, + [4516] = {.lex_state = 203}, + [4517] = {.lex_state = 203}, + [4518] = {.lex_state = 203}, + [4519] = {.lex_state = 203}, + [4520] = {.lex_state = 203}, + [4521] = {.lex_state = 203}, + [4522] = {.lex_state = 203}, + [4523] = {.lex_state = 203}, + [4524] = {.lex_state = 203}, + [4525] = {.lex_state = 203}, + [4526] = {.lex_state = 203}, + [4527] = {.lex_state = 203}, + [4528] = {.lex_state = 203}, + [4529] = {.lex_state = 203}, + [4530] = {.lex_state = 203}, + [4531] = {.lex_state = 203}, + [4532] = {.lex_state = 203}, + [4533] = {.lex_state = 203}, + [4534] = {.lex_state = 203}, + [4535] = {.lex_state = 203}, + [4536] = {.lex_state = 203}, + [4537] = {.lex_state = 203}, + [4538] = {.lex_state = 203}, + [4539] = {.lex_state = 203}, + [4540] = {.lex_state = 203}, + [4541] = {.lex_state = 203}, + [4542] = {.lex_state = 203}, + [4543] = {.lex_state = 203}, + [4544] = {.lex_state = 203}, + [4545] = {.lex_state = 203}, + [4546] = {.lex_state = 180}, + [4547] = {.lex_state = 203}, + [4548] = {.lex_state = 203}, + [4549] = {.lex_state = 203}, + [4550] = {.lex_state = 203}, + [4551] = {.lex_state = 203}, + [4552] = {.lex_state = 203}, + [4553] = {.lex_state = 203}, + [4554] = {.lex_state = 203}, + [4555] = {.lex_state = 203}, + [4556] = {.lex_state = 203}, + [4557] = {.lex_state = 203}, + [4558] = {.lex_state = 203}, + [4559] = {.lex_state = 203}, + [4560] = {.lex_state = 203}, + [4561] = {.lex_state = 180}, + [4562] = {.lex_state = 187, .external_lex_state = 14}, + [4563] = {.lex_state = 203}, + [4564] = {.lex_state = 203}, + [4565] = {.lex_state = 180}, + [4566] = {.lex_state = 203}, + [4567] = {.lex_state = 203}, + [4568] = {.lex_state = 203}, + [4569] = {.lex_state = 203}, + [4570] = {.lex_state = 203}, + [4571] = {.lex_state = 180}, + [4572] = {.lex_state = 203}, + [4573] = {.lex_state = 203}, + [4574] = {.lex_state = 203}, + [4575] = {.lex_state = 203}, + [4576] = {.lex_state = 194, .external_lex_state = 5}, + [4577] = {.lex_state = 180}, + [4578] = {.lex_state = 203}, + [4579] = {.lex_state = 194, .external_lex_state = 5}, + [4580] = {.lex_state = 202, .external_lex_state = 17}, + [4581] = {.lex_state = 194, .external_lex_state = 5}, + [4582] = {.lex_state = 203}, + [4583] = {.lex_state = 203}, + [4584] = {.lex_state = 203}, + [4585] = {.lex_state = 203}, + [4586] = {.lex_state = 203}, + [4587] = {.lex_state = 203}, + [4588] = {.lex_state = 203}, + [4589] = {.lex_state = 203}, + [4590] = {.lex_state = 203}, + [4591] = {.lex_state = 203}, + [4592] = {.lex_state = 203}, + [4593] = {.lex_state = 202, .external_lex_state = 17}, + [4594] = {.lex_state = 203}, + [4595] = {.lex_state = 203}, + [4596] = {.lex_state = 203}, + [4597] = {.lex_state = 203}, + [4598] = {.lex_state = 194, .external_lex_state = 5}, + [4599] = {.lex_state = 203}, + [4600] = {.lex_state = 203}, + [4601] = {.lex_state = 203}, + [4602] = {.lex_state = 203}, + [4603] = {.lex_state = 203}, + [4604] = {.lex_state = 203}, + [4605] = {.lex_state = 203}, + [4606] = {.lex_state = 203}, + [4607] = {.lex_state = 203}, + [4608] = {.lex_state = 203}, + [4609] = {.lex_state = 203}, + [4610] = {.lex_state = 203}, + [4611] = {.lex_state = 202, .external_lex_state = 18}, + [4612] = {.lex_state = 202, .external_lex_state = 17}, + [4613] = {.lex_state = 203}, + [4614] = {.lex_state = 203}, + [4615] = {.lex_state = 180}, + [4616] = {.lex_state = 203}, + [4617] = {.lex_state = 203}, + [4618] = {.lex_state = 203}, + [4619] = {.lex_state = 203}, + [4620] = {.lex_state = 203}, + [4621] = {.lex_state = 203}, + [4622] = {.lex_state = 203}, + [4623] = {.lex_state = 180}, + [4624] = {.lex_state = 180}, + [4625] = {.lex_state = 203}, + [4626] = {.lex_state = 203}, + [4627] = {.lex_state = 180}, + [4628] = {.lex_state = 202, .external_lex_state = 17}, + [4629] = {.lex_state = 180}, + [4630] = {.lex_state = 202, .external_lex_state = 17}, + [4631] = {.lex_state = 203}, + [4632] = {.lex_state = 180}, + [4633] = {.lex_state = 203}, + [4634] = {.lex_state = 187, .external_lex_state = 14}, + [4635] = {.lex_state = 203}, + [4636] = {.lex_state = 202, .external_lex_state = 18}, + [4637] = {.lex_state = 180}, + [4638] = {.lex_state = 203}, + [4639] = {.lex_state = 202, .external_lex_state = 18}, + [4640] = {.lex_state = 203}, + [4641] = {.lex_state = 203}, + [4642] = {.lex_state = 203}, + [4643] = {.lex_state = 202, .external_lex_state = 18}, + [4644] = {.lex_state = 203}, + [4645] = {.lex_state = 194, .external_lex_state = 5}, + [4646] = {.lex_state = 203}, + [4647] = {.lex_state = 356}, + [4648] = {.lex_state = 203}, + [4649] = {.lex_state = 203}, + [4650] = {.lex_state = 203}, + [4651] = {.lex_state = 203}, + [4652] = {.lex_state = 203}, + [4653] = {.lex_state = 202, .external_lex_state = 17}, + [4654] = {.lex_state = 203}, + [4655] = {.lex_state = 203}, + [4656] = {.lex_state = 203}, + [4657] = {.lex_state = 202, .external_lex_state = 18}, + [4658] = {.lex_state = 203}, + [4659] = {.lex_state = 203}, + [4660] = {.lex_state = 203}, + [4661] = {.lex_state = 187, .external_lex_state = 14}, + [4662] = {.lex_state = 203}, + [4663] = {.lex_state = 180}, + [4664] = {.lex_state = 180}, + [4665] = {.lex_state = 187, .external_lex_state = 14}, + [4666] = {.lex_state = 203}, + [4667] = {.lex_state = 202, .external_lex_state = 18}, + [4668] = {.lex_state = 203}, + [4669] = {.lex_state = 203}, + [4670] = {.lex_state = 203}, + [4671] = {.lex_state = 203}, + [4672] = {.lex_state = 203}, + [4673] = {.lex_state = 203}, + [4674] = {.lex_state = 203}, + [4675] = {.lex_state = 203}, + [4676] = {.lex_state = 203}, + [4677] = {.lex_state = 203}, + [4678] = {.lex_state = 203}, + [4679] = {.lex_state = 203}, + [4680] = {.lex_state = 203}, + [4681] = {.lex_state = 203}, + [4682] = {.lex_state = 180}, + [4683] = {.lex_state = 203}, + [4684] = {.lex_state = 203}, + [4685] = {.lex_state = 203}, + [4686] = {.lex_state = 203}, + [4687] = {.lex_state = 203}, + [4688] = {.lex_state = 203}, + [4689] = {.lex_state = 203}, + [4690] = {.lex_state = 203}, + [4691] = {.lex_state = 194, .external_lex_state = 5}, + [4692] = {.lex_state = 203}, + [4693] = {.lex_state = 203}, + [4694] = {.lex_state = 180}, + [4695] = {.lex_state = 203}, + [4696] = {.lex_state = 203}, + [4697] = {.lex_state = 203}, + [4698] = {.lex_state = 203}, + [4699] = {.lex_state = 203}, + [4700] = {.lex_state = 180}, + [4701] = {.lex_state = 203}, + [4702] = {.lex_state = 203}, + [4703] = {.lex_state = 203}, + [4704] = {.lex_state = 203}, + [4705] = {.lex_state = 203}, + [4706] = {.lex_state = 202, .external_lex_state = 18}, + [4707] = {.lex_state = 202, .external_lex_state = 18}, + [4708] = {.lex_state = 203}, + [4709] = {.lex_state = 203}, + [4710] = {.lex_state = 203}, + [4711] = {.lex_state = 203}, + [4712] = {.lex_state = 203}, + [4713] = {.lex_state = 203}, + [4714] = {.lex_state = 203}, + [4715] = {.lex_state = 203}, + [4716] = {.lex_state = 203}, + [4717] = {.lex_state = 180}, + [4718] = {.lex_state = 203}, + [4719] = {.lex_state = 203}, + [4720] = {.lex_state = 138}, + [4721] = {.lex_state = 194, .external_lex_state = 6}, + [4722] = {.lex_state = 194, .external_lex_state = 5}, + [4723] = {.lex_state = 194, .external_lex_state = 6}, + [4724] = {.lex_state = 194, .external_lex_state = 5}, + [4725] = {.lex_state = 194, .external_lex_state = 5}, + [4726] = {.lex_state = 194, .external_lex_state = 5}, + [4727] = {.lex_state = 194, .external_lex_state = 5}, + [4728] = {.lex_state = 194, .external_lex_state = 5}, + [4729] = {.lex_state = 187, .external_lex_state = 16}, + [4730] = {.lex_state = 194, .external_lex_state = 5}, + [4731] = {.lex_state = 187, .external_lex_state = 14}, + [4732] = {.lex_state = 187, .external_lex_state = 14}, + [4733] = {.lex_state = 187, .external_lex_state = 14}, + [4734] = {.lex_state = 202, .external_lex_state = 18}, + [4735] = {.lex_state = 202, .external_lex_state = 18}, + [4736] = {.lex_state = 187, .external_lex_state = 14}, + [4737] = {.lex_state = 202, .external_lex_state = 18}, + [4738] = {.lex_state = 138}, + [4739] = {.lex_state = 202, .external_lex_state = 18}, + [4740] = {.lex_state = 202, .external_lex_state = 18}, + [4741] = {.lex_state = 202, .external_lex_state = 18}, + [4742] = {.lex_state = 180}, + [4743] = {.lex_state = 194, .external_lex_state = 6}, + [4744] = {.lex_state = 180}, + [4745] = {.lex_state = 194, .external_lex_state = 6}, + [4746] = {.lex_state = 180}, + [4747] = {.lex_state = 180}, + [4748] = {.lex_state = 180}, + [4749] = {.lex_state = 171}, + [4750] = {.lex_state = 187, .external_lex_state = 14}, + [4751] = {.lex_state = 194, .external_lex_state = 5}, + [4752] = {.lex_state = 194, .external_lex_state = 5}, + [4753] = {.lex_state = 194, .external_lex_state = 5}, + [4754] = {.lex_state = 194, .external_lex_state = 5}, + [4755] = {.lex_state = 194, .external_lex_state = 5}, + [4756] = {.lex_state = 202, .external_lex_state = 18}, + [4757] = {.lex_state = 202, .external_lex_state = 18}, + [4758] = {.lex_state = 202, .external_lex_state = 18}, + [4759] = {.lex_state = 202, .external_lex_state = 18}, + [4760] = {.lex_state = 187, .external_lex_state = 14}, + [4761] = {.lex_state = 194, .external_lex_state = 6}, + [4762] = {.lex_state = 194, .external_lex_state = 6}, + [4763] = {.lex_state = 187, .external_lex_state = 16}, + [4764] = {.lex_state = 356, .external_lex_state = 17}, + [4765] = {.lex_state = 202, .external_lex_state = 17}, + [4766] = {.lex_state = 202, .external_lex_state = 17}, + [4767] = {.lex_state = 202, .external_lex_state = 17}, + [4768] = {.lex_state = 171, .external_lex_state = 14}, + [4769] = {.lex_state = 187, .external_lex_state = 16}, + [4770] = {.lex_state = 187, .external_lex_state = 16}, + [4771] = {.lex_state = 187, .external_lex_state = 16}, + [4772] = {.lex_state = 356, .external_lex_state = 17}, + [4773] = {.lex_state = 187, .external_lex_state = 16}, + [4774] = {.lex_state = 187, .external_lex_state = 14}, + [4775] = {.lex_state = 187, .external_lex_state = 14}, + [4776] = {.lex_state = 187, .external_lex_state = 14}, + [4777] = {.lex_state = 356, .external_lex_state = 17}, + [4778] = {.lex_state = 202, .external_lex_state = 17}, + [4779] = {.lex_state = 202, .external_lex_state = 17}, + [4780] = {.lex_state = 202, .external_lex_state = 17}, + [4781] = {.lex_state = 187, .external_lex_state = 14}, + [4782] = {.lex_state = 202, .external_lex_state = 17}, + [4783] = {.lex_state = 202, .external_lex_state = 17}, + [4784] = {.lex_state = 202, .external_lex_state = 17}, + [4785] = {.lex_state = 202, .external_lex_state = 17}, + [4786] = {.lex_state = 138}, + [4787] = {.lex_state = 202, .external_lex_state = 17}, + [4788] = {.lex_state = 187, .external_lex_state = 16}, + [4789] = {.lex_state = 187, .external_lex_state = 16}, + [4790] = {.lex_state = 356, .external_lex_state = 14}, + [4791] = {.lex_state = 194, .external_lex_state = 6}, + [4792] = {.lex_state = 172, .external_lex_state = 14}, + [4793] = {.lex_state = 194, .external_lex_state = 5}, + [4794] = {.lex_state = 194, .external_lex_state = 5}, + [4795] = {.lex_state = 194, .external_lex_state = 5}, + [4796] = {.lex_state = 194, .external_lex_state = 5}, + [4797] = {.lex_state = 194, .external_lex_state = 5}, + [4798] = {.lex_state = 194, .external_lex_state = 5}, + [4799] = {.lex_state = 194, .external_lex_state = 5}, + [4800] = {.lex_state = 194, .external_lex_state = 5}, + [4801] = {.lex_state = 187, .external_lex_state = 16}, + [4802] = {.lex_state = 194, .external_lex_state = 5}, + [4803] = {.lex_state = 194, .external_lex_state = 5}, + [4804] = {.lex_state = 187, .external_lex_state = 16}, + [4805] = {.lex_state = 194, .external_lex_state = 5}, + [4806] = {.lex_state = 187, .external_lex_state = 16}, + [4807] = {.lex_state = 194, .external_lex_state = 5}, + [4808] = {.lex_state = 194, .external_lex_state = 5}, + [4809] = {.lex_state = 194, .external_lex_state = 5}, + [4810] = {.lex_state = 194, .external_lex_state = 5}, + [4811] = {.lex_state = 194, .external_lex_state = 5}, + [4812] = {.lex_state = 194, .external_lex_state = 5}, + [4813] = {.lex_state = 194, .external_lex_state = 5}, + [4814] = {.lex_state = 172, .external_lex_state = 14}, + [4815] = {.lex_state = 194, .external_lex_state = 5}, + [4816] = {.lex_state = 194, .external_lex_state = 5}, + [4817] = {.lex_state = 194, .external_lex_state = 5}, + [4818] = {.lex_state = 194, .external_lex_state = 5}, + [4819] = {.lex_state = 356, .external_lex_state = 18}, + [4820] = {.lex_state = 194, .external_lex_state = 5}, + [4821] = {.lex_state = 356, .external_lex_state = 18}, + [4822] = {.lex_state = 194, .external_lex_state = 5}, + [4823] = {.lex_state = 194, .external_lex_state = 5}, + [4824] = {.lex_state = 171, .external_lex_state = 14}, + [4825] = {.lex_state = 194, .external_lex_state = 5}, + [4826] = {.lex_state = 356, .external_lex_state = 18}, + [4827] = {.lex_state = 187, .external_lex_state = 16}, + [4828] = {.lex_state = 171, .external_lex_state = 14}, + [4829] = {.lex_state = 172, .external_lex_state = 14}, + [4830] = {.lex_state = 172, .external_lex_state = 14}, + [4831] = {.lex_state = 171, .external_lex_state = 14}, + [4832] = {.lex_state = 171, .external_lex_state = 14}, + [4833] = {.lex_state = 171, .external_lex_state = 14}, + [4834] = {.lex_state = 171}, + [4835] = {.lex_state = 194, .external_lex_state = 5}, + [4836] = {.lex_state = 171, .external_lex_state = 14}, + [4837] = {.lex_state = 171, .external_lex_state = 14}, + [4838] = {.lex_state = 194, .external_lex_state = 5}, + [4839] = {.lex_state = 194, .external_lex_state = 5}, + [4840] = {.lex_state = 356, .external_lex_state = 14}, + [4841] = {.lex_state = 172, .external_lex_state = 14}, + [4842] = {.lex_state = 172, .external_lex_state = 14}, + [4843] = {.lex_state = 172}, + [4844] = {.lex_state = 172, .external_lex_state = 14}, + [4845] = {.lex_state = 172, .external_lex_state = 14}, + [4846] = {.lex_state = 187, .external_lex_state = 16}, + [4847] = {.lex_state = 202, .external_lex_state = 18}, + [4848] = {.lex_state = 202, .external_lex_state = 18}, + [4849] = {.lex_state = 195}, + [4850] = {.lex_state = 202, .external_lex_state = 18}, + [4851] = {.lex_state = 172, .external_lex_state = 14}, + [4852] = {.lex_state = 187, .external_lex_state = 14}, + [4853] = {.lex_state = 187, .external_lex_state = 14}, + [4854] = {.lex_state = 187, .external_lex_state = 14}, + [4855] = {.lex_state = 187, .external_lex_state = 14}, + [4856] = {.lex_state = 194, .external_lex_state = 6}, + [4857] = {.lex_state = 187, .external_lex_state = 14}, + [4858] = {.lex_state = 194, .external_lex_state = 6}, + [4859] = {.lex_state = 187, .external_lex_state = 14}, + [4860] = {.lex_state = 187, .external_lex_state = 14}, + [4861] = {.lex_state = 194, .external_lex_state = 6}, + [4862] = {.lex_state = 187, .external_lex_state = 14}, + [4863] = {.lex_state = 187, .external_lex_state = 14}, + [4864] = {.lex_state = 194, .external_lex_state = 6}, + [4865] = {.lex_state = 187, .external_lex_state = 14}, + [4866] = {.lex_state = 187, .external_lex_state = 14}, + [4867] = {.lex_state = 187, .external_lex_state = 16}, + [4868] = {.lex_state = 194, .external_lex_state = 6}, + [4869] = {.lex_state = 172}, + [4870] = {.lex_state = 194, .external_lex_state = 6}, + [4871] = {.lex_state = 187, .external_lex_state = 16}, + [4872] = {.lex_state = 194, .external_lex_state = 6}, + [4873] = {.lex_state = 194, .external_lex_state = 6}, + [4874] = {.lex_state = 187, .external_lex_state = 16}, + [4875] = {.lex_state = 187, .external_lex_state = 16}, + [4876] = {.lex_state = 187, .external_lex_state = 16}, + [4877] = {.lex_state = 194, .external_lex_state = 5}, + [4878] = {.lex_state = 202, .external_lex_state = 18}, + [4879] = {.lex_state = 194, .external_lex_state = 6}, + [4880] = {.lex_state = 187, .external_lex_state = 16}, + [4881] = {.lex_state = 356, .external_lex_state = 14}, + [4882] = {.lex_state = 194, .external_lex_state = 5}, + [4883] = {.lex_state = 187, .external_lex_state = 16}, + [4884] = {.lex_state = 194, .external_lex_state = 5}, + [4885] = {.lex_state = 202, .external_lex_state = 18}, + [4886] = {.lex_state = 202, .external_lex_state = 18}, + [4887] = {.lex_state = 202, .external_lex_state = 18}, + [4888] = {.lex_state = 187, .external_lex_state = 16}, + [4889] = {.lex_state = 187, .external_lex_state = 16}, + [4890] = {.lex_state = 202, .external_lex_state = 18}, + [4891] = {.lex_state = 202, .external_lex_state = 18}, + [4892] = {.lex_state = 187, .external_lex_state = 16}, + [4893] = {.lex_state = 202, .external_lex_state = 18}, + [4894] = {.lex_state = 202, .external_lex_state = 18}, + [4895] = {.lex_state = 187, .external_lex_state = 16}, + [4896] = {.lex_state = 194, .external_lex_state = 5}, + [4897] = {.lex_state = 194, .external_lex_state = 5}, + [4898] = {.lex_state = 194, .external_lex_state = 5}, + [4899] = {.lex_state = 194, .external_lex_state = 5}, + [4900] = {.lex_state = 194, .external_lex_state = 6}, + [4901] = {.lex_state = 194, .external_lex_state = 6}, + [4902] = {.lex_state = 194, .external_lex_state = 6}, + [4903] = {.lex_state = 201}, + [4904] = {.lex_state = 195}, + [4905] = {.lex_state = 194, .external_lex_state = 6}, + [4906] = {.lex_state = 201}, + [4907] = {.lex_state = 194, .external_lex_state = 6}, + [4908] = {.lex_state = 172, .external_lex_state = 14}, + [4909] = {.lex_state = 194, .external_lex_state = 6}, + [4910] = {.lex_state = 201}, + [4911] = {.lex_state = 201}, + [4912] = {.lex_state = 194, .external_lex_state = 6}, + [4913] = {.lex_state = 195}, + [4914] = {.lex_state = 195}, + [4915] = {.lex_state = 201}, + [4916] = {.lex_state = 201}, + [4917] = {.lex_state = 201}, + [4918] = {.lex_state = 195}, + [4919] = {.lex_state = 195}, + [4920] = {.lex_state = 195}, + [4921] = {.lex_state = 194, .external_lex_state = 6}, + [4922] = {.lex_state = 172, .external_lex_state = 14}, + [4923] = {.lex_state = 194, .external_lex_state = 6}, + [4924] = {.lex_state = 195}, + [4925] = {.lex_state = 194, .external_lex_state = 6}, + [4926] = {.lex_state = 356, .external_lex_state = 16}, + [4927] = {.lex_state = 194, .external_lex_state = 6}, + [4928] = {.lex_state = 171}, + [4929] = {.lex_state = 201}, + [4930] = {.lex_state = 194, .external_lex_state = 6}, + [4931] = {.lex_state = 180}, + [4932] = {.lex_state = 194, .external_lex_state = 6}, + [4933] = {.lex_state = 194, .external_lex_state = 6}, + [4934] = {.lex_state = 194, .external_lex_state = 6}, + [4935] = {.lex_state = 194, .external_lex_state = 6}, + [4936] = {.lex_state = 194, .external_lex_state = 6}, + [4937] = {.lex_state = 194, .external_lex_state = 6}, + [4938] = {.lex_state = 194, .external_lex_state = 6}, + [4939] = {.lex_state = 194, .external_lex_state = 6}, + [4940] = {.lex_state = 172, .external_lex_state = 14}, + [4941] = {.lex_state = 171}, + [4942] = {.lex_state = 194, .external_lex_state = 6}, + [4943] = {.lex_state = 194, .external_lex_state = 6}, + [4944] = {.lex_state = 194, .external_lex_state = 6}, + [4945] = {.lex_state = 194, .external_lex_state = 6}, + [4946] = {.lex_state = 194, .external_lex_state = 6}, + [4947] = {.lex_state = 194, .external_lex_state = 6}, + [4948] = {.lex_state = 194, .external_lex_state = 6}, + [4949] = {.lex_state = 194, .external_lex_state = 6}, + [4950] = {.lex_state = 194, .external_lex_state = 6}, + [4951] = {.lex_state = 171, .external_lex_state = 14}, + [4952] = {.lex_state = 201}, + [4953] = {.lex_state = 194, .external_lex_state = 6}, + [4954] = {.lex_state = 356, .external_lex_state = 16}, + [4955] = {.lex_state = 194, .external_lex_state = 6}, + [4956] = {.lex_state = 194, .external_lex_state = 6}, + [4957] = {.lex_state = 194, .external_lex_state = 6}, + [4958] = {.lex_state = 194, .external_lex_state = 6}, + [4959] = {.lex_state = 171}, + [4960] = {.lex_state = 171, .external_lex_state = 14}, + [4961] = {.lex_state = 171, .external_lex_state = 14}, + [4962] = {.lex_state = 194, .external_lex_state = 6}, + [4963] = {.lex_state = 194, .external_lex_state = 6}, + [4964] = {.lex_state = 180}, + [4965] = {.lex_state = 171, .external_lex_state = 14}, + [4966] = {.lex_state = 172}, + [4967] = {.lex_state = 171, .external_lex_state = 14}, + [4968] = {.lex_state = 172}, + [4969] = {.lex_state = 172, .external_lex_state = 14}, + [4970] = {.lex_state = 356, .external_lex_state = 16}, + [4971] = {.lex_state = 172, .external_lex_state = 14}, + [4972] = {.lex_state = 194, .external_lex_state = 6}, + [4973] = {.lex_state = 172, .external_lex_state = 14}, + [4974] = {.lex_state = 180}, + [4975] = {.lex_state = 194, .external_lex_state = 6}, + [4976] = {.lex_state = 195}, + [4977] = {.lex_state = 172, .external_lex_state = 14}, + [4978] = {.lex_state = 356}, + [4979] = {.lex_state = 196}, + [4980] = {.lex_state = 172, .external_lex_state = 14}, + [4981] = {.lex_state = 171, .external_lex_state = 14}, + [4982] = {.lex_state = 171, .external_lex_state = 14}, + [4983] = {.lex_state = 172, .external_lex_state = 14}, + [4984] = {.lex_state = 195}, + [4985] = {.lex_state = 356}, + [4986] = {.lex_state = 195}, + [4987] = {.lex_state = 187, .external_lex_state = 16}, + [4988] = {.lex_state = 203}, + [4989] = {.lex_state = 171, .external_lex_state = 14}, + [4990] = {.lex_state = 171, .external_lex_state = 14}, + [4991] = {.lex_state = 171, .external_lex_state = 14}, + [4992] = {.lex_state = 172, .external_lex_state = 14}, + [4993] = {.lex_state = 196, .external_lex_state = 16}, + [4994] = {.lex_state = 203}, + [4995] = {.lex_state = 201}, + [4996] = {.lex_state = 356}, + [4997] = {.lex_state = 172, .external_lex_state = 14}, + [4998] = {.lex_state = 203}, + [4999] = {.lex_state = 201}, + [5000] = {.lex_state = 195}, + [5001] = {.lex_state = 196}, + [5002] = {.lex_state = 201}, + [5003] = {.lex_state = 195}, + [5004] = {.lex_state = 356}, + [5005] = {.lex_state = 356}, + [5006] = {.lex_state = 195}, + [5007] = {.lex_state = 195}, + [5008] = {.lex_state = 356}, + [5009] = {.lex_state = 356}, + [5010] = {.lex_state = 195}, + [5011] = {.lex_state = 201}, + [5012] = {.lex_state = 356}, + [5013] = {.lex_state = 201}, + [5014] = {.lex_state = 171}, + [5015] = {.lex_state = 201}, + [5016] = {.lex_state = 187, .external_lex_state = 16}, + [5017] = {.lex_state = 195}, + [5018] = {.lex_state = 201}, + [5019] = {.lex_state = 195}, + [5020] = {.lex_state = 198}, + [5021] = {.lex_state = 171, .external_lex_state = 14}, + [5022] = {.lex_state = 171, .external_lex_state = 14}, + [5023] = {.lex_state = 171, .external_lex_state = 14}, + [5024] = {.lex_state = 171, .external_lex_state = 14}, + [5025] = {.lex_state = 171, .external_lex_state = 14}, + [5026] = {.lex_state = 171, .external_lex_state = 14}, + [5027] = {.lex_state = 171, .external_lex_state = 14}, + [5028] = {.lex_state = 171, .external_lex_state = 14}, + [5029] = {.lex_state = 171, .external_lex_state = 14}, + [5030] = {.lex_state = 138}, + [5031] = {.lex_state = 203}, + [5032] = {.lex_state = 196}, + [5033] = {.lex_state = 171, .external_lex_state = 14}, + [5034] = {.lex_state = 171, .external_lex_state = 14}, + [5035] = {.lex_state = 203}, + [5036] = {.lex_state = 203}, + [5037] = {.lex_state = 195}, + [5038] = {.lex_state = 172, .external_lex_state = 14}, + [5039] = {.lex_state = 172, .external_lex_state = 14}, + [5040] = {.lex_state = 172, .external_lex_state = 14}, + [5041] = {.lex_state = 172, .external_lex_state = 14}, + [5042] = {.lex_state = 172, .external_lex_state = 14}, + [5043] = {.lex_state = 172, .external_lex_state = 14}, + [5044] = {.lex_state = 172, .external_lex_state = 14}, + [5045] = {.lex_state = 172, .external_lex_state = 14}, + [5046] = {.lex_state = 195}, + [5047] = {.lex_state = 172, .external_lex_state = 14}, + [5048] = {.lex_state = 202, .external_lex_state = 17}, + [5049] = {.lex_state = 196}, + [5050] = {.lex_state = 356, .external_lex_state = 16}, + [5051] = {.lex_state = 172, .external_lex_state = 14}, + [5052] = {.lex_state = 172, .external_lex_state = 14}, + [5053] = {.lex_state = 187, .external_lex_state = 16}, + [5054] = {.lex_state = 195}, + [5055] = {.lex_state = 195}, + [5056] = {.lex_state = 198}, + [5057] = {.lex_state = 195}, + [5058] = {.lex_state = 198}, + [5059] = {.lex_state = 138}, + [5060] = {.lex_state = 195}, + [5061] = {.lex_state = 356, .external_lex_state = 16}, + [5062] = {.lex_state = 201}, + [5063] = {.lex_state = 201}, + [5064] = {.lex_state = 196}, + [5065] = {.lex_state = 195}, + [5066] = {.lex_state = 138}, + [5067] = {.lex_state = 195}, + [5068] = {.lex_state = 195}, + [5069] = {.lex_state = 195}, + [5070] = {.lex_state = 201}, + [5071] = {.lex_state = 195}, + [5072] = {.lex_state = 201}, + [5073] = {.lex_state = 356, .external_lex_state = 16}, + [5074] = {.lex_state = 195}, + [5075] = {.lex_state = 195}, + [5076] = {.lex_state = 195}, + [5077] = {.lex_state = 356, .external_lex_state = 16}, + [5078] = {.lex_state = 201}, + [5079] = {.lex_state = 201}, + [5080] = {.lex_state = 201}, + [5081] = {.lex_state = 201}, + [5082] = {.lex_state = 201}, + [5083] = {.lex_state = 195}, + [5084] = {.lex_state = 195}, + [5085] = {.lex_state = 195}, + [5086] = {.lex_state = 195}, + [5087] = {.lex_state = 195}, + [5088] = {.lex_state = 201}, + [5089] = {.lex_state = 195}, + [5090] = {.lex_state = 201}, + [5091] = {.lex_state = 201}, + [5092] = {.lex_state = 201}, + [5093] = {.lex_state = 195}, + [5094] = {.lex_state = 201}, + [5095] = {.lex_state = 195}, + [5096] = {.lex_state = 201}, + [5097] = {.lex_state = 356, .external_lex_state = 16}, + [5098] = {.lex_state = 138}, + [5099] = {.lex_state = 195}, + [5100] = {.lex_state = 182, .external_lex_state = 16}, + [5101] = {.lex_state = 198}, + [5102] = {.lex_state = 356, .external_lex_state = 16}, + [5103] = {.lex_state = 356, .external_lex_state = 14}, + [5104] = {.lex_state = 138}, + [5105] = {.lex_state = 187}, + [5106] = {.lex_state = 202, .external_lex_state = 18}, + [5107] = {.lex_state = 356, .external_lex_state = 16}, + [5108] = {.lex_state = 196}, + [5109] = {.lex_state = 138}, + [5110] = {.lex_state = 187}, + [5111] = {.lex_state = 356, .external_lex_state = 16}, + [5112] = {.lex_state = 356, .external_lex_state = 16}, + [5113] = {.lex_state = 140, .external_lex_state = 19}, + [5114] = {.lex_state = 140, .external_lex_state = 19}, + [5115] = {.lex_state = 356, .external_lex_state = 17}, + [5116] = {.lex_state = 356, .external_lex_state = 17}, + [5117] = {.lex_state = 196}, + [5118] = {.lex_state = 196}, + [5119] = {.lex_state = 140, .external_lex_state = 19}, + [5120] = {.lex_state = 356, .external_lex_state = 17}, + [5121] = {.lex_state = 140, .external_lex_state = 19}, + [5122] = {.lex_state = 187}, + [5123] = {.lex_state = 140, .external_lex_state = 19}, + [5124] = {.lex_state = 140, .external_lex_state = 19}, + [5125] = {.lex_state = 196}, + [5126] = {.lex_state = 140, .external_lex_state = 19}, + [5127] = {.lex_state = 196}, + [5128] = {.lex_state = 140, .external_lex_state = 19}, + [5129] = {.lex_state = 140, .external_lex_state = 19}, + [5130] = {.lex_state = 138}, + [5131] = {.lex_state = 187}, + [5132] = {.lex_state = 140, .external_lex_state = 19}, + [5133] = {.lex_state = 196}, + [5134] = {.lex_state = 196}, + [5135] = {.lex_state = 196}, + [5136] = {.lex_state = 196}, + [5137] = {.lex_state = 140, .external_lex_state = 19}, + [5138] = {.lex_state = 187}, + [5139] = {.lex_state = 196}, + [5140] = {.lex_state = 196}, + [5141] = {.lex_state = 140, .external_lex_state = 19}, + [5142] = {.lex_state = 196}, + [5143] = {.lex_state = 196}, + [5144] = {.lex_state = 140, .external_lex_state = 19}, + [5145] = {.lex_state = 196}, + [5146] = {.lex_state = 196}, + [5147] = {.lex_state = 140, .external_lex_state = 19}, + [5148] = {.lex_state = 196}, + [5149] = {.lex_state = 196}, + [5150] = {.lex_state = 196}, + [5151] = {.lex_state = 356, .external_lex_state = 17}, + [5152] = {.lex_state = 140, .external_lex_state = 19}, + [5153] = {.lex_state = 196}, + [5154] = {.lex_state = 140, .external_lex_state = 19}, + [5155] = {.lex_state = 196}, + [5156] = {.lex_state = 140, .external_lex_state = 19}, + [5157] = {.lex_state = 196}, + [5158] = {.lex_state = 140, .external_lex_state = 19}, + [5159] = {.lex_state = 196}, + [5160] = {.lex_state = 138}, + [5161] = {.lex_state = 140, .external_lex_state = 19}, + [5162] = {.lex_state = 196}, + [5163] = {.lex_state = 140, .external_lex_state = 19}, + [5164] = {.lex_state = 196}, + [5165] = {.lex_state = 196}, + [5166] = {.lex_state = 140, .external_lex_state = 19}, + [5167] = {.lex_state = 140, .external_lex_state = 19}, + [5168] = {.lex_state = 196}, + [5169] = {.lex_state = 196}, + [5170] = {.lex_state = 196}, + [5171] = {.lex_state = 356, .external_lex_state = 17}, + [5172] = {.lex_state = 196}, + [5173] = {.lex_state = 140, .external_lex_state = 19}, + [5174] = {.lex_state = 196}, + [5175] = {.lex_state = 196}, + [5176] = {.lex_state = 196}, + [5177] = {.lex_state = 203}, + [5178] = {.lex_state = 203}, + [5179] = {.lex_state = 356, .external_lex_state = 16}, + [5180] = {.lex_state = 187}, + [5181] = {.lex_state = 140, .external_lex_state = 19}, + [5182] = {.lex_state = 140, .external_lex_state = 19}, + [5183] = {.lex_state = 196}, + [5184] = {.lex_state = 140, .external_lex_state = 19}, + [5185] = {.lex_state = 196}, + [5186] = {.lex_state = 187, .external_lex_state = 14}, + [5187] = {.lex_state = 140, .external_lex_state = 19}, + [5188] = {.lex_state = 356, .external_lex_state = 16}, + [5189] = {.lex_state = 196}, + [5190] = {.lex_state = 140, .external_lex_state = 19}, + [5191] = {.lex_state = 140, .external_lex_state = 19}, + [5192] = {.lex_state = 196}, + [5193] = {.lex_state = 196}, + [5194] = {.lex_state = 140, .external_lex_state = 19}, + [5195] = {.lex_state = 140, .external_lex_state = 19}, + [5196] = {.lex_state = 196}, + [5197] = {.lex_state = 140, .external_lex_state = 19}, + [5198] = {.lex_state = 140, .external_lex_state = 19}, + [5199] = {.lex_state = 140, .external_lex_state = 19}, + [5200] = {.lex_state = 196}, + [5201] = {.lex_state = 140, .external_lex_state = 19}, + [5202] = {.lex_state = 196}, + [5203] = {.lex_state = 196}, + [5204] = {.lex_state = 196}, + [5205] = {.lex_state = 203}, + [5206] = {.lex_state = 203}, + [5207] = {.lex_state = 196}, + [5208] = {.lex_state = 203}, + [5209] = {.lex_state = 356, .external_lex_state = 17}, + [5210] = {.lex_state = 356, .external_lex_state = 17}, + [5211] = {.lex_state = 140, .external_lex_state = 19}, + [5212] = {.lex_state = 187}, + [5213] = {.lex_state = 187}, + [5214] = {.lex_state = 140, .external_lex_state = 19}, + [5215] = {.lex_state = 140, .external_lex_state = 19}, + [5216] = {.lex_state = 196}, + [5217] = {.lex_state = 356, .external_lex_state = 17}, + [5218] = {.lex_state = 196}, + [5219] = {.lex_state = 187}, + [5220] = {.lex_state = 196}, + [5221] = {.lex_state = 140, .external_lex_state = 19}, + [5222] = {.lex_state = 140, .external_lex_state = 19}, + [5223] = {.lex_state = 140, .external_lex_state = 19}, + [5224] = {.lex_state = 140, .external_lex_state = 19}, + [5225] = {.lex_state = 138}, + [5226] = {.lex_state = 356, .external_lex_state = 17}, + [5227] = {.lex_state = 140, .external_lex_state = 19}, + [5228] = {.lex_state = 140, .external_lex_state = 19}, + [5229] = {.lex_state = 356, .external_lex_state = 16}, + [5230] = {.lex_state = 140, .external_lex_state = 19}, + [5231] = {.lex_state = 140, .external_lex_state = 19}, + [5232] = {.lex_state = 203}, + [5233] = {.lex_state = 140, .external_lex_state = 19}, + [5234] = {.lex_state = 356, .external_lex_state = 17}, + [5235] = {.lex_state = 196}, + [5236] = {.lex_state = 356, .external_lex_state = 17}, + [5237] = {.lex_state = 356, .external_lex_state = 14}, + [5238] = {.lex_state = 189, .external_lex_state = 19}, + [5239] = {.lex_state = 189, .external_lex_state = 19}, + [5240] = {.lex_state = 356, .external_lex_state = 17}, + [5241] = {.lex_state = 189, .external_lex_state = 19}, + [5242] = {.lex_state = 189, .external_lex_state = 19}, + [5243] = {.lex_state = 356, .external_lex_state = 17}, + [5244] = {.lex_state = 356, .external_lex_state = 14}, + [5245] = {.lex_state = 189, .external_lex_state = 19}, + [5246] = {.lex_state = 189, .external_lex_state = 19}, + [5247] = {.lex_state = 189, .external_lex_state = 19}, + [5248] = {.lex_state = 189, .external_lex_state = 19}, + [5249] = {.lex_state = 189, .external_lex_state = 19}, + [5250] = {.lex_state = 187}, + [5251] = {.lex_state = 356, .external_lex_state = 17}, + [5252] = {.lex_state = 356, .external_lex_state = 14}, + [5253] = {.lex_state = 189, .external_lex_state = 19}, + [5254] = {.lex_state = 189, .external_lex_state = 19}, + [5255] = {.lex_state = 198, .external_lex_state = 14}, + [5256] = {.lex_state = 189, .external_lex_state = 19}, + [5257] = {.lex_state = 189, .external_lex_state = 19}, + [5258] = {.lex_state = 356, .external_lex_state = 14}, + [5259] = {.lex_state = 189, .external_lex_state = 19}, + [5260] = {.lex_state = 198, .external_lex_state = 14}, + [5261] = {.lex_state = 196, .external_lex_state = 14}, + [5262] = {.lex_state = 189, .external_lex_state = 19}, + [5263] = {.lex_state = 189, .external_lex_state = 19}, + [5264] = {.lex_state = 189, .external_lex_state = 19}, + [5265] = {.lex_state = 356, .external_lex_state = 18}, + [5266] = {.lex_state = 189, .external_lex_state = 19}, + [5267] = {.lex_state = 189, .external_lex_state = 19}, + [5268] = {.lex_state = 189, .external_lex_state = 19}, + [5269] = {.lex_state = 189, .external_lex_state = 19}, + [5270] = {.lex_state = 189, .external_lex_state = 19}, + [5271] = {.lex_state = 189, .external_lex_state = 19}, + [5272] = {.lex_state = 196, .external_lex_state = 14}, + [5273] = {.lex_state = 356, .external_lex_state = 17}, + [5274] = {.lex_state = 356, .external_lex_state = 18}, + [5275] = {.lex_state = 189, .external_lex_state = 19}, + [5276] = {.lex_state = 356, .external_lex_state = 17}, + [5277] = {.lex_state = 356, .external_lex_state = 17}, + [5278] = {.lex_state = 356, .external_lex_state = 17}, + [5279] = {.lex_state = 189, .external_lex_state = 19}, + [5280] = {.lex_state = 356, .external_lex_state = 17}, + [5281] = {.lex_state = 189, .external_lex_state = 19}, + [5282] = {.lex_state = 189, .external_lex_state = 19}, + [5283] = {.lex_state = 189, .external_lex_state = 19}, + [5284] = {.lex_state = 189, .external_lex_state = 19}, + [5285] = {.lex_state = 356, .external_lex_state = 17}, + [5286] = {.lex_state = 356, .external_lex_state = 18}, + [5287] = {.lex_state = 189, .external_lex_state = 19}, + [5288] = {.lex_state = 356, .external_lex_state = 18}, + [5289] = {.lex_state = 189, .external_lex_state = 19}, + [5290] = {.lex_state = 187, .external_lex_state = 16}, + [5291] = {.lex_state = 356, .external_lex_state = 17}, + [5292] = {.lex_state = 189, .external_lex_state = 19}, + [5293] = {.lex_state = 189, .external_lex_state = 19}, + [5294] = {.lex_state = 356, .external_lex_state = 14}, + [5295] = {.lex_state = 356, .external_lex_state = 14}, + [5296] = {.lex_state = 189, .external_lex_state = 19}, + [5297] = {.lex_state = 198, .external_lex_state = 14}, + [5298] = {.lex_state = 189, .external_lex_state = 19}, + [5299] = {.lex_state = 356, .external_lex_state = 18}, + [5300] = {.lex_state = 356, .external_lex_state = 18}, + [5301] = {.lex_state = 189, .external_lex_state = 19}, + [5302] = {.lex_state = 189, .external_lex_state = 19}, + [5303] = {.lex_state = 356, .external_lex_state = 17}, + [5304] = {.lex_state = 187}, + [5305] = {.lex_state = 356, .external_lex_state = 14}, + [5306] = {.lex_state = 189, .external_lex_state = 19}, + [5307] = {.lex_state = 189, .external_lex_state = 19}, + [5308] = {.lex_state = 356, .external_lex_state = 14}, + [5309] = {.lex_state = 356, .external_lex_state = 18}, + [5310] = {.lex_state = 189, .external_lex_state = 19}, + [5311] = {.lex_state = 356, .external_lex_state = 17}, + [5312] = {.lex_state = 356, .external_lex_state = 18}, + [5313] = {.lex_state = 356, .external_lex_state = 17}, + [5314] = {.lex_state = 356, .external_lex_state = 17}, + [5315] = {.lex_state = 356, .external_lex_state = 17}, + [5316] = {.lex_state = 189, .external_lex_state = 19}, + [5317] = {.lex_state = 356, .external_lex_state = 17}, + [5318] = {.lex_state = 189, .external_lex_state = 19}, + [5319] = {.lex_state = 189, .external_lex_state = 19}, + [5320] = {.lex_state = 189, .external_lex_state = 19}, + [5321] = {.lex_state = 189, .external_lex_state = 19}, + [5322] = {.lex_state = 189, .external_lex_state = 19}, + [5323] = {.lex_state = 356, .external_lex_state = 18}, + [5324] = {.lex_state = 356, .external_lex_state = 14}, + [5325] = {.lex_state = 356, .external_lex_state = 16}, + [5326] = {.lex_state = 189, .external_lex_state = 19}, + [5327] = {.lex_state = 356, .external_lex_state = 18}, + [5328] = {.lex_state = 141, .external_lex_state = 19}, + [5329] = {.lex_state = 356, .external_lex_state = 14}, + [5330] = {.lex_state = 203}, + [5331] = {.lex_state = 356, .external_lex_state = 18}, + [5332] = {.lex_state = 356, .external_lex_state = 14}, + [5333] = {.lex_state = 356, .external_lex_state = 18}, + [5334] = {.lex_state = 356, .external_lex_state = 18}, + [5335] = {.lex_state = 172, .external_lex_state = 14}, + [5336] = {.lex_state = 356, .external_lex_state = 14}, + [5337] = {.lex_state = 356, .external_lex_state = 14}, + [5338] = {.lex_state = 356, .external_lex_state = 16}, + [5339] = {.lex_state = 172, .external_lex_state = 14}, + [5340] = {.lex_state = 171}, + [5341] = {.lex_state = 171}, + [5342] = {.lex_state = 356, .external_lex_state = 14}, + [5343] = {.lex_state = 196, .external_lex_state = 14}, + [5344] = {.lex_state = 171}, + [5345] = {.lex_state = 356, .external_lex_state = 18}, + [5346] = {.lex_state = 356, .external_lex_state = 14}, + [5347] = {.lex_state = 356, .external_lex_state = 18}, + [5348] = {.lex_state = 356, .external_lex_state = 18}, + [5349] = {.lex_state = 356, .external_lex_state = 18}, + [5350] = {.lex_state = 356, .external_lex_state = 18}, + [5351] = {.lex_state = 203}, + [5352] = {.lex_state = 356, .external_lex_state = 16}, + [5353] = {.lex_state = 203}, + [5354] = {.lex_state = 356, .external_lex_state = 18}, + [5355] = {.lex_state = 356, .external_lex_state = 14}, + [5356] = {.lex_state = 356, .external_lex_state = 18}, + [5357] = {.lex_state = 172}, + [5358] = {.lex_state = 356, .external_lex_state = 14}, + [5359] = {.lex_state = 356, .external_lex_state = 18}, + [5360] = {.lex_state = 356, .external_lex_state = 16}, + [5361] = {.lex_state = 356, .external_lex_state = 14}, + [5362] = {.lex_state = 356, .external_lex_state = 14}, + [5363] = {.lex_state = 356, .external_lex_state = 14}, + [5364] = {.lex_state = 356, .external_lex_state = 18}, + [5365] = {.lex_state = 356, .external_lex_state = 14}, + [5366] = {.lex_state = 356, .external_lex_state = 16}, + [5367] = {.lex_state = 172}, + [5368] = {.lex_state = 196, .external_lex_state = 14}, + [5369] = {.lex_state = 356, .external_lex_state = 16}, + [5370] = {.lex_state = 187}, + [5371] = {.lex_state = 356, .external_lex_state = 18}, + [5372] = {.lex_state = 196, .external_lex_state = 14}, + [5373] = {.lex_state = 196, .external_lex_state = 14}, + [5374] = {.lex_state = 172}, + [5375] = {.lex_state = 172, .external_lex_state = 14}, + [5376] = {.lex_state = 187}, + [5377] = {.lex_state = 356, .external_lex_state = 16}, + [5378] = {.lex_state = 187}, + [5379] = {.lex_state = 172}, + [5380] = {.lex_state = 356, .external_lex_state = 16}, + [5381] = {.lex_state = 356, .external_lex_state = 14}, + [5382] = {.lex_state = 203}, + [5383] = {.lex_state = 172, .external_lex_state = 14}, + [5384] = {.lex_state = 172}, + [5385] = {.lex_state = 356, .external_lex_state = 18}, + [5386] = {.lex_state = 356, .external_lex_state = 16}, + [5387] = {.lex_state = 356, .external_lex_state = 14}, + [5388] = {.lex_state = 356, .external_lex_state = 18}, + [5389] = {.lex_state = 198, .external_lex_state = 14}, + [5390] = {.lex_state = 356, .external_lex_state = 14}, + [5391] = {.lex_state = 187}, + [5392] = {.lex_state = 356, .external_lex_state = 18}, + [5393] = {.lex_state = 356, .external_lex_state = 14}, + [5394] = {.lex_state = 356, .external_lex_state = 18}, + [5395] = {.lex_state = 172}, + [5396] = {.lex_state = 356, .external_lex_state = 16}, + [5397] = {.lex_state = 172, .external_lex_state = 14}, + [5398] = {.lex_state = 196, .external_lex_state = 14}, + [5399] = {.lex_state = 172, .external_lex_state = 14}, + [5400] = {.lex_state = 141, .external_lex_state = 19}, + [5401] = {.lex_state = 356, .external_lex_state = 14}, + [5402] = {.lex_state = 141, .external_lex_state = 19}, + [5403] = {.lex_state = 187}, + [5404] = {.lex_state = 187}, + [5405] = {.lex_state = 196}, + [5406] = {.lex_state = 196, .external_lex_state = 14}, + [5407] = {.lex_state = 190, .external_lex_state = 19}, + [5408] = {.lex_state = 190, .external_lex_state = 19}, + [5409] = {.lex_state = 196, .external_lex_state = 14}, + [5410] = {.lex_state = 356}, + [5411] = {.lex_state = 356}, + [5412] = {.lex_state = 356, .external_lex_state = 16}, + [5413] = {.lex_state = 356, .external_lex_state = 16}, + [5414] = {.lex_state = 356, .external_lex_state = 16}, + [5415] = {.lex_state = 196}, + [5416] = {.lex_state = 196, .external_lex_state = 14}, + [5417] = {.lex_state = 187}, + [5418] = {.lex_state = 190, .external_lex_state = 19}, + [5419] = {.lex_state = 196, .external_lex_state = 14}, + [5420] = {.lex_state = 196, .external_lex_state = 14}, + [5421] = {.lex_state = 196}, + [5422] = {.lex_state = 356}, + [5423] = {.lex_state = 190, .external_lex_state = 19}, + [5424] = {.lex_state = 187}, + [5425] = {.lex_state = 187}, + [5426] = {.lex_state = 190, .external_lex_state = 19}, + [5427] = {.lex_state = 196, .external_lex_state = 14}, + [5428] = {.lex_state = 187}, + [5429] = {.lex_state = 190, .external_lex_state = 19}, + [5430] = {.lex_state = 356}, + [5431] = {.lex_state = 356, .external_lex_state = 16}, + [5432] = {.lex_state = 203}, + [5433] = {.lex_state = 172, .external_lex_state = 14}, + [5434] = {.lex_state = 196, .external_lex_state = 14}, + [5435] = {.lex_state = 356, .external_lex_state = 16}, + [5436] = {.lex_state = 187}, + [5437] = {.lex_state = 190, .external_lex_state = 19}, + [5438] = {.lex_state = 196, .external_lex_state = 14}, + [5439] = {.lex_state = 187}, + [5440] = {.lex_state = 172, .external_lex_state = 14}, + [5441] = {.lex_state = 187}, + [5442] = {.lex_state = 190, .external_lex_state = 19}, + [5443] = {.lex_state = 187}, + [5444] = {.lex_state = 196}, + [5445] = {.lex_state = 196}, + [5446] = {.lex_state = 196}, + [5447] = {.lex_state = 196}, + [5448] = {.lex_state = 196}, + [5449] = {.lex_state = 196}, + [5450] = {.lex_state = 356, .external_lex_state = 16}, + [5451] = {.lex_state = 196, .external_lex_state = 14}, + [5452] = {.lex_state = 196}, + [5453] = {.lex_state = 356, .external_lex_state = 16}, + [5454] = {.lex_state = 356, .external_lex_state = 16}, + [5455] = {.lex_state = 356}, + [5456] = {.lex_state = 187}, + [5457] = {.lex_state = 190, .external_lex_state = 19}, + [5458] = {.lex_state = 356, .external_lex_state = 16}, + [5459] = {.lex_state = 356, .external_lex_state = 16}, + [5460] = {.lex_state = 356, .external_lex_state = 16}, + [5461] = {.lex_state = 203}, + [5462] = {.lex_state = 196}, + [5463] = {.lex_state = 356}, + [5464] = {.lex_state = 187}, + [5465] = {.lex_state = 356, .external_lex_state = 16}, + [5466] = {.lex_state = 356, .external_lex_state = 16}, + [5467] = {.lex_state = 203}, + [5468] = {.lex_state = 196}, + [5469] = {.lex_state = 196}, + [5470] = {.lex_state = 356, .external_lex_state = 16}, + [5471] = {.lex_state = 356, .external_lex_state = 16}, + [5472] = {.lex_state = 190, .external_lex_state = 19}, + [5473] = {.lex_state = 356, .external_lex_state = 16}, + [5474] = {.lex_state = 203}, + [5475] = {.lex_state = 356}, + [5476] = {.lex_state = 356, .external_lex_state = 16}, + [5477] = {.lex_state = 187}, + [5478] = {.lex_state = 187}, + [5479] = {.lex_state = 196}, + [5480] = {.lex_state = 190, .external_lex_state = 19}, + [5481] = {.lex_state = 187}, + [5482] = {.lex_state = 196}, + [5483] = {.lex_state = 196}, + [5484] = {.lex_state = 187}, + [5485] = {.lex_state = 190, .external_lex_state = 19}, + [5486] = {.lex_state = 187}, + [5487] = {.lex_state = 187}, + [5488] = {.lex_state = 196}, + [5489] = {.lex_state = 190, .external_lex_state = 19}, + [5490] = {.lex_state = 356}, + [5491] = {.lex_state = 203}, + [5492] = {.lex_state = 187}, + [5493] = {.lex_state = 190, .external_lex_state = 19}, + [5494] = {.lex_state = 190, .external_lex_state = 19}, + [5495] = {.lex_state = 187}, + [5496] = {.lex_state = 190, .external_lex_state = 19}, + [5497] = {.lex_state = 187}, + [5498] = {.lex_state = 187}, + [5499] = {.lex_state = 190, .external_lex_state = 19}, + [5500] = {.lex_state = 190, .external_lex_state = 19}, + [5501] = {.lex_state = 187}, + [5502] = {.lex_state = 187}, + [5503] = {.lex_state = 187}, + [5504] = {.lex_state = 187}, + [5505] = {.lex_state = 196}, + [5506] = {.lex_state = 187}, + [5507] = {.lex_state = 187}, + [5508] = {.lex_state = 356}, + [5509] = {.lex_state = 196}, + [5510] = {.lex_state = 196}, + [5511] = {.lex_state = 190, .external_lex_state = 19}, + [5512] = {.lex_state = 196}, + [5513] = {.lex_state = 187}, + [5514] = {.lex_state = 187}, + [5515] = {.lex_state = 187}, + [5516] = {.lex_state = 190, .external_lex_state = 19}, + [5517] = {.lex_state = 196}, + [5518] = {.lex_state = 187, .external_lex_state = 14}, + [5519] = {.lex_state = 187}, + [5520] = {.lex_state = 196, .external_lex_state = 14}, + [5521] = {.lex_state = 196}, + [5522] = {.lex_state = 196}, + [5523] = {.lex_state = 196}, + [5524] = {.lex_state = 190, .external_lex_state = 19}, + [5525] = {.lex_state = 172, .external_lex_state = 14}, + [5526] = {.lex_state = 196, .external_lex_state = 14}, + [5527] = {.lex_state = 190, .external_lex_state = 19}, + [5528] = {.lex_state = 196}, + [5529] = {.lex_state = 196, .external_lex_state = 14}, + [5530] = {.lex_state = 187}, + [5531] = {.lex_state = 196, .external_lex_state = 14}, + [5532] = {.lex_state = 187}, + [5533] = {.lex_state = 172, .external_lex_state = 14}, + [5534] = {.lex_state = 187}, + [5535] = {.lex_state = 187, .external_lex_state = 14}, + [5536] = {.lex_state = 196, .external_lex_state = 14}, + [5537] = {.lex_state = 190, .external_lex_state = 19}, + [5538] = {.lex_state = 190, .external_lex_state = 19}, + [5539] = {.lex_state = 172, .external_lex_state = 14}, + [5540] = {.lex_state = 187}, + [5541] = {.lex_state = 201}, + [5542] = {.lex_state = 190, .external_lex_state = 19}, + [5543] = {.lex_state = 196}, + [5544] = {.lex_state = 196, .external_lex_state = 14}, + [5545] = {.lex_state = 196}, + [5546] = {.lex_state = 196, .external_lex_state = 14}, + [5547] = {.lex_state = 201}, + [5548] = {.lex_state = 187}, + [5549] = {.lex_state = 196}, + [5550] = {.lex_state = 196}, + [5551] = {.lex_state = 196}, + [5552] = {.lex_state = 187, .external_lex_state = 14}, + [5553] = {.lex_state = 196}, + [5554] = {.lex_state = 172, .external_lex_state = 14}, + [5555] = {.lex_state = 196}, + [5556] = {.lex_state = 187}, + [5557] = {.lex_state = 196}, + [5558] = {.lex_state = 187}, + [5559] = {.lex_state = 190, .external_lex_state = 19}, + [5560] = {.lex_state = 196}, + [5561] = {.lex_state = 196}, + [5562] = {.lex_state = 190, .external_lex_state = 19}, + [5563] = {.lex_state = 356}, + [5564] = {.lex_state = 196}, + [5565] = {.lex_state = 196}, + [5566] = {.lex_state = 196}, + [5567] = {.lex_state = 196}, + [5568] = {.lex_state = 187}, + [5569] = {.lex_state = 356}, + [5570] = {.lex_state = 172, .external_lex_state = 14}, + [5571] = {.lex_state = 187}, + [5572] = {.lex_state = 196}, + [5573] = {.lex_state = 187}, + [5574] = {.lex_state = 187}, + [5575] = {.lex_state = 196}, + [5576] = {.lex_state = 196}, + [5577] = {.lex_state = 203}, + [5578] = {.lex_state = 187}, + [5579] = {.lex_state = 190, .external_lex_state = 19}, + [5580] = {.lex_state = 190, .external_lex_state = 19}, + [5581] = {.lex_state = 196}, + [5582] = {.lex_state = 196}, + [5583] = {.lex_state = 196}, + [5584] = {.lex_state = 190, .external_lex_state = 19}, + [5585] = {.lex_state = 190, .external_lex_state = 19}, + [5586] = {.lex_state = 356, .external_lex_state = 16}, + [5587] = {.lex_state = 196}, + [5588] = {.lex_state = 196}, + [5589] = {.lex_state = 190, .external_lex_state = 19}, + [5590] = {.lex_state = 190, .external_lex_state = 19}, + [5591] = {.lex_state = 190, .external_lex_state = 19}, + [5592] = {.lex_state = 356}, + [5593] = {.lex_state = 187}, + [5594] = {.lex_state = 187}, + [5595] = {.lex_state = 190, .external_lex_state = 19}, + [5596] = {.lex_state = 201}, + [5597] = {.lex_state = 187, .external_lex_state = 14}, + [5598] = {.lex_state = 187}, + [5599] = {.lex_state = 203}, + [5600] = {.lex_state = 190, .external_lex_state = 19}, + [5601] = {.lex_state = 203}, + [5602] = {.lex_state = 172, .external_lex_state = 14}, + [5603] = {.lex_state = 190, .external_lex_state = 19}, + [5604] = {.lex_state = 172, .external_lex_state = 14}, + [5605] = {.lex_state = 190, .external_lex_state = 19}, + [5606] = {.lex_state = 187}, + [5607] = {.lex_state = 196}, + [5608] = {.lex_state = 190, .external_lex_state = 19}, + [5609] = {.lex_state = 190, .external_lex_state = 19}, + [5610] = {.lex_state = 190, .external_lex_state = 19}, + [5611] = {.lex_state = 196}, + [5612] = {.lex_state = 196}, + [5613] = {.lex_state = 190, .external_lex_state = 19}, + [5614] = {.lex_state = 190, .external_lex_state = 19}, + [5615] = {.lex_state = 190, .external_lex_state = 19}, + [5616] = {.lex_state = 356, .external_lex_state = 16}, + [5617] = {.lex_state = 190, .external_lex_state = 19}, + [5618] = {.lex_state = 187}, + [5619] = {.lex_state = 190, .external_lex_state = 19}, + [5620] = {.lex_state = 190, .external_lex_state = 19}, + [5621] = {.lex_state = 187}, + [5622] = {.lex_state = 196, .external_lex_state = 14}, + [5623] = {.lex_state = 140, .external_lex_state = 19}, + [5624] = {.lex_state = 189, .external_lex_state = 19}, + [5625] = {.lex_state = 187}, + [5626] = {.lex_state = 187}, + [5627] = {.lex_state = 187}, + [5628] = {.lex_state = 187}, + [5629] = {.lex_state = 187}, + [5630] = {.lex_state = 196}, + [5631] = {.lex_state = 196}, + [5632] = {.lex_state = 187}, + [5633] = {.lex_state = 196, .external_lex_state = 14}, + [5634] = {.lex_state = 187}, + [5635] = {.lex_state = 196}, + [5636] = {.lex_state = 196}, + [5637] = {.lex_state = 196}, + [5638] = {.lex_state = 196}, + [5639] = {.lex_state = 187}, + [5640] = {.lex_state = 196}, + [5641] = {.lex_state = 196, .external_lex_state = 14}, + [5642] = {.lex_state = 196}, + [5643] = {.lex_state = 196}, + [5644] = {.lex_state = 187}, + [5645] = {.lex_state = 140, .external_lex_state = 19}, + [5646] = {.lex_state = 140, .external_lex_state = 19}, + [5647] = {.lex_state = 196}, + [5648] = {.lex_state = 196}, + [5649] = {.lex_state = 187}, + [5650] = {.lex_state = 140, .external_lex_state = 19}, + [5651] = {.lex_state = 196}, + [5652] = {.lex_state = 196, .external_lex_state = 14}, + [5653] = {.lex_state = 187}, + [5654] = {.lex_state = 187}, + [5655] = {.lex_state = 203}, + [5656] = {.lex_state = 196, .external_lex_state = 14}, + [5657] = {.lex_state = 187}, + [5658] = {.lex_state = 196, .external_lex_state = 14}, + [5659] = {.lex_state = 196, .external_lex_state = 14}, + [5660] = {.lex_state = 196, .external_lex_state = 14}, + [5661] = {.lex_state = 196, .external_lex_state = 14}, + [5662] = {.lex_state = 196}, + [5663] = {.lex_state = 187}, + [5664] = {.lex_state = 187}, + [5665] = {.lex_state = 187}, + [5666] = {.lex_state = 192, .external_lex_state = 19}, + [5667] = {.lex_state = 196}, + [5668] = {.lex_state = 187}, + [5669] = {.lex_state = 187}, + [5670] = {.lex_state = 187}, + [5671] = {.lex_state = 187}, + [5672] = {.lex_state = 196, .external_lex_state = 14}, + [5673] = {.lex_state = 196, .external_lex_state = 14}, + [5674] = {.lex_state = 187}, + [5675] = {.lex_state = 196}, + [5676] = {.lex_state = 187, .external_lex_state = 16}, + [5677] = {.lex_state = 196}, + [5678] = {.lex_state = 187}, + [5679] = {.lex_state = 187}, + [5680] = {.lex_state = 203}, + [5681] = {.lex_state = 187}, + [5682] = {.lex_state = 196, .external_lex_state = 14}, + [5683] = {.lex_state = 196, .external_lex_state = 14}, + [5684] = {.lex_state = 196}, + [5685] = {.lex_state = 196}, + [5686] = {.lex_state = 187}, + [5687] = {.lex_state = 196, .external_lex_state = 14}, + [5688] = {.lex_state = 187, .external_lex_state = 16}, + [5689] = {.lex_state = 187}, + [5690] = {.lex_state = 196}, + [5691] = {.lex_state = 187}, + [5692] = {.lex_state = 196, .external_lex_state = 14}, + [5693] = {.lex_state = 196, .external_lex_state = 14}, + [5694] = {.lex_state = 196}, + [5695] = {.lex_state = 196, .external_lex_state = 14}, + [5696] = {.lex_state = 196}, + [5697] = {.lex_state = 187}, + [5698] = {.lex_state = 196, .external_lex_state = 14}, + [5699] = {.lex_state = 187}, + [5700] = {.lex_state = 196, .external_lex_state = 14}, + [5701] = {.lex_state = 187}, + [5702] = {.lex_state = 187}, + [5703] = {.lex_state = 187}, + [5704] = {.lex_state = 187}, + [5705] = {.lex_state = 187}, + [5706] = {.lex_state = 187}, + [5707] = {.lex_state = 192, .external_lex_state = 19}, + [5708] = {.lex_state = 196}, + [5709] = {.lex_state = 187}, + [5710] = {.lex_state = 189, .external_lex_state = 19}, + [5711] = {.lex_state = 187}, + [5712] = {.lex_state = 187, .external_lex_state = 16}, + [5713] = {.lex_state = 189, .external_lex_state = 19}, + [5714] = {.lex_state = 187}, + [5715] = {.lex_state = 196, .external_lex_state = 14}, + [5716] = {.lex_state = 187}, + [5717] = {.lex_state = 196, .external_lex_state = 14}, + [5718] = {.lex_state = 196}, + [5719] = {.lex_state = 187}, + [5720] = {.lex_state = 196}, + [5721] = {.lex_state = 196}, + [5722] = {.lex_state = 196}, + [5723] = {.lex_state = 196}, + [5724] = {.lex_state = 196}, + [5725] = {.lex_state = 196}, + [5726] = {.lex_state = 187}, + [5727] = {.lex_state = 196, .external_lex_state = 14}, + [5728] = {.lex_state = 196}, + [5729] = {.lex_state = 196}, + [5730] = {.lex_state = 187, .external_lex_state = 16}, + [5731] = {.lex_state = 196, .external_lex_state = 14}, + [5732] = {.lex_state = 187, .external_lex_state = 16}, + [5733] = {.lex_state = 187}, + [5734] = {.lex_state = 187}, + [5735] = {.lex_state = 196, .external_lex_state = 14}, + [5736] = {.lex_state = 196, .external_lex_state = 14}, + [5737] = {.lex_state = 196, .external_lex_state = 14}, + [5738] = {.lex_state = 187}, + [5739] = {.lex_state = 187}, + [5740] = {.lex_state = 192, .external_lex_state = 19}, + [5741] = {.lex_state = 187}, + [5742] = {.lex_state = 196, .external_lex_state = 14}, + [5743] = {.lex_state = 187}, + [5744] = {.lex_state = 196, .external_lex_state = 14}, + [5745] = {.lex_state = 196}, + [5746] = {.lex_state = 196}, + [5747] = {.lex_state = 187}, + [5748] = {.lex_state = 356}, + [5749] = {.lex_state = 187}, + [5750] = {.lex_state = 187}, + [5751] = {.lex_state = 196, .external_lex_state = 14}, + [5752] = {.lex_state = 187}, + [5753] = {.lex_state = 196, .external_lex_state = 14}, + [5754] = {.lex_state = 196}, + [5755] = {.lex_state = 196}, + [5756] = {.lex_state = 203}, + [5757] = {.lex_state = 196, .external_lex_state = 14}, + [5758] = {.lex_state = 187}, + [5759] = {.lex_state = 196, .external_lex_state = 14}, + [5760] = {.lex_state = 187}, + [5761] = {.lex_state = 196}, + [5762] = {.lex_state = 187}, + [5763] = {.lex_state = 196, .external_lex_state = 14}, + [5764] = {.lex_state = 187}, + [5765] = {.lex_state = 187}, + [5766] = {.lex_state = 187}, + [5767] = {.lex_state = 196}, + [5768] = {.lex_state = 196, .external_lex_state = 14}, + [5769] = {.lex_state = 196}, + [5770] = {.lex_state = 196}, + [5771] = {.lex_state = 187}, + [5772] = {.lex_state = 196}, + [5773] = {.lex_state = 196}, + [5774] = {.lex_state = 196, .external_lex_state = 14}, + [5775] = {.lex_state = 196, .external_lex_state = 14}, + [5776] = {.lex_state = 196}, + [5777] = {.lex_state = 187}, + [5778] = {.lex_state = 196, .external_lex_state = 14}, + [5779] = {.lex_state = 187}, + [5780] = {.lex_state = 196}, + [5781] = {.lex_state = 196}, + [5782] = {.lex_state = 196}, + [5783] = {.lex_state = 187}, + [5784] = {.lex_state = 196, .external_lex_state = 14}, + [5785] = {.lex_state = 196, .external_lex_state = 14}, + [5786] = {.lex_state = 196}, + [5787] = {.lex_state = 203}, + [5788] = {.lex_state = 196}, + [5789] = {.lex_state = 196, .external_lex_state = 14}, + [5790] = {.lex_state = 187}, + [5791] = {.lex_state = 196, .external_lex_state = 14}, + [5792] = {.lex_state = 187}, + [5793] = {.lex_state = 196}, + [5794] = {.lex_state = 187}, + [5795] = {.lex_state = 196}, + [5796] = {.lex_state = 196}, + [5797] = {.lex_state = 187}, + [5798] = {.lex_state = 196, .external_lex_state = 14}, + [5799] = {.lex_state = 196}, + [5800] = {.lex_state = 196}, + [5801] = {.lex_state = 196}, + [5802] = {.lex_state = 187}, + [5803] = {.lex_state = 196}, + [5804] = {.lex_state = 196}, + [5805] = {.lex_state = 196}, + [5806] = {.lex_state = 196, .external_lex_state = 14}, + [5807] = {.lex_state = 196}, + [5808] = {.lex_state = 196, .external_lex_state = 14}, + [5809] = {.lex_state = 196}, + [5810] = {.lex_state = 196, .external_lex_state = 14}, + [5811] = {.lex_state = 196}, + [5812] = {.lex_state = 187}, + [5813] = {.lex_state = 196}, + [5814] = {.lex_state = 196, .external_lex_state = 14}, + [5815] = {.lex_state = 203}, + [5816] = {.lex_state = 203}, + [5817] = {.lex_state = 196}, + [5818] = {.lex_state = 196}, + [5819] = {.lex_state = 187}, + [5820] = {.lex_state = 196}, + [5821] = {.lex_state = 196}, + [5822] = {.lex_state = 203}, + [5823] = {.lex_state = 196}, + [5824] = {.lex_state = 196}, + [5825] = {.lex_state = 196}, + [5826] = {.lex_state = 196}, + [5827] = {.lex_state = 196}, + [5828] = {.lex_state = 196}, + [5829] = {.lex_state = 196}, + [5830] = {.lex_state = 196}, + [5831] = {.lex_state = 196}, + [5832] = {.lex_state = 196}, + [5833] = {.lex_state = 196}, + [5834] = {.lex_state = 196}, + [5835] = {.lex_state = 196}, + [5836] = {.lex_state = 196}, + [5837] = {.lex_state = 196}, + [5838] = {.lex_state = 196}, + [5839] = {.lex_state = 196}, + [5840] = {.lex_state = 187}, + [5841] = {.lex_state = 196}, + [5842] = {.lex_state = 196}, + [5843] = {.lex_state = 196}, + [5844] = {.lex_state = 196}, + [5845] = {.lex_state = 196}, + [5846] = {.lex_state = 196}, + [5847] = {.lex_state = 196}, + [5848] = {.lex_state = 196}, + [5849] = {.lex_state = 196}, + [5850] = {.lex_state = 356, .external_lex_state = 17}, + [5851] = {.lex_state = 356, .external_lex_state = 17}, + [5852] = {.lex_state = 141, .external_lex_state = 19}, + [5853] = {.lex_state = 196}, + [5854] = {.lex_state = 196}, + [5855] = {.lex_state = 196}, + [5856] = {.lex_state = 187}, + [5857] = {.lex_state = 356, .external_lex_state = 17}, + [5858] = {.lex_state = 356, .external_lex_state = 17}, + [5859] = {.lex_state = 196}, + [5860] = {.lex_state = 196}, + [5861] = {.lex_state = 196}, + [5862] = {.lex_state = 196}, + [5863] = {.lex_state = 196}, + [5864] = {.lex_state = 196}, + [5865] = {.lex_state = 196}, + [5866] = {.lex_state = 203}, + [5867] = {.lex_state = 196}, + [5868] = {.lex_state = 196}, + [5869] = {.lex_state = 196}, + [5870] = {.lex_state = 141, .external_lex_state = 19}, + [5871] = {.lex_state = 196}, + [5872] = {.lex_state = 196}, + [5873] = {.lex_state = 187}, + [5874] = {.lex_state = 196}, + [5875] = {.lex_state = 196}, + [5876] = {.lex_state = 196}, + [5877] = {.lex_state = 141, .external_lex_state = 19}, + [5878] = {.lex_state = 196}, + [5879] = {.lex_state = 196}, + [5880] = {.lex_state = 196}, + [5881] = {.lex_state = 356, .external_lex_state = 17}, + [5882] = {.lex_state = 196}, + [5883] = {.lex_state = 138}, + [5884] = {.lex_state = 187}, + [5885] = {.lex_state = 356}, + [5886] = {.lex_state = 187}, + [5887] = {.lex_state = 356}, + [5888] = {.lex_state = 187}, + [5889] = {.lex_state = 187}, + [5890] = {.lex_state = 356}, + [5891] = {.lex_state = 356, .external_lex_state = 18}, + [5892] = {.lex_state = 356}, + [5893] = {.lex_state = 356}, + [5894] = {.lex_state = 187}, + [5895] = {.lex_state = 187}, + [5896] = {.lex_state = 356, .external_lex_state = 18}, + [5897] = {.lex_state = 356}, + [5898] = {.lex_state = 138}, + [5899] = {.lex_state = 356, .external_lex_state = 18}, + [5900] = {.lex_state = 187}, + [5901] = {.lex_state = 138}, + [5902] = {.lex_state = 187}, + [5903] = {.lex_state = 187}, + [5904] = {.lex_state = 356, .external_lex_state = 18}, + [5905] = {.lex_state = 190, .external_lex_state = 19}, + [5906] = {.lex_state = 356, .external_lex_state = 18}, + [5907] = {.lex_state = 356}, + [5908] = {.lex_state = 187}, + [5909] = {.lex_state = 138}, + [5910] = {.lex_state = 187}, + [5911] = {.lex_state = 187}, + [5912] = {.lex_state = 187}, + [5913] = {.lex_state = 187}, + [5914] = {.lex_state = 187}, + [5915] = {.lex_state = 187}, + [5916] = {.lex_state = 356}, + [5917] = {.lex_state = 356, .external_lex_state = 17}, + [5918] = {.lex_state = 356}, + [5919] = {.lex_state = 187}, + [5920] = {.lex_state = 190, .external_lex_state = 19}, + [5921] = {.lex_state = 356}, + [5922] = {.lex_state = 187}, + [5923] = {.lex_state = 356}, + [5924] = {.lex_state = 356}, + [5925] = {.lex_state = 138}, + [5926] = {.lex_state = 356}, + [5927] = {.lex_state = 356}, + [5928] = {.lex_state = 356}, + [5929] = {.lex_state = 187}, + [5930] = {.lex_state = 190, .external_lex_state = 19}, + [5931] = {.lex_state = 356, .external_lex_state = 17}, + [5932] = {.lex_state = 356}, + [5933] = {.lex_state = 356}, + [5934] = {.lex_state = 203}, + [5935] = {.lex_state = 138}, + [5936] = {.lex_state = 356}, + [5937] = {.lex_state = 356}, + [5938] = {.lex_state = 192, .external_lex_state = 19}, + [5939] = {.lex_state = 138}, + [5940] = {.lex_state = 192, .external_lex_state = 19}, + [5941] = {.lex_state = 192, .external_lex_state = 19}, + [5942] = {.lex_state = 356}, + [5943] = {.lex_state = 356, .external_lex_state = 18}, + [5944] = {.lex_state = 356}, + [5945] = {.lex_state = 356}, + [5946] = {.lex_state = 356}, + [5947] = {.lex_state = 356}, + [5948] = {.lex_state = 356}, + [5949] = {.lex_state = 356}, + [5950] = {.lex_state = 356}, + [5951] = {.lex_state = 356, .external_lex_state = 18}, + [5952] = {.lex_state = 356}, + [5953] = {.lex_state = 356}, + [5954] = {.lex_state = 138}, + [5955] = {.lex_state = 356}, + [5956] = {.lex_state = 356}, + [5957] = {.lex_state = 356}, + [5958] = {.lex_state = 138}, + [5959] = {.lex_state = 356}, + [5960] = {.lex_state = 356}, + [5961] = {.lex_state = 356}, + [5962] = {.lex_state = 356}, + [5963] = {.lex_state = 138}, + [5964] = {.lex_state = 356}, + [5965] = {.lex_state = 356}, + [5966] = {.lex_state = 138}, + [5967] = {.lex_state = 203}, + [5968] = {.lex_state = 356}, + [5969] = {.lex_state = 356}, + [5970] = {.lex_state = 196}, + [5971] = {.lex_state = 196}, + [5972] = {.lex_state = 196}, + [5973] = {.lex_state = 356}, + [5974] = {.lex_state = 356}, + [5975] = {.lex_state = 196}, + [5976] = {.lex_state = 196}, + [5977] = {.lex_state = 196}, + [5978] = {.lex_state = 356}, + [5979] = {.lex_state = 356}, + [5980] = {.lex_state = 356}, + [5981] = {.lex_state = 356}, + [5982] = {.lex_state = 196, .external_lex_state = 16}, + [5983] = {.lex_state = 187}, + [5984] = {.lex_state = 196}, + [5985] = {.lex_state = 196, .external_lex_state = 16}, + [5986] = {.lex_state = 356}, + [5987] = {.lex_state = 196}, + [5988] = {.lex_state = 196}, + [5989] = {.lex_state = 196}, + [5990] = {.lex_state = 356}, + [5991] = {.lex_state = 196}, + [5992] = {.lex_state = 356}, + [5993] = {.lex_state = 356}, + [5994] = {.lex_state = 196}, + [5995] = {.lex_state = 356}, + [5996] = {.lex_state = 196}, + [5997] = {.lex_state = 356}, + [5998] = {.lex_state = 196}, + [5999] = {.lex_state = 356, .external_lex_state = 14}, + [6000] = {.lex_state = 356}, + [6001] = {.lex_state = 356}, + [6002] = {.lex_state = 356}, + [6003] = {.lex_state = 356}, + [6004] = {.lex_state = 356}, + [6005] = {.lex_state = 356}, + [6006] = {.lex_state = 196}, + [6007] = {.lex_state = 196}, + [6008] = {.lex_state = 187}, + [6009] = {.lex_state = 196}, + [6010] = {.lex_state = 196}, + [6011] = {.lex_state = 196}, + [6012] = {.lex_state = 356}, + [6013] = {.lex_state = 356}, + [6014] = {.lex_state = 356}, + [6015] = {.lex_state = 196}, + [6016] = {.lex_state = 196}, + [6017] = {.lex_state = 356}, + [6018] = {.lex_state = 356}, + [6019] = {.lex_state = 196}, + [6020] = {.lex_state = 196}, + [6021] = {.lex_state = 196}, + [6022] = {.lex_state = 196}, + [6023] = {.lex_state = 356, .external_lex_state = 14}, + [6024] = {.lex_state = 356}, + [6025] = {.lex_state = 356}, + [6026] = {.lex_state = 356}, + [6027] = {.lex_state = 356}, + [6028] = {.lex_state = 356}, + [6029] = {.lex_state = 356}, + [6030] = {.lex_state = 196}, + [6031] = {.lex_state = 356}, + [6032] = {.lex_state = 356}, + [6033] = {.lex_state = 356, .external_lex_state = 17}, + [6034] = {.lex_state = 187}, + [6035] = {.lex_state = 356}, + [6036] = {.lex_state = 196}, + [6037] = {.lex_state = 356}, + [6038] = {.lex_state = 196}, + [6039] = {.lex_state = 196}, + [6040] = {.lex_state = 196}, + [6041] = {.lex_state = 356, .external_lex_state = 17}, + [6042] = {.lex_state = 196}, + [6043] = {.lex_state = 196}, + [6044] = {.lex_state = 356}, + [6045] = {.lex_state = 356}, + [6046] = {.lex_state = 196}, + [6047] = {.lex_state = 356}, + [6048] = {.lex_state = 356}, + [6049] = {.lex_state = 356}, + [6050] = {.lex_state = 196}, + [6051] = {.lex_state = 356}, + [6052] = {.lex_state = 356}, + [6053] = {.lex_state = 196}, + [6054] = {.lex_state = 196}, + [6055] = {.lex_state = 196}, + [6056] = {.lex_state = 1}, + [6057] = {.lex_state = 356}, + [6058] = {.lex_state = 187}, + [6059] = {.lex_state = 196}, + [6060] = {.lex_state = 356}, + [6061] = {.lex_state = 356}, + [6062] = {.lex_state = 196}, + [6063] = {.lex_state = 356}, + [6064] = {.lex_state = 187}, + [6065] = {.lex_state = 196}, + [6066] = {.lex_state = 196}, + [6067] = {.lex_state = 356}, + [6068] = {.lex_state = 196}, + [6069] = {.lex_state = 196}, + [6070] = {.lex_state = 356}, + [6071] = {.lex_state = 196}, + [6072] = {.lex_state = 196}, + [6073] = {.lex_state = 356}, + [6074] = {.lex_state = 356}, + [6075] = {.lex_state = 356}, + [6076] = {.lex_state = 356}, + [6077] = {.lex_state = 356}, + [6078] = {.lex_state = 356}, + [6079] = {.lex_state = 356}, + [6080] = {.lex_state = 356}, + [6081] = {.lex_state = 356}, + [6082] = {.lex_state = 356}, + [6083] = {.lex_state = 196}, + [6084] = {.lex_state = 196}, + [6085] = {.lex_state = 196}, + [6086] = {.lex_state = 356}, + [6087] = {.lex_state = 187}, + [6088] = {.lex_state = 356}, + [6089] = {.lex_state = 356}, + [6090] = {.lex_state = 196}, + [6091] = {.lex_state = 356}, + [6092] = {.lex_state = 196}, + [6093] = {.lex_state = 196}, + [6094] = {.lex_state = 187}, + [6095] = {.lex_state = 356}, + [6096] = {.lex_state = 196}, + [6097] = {.lex_state = 196}, + [6098] = {.lex_state = 196}, + [6099] = {.lex_state = 356}, + [6100] = {.lex_state = 196}, + [6101] = {.lex_state = 187}, + [6102] = {.lex_state = 196}, + [6103] = {.lex_state = 196}, + [6104] = {.lex_state = 356}, + [6105] = {.lex_state = 187}, + [6106] = {.lex_state = 196}, + [6107] = {.lex_state = 356}, + [6108] = {.lex_state = 187}, + [6109] = {.lex_state = 196}, + [6110] = {.lex_state = 196}, + [6111] = {.lex_state = 196}, + [6112] = {.lex_state = 356}, + [6113] = {.lex_state = 196}, + [6114] = {.lex_state = 356, .external_lex_state = 17}, + [6115] = {.lex_state = 196}, + [6116] = {.lex_state = 196}, + [6117] = {.lex_state = 196}, + [6118] = {.lex_state = 356}, + [6119] = {.lex_state = 196}, + [6120] = {.lex_state = 196}, + [6121] = {.lex_state = 196}, + [6122] = {.lex_state = 356}, + [6123] = {.lex_state = 187}, + [6124] = {.lex_state = 196}, + [6125] = {.lex_state = 196}, + [6126] = {.lex_state = 356}, + [6127] = {.lex_state = 356, .external_lex_state = 16}, + [6128] = {.lex_state = 356, .external_lex_state = 17}, + [6129] = {.lex_state = 356, .external_lex_state = 17}, + [6130] = {.lex_state = 356}, + [6131] = {.lex_state = 356, .external_lex_state = 17}, + [6132] = {.lex_state = 356}, + [6133] = {.lex_state = 356, .external_lex_state = 17}, + [6134] = {.lex_state = 356, .external_lex_state = 17}, + [6135] = {.lex_state = 356}, + [6136] = {.lex_state = 356}, + [6137] = {.lex_state = 353, .external_lex_state = 14}, + [6138] = {.lex_state = 356}, + [6139] = {.lex_state = 356, .external_lex_state = 17}, + [6140] = {.lex_state = 356, .external_lex_state = 17}, + [6141] = {.lex_state = 356}, + [6142] = {.lex_state = 356}, + [6143] = {.lex_state = 356}, + [6144] = {.lex_state = 196}, + [6145] = {.lex_state = 356}, + [6146] = {.lex_state = 356}, + [6147] = {.lex_state = 356}, + [6148] = {.lex_state = 356}, + [6149] = {.lex_state = 356, .external_lex_state = 17}, + [6150] = {.lex_state = 356, .external_lex_state = 18}, + [6151] = {.lex_state = 356}, + [6152] = {.lex_state = 356}, + [6153] = {.lex_state = 356}, + [6154] = {.lex_state = 356, .external_lex_state = 14}, + [6155] = {.lex_state = 356}, + [6156] = {.lex_state = 356, .external_lex_state = 17}, + [6157] = {.lex_state = 356}, + [6158] = {.lex_state = 356}, + [6159] = {.lex_state = 356, .external_lex_state = 14}, + [6160] = {.lex_state = 356, .external_lex_state = 17}, + [6161] = {.lex_state = 356}, + [6162] = {.lex_state = 356, .external_lex_state = 18}, + [6163] = {.lex_state = 356, .external_lex_state = 14}, + [6164] = {.lex_state = 356}, + [6165] = {.lex_state = 356}, + [6166] = {.lex_state = 356, .external_lex_state = 17}, + [6167] = {.lex_state = 356}, + [6168] = {.lex_state = 356}, + [6169] = {.lex_state = 353, .external_lex_state = 14}, + [6170] = {.lex_state = 356}, + [6171] = {.lex_state = 353, .external_lex_state = 14}, + [6172] = {.lex_state = 353, .external_lex_state = 14}, + [6173] = {.lex_state = 356}, + [6174] = {.lex_state = 353, .external_lex_state = 14}, + [6175] = {.lex_state = 356}, + [6176] = {.lex_state = 356, .external_lex_state = 16}, + [6177] = {.lex_state = 356}, + [6178] = {.lex_state = 356}, + [6179] = {.lex_state = 356, .external_lex_state = 18}, + [6180] = {.lex_state = 356}, + [6181] = {.lex_state = 356, .external_lex_state = 16}, + [6182] = {.lex_state = 356}, + [6183] = {.lex_state = 356}, + [6184] = {.lex_state = 356}, + [6185] = {.lex_state = 356, .external_lex_state = 16}, + [6186] = {.lex_state = 356}, + [6187] = {.lex_state = 356}, + [6188] = {.lex_state = 356}, + [6189] = {.lex_state = 356, .external_lex_state = 17}, + [6190] = {.lex_state = 356}, + [6191] = {.lex_state = 356}, + [6192] = {.lex_state = 356}, + [6193] = {.lex_state = 356}, + [6194] = {.lex_state = 353, .external_lex_state = 14}, + [6195] = {.lex_state = 356}, + [6196] = {.lex_state = 356}, + [6197] = {.lex_state = 356}, + [6198] = {.lex_state = 356}, + [6199] = {.lex_state = 356, .external_lex_state = 16}, + [6200] = {.lex_state = 356}, + [6201] = {.lex_state = 356, .external_lex_state = 17}, + [6202] = {.lex_state = 356, .external_lex_state = 16}, + [6203] = {.lex_state = 356, .external_lex_state = 17}, + [6204] = {.lex_state = 356}, + [6205] = {.lex_state = 356}, + [6206] = {.lex_state = 356, .external_lex_state = 17}, + [6207] = {.lex_state = 356, .external_lex_state = 17}, + [6208] = {.lex_state = 353, .external_lex_state = 14}, + [6209] = {.lex_state = 356}, + [6210] = {.lex_state = 356}, + [6211] = {.lex_state = 356}, + [6212] = {.lex_state = 356, .external_lex_state = 17}, + [6213] = {.lex_state = 356}, + [6214] = {.lex_state = 356, .external_lex_state = 17}, + [6215] = {.lex_state = 356}, + [6216] = {.lex_state = 356}, + [6217] = {.lex_state = 356}, + [6218] = {.lex_state = 356}, + [6219] = {.lex_state = 356}, + [6220] = {.lex_state = 356}, + [6221] = {.lex_state = 356}, + [6222] = {.lex_state = 356}, + [6223] = {.lex_state = 356}, + [6224] = {.lex_state = 356}, + [6225] = {.lex_state = 356}, + [6226] = {.lex_state = 196, .external_lex_state = 16}, + [6227] = {.lex_state = 356}, + [6228] = {.lex_state = 356, .external_lex_state = 17}, + [6229] = {.lex_state = 356}, + [6230] = {.lex_state = 196, .external_lex_state = 16}, + [6231] = {.lex_state = 356}, + [6232] = {.lex_state = 353, .external_lex_state = 14}, + [6233] = {.lex_state = 196, .external_lex_state = 16}, + [6234] = {.lex_state = 353}, + [6235] = {.lex_state = 187}, + [6236] = {.lex_state = 356, .external_lex_state = 18}, + [6237] = {.lex_state = 187}, + [6238] = {.lex_state = 353, .external_lex_state = 14}, + [6239] = {.lex_state = 356}, + [6240] = {.lex_state = 356}, + [6241] = {.lex_state = 356, .external_lex_state = 15}, + [6242] = {.lex_state = 353, .external_lex_state = 17}, + [6243] = {.lex_state = 356, .external_lex_state = 15}, + [6244] = {.lex_state = 356, .external_lex_state = 18}, + [6245] = {.lex_state = 356, .external_lex_state = 18}, + [6246] = {.lex_state = 353, .external_lex_state = 20}, + [6247] = {.lex_state = 354, .external_lex_state = 20}, + [6248] = {.lex_state = 353}, + [6249] = {.lex_state = 356, .external_lex_state = 18}, + [6250] = {.lex_state = 356, .external_lex_state = 18}, + [6251] = {.lex_state = 356, .external_lex_state = 18}, + [6252] = {.lex_state = 356}, + [6253] = {.lex_state = 356}, + [6254] = {.lex_state = 356}, + [6255] = {.lex_state = 187}, + [6256] = {.lex_state = 187}, + [6257] = {.lex_state = 356}, + [6258] = {.lex_state = 353, .external_lex_state = 14}, + [6259] = {.lex_state = 356, .external_lex_state = 18}, + [6260] = {.lex_state = 353}, + [6261] = {.lex_state = 356}, + [6262] = {.lex_state = 356}, + [6263] = {.lex_state = 356}, + [6264] = {.lex_state = 356}, + [6265] = {.lex_state = 353}, + [6266] = {.lex_state = 187}, + [6267] = {.lex_state = 356}, + [6268] = {.lex_state = 196}, + [6269] = {.lex_state = 353, .external_lex_state = 20}, + [6270] = {.lex_state = 353, .external_lex_state = 20}, + [6271] = {.lex_state = 187}, + [6272] = {.lex_state = 356}, + [6273] = {.lex_state = 187}, + [6274] = {.lex_state = 356}, + [6275] = {.lex_state = 353}, + [6276] = {.lex_state = 356}, + [6277] = {.lex_state = 353, .external_lex_state = 16}, + [6278] = {.lex_state = 187}, + [6279] = {.lex_state = 353}, + [6280] = {.lex_state = 187}, + [6281] = {.lex_state = 356, .external_lex_state = 18}, + [6282] = {.lex_state = 187}, + [6283] = {.lex_state = 353, .external_lex_state = 17}, + [6284] = {.lex_state = 353}, + [6285] = {.lex_state = 187}, + [6286] = {.lex_state = 356}, + [6287] = {.lex_state = 356}, + [6288] = {.lex_state = 353, .external_lex_state = 20}, + [6289] = {.lex_state = 356}, + [6290] = {.lex_state = 356}, + [6291] = {.lex_state = 354, .external_lex_state = 15}, + [6292] = {.lex_state = 356, .external_lex_state = 15}, + [6293] = {.lex_state = 353, .external_lex_state = 14}, + [6294] = {.lex_state = 353, .external_lex_state = 14}, + [6295] = {.lex_state = 356, .external_lex_state = 18}, + [6296] = {.lex_state = 187}, + [6297] = {.lex_state = 356, .external_lex_state = 15}, + [6298] = {.lex_state = 356}, + [6299] = {.lex_state = 353}, + [6300] = {.lex_state = 353}, + [6301] = {.lex_state = 356, .external_lex_state = 18}, + [6302] = {.lex_state = 187}, + [6303] = {.lex_state = 356}, + [6304] = {.lex_state = 356, .external_lex_state = 15}, + [6305] = {.lex_state = 356}, + [6306] = {.lex_state = 356}, + [6307] = {.lex_state = 356}, + [6308] = {.lex_state = 356}, + [6309] = {.lex_state = 353, .external_lex_state = 20}, + [6310] = {.lex_state = 354, .external_lex_state = 15}, + [6311] = {.lex_state = 187}, + [6312] = {.lex_state = 356, .external_lex_state = 17}, + [6313] = {.lex_state = 356}, + [6314] = {.lex_state = 187}, + [6315] = {.lex_state = 356}, + [6316] = {.lex_state = 354, .external_lex_state = 20}, + [6317] = {.lex_state = 353, .external_lex_state = 20}, + [6318] = {.lex_state = 356}, + [6319] = {.lex_state = 354, .external_lex_state = 20}, + [6320] = {.lex_state = 353, .external_lex_state = 16}, + [6321] = {.lex_state = 353, .external_lex_state = 20}, + [6322] = {.lex_state = 356}, + [6323] = {.lex_state = 356}, + [6324] = {.lex_state = 356, .external_lex_state = 14}, + [6325] = {.lex_state = 196}, + [6326] = {.lex_state = 353, .external_lex_state = 20}, + [6327] = {.lex_state = 354, .external_lex_state = 20}, + [6328] = {.lex_state = 356, .external_lex_state = 14}, + [6329] = {.lex_state = 356, .external_lex_state = 18}, + [6330] = {.lex_state = 356, .external_lex_state = 18}, + [6331] = {.lex_state = 356, .external_lex_state = 14}, + [6332] = {.lex_state = 356}, + [6333] = {.lex_state = 356}, + [6334] = {.lex_state = 356, .external_lex_state = 18}, + [6335] = {.lex_state = 353}, + [6336] = {.lex_state = 187}, + [6337] = {.lex_state = 353}, + [6338] = {.lex_state = 353, .external_lex_state = 14}, + [6339] = {.lex_state = 356}, + [6340] = {.lex_state = 353, .external_lex_state = 16}, + [6341] = {.lex_state = 353, .external_lex_state = 20}, + [6342] = {.lex_state = 356}, + [6343] = {.lex_state = 356, .external_lex_state = 15}, + [6344] = {.lex_state = 353, .external_lex_state = 14}, + [6345] = {.lex_state = 353}, + [6346] = {.lex_state = 187}, + [6347] = {.lex_state = 354, .external_lex_state = 20}, + [6348] = {.lex_state = 187}, + [6349] = {.lex_state = 356}, + [6350] = {.lex_state = 353, .external_lex_state = 20}, + [6351] = {.lex_state = 353}, + [6352] = {.lex_state = 356}, + [6353] = {.lex_state = 187}, + [6354] = {.lex_state = 354, .external_lex_state = 15}, + [6355] = {.lex_state = 187}, + [6356] = {.lex_state = 356}, + [6357] = {.lex_state = 356}, + [6358] = {.lex_state = 353, .external_lex_state = 14}, + [6359] = {.lex_state = 353}, + [6360] = {.lex_state = 353}, + [6361] = {.lex_state = 353, .external_lex_state = 20}, + [6362] = {.lex_state = 356}, + [6363] = {.lex_state = 353}, + [6364] = {.lex_state = 356, .external_lex_state = 15}, + [6365] = {.lex_state = 356}, + [6366] = {.lex_state = 356, .external_lex_state = 15}, + [6367] = {.lex_state = 353}, + [6368] = {.lex_state = 353, .external_lex_state = 20}, + [6369] = {.lex_state = 187}, + [6370] = {.lex_state = 187}, + [6371] = {.lex_state = 187}, + [6372] = {.lex_state = 353}, + [6373] = {.lex_state = 356}, + [6374] = {.lex_state = 356}, + [6375] = {.lex_state = 353}, + [6376] = {.lex_state = 187}, + [6377] = {.lex_state = 353, .external_lex_state = 16}, + [6378] = {.lex_state = 187}, + [6379] = {.lex_state = 187}, + [6380] = {.lex_state = 353}, + [6381] = {.lex_state = 356}, + [6382] = {.lex_state = 356}, + [6383] = {.lex_state = 354, .external_lex_state = 20}, + [6384] = {.lex_state = 353}, + [6385] = {.lex_state = 353, .external_lex_state = 20}, + [6386] = {.lex_state = 353, .external_lex_state = 20}, + [6387] = {.lex_state = 356}, + [6388] = {.lex_state = 353, .external_lex_state = 20}, + [6389] = {.lex_state = 354, .external_lex_state = 20}, + [6390] = {.lex_state = 354, .external_lex_state = 15}, + [6391] = {.lex_state = 353, .external_lex_state = 20}, + [6392] = {.lex_state = 187}, + [6393] = {.lex_state = 356}, + [6394] = {.lex_state = 353}, + [6395] = {.lex_state = 353, .external_lex_state = 20}, + [6396] = {.lex_state = 354, .external_lex_state = 20}, + [6397] = {.lex_state = 356}, + [6398] = {.lex_state = 354, .external_lex_state = 20}, + [6399] = {.lex_state = 356, .external_lex_state = 15}, + [6400] = {.lex_state = 353, .external_lex_state = 20}, + [6401] = {.lex_state = 356}, + [6402] = {.lex_state = 187}, + [6403] = {.lex_state = 356, .external_lex_state = 16}, + [6404] = {.lex_state = 353, .external_lex_state = 20}, + [6405] = {.lex_state = 354, .external_lex_state = 20}, + [6406] = {.lex_state = 356, .external_lex_state = 16}, + [6407] = {.lex_state = 356}, + [6408] = {.lex_state = 356, .external_lex_state = 17}, + [6409] = {.lex_state = 353}, + [6410] = {.lex_state = 196}, + [6411] = {.lex_state = 356}, + [6412] = {.lex_state = 356, .external_lex_state = 16}, + [6413] = {.lex_state = 356}, + [6414] = {.lex_state = 356}, + [6415] = {.lex_state = 354, .external_lex_state = 15}, + [6416] = {.lex_state = 196}, + [6417] = {.lex_state = 353}, + [6418] = {.lex_state = 356, .external_lex_state = 18}, + [6419] = {.lex_state = 353, .external_lex_state = 14}, + [6420] = {.lex_state = 187}, + [6421] = {.lex_state = 356}, + [6422] = {.lex_state = 356, .external_lex_state = 14}, + [6423] = {.lex_state = 353}, + [6424] = {.lex_state = 356, .external_lex_state = 18}, + [6425] = {.lex_state = 356}, + [6426] = {.lex_state = 354, .external_lex_state = 20}, + [6427] = {.lex_state = 353}, + [6428] = {.lex_state = 353, .external_lex_state = 20}, + [6429] = {.lex_state = 356, .external_lex_state = 17}, + [6430] = {.lex_state = 353, .external_lex_state = 20}, + [6431] = {.lex_state = 187}, + [6432] = {.lex_state = 356}, + [6433] = {.lex_state = 353}, + [6434] = {.lex_state = 353, .external_lex_state = 14}, + [6435] = {.lex_state = 353, .external_lex_state = 14}, + [6436] = {.lex_state = 353, .external_lex_state = 14}, + [6437] = {.lex_state = 354, .external_lex_state = 20}, + [6438] = {.lex_state = 354, .external_lex_state = 15}, + [6439] = {.lex_state = 354}, + [6440] = {.lex_state = 187}, + [6441] = {.lex_state = 353}, + [6442] = {.lex_state = 356, .external_lex_state = 18}, + [6443] = {.lex_state = 356}, + [6444] = {.lex_state = 196}, + [6445] = {.lex_state = 353, .external_lex_state = 16}, + [6446] = {.lex_state = 353, .external_lex_state = 14}, + [6447] = {.lex_state = 356, .external_lex_state = 18}, + [6448] = {.lex_state = 356}, + [6449] = {.lex_state = 353, .external_lex_state = 14}, + [6450] = {.lex_state = 356, .external_lex_state = 18}, + [6451] = {.lex_state = 356}, + [6452] = {.lex_state = 356, .external_lex_state = 18}, + [6453] = {.lex_state = 356}, + [6454] = {.lex_state = 187}, + [6455] = {.lex_state = 356}, + [6456] = {.lex_state = 356}, + [6457] = {.lex_state = 356}, + [6458] = {.lex_state = 356}, + [6459] = {.lex_state = 356, .external_lex_state = 14}, + [6460] = {.lex_state = 356}, + [6461] = {.lex_state = 353}, + [6462] = {.lex_state = 356}, + [6463] = {.lex_state = 187}, + [6464] = {.lex_state = 353}, + [6465] = {.lex_state = 353}, + [6466] = {.lex_state = 187}, + [6467] = {.lex_state = 356}, + [6468] = {.lex_state = 356, .external_lex_state = 15}, + [6469] = {.lex_state = 353}, + [6470] = {.lex_state = 356}, + [6471] = {.lex_state = 356}, + [6472] = {.lex_state = 356, .external_lex_state = 15}, + [6473] = {.lex_state = 356}, + [6474] = {.lex_state = 354, .external_lex_state = 15}, + [6475] = {.lex_state = 187}, + [6476] = {.lex_state = 356, .external_lex_state = 15}, + [6477] = {.lex_state = 353, .external_lex_state = 20}, + [6478] = {.lex_state = 353, .external_lex_state = 20}, + [6479] = {.lex_state = 353}, + [6480] = {.lex_state = 354, .external_lex_state = 15}, + [6481] = {.lex_state = 187}, + [6482] = {.lex_state = 196}, + [6483] = {.lex_state = 356}, + [6484] = {.lex_state = 354, .external_lex_state = 20}, + [6485] = {.lex_state = 353, .external_lex_state = 20}, + [6486] = {.lex_state = 353, .external_lex_state = 14}, + [6487] = {.lex_state = 187}, + [6488] = {.lex_state = 356, .external_lex_state = 15}, + [6489] = {.lex_state = 356}, + [6490] = {.lex_state = 353}, + [6491] = {.lex_state = 356}, + [6492] = {.lex_state = 149}, + [6493] = {.lex_state = 354, .external_lex_state = 20}, + [6494] = {.lex_state = 353, .external_lex_state = 20}, + [6495] = {.lex_state = 187}, + [6496] = {.lex_state = 356}, + [6497] = {.lex_state = 356}, + [6498] = {.lex_state = 354, .external_lex_state = 20}, + [6499] = {.lex_state = 353}, + [6500] = {.lex_state = 353}, + [6501] = {.lex_state = 356}, + [6502] = {.lex_state = 353, .external_lex_state = 20}, + [6503] = {.lex_state = 356}, + [6504] = {.lex_state = 354, .external_lex_state = 15}, + [6505] = {.lex_state = 187}, + [6506] = {.lex_state = 353}, + [6507] = {.lex_state = 353}, + [6508] = {.lex_state = 196}, + [6509] = {.lex_state = 353, .external_lex_state = 20}, + [6510] = {.lex_state = 143}, + [6511] = {.lex_state = 353}, + [6512] = {.lex_state = 187}, + [6513] = {.lex_state = 354, .external_lex_state = 20}, + [6514] = {.lex_state = 353}, + [6515] = {.lex_state = 353, .external_lex_state = 17}, + [6516] = {.lex_state = 353}, + [6517] = {.lex_state = 353}, + [6518] = {.lex_state = 356}, + [6519] = {.lex_state = 356}, + [6520] = {.lex_state = 356}, + [6521] = {.lex_state = 356}, + [6522] = {.lex_state = 356, .external_lex_state = 15}, + [6523] = {.lex_state = 187}, + [6524] = {.lex_state = 356}, + [6525] = {.lex_state = 356}, + [6526] = {.lex_state = 356}, + [6527] = {.lex_state = 356}, + [6528] = {.lex_state = 356}, + [6529] = {.lex_state = 353}, + [6530] = {.lex_state = 187}, + [6531] = {.lex_state = 187}, + [6532] = {.lex_state = 353, .external_lex_state = 17}, + [6533] = {.lex_state = 353, .external_lex_state = 14}, + [6534] = {.lex_state = 353}, + [6535] = {.lex_state = 353, .external_lex_state = 16}, + [6536] = {.lex_state = 353}, + [6537] = {.lex_state = 353, .external_lex_state = 20}, + [6538] = {.lex_state = 356}, + [6539] = {.lex_state = 356}, + [6540] = {.lex_state = 356}, + [6541] = {.lex_state = 356}, + [6542] = {.lex_state = 353, .external_lex_state = 14}, + [6543] = {.lex_state = 356}, + [6544] = {.lex_state = 356}, + [6545] = {.lex_state = 356}, + [6546] = {.lex_state = 353, .external_lex_state = 20}, + [6547] = {.lex_state = 354, .external_lex_state = 20}, + [6548] = {.lex_state = 356}, + [6549] = {.lex_state = 353}, + [6550] = {.lex_state = 353}, + [6551] = {.lex_state = 187}, + [6552] = {.lex_state = 356}, + [6553] = {.lex_state = 356, .external_lex_state = 14}, + [6554] = {.lex_state = 353}, + [6555] = {.lex_state = 354, .external_lex_state = 20}, + [6556] = {.lex_state = 356}, + [6557] = {.lex_state = 187}, + [6558] = {.lex_state = 353, .external_lex_state = 20}, + [6559] = {.lex_state = 353, .external_lex_state = 20}, + [6560] = {.lex_state = 356}, + [6561] = {.lex_state = 353, .external_lex_state = 16}, + [6562] = {.lex_state = 353, .external_lex_state = 20}, + [6563] = {.lex_state = 353, .external_lex_state = 20}, + [6564] = {.lex_state = 353, .external_lex_state = 20}, + [6565] = {.lex_state = 353, .external_lex_state = 20}, + [6566] = {.lex_state = 353, .external_lex_state = 20}, + [6567] = {.lex_state = 138}, + [6568] = {.lex_state = 138}, + [6569] = {.lex_state = 356}, + [6570] = {.lex_state = 353, .external_lex_state = 20}, + [6571] = {.lex_state = 353, .external_lex_state = 20}, + [6572] = {.lex_state = 353, .external_lex_state = 20}, + [6573] = {.lex_state = 353, .external_lex_state = 20}, + [6574] = {.lex_state = 353, .external_lex_state = 20}, + [6575] = {.lex_state = 356}, + [6576] = {.lex_state = 356}, + [6577] = {.lex_state = 356}, + [6578] = {.lex_state = 354, .external_lex_state = 15}, + [6579] = {.lex_state = 353}, + [6580] = {.lex_state = 353, .external_lex_state = 20}, + [6581] = {.lex_state = 353, .external_lex_state = 20}, + [6582] = {.lex_state = 356}, + [6583] = {.lex_state = 203}, + [6584] = {.lex_state = 353, .external_lex_state = 20}, + [6585] = {.lex_state = 353}, + [6586] = {.lex_state = 353}, + [6587] = {.lex_state = 353, .external_lex_state = 16}, + [6588] = {.lex_state = 353, .external_lex_state = 16}, + [6589] = {.lex_state = 353, .external_lex_state = 20}, + [6590] = {.lex_state = 353, .external_lex_state = 20}, + [6591] = {.lex_state = 356}, + [6592] = {.lex_state = 353, .external_lex_state = 20}, + [6593] = {.lex_state = 353, .external_lex_state = 21}, + [6594] = {.lex_state = 353, .external_lex_state = 20}, + [6595] = {.lex_state = 353, .external_lex_state = 20}, + [6596] = {.lex_state = 356}, + [6597] = {.lex_state = 356}, + [6598] = {.lex_state = 354, .external_lex_state = 15}, + [6599] = {.lex_state = 354, .external_lex_state = 15}, + [6600] = {.lex_state = 353}, + [6601] = {.lex_state = 353, .external_lex_state = 20}, + [6602] = {.lex_state = 353, .external_lex_state = 20}, + [6603] = {.lex_state = 353}, + [6604] = {.lex_state = 353, .external_lex_state = 20}, + [6605] = {.lex_state = 356}, + [6606] = {.lex_state = 356}, + [6607] = {.lex_state = 353}, + [6608] = {.lex_state = 353}, + [6609] = {.lex_state = 353, .external_lex_state = 20}, + [6610] = {.lex_state = 353, .external_lex_state = 20}, + [6611] = {.lex_state = 354}, + [6612] = {.lex_state = 203}, + [6613] = {.lex_state = 353, .external_lex_state = 20}, + [6614] = {.lex_state = 353, .external_lex_state = 21}, + [6615] = {.lex_state = 203}, + [6616] = {.lex_state = 353, .external_lex_state = 20}, + [6617] = {.lex_state = 353, .external_lex_state = 20}, + [6618] = {.lex_state = 353, .external_lex_state = 20}, + [6619] = {.lex_state = 203}, + [6620] = {.lex_state = 353, .external_lex_state = 20}, + [6621] = {.lex_state = 353}, + [6622] = {.lex_state = 356}, + [6623] = {.lex_state = 203}, + [6624] = {.lex_state = 203}, + [6625] = {.lex_state = 353, .external_lex_state = 20}, + [6626] = {.lex_state = 353, .external_lex_state = 20}, + [6627] = {.lex_state = 353, .external_lex_state = 20}, + [6628] = {.lex_state = 203}, + [6629] = {.lex_state = 353, .external_lex_state = 14}, + [6630] = {.lex_state = 203}, + [6631] = {.lex_state = 353, .external_lex_state = 20}, + [6632] = {.lex_state = 353, .external_lex_state = 20}, + [6633] = {.lex_state = 353, .external_lex_state = 14}, + [6634] = {.lex_state = 353, .external_lex_state = 20}, + [6635] = {.lex_state = 353, .external_lex_state = 20}, + [6636] = {.lex_state = 353, .external_lex_state = 20}, + [6637] = {.lex_state = 353, .external_lex_state = 20}, + [6638] = {.lex_state = 353, .external_lex_state = 20}, + [6639] = {.lex_state = 353, .external_lex_state = 20}, + [6640] = {.lex_state = 356}, + [6641] = {.lex_state = 353, .external_lex_state = 20}, + [6642] = {.lex_state = 353}, + [6643] = {.lex_state = 354}, + [6644] = {.lex_state = 353, .external_lex_state = 20}, + [6645] = {.lex_state = 353, .external_lex_state = 20}, + [6646] = {.lex_state = 353, .external_lex_state = 20}, + [6647] = {.lex_state = 353, .external_lex_state = 16}, + [6648] = {.lex_state = 353, .external_lex_state = 20}, + [6649] = {.lex_state = 353, .external_lex_state = 14}, + [6650] = {.lex_state = 353, .external_lex_state = 20}, + [6651] = {.lex_state = 353, .external_lex_state = 20}, + [6652] = {.lex_state = 353, .external_lex_state = 20}, + [6653] = {.lex_state = 353, .external_lex_state = 20}, + [6654] = {.lex_state = 353}, + [6655] = {.lex_state = 353, .external_lex_state = 20}, + [6656] = {.lex_state = 353}, + [6657] = {.lex_state = 353}, + [6658] = {.lex_state = 353, .external_lex_state = 20}, + [6659] = {.lex_state = 353, .external_lex_state = 14}, + [6660] = {.lex_state = 353, .external_lex_state = 20}, + [6661] = {.lex_state = 353, .external_lex_state = 20}, + [6662] = {.lex_state = 353, .external_lex_state = 20}, + [6663] = {.lex_state = 353, .external_lex_state = 20}, + [6664] = {.lex_state = 353, .external_lex_state = 20}, + [6665] = {.lex_state = 353, .external_lex_state = 20}, + [6666] = {.lex_state = 353, .external_lex_state = 20}, + [6667] = {.lex_state = 353, .external_lex_state = 20}, + [6668] = {.lex_state = 353}, + [6669] = {.lex_state = 356}, + [6670] = {.lex_state = 353, .external_lex_state = 20}, + [6671] = {.lex_state = 353, .external_lex_state = 20}, + [6672] = {.lex_state = 353}, + [6673] = {.lex_state = 354}, + [6674] = {.lex_state = 356}, + [6675] = {.lex_state = 356}, + [6676] = {.lex_state = 353, .external_lex_state = 20}, + [6677] = {.lex_state = 353, .external_lex_state = 20}, + [6678] = {.lex_state = 353, .external_lex_state = 20}, + [6679] = {.lex_state = 356}, + [6680] = {.lex_state = 353, .external_lex_state = 14}, + [6681] = {.lex_state = 353, .external_lex_state = 16}, + [6682] = {.lex_state = 353, .external_lex_state = 20}, + [6683] = {.lex_state = 353, .external_lex_state = 20}, + [6684] = {.lex_state = 353, .external_lex_state = 20}, + [6685] = {.lex_state = 353, .external_lex_state = 20}, + [6686] = {.lex_state = 353, .external_lex_state = 14}, + [6687] = {.lex_state = 356}, + [6688] = {.lex_state = 353, .external_lex_state = 20}, + [6689] = {.lex_state = 353, .external_lex_state = 20}, + [6690] = {.lex_state = 356}, + [6691] = {.lex_state = 354}, + [6692] = {.lex_state = 353, .external_lex_state = 20}, + [6693] = {.lex_state = 353, .external_lex_state = 20}, + [6694] = {.lex_state = 353, .external_lex_state = 16}, + [6695] = {.lex_state = 353, .external_lex_state = 20}, + [6696] = {.lex_state = 353, .external_lex_state = 14}, + [6697] = {.lex_state = 353, .external_lex_state = 20}, + [6698] = {.lex_state = 353, .external_lex_state = 14}, + [6699] = {.lex_state = 353, .external_lex_state = 20}, + [6700] = {.lex_state = 353, .external_lex_state = 20}, + [6701] = {.lex_state = 353, .external_lex_state = 14}, + [6702] = {.lex_state = 353}, + [6703] = {.lex_state = 356}, + [6704] = {.lex_state = 353, .external_lex_state = 20}, + [6705] = {.lex_state = 353, .external_lex_state = 14}, + [6706] = {.lex_state = 353, .external_lex_state = 14}, + [6707] = {.lex_state = 353, .external_lex_state = 20}, + [6708] = {.lex_state = 353, .external_lex_state = 20}, + [6709] = {.lex_state = 353, .external_lex_state = 14}, + [6710] = {.lex_state = 353, .external_lex_state = 14}, + [6711] = {.lex_state = 353, .external_lex_state = 20}, + [6712] = {.lex_state = 353, .external_lex_state = 14}, + [6713] = {.lex_state = 353, .external_lex_state = 20}, + [6714] = {.lex_state = 203}, + [6715] = {.lex_state = 353, .external_lex_state = 17}, + [6716] = {.lex_state = 353, .external_lex_state = 17}, + [6717] = {.lex_state = 353, .external_lex_state = 17}, + [6718] = {.lex_state = 353, .external_lex_state = 14}, + [6719] = {.lex_state = 353, .external_lex_state = 20}, + [6720] = {.lex_state = 353}, + [6721] = {.lex_state = 353}, + [6722] = {.lex_state = 353, .external_lex_state = 20}, + [6723] = {.lex_state = 353, .external_lex_state = 20}, + [6724] = {.lex_state = 353, .external_lex_state = 20}, + [6725] = {.lex_state = 353, .external_lex_state = 17}, + [6726] = {.lex_state = 353, .external_lex_state = 17}, + [6727] = {.lex_state = 353, .external_lex_state = 20}, + [6728] = {.lex_state = 353}, + [6729] = {.lex_state = 353, .external_lex_state = 20}, + [6730] = {.lex_state = 353, .external_lex_state = 17}, + [6731] = {.lex_state = 353, .external_lex_state = 17}, + [6732] = {.lex_state = 353, .external_lex_state = 17}, + [6733] = {.lex_state = 353, .external_lex_state = 17}, + [6734] = {.lex_state = 353, .external_lex_state = 17}, + [6735] = {.lex_state = 356, .external_lex_state = 16}, + [6736] = {.lex_state = 353, .external_lex_state = 17}, + [6737] = {.lex_state = 353, .external_lex_state = 20}, + [6738] = {.lex_state = 353, .external_lex_state = 20}, + [6739] = {.lex_state = 353, .external_lex_state = 17}, + [6740] = {.lex_state = 356, .external_lex_state = 16}, + [6741] = {.lex_state = 353, .external_lex_state = 17}, + [6742] = {.lex_state = 353, .external_lex_state = 20}, + [6743] = {.lex_state = 353, .external_lex_state = 20}, + [6744] = {.lex_state = 353, .external_lex_state = 20}, + [6745] = {.lex_state = 353, .external_lex_state = 20}, + [6746] = {.lex_state = 356, .external_lex_state = 16}, + [6747] = {.lex_state = 353, .external_lex_state = 20}, + [6748] = {.lex_state = 353, .external_lex_state = 14}, + [6749] = {.lex_state = 353, .external_lex_state = 14}, + [6750] = {.lex_state = 353, .external_lex_state = 17}, + [6751] = {.lex_state = 353, .external_lex_state = 17}, + [6752] = {.lex_state = 356, .external_lex_state = 16}, + [6753] = {.lex_state = 353, .external_lex_state = 20}, + [6754] = {.lex_state = 356, .external_lex_state = 16}, + [6755] = {.lex_state = 356, .external_lex_state = 16}, + [6756] = {.lex_state = 356, .external_lex_state = 18}, + [6757] = {.lex_state = 353, .external_lex_state = 20}, + [6758] = {.lex_state = 353, .external_lex_state = 20}, + [6759] = {.lex_state = 356, .external_lex_state = 18}, + [6760] = {.lex_state = 356, .external_lex_state = 18}, + [6761] = {.lex_state = 353, .external_lex_state = 16}, + [6762] = {.lex_state = 353, .external_lex_state = 20}, + [6763] = {.lex_state = 353, .external_lex_state = 16}, + [6764] = {.lex_state = 353, .external_lex_state = 16}, + [6765] = {.lex_state = 353, .external_lex_state = 20}, + [6766] = {.lex_state = 353, .external_lex_state = 16}, + [6767] = {.lex_state = 353, .external_lex_state = 16}, + [6768] = {.lex_state = 353, .external_lex_state = 20}, + [6769] = {.lex_state = 353, .external_lex_state = 16}, + [6770] = {.lex_state = 353, .external_lex_state = 16}, + [6771] = {.lex_state = 353, .external_lex_state = 20}, + [6772] = {.lex_state = 353, .external_lex_state = 20}, + [6773] = {.lex_state = 353, .external_lex_state = 16}, + [6774] = {.lex_state = 353, .external_lex_state = 16}, + [6775] = {.lex_state = 353, .external_lex_state = 16}, + [6776] = {.lex_state = 353, .external_lex_state = 16}, + [6777] = {.lex_state = 353, .external_lex_state = 16}, + [6778] = {.lex_state = 353, .external_lex_state = 16}, + [6779] = {.lex_state = 353, .external_lex_state = 16}, + [6780] = {.lex_state = 353, .external_lex_state = 16}, + [6781] = {.lex_state = 353, .external_lex_state = 16}, + [6782] = {.lex_state = 353, .external_lex_state = 16}, + [6783] = {.lex_state = 353, .external_lex_state = 16}, + [6784] = {.lex_state = 353, .external_lex_state = 20}, + [6785] = {.lex_state = 353, .external_lex_state = 16}, + [6786] = {.lex_state = 353, .external_lex_state = 20}, + [6787] = {.lex_state = 353, .external_lex_state = 20}, + [6788] = {.lex_state = 353, .external_lex_state = 20}, + [6789] = {.lex_state = 353, .external_lex_state = 16}, + [6790] = {.lex_state = 353, .external_lex_state = 16}, + [6791] = {.lex_state = 353, .external_lex_state = 16}, + [6792] = {.lex_state = 353, .external_lex_state = 16}, + [6793] = {.lex_state = 353, .external_lex_state = 20}, + [6794] = {.lex_state = 353, .external_lex_state = 16}, + [6795] = {.lex_state = 353, .external_lex_state = 16}, + [6796] = {.lex_state = 353, .external_lex_state = 16}, + [6797] = {.lex_state = 353, .external_lex_state = 16}, + [6798] = {.lex_state = 353, .external_lex_state = 16}, + [6799] = {.lex_state = 353, .external_lex_state = 20}, + [6800] = {.lex_state = 353, .external_lex_state = 16}, + [6801] = {.lex_state = 353, .external_lex_state = 20}, + [6802] = {.lex_state = 353, .external_lex_state = 20}, + [6803] = {.lex_state = 353, .external_lex_state = 20}, + [6804] = {.lex_state = 353, .external_lex_state = 20}, + [6805] = {.lex_state = 353, .external_lex_state = 20}, + [6806] = {.lex_state = 353, .external_lex_state = 20}, + [6807] = {.lex_state = 353, .external_lex_state = 20}, + [6808] = {.lex_state = 353, .external_lex_state = 20}, + [6809] = {.lex_state = 353, .external_lex_state = 20}, + [6810] = {.lex_state = 353, .external_lex_state = 20}, + [6811] = {.lex_state = 353, .external_lex_state = 20}, + [6812] = {.lex_state = 353, .external_lex_state = 20}, + [6813] = {.lex_state = 353, .external_lex_state = 20}, + [6814] = {.lex_state = 353, .external_lex_state = 20}, + [6815] = {.lex_state = 356}, + [6816] = {.lex_state = 356}, + [6817] = {.lex_state = 353, .external_lex_state = 20}, + [6818] = {.lex_state = 353, .external_lex_state = 20}, + [6819] = {.lex_state = 353, .external_lex_state = 20}, + [6820] = {.lex_state = 353, .external_lex_state = 20}, + [6821] = {.lex_state = 353, .external_lex_state = 20}, + [6822] = {.lex_state = 353, .external_lex_state = 20}, + [6823] = {.lex_state = 353, .external_lex_state = 20}, + [6824] = {.lex_state = 353, .external_lex_state = 20}, + [6825] = {.lex_state = 353, .external_lex_state = 20}, + [6826] = {.lex_state = 356}, + [6827] = {.lex_state = 353, .external_lex_state = 20}, + [6828] = {.lex_state = 353, .external_lex_state = 20}, + [6829] = {.lex_state = 353, .external_lex_state = 20}, + [6830] = {.lex_state = 353, .external_lex_state = 20}, + [6831] = {.lex_state = 353, .external_lex_state = 20}, + [6832] = {.lex_state = 353, .external_lex_state = 20}, + [6833] = {.lex_state = 353, .external_lex_state = 20}, + [6834] = {.lex_state = 356}, + [6835] = {.lex_state = 353, .external_lex_state = 20}, + [6836] = {.lex_state = 353, .external_lex_state = 20}, + [6837] = {.lex_state = 353, .external_lex_state = 20}, + [6838] = {.lex_state = 353, .external_lex_state = 20}, + [6839] = {.lex_state = 353, .external_lex_state = 20}, + [6840] = {.lex_state = 356}, + [6841] = {.lex_state = 353, .external_lex_state = 20}, + [6842] = {.lex_state = 356}, + [6843] = {.lex_state = 353, .external_lex_state = 20}, + [6844] = {.lex_state = 356}, + [6845] = {.lex_state = 353, .external_lex_state = 20}, + [6846] = {.lex_state = 356}, + [6847] = {.lex_state = 356}, + [6848] = {.lex_state = 353, .external_lex_state = 20}, + [6849] = {.lex_state = 353, .external_lex_state = 20}, + [6850] = {.lex_state = 353, .external_lex_state = 20}, + [6851] = {.lex_state = 353, .external_lex_state = 20}, + [6852] = {.lex_state = 353, .external_lex_state = 20}, + [6853] = {.lex_state = 353, .external_lex_state = 20}, + [6854] = {.lex_state = 353, .external_lex_state = 20}, + [6855] = {.lex_state = 356}, + [6856] = {.lex_state = 356}, + [6857] = {.lex_state = 356}, + [6858] = {.lex_state = 356}, + [6859] = {.lex_state = 356}, + [6860] = {.lex_state = 356}, + [6861] = {.lex_state = 353, .external_lex_state = 20}, + [6862] = {.lex_state = 353, .external_lex_state = 20}, + [6863] = {.lex_state = 356}, + [6864] = {.lex_state = 356}, + [6865] = {.lex_state = 353, .external_lex_state = 20}, + [6866] = {.lex_state = 356}, + [6867] = {.lex_state = 353, .external_lex_state = 20}, + [6868] = {.lex_state = 353, .external_lex_state = 20}, + [6869] = {.lex_state = 353, .external_lex_state = 20}, + [6870] = {.lex_state = 353, .external_lex_state = 20}, + [6871] = {.lex_state = 356}, + [6872] = {.lex_state = 353, .external_lex_state = 20}, + [6873] = {.lex_state = 353, .external_lex_state = 20}, + [6874] = {.lex_state = 353, .external_lex_state = 20}, + [6875] = {.lex_state = 353, .external_lex_state = 21}, + [6876] = {.lex_state = 356}, + [6877] = {.lex_state = 353, .external_lex_state = 21}, + [6878] = {.lex_state = 356}, + [6879] = {.lex_state = 353, .external_lex_state = 20}, + [6880] = {.lex_state = 356}, + [6881] = {.lex_state = 353, .external_lex_state = 20}, + [6882] = {.lex_state = 353, .external_lex_state = 20}, + [6883] = {.lex_state = 353, .external_lex_state = 20}, + [6884] = {.lex_state = 353, .external_lex_state = 20}, + [6885] = {.lex_state = 353, .external_lex_state = 20}, + [6886] = {.lex_state = 353, .external_lex_state = 20}, + [6887] = {.lex_state = 353, .external_lex_state = 20}, + [6888] = {.lex_state = 353, .external_lex_state = 20}, + [6889] = {.lex_state = 353, .external_lex_state = 20}, + [6890] = {.lex_state = 356}, + [6891] = {.lex_state = 353, .external_lex_state = 20}, + [6892] = {.lex_state = 353, .external_lex_state = 21}, + [6893] = {.lex_state = 356}, + [6894] = {.lex_state = 353, .external_lex_state = 21}, + [6895] = {.lex_state = 356}, + [6896] = {.lex_state = 353, .external_lex_state = 20}, + [6897] = {.lex_state = 353, .external_lex_state = 20}, + [6898] = {.lex_state = 353, .external_lex_state = 20}, + [6899] = {.lex_state = 353, .external_lex_state = 20}, + [6900] = {.lex_state = 356}, + [6901] = {.lex_state = 353, .external_lex_state = 20}, + [6902] = {.lex_state = 353, .external_lex_state = 20}, + [6903] = {.lex_state = 353, .external_lex_state = 20}, + [6904] = {.lex_state = 353, .external_lex_state = 20}, + [6905] = {.lex_state = 356}, + [6906] = {.lex_state = 353, .external_lex_state = 21}, + [6907] = {.lex_state = 353, .external_lex_state = 20}, + [6908] = {.lex_state = 353, .external_lex_state = 20}, + [6909] = {.lex_state = 356}, + [6910] = {.lex_state = 356}, + [6911] = {.lex_state = 353, .external_lex_state = 20}, + [6912] = {.lex_state = 353, .external_lex_state = 21}, + [6913] = {.lex_state = 356}, + [6914] = {.lex_state = 353, .external_lex_state = 20}, + [6915] = {.lex_state = 353, .external_lex_state = 20}, + [6916] = {.lex_state = 353, .external_lex_state = 20}, + [6917] = {.lex_state = 353, .external_lex_state = 20}, + [6918] = {.lex_state = 353, .external_lex_state = 20}, + [6919] = {.lex_state = 353, .external_lex_state = 20}, + [6920] = {.lex_state = 353}, + [6921] = {.lex_state = 353, .external_lex_state = 20}, + [6922] = {.lex_state = 353, .external_lex_state = 20}, + [6923] = {.lex_state = 356}, + [6924] = {.lex_state = 353, .external_lex_state = 20}, + [6925] = {.lex_state = 353, .external_lex_state = 20}, + [6926] = {.lex_state = 353, .external_lex_state = 20}, + [6927] = {.lex_state = 356}, + [6928] = {.lex_state = 353, .external_lex_state = 20}, + [6929] = {.lex_state = 356}, + [6930] = {.lex_state = 353, .external_lex_state = 21}, + [6931] = {.lex_state = 356}, + [6932] = {.lex_state = 356}, + [6933] = {.lex_state = 353, .external_lex_state = 21}, + [6934] = {.lex_state = 356}, + [6935] = {.lex_state = 353}, + [6936] = {.lex_state = 356}, + [6937] = {.lex_state = 353, .external_lex_state = 20}, + [6938] = {.lex_state = 353, .external_lex_state = 20}, + [6939] = {.lex_state = 353, .external_lex_state = 20}, + [6940] = {.lex_state = 353}, + [6941] = {.lex_state = 356}, + [6942] = {.lex_state = 353, .external_lex_state = 20}, + [6943] = {.lex_state = 353, .external_lex_state = 21}, + [6944] = {.lex_state = 356}, + [6945] = {.lex_state = 353, .external_lex_state = 21}, + [6946] = {.lex_state = 356}, + [6947] = {.lex_state = 353, .external_lex_state = 20}, + [6948] = {.lex_state = 353, .external_lex_state = 20}, + [6949] = {.lex_state = 353}, + [6950] = {.lex_state = 353, .external_lex_state = 20}, + [6951] = {.lex_state = 353, .external_lex_state = 20}, + [6952] = {.lex_state = 353, .external_lex_state = 20}, + [6953] = {.lex_state = 353, .external_lex_state = 20}, + [6954] = {.lex_state = 353, .external_lex_state = 20}, + [6955] = {.lex_state = 353, .external_lex_state = 20}, + [6956] = {.lex_state = 356}, + [6957] = {.lex_state = 353, .external_lex_state = 20}, + [6958] = {.lex_state = 353, .external_lex_state = 20}, + [6959] = {.lex_state = 353}, + [6960] = {.lex_state = 356}, + [6961] = {.lex_state = 356}, + [6962] = {.lex_state = 356}, + [6963] = {.lex_state = 353, .external_lex_state = 21}, + [6964] = {.lex_state = 353, .external_lex_state = 20}, + [6965] = {.lex_state = 353, .external_lex_state = 20}, + [6966] = {.lex_state = 356}, + [6967] = {.lex_state = 353, .external_lex_state = 20}, + [6968] = {.lex_state = 356}, + [6969] = {.lex_state = 356}, + [6970] = {.lex_state = 353, .external_lex_state = 21}, + [6971] = {.lex_state = 138}, + [6972] = {.lex_state = 353, .external_lex_state = 20}, + [6973] = {.lex_state = 353, .external_lex_state = 20}, + [6974] = {.lex_state = 353, .external_lex_state = 20}, + [6975] = {.lex_state = 356}, + [6976] = {.lex_state = 353, .external_lex_state = 20}, + [6977] = {.lex_state = 356}, + [6978] = {.lex_state = 353, .external_lex_state = 20}, + [6979] = {.lex_state = 353}, + [6980] = {.lex_state = 353, .external_lex_state = 20}, + [6981] = {.lex_state = 356}, + [6982] = {.lex_state = 353, .external_lex_state = 20}, + [6983] = {.lex_state = 353, .external_lex_state = 20}, + [6984] = {.lex_state = 356}, + [6985] = {.lex_state = 353, .external_lex_state = 20}, + [6986] = {.lex_state = 353}, + [6987] = {.lex_state = 353, .external_lex_state = 20}, + [6988] = {.lex_state = 353, .external_lex_state = 20}, + [6989] = {.lex_state = 353, .external_lex_state = 20}, + [6990] = {.lex_state = 353, .external_lex_state = 20}, + [6991] = {.lex_state = 353}, + [6992] = {.lex_state = 356}, + [6993] = {.lex_state = 353, .external_lex_state = 20}, + [6994] = {.lex_state = 353, .external_lex_state = 20}, + [6995] = {.lex_state = 353, .external_lex_state = 21}, + [6996] = {.lex_state = 356}, + [6997] = {.lex_state = 356}, + [6998] = {.lex_state = 353, .external_lex_state = 20}, + [6999] = {.lex_state = 356}, + [7000] = {.lex_state = 356}, + [7001] = {.lex_state = 353, .external_lex_state = 20}, + [7002] = {.lex_state = 353, .external_lex_state = 20}, + [7003] = {.lex_state = 353, .external_lex_state = 20}, + [7004] = {.lex_state = 356}, + [7005] = {.lex_state = 353, .external_lex_state = 21}, + [7006] = {.lex_state = 356}, + [7007] = {.lex_state = 353, .external_lex_state = 21}, + [7008] = {.lex_state = 353, .external_lex_state = 20}, + [7009] = {.lex_state = 356}, + [7010] = {.lex_state = 356}, + [7011] = {.lex_state = 356}, + [7012] = {.lex_state = 353, .external_lex_state = 20}, + [7013] = {.lex_state = 353, .external_lex_state = 20}, + [7014] = {.lex_state = 353, .external_lex_state = 20}, + [7015] = {.lex_state = 353, .external_lex_state = 20}, + [7016] = {.lex_state = 356}, + [7017] = {.lex_state = 356}, + [7018] = {.lex_state = 353}, + [7019] = {.lex_state = 356}, + [7020] = {.lex_state = 353, .external_lex_state = 20}, + [7021] = {.lex_state = 356}, + [7022] = {.lex_state = 353, .external_lex_state = 20}, + [7023] = {.lex_state = 353, .external_lex_state = 20}, + [7024] = {.lex_state = 353, .external_lex_state = 21}, + [7025] = {.lex_state = 356}, + [7026] = {.lex_state = 353}, + [7027] = {.lex_state = 356}, + [7028] = {.lex_state = 356}, + [7029] = {.lex_state = 353, .external_lex_state = 20}, + [7030] = {.lex_state = 353, .external_lex_state = 21}, + [7031] = {.lex_state = 353, .external_lex_state = 20}, + [7032] = {.lex_state = 353, .external_lex_state = 20}, + [7033] = {.lex_state = 353, .external_lex_state = 20}, + [7034] = {.lex_state = 353, .external_lex_state = 20}, + [7035] = {.lex_state = 353, .external_lex_state = 20}, + [7036] = {.lex_state = 353, .external_lex_state = 20}, + [7037] = {.lex_state = 356}, + [7038] = {.lex_state = 356}, + [7039] = {.lex_state = 353}, + [7040] = {.lex_state = 353, .external_lex_state = 21}, + [7041] = {.lex_state = 356}, + [7042] = {.lex_state = 356}, + [7043] = {.lex_state = 353, .external_lex_state = 20}, + [7044] = {.lex_state = 353}, + [7045] = {.lex_state = 353, .external_lex_state = 20}, + [7046] = {.lex_state = 353, .external_lex_state = 20}, + [7047] = {.lex_state = 353, .external_lex_state = 20}, + [7048] = {.lex_state = 353, .external_lex_state = 20}, + [7049] = {.lex_state = 353, .external_lex_state = 20}, + [7050] = {.lex_state = 353, .external_lex_state = 20}, + [7051] = {.lex_state = 353, .external_lex_state = 20}, + [7052] = {.lex_state = 356}, + [7053] = {.lex_state = 353}, + [7054] = {.lex_state = 353, .external_lex_state = 20}, + [7055] = {.lex_state = 353, .external_lex_state = 20}, + [7056] = {.lex_state = 356}, + [7057] = {.lex_state = 353, .external_lex_state = 21}, + [7058] = {.lex_state = 356}, + [7059] = {.lex_state = 353, .external_lex_state = 20}, + [7060] = {.lex_state = 356}, + [7061] = {.lex_state = 353, .external_lex_state = 20}, + [7062] = {.lex_state = 356}, + [7063] = {.lex_state = 353, .external_lex_state = 20}, + [7064] = {.lex_state = 353, .external_lex_state = 20}, + [7065] = {.lex_state = 356}, + [7066] = {.lex_state = 356}, + [7067] = {.lex_state = 353, .external_lex_state = 20}, + [7068] = {.lex_state = 353, .external_lex_state = 20}, + [7069] = {.lex_state = 353, .external_lex_state = 20}, + [7070] = {.lex_state = 353, .external_lex_state = 20}, + [7071] = {.lex_state = 356}, + [7072] = {.lex_state = 353, .external_lex_state = 20}, + [7073] = {.lex_state = 353, .external_lex_state = 21}, + [7074] = {.lex_state = 356}, + [7075] = {.lex_state = 356}, + [7076] = {.lex_state = 356}, + [7077] = {.lex_state = 353, .external_lex_state = 20}, + [7078] = {.lex_state = 353, .external_lex_state = 20}, + [7079] = {.lex_state = 353, .external_lex_state = 20}, + [7080] = {.lex_state = 353, .external_lex_state = 20}, + [7081] = {.lex_state = 353, .external_lex_state = 20}, + [7082] = {.lex_state = 356}, + [7083] = {.lex_state = 353, .external_lex_state = 20}, + [7084] = {.lex_state = 353, .external_lex_state = 20}, + [7085] = {.lex_state = 353}, + [7086] = {.lex_state = 353, .external_lex_state = 20}, + [7087] = {.lex_state = 353, .external_lex_state = 20}, + [7088] = {.lex_state = 356}, + [7089] = {.lex_state = 353, .external_lex_state = 20}, + [7090] = {.lex_state = 353, .external_lex_state = 20}, + [7091] = {.lex_state = 353, .external_lex_state = 20}, + [7092] = {.lex_state = 138}, + [7093] = {.lex_state = 353, .external_lex_state = 20}, + [7094] = {.lex_state = 356}, + [7095] = {.lex_state = 353, .external_lex_state = 20}, + [7096] = {.lex_state = 353, .external_lex_state = 20}, + [7097] = {.lex_state = 356}, + [7098] = {.lex_state = 138}, + [7099] = {.lex_state = 353, .external_lex_state = 20}, + [7100] = {.lex_state = 353, .external_lex_state = 20}, + [7101] = {.lex_state = 356}, + [7102] = {.lex_state = 353, .external_lex_state = 20}, + [7103] = {.lex_state = 353, .external_lex_state = 20}, + [7104] = {.lex_state = 356}, + [7105] = {.lex_state = 353}, + [7106] = {.lex_state = 353, .external_lex_state = 20}, + [7107] = {.lex_state = 356}, + [7108] = {.lex_state = 353, .external_lex_state = 20}, + [7109] = {.lex_state = 353, .external_lex_state = 20}, + [7110] = {.lex_state = 353, .external_lex_state = 20}, + [7111] = {.lex_state = 353, .external_lex_state = 20}, + [7112] = {.lex_state = 353}, + [7113] = {.lex_state = 353, .external_lex_state = 20}, + [7114] = {.lex_state = 353, .external_lex_state = 21}, + [7115] = {.lex_state = 356}, + [7116] = {.lex_state = 353, .external_lex_state = 20}, + [7117] = {.lex_state = 353, .external_lex_state = 20}, + [7118] = {.lex_state = 356}, + [7119] = {.lex_state = 353, .external_lex_state = 20}, + [7120] = {.lex_state = 353, .external_lex_state = 21}, + [7121] = {.lex_state = 356}, + [7122] = {.lex_state = 353, .external_lex_state = 20}, + [7123] = {.lex_state = 356}, + [7124] = {.lex_state = 353, .external_lex_state = 20}, + [7125] = {.lex_state = 356}, + [7126] = {.lex_state = 353, .external_lex_state = 20}, + [7127] = {.lex_state = 353, .external_lex_state = 20}, + [7128] = {.lex_state = 356}, + [7129] = {.lex_state = 353, .external_lex_state = 20}, + [7130] = {.lex_state = 356}, + [7131] = {.lex_state = 353, .external_lex_state = 21}, + [7132] = {.lex_state = 356}, + [7133] = {.lex_state = 356}, + [7134] = {.lex_state = 353, .external_lex_state = 20}, + [7135] = {.lex_state = 353}, + [7136] = {.lex_state = 353, .external_lex_state = 20}, + [7137] = {.lex_state = 353, .external_lex_state = 20}, + [7138] = {.lex_state = 353, .external_lex_state = 20}, + [7139] = {.lex_state = 353, .external_lex_state = 20}, + [7140] = {.lex_state = 353, .external_lex_state = 20}, + [7141] = {.lex_state = 356}, + [7142] = {.lex_state = 353, .external_lex_state = 20}, + [7143] = {.lex_state = 356}, + [7144] = {.lex_state = 353, .external_lex_state = 20}, + [7145] = {.lex_state = 356}, + [7146] = {.lex_state = 356}, + [7147] = {.lex_state = 353, .external_lex_state = 20}, + [7148] = {.lex_state = 353, .external_lex_state = 21}, + [7149] = {.lex_state = 353, .external_lex_state = 20}, + [7150] = {.lex_state = 138}, + [7151] = {.lex_state = 356}, + [7152] = {.lex_state = 353, .external_lex_state = 20}, + [7153] = {.lex_state = 353, .external_lex_state = 20}, + [7154] = {.lex_state = 356}, + [7155] = {.lex_state = 353}, + [7156] = {.lex_state = 353, .external_lex_state = 20}, + [7157] = {.lex_state = 353}, + [7158] = {.lex_state = 353, .external_lex_state = 16}, + [7159] = {.lex_state = 353}, + [7160] = {.lex_state = 353, .external_lex_state = 16}, + [7161] = {.lex_state = 353, .external_lex_state = 16}, + [7162] = {.lex_state = 356}, + [7163] = {.lex_state = 356}, + [7164] = {.lex_state = 356}, + [7165] = {.lex_state = 356}, + [7166] = {.lex_state = 356}, + [7167] = {.lex_state = 356}, + [7168] = {.lex_state = 353}, + [7169] = {.lex_state = 356}, + [7170] = {.lex_state = 353, .external_lex_state = 16}, + [7171] = {.lex_state = 356}, + [7172] = {.lex_state = 353}, + [7173] = {.lex_state = 353, .external_lex_state = 16}, + [7174] = {.lex_state = 353, .external_lex_state = 16}, + [7175] = {.lex_state = 353}, + [7176] = {.lex_state = 353, .external_lex_state = 16}, + [7177] = {.lex_state = 356, .external_lex_state = 22}, + [7178] = {.lex_state = 356}, + [7179] = {.lex_state = 1}, + [7180] = {.lex_state = 353}, + [7181] = {.lex_state = 353, .external_lex_state = 18}, + [7182] = {.lex_state = 353}, + [7183] = {.lex_state = 353}, + [7184] = {.lex_state = 353, .external_lex_state = 16}, + [7185] = {.lex_state = 353}, + [7186] = {.lex_state = 353}, + [7187] = {.lex_state = 353}, + [7188] = {.lex_state = 353}, + [7189] = {.lex_state = 353}, + [7190] = {.lex_state = 353}, + [7191] = {.lex_state = 353, .external_lex_state = 18}, + [7192] = {.lex_state = 138}, + [7193] = {.lex_state = 353}, + [7194] = {.lex_state = 353, .external_lex_state = 23}, + [7195] = {.lex_state = 353, .external_lex_state = 23}, + [7196] = {.lex_state = 356}, + [7197] = {.lex_state = 356, .external_lex_state = 22}, + [7198] = {.lex_state = 354}, + [7199] = {.lex_state = 353}, + [7200] = {.lex_state = 353}, + [7201] = {.lex_state = 353}, + [7202] = {.lex_state = 353}, + [7203] = {.lex_state = 353}, + [7204] = {.lex_state = 353}, + [7205] = {.lex_state = 1}, + [7206] = {.lex_state = 353}, + [7207] = {.lex_state = 1}, + [7208] = {.lex_state = 356}, + [7209] = {.lex_state = 356}, + [7210] = {.lex_state = 353, .external_lex_state = 16}, + [7211] = {.lex_state = 353}, + [7212] = {.lex_state = 354}, + [7213] = {.lex_state = 353, .external_lex_state = 16}, + [7214] = {.lex_state = 353, .external_lex_state = 16}, + [7215] = {.lex_state = 356}, + [7216] = {.lex_state = 1}, + [7217] = {.lex_state = 353}, + [7218] = {.lex_state = 353}, + [7219] = {.lex_state = 1}, + [7220] = {.lex_state = 353}, + [7221] = {.lex_state = 353}, + [7222] = {.lex_state = 356}, + [7223] = {.lex_state = 138}, + [7224] = {.lex_state = 353}, + [7225] = {.lex_state = 353}, + [7226] = {.lex_state = 138}, + [7227] = {.lex_state = 353}, + [7228] = {.lex_state = 354}, + [7229] = {.lex_state = 353}, + [7230] = {.lex_state = 356}, + [7231] = {.lex_state = 356}, + [7232] = {.lex_state = 353}, + [7233] = {.lex_state = 353}, + [7234] = {.lex_state = 353}, + [7235] = {.lex_state = 353, .external_lex_state = 16}, + [7236] = {.lex_state = 356}, + [7237] = {.lex_state = 356, .external_lex_state = 22}, + [7238] = {.lex_state = 353}, + [7239] = {.lex_state = 356}, + [7240] = {.lex_state = 356}, + [7241] = {.lex_state = 356}, + [7242] = {.lex_state = 356}, + [7243] = {.lex_state = 356}, + [7244] = {.lex_state = 356, .external_lex_state = 22}, + [7245] = {.lex_state = 353}, + [7246] = {.lex_state = 353}, + [7247] = {.lex_state = 353, .external_lex_state = 23}, + [7248] = {.lex_state = 353}, + [7249] = {.lex_state = 353, .external_lex_state = 23}, + [7250] = {.lex_state = 353, .external_lex_state = 16}, + [7251] = {.lex_state = 353, .external_lex_state = 16}, + [7252] = {.lex_state = 353}, + [7253] = {.lex_state = 353}, + [7254] = {.lex_state = 353, .external_lex_state = 16}, + [7255] = {.lex_state = 353}, + [7256] = {.lex_state = 353}, + [7257] = {.lex_state = 353}, + [7258] = {.lex_state = 353}, + [7259] = {.lex_state = 353}, + [7260] = {.lex_state = 353}, + [7261] = {.lex_state = 353, .external_lex_state = 16}, + [7262] = {.lex_state = 353}, + [7263] = {.lex_state = 353}, + [7264] = {.lex_state = 354}, + [7265] = {.lex_state = 353}, + [7266] = {.lex_state = 138}, + [7267] = {.lex_state = 353}, + [7268] = {.lex_state = 353, .external_lex_state = 23}, + [7269] = {.lex_state = 353, .external_lex_state = 23}, + [7270] = {.lex_state = 356}, + [7271] = {.lex_state = 356, .external_lex_state = 22}, + [7272] = {.lex_state = 353}, + [7273] = {.lex_state = 353, .external_lex_state = 18}, + [7274] = {.lex_state = 353, .external_lex_state = 18}, + [7275] = {.lex_state = 353}, + [7276] = {.lex_state = 353}, + [7277] = {.lex_state = 353, .external_lex_state = 16}, + [7278] = {.lex_state = 353}, + [7279] = {.lex_state = 353}, + [7280] = {.lex_state = 353}, + [7281] = {.lex_state = 353}, + [7282] = {.lex_state = 1}, + [7283] = {.lex_state = 353, .external_lex_state = 16}, + [7284] = {.lex_state = 353}, + [7285] = {.lex_state = 353}, + [7286] = {.lex_state = 353, .external_lex_state = 16}, + [7287] = {.lex_state = 353, .external_lex_state = 16}, + [7288] = {.lex_state = 353, .external_lex_state = 18}, + [7289] = {.lex_state = 353}, + [7290] = {.lex_state = 353}, + [7291] = {.lex_state = 353, .external_lex_state = 16}, + [7292] = {.lex_state = 353, .external_lex_state = 16}, + [7293] = {.lex_state = 353, .external_lex_state = 16}, + [7294] = {.lex_state = 353}, + [7295] = {.lex_state = 353, .external_lex_state = 16}, + [7296] = {.lex_state = 353}, + [7297] = {.lex_state = 356}, + [7298] = {.lex_state = 353, .external_lex_state = 18}, + [7299] = {.lex_state = 138}, + [7300] = {.lex_state = 356}, + [7301] = {.lex_state = 356}, + [7302] = {.lex_state = 353}, + [7303] = {.lex_state = 353}, + [7304] = {.lex_state = 356}, + [7305] = {.lex_state = 353, .external_lex_state = 16}, + [7306] = {.lex_state = 353}, + [7307] = {.lex_state = 353}, + [7308] = {.lex_state = 353}, + [7309] = {.lex_state = 354}, + [7310] = {.lex_state = 353}, + [7311] = {.lex_state = 356, .external_lex_state = 22}, + [7312] = {.lex_state = 356}, + [7313] = {.lex_state = 356}, + [7314] = {.lex_state = 353}, + [7315] = {.lex_state = 353}, + [7316] = {.lex_state = 353}, + [7317] = {.lex_state = 353}, + [7318] = {.lex_state = 353}, + [7319] = {.lex_state = 353}, + [7320] = {.lex_state = 353}, + [7321] = {.lex_state = 353}, + [7322] = {.lex_state = 353, .external_lex_state = 16}, + [7323] = {.lex_state = 353}, + [7324] = {.lex_state = 356}, + [7325] = {.lex_state = 353}, + [7326] = {.lex_state = 356}, + [7327] = {.lex_state = 353}, + [7328] = {.lex_state = 353, .external_lex_state = 23}, + [7329] = {.lex_state = 353, .external_lex_state = 23}, + [7330] = {.lex_state = 356}, + [7331] = {.lex_state = 356, .external_lex_state = 22}, + [7332] = {.lex_state = 353}, + [7333] = {.lex_state = 353}, + [7334] = {.lex_state = 354}, + [7335] = {.lex_state = 354}, + [7336] = {.lex_state = 353}, + [7337] = {.lex_state = 353}, + [7338] = {.lex_state = 353}, + [7339] = {.lex_state = 353}, + [7340] = {.lex_state = 356}, + [7341] = {.lex_state = 138}, + [7342] = {.lex_state = 1}, + [7343] = {.lex_state = 353}, + [7344] = {.lex_state = 353}, + [7345] = {.lex_state = 353}, + [7346] = {.lex_state = 353, .external_lex_state = 16}, + [7347] = {.lex_state = 353, .external_lex_state = 16}, + [7348] = {.lex_state = 353}, + [7349] = {.lex_state = 1}, + [7350] = {.lex_state = 354}, + [7351] = {.lex_state = 138}, + [7352] = {.lex_state = 353}, + [7353] = {.lex_state = 353}, + [7354] = {.lex_state = 356}, + [7355] = {.lex_state = 353}, + [7356] = {.lex_state = 356, .external_lex_state = 22}, + [7357] = {.lex_state = 1}, + [7358] = {.lex_state = 356}, + [7359] = {.lex_state = 356}, + [7360] = {.lex_state = 353}, + [7361] = {.lex_state = 356}, + [7362] = {.lex_state = 353}, + [7363] = {.lex_state = 353, .external_lex_state = 16}, + [7364] = {.lex_state = 353, .external_lex_state = 16}, + [7365] = {.lex_state = 356}, + [7366] = {.lex_state = 353}, + [7367] = {.lex_state = 353, .external_lex_state = 16}, + [7368] = {.lex_state = 356}, + [7369] = {.lex_state = 356}, + [7370] = {.lex_state = 356, .external_lex_state = 22}, + [7371] = {.lex_state = 353, .external_lex_state = 16}, + [7372] = {.lex_state = 356}, + [7373] = {.lex_state = 356}, + [7374] = {.lex_state = 353}, + [7375] = {.lex_state = 353}, + [7376] = {.lex_state = 356}, + [7377] = {.lex_state = 353}, + [7378] = {.lex_state = 353}, + [7379] = {.lex_state = 353}, + [7380] = {.lex_state = 353}, + [7381] = {.lex_state = 356}, + [7382] = {.lex_state = 356}, + [7383] = {.lex_state = 353}, + [7384] = {.lex_state = 353, .external_lex_state = 23}, + [7385] = {.lex_state = 353, .external_lex_state = 23}, + [7386] = {.lex_state = 356}, + [7387] = {.lex_state = 356, .external_lex_state = 22}, + [7388] = {.lex_state = 353, .external_lex_state = 16}, + [7389] = {.lex_state = 353}, + [7390] = {.lex_state = 353}, + [7391] = {.lex_state = 353, .external_lex_state = 16}, + [7392] = {.lex_state = 353}, + [7393] = {.lex_state = 353}, + [7394] = {.lex_state = 353}, + [7395] = {.lex_state = 353}, + [7396] = {.lex_state = 354}, + [7397] = {.lex_state = 353, .external_lex_state = 16}, + [7398] = {.lex_state = 1}, + [7399] = {.lex_state = 353}, + [7400] = {.lex_state = 353, .external_lex_state = 16}, + [7401] = {.lex_state = 353, .external_lex_state = 16}, + [7402] = {.lex_state = 138}, + [7403] = {.lex_state = 353, .external_lex_state = 18}, + [7404] = {.lex_state = 353, .external_lex_state = 16}, + [7405] = {.lex_state = 353, .external_lex_state = 16}, + [7406] = {.lex_state = 353, .external_lex_state = 16}, + [7407] = {.lex_state = 353}, + [7408] = {.lex_state = 353}, + [7409] = {.lex_state = 353}, + [7410] = {.lex_state = 353}, + [7411] = {.lex_state = 353, .external_lex_state = 16}, + [7412] = {.lex_state = 353}, + [7413] = {.lex_state = 356}, + [7414] = {.lex_state = 356}, + [7415] = {.lex_state = 353}, + [7416] = {.lex_state = 353}, + [7417] = {.lex_state = 1}, + [7418] = {.lex_state = 353, .external_lex_state = 16}, + [7419] = {.lex_state = 353, .external_lex_state = 18}, + [7420] = {.lex_state = 353}, + [7421] = {.lex_state = 353, .external_lex_state = 18}, + [7422] = {.lex_state = 353}, + [7423] = {.lex_state = 353, .external_lex_state = 16}, + [7424] = {.lex_state = 356, .external_lex_state = 22}, + [7425] = {.lex_state = 1}, + [7426] = {.lex_state = 353}, + [7427] = {.lex_state = 353, .external_lex_state = 16}, + [7428] = {.lex_state = 353}, + [7429] = {.lex_state = 353}, + [7430] = {.lex_state = 353}, + [7431] = {.lex_state = 353}, + [7432] = {.lex_state = 353}, + [7433] = {.lex_state = 353}, + [7434] = {.lex_state = 353}, + [7435] = {.lex_state = 353}, + [7436] = {.lex_state = 353, .external_lex_state = 18}, + [7437] = {.lex_state = 353}, + [7438] = {.lex_state = 353, .external_lex_state = 23}, + [7439] = {.lex_state = 353, .external_lex_state = 23}, + [7440] = {.lex_state = 356}, + [7441] = {.lex_state = 356, .external_lex_state = 22}, + [7442] = {.lex_state = 353}, + [7443] = {.lex_state = 353, .external_lex_state = 16}, + [7444] = {.lex_state = 356, .external_lex_state = 22}, + [7445] = {.lex_state = 353, .external_lex_state = 16}, + [7446] = {.lex_state = 353}, + [7447] = {.lex_state = 353, .external_lex_state = 16}, + [7448] = {.lex_state = 353, .external_lex_state = 16}, + [7449] = {.lex_state = 353}, + [7450] = {.lex_state = 353}, + [7451] = {.lex_state = 356}, + [7452] = {.lex_state = 1}, + [7453] = {.lex_state = 353, .external_lex_state = 23}, + [7454] = {.lex_state = 353, .external_lex_state = 16}, + [7455] = {.lex_state = 353, .external_lex_state = 16}, + [7456] = {.lex_state = 353, .external_lex_state = 23}, + [7457] = {.lex_state = 353, .external_lex_state = 16}, + [7458] = {.lex_state = 353, .external_lex_state = 18}, + [7459] = {.lex_state = 356}, + [7460] = {.lex_state = 138}, + [7461] = {.lex_state = 353}, + [7462] = {.lex_state = 356}, + [7463] = {.lex_state = 353}, + [7464] = {.lex_state = 356}, + [7465] = {.lex_state = 353, .external_lex_state = 16}, + [7466] = {.lex_state = 354}, + [7467] = {.lex_state = 356}, + [7468] = {.lex_state = 356}, + [7469] = {.lex_state = 353}, + [7470] = {.lex_state = 353}, + [7471] = {.lex_state = 356}, + [7472] = {.lex_state = 353, .external_lex_state = 16}, + [7473] = {.lex_state = 356}, + [7474] = {.lex_state = 353}, + [7475] = {.lex_state = 353, .external_lex_state = 16}, + [7476] = {.lex_state = 353}, + [7477] = {.lex_state = 353}, + [7478] = {.lex_state = 356, .external_lex_state = 22}, + [7479] = {.lex_state = 356}, + [7480] = {.lex_state = 356}, + [7481] = {.lex_state = 353}, + [7482] = {.lex_state = 353}, + [7483] = {.lex_state = 356}, + [7484] = {.lex_state = 353, .external_lex_state = 16}, + [7485] = {.lex_state = 353}, + [7486] = {.lex_state = 353}, + [7487] = {.lex_state = 353}, + [7488] = {.lex_state = 356}, + [7489] = {.lex_state = 356}, + [7490] = {.lex_state = 356}, + [7491] = {.lex_state = 356}, + [7492] = {.lex_state = 353, .external_lex_state = 23}, + [7493] = {.lex_state = 353, .external_lex_state = 23}, + [7494] = {.lex_state = 356}, + [7495] = {.lex_state = 356, .external_lex_state = 22}, + [7496] = {.lex_state = 356}, + [7497] = {.lex_state = 356}, + [7498] = {.lex_state = 356}, + [7499] = {.lex_state = 353}, + [7500] = {.lex_state = 353}, + [7501] = {.lex_state = 354}, + [7502] = {.lex_state = 356}, + [7503] = {.lex_state = 353}, + [7504] = {.lex_state = 353}, + [7505] = {.lex_state = 356}, + [7506] = {.lex_state = 1}, + [7507] = {.lex_state = 353, .external_lex_state = 16}, + [7508] = {.lex_state = 353, .external_lex_state = 16}, + [7509] = {.lex_state = 356}, + [7510] = {.lex_state = 356}, + [7511] = {.lex_state = 356}, + [7512] = {.lex_state = 356}, + [7513] = {.lex_state = 138}, + [7514] = {.lex_state = 353}, + [7515] = {.lex_state = 353}, + [7516] = {.lex_state = 356}, + [7517] = {.lex_state = 356}, + [7518] = {.lex_state = 354}, + [7519] = {.lex_state = 353}, + [7520] = {.lex_state = 356}, + [7521] = {.lex_state = 353, .external_lex_state = 16}, + [7522] = {.lex_state = 353}, + [7523] = {.lex_state = 353}, + [7524] = {.lex_state = 356, .external_lex_state = 22}, + [7525] = {.lex_state = 356}, + [7526] = {.lex_state = 356}, + [7527] = {.lex_state = 353}, + [7528] = {.lex_state = 356}, + [7529] = {.lex_state = 1}, + [7530] = {.lex_state = 356}, + [7531] = {.lex_state = 353}, + [7532] = {.lex_state = 353, .external_lex_state = 23}, + [7533] = {.lex_state = 353, .external_lex_state = 23}, + [7534] = {.lex_state = 356}, + [7535] = {.lex_state = 356, .external_lex_state = 22}, + [7536] = {.lex_state = 356}, + [7537] = {.lex_state = 356}, + [7538] = {.lex_state = 353}, + [7539] = {.lex_state = 356}, + [7540] = {.lex_state = 353}, + [7541] = {.lex_state = 353, .external_lex_state = 16}, + [7542] = {.lex_state = 356}, + [7543] = {.lex_state = 353}, + [7544] = {.lex_state = 356}, + [7545] = {.lex_state = 356}, + [7546] = {.lex_state = 1}, + [7547] = {.lex_state = 353, .external_lex_state = 16}, + [7548] = {.lex_state = 353, .external_lex_state = 16}, + [7549] = {.lex_state = 356}, + [7550] = {.lex_state = 354}, + [7551] = {.lex_state = 353, .external_lex_state = 16}, + [7552] = {.lex_state = 356}, + [7553] = {.lex_state = 353, .external_lex_state = 18}, + [7554] = {.lex_state = 353}, + [7555] = {.lex_state = 353}, + [7556] = {.lex_state = 356}, + [7557] = {.lex_state = 356}, + [7558] = {.lex_state = 353, .external_lex_state = 18}, + [7559] = {.lex_state = 353}, + [7560] = {.lex_state = 353}, + [7561] = {.lex_state = 353, .external_lex_state = 16}, + [7562] = {.lex_state = 356}, + [7563] = {.lex_state = 138}, + [7564] = {.lex_state = 356, .external_lex_state = 22}, + [7565] = {.lex_state = 356}, + [7566] = {.lex_state = 356}, + [7567] = {.lex_state = 353, .external_lex_state = 16}, + [7568] = {.lex_state = 356}, + [7569] = {.lex_state = 353, .external_lex_state = 16}, + [7570] = {.lex_state = 353, .external_lex_state = 23}, + [7571] = {.lex_state = 353, .external_lex_state = 23}, + [7572] = {.lex_state = 356}, + [7573] = {.lex_state = 356, .external_lex_state = 22}, + [7574] = {.lex_state = 356}, + [7575] = {.lex_state = 356}, + [7576] = {.lex_state = 353}, + [7577] = {.lex_state = 353}, + [7578] = {.lex_state = 353}, + [7579] = {.lex_state = 356}, + [7580] = {.lex_state = 353, .external_lex_state = 16}, + [7581] = {.lex_state = 353}, + [7582] = {.lex_state = 353, .external_lex_state = 16}, + [7583] = {.lex_state = 356}, + [7584] = {.lex_state = 1}, + [7585] = {.lex_state = 353, .external_lex_state = 16}, + [7586] = {.lex_state = 353, .external_lex_state = 16}, + [7587] = {.lex_state = 353}, + [7588] = {.lex_state = 353, .external_lex_state = 16}, + [7589] = {.lex_state = 353}, + [7590] = {.lex_state = 353}, + [7591] = {.lex_state = 353}, + [7592] = {.lex_state = 353, .external_lex_state = 16}, + [7593] = {.lex_state = 356}, + [7594] = {.lex_state = 356}, + [7595] = {.lex_state = 356}, + [7596] = {.lex_state = 353}, + [7597] = {.lex_state = 353}, + [7598] = {.lex_state = 353}, + [7599] = {.lex_state = 353, .external_lex_state = 16}, + [7600] = {.lex_state = 353}, + [7601] = {.lex_state = 353, .external_lex_state = 18}, + [7602] = {.lex_state = 356, .external_lex_state = 22}, + [7603] = {.lex_state = 353, .external_lex_state = 18}, + [7604] = {.lex_state = 353}, + [7605] = {.lex_state = 353}, + [7606] = {.lex_state = 353, .external_lex_state = 16}, + [7607] = {.lex_state = 353}, + [7608] = {.lex_state = 353, .external_lex_state = 23}, + [7609] = {.lex_state = 353, .external_lex_state = 23}, + [7610] = {.lex_state = 356}, + [7611] = {.lex_state = 356, .external_lex_state = 22}, + [7612] = {.lex_state = 353}, + [7613] = {.lex_state = 353}, + [7614] = {.lex_state = 353}, + [7615] = {.lex_state = 353}, + [7616] = {.lex_state = 353}, + [7617] = {.lex_state = 353}, + [7618] = {.lex_state = 353}, + [7619] = {.lex_state = 354}, + [7620] = {.lex_state = 356}, + [7621] = {.lex_state = 1}, + [7622] = {.lex_state = 353, .external_lex_state = 16}, + [7623] = {.lex_state = 353, .external_lex_state = 16}, + [7624] = {.lex_state = 356}, + [7625] = {.lex_state = 353}, + [7626] = {.lex_state = 353, .external_lex_state = 16}, + [7627] = {.lex_state = 353}, + [7628] = {.lex_state = 353, .external_lex_state = 16}, + [7629] = {.lex_state = 353, .external_lex_state = 16}, + [7630] = {.lex_state = 356}, + [7631] = {.lex_state = 353}, + [7632] = {.lex_state = 353}, + [7633] = {.lex_state = 353}, + [7634] = {.lex_state = 138}, + [7635] = {.lex_state = 353, .external_lex_state = 16}, + [7636] = {.lex_state = 353, .external_lex_state = 18}, + [7637] = {.lex_state = 353}, + [7638] = {.lex_state = 356, .external_lex_state = 22}, + [7639] = {.lex_state = 353}, + [7640] = {.lex_state = 356}, + [7641] = {.lex_state = 353, .external_lex_state = 18}, + [7642] = {.lex_state = 138}, + [7643] = {.lex_state = 353}, + [7644] = {.lex_state = 353, .external_lex_state = 23}, + [7645] = {.lex_state = 353, .external_lex_state = 23}, + [7646] = {.lex_state = 356}, + [7647] = {.lex_state = 356, .external_lex_state = 22}, + [7648] = {.lex_state = 356}, + [7649] = {.lex_state = 353, .external_lex_state = 16}, + [7650] = {.lex_state = 354}, + [7651] = {.lex_state = 353}, + [7652] = {.lex_state = 353}, + [7653] = {.lex_state = 356}, + [7654] = {.lex_state = 353}, + [7655] = {.lex_state = 353}, + [7656] = {.lex_state = 353}, + [7657] = {.lex_state = 1}, + [7658] = {.lex_state = 353, .external_lex_state = 16}, + [7659] = {.lex_state = 353, .external_lex_state = 16}, + [7660] = {.lex_state = 353}, + [7661] = {.lex_state = 353}, + [7662] = {.lex_state = 353}, + [7663] = {.lex_state = 353}, + [7664] = {.lex_state = 353}, + [7665] = {.lex_state = 353}, + [7666] = {.lex_state = 356}, + [7667] = {.lex_state = 353}, + [7668] = {.lex_state = 353}, + [7669] = {.lex_state = 353}, + [7670] = {.lex_state = 353, .external_lex_state = 16}, + [7671] = {.lex_state = 353, .external_lex_state = 16}, + [7672] = {.lex_state = 353, .external_lex_state = 16}, + [7673] = {.lex_state = 356}, + [7674] = {.lex_state = 356, .external_lex_state = 22}, + [7675] = {.lex_state = 356}, + [7676] = {.lex_state = 353, .external_lex_state = 23}, + [7677] = {.lex_state = 353, .external_lex_state = 23}, + [7678] = {.lex_state = 356}, + [7679] = {.lex_state = 356}, + [7680] = {.lex_state = 356}, + [7681] = {.lex_state = 353}, + [7682] = {.lex_state = 353}, + [7683] = {.lex_state = 353}, + [7684] = {.lex_state = 353}, + [7685] = {.lex_state = 354}, + [7686] = {.lex_state = 353}, + [7687] = {.lex_state = 353, .external_lex_state = 18}, + [7688] = {.lex_state = 353}, + [7689] = {.lex_state = 353, .external_lex_state = 23}, + [7690] = {.lex_state = 353, .external_lex_state = 23}, + [7691] = {.lex_state = 356}, + [7692] = {.lex_state = 353}, + [7693] = {.lex_state = 353}, + [7694] = {.lex_state = 353}, + [7695] = {.lex_state = 356}, + [7696] = {.lex_state = 354}, + [7697] = {.lex_state = 138}, + [7698] = {.lex_state = 353}, + [7699] = {.lex_state = 353, .external_lex_state = 23}, + [7700] = {.lex_state = 353, .external_lex_state = 23}, + [7701] = {.lex_state = 356}, + [7702] = {.lex_state = 353}, + [7703] = {.lex_state = 353}, + [7704] = {.lex_state = 353}, + [7705] = {.lex_state = 354}, + [7706] = {.lex_state = 353}, + [7707] = {.lex_state = 353}, + [7708] = {.lex_state = 138}, + [7709] = {.lex_state = 353, .external_lex_state = 23}, + [7710] = {.lex_state = 353, .external_lex_state = 23}, + [7711] = {.lex_state = 356}, + [7712] = {.lex_state = 353}, + [7713] = {.lex_state = 356}, + [7714] = {.lex_state = 353}, + [7715] = {.lex_state = 1}, + [7716] = {.lex_state = 356}, + [7717] = {.lex_state = 356}, + [7718] = {.lex_state = 353, .external_lex_state = 23}, + [7719] = {.lex_state = 353, .external_lex_state = 23}, + [7720] = {.lex_state = 356}, + [7721] = {.lex_state = 356}, + [7722] = {.lex_state = 353}, + [7723] = {.lex_state = 353, .external_lex_state = 16}, + [7724] = {.lex_state = 353}, + [7725] = {.lex_state = 353}, + [7726] = {.lex_state = 353, .external_lex_state = 23}, + [7727] = {.lex_state = 353, .external_lex_state = 23}, + [7728] = {.lex_state = 356}, + [7729] = {.lex_state = 356}, + [7730] = {.lex_state = 353, .external_lex_state = 16}, + [7731] = {.lex_state = 353, .external_lex_state = 23}, + [7732] = {.lex_state = 353, .external_lex_state = 23}, + [7733] = {.lex_state = 356}, + [7734] = {.lex_state = 356}, + [7735] = {.lex_state = 356}, + [7736] = {.lex_state = 353, .external_lex_state = 23}, + [7737] = {.lex_state = 353, .external_lex_state = 23}, + [7738] = {.lex_state = 356}, + [7739] = {.lex_state = 353, .external_lex_state = 18}, + [7740] = {.lex_state = 353}, + [7741] = {.lex_state = 353, .external_lex_state = 23}, + [7742] = {.lex_state = 353, .external_lex_state = 23}, + [7743] = {.lex_state = 353, .external_lex_state = 16}, + [7744] = {.lex_state = 353, .external_lex_state = 18}, + [7745] = {.lex_state = 356}, + [7746] = {.lex_state = 353, .external_lex_state = 23}, + [7747] = {.lex_state = 353, .external_lex_state = 23}, + [7748] = {.lex_state = 353}, + [7749] = {.lex_state = 353}, + [7750] = {.lex_state = 353, .external_lex_state = 16}, + [7751] = {.lex_state = 353}, + [7752] = {.lex_state = 353, .external_lex_state = 16}, + [7753] = {.lex_state = 356}, + [7754] = {.lex_state = 356}, + [7755] = {.lex_state = 353}, + [7756] = {.lex_state = 353}, + [7757] = {.lex_state = 353, .external_lex_state = 16}, + [7758] = {.lex_state = 353}, + [7759] = {.lex_state = 354}, + [7760] = {.lex_state = 353}, + [7761] = {.lex_state = 353}, + [7762] = {.lex_state = 353, .external_lex_state = 16}, + [7763] = {.lex_state = 353}, + [7764] = {.lex_state = 353}, + [7765] = {.lex_state = 353}, + [7766] = {.lex_state = 353, .external_lex_state = 18}, + [7767] = {.lex_state = 353, .external_lex_state = 18}, + [7768] = {.lex_state = 353}, + [7769] = {.lex_state = 353, .external_lex_state = 16}, + [7770] = {.lex_state = 353}, + [7771] = {.lex_state = 138}, + [7772] = {.lex_state = 353, .external_lex_state = 18}, + [7773] = {.lex_state = 353}, + [7774] = {.lex_state = 353}, + [7775] = {.lex_state = 356}, + [7776] = {.lex_state = 356}, + [7777] = {.lex_state = 353}, + [7778] = {.lex_state = 353}, + [7779] = {.lex_state = 353, .external_lex_state = 16}, + [7780] = {.lex_state = 353, .external_lex_state = 16}, + [7781] = {.lex_state = 353, .external_lex_state = 16}, + [7782] = {.lex_state = 353}, + [7783] = {.lex_state = 353}, + [7784] = {.lex_state = 353, .external_lex_state = 16}, + [7785] = {.lex_state = 353, .external_lex_state = 18}, + [7786] = {.lex_state = 138}, + [7787] = {.lex_state = 353}, + [7788] = {.lex_state = 353}, + [7789] = {.lex_state = 353}, + [7790] = {.lex_state = 354}, + [7791] = {.lex_state = 353}, + [7792] = {.lex_state = 356}, + [7793] = {.lex_state = 353, .external_lex_state = 18}, + [7794] = {.lex_state = 353}, + [7795] = {.lex_state = 353}, + [7796] = {.lex_state = 353}, + [7797] = {.lex_state = 353}, + [7798] = {.lex_state = 353}, + [7799] = {.lex_state = 353, .external_lex_state = 16}, + [7800] = {.lex_state = 353}, + [7801] = {.lex_state = 353, .external_lex_state = 16}, + [7802] = {.lex_state = 356}, + [7803] = {.lex_state = 356}, + [7804] = {.lex_state = 356}, + [7805] = {.lex_state = 353}, + [7806] = {.lex_state = 354}, + [7807] = {.lex_state = 353}, + [7808] = {.lex_state = 353}, + [7809] = {.lex_state = 353, .external_lex_state = 20}, + [7810] = {.lex_state = 356}, + [7811] = {.lex_state = 356}, + [7812] = {.lex_state = 356}, + [7813] = {.lex_state = 353}, + [7814] = {.lex_state = 353}, + [7815] = {.lex_state = 356}, + [7816] = {.lex_state = 138}, + [7817] = {.lex_state = 353, .external_lex_state = 20}, + [7818] = {.lex_state = 353, .external_lex_state = 20}, + [7819] = {.lex_state = 353, .external_lex_state = 20}, + [7820] = {.lex_state = 353, .external_lex_state = 20}, + [7821] = {.lex_state = 353}, + [7822] = {.lex_state = 353}, + [7823] = {.lex_state = 354}, + [7824] = {.lex_state = 353}, + [7825] = {.lex_state = 353}, + [7826] = {.lex_state = 356}, + [7827] = {.lex_state = 353}, + [7828] = {.lex_state = 353, .external_lex_state = 20}, + [7829] = {.lex_state = 1}, + [7830] = {.lex_state = 356}, + [7831] = {.lex_state = 356}, + [7832] = {.lex_state = 353}, + [7833] = {.lex_state = 353, .external_lex_state = 20}, + [7834] = {.lex_state = 356}, + [7835] = {.lex_state = 353}, + [7836] = {.lex_state = 353, .external_lex_state = 20}, + [7837] = {.lex_state = 354}, + [7838] = {.lex_state = 353}, + [7839] = {.lex_state = 353}, + [7840] = {.lex_state = 353}, + [7841] = {.lex_state = 353, .external_lex_state = 20}, + [7842] = {.lex_state = 356}, + [7843] = {.lex_state = 353, .external_lex_state = 20}, + [7844] = {.lex_state = 356}, + [7845] = {.lex_state = 356}, + [7846] = {.lex_state = 356}, + [7847] = {.lex_state = 353, .external_lex_state = 20}, + [7848] = {.lex_state = 353}, + [7849] = {.lex_state = 138}, + [7850] = {.lex_state = 356}, + [7851] = {.lex_state = 353, .external_lex_state = 20}, + [7852] = {.lex_state = 353}, + [7853] = {.lex_state = 353}, + [7854] = {.lex_state = 353}, + [7855] = {.lex_state = 356}, + [7856] = {.lex_state = 353}, + [7857] = {.lex_state = 353, .external_lex_state = 16}, + [7858] = {.lex_state = 356}, + [7859] = {.lex_state = 157}, + [7860] = {.lex_state = 353}, + [7861] = {.lex_state = 353}, + [7862] = {.lex_state = 353, .external_lex_state = 16}, + [7863] = {.lex_state = 356}, + [7864] = {.lex_state = 356}, + [7865] = {.lex_state = 353}, + [7866] = {.lex_state = 353}, + [7867] = {.lex_state = 353}, + [7868] = {.lex_state = 353}, + [7869] = {.lex_state = 353}, + [7870] = {.lex_state = 353}, + [7871] = {.lex_state = 353}, + [7872] = {.lex_state = 353}, + [7873] = {.lex_state = 354}, + [7874] = {.lex_state = 353}, + [7875] = {.lex_state = 356}, + [7876] = {.lex_state = 353, .external_lex_state = 20}, + [7877] = {.lex_state = 356}, + [7878] = {.lex_state = 356}, + [7879] = {.lex_state = 356}, + [7880] = {.lex_state = 356}, + [7881] = {.lex_state = 138}, + [7882] = {.lex_state = 353, .external_lex_state = 18}, + [7883] = {.lex_state = 353}, + [7884] = {.lex_state = 353, .external_lex_state = 20}, + [7885] = {.lex_state = 353, .external_lex_state = 20}, + [7886] = {.lex_state = 353, .external_lex_state = 20}, + [7887] = {.lex_state = 353, .external_lex_state = 20}, + [7888] = {.lex_state = 354}, + [7889] = {.lex_state = 353}, + [7890] = {.lex_state = 138}, + [7891] = {.lex_state = 353}, + [7892] = {.lex_state = 353, .external_lex_state = 18}, + [7893] = {.lex_state = 353, .external_lex_state = 16}, + [7894] = {.lex_state = 353}, + [7895] = {.lex_state = 353, .external_lex_state = 20}, + [7896] = {.lex_state = 353, .external_lex_state = 18}, + [7897] = {.lex_state = 1}, + [7898] = {.lex_state = 356}, + [7899] = {.lex_state = 353}, + [7900] = {.lex_state = 353, .external_lex_state = 20}, + [7901] = {.lex_state = 356}, + [7902] = {.lex_state = 1}, + [7903] = {.lex_state = 353, .external_lex_state = 20}, + [7904] = {.lex_state = 353, .external_lex_state = 18}, + [7905] = {.lex_state = 353}, + [7906] = {.lex_state = 353}, + [7907] = {.lex_state = 356}, + [7908] = {.lex_state = 353, .external_lex_state = 20}, + [7909] = {.lex_state = 356}, + [7910] = {.lex_state = 353, .external_lex_state = 20}, + [7911] = {.lex_state = 138}, + [7912] = {.lex_state = 353}, + [7913] = {.lex_state = 356}, + [7914] = {.lex_state = 353, .external_lex_state = 20}, + [7915] = {.lex_state = 353}, + [7916] = {.lex_state = 353, .external_lex_state = 18}, + [7917] = {.lex_state = 353, .external_lex_state = 20}, + [7918] = {.lex_state = 353}, + [7919] = {.lex_state = 353, .external_lex_state = 18}, + [7920] = {.lex_state = 353}, + [7921] = {.lex_state = 356}, + [7922] = {.lex_state = 353, .external_lex_state = 18}, + [7923] = {.lex_state = 353, .external_lex_state = 16}, + [7924] = {.lex_state = 356}, + [7925] = {.lex_state = 157}, + [7926] = {.lex_state = 353, .external_lex_state = 18}, + [7927] = {.lex_state = 353}, + [7928] = {.lex_state = 353, .external_lex_state = 18}, + [7929] = {.lex_state = 353, .external_lex_state = 18}, + [7930] = {.lex_state = 353, .external_lex_state = 18}, + [7931] = {.lex_state = 353}, + [7932] = {.lex_state = 353, .external_lex_state = 20}, + [7933] = {.lex_state = 356}, + [7934] = {.lex_state = 356}, + [7935] = {.lex_state = 356}, + [7936] = {.lex_state = 353, .external_lex_state = 18}, + [7937] = {.lex_state = 353, .external_lex_state = 18}, + [7938] = {.lex_state = 353, .external_lex_state = 18}, + [7939] = {.lex_state = 353, .external_lex_state = 20}, + [7940] = {.lex_state = 353, .external_lex_state = 20}, + [7941] = {.lex_state = 353, .external_lex_state = 20}, + [7942] = {.lex_state = 353, .external_lex_state = 20}, + [7943] = {.lex_state = 353, .external_lex_state = 18}, + [7944] = {.lex_state = 353, .external_lex_state = 18}, + [7945] = {.lex_state = 353, .external_lex_state = 18}, + [7946] = {.lex_state = 356, .external_lex_state = 22}, + [7947] = {.lex_state = 353, .external_lex_state = 16}, + [7948] = {.lex_state = 353}, + [7949] = {.lex_state = 353, .external_lex_state = 20}, + [7950] = {.lex_state = 356}, + [7951] = {.lex_state = 353, .external_lex_state = 16}, + [7952] = {.lex_state = 356}, + [7953] = {.lex_state = 356}, + [7954] = {.lex_state = 353, .external_lex_state = 20}, + [7955] = {.lex_state = 356}, + [7956] = {.lex_state = 353}, + [7957] = {.lex_state = 353, .external_lex_state = 20}, + [7958] = {.lex_state = 353}, + [7959] = {.lex_state = 353}, + [7960] = {.lex_state = 353}, + [7961] = {.lex_state = 353}, + [7962] = {.lex_state = 353, .external_lex_state = 20}, + [7963] = {.lex_state = 353}, + [7964] = {.lex_state = 138}, + [7965] = {.lex_state = 356}, + [7966] = {.lex_state = 353, .external_lex_state = 20}, + [7967] = {.lex_state = 353}, + [7968] = {.lex_state = 353}, + [7969] = {.lex_state = 353, .external_lex_state = 20}, + [7970] = {.lex_state = 353}, + [7971] = {.lex_state = 353, .external_lex_state = 16}, + [7972] = {.lex_state = 353}, + [7973] = {.lex_state = 356}, + [7974] = {.lex_state = 1}, + [7975] = {.lex_state = 353, .external_lex_state = 16}, + [7976] = {.lex_state = 356}, + [7977] = {.lex_state = 157}, + [7978] = {.lex_state = 138}, + [7979] = {.lex_state = 353}, + [7980] = {.lex_state = 356}, + [7981] = {.lex_state = 353}, + [7982] = {.lex_state = 356}, + [7983] = {.lex_state = 353, .external_lex_state = 20}, + [7984] = {.lex_state = 356}, + [7985] = {.lex_state = 356}, + [7986] = {.lex_state = 138}, + [7987] = {.lex_state = 353}, + [7988] = {.lex_state = 353}, + [7989] = {.lex_state = 353, .external_lex_state = 20}, + [7990] = {.lex_state = 353, .external_lex_state = 20}, + [7991] = {.lex_state = 356}, + [7992] = {.lex_state = 353, .external_lex_state = 16}, + [7993] = {.lex_state = 353, .external_lex_state = 16}, + [7994] = {.lex_state = 353}, + [7995] = {.lex_state = 353}, + [7996] = {.lex_state = 1}, + [7997] = {.lex_state = 353}, + [7998] = {.lex_state = 356}, + [7999] = {.lex_state = 353}, + [8000] = {.lex_state = 356}, + [8001] = {.lex_state = 353}, + [8002] = {.lex_state = 353}, + [8003] = {.lex_state = 353, .external_lex_state = 20}, + [8004] = {.lex_state = 353}, + [8005] = {.lex_state = 353}, + [8006] = {.lex_state = 356}, + [8007] = {.lex_state = 353, .external_lex_state = 20}, + [8008] = {.lex_state = 356}, + [8009] = {.lex_state = 356}, + [8010] = {.lex_state = 353}, + [8011] = {.lex_state = 353, .external_lex_state = 16}, + [8012] = {.lex_state = 356}, + [8013] = {.lex_state = 353}, + [8014] = {.lex_state = 356}, + [8015] = {.lex_state = 356}, + [8016] = {.lex_state = 356}, + [8017] = {.lex_state = 356}, + [8018] = {.lex_state = 353, .external_lex_state = 20}, + [8019] = {.lex_state = 356}, + [8020] = {.lex_state = 356}, + [8021] = {.lex_state = 356}, + [8022] = {.lex_state = 356}, + [8023] = {.lex_state = 356}, + [8024] = {.lex_state = 353, .external_lex_state = 20}, + [8025] = {.lex_state = 356}, + [8026] = {.lex_state = 353, .external_lex_state = 18}, + [8027] = {.lex_state = 353}, + [8028] = {.lex_state = 138}, + [8029] = {.lex_state = 353}, + [8030] = {.lex_state = 353}, + [8031] = {.lex_state = 356}, + [8032] = {.lex_state = 356}, + [8033] = {.lex_state = 353}, + [8034] = {.lex_state = 356}, + [8035] = {.lex_state = 353}, + [8036] = {.lex_state = 138}, + [8037] = {.lex_state = 353, .external_lex_state = 20}, + [8038] = {.lex_state = 356}, + [8039] = {.lex_state = 353}, + [8040] = {.lex_state = 356}, + [8041] = {.lex_state = 353, .external_lex_state = 20}, + [8042] = {.lex_state = 353}, + [8043] = {.lex_state = 353}, + [8044] = {.lex_state = 353, .external_lex_state = 18}, + [8045] = {.lex_state = 356}, + [8046] = {.lex_state = 356}, + [8047] = {.lex_state = 356}, + [8048] = {.lex_state = 138}, + [8049] = {.lex_state = 353, .external_lex_state = 18}, + [8050] = {.lex_state = 353}, + [8051] = {.lex_state = 353, .external_lex_state = 20}, + [8052] = {.lex_state = 356}, + [8053] = {.lex_state = 356}, + [8054] = {.lex_state = 353}, + [8055] = {.lex_state = 353}, + [8056] = {.lex_state = 353}, + [8057] = {.lex_state = 353, .external_lex_state = 20}, + [8058] = {.lex_state = 356}, + [8059] = {.lex_state = 353}, + [8060] = {.lex_state = 353}, + [8061] = {.lex_state = 353}, + [8062] = {.lex_state = 157}, + [8063] = {.lex_state = 157}, + [8064] = {.lex_state = 353}, + [8065] = {.lex_state = 356}, + [8066] = {.lex_state = 353, .external_lex_state = 16}, + [8067] = {.lex_state = 356}, + [8068] = {.lex_state = 353, .external_lex_state = 16}, + [8069] = {.lex_state = 353}, + [8070] = {.lex_state = 353, .external_lex_state = 20}, + [8071] = {.lex_state = 353, .external_lex_state = 18}, + [8072] = {.lex_state = 356}, + [8073] = {.lex_state = 356}, + [8074] = {.lex_state = 353, .external_lex_state = 20}, + [8075] = {.lex_state = 353}, + [8076] = {.lex_state = 353}, + [8077] = {.lex_state = 353}, + [8078] = {.lex_state = 356}, + [8079] = {.lex_state = 353, .external_lex_state = 16}, + [8080] = {.lex_state = 356}, + [8081] = {.lex_state = 353}, + [8082] = {.lex_state = 353}, + [8083] = {.lex_state = 353}, + [8084] = {.lex_state = 353, .external_lex_state = 20}, + [8085] = {.lex_state = 356}, + [8086] = {.lex_state = 356}, + [8087] = {.lex_state = 353, .external_lex_state = 16}, + [8088] = {.lex_state = 353, .external_lex_state = 16}, + [8089] = {.lex_state = 353}, + [8090] = {.lex_state = 353, .external_lex_state = 20}, + [8091] = {.lex_state = 138}, + [8092] = {.lex_state = 353}, + [8093] = {.lex_state = 354}, + [8094] = {.lex_state = 353, .external_lex_state = 16}, + [8095] = {.lex_state = 356}, + [8096] = {.lex_state = 353}, + [8097] = {.lex_state = 356}, + [8098] = {.lex_state = 356}, + [8099] = {.lex_state = 353}, + [8100] = {.lex_state = 356}, + [8101] = {.lex_state = 356}, + [8102] = {.lex_state = 138}, + [8103] = {.lex_state = 353, .external_lex_state = 20}, + [8104] = {.lex_state = 353, .external_lex_state = 18}, + [8105] = {.lex_state = 353}, + [8106] = {.lex_state = 356}, + [8107] = {.lex_state = 353, .external_lex_state = 20}, + [8108] = {.lex_state = 353, .external_lex_state = 16}, + [8109] = {.lex_state = 353, .external_lex_state = 16}, + [8110] = {.lex_state = 353}, + [8111] = {.lex_state = 356}, + [8112] = {.lex_state = 353}, + [8113] = {.lex_state = 356}, + [8114] = {.lex_state = 353}, + [8115] = {.lex_state = 354}, + [8116] = {.lex_state = 356}, + [8117] = {.lex_state = 353, .external_lex_state = 20}, + [8118] = {.lex_state = 356}, + [8119] = {.lex_state = 356}, + [8120] = {.lex_state = 353, .external_lex_state = 16}, + [8121] = {.lex_state = 353}, + [8122] = {.lex_state = 353}, + [8123] = {.lex_state = 353, .external_lex_state = 20}, + [8124] = {.lex_state = 353}, + [8125] = {.lex_state = 356}, + [8126] = {.lex_state = 356}, + [8127] = {.lex_state = 138}, + [8128] = {.lex_state = 356}, + [8129] = {.lex_state = 353}, + [8130] = {.lex_state = 353}, + [8131] = {.lex_state = 353}, + [8132] = {.lex_state = 353, .external_lex_state = 16}, + [8133] = {.lex_state = 353}, + [8134] = {.lex_state = 353, .external_lex_state = 20}, + [8135] = {.lex_state = 356}, + [8136] = {.lex_state = 356}, + [8137] = {.lex_state = 1}, + [8138] = {.lex_state = 138}, + [8139] = {.lex_state = 356}, + [8140] = {.lex_state = 353, .external_lex_state = 20}, + [8141] = {.lex_state = 138}, + [8142] = {.lex_state = 353, .external_lex_state = 16}, + [8143] = {.lex_state = 353}, + [8144] = {.lex_state = 353}, + [8145] = {.lex_state = 353}, + [8146] = {.lex_state = 356}, + [8147] = {.lex_state = 353}, + [8148] = {.lex_state = 356, .external_lex_state = 22}, + [8149] = {.lex_state = 138}, + [8150] = {.lex_state = 353, .external_lex_state = 20}, + [8151] = {.lex_state = 356}, + [8152] = {.lex_state = 356}, + [8153] = {.lex_state = 353}, + [8154] = {.lex_state = 353, .external_lex_state = 20}, + [8155] = {.lex_state = 353, .external_lex_state = 18}, + [8156] = {.lex_state = 353, .external_lex_state = 20}, + [8157] = {.lex_state = 353, .external_lex_state = 18}, + [8158] = {.lex_state = 356}, + [8159] = {.lex_state = 353}, + [8160] = {.lex_state = 353, .external_lex_state = 16}, + [8161] = {.lex_state = 353}, + [8162] = {.lex_state = 353}, + [8163] = {.lex_state = 353}, + [8164] = {.lex_state = 353}, + [8165] = {.lex_state = 353}, + [8166] = {.lex_state = 353, .external_lex_state = 20}, + [8167] = {.lex_state = 356}, + [8168] = {.lex_state = 356}, + [8169] = {.lex_state = 356}, + [8170] = {.lex_state = 356}, + [8171] = {.lex_state = 354}, + [8172] = {.lex_state = 353, .external_lex_state = 20}, + [8173] = {.lex_state = 353}, + [8174] = {.lex_state = 353}, + [8175] = {.lex_state = 138}, + [8176] = {.lex_state = 353, .external_lex_state = 18}, + [8177] = {.lex_state = 353, .external_lex_state = 20}, + [8178] = {.lex_state = 353}, + [8179] = {.lex_state = 353}, + [8180] = {.lex_state = 353}, + [8181] = {.lex_state = 353, .external_lex_state = 20}, + [8182] = {.lex_state = 356}, + [8183] = {.lex_state = 356}, + [8184] = {.lex_state = 353, .external_lex_state = 20}, + [8185] = {.lex_state = 356}, + [8186] = {.lex_state = 353}, + [8187] = {.lex_state = 353, .external_lex_state = 20}, + [8188] = {.lex_state = 353, .external_lex_state = 20}, + [8189] = {.lex_state = 353}, + [8190] = {.lex_state = 356}, + [8191] = {.lex_state = 138}, + [8192] = {.lex_state = 353}, + [8193] = {.lex_state = 356}, + [8194] = {.lex_state = 353, .external_lex_state = 16}, + [8195] = {.lex_state = 353}, + [8196] = {.lex_state = 356}, + [8197] = {.lex_state = 356}, + [8198] = {.lex_state = 356}, + [8199] = {.lex_state = 353}, + [8200] = {.lex_state = 356}, + [8201] = {.lex_state = 353, .external_lex_state = 20}, + [8202] = {.lex_state = 353, .external_lex_state = 20}, + [8203] = {.lex_state = 353, .external_lex_state = 16}, + [8204] = {.lex_state = 353, .external_lex_state = 16}, + [8205] = {.lex_state = 353, .external_lex_state = 16}, + [8206] = {.lex_state = 353, .external_lex_state = 16}, + [8207] = {.lex_state = 353}, + [8208] = {.lex_state = 353}, + [8209] = {.lex_state = 353, .external_lex_state = 16}, + [8210] = {.lex_state = 356}, + [8211] = {.lex_state = 356}, + [8212] = {.lex_state = 353}, + [8213] = {.lex_state = 353, .external_lex_state = 20}, + [8214] = {.lex_state = 356}, + [8215] = {.lex_state = 353, .external_lex_state = 20}, + [8216] = {.lex_state = 356}, + [8217] = {.lex_state = 353, .external_lex_state = 18}, + [8218] = {.lex_state = 353}, + [8219] = {.lex_state = 356}, + [8220] = {.lex_state = 356}, + [8221] = {.lex_state = 353}, + [8222] = {.lex_state = 353}, + [8223] = {.lex_state = 353, .external_lex_state = 20}, + [8224] = {.lex_state = 353, .external_lex_state = 20}, + [8225] = {.lex_state = 356}, + [8226] = {.lex_state = 138}, + [8227] = {.lex_state = 353, .external_lex_state = 16}, + [8228] = {.lex_state = 353}, + [8229] = {.lex_state = 353}, + [8230] = {.lex_state = 356}, + [8231] = {.lex_state = 353, .external_lex_state = 20}, + [8232] = {.lex_state = 353}, + [8233] = {.lex_state = 353, .external_lex_state = 18}, + [8234] = {.lex_state = 356}, + [8235] = {.lex_state = 138}, + [8236] = {.lex_state = 353}, + [8237] = {.lex_state = 356}, + [8238] = {.lex_state = 353, .external_lex_state = 20}, + [8239] = {.lex_state = 353, .external_lex_state = 20}, + [8240] = {.lex_state = 353}, + [8241] = {.lex_state = 353}, + [8242] = {.lex_state = 353}, + [8243] = {.lex_state = 353, .external_lex_state = 16}, + [8244] = {.lex_state = 353}, + [8245] = {.lex_state = 356}, + [8246] = {.lex_state = 356}, + [8247] = {.lex_state = 356}, + [8248] = {.lex_state = 353}, + [8249] = {.lex_state = 356}, + [8250] = {.lex_state = 353}, + [8251] = {.lex_state = 356}, + [8252] = {.lex_state = 356}, + [8253] = {.lex_state = 353, .external_lex_state = 20}, + [8254] = {.lex_state = 353, .external_lex_state = 20}, + [8255] = {.lex_state = 354}, + [8256] = {.lex_state = 353}, + [8257] = {.lex_state = 138}, + [8258] = {.lex_state = 353, .external_lex_state = 20}, + [8259] = {.lex_state = 353, .external_lex_state = 20}, + [8260] = {.lex_state = 353}, + [8261] = {.lex_state = 356}, + [8262] = {.lex_state = 353}, + [8263] = {.lex_state = 353, .external_lex_state = 20}, + [8264] = {.lex_state = 353, .external_lex_state = 20}, + [8265] = {.lex_state = 353}, + [8266] = {.lex_state = 356}, + [8267] = {.lex_state = 353, .external_lex_state = 20}, + [8268] = {.lex_state = 353, .external_lex_state = 20}, + [8269] = {.lex_state = 353, .external_lex_state = 20}, + [8270] = {.lex_state = 353}, + [8271] = {.lex_state = 353}, + [8272] = {.lex_state = 356}, + [8273] = {.lex_state = 353, .external_lex_state = 20}, + [8274] = {.lex_state = 353, .external_lex_state = 20}, + [8275] = {.lex_state = 353}, + [8276] = {.lex_state = 353}, + [8277] = {.lex_state = 356}, + [8278] = {.lex_state = 353, .external_lex_state = 20}, + [8279] = {.lex_state = 353, .external_lex_state = 20}, + [8280] = {.lex_state = 353}, + [8281] = {.lex_state = 353}, + [8282] = {.lex_state = 353}, + [8283] = {.lex_state = 353, .external_lex_state = 20}, + [8284] = {.lex_state = 353, .external_lex_state = 20}, + [8285] = {.lex_state = 353}, + [8286] = {.lex_state = 138}, + [8287] = {.lex_state = 353, .external_lex_state = 20}, + [8288] = {.lex_state = 353, .external_lex_state = 20}, + [8289] = {.lex_state = 353, .external_lex_state = 20}, + [8290] = {.lex_state = 353, .external_lex_state = 24}, + [8291] = {.lex_state = 598}, + [8292] = {.lex_state = 356}, + [8293] = {.lex_state = 353, .external_lex_state = 20}, + [8294] = {.lex_state = 353, .external_lex_state = 20}, + [8295] = {.lex_state = 353}, + [8296] = {.lex_state = 353}, + [8297] = {.lex_state = 353}, + [8298] = {.lex_state = 356}, + [8299] = {.lex_state = 353}, + [8300] = {.lex_state = 356}, + [8301] = {.lex_state = 138}, + [8302] = {.lex_state = 353, .external_lex_state = 16}, + [8303] = {.lex_state = 353}, + [8304] = {.lex_state = 353}, + [8305] = {.lex_state = 353}, + [8306] = {.lex_state = 353}, + [8307] = {.lex_state = 356}, + [8308] = {.lex_state = 143}, + [8309] = {.lex_state = 353, .external_lex_state = 16}, + [8310] = {.lex_state = 353, .external_lex_state = 16}, + [8311] = {.lex_state = 353, .external_lex_state = 20}, + [8312] = {.lex_state = 356}, + [8313] = {.lex_state = 157}, + [8314] = {.lex_state = 353}, + [8315] = {.lex_state = 353, .external_lex_state = 16}, + [8316] = {.lex_state = 353, .external_lex_state = 16}, + [8317] = {.lex_state = 353}, + [8318] = {.lex_state = 353}, + [8319] = {.lex_state = 356}, + [8320] = {.lex_state = 356}, + [8321] = {.lex_state = 353}, + [8322] = {.lex_state = 353}, + [8323] = {.lex_state = 354}, + [8324] = {.lex_state = 353}, + [8325] = {.lex_state = 353, .external_lex_state = 20}, + [8326] = {.lex_state = 157}, + [8327] = {.lex_state = 353}, + [8328] = {.lex_state = 353}, + [8329] = {.lex_state = 353}, + [8330] = {.lex_state = 353, .external_lex_state = 20}, + [8331] = {.lex_state = 157}, + [8332] = {.lex_state = 353}, + [8333] = {.lex_state = 356}, + [8334] = {.lex_state = 353, .external_lex_state = 20}, + [8335] = {.lex_state = 353, .external_lex_state = 20}, + [8336] = {.lex_state = 356}, + [8337] = {.lex_state = 353}, + [8338] = {.lex_state = 1}, + [8339] = {.lex_state = 353, .external_lex_state = 20}, + [8340] = {.lex_state = 1}, + [8341] = {.lex_state = 1}, + [8342] = {.lex_state = 138}, + [8343] = {.lex_state = 356}, + [8344] = {.lex_state = 138}, + [8345] = {.lex_state = 353}, + [8346] = {.lex_state = 138}, + [8347] = {.lex_state = 353, .external_lex_state = 20}, + [8348] = {.lex_state = 353}, + [8349] = {.lex_state = 1}, + [8350] = {.lex_state = 356}, + [8351] = {.lex_state = 138}, + [8352] = {.lex_state = 353}, + [8353] = {.lex_state = 353}, + [8354] = {.lex_state = 353}, + [8355] = {.lex_state = 353}, + [8356] = {.lex_state = 356, .external_lex_state = 22}, + [8357] = {.lex_state = 354}, + [8358] = {.lex_state = 353}, + [8359] = {.lex_state = 204}, + [8360] = {.lex_state = 353}, + [8361] = {.lex_state = 356}, + [8362] = {.lex_state = 356}, + [8363] = {.lex_state = 353}, + [8364] = {.lex_state = 353}, + [8365] = {.lex_state = 356}, + [8366] = {.lex_state = 353}, + [8367] = {.lex_state = 356}, + [8368] = {.lex_state = 353}, + [8369] = {.lex_state = 1}, + [8370] = {.lex_state = 1}, + [8371] = {.lex_state = 138}, + [8372] = {.lex_state = 157}, + [8373] = {.lex_state = 353}, + [8374] = {.lex_state = 356, .external_lex_state = 22}, + [8375] = {.lex_state = 353}, + [8376] = {.lex_state = 138}, + [8377] = {.lex_state = 353}, + [8378] = {.lex_state = 356}, + [8379] = {.lex_state = 356}, + [8380] = {.lex_state = 353, .external_lex_state = 23}, + [8381] = {.lex_state = 353, .external_lex_state = 23}, + [8382] = {.lex_state = 353}, + [8383] = {.lex_state = 356}, + [8384] = {.lex_state = 353, .external_lex_state = 20}, + [8385] = {.lex_state = 353}, + [8386] = {.lex_state = 353}, + [8387] = {.lex_state = 353, .external_lex_state = 20}, + [8388] = {.lex_state = 353, .external_lex_state = 20}, + [8389] = {.lex_state = 353}, + [8390] = {(TSStateId)(-1)}, + [8391] = {(TSStateId)(-1)}, + [8392] = {(TSStateId)(-1)}, + [8393] = {(TSStateId)(-1)}, + [8394] = {(TSStateId)(-1)}, + [8395] = {(TSStateId)(-1)}, + [8396] = {(TSStateId)(-1)}, + [8397] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -32163,6 +34482,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_PIPE] = ACTIONS(1), [anon_sym_PIPE_RBRACK] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_LT_AT] = ACTIONS(1), + [anon_sym_AT_GT] = ACTIONS(1), + [anon_sym_LT_AT_AT] = ACTIONS(1), + [anon_sym_AT_AT_GT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_LBRACE_PIPE] = ACTIONS(1), [anon_sym_PIPE_RBRACE] = ACTIONS(1), @@ -32175,10 +34499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(1), [anon_sym_upcast] = ACTIONS(1), [anon_sym_downcast] = ACTIONS(1), - [anon_sym_LT_AT] = ACTIONS(1), - [anon_sym_AT_GT] = ACTIONS(1), - [anon_sym_LT_AT_AT] = ACTIONS(1), - [anon_sym_AT_AT_GT] = ACTIONS(1), [anon_sym_COLON_GT] = ACTIONS(1), [anon_sym_COLON_QMARK_GT] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), @@ -32200,7 +34520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1), [anon_sym_LT_DASH] = ACTIONS(1), [anon_sym_DOT_LBRACK] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_use] = ACTIONS(1), @@ -32307,90 +34626,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_file] = STATE(7781), - [sym_namespace] = STATE(6140), - [sym_named_module] = STATE(7779), - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5493), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_file] = STATE(8377), + [sym_namespace] = STATE(6575), + [sym_named_module] = STATE(8375), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5901), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(1), [sym_block_comment] = STATE(1), [sym_line_comment] = STATE(1), [sym_compiler_directive_decl] = STATE(1), [sym_fsi_directive_decl] = STATE(1), [sym_preproc_line] = STATE(1), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat1] = STATE(5707), - [aux_sym_file_repeat2] = STATE(356), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat1] = STATE(6191), + [aux_sym_file_repeat2] = STATE(412), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), [ts_builtin_sym_end] = ACTIONS(15), [sym_identifier] = ACTIONS(17), [anon_sym_namespace] = ACTIONS(19), @@ -32408,17 +34728,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -32448,129 +34768,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(117), }, [2] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(2), [sym_block_comment] = STATE(2), [sym_line_comment] = STATE(2), [sym_compiler_directive_decl] = STATE(2), [sym_fsi_directive_decl] = STATE(2), [sym_preproc_line] = STATE(2), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT_RBRACK] = ACTIONS(123), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(123), [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(151), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(151), - [anon_sym_downto] = ACTIONS(151), + [anon_sym_to] = ACTIONS(147), + [anon_sym_downto] = ACTIONS(147), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -32580,39 +34900,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(151), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(147), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -32623,119 +34942,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(121), + [sym__newline] = ACTIONS(123), }, [3] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(3), [sym_block_comment] = STATE(3), [sym_line_comment] = STATE(3), [sym_compiler_directive_decl] = STATE(3), [sym_fsi_directive_decl] = STATE(3), [sym_preproc_line] = STATE(3), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), [anon_sym_GT_RBRACK] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_RBRACK] = ACTIONS(219), [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(221), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(221), - [anon_sym_downto] = ACTIONS(221), + [anon_sym_to] = ACTIONS(223), + [anon_sym_downto] = ACTIONS(223), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -32745,39 +35064,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(221), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -32788,284 +35106,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(219), + [sym__newline] = ACTIONS(225), }, [4] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(4), [sym_block_comment] = STATE(4), [sym_line_comment] = STATE(4), [sym_compiler_directive_decl] = STATE(4), [sym_fsi_directive_decl] = STATE(4), [sym_preproc_line] = STATE(4), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(225), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(225), - [anon_sym_downto] = ACTIONS(225), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_GT_RBRACK] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_with] = ACTIONS(227), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_to] = ACTIONS(227), + [anon_sym_downto] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(225), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_end] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [5] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(5), [sym_block_comment] = STATE(5), [sym_line_comment] = STATE(5), [sym_compiler_directive_decl] = STATE(5), [sym_fsi_directive_decl] = STATE(5), [sym_preproc_line] = STATE(5), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT_RBRACK] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_RBRACK] = ACTIONS(231), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(229), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(233), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(229), - [anon_sym_downto] = ACTIONS(229), + [anon_sym_to] = ACTIONS(233), + [anon_sym_downto] = ACTIONS(233), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -33075,39 +35392,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(229), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(233), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -33118,449 +35434,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [6] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(6), [sym_block_comment] = STATE(6), [sym_line_comment] = STATE(6), [sym_compiler_directive_decl] = STATE(6), [sym_fsi_directive_decl] = STATE(6), [sym_preproc_line] = STATE(6), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT_RBRACK] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(237), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), [anon_sym_with] = ACTIONS(235), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), [anon_sym_to] = ACTIONS(235), [anon_sym_downto] = ACTIONS(235), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), [anon_sym_end] = ACTIONS(235), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [7] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(7), [sym_block_comment] = STATE(7), [sym_line_comment] = STATE(7), [sym_compiler_directive_decl] = STATE(7), [sym_fsi_directive_decl] = STATE(7), [sym_preproc_line] = STATE(7), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_GT_RBRACK] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(239), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(239), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_with] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_to] = ACTIONS(237), - [anon_sym_downto] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_GT_RBRACK] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_to] = ACTIONS(239), + [anon_sym_downto] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_end] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_end] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [8] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(8), [sym_block_comment] = STATE(8), [sym_line_comment] = STATE(8), [sym_compiler_directive_decl] = STATE(8), [sym_fsi_directive_decl] = STATE(8), [sym_preproc_line] = STATE(8), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT_RBRACK] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(243), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(243), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(245), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(243), - [anon_sym_downto] = ACTIONS(243), + [anon_sym_to] = ACTIONS(245), + [anon_sym_downto] = ACTIONS(245), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -33570,39 +35884,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(243), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(245), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -33613,448 +35926,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(243), }, [9] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(9), [sym_block_comment] = STATE(9), [sym_line_comment] = STATE(9), [sym_compiler_directive_decl] = STATE(9), [sym_fsi_directive_decl] = STATE(9), [sym_preproc_line] = STATE(9), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), [anon_sym_GT_RBRACK] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_with] = ACTIONS(245), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_to] = ACTIONS(245), - [anon_sym_downto] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(249), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(249), + [anon_sym_downto] = ACTIONS(249), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_end] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [10] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(10), [sym_block_comment] = STATE(10), [sym_line_comment] = STATE(10), [sym_compiler_directive_decl] = STATE(10), [sym_fsi_directive_decl] = STATE(10), [sym_preproc_line] = STATE(10), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), [anon_sym_GT_RBRACK] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_RBRACK] = ACTIONS(251), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_to] = ACTIONS(249), - [anon_sym_downto] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(253), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(253), + [anon_sym_downto] = ACTIONS(253), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_end] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(253), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), [sym__newline] = ACTIONS(251), }, [11] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(11), [sym_block_comment] = STATE(11), [sym_line_comment] = STATE(11), [sym_compiler_directive_decl] = STATE(11), [sym_fsi_directive_decl] = STATE(11), [sym_preproc_line] = STATE(11), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), [ts_builtin_sym_end] = ACTIONS(241), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(243), - [anon_sym_module] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(243), + [sym_identifier] = ACTIONS(239), + [anon_sym_namespace] = ACTIONS(239), + [anon_sym_module] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_open] = ACTIONS(239), [anon_sym_LBRACK_LT] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(243), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(241), + [anon_sym_POUNDload] = ACTIONS(241), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + }, + [12] = { + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(12), + [sym_block_comment] = STATE(12), + [sym_line_comment] = STATE(12), + [sym_compiler_directive_decl] = STATE(12), + [sym_fsi_directive_decl] = STATE(12), + [sym_preproc_line] = STATE(12), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(123), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(147), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(123), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(147), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -34063,16 +36537,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -34082,307 +36555,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(241), - [anon_sym_POUNDload] = ACTIONS(241), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(295), - }, - [12] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(12), - [sym_block_comment] = STATE(12), - [sym_line_comment] = STATE(12), - [sym_compiler_directive_decl] = STATE(12), - [sym_fsi_directive_decl] = STATE(12), - [sym_preproc_line] = STATE(12), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(247), - [sym_identifier] = ACTIONS(245), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_module] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_open] = ACTIONS(245), - [anon_sym_LBRACK_LT] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_type] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(247), - [anon_sym_POUNDload] = ACTIONS(247), + [anon_sym_POUNDr] = ACTIONS(123), + [anon_sym_POUNDload] = ACTIONS(123), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(123), }, [13] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(13), [sym_block_comment] = STATE(13), [sym_line_comment] = STATE(13), [sym_compiler_directive_decl] = STATE(13), [sym_fsi_directive_decl] = STATE(13), [sym_preproc_line] = STATE(13), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(219), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(247), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(221), - [anon_sym_module] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(221), - [anon_sym_LBRACK_LT] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(221), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_module] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(249), + [anon_sym_LBRACK_LT] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(249), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -34391,16 +36700,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -34410,307 +36718,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(219), - [anon_sym_POUNDload] = ACTIONS(219), + [anon_sym_POUNDr] = ACTIONS(247), + [anon_sym_POUNDload] = ACTIONS(247), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(295), }, [14] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(14), [sym_block_comment] = STATE(14), [sym_line_comment] = STATE(14), [sym_compiler_directive_decl] = STATE(14), [sym_fsi_directive_decl] = STATE(14), [sym_preproc_line] = STATE(14), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(237), - [anon_sym_module] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_open] = ACTIONS(237), - [anon_sym_LBRACK_LT] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_type] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(239), - [anon_sym_POUNDload] = ACTIONS(239), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_namespace] = ACTIONS(235), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_type] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(237), + [anon_sym_POUNDload] = ACTIONS(237), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [15] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(15), [sym_block_comment] = STATE(15), [sym_line_comment] = STATE(15), [sym_compiler_directive_decl] = STATE(15), [sym_fsi_directive_decl] = STATE(15), [sym_preproc_line] = STATE(15), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(121), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(219), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_module] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(151), - [anon_sym_LBRACK_LT] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(151), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(223), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -34719,16 +37026,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -34738,143 +37044,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(121), - [anon_sym_POUNDload] = ACTIONS(121), + [anon_sym_POUNDr] = ACTIONS(219), + [anon_sym_POUNDload] = ACTIONS(219), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(295), }, [16] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(16), [sym_block_comment] = STATE(16), [sym_line_comment] = STATE(16), [sym_compiler_directive_decl] = STATE(16), [sym_fsi_directive_decl] = STATE(16), [sym_preproc_line] = STATE(16), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(233), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(251), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(235), - [anon_sym_module] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(235), - [anon_sym_LBRACK_LT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(235), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(253), + [anon_sym_module] = ACTIONS(253), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(253), + [anon_sym_LBRACK_LT] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(253), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -34883,16 +37189,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -34902,143 +37207,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(233), - [anon_sym_POUNDload] = ACTIONS(233), + [anon_sym_POUNDr] = ACTIONS(251), + [anon_sym_POUNDload] = ACTIONS(251), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(295), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(251), }, [17] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(17), [sym_block_comment] = STATE(17), [sym_line_comment] = STATE(17), [sym_compiler_directive_decl] = STATE(17), [sym_fsi_directive_decl] = STATE(17), [sym_preproc_line] = STATE(17), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(297), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(243), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(299), - [anon_sym_module] = ACTIONS(299), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(299), - [anon_sym_LBRACK_LT] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(299), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(245), + [anon_sym_module] = ACTIONS(245), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(245), + [anon_sym_LBRACK_LT] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(245), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -35047,16 +37352,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -35066,307 +37370,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(297), - [anon_sym_POUNDload] = ACTIONS(297), + [anon_sym_POUNDr] = ACTIONS(243), + [anon_sym_POUNDload] = ACTIONS(243), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(295), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(243), }, [18] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(18), [sym_block_comment] = STATE(18), [sym_line_comment] = STATE(18), [sym_compiler_directive_decl] = STATE(18), [sym_fsi_directive_decl] = STATE(18), [sym_preproc_line] = STATE(18), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(251), - [sym_identifier] = ACTIONS(249), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_module] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_open] = ACTIONS(249), - [anon_sym_LBRACK_LT] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_type] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(251), - [anon_sym_POUNDload] = ACTIONS(251), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - }, - [19] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(19), - [sym_block_comment] = STATE(19), - [sym_line_comment] = STATE(19), - [sym_compiler_directive_decl] = STATE(19), - [sym_fsi_directive_decl] = STATE(19), - [sym_preproc_line] = STATE(19), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(227), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(231), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(229), - [anon_sym_module] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(229), - [anon_sym_LBRACK_LT] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(229), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(233), + [anon_sym_module] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(233), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(233), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -35375,16 +37515,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -35394,143 +37533,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(227), - [anon_sym_POUNDload] = ACTIONS(227), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(291), [sym__newline] = ACTIONS(295), }, + [19] = { + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(19), + [sym_block_comment] = STATE(19), + [sym_line_comment] = STATE(19), + [sym_compiler_directive_decl] = STATE(19), + [sym_fsi_directive_decl] = STATE(19), + [sym_preproc_line] = STATE(19), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_identifier] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(227), + [anon_sym_module] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_open] = ACTIONS(227), + [anon_sym_LBRACK_LT] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(229), + [anon_sym_POUNDload] = ACTIONS(229), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), + }, [20] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(14), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_infix_op] = STATE(681), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(19), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(854), + [sym_infix_op] = STATE(707), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(20), [sym_block_comment] = STATE(20), [sym_line_comment] = STATE(20), [sym_compiler_directive_decl] = STATE(20), [sym_fsi_directive_decl] = STATE(20), [sym_preproc_line] = STATE(20), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1138), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(223), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1208), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(297), [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(225), - [anon_sym_module] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(225), - [anon_sym_LBRACK_LT] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(225), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(299), + [anon_sym_LBRACK_LT] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(299), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(267), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -35539,16 +37841,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(273), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_LT_DASH] = ACTIONS(277), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -35558,322 +37859,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(223), - [anon_sym_POUNDload] = ACTIONS(223), + [anon_sym_POUNDr] = ACTIONS(297), + [anon_sym_POUNDload] = ACTIONS(297), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(295), }, [21] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(21), [sym_block_comment] = STATE(21), [sym_line_comment] = STATE(21), [sym_compiler_directive_decl] = STATE(21), [sym_fsi_directive_decl] = STATE(21), [sym_preproc_line] = STATE(21), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_module] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_open] = ACTIONS(237), - [anon_sym_LBRACK_LT] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_type] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(239), - [anon_sym_POUNDload] = ACTIONS(239), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), - [sym__dedent] = ACTIONS(239), - }, - [22] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), - [sym_xml_doc] = STATE(22), - [sym_block_comment] = STATE(22), - [sym_line_comment] = STATE(22), - [sym_compiler_directive_decl] = STATE(22), - [sym_fsi_directive_decl] = STATE(22), - [sym_preproc_line] = STATE(22), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(243), - [anon_sym_LBRACK_LT] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(243), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(325), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(299), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(299), + [anon_sym_LBRACK_LT] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(299), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), [anon_sym_begin] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(365), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), [anon_sym_DQUOTE] = ACTIONS(369), @@ -35884,468 +38021,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(377), [anon_sym_LPAREN_PIPE] = ACTIONS(379), [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(241), - [anon_sym_POUNDload] = ACTIONS(241), + [anon_sym_POUNDr] = ACTIONS(297), + [anon_sym_POUNDload] = ACTIONS(297), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(241), + [sym__dedent] = ACTIONS(297), + }, + [22] = { + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), + [sym_xml_doc] = STATE(22), + [sym_block_comment] = STATE(22), + [sym_line_comment] = STATE(22), + [sym_compiler_directive_decl] = STATE(22), + [sym_fsi_directive_decl] = STATE(22), + [sym_preproc_line] = STATE(22), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_type] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(237), + [anon_sym_POUNDload] = ACTIONS(237), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), + [sym__dedent] = ACTIONS(237), }, [23] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(23), [sym_block_comment] = STATE(23), [sym_line_comment] = STATE(23), [sym_compiler_directive_decl] = STATE(23), [sym_fsi_directive_decl] = STATE(23), [sym_preproc_line] = STATE(23), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(151), - [anon_sym_LBRACK_LT] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(151), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(219), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_null] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(377), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(393), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(95), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(121), - [anon_sym_POUNDload] = ACTIONS(121), + [anon_sym_POUNDr] = ACTIONS(219), + [anon_sym_POUNDload] = ACTIONS(219), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(395), }, [24] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(24), [sym_block_comment] = STATE(24), [sym_line_comment] = STATE(24), [sym_compiler_directive_decl] = STATE(24), [sym_fsi_directive_decl] = STATE(24), [sym_preproc_line] = STATE(24), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(229), - [anon_sym_LBRACK_LT] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(229), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(377), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(227), - [anon_sym_POUNDload] = ACTIONS(227), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(227), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_identifier] = ACTIONS(235), + [anon_sym_module] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_open] = ACTIONS(235), + [anon_sym_LBRACK_LT] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_type] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(237), + [anon_sym_POUNDload] = ACTIONS(237), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [25] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(25), [sym_block_comment] = STATE(25), [sym_line_comment] = STATE(25), [sym_compiler_directive_decl] = STATE(25), [sym_fsi_directive_decl] = STATE(25), [sym_preproc_line] = STATE(25), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(121), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(123), [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(151), - [anon_sym_LBRACK_LT] = ACTIONS(121), - [anon_sym_COLON] = ACTIONS(253), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(123), + [anon_sym_COLON] = ACTIONS(261), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(151), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(147), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -36355,15 +38652,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -36373,322 +38669,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(121), - [anon_sym_POUNDload] = ACTIONS(121), + [anon_sym_POUNDr] = ACTIONS(123), + [anon_sym_POUNDload] = ACTIONS(123), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(123), }, [26] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(26), [sym_block_comment] = STATE(26), [sym_line_comment] = STATE(26), [sym_compiler_directive_decl] = STATE(26), [sym_fsi_directive_decl] = STATE(26), [sym_preproc_line] = STATE(26), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(299), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(299), - [anon_sym_LBRACK_LT] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(299), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(243), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(245), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(245), + [anon_sym_LBRACK_LT] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(245), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_null] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(377), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(393), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(95), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(297), - [anon_sym_POUNDload] = ACTIONS(297), + [anon_sym_POUNDr] = ACTIONS(243), + [anon_sym_POUNDload] = ACTIONS(243), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(297), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(243), }, [27] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(27), [sym_block_comment] = STATE(27), [sym_line_comment] = STATE(27), [sym_compiler_directive_decl] = STATE(27), [sym_fsi_directive_decl] = STATE(27), [sym_preproc_line] = STATE(27), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(235), - [anon_sym_LBRACK_LT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(235), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(325), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(223), + [anon_sym_LBRACK_LT] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(223), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), [anon_sym_begin] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(365), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), [anon_sym_DQUOTE] = ACTIONS(369), @@ -36699,159 +38993,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(377), [anon_sym_LPAREN_PIPE] = ACTIONS(379), [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(233), - [anon_sym_POUNDload] = ACTIONS(233), + [anon_sym_POUNDr] = ACTIONS(219), + [anon_sym_POUNDload] = ACTIONS(219), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(387), [sym__newline] = ACTIONS(389), - [sym__dedent] = ACTIONS(233), + [sym__dedent] = ACTIONS(219), }, [28] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(28), [sym_block_comment] = STATE(28), [sym_line_comment] = STATE(28), [sym_compiler_directive_decl] = STATE(28), [sym_fsi_directive_decl] = STATE(28), [sym_preproc_line] = STATE(28), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(225), - [anon_sym_LBRACK_LT] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(225), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(225), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(147), + [anon_sym_LBRACK_LT] = ACTIONS(123), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(147), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), [anon_sym_begin] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(365), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), [anon_sym_DQUOTE] = ACTIONS(369), @@ -36862,159 +39155,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(377), [anon_sym_LPAREN_PIPE] = ACTIONS(379), [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(223), - [anon_sym_POUNDload] = ACTIONS(223), + [anon_sym_POUNDr] = ACTIONS(123), + [anon_sym_POUNDload] = ACTIONS(123), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(223), - [sym__dedent] = ACTIONS(223), + [sym__newline] = ACTIONS(123), + [sym__dedent] = ACTIONS(123), }, [29] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(29), [sym_block_comment] = STATE(29), [sym_line_comment] = STATE(29), [sym_compiler_directive_decl] = STATE(29), [sym_fsi_directive_decl] = STATE(29), [sym_preproc_line] = STATE(29), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(221), - [anon_sym_LBRACK_LT] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(221), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_null] = ACTIONS(319), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(309), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(221), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(253), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(253), + [anon_sym_LBRACK_LT] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(253), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(333), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(335), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(337), - [anon_sym_COLON_QMARK_GT] = ACTIONS(337), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_LT_DASH] = ACTIONS(353), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), [anon_sym_begin] = ACTIONS(361), [anon_sym_LPAREN2] = ACTIONS(363), - [anon_sym_or] = ACTIONS(139), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(365), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), [anon_sym_DQUOTE] = ACTIONS(369), @@ -37025,186 +39317,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit] = ACTIONS(377), [anon_sym_LPAREN_PIPE] = ACTIONS(379), [sym_op_identifier] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(219), - [anon_sym_POUNDload] = ACTIONS(219), + [anon_sym_POUNDr] = ACTIONS(251), + [anon_sym_POUNDload] = ACTIONS(251), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(387), - [sym__newline] = ACTIONS(219), - [sym__dedent] = ACTIONS(219), + [sym__newline] = ACTIONS(251), + [sym__dedent] = ACTIONS(251), }, [30] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(30), [sym_block_comment] = STATE(30), [sym_line_comment] = STATE(30), [sym_compiler_directive_decl] = STATE(30), [sym_fsi_directive_decl] = STATE(30), [sym_preproc_line] = STATE(30), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(247), - [sym_identifier] = ACTIONS(245), - [anon_sym_module] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_open] = ACTIONS(245), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(249), [anon_sym_LBRACK_LT] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_type] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(249), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [anon_sym_LPAREN2] = ACTIONS(363), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(377), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -37212,607 +39502,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(247), [anon_sym_POUNDload] = ACTIONS(247), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(389), + [sym__dedent] = ACTIONS(247), }, [31] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(31), [sym_block_comment] = STATE(31), [sym_line_comment] = STATE(31), [sym_compiler_directive_decl] = STATE(31), [sym_fsi_directive_decl] = STATE(31), [sym_preproc_line] = STATE(31), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(227), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(229), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(229), - [anon_sym_LBRACK_LT] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(229), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(233), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(233), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(95), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [anon_sym_LPAREN2] = ACTIONS(363), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(377), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(227), - [anon_sym_POUNDload] = ACTIONS(227), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(395), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(389), + [sym__dedent] = ACTIONS(231), }, [32] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(32), [sym_block_comment] = STATE(32), [sym_line_comment] = STATE(32), [sym_compiler_directive_decl] = STATE(32), [sym_fsi_directive_decl] = STATE(32), [sym_preproc_line] = STATE(32), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_module] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_open] = ACTIONS(249), - [anon_sym_LBRACK_LT] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_type] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(245), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(245), + [anon_sym_LBRACK_LT] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(303), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(245), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_null] = ACTIONS(313), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(303), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_COLON_GT] = ACTIONS(333), + [anon_sym_COLON_QMARK_GT] = ACTIONS(333), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_LT_DASH] = ACTIONS(349), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [anon_sym_LPAREN2] = ACTIONS(363), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(377), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(251), - [anon_sym_POUNDload] = ACTIONS(251), + [anon_sym_POUNDr] = ACTIONS(243), + [anon_sym_POUNDload] = ACTIONS(243), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - [sym__dedent] = ACTIONS(251), + [anon_sym_POUNDif] = ACTIONS(387), + [sym__newline] = ACTIONS(243), + [sym__dedent] = ACTIONS(243), }, [33] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(33), [sym_block_comment] = STATE(33), [sym_line_comment] = STATE(33), [sym_compiler_directive_decl] = STATE(33), [sym_fsi_directive_decl] = STATE(33), [sym_preproc_line] = STATE(33), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(239), - [sym_identifier] = ACTIONS(237), - [anon_sym_module] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_open] = ACTIONS(237), - [anon_sym_LBRACK_LT] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_type] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(239), - [anon_sym_POUNDload] = ACTIONS(239), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), - }, - [34] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(34), - [sym_block_comment] = STATE(34), - [sym_line_comment] = STATE(34), - [sym_compiler_directive_decl] = STATE(34), - [sym_fsi_directive_decl] = STATE(34), - [sym_preproc_line] = STATE(34), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(297), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(251), [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(299), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(299), - [anon_sym_LBRACK_LT] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(253), + [anon_sym_module] = ACTIONS(253), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(253), + [anon_sym_LBRACK_LT] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(261), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(299), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(253), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -37822,15 +39948,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -37840,468 +39965,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(297), - [anon_sym_POUNDload] = ACTIONS(297), + [anon_sym_POUNDr] = ACTIONS(251), + [anon_sym_POUNDload] = ACTIONS(251), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(395), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(251), + }, + [34] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(34), + [sym_block_comment] = STATE(34), + [sym_line_comment] = STATE(34), + [sym_compiler_directive_decl] = STATE(34), + [sym_fsi_directive_decl] = STATE(34), + [sym_preproc_line] = STATE(34), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(241), + [sym_identifier] = ACTIONS(239), + [anon_sym_module] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_open] = ACTIONS(239), + [anon_sym_LBRACK_LT] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(241), + [anon_sym_POUNDload] = ACTIONS(241), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [35] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(21), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_infix_op] = STATE(697), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(35), [sym_block_comment] = STATE(35), [sym_line_comment] = STATE(35), [sym_compiler_directive_decl] = STATE(35), [sym_fsi_directive_decl] = STATE(35), [sym_preproc_line] = STATE(35), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_sequential_expression_repeat1] = STATE(1190), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_module] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_open] = ACTIONS(245), - [anon_sym_LBRACK_LT] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_type] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(247), - [anon_sym_POUNDload] = ACTIONS(247), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), - [sym__dedent] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_identifier] = ACTIONS(227), + [anon_sym_module] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_open] = ACTIONS(227), + [anon_sym_LBRACK_LT] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(229), + [anon_sym_POUNDload] = ACTIONS(229), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [36] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(36), [sym_block_comment] = STATE(36), [sym_line_comment] = STATE(36), [sym_compiler_directive_decl] = STATE(36), [sym_fsi_directive_decl] = STATE(36), [sym_preproc_line] = STATE(36), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(251), - [sym_identifier] = ACTIONS(249), - [anon_sym_module] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_open] = ACTIONS(249), - [anon_sym_LBRACK_LT] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_type] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(251), - [anon_sym_POUNDload] = ACTIONS(251), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - }, - [37] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(37), - [sym_block_comment] = STATE(37), - [sym_line_comment] = STATE(37), - [sym_compiler_directive_decl] = STATE(37), - [sym_fsi_directive_decl] = STATE(37), - [sym_preproc_line] = STATE(37), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(219), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(231), [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(221), - [anon_sym_LBRACK_LT] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(253), + [anon_sym_module] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(233), + [anon_sym_LBRACK_LT] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(261), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(221), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(233), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -38311,15 +40434,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -38329,142 +40451,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(219), - [anon_sym_POUNDload] = ACTIONS(219), + [anon_sym_POUNDr] = ACTIONS(231), + [anon_sym_POUNDload] = ACTIONS(231), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(395), }, - [38] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(38), - [sym_block_comment] = STATE(38), - [sym_line_comment] = STATE(38), - [sym_compiler_directive_decl] = STATE(38), - [sym_fsi_directive_decl] = STATE(38), - [sym_preproc_line] = STATE(38), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(223), + [37] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(37), + [sym_block_comment] = STATE(37), + [sym_line_comment] = STATE(37), + [sym_compiler_directive_decl] = STATE(37), + [sym_fsi_directive_decl] = STATE(37), + [sym_preproc_line] = STATE(37), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(297), [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(225), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(225), - [anon_sym_LBRACK_LT] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(253), + [anon_sym_module] = ACTIONS(299), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(299), + [anon_sym_LBRACK_LT] = ACTIONS(297), + [anon_sym_COLON] = ACTIONS(261), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(225), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(299), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -38474,15 +40596,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -38492,142 +40613,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(223), - [anon_sym_POUNDload] = ACTIONS(223), + [anon_sym_POUNDr] = ACTIONS(297), + [anon_sym_POUNDload] = ACTIONS(297), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(395), }, - [39] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(39), - [sym_block_comment] = STATE(39), - [sym_line_comment] = STATE(39), - [sym_compiler_directive_decl] = STATE(39), - [sym_fsi_directive_decl] = STATE(39), - [sym_preproc_line] = STATE(39), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(241), + [38] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(35), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(790), + [sym_infix_op] = STATE(851), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_line_comment] = STATE(38), + [sym_compiler_directive_decl] = STATE(38), + [sym_fsi_directive_decl] = STATE(38), + [sym_preproc_line] = STATE(38), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_sequential_expression_repeat1] = STATE(1410), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(247), [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(243), - [anon_sym_LBRACK_LT] = ACTIONS(241), - [anon_sym_COLON] = ACTIONS(253), + [anon_sym_module] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_open] = ACTIONS(249), + [anon_sym_LBRACK_LT] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(261), [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(243), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(249), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(269), + [anon_sym_DOT] = ACTIONS(255), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), + [anon_sym_COLON_GT] = ACTIONS(275), + [anon_sym_COLON_QMARK_GT] = ACTIONS(275), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -38637,15 +40758,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), + [anon_sym_DOT_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(259), [anon_sym_use] = ACTIONS(75), [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(283), + [anon_sym_or] = ACTIONS(141), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -38655,23 +40775,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_bool] = ACTIONS(95), [sym_unit] = ACTIONS(95), [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [sym_op_identifier] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(247), + [anon_sym_POUNDload] = ACTIONS(247), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(291), + [sym__newline] = ACTIONS(395), + }, + [39] = { + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), + [sym_xml_doc] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_line_comment] = STATE(39), + [sym_compiler_directive_decl] = STATE(39), + [sym_fsi_directive_decl] = STATE(39), + [sym_preproc_line] = STATE(39), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_module] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_open] = ACTIONS(239), + [anon_sym_LBRACK_LT] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_type] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -38679,483 +40960,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(241), [anon_sym_POUNDload] = ACTIONS(241), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(395), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + [sym__dedent] = ACTIONS(241), }, [40] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(33), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_infix_op] = STATE(727), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(40), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(729), + [sym_infix_op] = STATE(666), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(40), [sym_block_comment] = STATE(40), [sym_line_comment] = STATE(40), [sym_compiler_directive_decl] = STATE(40), [sym_fsi_directive_decl] = STATE(40), [sym_preproc_line] = STATE(40), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_sequential_expression_repeat1] = STATE(1321), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(233), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_open] = ACTIONS(235), - [anon_sym_LBRACK_LT] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(235), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(391), - [anon_sym_null] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(253), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(261), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(267), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(269), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(271), - [anon_sym_COLON_QMARK_GT] = ACTIONS(271), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LT_DASH] = ACTIONS(393), - [anon_sym_DOT_LBRACK] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [anon_sym_LPAREN2] = ACTIONS(285), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(95), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(233), - [anon_sym_POUNDload] = ACTIONS(233), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), - [sym__newline] = ACTIONS(395), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_sequential_expression_repeat1] = STATE(1287), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_module] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_open] = ACTIONS(227), + [anon_sym_LBRACK_LT] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_type] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(325), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(353), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(229), + [anon_sym_POUNDload] = ACTIONS(229), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), + [sym__dedent] = ACTIONS(229), }, [41] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(41), [sym_block_comment] = STATE(41), [sym_line_comment] = STATE(41), [sym_compiler_directive_decl] = STATE(41), [sym_fsi_directive_decl] = STATE(41), [sym_preproc_line] = STATE(41), - [sym_preproc_else] = STATE(7748), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(485), - [anon_sym_POUNDelse] = ACTIONS(488), - [sym__newline] = ACTIONS(491), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_as] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + [sym__dedent] = ACTIONS(241), }, [42] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(42), [sym_block_comment] = STATE(42), [sym_line_comment] = STATE(42), [sym_compiler_directive_decl] = STATE(42), [sym_fsi_directive_decl] = STATE(42), [sym_preproc_line] = STATE(42), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(225), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [sym_preproc_else] = STATE(7767), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -39163,320 +41441,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(223), - [sym__dedent] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(493), + [anon_sym_POUNDelse] = ACTIONS(496), + [sym__newline] = ACTIONS(499), }, [43] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(43), [sym_block_comment] = STATE(43), [sym_line_comment] = STATE(43), [sym_compiler_directive_decl] = STATE(43), [sym_fsi_directive_decl] = STATE(43), [sym_preproc_line] = STATE(43), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_as] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - [sym__dedent] = ACTIONS(251), - }, - [44] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), - [sym_xml_doc] = STATE(44), - [sym_block_comment] = STATE(44), - [sym_line_comment] = STATE(44), - [sym_compiler_directive_decl] = STATE(44), - [sym_fsi_directive_decl] = STATE(44), - [sym_preproc_line] = STATE(44), - [sym_preproc_else] = STATE(7012), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_else] = STATE(8157), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -39484,322 +41601,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(579), - [anon_sym_POUNDelse] = ACTIONS(488), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(501), + [anon_sym_POUNDelse] = ACTIONS(496), + [sym__newline] = ACTIONS(499), + }, + [44] = { + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), + [sym_xml_doc] = STATE(44), + [sym_block_comment] = STATE(44), + [sym_line_comment] = STATE(44), + [sym_compiler_directive_decl] = STATE(44), + [sym_fsi_directive_decl] = STATE(44), + [sym_preproc_line] = STATE(44), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_as] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), + [sym__dedent] = ACTIONS(237), }, [45] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(45), [sym_block_comment] = STATE(45), [sym_line_comment] = STATE(45), [sym_compiler_directive_decl] = STATE(45), [sym_fsi_directive_decl] = STATE(45), [sym_preproc_line] = STATE(45), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_as] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - [sym__dedent] = ACTIONS(251), + [sym_preproc_else] = STATE(7421), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(504), + [anon_sym_POUNDelse] = ACTIONS(496), + [sym__newline] = ACTIONS(499), }, [46] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(46), [sym_block_comment] = STATE(46), [sym_line_comment] = STATE(46), [sym_compiler_directive_decl] = STATE(46), [sym_fsi_directive_decl] = STATE(46), [sym_preproc_line] = STATE(46), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(151), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -39807,482 +42082,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [sym__dedent] = ACTIONS(219), }, [47] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(47), [sym_block_comment] = STATE(47), [sym_line_comment] = STATE(47), [sym_compiler_directive_decl] = STATE(47), [sym_fsi_directive_decl] = STATE(47), [sym_preproc_line] = STATE(47), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__list_elements_repeat1] = STATE(5870), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(676), - [sym__dedent] = ACTIONS(678), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_as] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_with] = ACTIONS(227), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), + [sym__dedent] = ACTIONS(229), }, [48] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(48), [sym_block_comment] = STATE(48), [sym_line_comment] = STATE(48), [sym_compiler_directive_decl] = STATE(48), [sym_fsi_directive_decl] = STATE(48), [sym_preproc_line] = STATE(48), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(221), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(219), - [sym__dedent] = ACTIONS(219), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_as] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + [sym__dedent] = ACTIONS(241), }, [49] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(49), [sym_block_comment] = STATE(49), [sym_line_comment] = STATE(49), [sym_compiler_directive_decl] = STATE(49), [sym_fsi_directive_decl] = STATE(49), [sym_preproc_line] = STATE(49), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(243), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [sym_preproc_else] = STATE(7603), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -40290,321 +42561,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(680), - [sym__dedent] = ACTIONS(241), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(591), + [anon_sym_POUNDelse] = ACTIONS(496), + [sym__newline] = ACTIONS(499), }, [50] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(50), [sym_block_comment] = STATE(50), [sym_line_comment] = STATE(50), [sym_compiler_directive_decl] = STATE(50), [sym_fsi_directive_decl] = STATE(50), [sym_preproc_line] = STATE(50), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_as] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_with] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), - [sym__dedent] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__list_elements_repeat1] = STATE(6533), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(658), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(684), + [sym__dedent] = ACTIONS(686), }, [51] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(51), [sym_block_comment] = STATE(51), [sym_line_comment] = STATE(51), [sym_compiler_directive_decl] = STATE(51), [sym_fsi_directive_decl] = STATE(51), [sym_preproc_line] = STATE(51), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(235), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(245), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -40612,160 +42882,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(680), - [sym__dedent] = ACTIONS(233), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(243), + [sym__dedent] = ACTIONS(243), }, [52] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(52), [sym_block_comment] = STATE(52), [sym_line_comment] = STATE(52), [sym_compiler_directive_decl] = STATE(52), [sym_fsi_directive_decl] = STATE(52), [sym_preproc_line] = STATE(52), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_null] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(229), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(517), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(519), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(521), - [anon_sym_COLON_QMARK_GT] = ACTIONS(521), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(233), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_LT_DASH] = ACTIONS(537), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_LPAREN2] = ACTIONS(553), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(567), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -40773,159 +43042,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - [sym__newline] = ACTIONS(680), - [sym__dedent] = ACTIONS(227), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(589), + [sym__dedent] = ACTIONS(231), }, [53] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(53), [sym_block_comment] = STATE(53), [sym_line_comment] = STATE(53), [sym_compiler_directive_decl] = STATE(53), [sym_fsi_directive_decl] = STATE(53), [sym_preproc_line] = STATE(53), - [sym_preproc_else] = STATE(7442), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -40933,160 +43202,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(682), - [anon_sym_POUNDelse] = ACTIONS(488), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(123), + [sym__dedent] = ACTIONS(123), }, [54] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(54), [sym_block_comment] = STATE(54), [sym_line_comment] = STATE(54), [sym_compiler_directive_decl] = STATE(54), [sym_fsi_directive_decl] = STATE(54), [sym_preproc_line] = STATE(54), - [sym_preproc_else] = STATE(7341), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(253), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -41094,322 +43362,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(685), - [anon_sym_POUNDelse] = ACTIONS(488), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(251), + [sym__dedent] = ACTIONS(251), }, [55] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(50), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_infix_op] = STATE(771), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(47), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(671), + [sym_infix_op] = STATE(579), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(55), [sym_block_comment] = STATE(55), [sym_line_comment] = STATE(55), [sym_compiler_directive_decl] = STATE(55), [sym_fsi_directive_decl] = STATE(55), [sym_preproc_line] = STATE(55), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_sequential_expression_repeat1] = STATE(1599), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_as] = ACTIONS(245), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_with] = ACTIONS(245), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(539), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_sequential_expression_repeat1] = STATE(1751), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(509), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_null] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(249), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_COLON_GT] = ACTIONS(537), + [anon_sym_COLON_QMARK_GT] = ACTIONS(537), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_LT_DASH] = ACTIONS(553), + [anon_sym_DOT_LBRACK] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(563), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(577), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(587), + [sym__newline] = ACTIONS(589), [sym__dedent] = ACTIONS(247), }, [56] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(56), [sym_block_comment] = STATE(56), [sym_line_comment] = STATE(56), [sym_compiler_directive_decl] = STATE(56), [sym_fsi_directive_decl] = STATE(56), [sym_preproc_line] = STATE(56), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -41417,158 +43681,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(123), + [sym__dedent] = ACTIONS(123), }, [57] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(57), [sym_block_comment] = STATE(57), [sym_line_comment] = STATE(57), [sym_compiler_directive_decl] = STATE(57), [sym_fsi_directive_decl] = STATE(57), [sym_preproc_line] = STATE(57), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(243), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -41576,319 +43841,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(241), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [58] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(58), [sym_block_comment] = STATE(58), [sym_line_comment] = STATE(58), [sym_compiler_directive_decl] = STATE(58), [sym_fsi_directive_decl] = STATE(58), [sym_preproc_line] = STATE(58), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_with] = ACTIONS(245), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), - [sym__dedent] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(233), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [59] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(59), [sym_block_comment] = STATE(59), [sym_line_comment] = STATE(59), [sym_compiler_directive_decl] = STATE(59), [sym_fsi_directive_decl] = STATE(59), [sym_preproc_line] = STATE(59), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(221), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(249), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(247), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -41896,158 +44159,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(219), - [sym__dedent] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [60] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(60), [sym_block_comment] = STATE(60), [sym_line_comment] = STATE(60), [sym_compiler_directive_decl] = STATE(60), [sym_fsi_directive_decl] = STATE(60), [sym_preproc_line] = STATE(60), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(253), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(251), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42055,160 +44318,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(121), - [anon_sym_POUNDelse] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(251), }, [61] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(61), [sym_block_comment] = STATE(61), [sym_line_comment] = STATE(61), [sym_compiler_directive_decl] = STATE(61), [sym_fsi_directive_decl] = STATE(61), [sym_preproc_line] = STATE(61), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(225), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42216,158 +44477,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(223), - [sym__dedent] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(123), }, [62] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(62), [sym_block_comment] = STATE(62), [sym_line_comment] = STATE(62), [sym_compiler_directive_decl] = STATE(62), [sym_fsi_directive_decl] = STATE(62), [sym_preproc_line] = STATE(62), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(223), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(219), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42375,160 +44636,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(241), - [anon_sym_POUNDelse] = ACTIONS(241), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [63] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(63), [sym_block_comment] = STATE(63), [sym_line_comment] = STATE(63), [sym_compiler_directive_decl] = STATE(63), [sym_fsi_directive_decl] = STATE(63), [sym_preproc_line] = STATE(63), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(227), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42536,159 +44795,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(732), - [sym__dedent] = ACTIONS(227), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [64] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(64), [sym_block_comment] = STATE(64), [sym_line_comment] = STATE(64), [sym_compiler_directive_decl] = STATE(64), [sym_fsi_directive_decl] = STATE(64), [sym_preproc_line] = STATE(64), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(235), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(822), + [anon_sym_downto] = ACTIONS(822), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42696,159 +44954,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(233), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [65] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(65), [sym_block_comment] = STATE(65), [sym_line_comment] = STATE(65), [sym_compiler_directive_decl] = STATE(65), [sym_fsi_directive_decl] = STATE(65), [sym_preproc_line] = STATE(65), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(824), + [anon_sym_downto] = ACTIONS(824), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(233), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -42856,159 +45113,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(734), - [sym__dedent] = ACTIONS(734), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [66] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(66), [sym_block_comment] = STATE(66), [sym_line_comment] = STATE(66), [sym_compiler_directive_decl] = STATE(66), [sym_fsi_directive_decl] = STATE(66), [sym_preproc_line] = STATE(66), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(826), + [anon_sym_downto] = ACTIONS(826), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(650), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -43016,158 +45272,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(732), - [sym__dedent] = ACTIONS(736), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [67] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(67), [sym_block_comment] = STATE(67), [sym_line_comment] = STATE(67), [sym_compiler_directive_decl] = STATE(67), [sym_fsi_directive_decl] = STATE(67), [sym_preproc_line] = STATE(67), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(243), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(243), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -43175,319 +45431,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(233), - [anon_sym_POUNDelse] = ACTIONS(233), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(243), }, [68] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(68), [sym_block_comment] = STATE(68), [sym_line_comment] = STATE(68), [sym_compiler_directive_decl] = STATE(68), [sym_fsi_directive_decl] = STATE(68), [sym_preproc_line] = STATE(68), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_as] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(828), + [anon_sym_downto] = ACTIONS(828), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [69] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(69), [sym_block_comment] = STATE(69), [sym_line_comment] = STATE(69), [sym_compiler_directive_decl] = STATE(69), [sym_fsi_directive_decl] = STATE(69), [sym_preproc_line] = STATE(69), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(830), + [anon_sym_downto] = ACTIONS(830), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -43495,159 +45749,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(223), - [anon_sym_POUNDelse] = ACTIONS(223), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [70] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(70), [sym_block_comment] = STATE(70), [sym_line_comment] = STATE(70), [sym_compiler_directive_decl] = STATE(70), [sym_fsi_directive_decl] = STATE(70), [sym_preproc_line] = STATE(70), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(832), + [anon_sym_downto] = ACTIONS(832), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -43655,117 +45908,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(219), - [anon_sym_POUNDelse] = ACTIONS(219), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [71] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(71), [sym_block_comment] = STATE(71), [sym_line_comment] = STATE(71), [sym_compiler_directive_decl] = STATE(71), [sym_fsi_directive_decl] = STATE(71), [sym_preproc_line] = STATE(71), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(744), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(834), + [anon_sym_downto] = ACTIONS(834), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -43773,42 +46025,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -43818,156 +46068,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [sym__newline] = ACTIONS(225), }, [72] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(72), [sym_block_comment] = STATE(72), [sym_line_comment] = STATE(72), [sym_compiler_directive_decl] = STATE(72), [sym_fsi_directive_decl] = STATE(72), [sym_preproc_line] = STATE(72), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(231), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -43975,480 +46226,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(746), - [anon_sym_POUNDelse] = ACTIONS(746), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [73] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(73), [sym_block_comment] = STATE(73), [sym_line_comment] = STATE(73), [sym_compiler_directive_decl] = STATE(73), [sym_fsi_directive_decl] = STATE(73), [sym_preproc_line] = STATE(73), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [anon_sym_POUNDendif] = ACTIONS(251), - [anon_sym_POUNDelse] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__list_elements_repeat1] = STATE(6449), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(836), + [sym__dedent] = ACTIONS(838), }, [74] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(74), [sym_block_comment] = STATE(74), [sym_line_comment] = STATE(74), [sym_compiler_directive_decl] = STATE(74), [sym_fsi_directive_decl] = STATE(74), [sym_preproc_line] = STATE(74), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - [sym__dedent] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(840), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [75] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(75), [sym_block_comment] = STATE(75), [sym_line_comment] = STATE(75), [sym_compiler_directive_decl] = STATE(75), [sym_fsi_directive_decl] = STATE(75), [sym_preproc_line] = STATE(75), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__list_elements_repeat1] = STATE(5879), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(842), + [anon_sym_downto] = ACTIONS(842), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -44456,160 +46703,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(748), - [sym__dedent] = ACTIONS(750), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [76] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(76), [sym_block_comment] = STATE(76), [sym_line_comment] = STATE(76), [sym_compiler_directive_decl] = STATE(76), [sym_fsi_directive_decl] = STATE(76), [sym_preproc_line] = STATE(76), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(229), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(844), + [anon_sym_downto] = ACTIONS(844), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -44617,275 +46862,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(834), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [77] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(77), [sym_block_comment] = STATE(77), [sym_line_comment] = STATE(77), [sym_compiler_directive_decl] = STATE(77), [sym_fsi_directive_decl] = STATE(77), [sym_preproc_line] = STATE(77), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(227), - [anon_sym_POUNDelse] = ACTIONS(227), - [sym__newline] = ACTIONS(491), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_with] = ACTIONS(227), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), + [sym__dedent] = ACTIONS(229), }, [78] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(78), [sym_block_comment] = STATE(78), [sym_line_comment] = STATE(78), [sym_compiler_directive_decl] = STATE(78), [sym_fsi_directive_decl] = STATE(78), [sym_preproc_line] = STATE(78), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + [sym__dedent] = ACTIONS(241), + }, + [79] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(79), + [sym_block_comment] = STATE(79), + [sym_line_comment] = STATE(79), + [sym_compiler_directive_decl] = STATE(79), + [sym_fsi_directive_decl] = STATE(79), + [sym_preproc_line] = STATE(79), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(846), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -44893,42 +47296,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -44938,637 +47340,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), - }, - [79] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(79), - [sym_block_comment] = STATE(79), - [sym_line_comment] = STATE(79), - [sym_compiler_directive_decl] = STATE(79), - [sym_fsi_directive_decl] = STATE(79), - [sym_preproc_line] = STATE(79), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(219), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(219), - [sym__dedent] = ACTIONS(219), + [sym__newline] = ACTIONS(728), }, [80] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(80), [sym_block_comment] = STATE(80), [sym_line_comment] = STATE(80), [sym_compiler_directive_decl] = STATE(80), [sym_fsi_directive_decl] = STATE(80), [sym_preproc_line] = STATE(80), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(151), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(121), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), + [sym__dedent] = ACTIONS(237), }, [81] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(81), [sym_block_comment] = STATE(81), [sym_line_comment] = STATE(81), [sym_compiler_directive_decl] = STATE(81), [sym_fsi_directive_decl] = STATE(81), [sym_preproc_line] = STATE(81), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(223), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(223), - [sym__dedent] = ACTIONS(223), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_DOT_DOT2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [82] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(82), [sym_block_comment] = STATE(82), [sym_line_comment] = STATE(82), [sym_compiler_directive_decl] = STATE(82), [sym_fsi_directive_decl] = STATE(82), [sym_preproc_line] = STATE(82), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(848), + [anon_sym_downto] = ACTIONS(848), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(233), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -45576,160 +47816,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(732), - [sym__dedent] = ACTIONS(233), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [83] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(83), [sym_block_comment] = STATE(83), [sym_line_comment] = STATE(83), [sym_compiler_directive_decl] = STATE(83), [sym_fsi_directive_decl] = STATE(83), [sym_preproc_line] = STATE(83), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(221), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(850), + [anon_sym_downto] = ACTIONS(850), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -45737,115 +47975,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [84] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(84), [sym_block_comment] = STATE(84), [sym_line_comment] = STATE(84), [sym_compiler_directive_decl] = STATE(84), [sym_fsi_directive_decl] = STATE(84), [sym_preproc_line] = STATE(84), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(924), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(852), + [anon_sym_downto] = ACTIONS(852), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -45853,42 +48092,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -45898,158 +48135,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [sym__newline] = ACTIONS(225), }, [85] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(85), [sym_block_comment] = STATE(85), [sym_line_comment] = STATE(85), [sym_compiler_directive_decl] = STATE(85), [sym_fsi_directive_decl] = STATE(85), [sym_preproc_line] = STATE(85), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(854), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(856), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(858), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -46057,959 +48293,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [86] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(86), [sym_block_comment] = STATE(86), [sym_line_comment] = STATE(86), [sym_compiler_directive_decl] = STATE(86), [sym_fsi_directive_decl] = STATE(86), [sym_preproc_line] = STATE(86), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_DOT_DOT2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [87] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(87), [sym_block_comment] = STATE(87), [sym_line_comment] = STATE(87), [sym_compiler_directive_decl] = STATE(87), [sym_fsi_directive_decl] = STATE(87), [sym_preproc_line] = STATE(87), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_DASH_GT] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_DOT_DOT] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(860), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(864), }, [88] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(88), [sym_block_comment] = STATE(88), [sym_line_comment] = STATE(88), [sym_compiler_directive_decl] = STATE(88), [sym_fsi_directive_decl] = STATE(88), [sym_preproc_line] = STATE(88), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_DASH_GT] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(866), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [89] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(89), [sym_block_comment] = STATE(89), [sym_line_comment] = STATE(89), [sym_compiler_directive_decl] = STATE(89), [sym_fsi_directive_decl] = STATE(89), [sym_preproc_line] = STATE(89), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_as] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_with] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(868), + [anon_sym_POUNDelse] = ACTIONS(868), + [sym__newline] = ACTIONS(499), }, [90] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(90), [sym_block_comment] = STATE(90), [sym_line_comment] = STATE(90), [sym_compiler_directive_decl] = STATE(90), [sym_fsi_directive_decl] = STATE(90), [sym_preproc_line] = STATE(90), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [anon_sym_POUNDendif] = ACTIONS(239), - [anon_sym_POUNDelse] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(870), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [91] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(91), [sym_block_comment] = STATE(91), [sym_line_comment] = STATE(91), [sym_compiler_directive_decl] = STATE(91), [sym_fsi_directive_decl] = STATE(91), [sym_preproc_line] = STATE(91), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(225), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_to] = ACTIONS(872), + [anon_sym_downto] = ACTIONS(872), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -47017,159 +49247,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [92] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(92), [sym_block_comment] = STATE(92), [sym_line_comment] = STATE(92), [sym_compiler_directive_decl] = STATE(92), [sym_fsi_directive_decl] = STATE(92), [sym_preproc_line] = STATE(92), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(928), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(930), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(247), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -47177,157 +49405,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(874), + [sym__dedent] = ACTIONS(874), }, [93] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(93), [sym_block_comment] = STATE(93), [sym_line_comment] = STATE(93), [sym_compiler_directive_decl] = STATE(93), [sym_fsi_directive_decl] = STATE(93), [sym_preproc_line] = STATE(93), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_null] = ACTIONS(409), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(399), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(423), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(425), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(427), - [anon_sym_COLON_QMARK_GT] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(247), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_LT_DASH] = ACTIONS(443), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(459), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(473), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(247), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -47335,161 +49565,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(936), - [anon_sym_POUNDelse] = ACTIONS(936), - [sym__newline] = ACTIONS(491), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [94] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(94), [sym_block_comment] = STATE(94), [sym_line_comment] = STATE(94), [sym_compiler_directive_decl] = STATE(94), [sym_fsi_directive_decl] = STATE(94), [sym_preproc_line] = STATE(94), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(235), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(658), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -47497,479 +49723,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(834), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(876), + [sym__dedent] = ACTIONS(878), }, [95] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(95), [sym_block_comment] = STATE(95), [sym_line_comment] = STATE(95), [sym_compiler_directive_decl] = STATE(95), [sym_fsi_directive_decl] = STATE(95), [sym_preproc_line] = STATE(95), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(243), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(241), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_as] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [96] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(96), [sym_block_comment] = STATE(96), [sym_line_comment] = STATE(96), [sym_compiler_directive_decl] = STATE(96), [sym_fsi_directive_decl] = STATE(96), [sym_preproc_line] = STATE(96), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_as] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_with] = ACTIONS(249), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_DASH_GT] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [97] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(97), [sym_block_comment] = STATE(97), [sym_line_comment] = STATE(97), [sym_compiler_directive_decl] = STATE(97), [sym_fsi_directive_decl] = STATE(97), [sym_preproc_line] = STATE(97), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(243), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(251), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -47977,159 +50201,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(834), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(251), }, [98] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(98), [sym_block_comment] = STATE(98), [sym_line_comment] = STATE(98), [sym_compiler_directive_decl] = STATE(98), [sym_fsi_directive_decl] = STATE(98), [sym_preproc_line] = STATE(98), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(754), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(151), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(778), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(780), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(782), - [anon_sym_COLON_QMARK_GT] = ACTIONS(782), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(245), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_LT_DASH] = ACTIONS(798), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_LPAREN2] = ACTIONS(808), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(822), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(826), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -48137,115 +50359,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(243), + [sym__dedent] = ACTIONS(243), }, [99] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(99), [sym_block_comment] = STATE(99), [sym_line_comment] = STATE(99), [sym_compiler_directive_decl] = STATE(99), [sym_fsi_directive_decl] = STATE(99), [sym_preproc_line] = STATE(99), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + }, + [100] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(100), + [sym_block_comment] = STATE(100), + [sym_line_comment] = STATE(100), + [sym_compiler_directive_decl] = STATE(100), + [sym_fsi_directive_decl] = STATE(100), + [sym_preproc_line] = STATE(100), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(938), + [anon_sym_RBRACK] = ACTIONS(886), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -48253,42 +50635,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -48298,274 +50679,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), - }, - [100] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), - [sym_xml_doc] = STATE(100), - [sym_block_comment] = STATE(100), - [sym_line_comment] = STATE(100), - [sym_compiler_directive_decl] = STATE(100), - [sym_fsi_directive_decl] = STATE(100), - [sym_preproc_line] = STATE(100), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [sym__newline] = ACTIONS(728), }, [101] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(101), [sym_block_comment] = STATE(101), [sym_line_comment] = STATE(101), [sym_compiler_directive_decl] = STATE(101), [sym_fsi_directive_decl] = STATE(101), [sym_preproc_line] = STATE(101), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_DOT_DOT] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), + }, + [102] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(102), + [sym_block_comment] = STATE(102), + [sym_line_comment] = STATE(102), + [sym_compiler_directive_decl] = STATE(102), + [sym_fsi_directive_decl] = STATE(102), + [sym_preproc_line] = STATE(102), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(940), + [anon_sym_RBRACK] = ACTIONS(123), [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -48573,42 +50953,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -48618,477 +50997,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), - }, - [102] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), - [sym_xml_doc] = STATE(102), - [sym_block_comment] = STATE(102), - [sym_line_comment] = STATE(102), - [sym_compiler_directive_decl] = STATE(102), - [sym_fsi_directive_decl] = STATE(102), - [sym_preproc_line] = STATE(102), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(225), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(223), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(223), + [sym__newline] = ACTIONS(123), }, [103] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(103), [sym_block_comment] = STATE(103), [sym_line_comment] = STATE(103), [sym_compiler_directive_decl] = STATE(103), [sym_fsi_directive_decl] = STATE(103), [sym_preproc_line] = STATE(103), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(241), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(732), - [sym__dedent] = ACTIONS(241), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(237), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_DOT_DOT2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [104] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(104), [sym_block_comment] = STATE(104), [sym_line_comment] = STATE(104), [sym_compiler_directive_decl] = STATE(104), [sym_fsi_directive_decl] = STATE(104), [sym_preproc_line] = STATE(104), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(632), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_DOT_DOT2] = ACTIONS(121), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -49096,160 +51312,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(888), + [anon_sym_POUNDelse] = ACTIONS(888), + [sym__newline] = ACTIONS(499), }, [105] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(105), [sym_block_comment] = STATE(105), [sym_line_comment] = STATE(105), [sym_compiler_directive_decl] = STATE(105), [sym_fsi_directive_decl] = STATE(105), [sym_preproc_line] = STATE(105), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(233), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(223), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -49257,115 +51472,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(231), }, [106] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(106), [sym_block_comment] = STATE(106), [sym_line_comment] = STATE(106), [sym_compiler_directive_decl] = STATE(106), [sym_fsi_directive_decl] = STATE(106), [sym_preproc_line] = STATE(106), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(942), + [anon_sym_RBRACK] = ACTIONS(890), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -49373,42 +51589,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -49418,158 +51633,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [sym__newline] = ACTIONS(728), }, [107] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(107), [sym_block_comment] = STATE(107), [sym_line_comment] = STATE(107), [sym_compiler_directive_decl] = STATE(107), [sym_fsi_directive_decl] = STATE(107), [sym_preproc_line] = STATE(107), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(221), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -49577,479 +51791,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(974), }, [108] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(89), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_infix_op] = STATE(605), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(108), [sym_block_comment] = STATE(108), [sym_line_comment] = STATE(108), [sym_compiler_directive_decl] = STATE(108), [sym_fsi_directive_decl] = STATE(108), [sym_preproc_line] = STATE(108), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_sequential_expression_repeat1] = STATE(1819), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_as] = ACTIONS(245), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_with] = ACTIONS(245), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [anon_sym_POUNDendif] = ACTIONS(229), + [anon_sym_POUNDelse] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [109] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(109), [sym_block_comment] = STATE(109), [sym_line_comment] = STATE(109), [sym_compiler_directive_decl] = STATE(109), [sym_fsi_directive_decl] = STATE(109), [sym_preproc_line] = STATE(109), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(944), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(930), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [anon_sym_POUNDendif] = ACTIONS(241), + [anon_sym_POUNDelse] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [110] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(110), [sym_block_comment] = STATE(110), [sym_line_comment] = STATE(110), [sym_compiler_directive_decl] = STATE(110), [sym_fsi_directive_decl] = STATE(110), [sym_preproc_line] = STATE(110), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(946), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(249), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -50057,319 +52267,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(247), }, [111] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(111), [sym_block_comment] = STATE(111), [sym_line_comment] = STATE(111), [sym_compiler_directive_decl] = STATE(111), [sym_fsi_directive_decl] = STATE(111), [sym_preproc_line] = STATE(111), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_DOT_DOT2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), - [sym__dedent] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(253), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(251), + [sym__dedent] = ACTIONS(251), }, [112] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(112), [sym_block_comment] = STATE(112), [sym_line_comment] = STATE(112), [sym_compiler_directive_decl] = STATE(112), [sym_fsi_directive_decl] = STATE(112), [sym_preproc_line] = STATE(112), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(976), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(229), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -50377,478 +52586,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [113] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(113), [sym_block_comment] = STATE(113), [sym_line_comment] = STATE(113), [sym_compiler_directive_decl] = STATE(113), [sym_fsi_directive_decl] = STATE(113), [sym_preproc_line] = STATE(113), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_DOT_DOT2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), - [sym__dedent] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(147), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(123), }, [114] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(114), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_infix_op] = STATE(762), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(114), [sym_block_comment] = STATE(114), [sym_line_comment] = STATE(114), [sym_compiler_directive_decl] = STATE(114), [sym_fsi_directive_decl] = STATE(114), [sym_preproc_line] = STATE(114), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1714), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_DOT_DOT2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), - [sym__dedent] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [anon_sym_POUNDendif] = ACTIONS(237), + [anon_sym_POUNDelse] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [115] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(115), [sym_block_comment] = STATE(115), [sym_line_comment] = STATE(115), [sym_compiler_directive_decl] = STATE(115), [sym_fsi_directive_decl] = STATE(115), [sym_preproc_line] = STATE(115), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(948), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(253), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -50856,160 +53063,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(950), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(251), }, [116] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(116), [sym_block_comment] = STATE(116), [sym_line_comment] = STATE(116), [sym_compiler_directive_decl] = STATE(116), [sym_fsi_directive_decl] = STATE(116), [sym_preproc_line] = STATE(116), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(227), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(978), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(227), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(856), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(858), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -51017,159 +53222,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [117] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(86), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_infix_op] = STATE(541), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(117), [sym_block_comment] = STATE(117), [sym_line_comment] = STATE(117), [sym_compiler_directive_decl] = STATE(117), [sym_fsi_directive_decl] = STATE(117), [sym_preproc_line] = STATE(117), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1720), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(838), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(952), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(838), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(866), - [anon_sym_COLON_QMARK_GT] = ACTIONS(866), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(249), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(952), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(882), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -51177,319 +53381,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(934), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(974), }, [118] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(118), [sym_block_comment] = STATE(118), [sym_line_comment] = STATE(118), [sym_compiler_directive_decl] = STATE(118), [sym_fsi_directive_decl] = STATE(118), [sym_preproc_line] = STATE(118), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_DOT_DOT2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(233), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(974), }, [119] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(119), [sym_block_comment] = STATE(119), [sym_line_comment] = STATE(119), [sym_compiler_directive_decl] = STATE(119), [sym_fsi_directive_decl] = STATE(119), [sym_preproc_line] = STATE(119), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(956), - [anon_sym_downto] = ACTIONS(956), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_null] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(245), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_COLON_GT] = ACTIONS(922), + [anon_sym_COLON_QMARK_GT] = ACTIONS(922), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LT_DASH] = ACTIONS(938), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(948), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(962), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -51497,115 +53699,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(972), + [sym__newline] = ACTIONS(243), }, [120] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(120), [sym_block_comment] = STATE(120), [sym_line_comment] = STATE(120), [sym_compiler_directive_decl] = STATE(120), [sym_fsi_directive_decl] = STATE(120), [sym_preproc_line] = STATE(120), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(980), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -51613,42 +53815,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -51658,158 +53859,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [sym__newline] = ACTIONS(728), }, [121] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(121), [sym_block_comment] = STATE(121), [sym_line_comment] = STATE(121), [sym_compiler_directive_decl] = STATE(121), [sym_fsi_directive_decl] = STATE(121), [sym_preproc_line] = STATE(121), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(960), - [anon_sym_downto] = ACTIONS(960), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(245), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -51817,275 +54017,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(243), }, [122] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(90), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_infix_op] = STATE(724), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(122), [sym_block_comment] = STATE(122), [sym_line_comment] = STATE(122), [sym_compiler_directive_decl] = STATE(122), [sym_fsi_directive_decl] = STATE(122), [sym_preproc_line] = STATE(122), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_sequential_expression_repeat1] = STATE(1763), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(445), - [anon_sym_DOT] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [anon_sym_POUNDendif] = ACTIONS(247), - [anon_sym_POUNDelse] = ACTIONS(247), - [sym__newline] = ACTIONS(247), - }, - [123] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(123), - [sym_block_comment] = STATE(123), - [sym_line_comment] = STATE(123), - [sym_compiler_directive_decl] = STATE(123), - [sym_fsi_directive_decl] = STATE(123), - [sym_preproc_line] = STATE(123), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(219), + [anon_sym_RBRACK] = ACTIONS(982), [anon_sym_LBRACK_PIPE] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -52093,42 +54133,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(219), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -52138,158 +54177,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(219), + [sym__newline] = ACTIONS(728), + }, + [123] = { + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), + [sym_xml_doc] = STATE(123), + [sym_block_comment] = STATE(123), + [sym_line_comment] = STATE(123), + [sym_compiler_directive_decl] = STATE(123), + [sym_fsi_directive_decl] = STATE(123), + [sym_preproc_line] = STATE(123), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_DOT_DOT2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), + [sym__dedent] = ACTIONS(229), }, [124] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(124), [sym_block_comment] = STATE(124), [sym_line_comment] = STATE(124), [sym_compiler_directive_decl] = STATE(124), [sym_fsi_directive_decl] = STATE(124), [sym_preproc_line] = STATE(124), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_with] = ACTIONS(223), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -52297,798 +54493,635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(219), }, [125] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(125), [sym_block_comment] = STATE(125), [sym_line_comment] = STATE(125), [sym_compiler_directive_decl] = STATE(125), [sym_fsi_directive_decl] = STATE(125), [sym_preproc_line] = STATE(125), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(964), - [anon_sym_downto] = ACTIONS(964), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_as] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_with] = ACTIONS(235), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [126] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(126), [sym_block_comment] = STATE(126), [sym_line_comment] = STATE(126), [sym_compiler_directive_decl] = STATE(126), [sym_fsi_directive_decl] = STATE(126), [sym_preproc_line] = STATE(126), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(121), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(121), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(121), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_DOT_DOT2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + [sym__dedent] = ACTIONS(241), }, [127] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(127), [sym_block_comment] = STATE(127), [sym_line_comment] = STATE(127), [sym_compiler_directive_decl] = STATE(127), [sym_fsi_directive_decl] = STATE(127), [sym_preproc_line] = STATE(127), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(229), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(227), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_DOT_DOT2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), + [sym__dedent] = ACTIONS(237), }, [128] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(128), [sym_block_comment] = STATE(128), [sym_line_comment] = STATE(128), [sym_compiler_directive_decl] = STATE(128), [sym_fsi_directive_decl] = STATE(128), [sym_preproc_line] = STATE(128), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_with] = ACTIONS(237), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), - [sym__dedent] = ACTIONS(239), - }, - [129] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(129), - [sym_block_comment] = STATE(129), - [sym_line_comment] = STATE(129), - [sym_compiler_directive_decl] = STATE(129), - [sym_fsi_directive_decl] = STATE(129), - [sym_preproc_line] = STATE(129), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_with] = ACTIONS(151), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(243), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -53096,117 +55129,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(121), - [sym__dedent] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(243), + [sym__dedent] = ACTIONS(243), + }, + [129] = { + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), + [sym_xml_doc] = STATE(129), + [sym_block_comment] = STATE(129), + [sym_line_comment] = STATE(129), + [sym_compiler_directive_decl] = STATE(129), + [sym_fsi_directive_decl] = STATE(129), + [sym_preproc_line] = STATE(129), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_as] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_with] = ACTIONS(239), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [130] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(130), [sym_block_comment] = STATE(130), [sym_line_comment] = STATE(130), [sym_compiler_directive_decl] = STATE(130), [sym_fsi_directive_decl] = STATE(130), [sym_preproc_line] = STATE(130), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(984), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(966), - [anon_sym_downto] = ACTIONS(966), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -53214,41 +55405,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -53258,318 +55449,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(728), }, [131] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(131), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(822), + [sym_infix_op] = STATE(816), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(131), [sym_block_comment] = STATE(131), [sym_line_comment] = STATE(131), [sym_compiler_directive_decl] = STATE(131), [sym_fsi_directive_decl] = STATE(131), [sym_preproc_line] = STATE(131), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(968), - [anon_sym_downto] = ACTIONS(968), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_sequential_expression_repeat1] = STATE(1767), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_as] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_with] = ACTIONS(227), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [132] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(132), [sym_block_comment] = STATE(132), [sym_line_comment] = STATE(132), [sym_compiler_directive_decl] = STATE(132), [sym_fsi_directive_decl] = STATE(132), [sym_preproc_line] = STATE(132), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(970), - [anon_sym_downto] = ACTIONS(970), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(231), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -53577,159 +55765,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(876), + [sym__dedent] = ACTIONS(231), }, [133] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(133), [sym_block_comment] = STATE(133), [sym_line_comment] = STATE(133), [sym_compiler_directive_decl] = STATE(133), [sym_fsi_directive_decl] = STATE(133), [sym_preproc_line] = STATE(133), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(241), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(241), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(247), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -53737,159 +55924,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(876), + [sym__dedent] = ACTIONS(247), }, [134] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(134), [sym_block_comment] = STATE(134), [sym_line_comment] = STATE(134), [sym_compiler_directive_decl] = STATE(134), [sym_fsi_directive_decl] = STATE(134), [sym_preproc_line] = STATE(134), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(972), - [anon_sym_downto] = ACTIONS(972), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -53897,319 +56082,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(219), + [anon_sym_POUNDelse] = ACTIONS(219), + [sym__newline] = ACTIONS(499), }, [135] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(96), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(744), + [sym_infix_op] = STATE(774), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(135), [sym_block_comment] = STATE(135), [sym_line_comment] = STATE(135), [sym_compiler_directive_decl] = STATE(135), [sym_fsi_directive_decl] = STATE(135), [sym_preproc_line] = STATE(135), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(239), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_DOT_DOT2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(1921), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(986), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(740), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_COLON_GT] = ACTIONS(762), + [anon_sym_COLON_QMARK_GT] = ACTIONS(762), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(986), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(778), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(818), }, [136] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(136), [sym_block_comment] = STATE(136), [sym_line_comment] = STATE(136), [sym_compiler_directive_decl] = STATE(136), [sym_fsi_directive_decl] = STATE(136), [sym_preproc_line] = STATE(136), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(974), - [anon_sym_downto] = ACTIONS(974), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(251), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -54217,159 +56401,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(251), + [sym__dedent] = ACTIONS(251), }, [137] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(137), [sym_block_comment] = STATE(137), [sym_line_comment] = STATE(137), [sym_compiler_directive_decl] = STATE(137), [sym_fsi_directive_decl] = STATE(137), [sym_preproc_line] = STATE(137), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(976), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(706), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -54377,159 +56559,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(123), + [anon_sym_POUNDelse] = ACTIONS(123), + [sym__newline] = ACTIONS(123), }, [138] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(138), [sym_block_comment] = STATE(138), [sym_line_comment] = STATE(138), [sym_compiler_directive_decl] = STATE(138), [sym_fsi_directive_decl] = STATE(138), [sym_preproc_line] = STATE(138), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(978), - [anon_sym_downto] = ACTIONS(978), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(123), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -54537,159 +56719,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(123), + [sym__dedent] = ACTIONS(123), }, [139] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(139), [sym_block_comment] = STATE(139), [sym_line_comment] = STATE(139), [sym_compiler_directive_decl] = STATE(139), [sym_fsi_directive_decl] = STATE(139), [sym_preproc_line] = STATE(139), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(980), - [anon_sym_downto] = ACTIONS(980), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -54697,319 +56877,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(251), + [anon_sym_POUNDelse] = ACTIONS(251), + [sym__newline] = ACTIONS(251), }, [140] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(140), [sym_block_comment] = STATE(140), [sym_line_comment] = STATE(140), [sym_compiler_directive_decl] = STATE(140), [sym_fsi_directive_decl] = STATE(140), [sym_preproc_line] = STATE(140), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(251), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_DOT_DOT2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(247), + [anon_sym_POUNDelse] = ACTIONS(247), + [sym__newline] = ACTIONS(499), }, [141] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(135), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_infix_op] = STATE(610), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(141), [sym_block_comment] = STATE(141), [sym_line_comment] = STATE(141), [sym_compiler_directive_decl] = STATE(141), [sym_fsi_directive_decl] = STATE(141), [sym_preproc_line] = STATE(141), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1661), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(700), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_DOT_DOT2] = ACTIONS(233), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -55017,116 +57195,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(710), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(243), + [anon_sym_POUNDelse] = ACTIONS(243), + [sym__newline] = ACTIONS(243), }, [142] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(142), [sym_block_comment] = STATE(142), [sym_line_comment] = STATE(142), [sym_compiler_directive_decl] = STATE(142), [sym_fsi_directive_decl] = STATE(142), [sym_preproc_line] = STATE(142), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(990), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_to] = ACTIONS(982), - [anon_sym_downto] = ACTIONS(982), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -55134,41 +57313,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -55178,156 +57357,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(728), }, [143] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(143), [sym_block_comment] = STATE(143), [sym_line_comment] = STATE(143), [sym_compiler_directive_decl] = STATE(143), [sym_fsi_directive_decl] = STATE(143), [sym_preproc_line] = STATE(143), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(718), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(724), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -55335,116 +57515,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(984), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(728), }, [144] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(81), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(599), + [sym_infix_op] = STATE(696), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(144), [sym_block_comment] = STATE(144), [sym_line_comment] = STATE(144), [sym_compiler_directive_decl] = STATE(144), [sym_fsi_directive_decl] = STATE(144), [sym_preproc_line] = STATE(144), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1874), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(219), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(948), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -55452,41 +57631,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_LT_DASH] = ACTIONS(718), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_DOT_DOT2] = ACTIONS(219), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), @@ -55496,156 +57675,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(728), }, [145] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(123), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(760), + [sym_infix_op] = STATE(609), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(145), [sym_block_comment] = STATE(145), [sym_line_comment] = STATE(145), [sym_compiler_directive_decl] = STATE(145), [sym_fsi_directive_decl] = STATE(145), [sym_preproc_line] = STATE(145), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(1966), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(642), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_DOT_DOT2] = ACTIONS(219), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -55653,159 +57832,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(986), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(876), + [sym__dedent] = ACTIONS(219), }, [146] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(108), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(700), + [sym_infix_op] = STATE(588), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(146), [sym_block_comment] = STATE(146), [sym_line_comment] = STATE(146), [sym_compiler_directive_decl] = STATE(146), [sym_fsi_directive_decl] = STATE(146), [sym_preproc_line] = STATE(146), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_sequential_expression_repeat1] = STATE(1887), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_null] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_COLON_GT] = ACTIONS(437), + [anon_sym_COLON_QMARK_GT] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(219), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_LT_DASH] = ACTIONS(453), + [anon_sym_DOT_LBRACK] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_LPAREN2] = ACTIONS(467), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(481), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -55813,158 +57990,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(231), + [anon_sym_POUNDelse] = ACTIONS(231), + [sym__newline] = ACTIONS(499), }, [147] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(147), [sym_block_comment] = STATE(147), [sym_line_comment] = STATE(147), [sym_compiler_directive_decl] = STATE(147), [sym_fsi_directive_decl] = STATE(147), [sym_preproc_line] = STATE(147), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1074), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -55972,158 +58150,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [148] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(148), [sym_block_comment] = STATE(148), [sym_line_comment] = STATE(148), [sym_compiler_directive_decl] = STATE(148), [sym_fsi_directive_decl] = STATE(148), [sym_preproc_line] = STATE(148), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -56131,158 +58308,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [149] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(149), [sym_block_comment] = STATE(149), [sym_line_comment] = STATE(149), [sym_compiler_directive_decl] = STATE(149), [sym_fsi_directive_decl] = STATE(149), [sym_preproc_line] = STATE(149), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -56290,158 +58465,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1020), }, [150] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(150), [sym_block_comment] = STATE(150), [sym_line_comment] = STATE(150), [sym_compiler_directive_decl] = STATE(150), [sym_fsi_directive_decl] = STATE(150), [sym_preproc_line] = STATE(150), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(241), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -56449,158 +58624,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [151] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(151), [sym_block_comment] = STATE(151), [sym_line_comment] = STATE(151), [sym_compiler_directive_decl] = STATE(151), [sym_fsi_directive_decl] = STATE(151), [sym_preproc_line] = STATE(151), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1110), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -56608,158 +58781,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1112), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1112), }, [152] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(152), [sym_block_comment] = STATE(152), [sym_line_comment] = STATE(152), [sym_compiler_directive_decl] = STATE(152), [sym_fsi_directive_decl] = STATE(152), [sym_preproc_line] = STATE(152), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1114), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -56767,316 +58939,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(888), + [sym__newline] = ACTIONS(1202), }, [153] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(153), [sym_block_comment] = STATE(153), [sym_line_comment] = STATE(153), [sym_compiler_directive_decl] = STATE(153), [sym_fsi_directive_decl] = STATE(153), [sym_preproc_line] = STATE(153), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(223), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [154] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(154), [sym_block_comment] = STATE(154), [sym_line_comment] = STATE(154), [sym_compiler_directive_decl] = STATE(154), [sym_fsi_directive_decl] = STATE(154), [sym_preproc_line] = STATE(154), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -57084,112 +59255,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(241), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1294), }, [155] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(155), [sym_block_comment] = STATE(155), [sym_line_comment] = STATE(155), [sym_compiler_directive_decl] = STATE(155), [sym_fsi_directive_decl] = STATE(155), [sym_preproc_line] = STATE(155), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(1296), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -57202,39 +59374,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -57245,156 +59415,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [156] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(156), [sym_block_comment] = STATE(156), [sym_line_comment] = STATE(156), [sym_compiler_directive_decl] = STATE(156), [sym_fsi_directive_decl] = STATE(156), [sym_preproc_line] = STATE(156), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1298), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -57402,158 +59572,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1208), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1300), }, [157] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(157), [sym_block_comment] = STATE(157), [sym_line_comment] = STATE(157), [sym_compiler_directive_decl] = STATE(157), [sym_fsi_directive_decl] = STATE(157), [sym_preproc_line] = STATE(157), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -57561,317 +59729,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(121), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1302), }, [158] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(158), [sym_block_comment] = STATE(158), [sym_line_comment] = STATE(158), [sym_compiler_directive_decl] = STATE(158), [sym_fsi_directive_decl] = STATE(158), [sym_preproc_line] = STATE(158), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_DOT_DOT] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [159] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(159), [sym_block_comment] = STATE(159), [sym_line_comment] = STATE(159), [sym_compiler_directive_decl] = STATE(159), [sym_fsi_directive_decl] = STATE(159), [sym_preproc_line] = STATE(159), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -57879,112 +60046,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1210), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [160] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(160), [sym_block_comment] = STATE(160), [sym_line_comment] = STATE(160), [sym_compiler_directive_decl] = STATE(160), [sym_fsi_directive_decl] = STATE(160), [sym_preproc_line] = STATE(160), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -57997,39 +60163,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -58040,157 +60205,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [161] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(161), [sym_block_comment] = STATE(161), [sym_line_comment] = STATE(161), [sym_compiler_directive_decl] = STATE(161), [sym_fsi_directive_decl] = STATE(161), [sym_preproc_line] = STATE(161), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(121), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58198,157 +60361,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(868), + [sym__newline] = ACTIONS(1202), }, [162] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(162), [sym_block_comment] = STATE(162), [sym_line_comment] = STATE(162), [sym_compiler_directive_decl] = STATE(162), [sym_fsi_directive_decl] = STATE(162), [sym_preproc_line] = STATE(162), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58356,158 +60519,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1214), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1398), }, [163] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(163), [sym_block_comment] = STATE(163), [sym_line_comment] = STATE(163), [sym_compiler_directive_decl] = STATE(163), [sym_fsi_directive_decl] = STATE(163), [sym_preproc_line] = STATE(163), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(247), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58515,158 +60678,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(233), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [164] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(164), [sym_block_comment] = STATE(164), [sym_line_comment] = STATE(164), [sym_compiler_directive_decl] = STATE(164), [sym_fsi_directive_decl] = STATE(164), [sym_preproc_line] = STATE(164), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(251), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58674,159 +60836,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(746), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(251), }, [165] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(165), [sym_block_comment] = STATE(165), [sym_line_comment] = STATE(165), [sym_compiler_directive_decl] = STATE(165), [sym_fsi_directive_decl] = STATE(165), [sym_preproc_line] = STATE(165), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58834,157 +60994,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(123), }, [166] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(166), [sym_block_comment] = STATE(166), [sym_line_comment] = STATE(166), [sym_compiler_directive_decl] = STATE(166), [sym_fsi_directive_decl] = STATE(166), [sym_preproc_line] = STATE(166), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -58992,158 +61151,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(223), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1400), }, [167] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(167), [sym_block_comment] = STATE(167), [sym_line_comment] = STATE(167), [sym_compiler_directive_decl] = STATE(167), [sym_fsi_directive_decl] = STATE(167), [sym_preproc_line] = STATE(167), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -59151,318 +61310,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(219), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [168] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(168), [sym_block_comment] = STATE(168), [sym_line_comment] = STATE(168), [sym_compiler_directive_decl] = STATE(168), [sym_fsi_directive_decl] = STATE(168), [sym_preproc_line] = STATE(168), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [169] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(169), [sym_block_comment] = STATE(169), [sym_line_comment] = STATE(169), [sym_compiler_directive_decl] = STATE(169), [sym_fsi_directive_decl] = STATE(169), [sym_preproc_line] = STATE(169), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1408), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -59470,157 +61626,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(1304), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [170] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(170), [sym_block_comment] = STATE(170), [sym_line_comment] = STATE(170), [sym_compiler_directive_decl] = STATE(170), [sym_fsi_directive_decl] = STATE(170), [sym_preproc_line] = STATE(170), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -59628,158 +61783,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1306), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1410), }, [171] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(171), [sym_block_comment] = STATE(171), [sym_line_comment] = STATE(171), [sym_compiler_directive_decl] = STATE(171), [sym_fsi_directive_decl] = STATE(171), [sym_preproc_line] = STATE(171), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -59787,113 +61942,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1308), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [172] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(172), [sym_block_comment] = STATE(172), [sym_line_comment] = STATE(172), [sym_compiler_directive_decl] = STATE(172), [sym_fsi_directive_decl] = STATE(172), [sym_preproc_line] = STATE(172), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), + }, + [173] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_line_comment] = STATE(173), + [sym_compiler_directive_decl] = STATE(173), + [sym_fsi_directive_decl] = STATE(173), + [sym_preproc_line] = STATE(173), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1310), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -59906,38 +62217,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -59948,315 +62259,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1312), - }, - [173] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), - [sym_xml_doc] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_line_comment] = STATE(173), - [sym_compiler_directive_decl] = STATE(173), - [sym_fsi_directive_decl] = STATE(173), - [sym_preproc_line] = STATE(173), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym__newline] = ACTIONS(225), }, [174] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(174), [sym_block_comment] = STATE(174), [sym_line_comment] = STATE(174), [sym_compiler_directive_decl] = STATE(174), [sym_fsi_directive_decl] = STATE(174), [sym_preproc_line] = STATE(174), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -60264,159 +62416,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1314), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [175] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(175), [sym_block_comment] = STATE(175), [sym_line_comment] = STATE(175), [sym_compiler_directive_decl] = STATE(175), [sym_fsi_directive_decl] = STATE(175), [sym_preproc_line] = STATE(175), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1416), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -60424,158 +62574,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [176] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(176), [sym_block_comment] = STATE(176), [sym_line_comment] = STATE(176), [sym_compiler_directive_decl] = STATE(176), [sym_fsi_directive_decl] = STATE(176), [sym_preproc_line] = STATE(176), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(229), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -60583,157 +62731,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1418), }, [177] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(177), [sym_block_comment] = STATE(177), [sym_line_comment] = STATE(177), [sym_compiler_directive_decl] = STATE(177), [sym_fsi_directive_decl] = STATE(177), [sym_preproc_line] = STATE(177), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -60741,158 +62889,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1318), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1420), }, [178] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(178), [sym_block_comment] = STATE(178), [sym_line_comment] = STATE(178), [sym_compiler_directive_decl] = STATE(178), [sym_fsi_directive_decl] = STATE(178), [sym_preproc_line] = STATE(178), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -60900,318 +63047,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1320), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1422), }, [179] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(179), [sym_block_comment] = STATE(179), [sym_line_comment] = STATE(179), [sym_compiler_directive_decl] = STATE(179), [sym_fsi_directive_decl] = STATE(179), [sym_preproc_line] = STATE(179), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_AT_GT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [180] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(180), [sym_block_comment] = STATE(180), [sym_line_comment] = STATE(180), [sym_compiler_directive_decl] = STATE(180), [sym_fsi_directive_decl] = STATE(180), [sym_preproc_line] = STATE(180), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(147), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -61219,157 +63364,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(123), }, [181] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(181), [sym_block_comment] = STATE(181), [sym_line_comment] = STATE(181), [sym_compiler_directive_decl] = STATE(181), [sym_fsi_directive_decl] = STATE(181), [sym_preproc_line] = STATE(181), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(219), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -61377,158 +63522,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1326), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [182] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(182), [sym_block_comment] = STATE(182), [sym_line_comment] = STATE(182), [sym_compiler_directive_decl] = STATE(182), [sym_fsi_directive_decl] = STATE(182), [sym_preproc_line] = STATE(182), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(253), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -61536,158 +63680,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1328), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(251), }, [183] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(183), [sym_block_comment] = STATE(183), [sym_line_comment] = STATE(183), [sym_compiler_directive_decl] = STATE(183), [sym_fsi_directive_decl] = STATE(183), [sym_preproc_line] = STATE(183), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(249), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -61695,158 +63838,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1330), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [184] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(184), [sym_block_comment] = STATE(184), [sym_line_comment] = STATE(184), [sym_compiler_directive_decl] = STATE(184), [sym_fsi_directive_decl] = STATE(184), [sym_preproc_line] = STATE(184), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -61854,158 +63996,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(734), - [sym__dedent] = ACTIONS(734), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [185] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(185), [sym_block_comment] = STATE(185), [sym_line_comment] = STATE(185), [sym_compiler_directive_decl] = STATE(185), [sym_fsi_directive_decl] = STATE(185), [sym_preproc_line] = STATE(185), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62013,158 +64154,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1332), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [186] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(186), [sym_block_comment] = STATE(186), [sym_line_comment] = STATE(186), [sym_compiler_directive_decl] = STATE(186), [sym_fsi_directive_decl] = STATE(186), [sym_preproc_line] = STATE(186), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_AT_GT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), + }, + [187] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_line_comment] = STATE(187), + [sym_compiler_directive_decl] = STATE(187), + [sym_fsi_directive_decl] = STATE(187), + [sym_preproc_line] = STATE(187), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1428), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62172,318 +64470,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1334), - }, - [187] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), - [sym_xml_doc] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_line_comment] = STATE(187), - [sym_compiler_directive_decl] = STATE(187), - [sym_fsi_directive_decl] = STATE(187), - [sym_preproc_line] = STATE(187), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_DASH_GT] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1430), }, [188] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(188), [sym_block_comment] = STATE(188), [sym_line_comment] = STATE(188), [sym_compiler_directive_decl] = STATE(188), [sym_fsi_directive_decl] = STATE(188), [sym_preproc_line] = STATE(188), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62491,157 +64628,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(1304), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [189] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(189), [sym_block_comment] = STATE(189), [sym_line_comment] = STATE(189), [sym_compiler_directive_decl] = STATE(189), [sym_fsi_directive_decl] = STATE(189), [sym_preproc_line] = STATE(189), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62649,158 +64785,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1336), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1434), }, [190] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(190), [sym_block_comment] = STATE(190), [sym_line_comment] = STATE(190), [sym_compiler_directive_decl] = STATE(190), [sym_fsi_directive_decl] = STATE(190), [sym_preproc_line] = STATE(190), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1436), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62808,159 +64944,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1338), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [191] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(191), [sym_block_comment] = STATE(191), [sym_line_comment] = STATE(191), [sym_compiler_directive_decl] = STATE(191), [sym_fsi_directive_decl] = STATE(191), [sym_preproc_line] = STATE(191), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -62968,316 +65101,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1438), }, [192] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(192), [sym_block_comment] = STATE(192), [sym_line_comment] = STATE(192), [sym_compiler_directive_decl] = STATE(192), [sym_fsi_directive_decl] = STATE(192), [sym_preproc_line] = STATE(192), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(221), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(219), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [193] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(193), [sym_block_comment] = STATE(193), [sym_line_comment] = STATE(193), [sym_compiler_directive_decl] = STATE(193), [sym_fsi_directive_decl] = STATE(193), [sym_preproc_line] = STATE(193), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -63285,317 +65418,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(227), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [194] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(194), [sym_block_comment] = STATE(194), [sym_line_comment] = STATE(194), [sym_compiler_directive_decl] = STATE(194), [sym_fsi_directive_decl] = STATE(194), [sym_preproc_line] = STATE(194), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_DASH_GT] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(239), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [195] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(195), [sym_block_comment] = STATE(195), [sym_line_comment] = STATE(195), [sym_compiler_directive_decl] = STATE(195), [sym_fsi_directive_decl] = STATE(195), [sym_preproc_line] = STATE(195), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -63603,159 +65733,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1340), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1448), }, [196] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(196), [sym_block_comment] = STATE(196), [sym_line_comment] = STATE(196), [sym_compiler_directive_decl] = STATE(196), [sym_fsi_directive_decl] = STATE(196), [sym_preproc_line] = STATE(196), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -63763,317 +65892,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [197] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(197), [sym_block_comment] = STATE(197), [sym_line_comment] = STATE(197), [sym_compiler_directive_decl] = STATE(197), [sym_fsi_directive_decl] = STATE(197), [sym_preproc_line] = STATE(197), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1344), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_AT_GT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [198] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(198), [sym_block_comment] = STATE(198), [sym_line_comment] = STATE(198), [sym_compiler_directive_decl] = STATE(198), [sym_fsi_directive_decl] = STATE(198), [sym_preproc_line] = STATE(198), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -64081,158 +66207,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(1304), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1452), }, [199] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(199), [sym_block_comment] = STATE(199), [sym_line_comment] = STATE(199), [sym_compiler_directive_decl] = STATE(199), [sym_fsi_directive_decl] = STATE(199), [sym_preproc_line] = STATE(199), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -64240,157 +66366,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [200] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(200), [sym_block_comment] = STATE(200), [sym_line_comment] = STATE(200), [sym_compiler_directive_decl] = STATE(200), [sym_fsi_directive_decl] = STATE(200), [sym_preproc_line] = STATE(200), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(233), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -64398,159 +66524,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1350), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [201] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(201), [sym_block_comment] = STATE(201), [sym_line_comment] = STATE(201), [sym_compiler_directive_decl] = STATE(201), [sym_fsi_directive_decl] = STATE(201), [sym_preproc_line] = STATE(201), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1454), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -64558,316 +66682,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [202] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(202), [sym_block_comment] = STATE(202), [sym_line_comment] = STATE(202), [sym_compiler_directive_decl] = STATE(202), [sym_fsi_directive_decl] = STATE(202), [sym_preproc_line] = STATE(202), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1354), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [203] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(203), [sym_block_comment] = STATE(203), [sym_line_comment] = STATE(203), [sym_compiler_directive_decl] = STATE(203), [sym_fsi_directive_decl] = STATE(203), [sym_preproc_line] = STATE(203), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -64875,159 +66998,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1356), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [204] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(204), [sym_block_comment] = STATE(204), [sym_line_comment] = STATE(204), [sym_compiler_directive_decl] = STATE(204), [sym_fsi_directive_decl] = STATE(204), [sym_preproc_line] = STATE(204), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65035,157 +67155,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1458), }, [205] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(205), [sym_block_comment] = STATE(205), [sym_line_comment] = STATE(205), [sym_compiler_directive_decl] = STATE(205), [sym_fsi_directive_decl] = STATE(205), [sym_preproc_line] = STATE(205), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65193,159 +67313,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1360), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1460), }, [206] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(206), [sym_block_comment] = STATE(206), [sym_line_comment] = STATE(206), [sym_compiler_directive_decl] = STATE(206), [sym_fsi_directive_decl] = STATE(206), [sym_preproc_line] = STATE(206), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65353,158 +67471,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1462), }, [207] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(207), [sym_block_comment] = STATE(207), [sym_line_comment] = STATE(207), [sym_compiler_directive_decl] = STATE(207), [sym_fsi_directive_decl] = STATE(207), [sym_preproc_line] = STATE(207), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1364), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65512,158 +67629,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1366), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1464), }, [208] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(208), [sym_block_comment] = STATE(208), [sym_line_comment] = STATE(208), [sym_compiler_directive_decl] = STATE(208), [sym_fsi_directive_decl] = STATE(208), [sym_preproc_line] = STATE(208), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1466), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65671,158 +67788,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [209] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(209), [sym_block_comment] = STATE(209), [sym_line_comment] = STATE(209), [sym_compiler_directive_decl] = STATE(209), [sym_fsi_directive_decl] = STATE(209), [sym_preproc_line] = STATE(209), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65830,158 +67945,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1468), }, [210] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(210), [sym_block_comment] = STATE(210), [sym_line_comment] = STATE(210), [sym_compiler_directive_decl] = STATE(210), [sym_fsi_directive_decl] = STATE(210), [sym_preproc_line] = STATE(210), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1218), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(1242), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1244), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1246), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_LT_DASH] = ACTIONS(1262), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(229), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(1292), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(243), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -65989,158 +68104,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), - [sym__newline] = ACTIONS(1304), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(243), }, [211] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(211), [sym_block_comment] = STATE(211), [sym_line_comment] = STATE(211), [sym_compiler_directive_decl] = STATE(211), [sym_fsi_directive_decl] = STATE(211), [sym_preproc_line] = STATE(211), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66148,158 +68262,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [212] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(212), [sym_block_comment] = STATE(212), [sym_line_comment] = STATE(212), [sym_compiler_directive_decl] = STATE(212), [sym_fsi_directive_decl] = STATE(212), [sym_preproc_line] = STATE(212), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66307,158 +68419,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1472), }, [213] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(213), [sym_block_comment] = STATE(213), [sym_line_comment] = STATE(213), [sym_compiler_directive_decl] = STATE(213), [sym_fsi_directive_decl] = STATE(213), [sym_preproc_line] = STATE(213), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(245), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66466,158 +68578,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(243), }, [214] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(214), [sym_block_comment] = STATE(214), [sym_line_comment] = STATE(214), [sym_compiler_directive_decl] = STATE(214), [sym_fsi_directive_decl] = STATE(214), [sym_preproc_line] = STATE(214), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66625,157 +68735,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1474), }, [215] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(215), [sym_block_comment] = STATE(215), [sym_line_comment] = STATE(215), [sym_compiler_directive_decl] = STATE(215), [sym_fsi_directive_decl] = STATE(215), [sym_preproc_line] = STATE(215), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1476), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66783,159 +68894,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1380), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [216] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(216), [sym_block_comment] = STATE(216), [sym_line_comment] = STATE(216), [sym_compiler_directive_decl] = STATE(216), [sym_fsi_directive_decl] = STATE(216), [sym_preproc_line] = STATE(216), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -66943,158 +69052,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [217] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(217), [sym_block_comment] = STATE(217), [sym_line_comment] = STATE(217), [sym_compiler_directive_decl] = STATE(217), [sym_fsi_directive_decl] = STATE(217), [sym_preproc_line] = STATE(217), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(227), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67102,158 +69210,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [218] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(218), [sym_block_comment] = STATE(218), [sym_line_comment] = STATE(218), [sym_compiler_directive_decl] = STATE(218), [sym_fsi_directive_decl] = STATE(218), [sym_preproc_line] = STATE(218), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(221), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(221), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67261,158 +69367,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(219), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1480), }, [219] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(219), [sym_block_comment] = STATE(219), [sym_line_comment] = STATE(219), [sym_compiler_directive_decl] = STATE(219), [sym_fsi_directive_decl] = STATE(219), [sym_preproc_line] = STATE(219), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1384), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67420,158 +69525,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1386), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1482), }, [220] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(220), [sym_block_comment] = STATE(220), [sym_line_comment] = STATE(220), [sym_compiler_directive_decl] = STATE(220), [sym_fsi_directive_decl] = STATE(220), [sym_preproc_line] = STATE(220), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(225), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67579,158 +69683,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(223), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1484), }, [221] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(221), [sym_block_comment] = STATE(221), [sym_line_comment] = STATE(221), [sym_compiler_directive_decl] = STATE(221), [sym_fsi_directive_decl] = STATE(221), [sym_preproc_line] = STATE(221), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(235), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67738,158 +69841,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(874), + [sym__dedent] = ACTIONS(874), }, [222] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(222), [sym_block_comment] = STATE(222), [sym_line_comment] = STATE(222), [sym_compiler_directive_decl] = STATE(222), [sym_fsi_directive_decl] = STATE(222), [sym_preproc_line] = STATE(222), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1388), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1486), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -67897,158 +70000,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1390), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [223] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(223), [sym_block_comment] = STATE(223), [sym_line_comment] = STATE(223), [sym_compiler_directive_decl] = STATE(223), [sym_fsi_directive_decl] = STATE(223), [sym_preproc_line] = STATE(223), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1488), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68056,157 +70158,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1490), }, [224] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(224), [sym_block_comment] = STATE(224), [sym_line_comment] = STATE(224), [sym_compiler_directive_decl] = STATE(224), [sym_fsi_directive_decl] = STATE(224), [sym_preproc_line] = STATE(224), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68214,158 +70315,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1394), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1492), }, [225] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(225), [sym_block_comment] = STATE(225), [sym_line_comment] = STATE(225), [sym_compiler_directive_decl] = STATE(225), [sym_fsi_directive_decl] = STATE(225), [sym_preproc_line] = STATE(225), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68373,158 +70473,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(1396), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1494), }, [226] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(226), [sym_block_comment] = STATE(226), [sym_line_comment] = STATE(226), [sym_compiler_directive_decl] = STATE(226), [sym_fsi_directive_decl] = STATE(226), [sym_preproc_line] = STATE(226), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68532,158 +70631,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1398), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1496), }, [227] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(227), [sym_block_comment] = STATE(227), [sym_line_comment] = STATE(227), [sym_compiler_directive_decl] = STATE(227), [sym_fsi_directive_decl] = STATE(227), [sym_preproc_line] = STATE(227), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68691,158 +70790,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1400), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [228] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(228), [sym_block_comment] = STATE(228), [sym_line_comment] = STATE(228), [sym_compiler_directive_decl] = STATE(228), [sym_fsi_directive_decl] = STATE(228), [sym_preproc_line] = STATE(228), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1498), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -68850,158 +70948,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1402), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1500), }, [229] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(229), [sym_block_comment] = STATE(229), [sym_line_comment] = STATE(229), [sym_compiler_directive_decl] = STATE(229), [sym_fsi_directive_decl] = STATE(229), [sym_preproc_line] = STATE(229), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1502), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69009,159 +71106,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1404), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [230] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(230), [sym_block_comment] = STATE(230), [sym_line_comment] = STATE(230), [sym_compiler_directive_decl] = STATE(230), [sym_fsi_directive_decl] = STATE(230), [sym_preproc_line] = STATE(230), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69169,157 +71263,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1504), }, [231] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(231), [sym_block_comment] = STATE(231), [sym_line_comment] = STATE(231), [sym_compiler_directive_decl] = STATE(231), [sym_fsi_directive_decl] = STATE(231), [sym_preproc_line] = STATE(231), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69327,158 +71421,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1408), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1506), }, [232] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(232), [sym_block_comment] = STATE(232), [sym_line_comment] = STATE(232), [sym_compiler_directive_decl] = STATE(232), [sym_fsi_directive_decl] = STATE(232), [sym_preproc_line] = STATE(232), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69486,159 +71579,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1410), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1508), }, [233] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(233), [sym_block_comment] = STATE(233), [sym_line_comment] = STATE(233), [sym_compiler_directive_decl] = STATE(233), [sym_fsi_directive_decl] = STATE(233), [sym_preproc_line] = STATE(233), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69646,158 +71738,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [234] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(234), [sym_block_comment] = STATE(234), [sym_line_comment] = STATE(234), [sym_compiler_directive_decl] = STATE(234), [sym_fsi_directive_decl] = STATE(234), [sym_preproc_line] = STATE(234), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1512), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69805,157 +71896,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1416), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [235] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(235), [sym_block_comment] = STATE(235), [sym_line_comment] = STATE(235), [sym_compiler_directive_decl] = STATE(235), [sym_fsi_directive_decl] = STATE(235), [sym_preproc_line] = STATE(235), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -69963,158 +72054,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1418), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [236] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(236), [sym_block_comment] = STATE(236), [sym_line_comment] = STATE(236), [sym_compiler_directive_decl] = STATE(236), [sym_fsi_directive_decl] = STATE(236), [sym_preproc_line] = STATE(236), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70122,159 +72212,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1420), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [237] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(237), [sym_block_comment] = STATE(237), [sym_line_comment] = STATE(237), [sym_compiler_directive_decl] = STATE(237), [sym_fsi_directive_decl] = STATE(237), [sym_preproc_line] = STATE(237), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70282,157 +72370,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1424), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [238] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(238), [sym_block_comment] = STATE(238), [sym_line_comment] = STATE(238), [sym_compiler_directive_decl] = STATE(238), [sym_fsi_directive_decl] = STATE(238), [sym_preproc_line] = STATE(238), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70440,159 +72528,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1426), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1520), }, [239] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(239), [sym_block_comment] = STATE(239), [sym_line_comment] = STATE(239), [sym_compiler_directive_decl] = STATE(239), [sym_fsi_directive_decl] = STATE(239), [sym_preproc_line] = STATE(239), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70600,157 +72686,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [240] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(240), [sym_block_comment] = STATE(240), [sym_line_comment] = STATE(240), [sym_compiler_directive_decl] = STATE(240), [sym_fsi_directive_decl] = STATE(240), [sym_preproc_line] = STATE(240), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70758,158 +72844,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1430), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [241] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(241), [sym_block_comment] = STATE(241), [sym_line_comment] = STATE(241), [sym_compiler_directive_decl] = STATE(241), [sym_fsi_directive_decl] = STATE(241), [sym_preproc_line] = STATE(241), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -70917,158 +73002,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1432), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [242] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(242), [sym_block_comment] = STATE(242), [sym_line_comment] = STATE(242), [sym_compiler_directive_decl] = STATE(242), [sym_fsi_directive_decl] = STATE(242), [sym_preproc_line] = STATE(242), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -71076,158 +73159,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1434), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1528), }, [243] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(243), [sym_block_comment] = STATE(243), [sym_line_comment] = STATE(243), [sym_compiler_directive_decl] = STATE(243), [sym_fsi_directive_decl] = STATE(243), [sym_preproc_line] = STATE(243), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -71235,159 +73317,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1436), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1530), }, [244] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(244), [sym_block_comment] = STATE(244), [sym_line_comment] = STATE(244), [sym_compiler_directive_decl] = STATE(244), [sym_fsi_directive_decl] = STATE(244), [sym_preproc_line] = STATE(244), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(952), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -71395,317 +73475,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1532), }, [245] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(245), [sym_block_comment] = STATE(245), [sym_line_comment] = STATE(245), [sym_compiler_directive_decl] = STATE(245), [sym_fsi_directive_decl] = STATE(245), [sym_preproc_line] = STATE(245), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(225), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(223), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(223), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_AT_AT_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [246] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(246), [sym_block_comment] = STATE(246), [sym_line_comment] = STATE(246), [sym_compiler_directive_decl] = STATE(246), [sym_fsi_directive_decl] = STATE(246), [sym_preproc_line] = STATE(246), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(147), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -71713,158 +73792,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(123), }, [247] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(247), [sym_block_comment] = STATE(247), [sym_line_comment] = STATE(247), [sym_compiler_directive_decl] = STATE(247), [sym_fsi_directive_decl] = STATE(247), [sym_preproc_line] = STATE(247), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -71872,157 +73950,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(251), }, [248] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(248), [sym_block_comment] = STATE(248), [sym_line_comment] = STATE(248), [sym_compiler_directive_decl] = STATE(248), [sym_fsi_directive_decl] = STATE(248), [sym_preproc_line] = STATE(248), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_GT_RBRACK] = ACTIONS(1534), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72030,159 +74108,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(734), - [sym__dedent] = ACTIONS(734), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1534), }, [249] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(249), [sym_block_comment] = STATE(249), [sym_line_comment] = STATE(249), [sym_compiler_directive_decl] = STATE(249), [sym_fsi_directive_decl] = STATE(249), [sym_preproc_line] = STATE(249), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_GT_RBRACK] = ACTIONS(1444), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72190,157 +74266,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1444), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [250] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(250), [sym_block_comment] = STATE(250), [sym_line_comment] = STATE(250), [sym_compiler_directive_decl] = STATE(250), [sym_fsi_directive_decl] = STATE(250), [sym_preproc_line] = STATE(250), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(245), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72348,159 +74424,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1446), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(243), }, [251] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(251), [sym_block_comment] = STATE(251), [sym_line_comment] = STATE(251), [sym_compiler_directive_decl] = STATE(251), [sym_fsi_directive_decl] = STATE(251), [sym_preproc_line] = STATE(251), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(243), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(233), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72508,157 +74582,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), }, [252] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(252), [sym_block_comment] = STATE(252), [sym_line_comment] = STATE(252), [sym_compiler_directive_decl] = STATE(252), [sym_fsi_directive_decl] = STATE(252), [sym_preproc_line] = STATE(252), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72666,318 +74739,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1448), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1622), }, [253] = { - [sym_function_or_value_defn] = STATE(653), + [sym_function_or_value_defn] = STATE(837), [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(253), [sym_block_comment] = STATE(253), [sym_line_comment] = STATE(253), [sym_compiler_directive_decl] = STATE(253), [sym_fsi_directive_decl] = STATE(253), [sym_preproc_line] = STATE(253), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(237), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_DASH_GT] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [254] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(254), [sym_block_comment] = STATE(254), [sym_line_comment] = STATE(254), [sym_compiler_directive_decl] = STATE(254), [sym_fsi_directive_decl] = STATE(254), [sym_preproc_line] = STATE(254), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1450), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -72985,316 +75055,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1624), }, [255] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(255), [sym_block_comment] = STATE(255), [sym_line_comment] = STATE(255), [sym_compiler_directive_decl] = STATE(255), [sym_fsi_directive_decl] = STATE(255), [sym_preproc_line] = STATE(255), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1452), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_DASH_GT] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [256] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(256), [sym_block_comment] = STATE(256), [sym_line_comment] = STATE(256), [sym_compiler_directive_decl] = STATE(256), [sym_fsi_directive_decl] = STATE(256), [sym_preproc_line] = STATE(256), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(1142), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1144), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1146), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_LT_DASH] = ACTIONS(1162), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_LPAREN2] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(1192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -73302,159 +75371,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(936), - [sym__newline] = ACTIONS(1204), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1626), }, [257] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(257), [sym_block_comment] = STATE(257), [sym_line_comment] = STATE(257), [sym_compiler_directive_decl] = STATE(257), [sym_fsi_directive_decl] = STATE(257), [sym_preproc_line] = STATE(257), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -73462,158 +75530,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1630), }, [258] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(258), [sym_block_comment] = STATE(258), [sym_line_comment] = STATE(258), [sym_compiler_directive_decl] = STATE(258), [sym_fsi_directive_decl] = STATE(258), [sym_preproc_line] = STATE(258), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -73621,112 +75688,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), }, [259] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(259), [sym_block_comment] = STATE(259), [sym_line_comment] = STATE(259), [sym_compiler_directive_decl] = STATE(259), [sym_fsi_directive_decl] = STATE(259), [sym_preproc_line] = STATE(259), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), + }, + [260] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_line_comment] = STATE(260), + [sym_compiler_directive_decl] = STATE(260), + [sym_fsi_directive_decl] = STATE(260), + [sym_preproc_line] = STATE(260), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -73739,38 +75963,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -73781,315 +76005,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), - }, - [260] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), - [sym_xml_doc] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_line_comment] = STATE(260), - [sym_compiler_directive_decl] = STATE(260), - [sym_fsi_directive_decl] = STATE(260), - [sym_preproc_line] = STATE(260), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(249), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(225), }, [261] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(261), [sym_block_comment] = STATE(261), [sym_line_comment] = STATE(261), [sym_compiler_directive_decl] = STATE(261), [sym_fsi_directive_decl] = STATE(261), [sym_preproc_line] = STATE(261), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -74097,158 +76162,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1458), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [262] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(262), [sym_block_comment] = STATE(262), [sym_line_comment] = STATE(262), [sym_compiler_directive_decl] = STATE(262), [sym_fsi_directive_decl] = STATE(262), [sym_preproc_line] = STATE(262), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -74256,158 +76320,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1352), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(251), }, [263] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(263), [sym_block_comment] = STATE(263), [sym_line_comment] = STATE(263), [sym_compiler_directive_decl] = STATE(263), [sym_fsi_directive_decl] = STATE(263), [sym_preproc_line] = STATE(263), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(147), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -74415,318 +76478,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1460), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(123), }, [264] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(264), [sym_block_comment] = STATE(264), [sym_line_comment] = STATE(264), [sym_compiler_directive_decl] = STATE(264), [sym_fsi_directive_decl] = STATE(264), [sym_preproc_line] = STATE(264), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [265] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(265), [sym_block_comment] = STATE(265), [sym_line_comment] = STATE(265), [sym_compiler_directive_decl] = STATE(265), [sym_fsi_directive_decl] = STATE(265), [sym_preproc_line] = STATE(265), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1464), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -74734,158 +76794,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1466), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [266] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(266), [sym_block_comment] = STATE(266), [sym_line_comment] = STATE(266), [sym_compiler_directive_decl] = STATE(266), [sym_fsi_directive_decl] = STATE(266), [sym_preproc_line] = STATE(266), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1468), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1640), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -74893,158 +76952,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1470), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [267] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(267), [sym_block_comment] = STATE(267), [sym_line_comment] = STATE(267), [sym_compiler_directive_decl] = STATE(267), [sym_fsi_directive_decl] = STATE(267), [sym_preproc_line] = STATE(267), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(151), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -75052,157 +77109,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(121), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1406), }, [268] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(268), [sym_block_comment] = STATE(268), [sym_line_comment] = STATE(268), [sym_compiler_directive_decl] = STATE(268), [sym_fsi_directive_decl] = STATE(268), [sym_preproc_line] = STATE(268), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -75210,317 +77268,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1472), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [269] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(253), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_infix_op] = STATE(612), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(269), [sym_block_comment] = STATE(269), [sym_line_comment] = STATE(269), [sym_compiler_directive_decl] = STATE(269), [sym_fsi_directive_decl] = STATE(269), [sym_preproc_line] = STATE(269), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_sequential_expression_repeat1] = STATE(2052), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1636), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [270] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(270), [sym_block_comment] = STATE(270), [sym_line_comment] = STATE(270), [sym_compiler_directive_decl] = STATE(270), [sym_fsi_directive_decl] = STATE(270), [sym_preproc_line] = STATE(270), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1642), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -75528,159 +77584,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(1474), - [sym__dedent] = ACTIONS(1474), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [271] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(271), [sym_block_comment] = STATE(271), [sym_line_comment] = STATE(271), [sym_compiler_directive_decl] = STATE(271), [sym_fsi_directive_decl] = STATE(271), [sym_preproc_line] = STATE(271), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -75688,158 +77742,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [272] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(272), [sym_block_comment] = STATE(272), [sym_line_comment] = STATE(272), [sym_compiler_directive_decl] = STATE(272), [sym_fsi_directive_decl] = STATE(272), [sym_preproc_line] = STATE(272), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -75847,157 +77899,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1644), }, [273] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(273), [sym_block_comment] = STATE(273), [sym_line_comment] = STATE(273), [sym_compiler_directive_decl] = STATE(273), [sym_fsi_directive_decl] = STATE(273), [sym_preproc_line] = STATE(273), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -76005,159 +78057,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1480), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1646), }, [274] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(274), [sym_block_comment] = STATE(274), [sym_line_comment] = STATE(274), [sym_compiler_directive_decl] = STATE(274), [sym_fsi_directive_decl] = STATE(274), [sym_preproc_line] = STATE(274), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -76165,317 +78216,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), }, [275] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(275), [sym_block_comment] = STATE(275), [sym_line_comment] = STATE(275), [sym_compiler_directive_decl] = STATE(275), [sym_fsi_directive_decl] = STATE(275), [sym_preproc_line] = STATE(275), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_do] = ACTIONS(237), - [anon_sym_let] = ACTIONS(237), - [anon_sym_let_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_null] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_COLON_QMARK] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_LBRACE_PIPE] = ACTIONS(239), - [anon_sym_new] = ACTIONS(237), - [anon_sym_return_BANG] = ACTIONS(239), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_yield_BANG] = ACTIONS(239), - [anon_sym_lazy] = ACTIONS(237), - [anon_sym_assert] = ACTIONS(237), - [anon_sym_upcast] = ACTIONS(237), - [anon_sym_downcast] = ACTIONS(237), - [anon_sym_LT_AT] = ACTIONS(237), - [anon_sym_AT_GT] = ACTIONS(237), - [anon_sym_LT_AT_AT] = ACTIONS(237), - [anon_sym_AT_AT_GT] = ACTIONS(237), - [anon_sym_COLON_GT] = ACTIONS(239), - [anon_sym_COLON_QMARK_GT] = ACTIONS(239), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_try] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_match_BANG] = ACTIONS(239), - [anon_sym_function] = ACTIONS(237), - [anon_sym_LT_DASH] = ACTIONS(237), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(237), - [anon_sym_use_BANG] = ACTIONS(239), - [anon_sym_do_BANG] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(237), - [anon_sym_LPAREN2] = ACTIONS(239), - [anon_sym_or] = ACTIONS(237), - [aux_sym_char_token1] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [anon_sym_AT_DQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [sym_bool] = ACTIONS(237), - [sym_unit] = ACTIONS(237), - [anon_sym_LPAREN_PIPE] = ACTIONS(237), - [sym_op_identifier] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_PLUS_DOT] = ACTIONS(237), - [anon_sym_DASH_DOT] = ACTIONS(237), - [anon_sym_PERCENT] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(239), - [aux_sym_prefix_op_token1] = ACTIONS(237), - [aux_sym_infix_op_token1] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_COLON_EQ] = ACTIONS(239), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_QMARK_LT_DASH] = ACTIONS(237), - [sym_int] = ACTIONS(237), - [sym_xint] = ACTIONS(239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(239), - [anon_sym_POUNDendif] = ACTIONS(239), - [sym__newline] = ACTIONS(239), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1648), }, [276] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(276), [sym_block_comment] = STATE(276), [sym_line_comment] = STATE(276), [sym_compiler_directive_decl] = STATE(276), [sym_fsi_directive_decl] = STATE(276), [sym_preproc_line] = STATE(276), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(986), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -76483,316 +78532,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [277] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(277), [sym_block_comment] = STATE(277), [sym_line_comment] = STATE(277), [sym_compiler_directive_decl] = STATE(277), [sym_fsi_directive_decl] = STATE(277), [sym_preproc_line] = STATE(277), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_return] = ACTIONS(249), - [anon_sym_do] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_let_BANG] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(251), - [anon_sym_null] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_COLON_QMARK] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_LBRACK_PIPE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_LBRACE_PIPE] = ACTIONS(251), - [anon_sym_new] = ACTIONS(249), - [anon_sym_return_BANG] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(249), - [anon_sym_yield_BANG] = ACTIONS(251), - [anon_sym_lazy] = ACTIONS(249), - [anon_sym_assert] = ACTIONS(249), - [anon_sym_upcast] = ACTIONS(249), - [anon_sym_downcast] = ACTIONS(249), - [anon_sym_LT_AT] = ACTIONS(249), - [anon_sym_AT_GT] = ACTIONS(249), - [anon_sym_LT_AT_AT] = ACTIONS(249), - [anon_sym_AT_AT_GT] = ACTIONS(249), - [anon_sym_COLON_GT] = ACTIONS(251), - [anon_sym_COLON_QMARK_GT] = ACTIONS(251), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(249), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fun] = ACTIONS(249), - [anon_sym_try] = ACTIONS(249), - [anon_sym_match] = ACTIONS(249), - [anon_sym_match_BANG] = ACTIONS(251), - [anon_sym_function] = ACTIONS(249), - [anon_sym_LT_DASH] = ACTIONS(249), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(249), - [anon_sym_use_BANG] = ACTIONS(251), - [anon_sym_do_BANG] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(249), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_or] = ACTIONS(249), - [aux_sym_char_token1] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_AT_DQUOTE] = ACTIONS(251), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [sym_bool] = ACTIONS(249), - [sym_unit] = ACTIONS(249), - [anon_sym_LPAREN_PIPE] = ACTIONS(249), - [sym_op_identifier] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_DOT] = ACTIONS(249), - [anon_sym_DASH_DOT] = ACTIONS(249), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(251), - [aux_sym_prefix_op_token1] = ACTIONS(249), - [aux_sym_infix_op_token1] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_COLON_EQ] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_QMARK_LT_DASH] = ACTIONS(249), - [sym_int] = ACTIONS(249), - [sym_xint] = ACTIONS(251), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(251), - [anon_sym_POUNDendif] = ACTIONS(251), - [sym__newline] = ACTIONS(251), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_AT_AT_GT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [278] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(278), [sym_block_comment] = STATE(278), [sym_line_comment] = STATE(278), [sym_compiler_directive_decl] = STATE(278), [sym_fsi_directive_decl] = STATE(278), [sym_preproc_line] = STATE(278), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1652), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -76800,158 +78848,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1484), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1654), }, [279] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(279), [sym_block_comment] = STATE(279), [sym_line_comment] = STATE(279), [sym_compiler_directive_decl] = STATE(279), [sym_fsi_directive_decl] = STATE(279), [sym_preproc_line] = STATE(279), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -76959,158 +79005,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1486), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1656), }, [280] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(280), [sym_block_comment] = STATE(280), [sym_line_comment] = STATE(280), [sym_compiler_directive_decl] = STATE(280), [sym_fsi_directive_decl] = STATE(280), [sym_preproc_line] = STATE(280), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1658), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -77118,158 +79164,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1488), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [281] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(281), [sym_block_comment] = STATE(281), [sym_line_comment] = STATE(281), [sym_compiler_directive_decl] = STATE(281), [sym_fsi_directive_decl] = STATE(281), [sym_preproc_line] = STATE(281), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -77277,159 +79321,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1490), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1660), }, [282] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(282), [sym_block_comment] = STATE(282), [sym_line_comment] = STATE(282), [sym_compiler_directive_decl] = STATE(282), [sym_fsi_directive_decl] = STATE(282), [sym_preproc_line] = STATE(282), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1492), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -77437,316 +79480,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1494), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [283] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(275), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_infix_op] = STATE(631), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(283), [sym_block_comment] = STATE(283), [sym_line_comment] = STATE(283), [sym_compiler_directive_decl] = STATE(283), [sym_fsi_directive_decl] = STATE(283), [sym_preproc_line] = STATE(283), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_sequential_expression_repeat1] = STATE(2054), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(245), - [anon_sym_return] = ACTIONS(245), - [anon_sym_do] = ACTIONS(245), - [anon_sym_let] = ACTIONS(245), - [anon_sym_let_BANG] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(247), - [anon_sym_null] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_COLON_QMARK] = ACTIONS(245), - [anon_sym_COLON_COLON] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_LBRACK_PIPE] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_LBRACE_PIPE] = ACTIONS(247), - [anon_sym_new] = ACTIONS(245), - [anon_sym_return_BANG] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_yield_BANG] = ACTIONS(247), - [anon_sym_lazy] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(245), - [anon_sym_upcast] = ACTIONS(245), - [anon_sym_downcast] = ACTIONS(245), - [anon_sym_LT_AT] = ACTIONS(245), - [anon_sym_AT_GT] = ACTIONS(245), - [anon_sym_LT_AT_AT] = ACTIONS(245), - [anon_sym_AT_AT_GT] = ACTIONS(245), - [anon_sym_COLON_GT] = ACTIONS(247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(247), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_fun] = ACTIONS(245), - [anon_sym_try] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_match_BANG] = ACTIONS(247), - [anon_sym_function] = ACTIONS(245), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_DOT_LBRACK] = ACTIONS(1164), - [anon_sym_DOT] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(245), - [anon_sym_use_BANG] = ACTIONS(247), - [anon_sym_do_BANG] = ACTIONS(247), - [anon_sym_begin] = ACTIONS(245), - [anon_sym_LPAREN2] = ACTIONS(247), - [anon_sym_or] = ACTIONS(245), - [aux_sym_char_token1] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(245), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_AT_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(247), - [sym_bool] = ACTIONS(245), - [sym_unit] = ACTIONS(245), - [anon_sym_LPAREN_PIPE] = ACTIONS(245), - [sym_op_identifier] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_PLUS_DOT] = ACTIONS(245), - [anon_sym_DASH_DOT] = ACTIONS(245), - [anon_sym_PERCENT] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_TILDE] = ACTIONS(247), - [aux_sym_prefix_op_token1] = ACTIONS(245), - [aux_sym_infix_op_token1] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_COLON_EQ] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(245), - [sym_int] = ACTIONS(245), - [sym_xint] = ACTIONS(247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(247), - [anon_sym_POUNDendif] = ACTIONS(247), - [sym__newline] = ACTIONS(247), - }, - [284] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_line_comment] = STATE(284), - [sym_compiler_directive_decl] = STATE(284), - [sym_fsi_directive_decl] = STATE(284), - [sym_preproc_line] = STATE(284), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -77754,317 +79637,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1496), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1664), + }, + [284] = { + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), + [sym_xml_doc] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_line_comment] = STATE(284), + [sym_compiler_directive_decl] = STATE(284), + [sym_fsi_directive_decl] = STATE(284), + [sym_preproc_line] = STATE(284), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [anon_sym_POUNDendif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [285] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(285), [sym_block_comment] = STATE(285), [sym_line_comment] = STATE(285), [sym_compiler_directive_decl] = STATE(285), [sym_fsi_directive_decl] = STATE(285), [sym_preproc_line] = STATE(285), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [anon_sym_POUNDendif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [286] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(286), [sym_block_comment] = STATE(286), [sym_line_comment] = STATE(286), [sym_compiler_directive_decl] = STATE(286), [sym_fsi_directive_decl] = STATE(286), [sym_preproc_line] = STATE(286), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78072,159 +80111,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1500), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1666), }, [287] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(287), [sym_block_comment] = STATE(287), [sym_line_comment] = STATE(287), [sym_compiler_directive_decl] = STATE(287), [sym_fsi_directive_decl] = STATE(287), [sym_preproc_line] = STATE(287), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78232,157 +80269,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1668), }, [288] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(288), [sym_block_comment] = STATE(288), [sym_line_comment] = STATE(288), [sym_compiler_directive_decl] = STATE(288), [sym_fsi_directive_decl] = STATE(288), [sym_preproc_line] = STATE(288), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78390,158 +80427,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1504), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(1670), + [sym__newline] = ACTIONS(1202), }, [289] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(289), [sym_block_comment] = STATE(289), [sym_line_comment] = STATE(289), [sym_compiler_directive_decl] = STATE(289), [sym_fsi_directive_decl] = STATE(289), [sym_preproc_line] = STATE(289), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78549,159 +80586,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1506), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [290] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(290), [sym_block_comment] = STATE(290), [sym_line_comment] = STATE(290), [sym_compiler_directive_decl] = STATE(290), [sym_fsi_directive_decl] = STATE(290), [sym_preproc_line] = STATE(290), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(986), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_end] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78709,158 +80744,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [291] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(291), [sym_block_comment] = STATE(291), [sym_line_comment] = STATE(291), [sym_compiler_directive_decl] = STATE(291), [sym_fsi_directive_decl] = STATE(291), [sym_preproc_line] = STATE(291), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -78868,157 +80901,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(1512), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1676), }, [292] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(292), [sym_block_comment] = STATE(292), [sym_line_comment] = STATE(292), [sym_compiler_directive_decl] = STATE(292), [sym_fsi_directive_decl] = STATE(292), [sym_preproc_line] = STATE(292), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79026,159 +81060,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1514), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [293] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(153), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_infix_op] = STATE(695), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(293), [sym_block_comment] = STATE(293), [sym_line_comment] = STATE(293), [sym_compiler_directive_decl] = STATE(293), [sym_fsi_directive_decl] = STATE(293), [sym_preproc_line] = STATE(293), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_sequential_expression_repeat1] = STATE(2105), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(1012), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(1014), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1016), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_LT_DASH] = ACTIONS(1032), - [anon_sym_DOT_LBRACK] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1106), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_LPAREN2] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(1062), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(1066), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79186,158 +81217,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - [sym__newline] = ACTIONS(1108), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(874), + [sym__dedent] = ACTIONS(874), }, [294] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(294), [sym_block_comment] = STATE(294), [sym_line_comment] = STATE(294), [sym_compiler_directive_decl] = STATE(294), [sym_fsi_directive_decl] = STATE(294), [sym_preproc_line] = STATE(294), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79345,158 +81376,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [295] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(173), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_infix_op] = STATE(586), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(295), [sym_block_comment] = STATE(295), [sym_line_comment] = STATE(295), [sym_compiler_directive_decl] = STATE(295), [sym_fsi_directive_decl] = STATE(295), [sym_preproc_line] = STATE(295), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_sequential_expression_repeat1] = STATE(1930), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(862), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(864), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(1086), - [anon_sym_COLON_QMARK_GT] = ACTIONS(1086), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_LT_DASH] = ACTIONS(1092), - [anon_sym_DOT_LBRACK] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_LPAREN2] = ACTIONS(898), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(912), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79504,157 +81533,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), - [sym__newline] = ACTIONS(1100), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1682), }, [296] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(128), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_infix_op] = STATE(746), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(296), [sym_block_comment] = STATE(296), [sym_line_comment] = STATE(296), [sym_compiler_directive_decl] = STATE(296), [sym_fsi_directive_decl] = STATE(296), [sym_preproc_line] = STATE(296), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_sequential_expression_repeat1] = STATE(1721), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(714), - [anon_sym_null] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(612), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(614), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(616), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_LT_DASH] = ACTIONS(722), - [anon_sym_DOT_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(648), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(664), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1684), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79662,112 +81692,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(730), - [sym__dedent] = ACTIONS(1522), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [297] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(297), [sym_block_comment] = STATE(297), [sym_line_comment] = STATE(297), [sym_compiler_directive_decl] = STATE(297), [sym_fsi_directive_decl] = STATE(297), [sym_preproc_line] = STATE(297), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -79780,38 +81809,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -79822,156 +81851,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [298] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(298), [sym_block_comment] = STATE(298), [sym_line_comment] = STATE(298), [sym_compiler_directive_decl] = STATE(298), [sym_fsi_directive_decl] = STATE(298), [sym_preproc_line] = STATE(298), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -79979,157 +82008,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [299] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(299), [sym_block_comment] = STATE(299), [sym_line_comment] = STATE(299), [sym_compiler_directive_decl] = STATE(299), [sym_fsi_directive_decl] = STATE(299), [sym_preproc_line] = STATE(299), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1690), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -80137,157 +82166,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [300] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(300), [sym_block_comment] = STATE(300), [sym_line_comment] = STATE(300), [sym_compiler_directive_decl] = STATE(300), [sym_fsi_directive_decl] = STATE(300), [sym_preproc_line] = STATE(300), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1530), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -80295,157 +82324,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [301] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(301), [sym_block_comment] = STATE(301), [sym_line_comment] = STATE(301), [sym_compiler_directive_decl] = STATE(301), [sym_fsi_directive_decl] = STATE(301), [sym_preproc_line] = STATE(301), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -80453,315 +82481,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1694), }, [302] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(302), [sym_block_comment] = STATE(302), [sym_line_comment] = STATE(302), [sym_compiler_directive_decl] = STATE(302), [sym_fsi_directive_decl] = STATE(302), [sym_preproc_line] = STATE(302), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1530), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [anon_sym_POUNDendif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [303] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(303), [sym_block_comment] = STATE(303), [sym_line_comment] = STATE(303), [sym_compiler_directive_decl] = STATE(303), [sym_fsi_directive_decl] = STATE(303), [sym_preproc_line] = STATE(303), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1688), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -80769,157 +82798,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [304] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(304), [sym_block_comment] = STATE(304), [sym_line_comment] = STATE(304), [sym_compiler_directive_decl] = STATE(304), [sym_fsi_directive_decl] = STATE(304), [sym_preproc_line] = STATE(304), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -80927,111 +82955,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1696), }, [305] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(305), [sym_block_comment] = STATE(305), [sym_line_comment] = STATE(305), [sym_compiler_directive_decl] = STATE(305), [sym_fsi_directive_decl] = STATE(305), [sym_preproc_line] = STATE(305), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1538), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1698), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -81044,38 +83074,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -81086,156 +83115,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(1700), }, [306] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(306), [sym_block_comment] = STATE(306), [sym_line_comment] = STATE(306), [sym_compiler_directive_decl] = STATE(306), [sym_fsi_directive_decl] = STATE(306), [sym_preproc_line] = STATE(306), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -81243,157 +83272,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [307] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(307), [sym_block_comment] = STATE(307), [sym_line_comment] = STATE(307), [sym_compiler_directive_decl] = STATE(307), [sym_fsi_directive_decl] = STATE(307), [sym_preproc_line] = STATE(307), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1542), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -81401,157 +83429,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1702), }, [308] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(308), [sym_block_comment] = STATE(308), [sym_line_comment] = STATE(308), [sym_compiler_directive_decl] = STATE(308), [sym_fsi_directive_decl] = STATE(308), [sym_preproc_line] = STATE(308), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1704), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -81559,157 +83588,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [309] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(309), [sym_block_comment] = STATE(309), [sym_line_comment] = STATE(309), [sym_compiler_directive_decl] = STATE(309), [sym_fsi_directive_decl] = STATE(309), [sym_preproc_line] = STATE(309), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(245), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -81717,157 +83746,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(243), }, [310] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(310), [sym_block_comment] = STATE(310), [sym_line_comment] = STATE(310), [sym_compiler_directive_decl] = STATE(310), [sym_fsi_directive_decl] = STATE(310), [sym_preproc_line] = STATE(310), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -81875,111 +83904,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [311] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(311), [sym_block_comment] = STATE(311), [sym_line_comment] = STATE(311), [sym_compiler_directive_decl] = STATE(311), [sym_fsi_directive_decl] = STATE(311), [sym_preproc_line] = STATE(311), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -81992,38 +84021,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -82034,110 +84063,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [312] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(312), [sym_block_comment] = STATE(312), [sym_line_comment] = STATE(312), [sym_compiler_directive_decl] = STATE(312), [sym_fsi_directive_decl] = STATE(312), [sym_preproc_line] = STATE(312), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -82150,38 +84179,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -82192,156 +84221,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [313] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(313), [sym_block_comment] = STATE(313), [sym_line_comment] = STATE(313), [sym_compiler_directive_decl] = STATE(313), [sym_fsi_directive_decl] = STATE(313), [sym_preproc_line] = STATE(313), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1554), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(233), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -82349,157 +84378,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [314] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(314), [sym_block_comment] = STATE(314), [sym_line_comment] = STATE(314), [sym_compiler_directive_decl] = STATE(314), [sym_fsi_directive_decl] = STATE(314), [sym_preproc_line] = STATE(314), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -82507,157 +84535,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1710), }, [315] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(315), [sym_block_comment] = STATE(315), [sym_line_comment] = STATE(315), [sym_compiler_directive_decl] = STATE(315), [sym_fsi_directive_decl] = STATE(315), [sym_preproc_line] = STATE(315), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1538), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -82665,157 +84693,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1712), }, [316] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(316), [sym_block_comment] = STATE(316), [sym_line_comment] = STATE(316), [sym_compiler_directive_decl] = STATE(316), [sym_fsi_directive_decl] = STATE(316), [sym_preproc_line] = STATE(316), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -82823,157 +84851,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1714), }, [317] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(317), [sym_block_comment] = STATE(317), [sym_line_comment] = STATE(317), [sym_compiler_directive_decl] = STATE(317), [sym_fsi_directive_decl] = STATE(317), [sym_preproc_line] = STATE(317), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -82981,157 +85010,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [318] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(318), [sym_block_comment] = STATE(318), [sym_line_comment] = STATE(318), [sym_compiler_directive_decl] = STATE(318), [sym_fsi_directive_decl] = STATE(318), [sym_preproc_line] = STATE(318), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1560), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1716), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -83139,111 +85168,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [319] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(319), [sym_block_comment] = STATE(319), [sym_line_comment] = STATE(319), [sym_compiler_directive_decl] = STATE(319), [sym_fsi_directive_decl] = STATE(319), [sym_preproc_line] = STATE(319), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -83256,38 +85286,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -83298,156 +85327,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(1720), }, [320] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(320), [sym_block_comment] = STATE(320), [sym_line_comment] = STATE(320), [sym_compiler_directive_decl] = STATE(320), [sym_fsi_directive_decl] = STATE(320), [sym_preproc_line] = STATE(320), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1564), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -83455,157 +85483,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1722), }, [321] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(321), [sym_block_comment] = STATE(321), [sym_line_comment] = STATE(321), [sym_compiler_directive_decl] = STATE(321), [sym_fsi_directive_decl] = STATE(321), [sym_preproc_line] = STATE(321), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1560), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -83613,157 +85642,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [322] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(322), [sym_block_comment] = STATE(322), [sym_line_comment] = STATE(322), [sym_compiler_directive_decl] = STATE(322), [sym_fsi_directive_decl] = STATE(322), [sym_preproc_line] = STATE(322), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1566), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -83771,157 +85799,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(219), + [sym__newline] = ACTIONS(1202), }, [323] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(323), [sym_block_comment] = STATE(323), [sym_line_comment] = STATE(323), [sym_compiler_directive_decl] = STATE(323), [sym_fsi_directive_decl] = STATE(323), [sym_preproc_line] = STATE(323), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1564), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -83929,157 +85957,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1726), }, [324] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(324), [sym_block_comment] = STATE(324), [sym_line_comment] = STATE(324), [sym_compiler_directive_decl] = STATE(324), [sym_fsi_directive_decl] = STATE(324), [sym_preproc_line] = STATE(324), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1032), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1024), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_COLON_GT] = ACTIONS(1054), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_LT_DASH] = ACTIONS(1070), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(1098), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -84087,111 +86116,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1108), + [sym__newline] = ACTIONS(1110), }, [325] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(325), [sym_block_comment] = STATE(325), [sym_line_comment] = STATE(325), [sym_compiler_directive_decl] = STATE(325), [sym_fsi_directive_decl] = STATE(325), [sym_preproc_line] = STATE(325), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -84204,38 +86234,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -84246,110 +86275,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [326] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(326), [sym_block_comment] = STATE(326), [sym_line_comment] = STATE(326), [sym_compiler_directive_decl] = STATE(326), [sym_fsi_directive_decl] = STATE(326), [sym_preproc_line] = STATE(326), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1570), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -84362,38 +86392,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -84404,156 +86433,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(1734), }, [327] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(192), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(734), + [sym_infix_op] = STATE(638), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(327), [sym_block_comment] = STATE(327), [sym_line_comment] = STATE(327), [sym_compiler_directive_decl] = STATE(327), [sym_fsi_directive_decl] = STATE(327), [sym_preproc_line] = STATE(327), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_sequential_expression_repeat1] = STATE(2080), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_COLON_GT] = ACTIONS(1568), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_LT_DASH] = ACTIONS(1584), + [anon_sym_DOT_LBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1736), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(1594), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(1608), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -84561,157 +86590,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1618), + [sym__newline] = ACTIONS(1620), }, [328] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(328), [sym_block_comment] = STATE(328), [sym_line_comment] = STATE(328), [sym_compiler_directive_decl] = STATE(328), [sym_fsi_directive_decl] = STATE(328), [sym_preproc_line] = STATE(328), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -84719,157 +86748,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(243), }, [329] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(329), [sym_block_comment] = STATE(329), [sym_line_comment] = STATE(329), [sym_compiler_directive_decl] = STATE(329), [sym_fsi_directive_decl] = STATE(329), [sym_preproc_line] = STATE(329), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1576), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(249), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -84877,157 +86906,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [330] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(330), [sym_block_comment] = STATE(330), [sym_line_comment] = STATE(330), [sym_compiler_directive_decl] = STATE(330), [sym_fsi_directive_decl] = STATE(330), [sym_preproc_line] = STATE(330), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1566), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85035,157 +87063,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1738), }, [331] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(197), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(796), + [sym_infix_op] = STATE(801), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(331), [sym_block_comment] = STATE(331), [sym_line_comment] = STATE(331), [sym_compiler_directive_decl] = STATE(331), [sym_fsi_directive_decl] = STATE(331), [sym_preproc_line] = STATE(331), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1578), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_sequential_expression_repeat1] = STATE(2062), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_AT_GT] = ACTIONS(1740), + [anon_sym_LT_AT_AT] = ACTIONS(1226), + [anon_sym_DOT] = ACTIONS(1228), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_COLON_GT] = ACTIONS(1236), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_LT_DASH] = ACTIONS(1252), + [anon_sym_DOT_LBRACK] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(1280), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85193,157 +87222,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1290), + [sym__newline] = ACTIONS(1292), }, [332] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(332), [sym_block_comment] = STATE(332), [sym_line_comment] = STATE(332), [sym_compiler_directive_decl] = STATE(332), [sym_fsi_directive_decl] = STATE(332), [sym_preproc_line] = STATE(332), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(253), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85351,157 +87380,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(251), }, [333] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(333), [sym_block_comment] = STATE(333), [sym_line_comment] = STATE(333), [sym_compiler_directive_decl] = STATE(333), [sym_fsi_directive_decl] = STATE(333), [sym_preproc_line] = STATE(333), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1554), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85509,157 +87537,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1742), }, [334] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(334), [sym_block_comment] = STATE(334), [sym_line_comment] = STATE(334), [sym_compiler_directive_decl] = STATE(334), [sym_fsi_directive_decl] = STATE(334), [sym_preproc_line] = STATE(334), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1576), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(147), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85667,157 +87696,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(123), }, [335] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(335), [sym_block_comment] = STATE(335), [sym_line_comment] = STATE(335), [sym_compiler_directive_decl] = STATE(335), [sym_fsi_directive_decl] = STATE(335), [sym_preproc_line] = STATE(335), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1542), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85825,157 +87854,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [336] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(336), [sym_block_comment] = STATE(336), [sym_line_comment] = STATE(336), [sym_compiler_directive_decl] = STATE(336), [sym_fsi_directive_decl] = STATE(336), [sym_preproc_line] = STATE(336), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -85983,111 +88012,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [337] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(337), [sym_block_comment] = STATE(337), [sym_line_comment] = STATE(337), [sym_compiler_directive_decl] = STATE(337), [sym_fsi_directive_decl] = STATE(337), [sym_preproc_line] = STATE(337), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1578), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -86100,38 +88129,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_end] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -86142,110 +88171,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [338] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(338), [sym_block_comment] = STATE(338), [sym_line_comment] = STATE(338), [sym_compiler_directive_decl] = STATE(338), [sym_fsi_directive_decl] = STATE(338), [sym_preproc_line] = STATE(338), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(860), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -86258,38 +88288,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -86300,110 +88329,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(225), }, [339] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(339), [sym_block_comment] = STATE(339), [sym_line_comment] = STATE(339), [sym_compiler_directive_decl] = STATE(339), [sym_fsi_directive_decl] = STATE(339), [sym_preproc_line] = STATE(339), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(1586), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1748), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_COLON_GT] = ACTIONS(161), [anon_sym_COLON_QMARK_GT] = ACTIONS(161), [anon_sym_for] = ACTIONS(163), @@ -86416,38 +88446,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(175), [anon_sym_LT_DASH] = ACTIONS(177), [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), @@ -86458,156 +88487,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [sym__newline] = ACTIONS(1750), }, [340] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(340), [sym_block_comment] = STATE(340), [sym_line_comment] = STATE(340), [sym_compiler_directive_decl] = STATE(340), [sym_fsi_directive_decl] = STATE(340), [sym_preproc_line] = STATE(340), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(139), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -86615,157 +88643,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(1752), + [sym__dedent] = ACTIONS(1752), }, [341] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(7), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_infix_op] = STATE(567), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(341), [sym_block_comment] = STATE(341), [sym_line_comment] = STATE(341), [sym_compiler_directive_decl] = STATE(341), [sym_fsi_directive_decl] = STATE(341), [sym_preproc_line] = STATE(341), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_sequential_expression_repeat1] = STATE(1081), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_COLON_QMARK] = ACTIONS(123), - [anon_sym_COLON_COLON] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(141), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(147), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(157), - [anon_sym_AT_GT] = ACTIONS(139), - [anon_sym_LT_AT_AT] = ACTIONS(159), - [anon_sym_AT_AT_GT] = ACTIONS(1586), - [anon_sym_COLON_GT] = ACTIONS(161), - [anon_sym_COLON_QMARK_GT] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_LT_DASH] = ACTIONS(177), - [anon_sym_DOT_LBRACK] = ACTIONS(179), - [anon_sym_DOT] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(183), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(193), - [anon_sym_or] = ACTIONS(139), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(207), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PLUS_DOT] = ACTIONS(141), - [anon_sym_DASH_DOT] = ACTIONS(141), - [anon_sym_PERCENT] = ACTIONS(141), - [anon_sym_AMP_AMP] = ACTIONS(141), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(41), - [aux_sym_infix_op_token1] = ACTIONS(139), - [anon_sym_PIPE_PIPE] = ACTIONS(139), - [anon_sym_BANG_EQ] = ACTIONS(139), - [anon_sym_COLON_EQ] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(139), - [anon_sym_QMARK_LT_DASH] = ACTIONS(139), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -86773,6701 +88801,7066 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(231), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1754), }, [342] = { - [sym_module_abbrev] = STATE(6012), - [sym_module_defn] = STATE(6012), - [sym_import_decl] = STATE(6012), - [sym_attributes] = STATE(5503), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(6012), - [sym_do] = STATE(6533), - [sym_function_or_value_defn] = STATE(479), - [sym__expression] = STATE(53), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_type_definition] = STATE(6012), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(342), [sym_block_comment] = STATE(342), [sym_line_comment] = STATE(342), [sym_compiler_directive_decl] = STATE(342), [sym_fsi_directive_decl] = STATE(342), [sym_preproc_line] = STATE(342), - [sym_preproc_if] = STATE(6012), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7333), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(397), - [anon_sym_module] = ACTIONS(1590), - [anon_sym_open] = ACTIONS(1592), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(401), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_let_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1612), - [anon_sym_POUNDload] = ACTIONS(1612), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1614), - [anon_sym_POUNDendif] = ACTIONS(1616), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1756), }, [343] = { - [sym_module_abbrev] = STATE(5926), - [sym_module_defn] = STATE(5926), - [sym_import_decl] = STATE(5926), - [sym_attributes] = STATE(5503), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(5926), - [sym_do] = STATE(6533), - [sym_function_or_value_defn] = STATE(479), - [sym__expression] = STATE(54), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_type_definition] = STATE(5926), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(343), [sym_block_comment] = STATE(343), [sym_line_comment] = STATE(343), [sym_compiler_directive_decl] = STATE(343), [sym_fsi_directive_decl] = STATE(343), [sym_preproc_line] = STATE(343), - [sym_preproc_if] = STATE(5926), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7230), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(397), - [anon_sym_module] = ACTIONS(1590), - [anon_sym_open] = ACTIONS(1592), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(401), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_let_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1612), - [anon_sym_POUNDload] = ACTIONS(1612), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1614), - [anon_sym_POUNDendif] = ACTIONS(1622), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1758), }, [344] = { - [sym_module_abbrev] = STATE(6107), - [sym_module_defn] = STATE(6107), - [sym_import_decl] = STATE(6107), - [sym_attributes] = STATE(5503), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(6107), - [sym_do] = STATE(6533), - [sym_function_or_value_defn] = STATE(479), - [sym__expression] = STATE(41), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_type_definition] = STATE(6107), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(344), [sym_block_comment] = STATE(344), [sym_line_comment] = STATE(344), [sym_compiler_directive_decl] = STATE(344), [sym_fsi_directive_decl] = STATE(344), [sym_preproc_line] = STATE(344), - [sym_preproc_if] = STATE(6107), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6903), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(397), - [anon_sym_module] = ACTIONS(1590), - [anon_sym_open] = ACTIONS(1592), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(401), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_let_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1612), - [anon_sym_POUNDload] = ACTIONS(1612), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1614), - [anon_sym_POUNDendif] = ACTIONS(1624), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1760), }, [345] = { - [sym_module_abbrev] = STATE(5909), - [sym_module_defn] = STATE(5909), - [sym_import_decl] = STATE(5909), - [sym_attributes] = STATE(5503), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(5909), - [sym_do] = STATE(6533), - [sym_function_or_value_defn] = STATE(479), - [sym__expression] = STATE(44), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_type_definition] = STATE(5909), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(345), [sym_block_comment] = STATE(345), [sym_line_comment] = STATE(345), [sym_compiler_directive_decl] = STATE(345), [sym_fsi_directive_decl] = STATE(345), [sym_preproc_line] = STATE(345), - [sym_preproc_if] = STATE(5909), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7229), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(397), - [anon_sym_module] = ACTIONS(1590), - [anon_sym_open] = ACTIONS(1592), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(401), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_let_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(1328), + [anon_sym_AT_AT_GT] = ACTIONS(233), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_COLON_GT] = ACTIONS(1338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_LT_DASH] = ACTIONS(1354), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(1382), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(1386), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1612), - [anon_sym_POUNDload] = ACTIONS(1612), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1614), - [anon_sym_POUNDendif] = ACTIONS(1626), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(1392), + [sym__newline] = ACTIONS(1394), }, [346] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(77), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(806), + [sym_infix_op] = STATE(804), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(346), [sym_block_comment] = STATE(346), [sym_line_comment] = STATE(346), [sym_compiler_directive_decl] = STATE(346), [sym_fsi_directive_decl] = STATE(346), [sym_preproc_line] = STATE(346), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(352), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1630), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_sequential_expression_repeat1] = STATE(2028), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_COLON_GT] = ACTIONS(626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(626), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(698), + [anon_sym_DOT_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_LPAREN2] = ACTIONS(656), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(672), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(676), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(862), + [sym__dedent] = ACTIONS(1296), }, [347] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(347), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(685), + [sym_infix_op] = STATE(759), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(347), [sym_block_comment] = STATE(347), [sym_line_comment] = STATE(347), [sym_compiler_directive_decl] = STATE(347), [sym_fsi_directive_decl] = STATE(347), [sym_preproc_line] = STATE(347), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(349), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1634), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1636), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_sequential_expression_repeat1] = STATE(2166), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_AT_AT_GT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(1330), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [348] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(348), [sym_block_comment] = STATE(348), [sym_line_comment] = STATE(348), [sym_compiler_directive_decl] = STATE(348), [sym_fsi_directive_decl] = STATE(348), [sym_preproc_line] = STATE(348), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(352), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1640), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1762), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1764), }, [349] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(253), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(571), + [sym_infix_op] = STATE(772), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(349), [sym_block_comment] = STATE(349), [sym_line_comment] = STATE(349), [sym_compiler_directive_decl] = STATE(349), [sym_fsi_directive_decl] = STATE(349), [sym_preproc_line] = STATE(349), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(352), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1644), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_sequential_expression_repeat1] = STATE(2185), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_null] = ACTIONS(742), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(992), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_COLON_GT] = ACTIONS(1002), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(223), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_LT_DASH] = ACTIONS(1008), + [anon_sym_DOT_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(782), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(792), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(806), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(810), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(816), + [sym__newline] = ACTIONS(1016), }, [350] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(350), [sym_block_comment] = STATE(350), [sym_line_comment] = STATE(350), [sym_compiler_directive_decl] = STATE(350), [sym_fsi_directive_decl] = STATE(350), [sym_preproc_line] = STATE(350), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(348), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(243), + [sym__newline] = ACTIONS(243), }, [351] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(351), [sym_block_comment] = STATE(351), [sym_line_comment] = STATE(351), [sym_compiler_directive_decl] = STATE(351), [sym_fsi_directive_decl] = STATE(351), [sym_preproc_line] = STATE(351), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(346), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(17), - [anon_sym_namespace] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(255), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(231), + [sym__newline] = ACTIONS(1202), }, [352] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(408), - [sym__expression] = STATE(17), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(352), [sym_block_comment] = STATE(352), [sym_line_comment] = STATE(352), [sym_compiler_directive_decl] = STATE(352), [sym_fsi_directive_decl] = STATE(352), [sym_preproc_line] = STATE(352), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(352), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1656), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_open] = ACTIONS(1664), - [anon_sym_LBRACK_LT] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1679), - [anon_sym_let_BANG] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_null] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_LBRACK_PIPE] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_LBRACE_PIPE] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1706), - [anon_sym_return_BANG] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1670), - [anon_sym_yield_BANG] = ACTIONS(1709), - [anon_sym_lazy] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_upcast] = ACTIONS(1670), - [anon_sym_downcast] = ACTIONS(1670), - [anon_sym_LT_AT] = ACTIONS(1712), - [anon_sym_LT_AT_AT] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_fun] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_match_BANG] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1742), - [anon_sym_use_BANG] = ACTIONS(1745), - [anon_sym_do_BANG] = ACTIONS(1748), - [anon_sym_begin] = ACTIONS(1751), - [aux_sym_char_token1] = ACTIONS(1754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1760), - [anon_sym_AT_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1766), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1769), - [sym_bool] = ACTIONS(1772), - [sym_unit] = ACTIONS(1775), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [sym_op_identifier] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS_DOT] = ACTIONS(1784), - [anon_sym_DASH_DOT] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1787), - [aux_sym_prefix_op_token1] = ACTIONS(1784), - [sym_int] = ACTIONS(1790), - [sym_xint] = ACTIONS(1793), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1796), - [anon_sym_POUNDload] = ACTIONS(1796), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1799), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(227), + [anon_sym_return] = ACTIONS(227), + [anon_sym_do] = ACTIONS(227), + [anon_sym_let] = ACTIONS(227), + [anon_sym_let_BANG] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_null] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_COLON_QMARK] = ACTIONS(227), + [anon_sym_COLON_COLON] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(227), + [anon_sym_LBRACK_PIPE] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LT_AT] = ACTIONS(227), + [anon_sym_LT_AT_AT] = ACTIONS(227), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(229), + [anon_sym_new] = ACTIONS(227), + [anon_sym_return_BANG] = ACTIONS(229), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_yield_BANG] = ACTIONS(229), + [anon_sym_lazy] = ACTIONS(227), + [anon_sym_assert] = ACTIONS(227), + [anon_sym_upcast] = ACTIONS(227), + [anon_sym_downcast] = ACTIONS(227), + [anon_sym_COLON_GT] = ACTIONS(229), + [anon_sym_COLON_QMARK_GT] = ACTIONS(229), + [anon_sym_for] = ACTIONS(227), + [anon_sym_while] = ACTIONS(227), + [anon_sym_if] = ACTIONS(227), + [anon_sym_fun] = ACTIONS(227), + [anon_sym_try] = ACTIONS(227), + [anon_sym_match] = ACTIONS(227), + [anon_sym_match_BANG] = ACTIONS(229), + [anon_sym_function] = ACTIONS(227), + [anon_sym_LT_DASH] = ACTIONS(227), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(227), + [anon_sym_use_BANG] = ACTIONS(229), + [anon_sym_do_BANG] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_begin] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_or] = ACTIONS(227), + [aux_sym_char_token1] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [anon_sym_AT_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(229), + [sym_bool] = ACTIONS(227), + [sym_unit] = ACTIONS(227), + [anon_sym_LPAREN_PIPE] = ACTIONS(227), + [sym_op_identifier] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_PLUS_DOT] = ACTIONS(227), + [anon_sym_DASH_DOT] = ACTIONS(227), + [anon_sym_PERCENT] = ACTIONS(227), + [anon_sym_AMP_AMP] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(229), + [aux_sym_prefix_op_token1] = ACTIONS(227), + [aux_sym_infix_op_token1] = ACTIONS(227), + [anon_sym_PIPE_PIPE] = ACTIONS(227), + [anon_sym_BANG_EQ] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(227), + [anon_sym_QMARK_LT_DASH] = ACTIONS(227), + [sym_int] = ACTIONS(227), + [sym_xint] = ACTIONS(229), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(229), + [sym__newline] = ACTIONS(229), }, [353] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(353), [sym_block_comment] = STATE(353), [sym_line_comment] = STATE(353), [sym_compiler_directive_decl] = STATE(353), [sym_fsi_directive_decl] = STATE(353), [sym_preproc_line] = STATE(353), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1828), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(1768), }, [354] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(354), [sym_block_comment] = STATE(354), [sym_line_comment] = STATE(354), [sym_compiler_directive_decl] = STATE(354), [sym_fsi_directive_decl] = STATE(354), [sym_preproc_line] = STATE(354), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(354), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_open] = ACTIONS(1664), - [anon_sym_LBRACK_LT] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1679), - [anon_sym_let_BANG] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_null] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_LBRACK_PIPE] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_LBRACE_PIPE] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_return_BANG] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1830), - [anon_sym_yield_BANG] = ACTIONS(1836), - [anon_sym_lazy] = ACTIONS(1830), - [anon_sym_assert] = ACTIONS(1830), - [anon_sym_upcast] = ACTIONS(1830), - [anon_sym_downcast] = ACTIONS(1830), - [anon_sym_LT_AT] = ACTIONS(1712), - [anon_sym_LT_AT_AT] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_fun] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_match_BANG] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_use_BANG] = ACTIONS(1842), - [anon_sym_do_BANG] = ACTIONS(1748), - [anon_sym_begin] = ACTIONS(1751), - [aux_sym_char_token1] = ACTIONS(1754), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1760), - [anon_sym_AT_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1766), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1769), - [sym_bool] = ACTIONS(1772), - [sym_unit] = ACTIONS(1775), - [anon_sym_LPAREN_PIPE] = ACTIONS(1778), - [sym_op_identifier] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS_DOT] = ACTIONS(1784), - [anon_sym_DASH_DOT] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1787), - [aux_sym_prefix_op_token1] = ACTIONS(1784), - [sym_int] = ACTIONS(1845), - [sym_xint] = ACTIONS(1848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1796), - [anon_sym_POUNDload] = ACTIONS(1796), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1799), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_return] = ACTIONS(239), + [anon_sym_do] = ACTIONS(239), + [anon_sym_let] = ACTIONS(239), + [anon_sym_let_BANG] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(239), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_null] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_COLON_QMARK] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_LBRACK_PIPE] = ACTIONS(241), + [anon_sym_LBRACE] = ACTIONS(239), + [anon_sym_LT_AT] = ACTIONS(239), + [anon_sym_LT_AT_AT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(241), + [anon_sym_new] = ACTIONS(239), + [anon_sym_return_BANG] = ACTIONS(241), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_yield_BANG] = ACTIONS(241), + [anon_sym_lazy] = ACTIONS(239), + [anon_sym_assert] = ACTIONS(239), + [anon_sym_upcast] = ACTIONS(239), + [anon_sym_downcast] = ACTIONS(239), + [anon_sym_COLON_GT] = ACTIONS(241), + [anon_sym_COLON_QMARK_GT] = ACTIONS(241), + [anon_sym_for] = ACTIONS(239), + [anon_sym_while] = ACTIONS(239), + [anon_sym_if] = ACTIONS(239), + [anon_sym_fun] = ACTIONS(239), + [anon_sym_try] = ACTIONS(239), + [anon_sym_match] = ACTIONS(239), + [anon_sym_match_BANG] = ACTIONS(241), + [anon_sym_function] = ACTIONS(239), + [anon_sym_LT_DASH] = ACTIONS(239), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(239), + [anon_sym_use_BANG] = ACTIONS(241), + [anon_sym_do_BANG] = ACTIONS(241), + [anon_sym_DOT_DOT] = ACTIONS(241), + [anon_sym_begin] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(241), + [anon_sym_or] = ACTIONS(239), + [aux_sym_char_token1] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_AT_DQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(241), + [sym_bool] = ACTIONS(239), + [sym_unit] = ACTIONS(239), + [anon_sym_LPAREN_PIPE] = ACTIONS(239), + [sym_op_identifier] = ACTIONS(239), + [anon_sym_PLUS] = ACTIONS(239), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_PLUS_DOT] = ACTIONS(239), + [anon_sym_DASH_DOT] = ACTIONS(239), + [anon_sym_PERCENT] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_TILDE] = ACTIONS(241), + [aux_sym_prefix_op_token1] = ACTIONS(239), + [aux_sym_infix_op_token1] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_COLON_EQ] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(239), + [anon_sym_QMARK_LT_DASH] = ACTIONS(239), + [sym_int] = ACTIONS(239), + [sym_xint] = ACTIONS(241), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(241), + [sym__newline] = ACTIONS(241), }, [355] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(355), [sym_block_comment] = STATE(355), [sym_line_comment] = STATE(355), [sym_compiler_directive_decl] = STATE(355), [sym_fsi_directive_decl] = STATE(355), [sym_preproc_line] = STATE(355), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1851), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(247), + [sym__newline] = ACTIONS(1202), }, [356] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(356), [sym_block_comment] = STATE(356), [sym_line_comment] = STATE(356), [sym_compiler_directive_decl] = STATE(356), [sym_fsi_directive_decl] = STATE(356), [sym_preproc_line] = STATE(356), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(354), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(251), + [sym__newline] = ACTIONS(251), }, [357] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(284), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(844), + [sym_infix_op] = STATE(771), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(357), [sym_block_comment] = STATE(357), [sym_line_comment] = STATE(357), [sym_compiler_directive_decl] = STATE(357), [sym_fsi_directive_decl] = STATE(357), [sym_preproc_line] = STATE(357), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_sequential_expression_repeat1] = STATE(2249), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(1136), + [anon_sym_DOT] = ACTIONS(1138), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_COLON_GT] = ACTIONS(1146), + [anon_sym_COLON_QMARK_GT] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_LT_DASH] = ACTIONS(1162), + [anon_sym_DOT_LBRACK] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_LPAREN2] = ACTIONS(1176), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(1190), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1855), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(123), + [sym__newline] = ACTIONS(123), }, [358] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(352), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(860), + [sym_infix_op] = STATE(815), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(358), [sym_block_comment] = STATE(358), [sym_line_comment] = STATE(358), [sym_compiler_directive_decl] = STATE(358), [sym_fsi_directive_decl] = STATE(358), [sym_preproc_line] = STATE(358), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1857), - [anon_sym_module] = ACTIONS(1860), - [anon_sym_open] = ACTIONS(1863), - [anon_sym_LBRACK_LT] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_do] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_let_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_LBRACK_PIPE] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LBRACE_PIPE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_return_BANG] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1866), - [anon_sym_yield_BANG] = ACTIONS(1902), - [anon_sym_lazy] = ACTIONS(1866), - [anon_sym_assert] = ACTIONS(1866), - [anon_sym_upcast] = ACTIONS(1866), - [anon_sym_downcast] = ACTIONS(1866), - [anon_sym_LT_AT] = ACTIONS(1905), - [anon_sym_LT_AT_AT] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_fun] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_match_BANG] = ACTIONS(1926), - [anon_sym_function] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_use_BANG] = ACTIONS(1935), - [anon_sym_do_BANG] = ACTIONS(1938), - [anon_sym_begin] = ACTIONS(1941), - [aux_sym_char_token1] = ACTIONS(1944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1950), - [anon_sym_AT_DQUOTE] = ACTIONS(1953), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1959), - [sym_bool] = ACTIONS(1962), - [sym_unit] = ACTIONS(1965), - [anon_sym_LPAREN_PIPE] = ACTIONS(1968), - [sym_op_identifier] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS_DOT] = ACTIONS(1784), - [anon_sym_DASH_DOT] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1787), - [aux_sym_prefix_op_token1] = ACTIONS(1784), - [sym_int] = ACTIONS(1974), - [sym_xint] = ACTIONS(1977), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1980), - [anon_sym_POUNDload] = ACTIONS(1980), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1983), - [sym__dedent] = ACTIONS(1654), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_sequential_expression_repeat1] = STATE(2092), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(235), + [anon_sym_return] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_let] = ACTIONS(235), + [anon_sym_let_BANG] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_null] = ACTIONS(235), + [anon_sym_QMARK] = ACTIONS(235), + [anon_sym_COLON_QMARK] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_LBRACK_PIPE] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LT_AT] = ACTIONS(235), + [anon_sym_LT_AT_AT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_LBRACE_PIPE] = ACTIONS(237), + [anon_sym_new] = ACTIONS(235), + [anon_sym_return_BANG] = ACTIONS(237), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_yield_BANG] = ACTIONS(237), + [anon_sym_lazy] = ACTIONS(235), + [anon_sym_assert] = ACTIONS(235), + [anon_sym_upcast] = ACTIONS(235), + [anon_sym_downcast] = ACTIONS(235), + [anon_sym_COLON_GT] = ACTIONS(237), + [anon_sym_COLON_QMARK_GT] = ACTIONS(237), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(235), + [anon_sym_if] = ACTIONS(235), + [anon_sym_fun] = ACTIONS(235), + [anon_sym_try] = ACTIONS(235), + [anon_sym_match] = ACTIONS(235), + [anon_sym_match_BANG] = ACTIONS(237), + [anon_sym_function] = ACTIONS(235), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_DOT_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(235), + [anon_sym_use_BANG] = ACTIONS(237), + [anon_sym_do_BANG] = ACTIONS(237), + [anon_sym_DOT_DOT] = ACTIONS(237), + [anon_sym_begin] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_or] = ACTIONS(235), + [aux_sym_char_token1] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_AT_DQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(237), + [sym_bool] = ACTIONS(235), + [sym_unit] = ACTIONS(235), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_op_identifier] = ACTIONS(235), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_PLUS_DOT] = ACTIONS(235), + [anon_sym_DASH_DOT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [aux_sym_prefix_op_token1] = ACTIONS(235), + [aux_sym_infix_op_token1] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_COLON_EQ] = ACTIONS(237), + [anon_sym_DOLLAR] = ACTIONS(235), + [anon_sym_QMARK_LT_DASH] = ACTIONS(235), + [sym_int] = ACTIONS(235), + [sym_xint] = ACTIONS(237), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(237), + [sym__newline] = ACTIONS(237), }, [359] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(359), [sym_block_comment] = STATE(359), [sym_line_comment] = STATE(359), [sym_compiler_directive_decl] = STATE(359), [sym_fsi_directive_decl] = STATE(359), [sym_preproc_line] = STATE(359), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1986), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [360] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(360), [sym_block_comment] = STATE(360), [sym_line_comment] = STATE(360), [sym_compiler_directive_decl] = STATE(360), [sym_fsi_directive_decl] = STATE(360), [sym_preproc_line] = STATE(360), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1988), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [361] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(361), [sym_block_comment] = STATE(361), [sym_line_comment] = STATE(361), [sym_compiler_directive_decl] = STATE(361), [sym_fsi_directive_decl] = STATE(361), [sym_preproc_line] = STATE(361), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1990), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [362] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(362), [sym_block_comment] = STATE(362), [sym_line_comment] = STATE(362), [sym_compiler_directive_decl] = STATE(362), [sym_fsi_directive_decl] = STATE(362), [sym_preproc_line] = STATE(362), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1992), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [363] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(363), [sym_block_comment] = STATE(363), [sym_line_comment] = STATE(363), [sym_compiler_directive_decl] = STATE(363), [sym_fsi_directive_decl] = STATE(363), [sym_preproc_line] = STATE(363), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1994), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [364] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(364), [sym_block_comment] = STATE(364), [sym_line_comment] = STATE(364), [sym_compiler_directive_decl] = STATE(364), [sym_fsi_directive_decl] = STATE(364), [sym_preproc_line] = STATE(364), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(1996), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [365] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(365), [sym_block_comment] = STATE(365), [sym_line_comment] = STATE(365), [sym_compiler_directive_decl] = STATE(365), [sym_fsi_directive_decl] = STATE(365), [sym_preproc_line] = STATE(365), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(367), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [366] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(366), [sym_block_comment] = STATE(366), [sym_line_comment] = STATE(366), [sym_compiler_directive_decl] = STATE(366), [sym_fsi_directive_decl] = STATE(366), [sym_preproc_line] = STATE(366), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(371), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [367] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(367), [sym_block_comment] = STATE(367), [sym_line_comment] = STATE(367), [sym_compiler_directive_decl] = STATE(367), [sym_fsi_directive_decl] = STATE(367), [sym_preproc_line] = STATE(367), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(354), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [368] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(368), [sym_block_comment] = STATE(368), [sym_line_comment] = STATE(368), [sym_compiler_directive_decl] = STATE(368), [sym_fsi_directive_decl] = STATE(368), [sym_preproc_line] = STATE(368), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(2004), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [369] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(369), [sym_block_comment] = STATE(369), [sym_line_comment] = STATE(369), [sym_compiler_directive_decl] = STATE(369), [sym_fsi_directive_decl] = STATE(369), [sym_preproc_line] = STATE(369), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(2006), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [370] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(370), [sym_block_comment] = STATE(370), [sym_line_comment] = STATE(370), [sym_compiler_directive_decl] = STATE(370), [sym_fsi_directive_decl] = STATE(370), [sym_preproc_line] = STATE(370), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(358), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), - [sym__dedent] = ACTIONS(2008), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [371] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(371), [sym_block_comment] = STATE(371), [sym_line_comment] = STATE(371), [sym_compiler_directive_decl] = STATE(371), [sym_fsi_directive_decl] = STATE(371), [sym_preproc_line] = STATE(371), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(354), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [372] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(372), [sym_block_comment] = STATE(372), [sym_line_comment] = STATE(372), [sym_compiler_directive_decl] = STATE(372), [sym_fsi_directive_decl] = STATE(372), [sym_preproc_line] = STATE(372), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(373), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [373] = { - [sym_module_abbrev] = STATE(3033), - [sym_module_defn] = STATE(3033), - [sym_import_decl] = STATE(3033), - [sym_attributes] = STATE(5484), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3033), - [sym_do] = STATE(2979), - [sym_function_or_value_defn] = STATE(455), - [sym__expression] = STATE(34), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_definition] = STATE(3033), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(373), [sym_block_comment] = STATE(373), [sym_line_comment] = STATE(373), [sym_compiler_directive_decl] = STATE(373), [sym_fsi_directive_decl] = STATE(373), [sym_preproc_line] = STATE(373), - [sym_preproc_if] = STATE(3033), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_file_repeat2] = STATE(354), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(17), - [anon_sym_module] = ACTIONS(1632), - [anon_sym_open] = ACTIONS(23), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(27), - [anon_sym_type] = ACTIONS(29), - [anon_sym_do] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_let_BANG] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(113), - [anon_sym_POUNDload] = ACTIONS(113), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(115), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [374] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(374), [sym_block_comment] = STATE(374), [sym_line_comment] = STATE(374), [sym_compiler_directive_decl] = STATE(374), [sym_fsi_directive_decl] = STATE(374), [sym_preproc_line] = STATE(374), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(363), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [375] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1391), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(375), [sym_block_comment] = STATE(375), [sym_line_comment] = STATE(375), [sym_compiler_directive_decl] = STATE(375), [sym_fsi_directive_decl] = STATE(375), [sym_preproc_line] = STATE(375), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(362), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [376] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1420), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(376), [sym_block_comment] = STATE(376), [sym_line_comment] = STATE(376), [sym_compiler_directive_decl] = STATE(376), [sym_fsi_directive_decl] = STATE(376), [sym_preproc_line] = STATE(376), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(361), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [377] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(377), [sym_block_comment] = STATE(377), [sym_line_comment] = STATE(377), [sym_compiler_directive_decl] = STATE(377), [sym_fsi_directive_decl] = STATE(377), [sym_preproc_line] = STATE(377), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(360), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [378] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(378), [sym_block_comment] = STATE(378), [sym_line_comment] = STATE(378), [sym_compiler_directive_decl] = STATE(378), [sym_fsi_directive_decl] = STATE(378), [sym_preproc_line] = STATE(378), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(368), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [379] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1426), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(379), [sym_block_comment] = STATE(379), [sym_line_comment] = STATE(379), [sym_compiler_directive_decl] = STATE(379), [sym_fsi_directive_decl] = STATE(379), [sym_preproc_line] = STATE(379), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(355), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [380] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1421), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(380), [sym_block_comment] = STATE(380), [sym_line_comment] = STATE(380), [sym_compiler_directive_decl] = STATE(380), [sym_fsi_directive_decl] = STATE(380), [sym_preproc_line] = STATE(380), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(357), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [381] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(381), [sym_block_comment] = STATE(381), [sym_line_comment] = STATE(381), [sym_compiler_directive_decl] = STATE(381), [sym_fsi_directive_decl] = STATE(381), [sym_preproc_line] = STATE(381), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(359), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [382] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1519), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(382), [sym_block_comment] = STATE(382), [sym_line_comment] = STATE(382), [sym_compiler_directive_decl] = STATE(382), [sym_fsi_directive_decl] = STATE(382), [sym_preproc_line] = STATE(382), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(353), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [383] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(383), [sym_block_comment] = STATE(383), [sym_line_comment] = STATE(383), [sym_compiler_directive_decl] = STATE(383), [sym_fsi_directive_decl] = STATE(383), [sym_preproc_line] = STATE(383), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(361), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [384] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(384), [sym_block_comment] = STATE(384), [sym_line_comment] = STATE(384), [sym_compiler_directive_decl] = STATE(384), [sym_fsi_directive_decl] = STATE(384), [sym_preproc_line] = STATE(384), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(357), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [385] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1456), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(4), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3536), + [sym_prefix_op] = STATE(753), + [sym_infix_op] = STATE(802), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(385), [sym_block_comment] = STATE(385), [sym_line_comment] = STATE(385), [sym_compiler_directive_decl] = STATE(385), [sym_fsi_directive_decl] = STATE(385), [sym_preproc_line] = STATE(385), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(364), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), - [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_sequential_expression_repeat1] = STATE(1059), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_COLON_QMARK] = ACTIONS(125), + [anon_sym_COLON_COLON] = ACTIONS(121), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(153), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_COLON_GT] = ACTIONS(161), + [anon_sym_COLON_QMARK_GT] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_LT_DASH] = ACTIONS(177), + [anon_sym_DOT_LBRACK] = ACTIONS(179), + [anon_sym_LT] = ACTIONS(181), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_or] = ACTIONS(141), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(205), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_PLUS_DOT] = ACTIONS(41), + [anon_sym_DASH_DOT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP_AMP] = ACTIONS(41), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(211), + [aux_sym_infix_op_token1] = ACTIONS(141), + [anon_sym_PIPE_PIPE] = ACTIONS(141), + [anon_sym_BANG_EQ] = ACTIONS(141), + [anon_sym_COLON_EQ] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_QMARK_LT_DASH] = ACTIONS(141), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(225), }, [386] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1390), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_module_abbrev] = STATE(6515), + [sym_module_defn] = STATE(6515), + [sym_import_decl] = STATE(6515), + [sym_attributes] = STATE(5898), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(6515), + [sym_do] = STATE(6725), + [sym_function_or_value_defn] = STATE(535), + [sym__expression] = STATE(43), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_type_definition] = STATE(6515), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(386), [sym_block_comment] = STATE(386), [sym_line_comment] = STATE(386), [sym_compiler_directive_decl] = STATE(386), [sym_fsi_directive_decl] = STATE(386), [sym_preproc_line] = STATE(386), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(370), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), + [sym_preproc_if] = STATE(6515), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8233), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(405), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1824), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_let_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93475,147 +95868,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(1842), + [anon_sym_POUNDload] = ACTIONS(1842), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(1844), + [anon_sym_POUNDendif] = ACTIONS(1846), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [387] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_module_abbrev] = STATE(6532), + [sym_module_defn] = STATE(6532), + [sym_import_decl] = STATE(6532), + [sym_attributes] = STATE(5898), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(6532), + [sym_do] = STATE(6725), + [sym_function_or_value_defn] = STATE(535), + [sym__expression] = STATE(45), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_type_definition] = STATE(6532), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(387), [sym_block_comment] = STATE(387), [sym_line_comment] = STATE(387), [sym_compiler_directive_decl] = STATE(387), [sym_fsi_directive_decl] = STATE(387), [sym_preproc_line] = STATE(387), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(369), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), + [sym_preproc_if] = STATE(6532), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8044), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(405), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1824), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_let_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93623,147 +96021,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(1842), + [anon_sym_POUNDload] = ACTIONS(1842), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(1844), + [anon_sym_POUNDendif] = ACTIONS(1852), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [388] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_module_abbrev] = STATE(6283), + [sym_module_defn] = STATE(6283), + [sym_import_decl] = STATE(6283), + [sym_attributes] = STATE(5898), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(6283), + [sym_do] = STATE(6725), + [sym_function_or_value_defn] = STATE(535), + [sym__expression] = STATE(49), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_type_definition] = STATE(6283), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(388), [sym_block_comment] = STATE(388), [sym_line_comment] = STATE(388), [sym_compiler_directive_decl] = STATE(388), [sym_fsi_directive_decl] = STATE(388), [sym_preproc_line] = STATE(388), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(355), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), + [sym_preproc_if] = STATE(6283), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7403), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(405), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1824), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_let_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93771,147 +96174,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(1842), + [anon_sym_POUNDload] = ACTIONS(1842), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(1844), + [anon_sym_POUNDendif] = ACTIONS(1854), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [389] = { - [sym_module_abbrev] = STATE(3078), - [sym_module_defn] = STATE(3078), - [sym_import_decl] = STATE(3078), - [sym_attributes] = STATE(5500), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(3078), - [sym_do] = STATE(3074), - [sym_function_or_value_defn] = STATE(443), - [sym__expression] = STATE(26), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_definition] = STATE(3078), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1498), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_module_abbrev] = STATE(6242), + [sym_module_defn] = STATE(6242), + [sym_import_decl] = STATE(6242), + [sym_attributes] = STATE(5898), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(6242), + [sym_do] = STATE(6725), + [sym_function_or_value_defn] = STATE(535), + [sym__expression] = STATE(42), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_type_definition] = STATE(6242), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(389), [sym_block_comment] = STATE(389), [sym_line_comment] = STATE(389), [sym_compiler_directive_decl] = STATE(389), [sym_fsi_directive_decl] = STATE(389), [sym_preproc_line] = STATE(389), - [sym_preproc_if] = STATE(3078), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_file_repeat2] = STATE(369), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_open] = ACTIONS(1804), + [sym_preproc_if] = STATE(6242), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7274), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(405), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_open] = ACTIONS(1824), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(311), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_let_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [anon_sym_return] = ACTIONS(409), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_let_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -93919,146 +96327,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(1824), - [anon_sym_POUNDload] = ACTIONS(1824), + [anon_sym_POUNDr] = ACTIONS(1842), + [anon_sym_POUNDload] = ACTIONS(1842), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1826), + [anon_sym_POUNDif] = ACTIONS(1844), + [anon_sym_POUNDendif] = ACTIONS(1856), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [390] = { - [sym_module_abbrev] = STATE(6839), - [sym_module_defn] = STATE(6839), - [sym_import_decl] = STATE(6839), - [sym_attributes] = STATE(5492), - [sym_attribute_set] = STATE(4327), - [sym_value_declaration] = STATE(6839), - [sym_do] = STATE(7740), - [sym_function_or_value_defn] = STATE(484), - [sym__expression] = STATE(225), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_type_definition] = STATE(6839), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(390), [sym_block_comment] = STATE(390), [sym_line_comment] = STATE(390), [sym_compiler_directive_decl] = STATE(390), [sym_fsi_directive_decl] = STATE(390), [sym_preproc_line] = STATE(390), - [sym_preproc_if] = STATE(6839), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_module] = ACTIONS(2016), - [anon_sym_open] = ACTIONS(2018), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(394), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(1860), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), [anon_sym_LBRACK_LT] = ACTIONS(25), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_let_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94066,281 +96481,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2038), - [anon_sym_POUNDload] = ACTIONS(2038), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2040), + [anon_sym_POUNDif] = ACTIONS(117), }, [391] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(47), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym__list_elements] = STATE(7524), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7524), - [sym_short_comp_expression] = STATE(7519), - [sym_slice_ranges] = STATE(7524), - [sym__slice_range_special] = STATE(6226), - [sym_slice_range] = STATE(6016), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(391), [sym_block_comment] = STATE(391), [sym_line_comment] = STATE(391), [sym_compiler_directive_decl] = STATE(391), [sym_fsi_directive_decl] = STATE(391), [sym_preproc_line] = STATE(391), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_DOT_DOT3] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__newline] = ACTIONS(2058), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(391), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_namespace] = ACTIONS(1869), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1874), + [anon_sym_LBRACK_LT] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACK_PIPE] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LT_AT] = ACTIONS(1913), + [anon_sym_LT_AT_AT] = ACTIONS(1916), + [anon_sym_LBRACE_PIPE] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1922), + [anon_sym_return_BANG] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_yield_BANG] = ACTIONS(1925), + [anon_sym_lazy] = ACTIONS(1880), + [anon_sym_assert] = ACTIONS(1880), + [anon_sym_upcast] = ACTIONS(1880), + [anon_sym_downcast] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_fun] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_match_BANG] = ACTIONS(1946), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_use_BANG] = ACTIONS(1955), + [anon_sym_do_BANG] = ACTIONS(1958), + [anon_sym_begin] = ACTIONS(1961), + [aux_sym_char_token1] = ACTIONS(1964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_AT_DQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1979), + [sym_bool] = ACTIONS(1982), + [sym_unit] = ACTIONS(1985), + [anon_sym_LPAREN_PIPE] = ACTIONS(1988), + [sym_op_identifier] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS_DOT] = ACTIONS(1994), + [anon_sym_DASH_DOT] = ACTIONS(1994), + [anon_sym_PERCENT] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1997), + [aux_sym_prefix_op_token1] = ACTIONS(2000), + [sym_int] = ACTIONS(2003), + [sym_xint] = ACTIONS(2006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2009), + [anon_sym_POUNDload] = ACTIONS(2009), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2012), }, [392] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(249), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_type_arguments] = STATE(3002), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1424), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(392), [sym_block_comment] = STATE(392), [sym_line_comment] = STATE(392), [sym_compiler_directive_decl] = STATE(392), [sym_fsi_directive_decl] = STATE(392), [sym_preproc_line] = STATE(392), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym__compound_type_repeat1] = STATE(2916), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2060), - [anon_sym_GT_RBRACK] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(391), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_DASH_GT] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2076), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94348,141 +96783,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - [sym__newline] = ACTIONS(2062), + [anon_sym_POUNDif] = ACTIONS(117), }, [393] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(68), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_type_arguments] = STATE(2983), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1302), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(393), [sym_block_comment] = STATE(393), [sym_line_comment] = STATE(393), [sym_compiler_directive_decl] = STATE(393), [sym_fsi_directive_decl] = STATE(393), [sym_preproc_line] = STATE(393), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym__compound_type_repeat1] = STATE(2934), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(395), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(2021), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_with] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94490,140 +96934,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(117), }, [394] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(45), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_type_arguments] = STATE(2983), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1181), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(394), [sym_block_comment] = STATE(394), [sym_line_comment] = STATE(394), [sym_compiler_directive_decl] = STATE(394), [sym_fsi_directive_decl] = STATE(394), [sym_preproc_line] = STATE(394), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym__compound_type_repeat1] = STATE(2934), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_as] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(391), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(2025), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_with] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94631,138 +97085,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(117), }, [395] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(279), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_type_arguments] = STATE(3073), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1403), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(395), [sym_block_comment] = STATE(395), [sym_line_comment] = STATE(395), [sym_compiler_directive_decl] = STATE(395), [sym_fsi_directive_decl] = STATE(395), [sym_preproc_line] = STATE(395), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__compound_type_repeat1] = STATE(2961), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(391), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94770,139 +97236,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__dedent] = ACTIONS(2126), + [anon_sym_POUNDif] = ACTIONS(117), }, [396] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(185), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_type_arguments] = STATE(3073), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1403), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(462), + [sym__expression] = STATE(20), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(396), [sym_block_comment] = STATE(396), [sym_line_comment] = STATE(396), [sym_compiler_directive_decl] = STATE(396), [sym_fsi_directive_decl] = STATE(396), [sym_preproc_line] = STATE(396), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__compound_type_repeat1] = STATE(2961), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(392), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(17), + [anon_sym_namespace] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(263), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -94910,139 +97387,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__dedent] = ACTIONS(2128), + [anon_sym_POUNDif] = ACTIONS(117), }, [397] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(292), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_type_arguments] = STATE(3073), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1403), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(397), [sym_block_comment] = STATE(397), [sym_line_comment] = STATE(397), [sym_compiler_directive_decl] = STATE(397), [sym_fsi_directive_decl] = STATE(397), [sym_preproc_line] = STATE(397), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__compound_type_repeat1] = STATE(2961), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95050,139 +97536,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__dedent] = ACTIONS(2130), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2059), }, [398] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6892), - [sym_object_expression] = STATE(6892), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6910), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6892), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(398), [sym_block_comment] = STATE(398), [sym_line_comment] = STATE(398), [sym_compiler_directive_decl] = STATE(398), [sym_fsi_directive_decl] = STATE(398), [sym_preproc_line] = STATE(398), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95190,138 +97686,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2061), }, [399] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6674), - [sym_object_expression] = STATE(6674), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6698), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6674), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(399), [sym_block_comment] = STATE(399), [sym_line_comment] = STATE(399), [sym_compiler_directive_decl] = STATE(399), [sym_fsi_directive_decl] = STATE(399), [sym_preproc_line] = STATE(399), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95329,416 +97836,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2063), }, [400] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(7000), - [sym_object_expression] = STATE(7000), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7018), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7000), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(400), [sym_block_comment] = STATE(400), [sym_line_comment] = STATE(400), [sym_compiler_directive_decl] = STATE(400), [sym_fsi_directive_decl] = STATE(400), [sym_preproc_line] = STATE(400), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(400), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_open] = ACTIONS(1874), + [anon_sym_LBRACK_LT] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_let_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACK_PIPE] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LT_AT] = ACTIONS(1913), + [anon_sym_LT_AT_AT] = ACTIONS(1916), + [anon_sym_LBRACE_PIPE] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(2068), + [anon_sym_return_BANG] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_yield_BANG] = ACTIONS(2071), + [anon_sym_lazy] = ACTIONS(2065), + [anon_sym_assert] = ACTIONS(2065), + [anon_sym_upcast] = ACTIONS(2065), + [anon_sym_downcast] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_fun] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_match_BANG] = ACTIONS(1946), + [anon_sym_function] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_use_BANG] = ACTIONS(2077), + [anon_sym_do_BANG] = ACTIONS(1958), + [anon_sym_begin] = ACTIONS(1961), + [aux_sym_char_token1] = ACTIONS(1964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_AT_DQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1979), + [sym_bool] = ACTIONS(1982), + [sym_unit] = ACTIONS(1985), + [anon_sym_LPAREN_PIPE] = ACTIONS(1988), + [sym_op_identifier] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS_DOT] = ACTIONS(1994), + [anon_sym_DASH_DOT] = ACTIONS(1994), + [anon_sym_PERCENT] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1997), + [aux_sym_prefix_op_token1] = ACTIONS(2000), + [sym_int] = ACTIONS(2080), + [sym_xint] = ACTIONS(2083), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2009), + [anon_sym_POUNDload] = ACTIONS(2009), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2012), }, [401] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6759), - [sym_object_expression] = STATE(6759), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6781), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6759), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(401), [sym_block_comment] = STATE(401), [sym_line_comment] = STATE(401), [sym_compiler_directive_decl] = STATE(401), [sym_fsi_directive_decl] = STATE(401), [sym_preproc_line] = STATE(401), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2089), + [anon_sym_open] = ACTIONS(2092), + [anon_sym_LBRACK_LT] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_let_BANG] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LBRACK_PIPE] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_LT_AT] = ACTIONS(2125), + [anon_sym_LT_AT_AT] = ACTIONS(2128), + [anon_sym_LBRACE_PIPE] = ACTIONS(2131), [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_return_BANG] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_yield_BANG] = ACTIONS(2137), + [anon_sym_lazy] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_upcast] = ACTIONS(2095), + [anon_sym_downcast] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_fun] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_match_BANG] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_use_BANG] = ACTIONS(2164), + [anon_sym_do_BANG] = ACTIONS(2167), + [anon_sym_begin] = ACTIONS(2170), + [aux_sym_char_token1] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_AT_DQUOTE] = ACTIONS(2182), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2188), + [sym_bool] = ACTIONS(2191), + [sym_unit] = ACTIONS(2194), + [anon_sym_LPAREN_PIPE] = ACTIONS(2197), + [sym_op_identifier] = ACTIONS(2200), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS_DOT] = ACTIONS(1994), + [anon_sym_DASH_DOT] = ACTIONS(1994), + [anon_sym_PERCENT] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1997), + [aux_sym_prefix_op_token1] = ACTIONS(2000), + [sym_int] = ACTIONS(2203), + [sym_xint] = ACTIONS(2206), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2209), + [anon_sym_POUNDload] = ACTIONS(2209), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2212), + [sym__dedent] = ACTIONS(1864), }, [402] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6821), - [sym_object_expression] = STATE(6821), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6788), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6821), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(402), [sym_block_comment] = STATE(402), [sym_line_comment] = STATE(402), [sym_compiler_directive_decl] = STATE(402), [sym_fsi_directive_decl] = STATE(402), [sym_preproc_line] = STATE(402), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95746,138 +98286,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2215), }, [403] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(7093), - [sym_object_expression] = STATE(7093), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7107), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7093), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(403), [sym_block_comment] = STATE(403), [sym_line_comment] = STATE(403), [sym_compiler_directive_decl] = STATE(403), [sym_fsi_directive_decl] = STATE(403), [sym_preproc_line] = STATE(403), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -95885,138 +98436,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2217), }, [404] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(140), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(855), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(404), [sym_block_comment] = STATE(404), [sym_line_comment] = STATE(404), [sym_compiler_directive_decl] = STATE(404), [sym_fsi_directive_decl] = STATE(404), [sym_preproc_line] = STATE(404), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96024,138 +98586,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2219), }, [405] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(74), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1131), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(405), [sym_block_comment] = STATE(405), [sym_line_comment] = STATE(405), [sym_compiler_directive_decl] = STATE(405), [sym_fsi_directive_decl] = STATE(405), [sym_preproc_line] = STATE(405), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(417), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96163,138 +98737,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(117), }, [406] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(187), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(1526), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(406), [sym_block_comment] = STATE(406), [sym_line_comment] = STATE(406), [sym_compiler_directive_decl] = STATE(406), [sym_fsi_directive_decl] = STATE(406), [sym_preproc_line] = STATE(406), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(408), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96302,406 +98887,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(117), }, [407] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(43), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1118), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(407), [sym_block_comment] = STATE(407), [sym_line_comment] = STATE(407), [sym_compiler_directive_decl] = STATE(407), [sym_fsi_directive_decl] = STATE(407), [sym_preproc_line] = STATE(407), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), - }, - [408] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(11), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(408), - [sym_block_comment] = STATE(408), - [sym_line_comment] = STATE(408), - [sym_compiler_directive_decl] = STATE(408), - [sym_fsi_directive_decl] = STATE(408), - [sym_preproc_line] = STATE(408), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_open] = ACTIONS(2160), - [anon_sym_LBRACK_LT] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACK_PIPE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_return_BANG] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_yield_BANG] = ACTIONS(2158), - [anon_sym_lazy] = ACTIONS(2160), - [anon_sym_assert] = ACTIONS(2160), - [anon_sym_upcast] = ACTIONS(2160), - [anon_sym_downcast] = ACTIONS(2160), - [anon_sym_LT_AT] = ACTIONS(2160), - [anon_sym_LT_AT_AT] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_fun] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_match_BANG] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_use_BANG] = ACTIONS(2158), - [anon_sym_do_BANG] = ACTIONS(2158), - [anon_sym_begin] = ACTIONS(2160), - [aux_sym_char_token1] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [sym_bool] = ACTIONS(2160), - [sym_unit] = ACTIONS(2158), - [anon_sym_LPAREN_PIPE] = ACTIONS(2160), - [sym_op_identifier] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_DOT] = ACTIONS(2158), - [anon_sym_DASH_DOT] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [aux_sym_prefix_op_token1] = ACTIONS(2158), - [sym_int] = ACTIONS(2160), - [sym_xint] = ACTIONS(2158), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2158), - [anon_sym_POUNDload] = ACTIONS(2158), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2158), - }, - [409] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(32), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(950), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), - [sym_xml_doc] = STATE(409), - [sym_block_comment] = STATE(409), - [sym_line_comment] = STATE(409), - [sym_compiler_directive_decl] = STATE(409), - [sym_fsi_directive_decl] = STATE(409), - [sym_preproc_line] = STATE(409), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), [anon_sym_begin] = ACTIONS(361), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), [aux_sym_char_token1] = ACTIONS(365), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), [anon_sym_DQUOTE] = ACTIONS(369), @@ -96709,9 +99026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), + [sym_unit] = ACTIONS(2051), [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -96719,267 +99036,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2225), }, - [410] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(7508), - [sym_object_expression] = STATE(7508), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7226), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7508), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(410), - [sym_block_comment] = STATE(410), - [sym_line_comment] = STATE(410), - [sym_compiler_directive_decl] = STATE(410), - [sym_fsi_directive_decl] = STATE(410), - [sym_preproc_line] = STATE(410), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [408] = { + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(408), + [sym_block_comment] = STATE(408), + [sym_line_comment] = STATE(408), + [sym_compiler_directive_decl] = STATE(408), + [sym_fsi_directive_decl] = STATE(408), + [sym_preproc_line] = STATE(408), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(400), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), [anon_sym_DASH_DOT] = ACTIONS(103), [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(117), }, - [411] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(18), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(916), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(411), - [sym_block_comment] = STATE(411), - [sym_line_comment] = STATE(411), - [sym_compiler_directive_decl] = STATE(411), - [sym_fsi_directive_decl] = STATE(411), - [sym_preproc_line] = STATE(411), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [409] = { + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(409), + [sym_block_comment] = STATE(409), + [sym_line_comment] = STATE(409), + [sym_compiler_directive_decl] = STATE(409), + [sym_fsi_directive_decl] = STATE(409), + [sym_preproc_line] = STATE(409), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(400), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(117), + }, + [410] = { + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(410), + [sym_block_comment] = STATE(410), + [sym_line_comment] = STATE(410), + [sym_compiler_directive_decl] = STATE(410), + [sym_fsi_directive_decl] = STATE(410), + [sym_preproc_line] = STATE(410), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(409), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(65), - [anon_sym_DASH_GT] = ACTIONS(2138), [anon_sym_try] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -96997,138 +99487,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(117), + }, + [411] = { + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), + [sym_xml_doc] = STATE(411), + [sym_block_comment] = STATE(411), + [sym_line_comment] = STATE(411), + [sym_compiler_directive_decl] = STATE(411), + [sym_fsi_directive_decl] = STATE(411), + [sym_preproc_line] = STATE(411), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2233), }, [412] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(277), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(1382), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(412), [sym_block_comment] = STATE(412), [sym_line_comment] = STATE(412), [sym_compiler_directive_decl] = STATE(412), [sym_fsi_directive_decl] = STATE(412), [sym_preproc_line] = STATE(412), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(400), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97136,138 +99787,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(117), }, [413] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(7053), - [sym_object_expression] = STATE(7053), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7067), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7053), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(413), [sym_block_comment] = STATE(413), [sym_line_comment] = STATE(413), [sym_compiler_directive_decl] = STATE(413), [sym_fsi_directive_decl] = STATE(413), [sym_preproc_line] = STATE(413), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97275,138 +99936,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2237), }, [414] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6832), - [sym_object_expression] = STATE(6832), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6851), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6832), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(414), [sym_block_comment] = STATE(414), [sym_line_comment] = STATE(414), [sym_compiler_directive_decl] = STATE(414), [sym_fsi_directive_decl] = STATE(414), [sym_preproc_line] = STATE(414), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97414,138 +100086,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2239), }, [415] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(96), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1290), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(415), [sym_block_comment] = STATE(415), [sym_line_comment] = STATE(415), [sym_compiler_directive_decl] = STATE(415), [sym_fsi_directive_decl] = STATE(415), [sym_preproc_line] = STATE(415), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97553,138 +100236,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2241), }, [416] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(87), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(1526), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(416), [sym_block_comment] = STATE(416), [sym_line_comment] = STATE(416), [sym_compiler_directive_decl] = STATE(416), [sym_fsi_directive_decl] = STATE(416), [sym_preproc_line] = STATE(416), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(401), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97692,117 +100386,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(2057), + [sym__dedent] = ACTIONS(2243), }, [417] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(36), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(916), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_module_abbrev] = STATE(3391), + [sym_module_defn] = STATE(3391), + [sym_import_decl] = STATE(3391), + [sym_attributes] = STATE(5883), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3391), + [sym_do] = STATE(3389), + [sym_function_or_value_defn] = STATE(510), + [sym__expression] = STATE(37), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_definition] = STATE(3391), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(417), [sym_block_comment] = STATE(417), [sym_line_comment] = STATE(417), [sym_compiler_directive_decl] = STATE(417), [sym_fsi_directive_decl] = STATE(417), [sym_preproc_line] = STATE(417), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2164), + [sym_preproc_if] = STATE(3391), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_file_repeat2] = STATE(400), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(17), + [anon_sym_module] = ACTIONS(1862), + [anon_sym_open] = ACTIONS(23), + [anon_sym_LBRACK_LT] = ACTIONS(25), [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_type] = ACTIONS(29), + [anon_sym_do] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_let_BANG] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(65), - [anon_sym_DASH_GT] = ACTIONS(2138), [anon_sym_try] = ACTIONS(67), [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), @@ -97811,9 +100520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(77), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), [aux_sym_char_token1] = ACTIONS(83), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), [anon_sym_DQUOTE] = ACTIONS(87), @@ -97831,138 +100537,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(115), + [anon_sym_POUNDload] = ACTIONS(115), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(117), }, [418] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(260), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(1475), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(418), [sym_block_comment] = STATE(418), [sym_line_comment] = STATE(418), [sym_compiler_directive_decl] = STATE(418), [sym_fsi_directive_decl] = STATE(418), [sym_preproc_line] = STATE(418), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(411), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -97970,138 +100686,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(2057), }, [419] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(6946), - [sym_object_expression] = STATE(6946), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(6964), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6946), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1529), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(419), [sym_block_comment] = STATE(419), [sym_line_comment] = STATE(419), [sym_compiler_directive_decl] = STATE(419), [sym_fsi_directive_decl] = STATE(419), [sym_preproc_line] = STATE(419), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(402), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98109,138 +100835,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), }, [420] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(73), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1192), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1506), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(420), [sym_block_comment] = STATE(420), [sym_line_comment] = STATE(420), [sym_compiler_directive_decl] = STATE(420), [sym_fsi_directive_decl] = STATE(420), [sym_preproc_line] = STATE(420), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(416), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98248,138 +100984,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(2057), }, [421] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(113), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1131), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1615), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(421), [sym_block_comment] = STATE(421), [sym_line_comment] = STATE(421), [sym_compiler_directive_decl] = STATE(421), [sym_fsi_directive_decl] = STATE(421), [sym_preproc_line] = STATE(421), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(403), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98387,138 +101133,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), }, [422] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(158), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(1375), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(422), [sym_block_comment] = STATE(422), [sym_line_comment] = STATE(422), [sym_compiler_directive_decl] = STATE(422), [sym_fsi_directive_decl] = STATE(422), [sym_preproc_line] = STATE(422), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(413), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98526,138 +101282,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(2057), }, [423] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(10), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_type_arguments] = STATE(3088), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(855), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1537), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(423), [sym_block_comment] = STATE(423), [sym_line_comment] = STATE(423), [sym_compiler_directive_decl] = STATE(423), [sym_fsi_directive_decl] = STATE(423), [sym_preproc_line] = STATE(423), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym__compound_type_repeat1] = STATE(3056), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(414), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98665,138 +101431,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(2057), }, [424] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(115), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_with_field_expression] = STATE(7131), - [sym_object_expression] = STATE(7131), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__comp_or_range_expression] = STATE(7145), - [sym_short_comp_expression] = STATE(7519), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7131), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1764), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(424), [sym_block_comment] = STATE(424), [sym_line_comment] = STATE(424), [sym_compiler_directive_decl] = STATE(424), [sym_fsi_directive_decl] = STATE(424), [sym_preproc_line] = STATE(424), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2132), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(414), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98804,134 +101580,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(2057), }, [425] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1594), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(425), [sym_block_comment] = STATE(425), [sym_line_comment] = STATE(425), [sym_compiler_directive_decl] = STATE(425), [sym_fsi_directive_decl] = STATE(425), [sym_preproc_line] = STATE(425), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6705), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(397), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -98939,137 +101729,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2196), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [426] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(426), [sym_block_comment] = STATE(426), [sym_line_comment] = STATE(426), [sym_compiler_directive_decl] = STATE(426), [sym_fsi_directive_decl] = STATE(426), [sym_preproc_line] = STATE(426), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6954), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(404), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99077,140 +101878,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2198), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [427] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(85), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(6678), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1526), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(427), [sym_block_comment] = STATE(427), [sym_line_comment] = STATE(427), [sym_compiler_directive_decl] = STATE(427), [sym_fsi_directive_decl] = STATE(427), [sym_preproc_line] = STATE(427), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(415), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99218,137 +102027,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(2057), }, [428] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(110), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(6843), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(428), [sym_block_comment] = STATE(428), [sym_line_comment] = STATE(428), [sym_compiler_directive_decl] = STATE(428), [sym_fsi_directive_decl] = STATE(428), [sym_preproc_line] = STATE(428), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(415), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99356,134 +102176,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(2057), }, [429] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(429), [sym_block_comment] = STATE(429), [sym_line_comment] = STATE(429), [sym_compiler_directive_decl] = STATE(429), [sym_fsi_directive_decl] = STATE(429), [sym_preproc_line] = STATE(429), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7310), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(407), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99491,140 +102325,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2204), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [430] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(106), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7251), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(430), [sym_block_comment] = STATE(430), [sym_line_comment] = STATE(430), [sym_compiler_directive_decl] = STATE(430), [sym_fsi_directive_decl] = STATE(430), [sym_preproc_line] = STATE(430), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(399), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99632,134 +102474,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(2057), }, [431] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(431), [sym_block_comment] = STATE(431), [sym_line_comment] = STATE(431), [sym_compiler_directive_decl] = STATE(431), [sym_fsi_directive_decl] = STATE(431), [sym_preproc_line] = STATE(431), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6756), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(398), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99767,137 +102623,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2206), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [432] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1549), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(432), [sym_block_comment] = STATE(432), [sym_line_comment] = STATE(432), [sym_compiler_directive_decl] = STATE(432), [sym_fsi_directive_decl] = STATE(432), [sym_preproc_line] = STATE(432), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7189), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(411), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -99905,137 +102772,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2208), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [433] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(3426), + [sym_module_defn] = STATE(3426), + [sym_import_decl] = STATE(3426), + [sym_attributes] = STATE(5909), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(3426), + [sym_do] = STATE(3436), + [sym_function_or_value_defn] = STATE(481), + [sym__expression] = STATE(21), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_definition] = STATE(3426), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1644), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(433), [sym_block_comment] = STATE(433), [sym_line_comment] = STATE(433), [sym_compiler_directive_decl] = STATE(433), [sym_fsi_directive_decl] = STATE(433), [sym_preproc_line] = STATE(433), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7747), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(3426), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_file_repeat2] = STATE(404), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_open] = ACTIONS(2037), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(305), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100043,137 +102921,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2055), + [anon_sym_POUNDload] = ACTIONS(2055), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2210), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2057), }, [434] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_module_abbrev] = STATE(8104), + [sym_module_defn] = STATE(8104), + [sym_import_decl] = STATE(8104), + [sym_attributes] = STATE(5925), + [sym_attribute_set] = STATE(4720), + [sym_value_declaration] = STATE(8104), + [sym_do] = STATE(7938), + [sym_function_or_value_defn] = STATE(537), + [sym__expression] = STATE(288), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_type_definition] = STATE(8104), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(434), [sym_block_comment] = STATE(434), [sym_line_comment] = STATE(434), [sym_compiler_directive_decl] = STATE(434), [sym_fsi_directive_decl] = STATE(434), [sym_preproc_line] = STATE(434), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6865), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if] = STATE(8104), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_module] = ACTIONS(2247), + [anon_sym_open] = ACTIONS(2249), + [anon_sym_LBRACK_LT] = ACTIONS(25), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_let_BANG] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100181,140 +103069,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(2267), + [anon_sym_POUNDload] = ACTIONS(2267), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2212), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(2269), }, [435] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(99), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7433), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(50), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym__list_elements] = STATE(8316), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(8316), + [sym_short_comp_expression] = STATE(8315), + [sym_slice_ranges] = STATE(8316), + [sym__slice_range_special] = STATE(6588), + [sym_slice_range] = STATE(6340), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(435), [sym_block_comment] = STATE(435), [sym_line_comment] = STATE(435), [sym_compiler_directive_decl] = STATE(435), [sym_fsi_directive_decl] = STATE(435), [sym_preproc_line] = STATE(435), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_DOT_DOT3] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2279), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100322,134 +103211,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__newline] = ACTIONS(2285), }, [436] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(248), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_type_arguments] = STATE(3367), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1463), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(436), [sym_block_comment] = STATE(436), [sym_line_comment] = STATE(436), [sym_compiler_directive_decl] = STATE(436), [sym_fsi_directive_decl] = STATE(436), [sym_preproc_line] = STATE(436), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7333), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym__compound_type_repeat1] = STATE(3277), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2287), + [anon_sym_GT_RBRACK] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_DASH_GT] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(2299), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2301), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100457,137 +103353,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(1616), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(217), + [sym__newline] = ACTIONS(2289), }, [437] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(41), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_type_arguments] = STATE(3352), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1235), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(437), [sym_block_comment] = STATE(437), [sym_line_comment] = STATE(437), [sym_compiler_directive_decl] = STATE(437), [sym_fsi_directive_decl] = STATE(437), [sym_preproc_line] = STATE(437), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7229), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(458), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym__compound_type_repeat1] = STATE(3272), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_with] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100595,137 +103496,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(1626), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(587), }, [438] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(95), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_type_arguments] = STATE(3352), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(1285), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(438), [sym_block_comment] = STATE(438), [sym_line_comment] = STATE(438), [sym_compiler_directive_decl] = STATE(438), [sym_fsi_directive_decl] = STATE(438), [sym_preproc_line] = STATE(438), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7147), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym__compound_type_repeat1] = STATE(3272), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_with] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100733,140 +103638,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2214), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(972), }, [439] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(120), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7498), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(212), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_type_arguments] = STATE(3431), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1505), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(439), [sym_block_comment] = STATE(439), [sym_line_comment] = STATE(439), [sym_compiler_directive_decl] = STATE(439), [sym_fsi_directive_decl] = STATE(439), [sym_preproc_line] = STATE(439), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__compound_type_repeat1] = STATE(3413), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2337), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -100874,134 +103778,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__dedent] = ACTIONS(2347), }, [440] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(225), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_type_arguments] = STATE(3431), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1505), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(440), [sym_block_comment] = STATE(440), [sym_line_comment] = STATE(440), [sym_compiler_directive_decl] = STATE(440), [sym_fsi_directive_decl] = STATE(440), [sym_preproc_line] = STATE(440), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7342), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__compound_type_repeat1] = STATE(3413), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101009,140 +103919,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2216), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__dedent] = ACTIONS(2349), }, [441] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(124), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7085), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(256), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_type_arguments] = STATE(3431), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1505), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(441), [sym_block_comment] = STATE(441), [sym_line_comment] = STATE(441), [sym_compiler_directive_decl] = STATE(441), [sym_fsi_directive_decl] = STATE(441), [sym_preproc_line] = STATE(441), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__compound_type_repeat1] = STATE(3413), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2337), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101150,134 +104060,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__dedent] = ACTIONS(2351), }, [442] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7213), + [sym_object_expression] = STATE(7213), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7235), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7213), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(442), [sym_block_comment] = STATE(442), [sym_line_comment] = STATE(442), [sym_compiler_directive_decl] = STATE(442), [sym_fsi_directive_decl] = STATE(442), [sym_preproc_line] = STATE(442), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7505), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(429), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101285,278 +104201,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2218), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [443] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(22), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(99), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(1499), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(443), [sym_block_comment] = STATE(443), [sym_line_comment] = STATE(443), [sym_compiler_directive_decl] = STATE(443), [sym_fsi_directive_decl] = STATE(443), [sym_preproc_line] = STATE(443), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_open] = ACTIONS(2160), - [anon_sym_LBRACK_LT] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACK_PIPE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_return_BANG] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_yield_BANG] = ACTIONS(2158), - [anon_sym_lazy] = ACTIONS(2160), - [anon_sym_assert] = ACTIONS(2160), - [anon_sym_upcast] = ACTIONS(2160), - [anon_sym_downcast] = ACTIONS(2160), - [anon_sym_LT_AT] = ACTIONS(2160), - [anon_sym_LT_AT_AT] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_fun] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_match_BANG] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_use_BANG] = ACTIONS(2158), - [anon_sym_do_BANG] = ACTIONS(2158), - [anon_sym_begin] = ACTIONS(2160), - [aux_sym_char_token1] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [sym_bool] = ACTIONS(2160), - [sym_unit] = ACTIONS(2158), - [anon_sym_LPAREN_PIPE] = ACTIONS(2160), - [sym_op_identifier] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_DOT] = ACTIONS(2158), - [anon_sym_DASH_DOT] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [aux_sym_prefix_op_token1] = ACTIONS(2158), - [sym_int] = ACTIONS(2160), - [sym_xint] = ACTIONS(2158), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2158), - [anon_sym_POUNDload] = ACTIONS(2158), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2158), - [sym__dedent] = ACTIONS(2158), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), }, [444] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(71), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7266), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(129), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(1451), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(444), [sym_block_comment] = STATE(444), [sym_line_comment] = STATE(444), [sym_compiler_directive_decl] = STATE(444), [sym_fsi_directive_decl] = STATE(444), [sym_preproc_line] = STATE(444), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101564,134 +104481,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(972), }, [445] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(48), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1252), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(445), [sym_block_comment] = STATE(445), [sym_line_comment] = STATE(445), [sym_compiler_directive_decl] = STATE(445), [sym_fsi_directive_decl] = STATE(445), [sym_preproc_line] = STATE(445), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7172), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101699,140 +104621,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2220), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(587), }, [446] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(101), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(6953), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(194), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(1528), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(446), [sym_block_comment] = STATE(446), [sym_line_comment] = STATE(446), [sym_compiler_directive_decl] = STATE(446), [sym_fsi_directive_decl] = STATE(446), [sym_preproc_line] = STATE(446), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101840,134 +104761,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1618), }, [447] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(354), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(1467), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(447), [sym_block_comment] = STATE(447), [sym_line_comment] = STATE(447), [sym_compiler_directive_decl] = STATE(447), [sym_fsi_directive_decl] = STATE(447), [sym_preproc_line] = STATE(447), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7600), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -101975,140 +104901,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2222), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(1108), }, [448] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(56), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7106), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7547), + [sym_object_expression] = STATE(7547), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7561), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7547), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(448), [sym_block_comment] = STATE(448), [sym_line_comment] = STATE(448), [sym_compiler_directive_decl] = STATE(448), [sym_fsi_directive_decl] = STATE(448), [sym_preproc_line] = STATE(448), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102116,137 +105041,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [449] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(84), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7558), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(34), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(982), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(449), [sym_block_comment] = STATE(449), [sym_line_comment] = STATE(449), [sym_compiler_directive_decl] = STATE(449), [sym_fsi_directive_decl] = STATE(449), [sym_preproc_line] = STATE(449), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102254,134 +105181,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [450] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(126), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(450), [sym_block_comment] = STATE(450), [sym_line_comment] = STATE(450), [sym_compiler_directive_decl] = STATE(450), [sym_fsi_directive_decl] = STATE(450), [sym_preproc_line] = STATE(450), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6898), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102389,137 +105321,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2224), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [451] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(109), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(1353), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(451), [sym_block_comment] = STATE(451), [sym_line_comment] = STATE(451), [sym_compiler_directive_decl] = STATE(451), [sym_fsi_directive_decl] = STATE(451), [sym_preproc_line] = STATE(451), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7374), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102527,137 +105461,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2226), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(491), }, [452] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7286), + [sym_object_expression] = STATE(7286), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7305), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7286), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(452), [sym_block_comment] = STATE(452), [sym_line_comment] = STATE(452), [sym_compiler_directive_decl] = STATE(452), [sym_fsi_directive_decl] = STATE(452), [sym_preproc_line] = STATE(452), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7539), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102665,137 +105601,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2228), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [453] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7454), + [sym_object_expression] = STATE(7454), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7472), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7454), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(453), [sym_block_comment] = STATE(453), [sym_line_comment] = STATE(453), [sym_compiler_directive_decl] = STATE(453), [sym_fsi_directive_decl] = STATE(453), [sym_preproc_line] = STATE(453), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7187), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102803,137 +105741,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2230), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [454] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(11), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(982), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(454), [sym_block_comment] = STATE(454), [sym_line_comment] = STATE(454), [sym_compiler_directive_decl] = STATE(454), [sym_fsi_directive_decl] = STATE(454), [sym_preproc_line] = STATE(454), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(6903), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(434), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -102941,275 +105881,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(1624), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(291), }, [455] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(8310), + [sym_object_expression] = STATE(8310), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(8227), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(8310), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(455), [sym_block_comment] = STATE(455), [sym_line_comment] = STATE(455), [sym_compiler_directive_decl] = STATE(455), [sym_fsi_directive_decl] = STATE(455), [sym_preproc_line] = STATE(455), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_open] = ACTIONS(2160), - [anon_sym_LBRACK_LT] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACK_PIPE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_return_BANG] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_yield_BANG] = ACTIONS(2158), - [anon_sym_lazy] = ACTIONS(2160), - [anon_sym_assert] = ACTIONS(2160), - [anon_sym_upcast] = ACTIONS(2160), - [anon_sym_downcast] = ACTIONS(2160), - [anon_sym_LT_AT] = ACTIONS(2160), - [anon_sym_LT_AT_AT] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_fun] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_match_BANG] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_use_BANG] = ACTIONS(2158), - [anon_sym_do_BANG] = ACTIONS(2158), - [anon_sym_begin] = ACTIONS(2160), - [aux_sym_char_token1] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [sym_bool] = ACTIONS(2160), - [sym_unit] = ACTIONS(2158), - [anon_sym_LPAREN_PIPE] = ACTIONS(2160), - [sym_op_identifier] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_DOT] = ACTIONS(2158), - [anon_sym_DASH_DOT] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [aux_sym_prefix_op_token1] = ACTIONS(2158), - [sym_int] = ACTIONS(2160), - [sym_xint] = ACTIONS(2158), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2158), - [anon_sym_POUNDload] = ACTIONS(2158), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2158), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [456] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(39), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1026), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(456), [sym_block_comment] = STATE(456), [sym_line_comment] = STATE(456), [sym_compiler_directive_decl] = STATE(456), [sym_fsi_directive_decl] = STATE(456), [sym_preproc_line] = STATE(456), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7802), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(433), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103217,137 +106161,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2232), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(387), }, [457] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7585), + [sym_object_expression] = STATE(7585), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7599), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7585), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(457), [sym_block_comment] = STATE(457), [sym_line_comment] = STATE(457), [sym_compiler_directive_decl] = STATE(457), [sym_fsi_directive_decl] = STATE(457), [sym_preproc_line] = STATE(457), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7230), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(432), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103355,137 +106301,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(1622), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [458] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7507), + [sym_object_expression] = STATE(7507), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7521), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7507), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(458), [sym_block_comment] = STATE(458), [sym_line_comment] = STATE(458), [sym_compiler_directive_decl] = STATE(458), [sym_fsi_directive_decl] = STATE(458), [sym_preproc_line] = STATE(458), - [sym_preproc_if_in_expression] = STATE(2063), - [sym_preproc_else_in_expression] = STATE(7006), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103493,140 +106441,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2234), - [anon_sym_POUNDelse] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), + [anon_sym_POUNDif] = ACTIONS(682), }, [459] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(137), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_slice_ranges] = STATE(7074), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6059), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7346), + [sym_object_expression] = STATE(7346), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7364), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7346), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(459), [sym_block_comment] = STATE(459), [sym_line_comment] = STATE(459), [sym_compiler_directive_decl] = STATE(459), [sym_fsi_directive_decl] = STATE(459), [sym_preproc_line] = STATE(459), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103634,136 +106581,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [460] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6674), - [sym_object_expression] = STATE(6674), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6674), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(186), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(1485), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(460), [sym_block_comment] = STATE(460), [sym_line_comment] = STATE(460), [sym_compiler_directive_decl] = STATE(460), [sym_fsi_directive_decl] = STATE(460), [sym_preproc_line] = STATE(460), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103771,136 +106721,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1290), }, [461] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(78), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym__slice_range_special] = STATE(6527), - [sym_slice_range] = STATE(6433), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(7), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(922), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(461), [sym_block_comment] = STATE(461), [sym_line_comment] = STATE(461), [sym_compiler_directive_decl] = STATE(461), [sym_fsi_directive_decl] = STATE(461), [sym_preproc_line] = STATE(461), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), + [anon_sym_DASH_GT] = ACTIONS(2365), [anon_sym_try] = ACTIONS(169), [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [anon_sym_DOT_DOT3] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2202), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -103908,10 +106861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -103921,260 +106874,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [462] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(7053), - [sym_object_expression] = STATE(7053), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7053), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(18), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(462), [sym_block_comment] = STATE(462), [sym_line_comment] = STATE(462), [sym_compiler_directive_decl] = STATE(462), [sym_fsi_directive_decl] = STATE(462), [sym_preproc_line] = STATE(462), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_open] = ACTIONS(2415), + [anon_sym_LBRACK_LT] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACK_PIPE] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LT_AT] = ACTIONS(2415), + [anon_sym_LT_AT_AT] = ACTIONS(2413), + [anon_sym_LBRACE_PIPE] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_return_BANG] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_yield_BANG] = ACTIONS(2413), + [anon_sym_lazy] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_upcast] = ACTIONS(2415), + [anon_sym_downcast] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_match_BANG] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_use_BANG] = ACTIONS(2413), + [anon_sym_do_BANG] = ACTIONS(2413), + [anon_sym_begin] = ACTIONS(2415), + [aux_sym_char_token1] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [anon_sym_AT_DQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [sym_bool] = ACTIONS(2415), + [sym_unit] = ACTIONS(2413), + [anon_sym_LPAREN_PIPE] = ACTIONS(2415), + [sym_op_identifier] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS_DOT] = ACTIONS(2413), + [anon_sym_DASH_DOT] = ACTIONS(2413), + [anon_sym_PERCENT] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [aux_sym_prefix_op_token1] = ACTIONS(2413), + [sym_int] = ACTIONS(2415), + [sym_xint] = ACTIONS(2413), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2413), + [anon_sym_POUNDload] = ACTIONS(2413), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2413), }, [463] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(7508), - [sym_object_expression] = STATE(7508), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7508), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7622), + [sym_object_expression] = STATE(7622), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7635), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7622), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(463), [sym_block_comment] = STATE(463), [sym_line_comment] = STATE(463), [sym_compiler_directive_decl] = STATE(463), [sym_fsi_directive_decl] = STATE(463), [sym_preproc_line] = STATE(463), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104182,136 +107141,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [464] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(66), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym__slice_range_special] = STATE(6226), - [sym_slice_range] = STATE(6429), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(285), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(1597), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(464), [sym_block_comment] = STATE(464), [sym_line_comment] = STATE(464), [sym_compiler_directive_decl] = STATE(464), [sym_fsi_directive_decl] = STATE(464), [sym_preproc_line] = STATE(464), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [anon_sym_DOT_DOT3] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104319,136 +107281,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1200), }, [465] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(7000), - [sym_object_expression] = STATE(7000), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7000), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7406), + [sym_object_expression] = STATE(7406), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7371), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7406), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(465), [sym_block_comment] = STATE(465), [sym_line_comment] = STATE(465), [sym_compiler_directive_decl] = STATE(465), [sym_fsi_directive_decl] = STATE(465), [sym_preproc_line] = STATE(465), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104456,136 +107421,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [466] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6892), - [sym_object_expression] = STATE(6892), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6892), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7400), + [sym_object_expression] = STATE(7400), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7418), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7400), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(466), [sym_block_comment] = STATE(466), [sym_line_comment] = STATE(466), [sym_compiler_directive_decl] = STATE(466), [sym_fsi_directive_decl] = STATE(466), [sym_preproc_line] = STATE(466), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104593,136 +107561,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [467] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6946), - [sym_object_expression] = STATE(6946), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6946), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7160), + [sym_object_expression] = STATE(7160), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7173), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7160), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(467), [sym_block_comment] = STATE(467), [sym_line_comment] = STATE(467), [sym_compiler_directive_decl] = STATE(467), [sym_fsi_directive_decl] = STATE(467), [sym_preproc_line] = STATE(467), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104730,136 +107701,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [468] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6821), - [sym_object_expression] = STATE(6821), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6821), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(277), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(1492), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(468), [sym_block_comment] = STATE(468), [sym_line_comment] = STATE(468), [sym_compiler_directive_decl] = STATE(468), [sym_fsi_directive_decl] = STATE(468), [sym_preproc_line] = STATE(468), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -104867,136 +107841,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [469] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(7093), - [sym_object_expression] = STATE(7093), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7093), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(86), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(922), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(469), [sym_block_comment] = STATE(469), [sym_line_comment] = STATE(469), [sym_compiler_directive_decl] = STATE(469), [sym_fsi_directive_decl] = STATE(469), [sym_preproc_line] = STATE(469), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), + [anon_sym_DASH_GT] = ACTIONS(2365), [anon_sym_try] = ACTIONS(169), [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105004,10 +107981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -105017,260 +107994,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [470] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(93), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(87), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_with_field_expression] = STATE(7658), + [sym_object_expression] = STATE(7658), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__comp_or_range_expression] = STATE(7671), + [sym_short_comp_expression] = STATE(8315), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7658), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1795), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(470), [sym_block_comment] = STATE(470), [sym_line_comment] = STATE(470), [sym_compiler_directive_decl] = STATE(470), [sym_fsi_directive_decl] = STATE(470), [sym_preproc_line] = STATE(470), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(470), - [sym_identifier] = ACTIONS(2240), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_let_BANG] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_null] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LBRACK_PIPE] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_LBRACE_PIPE] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_return_BANG] = ACTIONS(2279), - [anon_sym_yield] = ACTIONS(2243), - [anon_sym_yield_BANG] = ACTIONS(2279), - [anon_sym_lazy] = ACTIONS(2243), - [anon_sym_assert] = ACTIONS(2243), - [anon_sym_upcast] = ACTIONS(2243), - [anon_sym_downcast] = ACTIONS(2243), - [anon_sym_LT_AT] = ACTIONS(2282), - [anon_sym_LT_AT_AT] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_fun] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_match_BANG] = ACTIONS(2306), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2312), - [anon_sym_use_BANG] = ACTIONS(2315), - [anon_sym_do_BANG] = ACTIONS(2318), - [anon_sym_begin] = ACTIONS(2321), - [aux_sym_char_token1] = ACTIONS(2324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2330), - [anon_sym_AT_DQUOTE] = ACTIONS(2333), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2336), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2339), - [sym_bool] = ACTIONS(2342), - [sym_unit] = ACTIONS(2345), - [anon_sym_LPAREN_PIPE] = ACTIONS(2348), - [sym_op_identifier] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_PLUS_DOT] = ACTIONS(2354), - [anon_sym_DASH_DOT] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2354), - [sym_int] = ACTIONS(2360), - [sym_xint] = ACTIONS(2363), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2366), - [anon_sym_POUNDendif] = ACTIONS(746), - [anon_sym_POUNDelse] = ACTIONS(746), - [sym__newline] = ACTIONS(2369), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [471] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(7131), - [sym_object_expression] = STATE(7131), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(7131), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(78), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1222), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(471), [sym_block_comment] = STATE(471), [sym_line_comment] = STATE(471), [sym_compiler_directive_decl] = STATE(471), [sym_fsi_directive_decl] = STATE(471), [sym_preproc_line] = STATE(471), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105278,136 +108261,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [472] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6759), - [sym_object_expression] = STATE(6759), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6759), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(255), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_type_arguments] = STATE(3472), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(1680), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(472), [sym_block_comment] = STATE(472), [sym_line_comment] = STATE(472), [sym_compiler_directive_decl] = STATE(472), [sym_fsi_directive_decl] = STATE(472), [sym_preproc_line] = STATE(472), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym__compound_type_repeat1] = STATE(3440), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105415,115 +108401,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [473] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(144), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_with_field_expression] = STATE(6832), - [sym_object_expression] = STATE(6832), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_field_initializer] = STATE(6011), - [sym_field_initializers] = STATE(6832), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1937), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(473), [sym_block_comment] = STATE(473), [sym_line_comment] = STATE(473), [sym_compiler_directive_decl] = STATE(473), [sym_fsi_directive_decl] = STATE(473), [sym_preproc_line] = STATE(473), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(2236), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7274), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(1856), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), + }, + [474] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(122), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7865), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_line_comment] = STATE(474), + [sym_compiler_directive_decl] = STATE(474), + [sym_fsi_directive_decl] = STATE(474), + [sym_preproc_line] = STATE(474), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -105531,20 +108656,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105552,10 +108679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -105564,257 +108691,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, - [474] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(256), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), - [sym_xml_doc] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_line_comment] = STATE(474), - [sym_compiler_directive_decl] = STATE(474), - [sym_fsi_directive_decl] = STATE(474), - [sym_preproc_line] = STATE(474), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_let_BANG] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_LBRACK_PIPE] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_LBRACE_PIPE] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_return_BANG] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2375), - [anon_sym_yield_BANG] = ACTIONS(2402), - [anon_sym_lazy] = ACTIONS(2375), - [anon_sym_assert] = ACTIONS(2375), - [anon_sym_upcast] = ACTIONS(2375), - [anon_sym_downcast] = ACTIONS(2375), - [anon_sym_LT_AT] = ACTIONS(2405), - [anon_sym_LT_AT_AT] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_fun] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_match_BANG] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2432), - [anon_sym_use_BANG] = ACTIONS(2435), - [anon_sym_do_BANG] = ACTIONS(2438), - [anon_sym_begin] = ACTIONS(2441), - [aux_sym_char_token1] = ACTIONS(2444), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_AT_DQUOTE] = ACTIONS(2453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2459), - [sym_bool] = ACTIONS(2462), - [sym_unit] = ACTIONS(2465), - [anon_sym_LPAREN_PIPE] = ACTIONS(2468), - [sym_op_identifier] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_PLUS_DOT] = ACTIONS(2354), - [anon_sym_DASH_DOT] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2357), - [aux_sym_prefix_op_token1] = ACTIONS(2354), - [sym_int] = ACTIONS(2474), - [sym_xint] = ACTIONS(2477), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2480), - [anon_sym_POUNDendif] = ACTIONS(746), - [sym__newline] = ACTIONS(2483), - }, [475] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(256), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(475), [sym_block_comment] = STATE(475), [sym_line_comment] = STATE(475), [sym_compiler_directive_decl] = STATE(475), [sym_fsi_directive_decl] = STATE(475), [sym_preproc_line] = STATE(475), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7181), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105822,135 +108815,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(2486), - [sym__newline] = ACTIONS(2488), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2435), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [476] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(256), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(476), [sym_block_comment] = STATE(476), [sym_line_comment] = STATE(476), [sym_compiler_directive_decl] = STATE(476), [sym_fsi_directive_decl] = STATE(476), [sym_preproc_line] = STATE(476), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [aux_sym_preproc_if_in_expression_repeat1] = STATE(475), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8071), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -105958,135 +108954,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(2490), - [sym__newline] = ACTIONS(2488), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2437), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [477] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(262), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(142), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7994), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(477), [sym_block_comment] = STATE(477), [sym_line_comment] = STATE(477), [sym_compiler_directive_decl] = STATE(477), [sym_fsi_directive_decl] = STATE(477), [sym_preproc_line] = STATE(477), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106094,135 +109096,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - [sym__dedent] = ACTIONS(2492), + [anon_sym_POUNDif] = ACTIONS(217), }, [478] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(201), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(478), [sym_block_comment] = STATE(478), [sym_line_comment] = STATE(478), [sym_compiler_directive_decl] = STATE(478), [sym_fsi_directive_decl] = STATE(478), [sym_preproc_line] = STATE(478), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(2492), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7403), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_RBRACK] = ACTIONS(2492), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106230,132 +109232,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(1854), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [479] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(62), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(479), [sym_block_comment] = STATE(479), [sym_line_comment] = STATE(479), [sym_compiler_directive_decl] = STATE(479), [sym_fsi_directive_decl] = STATE(479), [sym_preproc_line] = STATE(479), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7904), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106363,136 +109371,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), - [anon_sym_POUNDendif] = ACTIONS(2158), - [anon_sym_POUNDelse] = ACTIONS(2158), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2439), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [480] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(198), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(480), [sym_block_comment] = STATE(480), [sym_line_comment] = STATE(480), [sym_compiler_directive_decl] = STATE(480), [sym_fsi_directive_decl] = STATE(480), [sym_preproc_line] = STATE(480), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7601), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106500,267 +109510,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2441), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [481] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(216), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7062), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(31), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(481), [sym_block_comment] = STATE(481), [sym_line_comment] = STATE(481), [sym_compiler_directive_decl] = STATE(481), [sym_fsi_directive_decl] = STATE(481), [sym_preproc_line] = STATE(481), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_open] = ACTIONS(2415), + [anon_sym_LBRACK_LT] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACK_PIPE] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LT_AT] = ACTIONS(2415), + [anon_sym_LT_AT_AT] = ACTIONS(2413), + [anon_sym_LBRACE_PIPE] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_return_BANG] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_yield_BANG] = ACTIONS(2413), + [anon_sym_lazy] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_upcast] = ACTIONS(2415), + [anon_sym_downcast] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_match_BANG] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_use_BANG] = ACTIONS(2413), + [anon_sym_do_BANG] = ACTIONS(2413), + [anon_sym_begin] = ACTIONS(2415), + [aux_sym_char_token1] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [anon_sym_AT_DQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [sym_bool] = ACTIONS(2415), + [sym_unit] = ACTIONS(2413), + [anon_sym_LPAREN_PIPE] = ACTIONS(2415), + [sym_op_identifier] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS_DOT] = ACTIONS(2413), + [anon_sym_DASH_DOT] = ACTIONS(2413), + [anon_sym_PERCENT] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [aux_sym_prefix_op_token1] = ACTIONS(2413), + [sym_int] = ACTIONS(2415), + [sym_xint] = ACTIONS(2413), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2413), + [anon_sym_POUNDload] = ACTIONS(2413), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2413), + [sym__dedent] = ACTIONS(2413), }, [482] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(175), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6793), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(482), [sym_block_comment] = STATE(482), [sym_line_comment] = STATE(482), [sym_compiler_directive_decl] = STATE(482), [sym_fsi_directive_decl] = STATE(482), [sym_preproc_line] = STATE(482), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7298), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106768,133 +109788,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2443), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [483] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(271), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6776), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(112), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7748), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(483), [sym_block_comment] = STATE(483), [sym_line_comment] = STATE(483), [sym_compiler_directive_decl] = STATE(483), [sym_fsi_directive_decl] = STATE(483), [sym_preproc_line] = STATE(483), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -106902,132 +109930,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [484] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(154), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(484), [sym_block_comment] = STATE(484), [sym_line_comment] = STATE(484), [sym_compiler_directive_decl] = STATE(484), [sym_fsi_directive_decl] = STATE(484), [sym_preproc_line] = STATE(484), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7793), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107035,134 +110066,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), - [anon_sym_POUNDendif] = ACTIONS(2158), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2445), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [485] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(485), [sym_block_comment] = STATE(485), [sym_line_comment] = STATE(485), [sym_compiler_directive_decl] = STATE(485), [sym_fsi_directive_decl] = STATE(485), [sym_preproc_line] = STATE(485), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7772), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107170,133 +110205,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2447), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [486] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(149), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7250), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(486), [sym_block_comment] = STATE(486), [sym_line_comment] = STATE(486), [sym_compiler_directive_decl] = STATE(486), [sym_fsi_directive_decl] = STATE(486), [sym_preproc_line] = STATE(486), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7641), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107304,133 +110344,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2449), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [487] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(487), [sym_block_comment] = STATE(487), [sym_line_comment] = STATE(487), [sym_compiler_directive_decl] = STATE(487), [sym_fsi_directive_decl] = STATE(487), [sym_preproc_line] = STATE(487), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7882), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107438,133 +110483,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2451), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [488] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(92), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_range_expression] = STATE(6515), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(488), [sym_block_comment] = STATE(488), [sym_line_comment] = STATE(488), [sym_compiler_directive_decl] = STATE(488), [sym_fsi_directive_decl] = STATE(488), [sym_preproc_line] = STATE(488), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107572,112 +110622,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2453), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [489] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(57), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7481), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(489), [sym_block_comment] = STATE(489), [sym_line_comment] = STATE(489), [sym_compiler_directive_decl] = STATE(489), [sym_fsi_directive_decl] = STATE(489), [sym_preproc_line] = STATE(489), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -107685,20 +110741,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107706,10 +110764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -107719,120 +110777,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [490] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(230), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7013), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(490), [sym_block_comment] = STATE(490), [sym_line_comment] = STATE(490), [sym_compiler_directive_decl] = STATE(490), [sym_fsi_directive_decl] = STATE(490), [sym_preproc_line] = STATE(490), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8155), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107840,133 +110900,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2455), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [491] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(204), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7140), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(90), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(8143), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(491), [sym_block_comment] = STATE(491), [sym_line_comment] = STATE(491), [sym_compiler_directive_decl] = STATE(491), [sym_fsi_directive_decl] = STATE(491), [sym_preproc_line] = STATE(491), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -107974,133 +111042,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [492] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(206), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7062), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(79), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(8270), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(492), [sym_block_comment] = STATE(492), [sym_line_comment] = STATE(492), [sym_compiler_directive_decl] = STATE(492), [sym_fsi_directive_decl] = STATE(492), [sym_preproc_line] = STATE(492), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108108,133 +111181,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [493] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(285), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6846), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(63), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7797), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(493), [sym_block_comment] = STATE(493), [sym_line_comment] = STATE(493), [sym_compiler_directive_decl] = STATE(493), [sym_fsi_directive_decl] = STATE(493), [sym_preproc_line] = STATE(493), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108242,133 +111320,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [494] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(494), [sym_block_comment] = STATE(494), [sym_line_comment] = STATE(494), [sym_compiler_directive_decl] = STATE(494), [sym_fsi_directive_decl] = STATE(494), [sym_preproc_line] = STATE(494), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7785), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108376,133 +111456,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2457), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [495] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(109), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_range_expression] = STATE(6515), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(495), [sym_block_comment] = STATE(495), [sym_line_comment] = STATE(495), [sym_compiler_directive_decl] = STATE(495), [sym_fsi_directive_decl] = STATE(495), [sym_preproc_line] = STATE(495), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7436), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108510,133 +111595,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2459), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [496] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(496), [sym_block_comment] = STATE(496), [sym_line_comment] = STATE(496), [sym_compiler_directive_decl] = STATE(496), [sym_fsi_directive_decl] = STATE(496), [sym_preproc_line] = STATE(496), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7273), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108644,133 +111734,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2461), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [497] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(257), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6959), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(120), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7206), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(497), [sym_block_comment] = STATE(497), [sym_line_comment] = STATE(497), [sym_compiler_directive_decl] = STATE(497), [sym_fsi_directive_decl] = STATE(497), [sym_preproc_line] = STATE(497), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108778,133 +111876,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [498] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(293), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6905), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(498), [sym_block_comment] = STATE(498), [sym_line_comment] = STATE(498), [sym_compiler_directive_decl] = STATE(498), [sym_fsi_directive_decl] = STATE(498), [sym_preproc_line] = STATE(498), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7288), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -108912,112 +112012,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2463), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [499] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(74), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7380), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(499), [sym_block_comment] = STATE(499), [sym_line_comment] = STATE(499), [sym_compiler_directive_decl] = STATE(499), [sym_fsi_directive_decl] = STATE(499), [sym_preproc_line] = STATE(499), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -109025,20 +112131,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109046,10 +112154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -109059,120 +112167,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [500] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(500), [sym_block_comment] = STATE(500), [sym_line_comment] = STATE(500), [sym_compiler_directive_decl] = STATE(500), [sym_fsi_directive_decl] = STATE(500), [sym_preproc_line] = STATE(500), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7419), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2508), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109180,133 +112290,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2465), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [501] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(211), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(7102), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(100), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7665), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(501), [sym_block_comment] = STATE(501), [sym_line_comment] = STATE(501), [sym_compiler_directive_decl] = STATE(501), [sym_fsi_directive_decl] = STATE(501), [sym_preproc_line] = STATE(501), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109314,133 +112432,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [502] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(213), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6693), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(130), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7319), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(502), [sym_block_comment] = STATE(502), [sym_line_comment] = STATE(502), [sym_compiler_directive_decl] = STATE(502), [sym_fsi_directive_decl] = STATE(502), [sym_preproc_line] = STATE(502), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109448,112 +112571,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [503] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(106), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7253), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(503), [sym_block_comment] = STATE(503), [sym_line_comment] = STATE(503), [sym_compiler_directive_decl] = STATE(503), [sym_fsi_directive_decl] = STATE(503), [sym_preproc_line] = STATE(503), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -109561,20 +112687,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109582,10 +112710,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -109595,120 +112723,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [504] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(239), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6693), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(504), [sym_block_comment] = STATE(504), [sym_line_comment] = STATE(504), [sym_compiler_directive_decl] = STATE(504), [sym_fsi_directive_decl] = STATE(504), [sym_preproc_line] = STATE(504), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8233), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109716,133 +112846,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(1846), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [505] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(505), [sym_block_comment] = STATE(505), [sym_line_comment] = STATE(505), [sym_compiler_directive_decl] = STATE(505), [sym_fsi_directive_decl] = STATE(505), [sym_preproc_line] = STATE(505), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7191), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2512), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109850,133 +112985,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2467), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [506] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(180), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_range_expression] = STATE(6793), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(506), [sym_block_comment] = STATE(506), [sym_line_comment] = STATE(506), [sym_compiler_directive_decl] = STATE(506), [sym_fsi_directive_decl] = STATE(506), [sym_preproc_line] = STATE(506), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8217), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -109984,133 +113124,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2469), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [507] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(507), [sym_block_comment] = STATE(507), [sym_line_comment] = STATE(507), [sym_compiler_directive_decl] = STATE(507), [sym_fsi_directive_decl] = STATE(507), [sym_preproc_line] = STATE(507), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7687), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110118,112 +113263,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2471), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [508] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(88), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_slice_ranges] = STATE(7590), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6517), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(508), [sym_block_comment] = STATE(508), [sym_line_comment] = STATE(508), [sym_compiler_directive_decl] = STATE(508), [sym_fsi_directive_decl] = STATE(508), [sym_preproc_line] = STATE(508), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_with] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -110231,20 +113382,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110252,10 +113405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -110265,119 +113418,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [509] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(295), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(509), [sym_block_comment] = STATE(509), [sym_line_comment] = STATE(509), [sym_compiler_directive_decl] = STATE(509), [sym_fsi_directive_decl] = STATE(509), [sym_preproc_line] = STATE(509), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7458), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110385,265 +113541,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2473), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [510] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(143), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(36), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(510), [sym_block_comment] = STATE(510), [sym_line_comment] = STATE(510), [sym_compiler_directive_decl] = STATE(510), [sym_fsi_directive_decl] = STATE(510), [sym_preproc_line] = STATE(510), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_open] = ACTIONS(2415), + [anon_sym_LBRACK_LT] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACK_PIPE] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LT_AT] = ACTIONS(2415), + [anon_sym_LT_AT_AT] = ACTIONS(2413), + [anon_sym_LBRACE_PIPE] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_return_BANG] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_yield_BANG] = ACTIONS(2413), + [anon_sym_lazy] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_upcast] = ACTIONS(2415), + [anon_sym_downcast] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_match_BANG] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_use_BANG] = ACTIONS(2413), + [anon_sym_do_BANG] = ACTIONS(2413), + [anon_sym_begin] = ACTIONS(2415), + [aux_sym_char_token1] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [anon_sym_AT_DQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [sym_bool] = ACTIONS(2415), + [sym_unit] = ACTIONS(2413), + [anon_sym_LPAREN_PIPE] = ACTIONS(2415), + [sym_op_identifier] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS_DOT] = ACTIONS(2413), + [anon_sym_DASH_DOT] = ACTIONS(2413), + [anon_sym_PERCENT] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [aux_sym_prefix_op_token1] = ACTIONS(2413), + [sym_int] = ACTIONS(2415), + [sym_xint] = ACTIONS(2413), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2413), + [anon_sym_POUNDload] = ACTIONS(2413), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2413), }, [511] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(65), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(511), [sym_block_comment] = STATE(511), [sym_line_comment] = STATE(511), [sym_compiler_directive_decl] = STATE(511), [sym_fsi_directive_decl] = STATE(511), [sym_preproc_line] = STATE(511), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(7636), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110651,132 +113819,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2475), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [512] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(241), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(512), [sym_block_comment] = STATE(512), [sym_line_comment] = STATE(512), [sym_compiler_directive_decl] = STATE(512), [sym_fsi_directive_decl] = STATE(512), [sym_preproc_line] = STATE(512), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8044), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110784,132 +113958,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(1852), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [513] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(242), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(513), [sym_block_comment] = STATE(513), [sym_line_comment] = STATE(513), [sym_compiler_directive_decl] = STATE(513), [sym_fsi_directive_decl] = STATE(513), [sym_preproc_line] = STATE(513), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2215), + [sym_preproc_else_in_expression] = STATE(8176), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -110917,132 +114097,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2477), + [anon_sym_POUNDelse] = ACTIONS(1848), + [sym__newline] = ACTIONS(1850), }, [514] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(243), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7160), + [sym_object_expression] = STATE(7160), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7160), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(514), [sym_block_comment] = STATE(514), [sym_line_comment] = STATE(514), [sym_compiler_directive_decl] = STATE(514), [sym_fsi_directive_decl] = STATE(514), [sym_preproc_line] = STATE(514), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111050,132 +114238,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [515] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(252), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7346), + [sym_object_expression] = STATE(7346), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7346), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(515), [sym_block_comment] = STATE(515), [sym_line_comment] = STATE(515), [sym_compiler_directive_decl] = STATE(515), [sym_fsi_directive_decl] = STATE(515), [sym_preproc_line] = STATE(515), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111183,132 +114376,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [516] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(95), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7400), + [sym_object_expression] = STATE(7400), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7400), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(516), [sym_block_comment] = STATE(516), [sym_line_comment] = STATE(516), [sym_compiler_directive_decl] = STATE(516), [sym_fsi_directive_decl] = STATE(516), [sym_preproc_line] = STATE(516), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111316,132 +114514,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [517] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(286), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7213), + [sym_object_expression] = STATE(7213), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7213), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(517), [sym_block_comment] = STATE(517), [sym_line_comment] = STATE(517), [sym_compiler_directive_decl] = STATE(517), [sym_fsi_directive_decl] = STATE(517), [sym_preproc_line] = STATE(517), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111449,132 +114652,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [518] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(296), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(94), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym__slice_range_special] = STATE(6588), + [sym_slice_range] = STATE(6647), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(518), [sym_block_comment] = STATE(518), [sym_line_comment] = STATE(518), [sym_compiler_directive_decl] = STATE(518), [sym_fsi_directive_decl] = STATE(518), [sym_preproc_line] = STATE(518), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [anon_sym_DOT_DOT3] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2279), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111582,132 +114790,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [519] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(232), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(8310), + [sym_object_expression] = STATE(8310), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(8310), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(519), [sym_block_comment] = STATE(519), [sym_line_comment] = STATE(519), [sym_compiler_directive_decl] = STATE(519), [sym_fsi_directive_decl] = STATE(519), [sym_preproc_line] = STATE(519), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111715,132 +114928,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [520] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(100), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7585), + [sym_object_expression] = STATE(7585), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7585), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(520), [sym_block_comment] = STATE(520), [sym_line_comment] = STATE(520), [sym_compiler_directive_decl] = STATE(520), [sym_fsi_directive_decl] = STATE(520), [sym_preproc_line] = STATE(520), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -111848,265 +115066,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [521] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(270), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(89), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(521), [sym_block_comment] = STATE(521), [sym_line_comment] = STATE(521), [sym_compiler_directive_decl] = STATE(521), [sym_fsi_directive_decl] = STATE(521), [sym_preproc_line] = STATE(521), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_null] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_LBRACK_PIPE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LT_AT] = ACTIONS(2516), + [anon_sym_LT_AT_AT] = ACTIONS(2519), + [anon_sym_LBRACE_PIPE] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_return_BANG] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_yield_BANG] = ACTIONS(2528), + [anon_sym_lazy] = ACTIONS(2486), + [anon_sym_assert] = ACTIONS(2486), + [anon_sym_upcast] = ACTIONS(2486), + [anon_sym_downcast] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_fun] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2546), + [anon_sym_match_BANG] = ACTIONS(2549), + [anon_sym_function] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2555), + [anon_sym_use_BANG] = ACTIONS(2558), + [anon_sym_do_BANG] = ACTIONS(2561), + [anon_sym_begin] = ACTIONS(2564), + [aux_sym_char_token1] = ACTIONS(2567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_AT_DQUOTE] = ACTIONS(2576), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2582), + [sym_bool] = ACTIONS(2585), + [sym_unit] = ACTIONS(2588), + [anon_sym_LPAREN_PIPE] = ACTIONS(2591), + [sym_op_identifier] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_DOT] = ACTIONS(2597), + [anon_sym_DASH_DOT] = ACTIONS(2597), + [anon_sym_PERCENT] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2600), + [aux_sym_prefix_op_token1] = ACTIONS(2603), + [sym_int] = ACTIONS(2606), + [sym_xint] = ACTIONS(2609), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2612), + [anon_sym_POUNDendif] = ACTIONS(888), + [anon_sym_POUNDelse] = ACTIONS(888), + [sym__newline] = ACTIONS(2615), }, [522] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(228), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7622), + [sym_object_expression] = STATE(7622), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7622), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(522), [sym_block_comment] = STATE(522), [sym_line_comment] = STATE(522), [sym_compiler_directive_decl] = STATE(522), [sym_fsi_directive_decl] = STATE(522), [sym_preproc_line] = STATE(522), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112114,132 +115342,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [523] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(227), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7507), + [sym_object_expression] = STATE(7507), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7507), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(523), [sym_block_comment] = STATE(523), [sym_line_comment] = STATE(523), [sym_compiler_directive_decl] = STATE(523), [sym_fsi_directive_decl] = STATE(523), [sym_preproc_line] = STATE(523), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112247,132 +115480,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [524] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(224), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7286), + [sym_object_expression] = STATE(7286), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7286), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(524), [sym_block_comment] = STATE(524), [sym_line_comment] = STATE(524), [sym_compiler_directive_decl] = STATE(524), [sym_fsi_directive_decl] = STATE(524), [sym_preproc_line] = STATE(524), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112380,132 +115618,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [525] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(203), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7547), + [sym_object_expression] = STATE(7547), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7547), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(525), [sym_block_comment] = STATE(525), [sym_line_comment] = STATE(525), [sym_compiler_directive_decl] = STATE(525), [sym_fsi_directive_decl] = STATE(525), [sym_preproc_line] = STATE(525), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112513,132 +115756,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [526] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(202), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7406), + [sym_object_expression] = STATE(7406), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7406), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(526), [sym_block_comment] = STATE(526), [sym_line_comment] = STATE(526), [sym_compiler_directive_decl] = STATE(526), [sym_fsi_directive_decl] = STATE(526), [sym_preproc_line] = STATE(526), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112646,243 +115894,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [527] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(280), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7454), + [sym_object_expression] = STATE(7454), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7454), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(527), [sym_block_comment] = STATE(527), [sym_line_comment] = STATE(527), [sym_compiler_directive_decl] = STATE(527), [sym_fsi_directive_decl] = STATE(527), [sym_preproc_line] = STATE(527), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), - }, - [528] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(322), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(528), - [sym_block_comment] = STATE(528), - [sym_line_comment] = STATE(528), - [sym_compiler_directive_decl] = STATE(528), - [sym_fsi_directive_decl] = STATE(528), - [sym_preproc_line] = STATE(528), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -112891,20 +116011,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -112912,10 +116032,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), + }, + [528] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(143), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym__slice_range_special] = STATE(6721), + [sym_slice_range] = STATE(6728), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(528), + [sym_block_comment] = STATE(528), + [sym_line_comment] = STATE(528), + [sym_compiler_directive_decl] = STATE(528), + [sym_fsi_directive_decl] = STATE(528), + [sym_preproc_line] = STATE(528), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [anon_sym_DOT_DOT3] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2433), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -112925,119 +116183,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [529] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(102), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(338), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_with_field_expression] = STATE(7658), + [sym_object_expression] = STATE(7658), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_field_initializer] = STATE(6344), + [sym_field_initializers] = STATE(7658), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(2049), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(529), [sym_block_comment] = STATE(529), [sym_line_comment] = STATE(529), [sym_compiler_directive_decl] = STATE(529), [sym_fsi_directive_decl] = STATE(529), [sym_preproc_line] = STATE(529), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113045,132 +116308,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [530] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(186), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(161), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(530), [sym_block_comment] = STATE(530), [sym_line_comment] = STATE(530), [sym_compiler_directive_decl] = STATE(530), [sym_fsi_directive_decl] = STATE(530), [sym_preproc_line] = STATE(530), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113178,265 +116443,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(2618), + [sym__newline] = ACTIONS(2620), }, [531] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(107), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(161), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(531), [sym_block_comment] = STATE(531), [sym_line_comment] = STATE(531), [sym_compiler_directive_decl] = STATE(531), [sym_fsi_directive_decl] = STATE(531), [sym_preproc_line] = STATE(531), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2622), + [anon_sym_return] = ACTIONS(2625), + [anon_sym_do] = ACTIONS(2628), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LBRACK_PIPE] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LT_AT] = ACTIONS(2646), + [anon_sym_LT_AT_AT] = ACTIONS(2649), + [anon_sym_LBRACE_PIPE] = ACTIONS(2652), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_return_BANG] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(2625), + [anon_sym_yield_BANG] = ACTIONS(2658), + [anon_sym_lazy] = ACTIONS(2625), + [anon_sym_assert] = ACTIONS(2625), + [anon_sym_upcast] = ACTIONS(2625), + [anon_sym_downcast] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2664), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_fun] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_match_BANG] = ACTIONS(2676), + [anon_sym_function] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2682), + [anon_sym_use_BANG] = ACTIONS(2685), + [anon_sym_do_BANG] = ACTIONS(2688), + [anon_sym_begin] = ACTIONS(2691), + [aux_sym_char_token1] = ACTIONS(2694), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_AT_DQUOTE] = ACTIONS(2703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2706), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2709), + [sym_bool] = ACTIONS(2712), + [sym_unit] = ACTIONS(2715), + [anon_sym_LPAREN_PIPE] = ACTIONS(2718), + [sym_op_identifier] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_PLUS_DOT] = ACTIONS(2597), + [anon_sym_DASH_DOT] = ACTIONS(2597), + [anon_sym_PERCENT] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2600), + [aux_sym_prefix_op_token1] = ACTIONS(2603), + [sym_int] = ACTIONS(2724), + [sym_xint] = ACTIONS(2727), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2730), + [anon_sym_POUNDendif] = ACTIONS(888), + [sym__newline] = ACTIONS(2733), }, [532] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(200), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(161), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(532), [sym_block_comment] = STATE(532), [sym_line_comment] = STATE(532), [sym_compiler_directive_decl] = STATE(532), [sym_fsi_directive_decl] = STATE(532), [sym_preproc_line] = STATE(532), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [aux_sym_preproc_if_in_expression_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113444,132 +116717,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(2736), + [sym__newline] = ACTIONS(2620), }, [533] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(190), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(155), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(533), [sym_block_comment] = STATE(533), [sym_line_comment] = STATE(533), [sym_compiler_directive_decl] = STATE(533), [sym_fsi_directive_decl] = STATE(533), [sym_preproc_line] = STATE(533), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_RBRACK] = ACTIONS(2738), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113577,132 +116855,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [534] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(323), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(327), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(534), [sym_block_comment] = STATE(534), [sym_line_comment] = STATE(534), [sym_compiler_directive_decl] = STATE(534), [sym_fsi_directive_decl] = STATE(534), [sym_preproc_line] = STATE(534), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113710,132 +116991,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1618), }, [535] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(156), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(146), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(535), [sym_block_comment] = STATE(535), [sym_line_comment] = STATE(535), [sym_compiler_directive_decl] = STATE(535), [sym_fsi_directive_decl] = STATE(535), [sym_preproc_line] = STATE(535), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113843,132 +117125,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(491), + [anon_sym_POUNDendif] = ACTIONS(2413), + [anon_sym_POUNDelse] = ACTIONS(2413), }, [536] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(182), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(346), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(536), [sym_block_comment] = STATE(536), [sym_line_comment] = STATE(536), [sym_compiler_directive_decl] = STATE(536), [sym_fsi_directive_decl] = STATE(536), [sym_preproc_line] = STATE(536), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -113976,132 +117262,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), + [sym__dedent] = ACTIONS(2738), }, [537] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(294), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(351), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(537), [sym_block_comment] = STATE(537), [sym_line_comment] = STATE(537), [sym_compiler_directive_decl] = STATE(537), [sym_fsi_directive_decl] = STATE(537), [sym_preproc_line] = STATE(537), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114109,132 +117397,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1200), + [anon_sym_POUNDendif] = ACTIONS(2413), }, [538] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(170), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(538), [sym_block_comment] = STATE(538), [sym_line_comment] = STATE(538), [sym_compiler_directive_decl] = STATE(538), [sym_fsi_directive_decl] = STATE(538), [sym_preproc_line] = STATE(538), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2742), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114242,132 +117533,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [539] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(320), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(239), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7300), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(539), [sym_block_comment] = STATE(539), [sym_line_comment] = STATE(539), [sym_compiler_directive_decl] = STATE(539), [sym_fsi_directive_decl] = STATE(539), [sym_preproc_line] = STATE(539), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114375,132 +117668,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [540] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(181), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(540), [sym_block_comment] = STATE(540), [sym_line_comment] = STATE(540), [sym_compiler_directive_decl] = STATE(540), [sym_fsi_directive_decl] = STATE(540), [sym_preproc_line] = STATE(540), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114508,132 +117803,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [541] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(88), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(116), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_range_expression] = STATE(6674), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(541), [sym_block_comment] = STATE(541), [sym_line_comment] = STATE(541), [sym_compiler_directive_decl] = STATE(541), [sym_fsi_directive_decl] = STATE(541), [sym_preproc_line] = STATE(541), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114641,132 +117938,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(816), }, [542] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(31), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(542), [sym_block_comment] = STATE(542), [sym_line_comment] = STATE(542), [sym_compiler_directive_decl] = STATE(542), [sym_fsi_directive_decl] = STATE(542), [sym_preproc_line] = STATE(542), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2746), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114774,132 +118073,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(217), }, [543] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(174), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(276), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7556), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(543), [sym_block_comment] = STATE(543), [sym_line_comment] = STATE(543), [sym_compiler_directive_decl] = STATE(543), [sym_fsi_directive_decl] = STATE(543), [sym_preproc_line] = STATE(543), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -114907,132 +118208,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [544] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(178), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(544), [sym_block_comment] = STATE(544), [sym_line_comment] = STATE(544), [sym_compiler_directive_decl] = STATE(544), [sym_fsi_directive_decl] = STATE(544), [sym_preproc_line] = STATE(544), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115040,132 +118343,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [545] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(195), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(545), [sym_block_comment] = STATE(545), [sym_line_comment] = STATE(545), [sym_compiler_directive_decl] = STATE(545), [sym_fsi_directive_decl] = STATE(545), [sym_preproc_line] = STATE(545), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2750), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115173,132 +118478,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [546] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(112), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(265), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7230), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(546), [sym_block_comment] = STATE(546), [sym_line_comment] = STATE(546), [sym_compiler_directive_decl] = STATE(546), [sym_fsi_directive_decl] = STATE(546), [sym_preproc_line] = STATE(546), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115306,132 +118613,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1108), }, [547] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(177), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(167), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7413), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(547), [sym_block_comment] = STATE(547), [sym_line_comment] = STATE(547), [sym_compiler_directive_decl] = STATE(547), [sym_fsi_directive_decl] = STATE(547), [sym_preproc_line] = STATE(547), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115439,132 +118748,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [548] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(215), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(211), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7230), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(548), [sym_block_comment] = STATE(548), [sym_line_comment] = STATE(548), [sym_compiler_directive_decl] = STATE(548), [sym_fsi_directive_decl] = STATE(548), [sym_preproc_line] = STATE(548), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115572,132 +118883,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [549] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(255), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(294), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7467), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(549), [sym_block_comment] = STATE(549), [sym_line_comment] = STATE(549), [sym_compiler_directive_decl] = STATE(549), [sym_fsi_directive_decl] = STATE(549), [sym_preproc_line] = STATE(549), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115705,132 +119018,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [550] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(72), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(550), [sym_block_comment] = STATE(550), [sym_line_comment] = STATE(550), [sym_compiler_directive_decl] = STATE(550), [sym_fsi_directive_decl] = STATE(550), [sym_preproc_line] = STATE(550), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115838,132 +119153,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(217), }, [551] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(330), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(300), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7171), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(551), [sym_block_comment] = STATE(551), [sym_line_comment] = STATE(551), [sym_compiler_directive_decl] = STATE(551), [sym_fsi_directive_decl] = STATE(551), [sym_preproc_line] = STATE(551), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -115971,132 +119288,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [552] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(289), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(282), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(8251), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(552), [sym_block_comment] = STATE(552), [sym_line_comment] = STATE(552), [sym_compiler_directive_decl] = STATE(552), [sym_fsi_directive_decl] = STATE(552), [sym_preproc_line] = STATE(552), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116104,132 +119423,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [553] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(229), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(324), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7594), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(553), [sym_block_comment] = STATE(553), [sym_line_comment] = STATE(553), [sym_compiler_directive_decl] = STATE(553), [sym_fsi_directive_decl] = STATE(553), [sym_preproc_line] = STATE(553), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116237,110 +119558,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [554] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(303), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(554), [sym_block_comment] = STATE(554), [sym_line_comment] = STATE(554), [sym_compiler_directive_decl] = STATE(554), [sym_fsi_directive_decl] = STATE(554), [sym_preproc_line] = STATE(554), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -116349,20 +119672,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116370,10 +119693,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -116383,119 +119706,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [555] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(46), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(555), [sym_block_comment] = STATE(555), [sym_line_comment] = STATE(555), [sym_compiler_directive_decl] = STATE(555), [sym_fsi_directive_decl] = STATE(555), [sym_preproc_line] = STATE(555), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2756), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116503,132 +119828,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(217), }, [556] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(24), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(259), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7382), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(556), [sym_block_comment] = STATE(556), [sym_line_comment] = STATE(556), [sym_compiler_directive_decl] = STATE(556), [sym_fsi_directive_decl] = STATE(556), [sym_preproc_line] = STATE(556), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116636,132 +119963,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(1108), }, [557] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(236), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(289), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7630), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(557), [sym_block_comment] = STATE(557), [sym_line_comment] = STATE(557), [sym_compiler_directive_decl] = STATE(557), [sym_fsi_directive_decl] = STATE(557), [sym_preproc_line] = STATE(557), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116769,132 +120098,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1108), }, [558] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(219), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(240), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7594), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(558), [sym_block_comment] = STATE(558), [sym_line_comment] = STATE(558), [sym_compiler_directive_decl] = STATE(558), [sym_fsi_directive_decl] = STATE(558), [sym_preproc_line] = STATE(558), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -116902,110 +120233,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [559] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(234), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(559), [sym_block_comment] = STATE(559), [sym_line_comment] = STATE(559), [sym_compiler_directive_decl] = STATE(559), [sym_fsi_directive_decl] = STATE(559), [sym_preproc_line] = STATE(559), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -117014,20 +120347,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117035,10 +120368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -117048,119 +120381,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [560] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(2), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(85), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_range_expression] = STATE(6674), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(560), [sym_block_comment] = STATE(560), [sym_line_comment] = STATE(560), [sym_compiler_directive_decl] = STATE(560), [sym_fsi_directive_decl] = STATE(560), [sym_preproc_line] = STATE(560), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117168,132 +120503,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [561] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(199), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(184), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7666), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(561), [sym_block_comment] = STATE(561), [sym_line_comment] = STATE(561), [sym_compiler_directive_decl] = STATE(561), [sym_fsi_directive_decl] = STATE(561), [sym_preproc_line] = STATE(561), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117301,132 +120638,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1108), }, [562] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(15), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(562), [sym_block_comment] = STATE(562), [sym_line_comment] = STATE(562), [sym_compiler_directive_decl] = STATE(562), [sym_fsi_directive_decl] = STATE(562), [sym_preproc_line] = STATE(562), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117434,132 +120773,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(217), }, [563] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(217), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(563), [sym_block_comment] = STATE(563), [sym_line_comment] = STATE(563), [sym_compiler_directive_decl] = STATE(563), [sym_fsi_directive_decl] = STATE(563), [sym_preproc_line] = STATE(563), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2762), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117567,132 +120908,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(217), }, [564] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(25), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(564), [sym_block_comment] = STATE(564), [sym_line_comment] = STATE(564), [sym_compiler_directive_decl] = STATE(564), [sym_fsi_directive_decl] = STATE(564), [sym_preproc_line] = STATE(564), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117700,132 +121043,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(217), }, [565] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(161), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(233), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7516), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(565), [sym_block_comment] = STATE(565), [sym_line_comment] = STATE(565), [sym_compiler_directive_decl] = STATE(565), [sym_fsi_directive_decl] = STATE(565), [sym_preproc_line] = STATE(565), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117833,132 +121178,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(1108), }, [566] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(261), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(566), [sym_block_comment] = STATE(566), [sym_line_comment] = STATE(566), [sym_compiler_directive_decl] = STATE(566), [sym_fsi_directive_decl] = STATE(566), [sym_preproc_line] = STATE(566), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_with] = ACTIONS(2766), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -117966,132 +121313,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [567] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(9), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(203), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7300), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(567), [sym_block_comment] = STATE(567), [sym_line_comment] = STATE(567), [sym_compiler_directive_decl] = STATE(567), [sym_fsi_directive_decl] = STATE(567), [sym_preproc_line] = STATE(567), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118099,132 +121448,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [568] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(133), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(188), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_range_expression] = STATE(7359), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(568), [sym_block_comment] = STATE(568), [sym_line_comment] = STATE(568), [sym_compiler_directive_decl] = STATE(568), [sym_fsi_directive_decl] = STATE(568), [sym_preproc_line] = STATE(568), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118232,132 +121583,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [569] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(305), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(214), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(569), [sym_block_comment] = STATE(569), [sym_line_comment] = STATE(569), [sym_compiler_directive_decl] = STATE(569), [sym_fsi_directive_decl] = STATE(569), [sym_preproc_line] = STATE(569), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118365,132 +121717,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [570] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(281), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(198), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(570), [sym_block_comment] = STATE(570), [sym_line_comment] = STATE(570), [sym_compiler_directive_decl] = STATE(570), [sym_fsi_directive_decl] = STATE(570), [sym_preproc_line] = STATE(570), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118498,132 +121851,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [571] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(3), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(309), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(571), [sym_block_comment] = STATE(571), [sym_line_comment] = STATE(571), [sym_compiler_directive_decl] = STATE(571), [sym_fsi_directive_decl] = STATE(571), [sym_preproc_line] = STATE(571), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118631,110 +121985,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [572] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(4), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(65), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(572), [sym_block_comment] = STATE(572), [sym_line_comment] = STATE(572), [sym_compiler_directive_decl] = STATE(572), [sym_fsi_directive_decl] = STATE(572), [sym_preproc_line] = STATE(572), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -118743,20 +122098,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118764,10 +122119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -118777,119 +122132,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [573] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(266), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(38), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(573), [sym_block_comment] = STATE(573), [sym_line_comment] = STATE(573), [sym_compiler_directive_decl] = STATE(573), [sym_fsi_directive_decl] = STATE(573), [sym_preproc_line] = STATE(573), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -118897,110 +122253,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [574] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(6), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(64), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(574), [sym_block_comment] = STATE(574), [sym_line_comment] = STATE(574), [sym_compiler_directive_decl] = STATE(574), [sym_fsi_directive_decl] = STATE(574), [sym_preproc_line] = STATE(574), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -119009,20 +122366,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119030,10 +122387,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -119043,119 +122400,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [575] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(162), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(46), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(575), [sym_block_comment] = STATE(575), [sym_line_comment] = STATE(575), [sym_compiler_directive_decl] = STATE(575), [sym_fsi_directive_decl] = STATE(575), [sym_preproc_line] = STATE(575), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119163,110 +122521,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(587), }, [576] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(301), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(371), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(576), [sym_block_comment] = STATE(576), [sym_line_comment] = STATE(576), [sym_compiler_directive_decl] = STATE(576), [sym_fsi_directive_decl] = STATE(576), [sym_preproc_line] = STATE(576), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -119275,20 +122634,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119296,10 +122655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -119309,119 +122668,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [577] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(23), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(344), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(577), [sym_block_comment] = STATE(577), [sym_line_comment] = STATE(577), [sym_compiler_directive_decl] = STATE(577), [sym_fsi_directive_decl] = STATE(577), [sym_preproc_line] = STATE(577), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119429,132 +122789,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(682), }, [578] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(127), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(145), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(578), [sym_block_comment] = STATE(578), [sym_line_comment] = STATE(578), [sym_compiler_directive_decl] = STATE(578), [sym_fsi_directive_decl] = STATE(578), [sym_preproc_line] = STATE(578), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119562,132 +122923,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [579] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(104), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(44), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(579), [sym_block_comment] = STATE(579), [sym_line_comment] = STATE(579), [sym_compiler_directive_decl] = STATE(579), [sym_fsi_directive_decl] = STATE(579), [sym_preproc_line] = STATE(579), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119695,132 +123057,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(587), }, [580] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(183), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(53), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(580), [sym_block_comment] = STATE(580), [sym_line_comment] = STATE(580), [sym_compiler_directive_decl] = STATE(580), [sym_fsi_directive_decl] = STATE(580), [sym_preproc_line] = STATE(580), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119828,132 +123191,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(587), }, [581] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(176), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(378), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(581), [sym_block_comment] = STATE(581), [sym_line_comment] = STATE(581), [sym_compiler_directive_decl] = STATE(581), [sym_fsi_directive_decl] = STATE(581), [sym_preproc_line] = STATE(581), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -119961,132 +123325,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [582] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(276), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(54), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(582), [sym_block_comment] = STATE(582), [sym_line_comment] = STATE(582), [sym_compiler_directive_decl] = STATE(582), [sym_fsi_directive_decl] = STATE(582), [sym_preproc_line] = STATE(582), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120094,132 +123459,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(587), }, [583] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(238), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(55), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(583), [sym_block_comment] = STATE(583), [sym_line_comment] = STATE(583), [sym_compiler_directive_decl] = STATE(583), [sym_fsi_directive_decl] = STATE(583), [sym_preproc_line] = STATE(583), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120227,132 +123593,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(587), }, [584] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(154), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(228), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(584), [sym_block_comment] = STATE(584), [sym_line_comment] = STATE(584), [sym_compiler_directive_decl] = STATE(584), [sym_fsi_directive_decl] = STATE(584), [sym_preproc_line] = STATE(584), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120360,132 +123727,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(217), }, [585] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(231), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(251), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(585), [sym_block_comment] = STATE(585), [sym_line_comment] = STATE(585), [sym_compiler_directive_decl] = STATE(585), [sym_fsi_directive_decl] = STATE(585), [sym_preproc_line] = STATE(585), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120493,132 +123861,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1618), }, [586] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(194), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(341), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(586), [sym_block_comment] = STATE(586), [sym_line_comment] = STATE(586), [sym_compiler_directive_decl] = STATE(586), [sym_fsi_directive_decl] = STATE(586), [sym_preproc_line] = STATE(586), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120626,132 +123995,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [587] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(218), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(52), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(671), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(587), [sym_block_comment] = STATE(587), [sym_line_comment] = STATE(587), [sym_compiler_directive_decl] = STATE(587), [sym_fsi_directive_decl] = STATE(587), [sym_preproc_line] = STATE(587), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120759,132 +124129,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(587), }, [588] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(282), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(114), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(588), [sym_block_comment] = STATE(588), [sym_line_comment] = STATE(588), [sym_compiler_directive_decl] = STATE(588), [sym_fsi_directive_decl] = STATE(588), [sym_preproc_line] = STATE(588), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -120892,132 +124263,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [589] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(220), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(323), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(589), [sym_block_comment] = STATE(589), [sym_line_comment] = STATE(589), [sym_compiler_directive_decl] = STATE(589), [sym_fsi_directive_decl] = STATE(589), [sym_preproc_line] = STATE(589), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121025,132 +124397,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [590] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(129), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(315), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(590), [sym_block_comment] = STATE(590), [sym_line_comment] = STATE(590), [sym_compiler_directive_decl] = STATE(590), [sym_fsi_directive_decl] = STATE(590), [sym_preproc_line] = STATE(590), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121158,110 +124531,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [591] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(306), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(66), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(591), [sym_block_comment] = STATE(591), [sym_line_comment] = STATE(591), [sym_compiler_directive_decl] = STATE(591), [sym_fsi_directive_decl] = STATE(591), [sym_preproc_line] = STATE(591), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -121270,20 +124644,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121291,10 +124665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -121304,119 +124678,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [592] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(291), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(349), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(592), [sym_block_comment] = STATE(592), [sym_line_comment] = STATE(592), [sym_compiler_directive_decl] = STATE(592), [sym_fsi_directive_decl] = STATE(592), [sym_preproc_line] = STATE(592), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121424,132 +124799,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [593] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(221), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(372), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(593), [sym_block_comment] = STATE(593), [sym_line_comment] = STATE(593), [sym_compiler_directive_decl] = STATE(593), [sym_fsi_directive_decl] = STATE(593), [sym_preproc_line] = STATE(593), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121557,132 +124933,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [594] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(265), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(180), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(594), [sym_block_comment] = STATE(594), [sym_line_comment] = STATE(594), [sym_compiler_directive_decl] = STATE(594), [sym_fsi_directive_decl] = STATE(594), [sym_preproc_line] = STATE(594), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121690,132 +125067,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1290), }, [595] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(268), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(325), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(595), [sym_block_comment] = STATE(595), [sym_line_comment] = STATE(595), [sym_compiler_directive_decl] = STATE(595), [sym_fsi_directive_decl] = STATE(595), [sym_preproc_line] = STATE(595), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121823,132 +125201,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [596] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(141), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(137), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(596), [sym_block_comment] = STATE(596), [sym_line_comment] = STATE(596), [sym_compiler_directive_decl] = STATE(596), [sym_fsi_directive_decl] = STATE(596), [sym_preproc_line] = STATE(596), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -121956,110 +125335,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [597] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(339), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(71), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(597), [sym_block_comment] = STATE(597), [sym_line_comment] = STATE(597), [sym_compiler_directive_decl] = STATE(597), [sym_fsi_directive_decl] = STATE(597), [sym_preproc_line] = STATE(597), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -122068,20 +125448,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122089,10 +125469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -122102,119 +125482,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [598] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(189), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(258), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(598), [sym_block_comment] = STATE(598), [sym_line_comment] = STATE(598), [sym_compiler_directive_decl] = STATE(598), [sym_fsi_directive_decl] = STATE(598), [sym_preproc_line] = STATE(598), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122222,111 +125603,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1618), }, [599] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(315), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(67), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(599), [sym_block_comment] = STATE(599), [sym_line_comment] = STATE(599), [sym_compiler_directive_decl] = STATE(599), [sym_fsi_directive_decl] = STATE(599), [sym_preproc_line] = STATE(599), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -122334,20 +125716,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122355,10 +125737,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -122368,119 +125750,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [600] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(76), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(160), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(600), [sym_block_comment] = STATE(600), [sym_line_comment] = STATE(600), [sym_compiler_directive_decl] = STATE(600), [sym_fsi_directive_decl] = STATE(600), [sym_preproc_line] = STATE(600), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122488,132 +125871,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(217), }, [601] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(251), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(244), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(601), [sym_block_comment] = STATE(601), [sym_line_comment] = STATE(601), [sym_compiler_directive_decl] = STATE(601), [sym_fsi_directive_decl] = STATE(601), [sym_preproc_line] = STATE(601), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122621,132 +126005,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [602] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(159), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(152), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(602), [sym_block_comment] = STATE(602), [sym_line_comment] = STATE(602), [sym_compiler_directive_decl] = STATE(602), [sym_fsi_directive_decl] = STATE(602), [sym_preproc_line] = STATE(602), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122754,132 +126139,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1200), }, [603] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(105), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(333), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(603), [sym_block_comment] = STATE(603), [sym_line_comment] = STATE(603), [sym_compiler_directive_decl] = STATE(603), [sym_fsi_directive_decl] = STATE(603), [sym_preproc_line] = STATE(603), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), + [anon_sym_yield_BANG] = ACTIONS(694), [anon_sym_lazy] = ACTIONS(688), [anon_sym_assert] = ACTIONS(688), [anon_sym_upcast] = ACTIONS(688), [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -122887,132 +126273,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [604] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(123), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(139), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(604), [sym_block_comment] = STATE(604), [sym_line_comment] = STATE(604), [sym_compiler_directive_decl] = STATE(604), [sym_fsi_directive_decl] = STATE(604), [sym_preproc_line] = STATE(604), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123020,132 +126407,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [605] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(108), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(243), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(605), [sym_block_comment] = STATE(605), [sym_line_comment] = STATE(605), [sym_compiler_directive_decl] = STATE(605), [sym_fsi_directive_decl] = STATE(605), [sym_preproc_line] = STATE(605), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123153,132 +126541,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(682), }, [606] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(341), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(242), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(606), [sym_block_comment] = STATE(606), [sym_line_comment] = STATE(606), [sym_compiler_directive_decl] = STATE(606), [sym_fsi_directive_decl] = STATE(606), [sym_preproc_line] = STATE(606), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123286,132 +126675,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [607] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(284), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(231), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(607), [sym_block_comment] = STATE(607), [sym_line_comment] = STATE(607), [sym_compiler_directive_decl] = STATE(607), [sym_fsi_directive_decl] = STATE(607), [sym_preproc_line] = STATE(607), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123419,132 +126809,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [608] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(210), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(339), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(608), [sym_block_comment] = STATE(608), [sym_line_comment] = STATE(608), [sym_compiler_directive_decl] = STATE(608), [sym_fsi_directive_decl] = STATE(608), [sym_preproc_line] = STATE(608), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123552,132 +126943,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(217), }, [609] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(146), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(127), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(609), [sym_block_comment] = STATE(609), [sym_line_comment] = STATE(609), [sym_compiler_directive_decl] = STATE(609), [sym_fsi_directive_decl] = STATE(609), [sym_preproc_line] = STATE(609), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123685,132 +127077,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(682), }, [610] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(118), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(138), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(610), [sym_block_comment] = STATE(610), [sym_line_comment] = STATE(610), [sym_compiler_directive_decl] = STATE(610), [sym_fsi_directive_decl] = STATE(610), [sym_preproc_line] = STATE(610), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123818,132 +127211,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [611] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(117), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(230), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(611), [sym_block_comment] = STATE(611), [sym_line_comment] = STATE(611), [sym_compiler_directive_decl] = STATE(611), [sym_fsi_directive_decl] = STATE(611), [sym_preproc_line] = STATE(611), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -123951,132 +127345,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [612] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(269), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(136), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(612), [sym_block_comment] = STATE(612), [sym_line_comment] = STATE(612), [sym_compiler_directive_decl] = STATE(612), [sym_fsi_directive_decl] = STATE(612), [sym_preproc_line] = STATE(612), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124084,132 +127479,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(682), }, [613] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(98), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(280), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(613), [sym_block_comment] = STATE(613), [sym_line_comment] = STATE(613), [sym_compiler_directive_decl] = STATE(613), [sym_fsi_directive_decl] = STATE(613), [sym_preproc_line] = STATE(613), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124217,132 +127613,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(816), }, [614] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(237), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(133), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(614), [sym_block_comment] = STATE(614), [sym_line_comment] = STATE(614), [sym_compiler_directive_decl] = STATE(614), [sym_fsi_directive_decl] = STATE(614), [sym_preproc_line] = STATE(614), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124350,132 +127747,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [615] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(142), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(140), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(615), [sym_block_comment] = STATE(615), [sym_line_comment] = STATE(615), [sym_compiler_directive_decl] = STATE(615), [sym_fsi_directive_decl] = STATE(615), [sym_preproc_line] = STATE(615), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124483,110 +127881,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [616] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(305), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(360), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(616), [sym_block_comment] = STATE(616), [sym_line_comment] = STATE(616), [sym_compiler_directive_decl] = STATE(616), [sym_fsi_directive_decl] = STATE(616), [sym_preproc_line] = STATE(616), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -124595,20 +127994,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124616,10 +128015,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -124629,119 +128028,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [617] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(163), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(321), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(617), [sym_block_comment] = STATE(617), [sym_line_comment] = STATE(617), [sym_compiler_directive_decl] = STATE(617), [sym_fsi_directive_decl] = STATE(617), [sym_preproc_line] = STATE(617), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124749,132 +128149,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(816), }, [618] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(148), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(296), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(618), [sym_block_comment] = STATE(618), [sym_line_comment] = STATE(618), [sym_compiler_directive_decl] = STATE(618), [sym_fsi_directive_decl] = STATE(618), [sym_preproc_line] = STATE(618), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -124882,132 +128283,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(816), }, [619] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(166), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(224), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(619), [sym_block_comment] = STATE(619), [sym_line_comment] = STATE(619), [sym_compiler_directive_decl] = STATE(619), [sym_fsi_directive_decl] = STATE(619), [sym_preproc_line] = STATE(619), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125015,132 +128417,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(682), }, [620] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(309), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(320), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(620), [sym_block_comment] = STATE(620), [sym_line_comment] = STATE(620), [sym_compiler_directive_decl] = STATE(620), [sym_fsi_directive_decl] = STATE(620), [sym_preproc_line] = STATE(620), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125148,132 +128551,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [621] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(171), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(220), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(621), [sym_block_comment] = STATE(621), [sym_line_comment] = STATE(621), [sym_compiler_directive_decl] = STATE(621), [sym_fsi_directive_decl] = STATE(621), [sym_preproc_line] = STATE(621), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125281,132 +128685,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [622] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(192), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(303), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(622), [sym_block_comment] = STATE(622), [sym_line_comment] = STATE(622), [sym_compiler_directive_decl] = STATE(622), [sym_fsi_directive_decl] = STATE(622), [sym_preproc_line] = STATE(622), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125414,132 +128819,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(1290), }, [623] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(167), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(298), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(623), [sym_block_comment] = STATE(623), [sym_line_comment] = STATE(623), [sym_compiler_directive_decl] = STATE(623), [sym_fsi_directive_decl] = STATE(623), [sym_preproc_line] = STATE(623), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125547,243 +128953,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(1392), }, [624] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(245), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(297), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(624), [sym_block_comment] = STATE(624), [sym_line_comment] = STATE(624), [sym_compiler_directive_decl] = STATE(624), [sym_fsi_directive_decl] = STATE(624), [sym_preproc_line] = STATE(624), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), - }, - [625] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(304), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(625), - [sym_block_comment] = STATE(625), - [sym_line_comment] = STATE(625), - [sym_compiler_directive_decl] = STATE(625), - [sym_fsi_directive_decl] = STATE(625), - [sym_preproc_line] = STATE(625), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -125792,20 +129066,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125813,10 +129087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -125825,120 +129099,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, + [625] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(266), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), + [sym_xml_doc] = STATE(625), + [sym_block_comment] = STATE(625), + [sym_line_comment] = STATE(625), + [sym_compiler_directive_decl] = STATE(625), + [sym_fsi_directive_decl] = STATE(625), + [sym_preproc_line] = STATE(625), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), + }, [626] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(316), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(135), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(626), [sym_block_comment] = STATE(626), [sym_line_comment] = STATE(626), [sym_compiler_directive_decl] = STATE(626), [sym_fsi_directive_decl] = STATE(626), [sym_preproc_line] = STATE(626), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -125946,132 +129355,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [627] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(258), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(221), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(627), [sym_block_comment] = STATE(627), [sym_line_comment] = STATE(627), [sym_compiler_directive_decl] = STATE(627), [sym_fsi_directive_decl] = STATE(627), [sym_preproc_line] = STATE(627), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126079,132 +129489,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(682), }, [628] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(152), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(262), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(628), [sym_block_comment] = STATE(628), [sym_line_comment] = STATE(628), [sym_compiler_directive_decl] = STATE(628), [sym_fsi_directive_decl] = STATE(628), [sym_preproc_line] = STATE(628), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126212,132 +129623,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1618), }, [629] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(320), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(287), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(629), [sym_block_comment] = STATE(629), [sym_line_comment] = STATE(629), [sym_compiler_directive_decl] = STATE(629), [sym_fsi_directive_decl] = STATE(629), [sym_preproc_line] = STATE(629), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126345,132 +129757,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [630] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(323), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(146), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(630), [sym_block_comment] = STATE(630), [sym_line_comment] = STATE(630), [sym_compiler_directive_decl] = STATE(630), [sym_fsi_directive_decl] = STATE(630), [sym_preproc_line] = STATE(630), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126478,132 +129891,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [631] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(283), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(365), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(631), [sym_block_comment] = STATE(631), [sym_line_comment] = STATE(631), [sym_compiler_directive_decl] = STATE(631), [sym_fsi_directive_decl] = STATE(631), [sym_preproc_line] = STATE(631), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126611,132 +130025,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(217), }, [632] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(83), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(27), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(632), [sym_block_comment] = STATE(632), [sym_line_comment] = STATE(632), [sym_compiler_directive_decl] = STATE(632), [sym_fsi_directive_decl] = STATE(632), [sym_preproc_line] = STATE(632), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126744,132 +130159,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(387), }, [633] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(193), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(104), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(633), [sym_block_comment] = STATE(633), [sym_line_comment] = STATE(633), [sym_compiler_directive_decl] = STATE(633), [sym_fsi_directive_decl] = STATE(633), [sym_preproc_line] = STATE(633), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -126877,111 +130293,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(491), }, [634] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(126), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(379), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(634), [sym_block_comment] = STATE(634), [sym_line_comment] = STATE(634), [sym_compiler_directive_decl] = STATE(634), [sym_fsi_directive_decl] = STATE(634), [sym_preproc_line] = STATE(634), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -126989,20 +130406,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127010,10 +130427,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -127023,119 +130440,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [635] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(91), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(76), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(635), [sym_block_comment] = STATE(635), [sym_line_comment] = STATE(635), [sym_compiler_directive_decl] = STATE(635), [sym_fsi_directive_decl] = STATE(635), [sym_preproc_line] = STATE(635), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127143,132 +130561,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(217), }, [636] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(196), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(382), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(636), [sym_block_comment] = STATE(636), [sym_line_comment] = STATE(636), [sym_compiler_directive_decl] = STATE(636), [sym_fsi_directive_decl] = STATE(636), [sym_preproc_line] = STATE(636), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127276,132 +130695,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [637] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(315), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(263), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(637), [sym_block_comment] = STATE(637), [sym_line_comment] = STATE(637), [sym_compiler_directive_decl] = STATE(637), [sym_fsi_directive_decl] = STATE(637), [sym_preproc_line] = STATE(637), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127409,132 +130829,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1618), }, [638] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(191), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(202), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(638), [sym_block_comment] = STATE(638), [sym_line_comment] = STATE(638), [sym_compiler_directive_decl] = STATE(638), [sym_fsi_directive_decl] = STATE(638), [sym_preproc_line] = STATE(638), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127542,132 +130963,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(1618), }, [639] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(160), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(204), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(639), [sym_block_comment] = STATE(639), [sym_line_comment] = STATE(639), [sym_compiler_directive_decl] = STATE(639), [sym_fsi_directive_decl] = STATE(639), [sym_preproc_line] = STATE(639), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127675,132 +131097,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [640] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(39), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(189), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(640), [sym_block_comment] = STATE(640), [sym_line_comment] = STATE(640), [sym_compiler_directive_decl] = STATE(640), [sym_fsi_directive_decl] = STATE(640), [sym_preproc_line] = STATE(640), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127808,132 +131231,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(682), }, [641] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(278), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(182), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(641), [sym_block_comment] = STATE(641), [sym_line_comment] = STATE(641), [sym_compiler_directive_decl] = STATE(641), [sym_fsi_directive_decl] = STATE(641), [sym_preproc_line] = STATE(641), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -127941,132 +131365,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1290), }, [642] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(327), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(166), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(642), [sym_block_comment] = STATE(642), [sym_line_comment] = STATE(642), [sym_compiler_directive_decl] = STATE(642), [sym_fsi_directive_decl] = STATE(642), [sym_preproc_line] = STATE(642), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128074,132 +131499,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [643] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(235), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(274), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(643), [sym_block_comment] = STATE(643), [sym_line_comment] = STATE(643), [sym_compiler_directive_decl] = STATE(643), [sym_fsi_directive_decl] = STATE(643), [sym_preproc_line] = STATE(643), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128207,132 +131633,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1618), }, [644] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(205), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(183), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(644), [sym_block_comment] = STATE(644), [sym_line_comment] = STATE(644), [sym_compiler_directive_decl] = STATE(644), [sym_fsi_directive_decl] = STATE(644), [sym_preproc_line] = STATE(644), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128340,110 +131767,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1290), }, [645] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(317), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(376), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(645), [sym_block_comment] = STATE(645), [sym_line_comment] = STATE(645), [sym_compiler_directive_decl] = STATE(645), [sym_fsi_directive_decl] = STATE(645), [sym_preproc_line] = STATE(645), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -128452,20 +131880,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128473,10 +131901,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -128486,119 +131914,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [646] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(329), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(193), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(646), [sym_block_comment] = STATE(646), [sym_line_comment] = STATE(646), [sym_compiler_directive_decl] = STATE(646), [sym_fsi_directive_decl] = STATE(646), [sym_preproc_line] = STATE(646), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128606,132 +132035,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [647] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(165), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(164), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(647), [sym_block_comment] = STATE(647), [sym_line_comment] = STATE(647), [sym_compiler_directive_decl] = STATE(647), [sym_fsi_directive_decl] = STATE(647), [sym_preproc_line] = STATE(647), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128739,132 +132169,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(1108), }, [648] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(222), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(148), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(648), [sym_block_comment] = STATE(648), [sym_line_comment] = STATE(648), [sym_compiler_directive_decl] = STATE(648), [sym_fsi_directive_decl] = STATE(648), [sym_preproc_line] = STATE(648), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -128872,132 +132303,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [649] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(188), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(91), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(649), [sym_block_comment] = STATE(649), [sym_line_comment] = STATE(649), [sym_compiler_directive_decl] = STATE(649), [sym_fsi_directive_decl] = STATE(649), [sym_preproc_line] = STATE(649), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129005,132 +132437,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(217), }, [650] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(139), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(268), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(650), [sym_block_comment] = STATE(650), [sym_line_comment] = STATE(650), [sym_compiler_directive_decl] = STATE(650), [sym_fsi_directive_decl] = STATE(650), [sym_preproc_line] = STATE(650), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129138,132 +132571,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [651] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(290), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(304), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(651), [sym_block_comment] = STATE(651), [sym_line_comment] = STATE(651), [sym_compiler_directive_decl] = STATE(651), [sym_fsi_directive_decl] = STATE(651), [sym_preproc_line] = STATE(651), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129271,132 +132705,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [652] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(318), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(157), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(652), [sym_block_comment] = STATE(652), [sym_line_comment] = STATE(652), [sym_compiler_directive_decl] = STATE(652), [sym_fsi_directive_decl] = STATE(652), [sym_preproc_line] = STATE(652), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129404,132 +132839,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [653] = { - [sym_function_or_value_defn] = STATE(653), - [sym__expression] = STATE(169), - [sym_tuple_expression] = STATE(2216), - [sym_brace_expression] = STATE(2216), - [sym_anon_record_expression] = STATE(2216), - [sym_prefixed_expression] = STATE(2216), - [sym_literal_expression] = STATE(2216), - [sym_typecast_expression] = STATE(2216), - [sym_for_expression] = STATE(2216), - [sym_while_expression] = STATE(2216), - [sym__if_branch] = STATE(6933), - [sym_if_expression] = STATE(2216), - [sym_fun_expression] = STATE(2216), - [sym_try_expression] = STATE(2216), - [sym_match_expression] = STATE(2216), - [sym_function_expression] = STATE(2216), - [sym_object_instantiation_expression] = STATE(2216), - [sym_mutate_expression] = STATE(2216), - [sym_index_expression] = STATE(2216), - [sym_dot_expression] = STATE(2216), - [sym_typed_expression] = STATE(2216), - [sym_declaration_expression] = STATE(2216), - [sym_do_expression] = STATE(2216), - [sym_list_expression] = STATE(2216), - [sym_array_expression] = STATE(2216), - [sym_begin_end_expression] = STATE(2216), - [sym_paren_expression] = STATE(2216), - [sym_application_expression] = STATE(2216), - [sym_infix_expression] = STATE(2216), - [sym_ce_expression] = STATE(2216), - [sym_sequential_expression] = STATE(2216), - [sym_char] = STATE(2175), - [sym_format_string] = STATE(2168), - [sym__string_literal] = STATE(2168), - [sym_string] = STATE(2175), - [sym_verbatim_string] = STATE(2175), - [sym_bytearray] = STATE(2175), - [sym_verbatim_bytearray] = STATE(2175), - [sym_format_triple_quoted_string] = STATE(2164), - [sym_triple_quoted_string] = STATE(2175), - [sym_const] = STATE(2216), - [sym_long_identifier_or_op] = STATE(2216), - [sym_long_identifier] = STATE(2192), - [sym_active_pattern] = STATE(2202), - [sym__identifier_or_op] = STATE(2354), - [sym_prefix_op] = STATE(647), - [sym_sbyte] = STATE(2175), - [sym_byte] = STATE(2175), - [sym_int16] = STATE(2175), - [sym_uint16] = STATE(2175), - [sym_int32] = STATE(2175), - [sym_uint32] = STATE(2175), - [sym_nativeint] = STATE(2175), - [sym_unativeint] = STATE(2175), - [sym_int64] = STATE(2175), - [sym_uint64] = STATE(2175), - [sym_ieee32] = STATE(2175), - [sym_ieee64] = STATE(2175), - [sym_bignum] = STATE(2175), - [sym_decimal] = STATE(2175), - [sym_float] = STATE(1825), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(156), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(653), [sym_block_comment] = STATE(653), [sym_line_comment] = STATE(653), [sym_compiler_directive_decl] = STATE(653), [sym_fsi_directive_decl] = STATE(653), [sym_preproc_line] = STATE(653), - [sym_preproc_if_in_expression] = STATE(2216), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_null] = ACTIONS(1228), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_LBRACK_PIPE] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACE_PIPE] = ACTIONS(1236), - [anon_sym_new] = ACTIONS(1238), - [anon_sym_return_BANG] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1220), - [anon_sym_yield_BANG] = ACTIONS(1240), - [anon_sym_lazy] = ACTIONS(1220), - [anon_sym_assert] = ACTIONS(1220), - [anon_sym_upcast] = ACTIONS(1220), - [anon_sym_downcast] = ACTIONS(1220), - [anon_sym_LT_AT] = ACTIONS(2174), - [anon_sym_LT_AT_AT] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1256), - [anon_sym_match_BANG] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_use_BANG] = ACTIONS(1272), - [anon_sym_do_BANG] = ACTIONS(1274), - [anon_sym_begin] = ACTIONS(1276), - [aux_sym_char_token1] = ACTIONS(1280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1284), - [anon_sym_AT_DQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1290), - [sym_bool] = ACTIONS(1292), - [sym_unit] = ACTIONS(2178), - [anon_sym_LPAREN_PIPE] = ACTIONS(1294), - [sym_op_identifier] = ACTIONS(2180), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129537,132 +132973,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1298), - [sym_xint] = ACTIONS(1300), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1302), + [anon_sym_POUNDif] = ACTIONS(217), }, [654] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(329), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(154), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(654), [sym_block_comment] = STATE(654), [sym_line_comment] = STATE(654), [sym_compiler_directive_decl] = STATE(654), [sym_fsi_directive_decl] = STATE(654), [sym_preproc_line] = STATE(654), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129670,132 +133107,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [655] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(334), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(151), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(655), [sym_block_comment] = STATE(655), [sym_line_comment] = STATE(655), [sym_compiler_directive_decl] = STATE(655), [sym_fsi_directive_decl] = STATE(655), [sym_preproc_line] = STATE(655), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129803,132 +133241,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [656] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(240), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(223), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(656), [sym_block_comment] = STATE(656), [sym_line_comment] = STATE(656), [sym_compiler_directive_decl] = STATE(656), [sym_fsi_directive_decl] = STATE(656), [sym_preproc_line] = STATE(656), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -129936,132 +133375,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [657] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(94), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(149), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(657), [sym_block_comment] = STATE(657), [sym_line_comment] = STATE(657), [sym_compiler_directive_decl] = STATE(657), [sym_fsi_directive_decl] = STATE(657), [sym_preproc_line] = STATE(657), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130069,132 +133509,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(682), }, [658] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(321), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(219), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(658), [sym_block_comment] = STATE(658), [sym_line_comment] = STATE(658), [sym_compiler_directive_decl] = STATE(658), [sym_fsi_directive_decl] = STATE(658), [sym_preproc_line] = STATE(658), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130202,132 +133643,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [659] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(331), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(159), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(659), [sym_block_comment] = STATE(659), [sym_line_comment] = STATE(659), [sym_compiler_directive_decl] = STATE(659), [sym_fsi_directive_decl] = STATE(659), [sym_preproc_line] = STATE(659), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130335,132 +133777,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [660] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(259), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(132), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(660), [sym_block_comment] = STATE(660), [sym_line_comment] = STATE(660), [sym_compiler_directive_decl] = STATE(660), [sym_fsi_directive_decl] = STATE(660), [sym_preproc_line] = STATE(660), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130468,132 +133911,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [661] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(337), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(23), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(661), [sym_block_comment] = STATE(661), [sym_line_comment] = STATE(661), [sym_compiler_directive_decl] = STATE(661), [sym_fsi_directive_decl] = STATE(661), [sym_preproc_line] = STATE(661), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130601,132 +134045,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [662] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(300), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(163), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(662), [sym_block_comment] = STATE(662), [sym_line_comment] = STATE(662), [sym_compiler_directive_decl] = STATE(662), [sym_fsi_directive_decl] = STATE(662), [sym_preproc_line] = STATE(662), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130734,132 +134179,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [663] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(63), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(115), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(663), [sym_block_comment] = STATE(663), [sym_line_comment] = STATE(663), [sym_compiler_directive_decl] = STATE(663), [sym_fsi_directive_decl] = STATE(663), [sym_preproc_line] = STATE(663), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -130867,111 +134313,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(972), }, [664] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(207), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(144), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(664), [sym_block_comment] = STATE(664), [sym_line_comment] = STATE(664), [sym_compiler_directive_decl] = STATE(664), [sym_fsi_directive_decl] = STATE(664), [sym_preproc_line] = STATE(664), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -130979,20 +134426,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131000,10 +134447,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -131013,97 +134460,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [665] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(302), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(3), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(665), [sym_block_comment] = STATE(665), [sym_line_comment] = STATE(665), [sym_compiler_directive_decl] = STATE(665), [sym_fsi_directive_decl] = STATE(665), [sym_preproc_line] = STATE(665), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -131112,20 +134560,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131133,10 +134581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -131146,119 +134594,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [666] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(336), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(22), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(666), [sym_block_comment] = STATE(666), [sym_line_comment] = STATE(666), [sym_compiler_directive_decl] = STATE(666), [sym_fsi_directive_decl] = STATE(666), [sym_preproc_line] = STATE(666), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131266,132 +134715,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(387), }, [667] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(247), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(293), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(667), [sym_block_comment] = STATE(667), [sym_line_comment] = STATE(667), [sym_compiler_directive_decl] = STATE(667), [sym_fsi_directive_decl] = STATE(667), [sym_preproc_line] = STATE(667), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131399,132 +134849,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [668] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(248), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(335), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(668), [sym_block_comment] = STATE(668), [sym_line_comment] = STATE(668), [sym_compiler_directive_decl] = STATE(668), [sym_fsi_directive_decl] = STATE(668), [sym_preproc_line] = STATE(668), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131532,110 +134983,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [669] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(312), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(82), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(669), [sym_block_comment] = STATE(669), [sym_line_comment] = STATE(669), [sym_compiler_directive_decl] = STATE(669), [sym_fsi_directive_decl] = STATE(669), [sym_preproc_line] = STATE(669), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -131644,20 +135096,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131665,10 +135117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -131678,119 +135130,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [670] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(328), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(28), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(670), [sym_block_comment] = STATE(670), [sym_line_comment] = STATE(670), [sym_compiler_directive_decl] = STATE(670), [sym_fsi_directive_decl] = STATE(670), [sym_preproc_line] = STATE(670), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131798,132 +135251,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(387), }, [671] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(157), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), + [sym_function_or_value_defn] = STATE(587), + [sym__expression] = STATE(51), + [sym_literal_expression] = STATE(2010), + [sym_long_identifier_or_op] = STATE(2010), + [sym_tuple_expression] = STATE(2010), + [sym_brace_expression] = STATE(2010), + [sym_anon_record_expression] = STATE(2010), + [sym_prefixed_expression] = STATE(2010), + [sym_typecast_expression] = STATE(2010), + [sym_for_expression] = STATE(2010), + [sym_while_expression] = STATE(2010), + [sym__if_branch] = STATE(7647), + [sym_if_expression] = STATE(2010), + [sym_fun_expression] = STATE(2010), + [sym_try_expression] = STATE(2010), + [sym_match_expression] = STATE(2010), + [sym_function_expression] = STATE(2010), + [sym_object_instantiation_expression] = STATE(2010), + [sym_mutate_expression] = STATE(2010), + [sym_index_expression] = STATE(2010), + [sym_dot_expression] = STATE(2010), + [sym_typed_expression] = STATE(2010), + [sym_declaration_expression] = STATE(2010), + [sym_do_expression] = STATE(2010), + [sym_list_expression] = STATE(2010), + [sym_array_expression] = STATE(2010), + [sym_begin_end_expression] = STATE(2010), + [sym_paren_expression] = STATE(2010), + [sym_application_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_ce_expression] = STATE(2010), + [sym_sequential_expression] = STATE(2010), + [sym_char] = STATE(1894), + [sym_format_string] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_string] = STATE(1894), + [sym_verbatim_string] = STATE(1894), + [sym_bytearray] = STATE(1894), + [sym_verbatim_bytearray] = STATE(1894), + [sym_format_triple_quoted_string] = STATE(1905), + [sym_triple_quoted_string] = STATE(1894), + [sym_const] = STATE(2010), + [sym_long_identifier] = STATE(1804), + [sym_active_pattern] = STATE(1762), + [sym__identifier_or_op] = STATE(1755), + [sym__infix_or_prefix_op] = STATE(3539), [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_sbyte] = STATE(1894), + [sym_byte] = STATE(1894), + [sym_int16] = STATE(1894), + [sym_uint16] = STATE(1894), + [sym_int32] = STATE(1894), + [sym_uint32] = STATE(1894), + [sym_nativeint] = STATE(1894), + [sym_unativeint] = STATE(1894), + [sym_int64] = STATE(1894), + [sym_uint64] = STATE(1894), + [sym_ieee32] = STATE(1894), + [sym_ieee64] = STATE(1894), + [sym_bignum] = STATE(1894), + [sym_decimal] = STATE(1894), + [sym_float] = STATE(1517), [sym_xml_doc] = STATE(671), [sym_block_comment] = STATE(671), [sym_line_comment] = STATE(671), [sym_compiler_directive_decl] = STATE(671), [sym_fsi_directive_decl] = STATE(671), [sym_preproc_line] = STATE(671), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(2010), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(507), + [anon_sym_return] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_null] = ACTIONS(519), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_LBRACK_PIPE] = ACTIONS(523), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LT_AT] = ACTIONS(527), + [anon_sym_LT_AT_AT] = ACTIONS(2313), + [anon_sym_LBRACE_PIPE] = ACTIONS(531), + [anon_sym_new] = ACTIONS(533), + [anon_sym_return_BANG] = ACTIONS(535), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_yield_BANG] = ACTIONS(535), + [anon_sym_lazy] = ACTIONS(511), + [anon_sym_assert] = ACTIONS(511), + [anon_sym_upcast] = ACTIONS(511), + [anon_sym_downcast] = ACTIONS(511), + [anon_sym_for] = ACTIONS(539), + [anon_sym_while] = ACTIONS(541), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_match] = ACTIONS(547), + [anon_sym_match_BANG] = ACTIONS(549), + [anon_sym_function] = ACTIONS(551), + [anon_sym_use] = ACTIONS(555), + [anon_sym_use_BANG] = ACTIONS(557), + [anon_sym_do_BANG] = ACTIONS(559), + [anon_sym_begin] = ACTIONS(561), + [aux_sym_char_token1] = ACTIONS(565), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_AT_DQUOTE] = ACTIONS(571), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [sym_bool] = ACTIONS(577), + [sym_unit] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(579), + [sym_op_identifier] = ACTIONS(2325), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -131931,132 +135385,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(583), + [sym_xint] = ACTIONS(585), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(587), }, [672] = { - [sym_function_or_value_defn] = STATE(672), - [sym__expression] = STATE(97), - [sym_tuple_expression] = STATE(1969), - [sym_brace_expression] = STATE(1969), - [sym_anon_record_expression] = STATE(1969), - [sym_prefixed_expression] = STATE(1969), - [sym_literal_expression] = STATE(1969), - [sym_typecast_expression] = STATE(1969), - [sym_for_expression] = STATE(1969), - [sym_while_expression] = STATE(1969), - [sym__if_branch] = STATE(6987), - [sym_if_expression] = STATE(1969), - [sym_fun_expression] = STATE(1969), - [sym_try_expression] = STATE(1969), - [sym_match_expression] = STATE(1969), - [sym_function_expression] = STATE(1969), - [sym_object_instantiation_expression] = STATE(1969), - [sym_mutate_expression] = STATE(1969), - [sym_index_expression] = STATE(1969), - [sym_dot_expression] = STATE(1969), - [sym_typed_expression] = STATE(1969), - [sym_declaration_expression] = STATE(1969), - [sym_do_expression] = STATE(1969), - [sym_list_expression] = STATE(1969), - [sym_array_expression] = STATE(1969), - [sym_begin_end_expression] = STATE(1969), - [sym_paren_expression] = STATE(1969), - [sym_application_expression] = STATE(1969), - [sym_infix_expression] = STATE(1969), - [sym_ce_expression] = STATE(1969), - [sym_sequential_expression] = STATE(1969), - [sym_char] = STATE(1979), - [sym_format_string] = STATE(1984), - [sym__string_literal] = STATE(1984), - [sym_string] = STATE(1979), - [sym_verbatim_string] = STATE(1979), - [sym_bytearray] = STATE(1979), - [sym_verbatim_bytearray] = STATE(1979), - [sym_format_triple_quoted_string] = STATE(1985), - [sym_triple_quoted_string] = STATE(1979), - [sym_const] = STATE(1969), - [sym_long_identifier_or_op] = STATE(1969), - [sym_long_identifier] = STATE(1923), - [sym_active_pattern] = STATE(2040), - [sym__identifier_or_op] = STATE(2015), - [sym_prefix_op] = STATE(613), - [sym_sbyte] = STATE(1979), - [sym_byte] = STATE(1979), - [sym_int16] = STATE(1979), - [sym_uint16] = STATE(1979), - [sym_int32] = STATE(1979), - [sym_uint32] = STATE(1979), - [sym_nativeint] = STATE(1979), - [sym_unativeint] = STATE(1979), - [sym_int64] = STATE(1979), - [sym_uint64] = STATE(1979), - [sym_ieee32] = STATE(1979), - [sym_ieee64] = STATE(1979), - [sym_bignum] = STATE(1979), - [sym_decimal] = STATE(1979), - [sym_float] = STATE(1550), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(229), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(672), [sym_block_comment] = STATE(672), [sym_line_comment] = STATE(672), [sym_compiler_directive_decl] = STATE(672), [sym_fsi_directive_decl] = STATE(672), [sym_preproc_line] = STATE(672), - [sym_preproc_if_in_expression] = STATE(1969), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(752), - [anon_sym_return] = ACTIONS(756), - [anon_sym_do] = ACTIONS(758), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_null] = ACTIONS(764), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_LBRACK_PIPE] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_LBRACE_PIPE] = ACTIONS(772), - [anon_sym_new] = ACTIONS(774), - [anon_sym_return_BANG] = ACTIONS(776), - [anon_sym_yield] = ACTIONS(756), - [anon_sym_yield_BANG] = ACTIONS(776), - [anon_sym_lazy] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(756), - [anon_sym_upcast] = ACTIONS(756), - [anon_sym_downcast] = ACTIONS(756), - [anon_sym_LT_AT] = ACTIONS(2088), - [anon_sym_LT_AT_AT] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(784), - [anon_sym_while] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(788), - [anon_sym_try] = ACTIONS(790), - [anon_sym_match] = ACTIONS(792), - [anon_sym_match_BANG] = ACTIONS(794), - [anon_sym_function] = ACTIONS(796), - [anon_sym_use] = ACTIONS(800), - [anon_sym_use_BANG] = ACTIONS(802), - [anon_sym_do_BANG] = ACTIONS(804), - [anon_sym_begin] = ACTIONS(806), - [aux_sym_char_token1] = ACTIONS(810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_AT_DQUOTE] = ACTIONS(816), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), - [sym_bool] = ACTIONS(822), - [sym_unit] = ACTIONS(2100), - [anon_sym_LPAREN_PIPE] = ACTIONS(824), - [sym_op_identifier] = ACTIONS(2102), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132064,132 +135519,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(828), - [sym_xint] = ACTIONS(830), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(832), + [anon_sym_POUNDif] = ACTIONS(816), }, [673] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(250), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(295), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(673), [sym_block_comment] = STATE(673), [sym_line_comment] = STATE(673), [sym_compiler_directive_decl] = STATE(673), [sym_fsi_directive_decl] = STATE(673), [sym_preproc_line] = STATE(673), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132197,110 +135653,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [674] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(132), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(362), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(674), [sym_block_comment] = STATE(674), [sym_line_comment] = STATE(674), [sym_compiler_directive_decl] = STATE(674), [sym_fsi_directive_decl] = STATE(674), [sym_preproc_line] = STATE(674), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -132309,20 +135766,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132330,10 +135787,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -132343,119 +135800,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [675] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(19), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(206), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(675), [sym_block_comment] = STATE(675), [sym_line_comment] = STATE(675), [sym_compiler_directive_decl] = STATE(675), [sym_fsi_directive_decl] = STATE(675), [sym_preproc_line] = STATE(675), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132463,132 +135921,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(682), }, [676] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(214), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(117), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(676), [sym_block_comment] = STATE(676), [sym_line_comment] = STATE(676), [sym_compiler_directive_decl] = STATE(676), [sym_fsi_directive_decl] = STATE(676), [sym_preproc_line] = STATE(676), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132596,132 +136055,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(972), }, [677] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(11), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(373), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(677), [sym_block_comment] = STATE(677), [sym_line_comment] = STATE(677), [sym_compiler_directive_decl] = STATE(677), [sym_fsi_directive_decl] = STATE(677), [sym_preproc_line] = STATE(677), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132729,132 +136189,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(217), }, [678] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(322), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(105), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(678), [sym_block_comment] = STATE(678), [sym_line_comment] = STATE(678), [sym_compiler_directive_decl] = STATE(678), [sym_fsi_directive_decl] = STATE(678), [sym_preproc_line] = STATE(678), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132862,132 +136323,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [679] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(330), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(205), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(679), [sym_block_comment] = STATE(679), [sym_line_comment] = STATE(679), [sym_compiler_directive_decl] = STATE(679), [sym_fsi_directive_decl] = STATE(679), [sym_preproc_line] = STATE(679), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -132995,132 +136457,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [680] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(151), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(178), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(680), [sym_block_comment] = STATE(680), [sym_line_comment] = STATE(680), [sym_compiler_directive_decl] = STATE(680), [sym_fsi_directive_decl] = STATE(680), [sym_preproc_line] = STATE(680), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133128,132 +136591,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [681] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(12), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(383), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(681), [sym_block_comment] = STATE(681), [sym_line_comment] = STATE(681), [sym_compiler_directive_decl] = STATE(681), [sym_fsi_directive_decl] = STATE(681), [sym_preproc_line] = STATE(681), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133261,110 +136725,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(217), }, [682] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(340), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(370), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(682), [sym_block_comment] = STATE(682), [sym_line_comment] = STATE(682), [sym_compiler_directive_decl] = STATE(682), [sym_fsi_directive_decl] = STATE(682), [sym_preproc_line] = STATE(682), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -133373,20 +136838,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133394,10 +136859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -133407,119 +136872,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [683] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(274), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(290), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(683), [sym_block_comment] = STATE(683), [sym_line_comment] = STATE(683), [sym_compiler_directive_decl] = STATE(683), [sym_fsi_directive_decl] = STATE(683), [sym_preproc_line] = STATE(683), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133527,132 +136993,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1108), }, [684] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(244), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(237), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(684), [sym_block_comment] = STATE(684), [sym_line_comment] = STATE(684), [sym_compiler_directive_decl] = STATE(684), [sym_fsi_directive_decl] = STATE(684), [sym_preproc_line] = STATE(684), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133660,132 +137127,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(816), }, [685] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(8), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(328), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(685), [sym_block_comment] = STATE(685), [sym_line_comment] = STATE(685), [sym_compiler_directive_decl] = STATE(685), [sym_fsi_directive_decl] = STATE(685), [sym_preproc_line] = STATE(685), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133793,132 +137261,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [686] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(13), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(29), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(686), [sym_block_comment] = STATE(686), [sym_line_comment] = STATE(686), [sym_compiler_directive_decl] = STATE(686), [sym_fsi_directive_decl] = STATE(686), [sym_preproc_line] = STATE(686), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -133926,132 +137395,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(387), }, [687] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(155), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(199), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(687), [sym_block_comment] = STATE(687), [sym_line_comment] = STATE(687), [sym_compiler_directive_decl] = STATE(687), [sym_fsi_directive_decl] = STATE(687), [sym_preproc_line] = STATE(687), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134059,132 +137529,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [688] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(20), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(201), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(688), [sym_block_comment] = STATE(688), [sym_line_comment] = STATE(688), [sym_compiler_directive_decl] = STATE(688), [sym_fsi_directive_decl] = STATE(688), [sym_preproc_line] = STATE(688), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134192,132 +137663,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(1290), }, [689] = { - [sym_function_or_value_defn] = STATE(677), - [sym__expression] = STATE(16), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(562), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(275), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(689), [sym_block_comment] = STATE(689), [sym_line_comment] = STATE(689), [sym_compiler_directive_decl] = STATE(689), [sym_fsi_directive_decl] = STATE(689), [sym_preproc_line] = STATE(689), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(255), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(263), - [anon_sym_return_BANG] = ACTIONS(265), - [anon_sym_yield] = ACTIONS(255), - [anon_sym_yield_BANG] = ACTIONS(265), - [anon_sym_lazy] = ACTIONS(255), - [anon_sym_assert] = ACTIONS(255), - [anon_sym_upcast] = ACTIONS(255), - [anon_sym_downcast] = ACTIONS(255), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(281), - [anon_sym_use_BANG] = ACTIONS(283), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134325,132 +137797,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(289), - [sym_xint] = ACTIONS(291), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(682), }, [690] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(273), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(30), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(690), [sym_block_comment] = STATE(690), [sym_line_comment] = STATE(690), [sym_compiler_directive_decl] = STATE(690), [sym_fsi_directive_decl] = STATE(690), [sym_preproc_line] = STATE(690), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134458,132 +137931,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(387), }, [691] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(209), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(272), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(691), [sym_block_comment] = STATE(691), [sym_line_comment] = STATE(691), [sym_compiler_directive_decl] = STATE(691), [sym_fsi_directive_decl] = STATE(691), [sym_preproc_line] = STATE(691), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134591,132 +138065,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [692] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(150), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(232), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(692), [sym_block_comment] = STATE(692), [sym_line_comment] = STATE(692), [sym_compiler_directive_decl] = STATE(692), [sym_fsi_directive_decl] = STATE(692), [sym_preproc_line] = STATE(692), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134724,132 +138199,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(682), }, [693] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(325), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(252), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(693), [sym_block_comment] = STATE(693), [sym_line_comment] = STATE(693), [sym_compiler_directive_decl] = STATE(693), [sym_fsi_directive_decl] = STATE(693), [sym_preproc_line] = STATE(693), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134857,132 +138333,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [694] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(326), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(314), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(694), [sym_block_comment] = STATE(694), [sym_line_comment] = STATE(694), [sym_compiler_directive_decl] = STATE(694), [sym_fsi_directive_decl] = STATE(694), [sym_preproc_line] = STATE(694), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -134990,132 +138467,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [695] = { - [sym_function_or_value_defn] = STATE(692), - [sym__expression] = STATE(168), - [sym_tuple_expression] = STATE(2221), - [sym_brace_expression] = STATE(2221), - [sym_anon_record_expression] = STATE(2221), - [sym_prefixed_expression] = STATE(2221), - [sym_literal_expression] = STATE(2221), - [sym_typecast_expression] = STATE(2221), - [sym_for_expression] = STATE(2221), - [sym_while_expression] = STATE(2221), - [sym__if_branch] = STATE(6740), - [sym_if_expression] = STATE(2221), - [sym_fun_expression] = STATE(2221), - [sym_try_expression] = STATE(2221), - [sym_match_expression] = STATE(2221), - [sym_function_expression] = STATE(2221), - [sym_object_instantiation_expression] = STATE(2221), - [sym_mutate_expression] = STATE(2221), - [sym_index_expression] = STATE(2221), - [sym_dot_expression] = STATE(2221), - [sym_typed_expression] = STATE(2221), - [sym_declaration_expression] = STATE(2221), - [sym_do_expression] = STATE(2221), - [sym_list_expression] = STATE(2221), - [sym_array_expression] = STATE(2221), - [sym_begin_end_expression] = STATE(2221), - [sym_paren_expression] = STATE(2221), - [sym_application_expression] = STATE(2221), - [sym_infix_expression] = STATE(2221), - [sym_ce_expression] = STATE(2221), - [sym_sequential_expression] = STATE(2221), - [sym_char] = STATE(2254), - [sym_format_string] = STATE(2319), - [sym__string_literal] = STATE(2319), - [sym_string] = STATE(2254), - [sym_verbatim_string] = STATE(2254), - [sym_bytearray] = STATE(2254), - [sym_verbatim_bytearray] = STATE(2254), - [sym_format_triple_quoted_string] = STATE(2340), - [sym_triple_quoted_string] = STATE(2254), - [sym_const] = STATE(2221), - [sym_long_identifier_or_op] = STATE(2221), - [sym_long_identifier] = STATE(2350), - [sym_active_pattern] = STATE(2251), - [sym__identifier_or_op] = STATE(2351), - [sym_prefix_op] = STATE(565), - [sym_sbyte] = STATE(2254), - [sym_byte] = STATE(2254), - [sym_int16] = STATE(2254), - [sym_uint16] = STATE(2254), - [sym_int32] = STATE(2254), - [sym_uint32] = STATE(2254), - [sym_nativeint] = STATE(2254), - [sym_unativeint] = STATE(2254), - [sym_int64] = STATE(2254), - [sym_uint64] = STATE(2254), - [sym_ieee32] = STATE(2254), - [sym_ieee64] = STATE(2254), - [sym_bignum] = STATE(2254), - [sym_decimal] = STATE(2254), - [sym_float] = STATE(1647), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(226), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(695), [sym_block_comment] = STATE(695), [sym_line_comment] = STATE(695), [sym_compiler_directive_decl] = STATE(695), [sym_fsi_directive_decl] = STATE(695), [sym_preproc_line] = STATE(695), - [sym_preproc_if_in_expression] = STATE(2221), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(988), - [anon_sym_return] = ACTIONS(992), - [anon_sym_do] = ACTIONS(994), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_null] = ACTIONS(1000), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACK_PIPE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_return_BANG] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(992), - [anon_sym_yield_BANG] = ACTIONS(1010), - [anon_sym_lazy] = ACTIONS(992), - [anon_sym_assert] = ACTIONS(992), - [anon_sym_upcast] = ACTIONS(992), - [anon_sym_downcast] = ACTIONS(992), - [anon_sym_LT_AT] = ACTIONS(2188), - [anon_sym_LT_AT_AT] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1024), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_match_BANG] = ACTIONS(1028), - [anon_sym_function] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1040), - [anon_sym_use_BANG] = ACTIONS(1042), - [anon_sym_do_BANG] = ACTIONS(1044), - [anon_sym_begin] = ACTIONS(1046), - [aux_sym_char_token1] = ACTIONS(1050), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_AT_DQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1060), - [sym_bool] = ACTIONS(1062), - [sym_unit] = ACTIONS(2192), - [anon_sym_LPAREN_PIPE] = ACTIONS(1064), - [sym_op_identifier] = ACTIONS(2194), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135123,111 +138601,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1068), - [sym_xint] = ACTIONS(1070), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1072), + [anon_sym_POUNDif] = ACTIONS(682), }, [696] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(172), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(103), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(696), [sym_block_comment] = STATE(696), [sym_line_comment] = STATE(696), [sym_compiler_directive_decl] = STATE(696), [sym_fsi_directive_decl] = STATE(696), [sym_preproc_line] = STATE(696), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -135235,20 +138714,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135256,10 +138735,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -135269,119 +138748,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [697] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(35), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(207), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(697), [sym_block_comment] = STATE(697), [sym_line_comment] = STATE(697), [sym_compiler_directive_decl] = STATE(697), [sym_fsi_directive_decl] = STATE(697), [sym_preproc_line] = STATE(697), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135389,132 +138869,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(682), }, [698] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(138), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(218), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(698), [sym_block_comment] = STATE(698), [sym_line_comment] = STATE(698), [sym_compiler_directive_decl] = STATE(698), [sym_fsi_directive_decl] = STATE(698), [sym_preproc_line] = STATE(698), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135522,132 +139003,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [699] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(332), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(340), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(699), [sym_block_comment] = STATE(699), [sym_line_comment] = STATE(699), [sym_compiler_directive_decl] = STATE(699), [sym_fsi_directive_decl] = STATE(699), [sym_preproc_line] = STATE(699), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135655,132 +139137,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [700] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(5), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(141), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), [sym_xml_doc] = STATE(700), [sym_block_comment] = STATE(700), [sym_line_comment] = STATE(700), [sym_compiler_directive_decl] = STATE(700), [sym_fsi_directive_decl] = STATE(700), [sym_preproc_line] = STATE(700), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135788,132 +139271,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, [701] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(299), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(13), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(701), [sym_block_comment] = STATE(701), [sym_line_comment] = STATE(701), [sym_compiler_directive_decl] = STATE(701), [sym_fsi_directive_decl] = STATE(701), [sym_preproc_line] = STATE(701), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -135921,110 +139405,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [702] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(40), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(16), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(702), [sym_block_comment] = STATE(702), [sym_line_comment] = STATE(702), [sym_compiler_directive_decl] = STATE(702), [sym_fsi_directive_decl] = STATE(702), [sym_preproc_line] = STATE(702), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -136033,8 +139518,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [aux_sym_char_token1] = ACTIONS(83), @@ -136054,132 +139539,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(291), }, [703] = { - [sym_function_or_value_defn] = STATE(568), - [sym__expression] = STATE(116), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(634), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(33), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(703), [sym_block_comment] = STATE(703), [sym_line_comment] = STATE(703), [sym_compiler_directive_decl] = STATE(703), [sym_fsi_directive_decl] = STATE(703), [sym_preproc_line] = STATE(703), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(688), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(694), - [anon_sym_return_BANG] = ACTIONS(696), - [anon_sym_yield] = ACTIONS(688), - [anon_sym_yield_BANG] = ACTIONS(696), - [anon_sym_lazy] = ACTIONS(688), - [anon_sym_assert] = ACTIONS(688), - [anon_sym_upcast] = ACTIONS(688), - [anon_sym_downcast] = ACTIONS(688), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(698), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(702), - [anon_sym_use_BANG] = ACTIONS(704), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136187,132 +139673,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(708), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [704] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(145), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(208), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(704), [sym_block_comment] = STATE(704), [sym_line_comment] = STATE(704), [sym_compiler_directive_decl] = STATE(704), [sym_fsi_directive_decl] = STATE(704), [sym_preproc_line] = STATE(704), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136320,132 +139807,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [705] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(75), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(267), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(705), [sym_block_comment] = STATE(705), [sym_line_comment] = STATE(705), [sym_compiler_directive_decl] = STATE(705), [sym_fsi_directive_decl] = STATE(705), [sym_preproc_line] = STATE(705), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136453,110 +139941,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [706] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(38), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(12), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(706), [sym_block_comment] = STATE(706), [sym_line_comment] = STATE(706), [sym_compiler_directive_decl] = STATE(706), [sym_fsi_directive_decl] = STATE(706), [sym_preproc_line] = STATE(706), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -136565,8 +140054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(69), [anon_sym_match_BANG] = ACTIONS(71), [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), [anon_sym_do_BANG] = ACTIONS(79), [anon_sym_begin] = ACTIONS(81), [aux_sym_char_token1] = ACTIONS(83), @@ -136586,132 +140075,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(291), }, [707] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(29), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(14), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(707), [sym_block_comment] = STATE(707), [sym_line_comment] = STATE(707), [sym_compiler_directive_decl] = STATE(707), [sym_fsi_directive_decl] = STATE(707), [sym_preproc_line] = STATE(707), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136719,132 +140209,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(291), }, [708] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(62), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(168), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(708), [sym_block_comment] = STATE(708), [sym_line_comment] = STATE(708), [sym_compiler_directive_decl] = STATE(708), [sym_fsi_directive_decl] = STATE(708), [sym_preproc_line] = STATE(708), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136852,132 +140343,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(217), }, [709] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(28), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(270), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(709), [sym_block_comment] = STATE(709), [sym_line_comment] = STATE(709), [sym_compiler_directive_decl] = STATE(709), [sym_fsi_directive_decl] = STATE(709), [sym_preproc_line] = STATE(709), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -136985,132 +140477,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), + [anon_sym_POUNDif] = ACTIONS(217), }, [710] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(208), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(187), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(710), [sym_block_comment] = STATE(710), [sym_line_comment] = STATE(710), [sym_compiler_directive_decl] = STATE(710), [sym_fsi_directive_decl] = STATE(710), [sym_preproc_line] = STATE(710), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137118,132 +140611,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [711] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(313), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(73), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(711), [sym_block_comment] = STATE(711), [sym_line_comment] = STATE(711), [sym_compiler_directive_decl] = STATE(711), [sym_fsi_directive_decl] = STATE(711), [sym_preproc_line] = STATE(711), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137251,132 +140745,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [712] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(267), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(102), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(712), [sym_block_comment] = STATE(712), [sym_line_comment] = STATE(712), [sym_compiler_directive_decl] = STATE(712), [sym_fsi_directive_decl] = STATE(712), [sym_preproc_line] = STATE(712), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137384,110 +140879,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [713] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(318), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(381), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(713), [sym_block_comment] = STATE(713), [sym_line_comment] = STATE(713), [sym_compiler_directive_decl] = STATE(713), [sym_fsi_directive_decl] = STATE(713), [sym_preproc_line] = STATE(713), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -137496,20 +140992,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137517,10 +141013,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -137530,119 +141026,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [714] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(184), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(217), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(714), [sym_block_comment] = STATE(714), [sym_line_comment] = STATE(714), [sym_compiler_directive_decl] = STATE(714), [sym_fsi_directive_decl] = STATE(714), [sym_preproc_line] = STATE(714), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137650,132 +141147,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [715] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(67), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(234), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(715), [sym_block_comment] = STATE(715), [sym_line_comment] = STATE(715), [sym_compiler_directive_decl] = STATE(715), [sym_fsi_directive_decl] = STATE(715), [sym_preproc_line] = STATE(715), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137783,132 +141281,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(1290), }, [716] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(321), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(236), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(716), [sym_block_comment] = STATE(716), [sym_line_comment] = STATE(716), [sym_compiler_directive_decl] = STATE(716), [sym_fsi_directive_decl] = STATE(716), [sym_preproc_line] = STATE(716), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -137916,132 +141415,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [717] = { - [sym_function_or_value_defn] = STATE(516), - [sym__expression] = STATE(80), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(717), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(216), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(717), [sym_block_comment] = STATE(717), [sym_line_comment] = STATE(717), [sym_compiler_directive_decl] = STATE(717), [sym_fsi_directive_decl] = STATE(717), [sym_preproc_line] = STATE(717), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(840), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(858), - [anon_sym_return_BANG] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(840), - [anon_sym_yield_BANG] = ACTIONS(860), - [anon_sym_lazy] = ACTIONS(840), - [anon_sym_assert] = ACTIONS(840), - [anon_sym_upcast] = ACTIONS(840), - [anon_sym_downcast] = ACTIONS(840), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(868), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(890), - [anon_sym_use_BANG] = ACTIONS(892), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138049,132 +141549,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(918), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1392), }, [718] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(69), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(366), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(718), [sym_block_comment] = STATE(718), [sym_line_comment] = STATE(718), [sym_compiler_directive_decl] = STATE(718), [sym_fsi_directive_decl] = STATE(718), [sym_preproc_line] = STATE(718), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138182,110 +141683,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(217), }, [719] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(272), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(241), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(719), [sym_block_comment] = STATE(719), [sym_line_comment] = STATE(719), [sym_compiler_directive_decl] = STATE(719), [sym_fsi_directive_decl] = STATE(719), [sym_preproc_line] = STATE(719), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -138294,20 +141796,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138315,10 +141817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -138328,119 +141830,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [720] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(70), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(215), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(720), [sym_block_comment] = STATE(720), [sym_line_comment] = STATE(720), [sym_compiler_directive_decl] = STATE(720), [sym_fsi_directive_decl] = STATE(720), [sym_preproc_line] = STATE(720), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138448,110 +141951,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(1290), }, [721] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(136), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(364), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(721), [sym_block_comment] = STATE(721), [sym_line_comment] = STATE(721), [sym_compiler_directive_decl] = STATE(721), [sym_fsi_directive_decl] = STATE(721), [sym_preproc_line] = STATE(721), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -138560,20 +142064,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138581,10 +142085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -138594,97 +142098,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [722] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(335), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(368), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(722), [sym_block_comment] = STATE(722), [sym_line_comment] = STATE(722), [sym_compiler_directive_decl] = STATE(722), [sym_fsi_directive_decl] = STATE(722), [sym_preproc_line] = STATE(722), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -138693,20 +142198,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138714,10 +142219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -138727,119 +142232,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [723] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(319), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(181), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(723), [sym_block_comment] = STATE(723), [sym_line_comment] = STATE(723), [sym_compiler_directive_decl] = STATE(723), [sym_fsi_directive_decl] = STATE(723), [sym_preproc_line] = STATE(723), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138847,132 +142353,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1108), }, [724] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(122), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(380), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(724), [sym_block_comment] = STATE(724), [sym_line_comment] = STATE(724), [sym_compiler_directive_decl] = STATE(724), [sym_fsi_directive_decl] = STATE(724), [sym_preproc_line] = STATE(724), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -138980,132 +142487,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(217), }, [725] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(103), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(291), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(725), [sym_block_comment] = STATE(725), [sym_line_comment] = STATE(725), [sym_compiler_directive_decl] = STATE(725), [sym_fsi_directive_decl] = STATE(725), [sym_preproc_line] = STATE(725), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139113,132 +142621,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [726] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(307), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(190), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(726), [sym_block_comment] = STATE(726), [sym_line_comment] = STATE(726), [sym_compiler_directive_decl] = STATE(726), [sym_fsi_directive_decl] = STATE(726), [sym_preproc_line] = STATE(726), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139246,132 +142755,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1290), }, [727] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(30), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(227), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(727), [sym_block_comment] = STATE(727), [sym_line_comment] = STATE(727), [sym_compiler_directive_decl] = STATE(727), [sym_fsi_directive_decl] = STATE(727), [sym_preproc_line] = STATE(727), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(17), - [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_null] = ACTIONS(39), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), - [anon_sym_lazy] = ACTIONS(27), - [anon_sym_assert] = ACTIONS(27), - [anon_sym_upcast] = ACTIONS(27), - [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_while] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_match_BANG] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_use] = ACTIONS(75), - [anon_sym_use_BANG] = ACTIONS(77), - [anon_sym_do_BANG] = ACTIONS(79), - [anon_sym_begin] = ACTIONS(81), - [aux_sym_char_token1] = ACTIONS(83), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(87), - [anon_sym_AT_DQUOTE] = ACTIONS(89), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), - [sym_bool] = ACTIONS(95), - [sym_unit] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [sym_op_identifier] = ACTIONS(101), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139379,132 +142889,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(1392), }, [728] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(333), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(222), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(728), [sym_block_comment] = STATE(728), [sym_line_comment] = STATE(728), [sym_compiler_directive_decl] = STATE(728), [sym_fsi_directive_decl] = STATE(728), [sym_preproc_line] = STATE(728), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139512,118 +143023,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [729] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(27), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(32), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(729), [sym_block_comment] = STATE(729), [sym_line_comment] = STATE(729), [sym_compiler_directive_decl] = STATE(729), [sym_fsi_directive_decl] = STATE(729), [sym_preproc_line] = STATE(729), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), [anon_sym_LBRACE_PIPE] = ACTIONS(327), [anon_sym_new] = ACTIONS(329), [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(305), [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), [anon_sym_use] = ACTIONS(355), [anon_sym_use_BANG] = ACTIONS(357), [anon_sym_do_BANG] = ACTIONS(359), @@ -139635,9 +143147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), + [sym_unit] = ACTIONS(2051), [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139645,10 +143157,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(383), [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -139658,119 +143170,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(387), }, [730] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(313), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(209), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(730), [sym_block_comment] = STATE(730), [sym_line_comment] = STATE(730), [sym_compiler_directive_decl] = STATE(730), [sym_fsi_directive_decl] = STATE(730), [sym_preproc_line] = STATE(730), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139778,132 +143291,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [731] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(147), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(249), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(731), [sym_block_comment] = STATE(731), [sym_line_comment] = STATE(731), [sym_compiler_directive_decl] = STATE(731), [sym_fsi_directive_decl] = STATE(731), [sym_preproc_line] = STATE(731), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -139911,132 +143425,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(816), }, [732] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(287), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(273), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(732), [sym_block_comment] = STATE(732), [sym_line_comment] = STATE(732), [sym_compiler_directive_decl] = STATE(732), [sym_fsi_directive_decl] = STATE(732), [sym_preproc_line] = STATE(732), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140044,110 +143559,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(682), }, [733] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(334), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(235), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(733), [sym_block_comment] = STATE(733), [sym_line_comment] = STATE(733), [sym_compiler_directive_decl] = STATE(733), [sym_fsi_directive_decl] = STATE(733), [sym_preproc_line] = STATE(733), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -140156,20 +143672,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140177,10 +143693,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -140190,119 +143706,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [734] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(134), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(585), + [sym__expression] = STATE(250), + [sym_literal_expression] = STATE(2632), + [sym_long_identifier_or_op] = STATE(2632), + [sym_tuple_expression] = STATE(2632), + [sym_brace_expression] = STATE(2632), + [sym_anon_record_expression] = STATE(2632), + [sym_prefixed_expression] = STATE(2632), + [sym_typecast_expression] = STATE(2632), + [sym_for_expression] = STATE(2632), + [sym_while_expression] = STATE(2632), + [sym__if_branch] = STATE(7495), + [sym_if_expression] = STATE(2632), + [sym_fun_expression] = STATE(2632), + [sym_try_expression] = STATE(2632), + [sym_match_expression] = STATE(2632), + [sym_function_expression] = STATE(2632), + [sym_object_instantiation_expression] = STATE(2632), + [sym_mutate_expression] = STATE(2632), + [sym_index_expression] = STATE(2632), + [sym_dot_expression] = STATE(2632), + [sym_typed_expression] = STATE(2632), + [sym_declaration_expression] = STATE(2632), + [sym_do_expression] = STATE(2632), + [sym_list_expression] = STATE(2632), + [sym_array_expression] = STATE(2632), + [sym_begin_end_expression] = STATE(2632), + [sym_paren_expression] = STATE(2632), + [sym_application_expression] = STATE(2632), + [sym_infix_expression] = STATE(2632), + [sym_ce_expression] = STATE(2632), + [sym_sequential_expression] = STATE(2632), + [sym_char] = STATE(2557), + [sym_format_string] = STATE(2565), + [sym__string_literal] = STATE(2565), + [sym_string] = STATE(2557), + [sym_verbatim_string] = STATE(2557), + [sym_bytearray] = STATE(2557), + [sym_verbatim_bytearray] = STATE(2557), + [sym_format_triple_quoted_string] = STATE(2570), + [sym_triple_quoted_string] = STATE(2557), + [sym_const] = STATE(2632), + [sym_long_identifier] = STATE(2408), + [sym_active_pattern] = STATE(2390), + [sym__identifier_or_op] = STATE(2726), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(734), + [sym_sbyte] = STATE(2557), + [sym_byte] = STATE(2557), + [sym_int16] = STATE(2557), + [sym_uint16] = STATE(2557), + [sym_int32] = STATE(2557), + [sym_uint32] = STATE(2557), + [sym_nativeint] = STATE(2557), + [sym_unativeint] = STATE(2557), + [sym_int64] = STATE(2557), + [sym_uint64] = STATE(2557), + [sym_ieee32] = STATE(2557), + [sym_ieee64] = STATE(2557), + [sym_bignum] = STATE(2557), + [sym_decimal] = STATE(2557), + [sym_float] = STATE(1797), [sym_xml_doc] = STATE(734), [sym_block_comment] = STATE(734), [sym_line_comment] = STATE(734), [sym_compiler_directive_decl] = STATE(734), [sym_fsi_directive_decl] = STATE(734), [sym_preproc_line] = STATE(734), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2632), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_null] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_LBRACK_PIPE] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_LT_AT] = ACTIONS(1558), + [anon_sym_LT_AT_AT] = ACTIONS(2381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1562), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_return_BANG] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_yield_BANG] = ACTIONS(1566), + [anon_sym_lazy] = ACTIONS(1542), + [anon_sym_assert] = ACTIONS(1542), + [anon_sym_upcast] = ACTIONS(1542), + [anon_sym_downcast] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1574), + [anon_sym_try] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_match_BANG] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_use_BANG] = ACTIONS(1588), + [anon_sym_do_BANG] = ACTIONS(1590), + [anon_sym_begin] = ACTIONS(1592), + [aux_sym_char_token1] = ACTIONS(1596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_AT_DQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1606), + [sym_bool] = ACTIONS(1608), + [sym_unit] = ACTIONS(2383), + [anon_sym_LPAREN_PIPE] = ACTIONS(1610), + [sym_op_identifier] = ACTIONS(2385), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140310,132 +143827,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1614), + [sym_xint] = ACTIONS(1616), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1618), }, [735] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(212), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(68), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(735), [sym_block_comment] = STATE(735), [sym_line_comment] = STATE(735), [sym_compiler_directive_decl] = STATE(735), [sym_fsi_directive_decl] = STATE(735), [sym_preproc_line] = STATE(735), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140443,132 +143961,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(217), }, [736] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(308), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(281), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(736), [sym_block_comment] = STATE(736), [sym_line_comment] = STATE(736), [sym_compiler_directive_decl] = STATE(736), [sym_fsi_directive_decl] = STATE(736), [sym_preproc_line] = STATE(736), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140576,132 +144095,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(682), }, [737] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(288), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(92), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(737), [sym_block_comment] = STATE(737), [sym_line_comment] = STATE(737), [sym_compiler_directive_decl] = STATE(737), [sym_fsi_directive_decl] = STATE(737), [sym_preproc_line] = STATE(737), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140709,110 +144229,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [738] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(310), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(191), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(738), [sym_block_comment] = STATE(738), [sym_line_comment] = STATE(738), [sym_compiler_directive_decl] = STATE(738), [sym_fsi_directive_decl] = STATE(738), [sym_preproc_line] = STATE(738), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + }, + [739] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(177), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), + [sym_xml_doc] = STATE(739), + [sym_block_comment] = STATE(739), + [sym_line_comment] = STATE(739), + [sym_compiler_directive_decl] = STATE(739), + [sym_fsi_directive_decl] = STATE(739), + [sym_preproc_line] = STATE(739), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), + }, + [740] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(353), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(740), + [sym_block_comment] = STATE(740), + [sym_line_comment] = STATE(740), + [sym_compiler_directive_decl] = STATE(740), + [sym_fsi_directive_decl] = STATE(740), + [sym_preproc_line] = STATE(740), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -140821,20 +144610,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -140842,276 +144631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), - }, - [739] = { - [sym_function_or_value_defn] = STATE(739), - [sym__expression] = STATE(22), - [sym_tuple_expression] = STATE(1499), - [sym_brace_expression] = STATE(1499), - [sym_anon_record_expression] = STATE(1499), - [sym_prefixed_expression] = STATE(1499), - [sym_literal_expression] = STATE(1499), - [sym_typecast_expression] = STATE(1499), - [sym_for_expression] = STATE(1499), - [sym_while_expression] = STATE(1499), - [sym__if_branch] = STATE(6877), - [sym_if_expression] = STATE(1499), - [sym_fun_expression] = STATE(1499), - [sym_try_expression] = STATE(1499), - [sym_match_expression] = STATE(1499), - [sym_function_expression] = STATE(1499), - [sym_object_instantiation_expression] = STATE(1499), - [sym_mutate_expression] = STATE(1499), - [sym_index_expression] = STATE(1499), - [sym_dot_expression] = STATE(1499), - [sym_typed_expression] = STATE(1499), - [sym_declaration_expression] = STATE(1499), - [sym_do_expression] = STATE(1499), - [sym_list_expression] = STATE(1499), - [sym_array_expression] = STATE(1499), - [sym_begin_end_expression] = STATE(1499), - [sym_paren_expression] = STATE(1499), - [sym_application_expression] = STATE(1499), - [sym_infix_expression] = STATE(1499), - [sym_ce_expression] = STATE(1499), - [sym_sequential_expression] = STATE(1499), - [sym_char] = STATE(1393), - [sym_format_string] = STATE(1386), - [sym__string_literal] = STATE(1386), - [sym_string] = STATE(1393), - [sym_verbatim_string] = STATE(1393), - [sym_bytearray] = STATE(1393), - [sym_verbatim_bytearray] = STATE(1393), - [sym_format_triple_quoted_string] = STATE(1380), - [sym_triple_quoted_string] = STATE(1393), - [sym_const] = STATE(1499), - [sym_long_identifier_or_op] = STATE(1499), - [sym_long_identifier] = STATE(1379), - [sym_active_pattern] = STATE(1485), - [sym__identifier_or_op] = STATE(1515), - [sym_prefix_op] = STATE(577), - [sym_sbyte] = STATE(1393), - [sym_byte] = STATE(1393), - [sym_int16] = STATE(1393), - [sym_uint16] = STATE(1393), - [sym_int32] = STATE(1393), - [sym_uint32] = STATE(1393), - [sym_nativeint] = STATE(1393), - [sym_unativeint] = STATE(1393), - [sym_int64] = STATE(1393), - [sym_uint64] = STATE(1393), - [sym_ieee32] = STATE(1393), - [sym_ieee64] = STATE(1393), - [sym_bignum] = STATE(1393), - [sym_decimal] = STATE(1393), - [sym_float] = STATE(1144), - [sym_xml_doc] = STATE(739), - [sym_block_comment] = STATE(739), - [sym_line_comment] = STATE(739), - [sym_compiler_directive_decl] = STATE(739), - [sym_fsi_directive_decl] = STATE(739), - [sym_preproc_line] = STATE(739), - [sym_preproc_if_in_expression] = STATE(1499), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(307), - [anon_sym_return] = ACTIONS(311), - [anon_sym_do] = ACTIONS(313), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_null] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_LBRACK_PIPE] = ACTIONS(323), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_LBRACE_PIPE] = ACTIONS(327), - [anon_sym_new] = ACTIONS(329), - [anon_sym_return_BANG] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(311), - [anon_sym_yield_BANG] = ACTIONS(331), - [anon_sym_lazy] = ACTIONS(311), - [anon_sym_assert] = ACTIONS(311), - [anon_sym_upcast] = ACTIONS(311), - [anon_sym_downcast] = ACTIONS(311), - [anon_sym_LT_AT] = ACTIONS(1816), - [anon_sym_LT_AT_AT] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(339), - [anon_sym_while] = ACTIONS(341), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(343), - [anon_sym_try] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_match_BANG] = ACTIONS(349), - [anon_sym_function] = ACTIONS(351), - [anon_sym_use] = ACTIONS(355), - [anon_sym_use_BANG] = ACTIONS(357), - [anon_sym_do_BANG] = ACTIONS(359), - [anon_sym_begin] = ACTIONS(361), - [aux_sym_char_token1] = ACTIONS(365), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_AT_DQUOTE] = ACTIONS(371), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [sym_bool] = ACTIONS(377), - [sym_unit] = ACTIONS(1820), - [anon_sym_LPAREN_PIPE] = ACTIONS(379), - [sym_op_identifier] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(383), - [sym_xint] = ACTIONS(385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(387), - }, - [740] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(311), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(740), - [sym_block_comment] = STATE(740), - [sym_line_comment] = STATE(740), - [sym_compiler_directive_decl] = STATE(740), - [sym_fsi_directive_decl] = STATE(740), - [sym_preproc_line] = STATE(740), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), - [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(41), - [anon_sym_PLUS_DOT] = ACTIONS(103), - [anon_sym_DASH_DOT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -141121,97 +144644,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [741] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(326), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(70), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(741), [sym_block_comment] = STATE(741), [sym_line_comment] = STATE(741), [sym_compiler_directive_decl] = STATE(741), [sym_fsi_directive_decl] = STATE(741), [sym_preproc_line] = STATE(741), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -141220,20 +144744,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141241,10 +144765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -141254,119 +144778,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [742] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(297), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(742), + [sym__expression] = STATE(31), + [sym_literal_expression] = STATE(1558), + [sym_long_identifier_or_op] = STATE(1558), + [sym_tuple_expression] = STATE(1558), + [sym_brace_expression] = STATE(1558), + [sym_anon_record_expression] = STATE(1558), + [sym_prefixed_expression] = STATE(1558), + [sym_typecast_expression] = STATE(1558), + [sym_for_expression] = STATE(1558), + [sym_while_expression] = STATE(1558), + [sym__if_branch] = STATE(7441), + [sym_if_expression] = STATE(1558), + [sym_fun_expression] = STATE(1558), + [sym_try_expression] = STATE(1558), + [sym_match_expression] = STATE(1558), + [sym_function_expression] = STATE(1558), + [sym_object_instantiation_expression] = STATE(1558), + [sym_mutate_expression] = STATE(1558), + [sym_index_expression] = STATE(1558), + [sym_dot_expression] = STATE(1558), + [sym_typed_expression] = STATE(1558), + [sym_declaration_expression] = STATE(1558), + [sym_do_expression] = STATE(1558), + [sym_list_expression] = STATE(1558), + [sym_array_expression] = STATE(1558), + [sym_begin_end_expression] = STATE(1558), + [sym_paren_expression] = STATE(1558), + [sym_application_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_ce_expression] = STATE(1558), + [sym_sequential_expression] = STATE(1558), + [sym_char] = STATE(1661), + [sym_format_string] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_string] = STATE(1661), + [sym_verbatim_string] = STATE(1661), + [sym_bytearray] = STATE(1661), + [sym_verbatim_bytearray] = STATE(1661), + [sym_format_triple_quoted_string] = STATE(1626), + [sym_triple_quoted_string] = STATE(1661), + [sym_const] = STATE(1558), + [sym_long_identifier] = STATE(1625), + [sym_active_pattern] = STATE(1466), + [sym__identifier_or_op] = STATE(1553), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(729), + [sym_sbyte] = STATE(1661), + [sym_byte] = STATE(1661), + [sym_int16] = STATE(1661), + [sym_uint16] = STATE(1661), + [sym_int32] = STATE(1661), + [sym_uint32] = STATE(1661), + [sym_nativeint] = STATE(1661), + [sym_unativeint] = STATE(1661), + [sym_int64] = STATE(1661), + [sym_uint64] = STATE(1661), + [sym_ieee32] = STATE(1661), + [sym_ieee64] = STATE(1661), + [sym_bignum] = STATE(1661), + [sym_decimal] = STATE(1661), + [sym_float] = STATE(1260), [sym_xml_doc] = STATE(742), [sym_block_comment] = STATE(742), [sym_line_comment] = STATE(742), [sym_compiler_directive_decl] = STATE(742), [sym_fsi_directive_decl] = STATE(742), [sym_preproc_line] = STATE(742), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1558), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(301), + [anon_sym_return] = ACTIONS(305), + [anon_sym_do] = ACTIONS(307), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_null] = ACTIONS(313), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_LBRACK_PIPE] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_LT_AT] = ACTIONS(321), + [anon_sym_LT_AT_AT] = ACTIONS(2049), + [anon_sym_LBRACE_PIPE] = ACTIONS(327), + [anon_sym_new] = ACTIONS(329), + [anon_sym_return_BANG] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_yield_BANG] = ACTIONS(331), + [anon_sym_lazy] = ACTIONS(305), + [anon_sym_assert] = ACTIONS(305), + [anon_sym_upcast] = ACTIONS(305), + [anon_sym_downcast] = ACTIONS(305), + [anon_sym_for] = ACTIONS(335), + [anon_sym_while] = ACTIONS(337), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(339), + [anon_sym_try] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_match_BANG] = ACTIONS(345), + [anon_sym_function] = ACTIONS(347), + [anon_sym_use] = ACTIONS(355), + [anon_sym_use_BANG] = ACTIONS(357), + [anon_sym_do_BANG] = ACTIONS(359), + [anon_sym_begin] = ACTIONS(361), + [aux_sym_char_token1] = ACTIONS(365), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_AT_DQUOTE] = ACTIONS(371), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [sym_bool] = ACTIONS(377), + [sym_unit] = ACTIONS(2051), + [anon_sym_LPAREN_PIPE] = ACTIONS(379), + [sym_op_identifier] = ACTIONS(2053), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141374,132 +144899,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(383), + [sym_xint] = ACTIONS(385), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(387), }, [743] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(325), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(153), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(743), [sym_block_comment] = STATE(743), [sym_line_comment] = STATE(743), [sym_compiler_directive_decl] = STATE(743), [sym_fsi_directive_decl] = STATE(743), [sym_preproc_line] = STATE(743), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141507,132 +145033,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1290), }, [744] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(226), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(121), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(744), [sym_block_comment] = STATE(744), [sym_line_comment] = STATE(744), [sym_compiler_directive_decl] = STATE(744), [sym_fsi_directive_decl] = STATE(744), [sym_preproc_line] = STATE(744), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141640,132 +145167,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [745] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(223), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(118), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(745), [sym_block_comment] = STATE(745), [sym_line_comment] = STATE(745), [sym_compiler_directive_decl] = STATE(745), [sym_fsi_directive_decl] = STATE(745), [sym_preproc_line] = STATE(745), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141773,132 +145301,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(972), }, [746] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(58), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(318), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(746), [sym_block_comment] = STATE(746), [sym_line_comment] = STATE(746), [sym_compiler_directive_decl] = STATE(746), [sym_fsi_directive_decl] = STATE(746), [sym_preproc_line] = STATE(746), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -141906,132 +145435,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1290), }, [747] = { - [sym_function_or_value_defn] = STATE(584), - [sym__expression] = STATE(164), - [sym_tuple_expression] = STATE(2198), - [sym_brace_expression] = STATE(2198), - [sym_anon_record_expression] = STATE(2198), - [sym_prefixed_expression] = STATE(2198), - [sym_literal_expression] = STATE(2198), - [sym_typecast_expression] = STATE(2198), - [sym_for_expression] = STATE(2198), - [sym_while_expression] = STATE(2198), - [sym__if_branch] = STATE(7081), - [sym_if_expression] = STATE(2198), - [sym_fun_expression] = STATE(2198), - [sym_try_expression] = STATE(2198), - [sym_match_expression] = STATE(2198), - [sym_function_expression] = STATE(2198), - [sym_object_instantiation_expression] = STATE(2198), - [sym_mutate_expression] = STATE(2198), - [sym_index_expression] = STATE(2198), - [sym_dot_expression] = STATE(2198), - [sym_typed_expression] = STATE(2198), - [sym_declaration_expression] = STATE(2198), - [sym_do_expression] = STATE(2198), - [sym_list_expression] = STATE(2198), - [sym_array_expression] = STATE(2198), - [sym_begin_end_expression] = STATE(2198), - [sym_paren_expression] = STATE(2198), - [sym_application_expression] = STATE(2198), - [sym_infix_expression] = STATE(2198), - [sym_ce_expression] = STATE(2198), - [sym_sequential_expression] = STATE(2198), - [sym_char] = STATE(2275), - [sym_format_string] = STATE(2245), - [sym__string_literal] = STATE(2245), - [sym_string] = STATE(2275), - [sym_verbatim_string] = STATE(2275), - [sym_bytearray] = STATE(2275), - [sym_verbatim_bytearray] = STATE(2275), - [sym_format_triple_quoted_string] = STATE(2235), - [sym_triple_quoted_string] = STATE(2275), - [sym_const] = STATE(2198), - [sym_long_identifier_or_op] = STATE(2198), - [sym_long_identifier] = STATE(2181), - [sym_active_pattern] = STATE(2237), - [sym__identifier_or_op] = STATE(2158), - [sym_prefix_op] = STATE(671), - [sym_sbyte] = STATE(2275), - [sym_byte] = STATE(2275), - [sym_int16] = STATE(2275), - [sym_uint16] = STATE(2275), - [sym_int32] = STATE(2275), - [sym_uint32] = STATE(2275), - [sym_nativeint] = STATE(2275), - [sym_unativeint] = STATE(2275), - [sym_int64] = STATE(2275), - [sym_uint64] = STATE(2275), - [sym_ieee32] = STATE(2275), - [sym_ieee64] = STATE(2275), - [sym_bignum] = STATE(2275), - [sym_decimal] = STATE(2275), - [sym_float] = STATE(1803), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(374), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(747), [sym_block_comment] = STATE(747), [sym_line_comment] = STATE(747), [sym_compiler_directive_decl] = STATE(747), [sym_fsi_directive_decl] = STATE(747), [sym_preproc_line] = STATE(747), - [sym_preproc_if_in_expression] = STATE(2198), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_null] = ACTIONS(1128), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_LBRACK_PIPE] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACE_PIPE] = ACTIONS(1136), - [anon_sym_new] = ACTIONS(1138), - [anon_sym_return_BANG] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_yield_BANG] = ACTIONS(1140), - [anon_sym_lazy] = ACTIONS(1120), - [anon_sym_assert] = ACTIONS(1120), - [anon_sym_upcast] = ACTIONS(1120), - [anon_sym_downcast] = ACTIONS(1120), - [anon_sym_LT_AT] = ACTIONS(2030), - [anon_sym_LT_AT_AT] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_match_BANG] = ACTIONS(1158), - [anon_sym_function] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_use_BANG] = ACTIONS(1172), - [anon_sym_do_BANG] = ACTIONS(1174), - [anon_sym_begin] = ACTIONS(1176), - [aux_sym_char_token1] = ACTIONS(1180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1184), - [anon_sym_AT_DQUOTE] = ACTIONS(1186), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), - [sym_bool] = ACTIONS(1192), - [sym_unit] = ACTIONS(2034), - [anon_sym_LPAREN_PIPE] = ACTIONS(1194), - [sym_op_identifier] = ACTIONS(2036), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142039,132 +145569,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1198), - [sym_xint] = ACTIONS(1200), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(1202), + [anon_sym_POUNDif] = ACTIONS(217), }, [748] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(197), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(283), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(748), [sym_block_comment] = STATE(748), [sym_line_comment] = STATE(748), [sym_compiler_directive_decl] = STATE(748), [sym_fsi_directive_decl] = STATE(748), [sym_preproc_line] = STATE(748), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142172,132 +145703,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [749] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(131), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(15), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(749), [sym_block_comment] = STATE(749), [sym_line_comment] = STATE(749), [sym_compiler_directive_decl] = STATE(749), [sym_fsi_directive_decl] = STATE(749), [sym_preproc_line] = STATE(749), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142305,132 +145837,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(291), }, [750] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(233), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(317), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(750), [sym_block_comment] = STATE(750), [sym_line_comment] = STATE(750), [sym_compiler_directive_decl] = STATE(750), [sym_fsi_directive_decl] = STATE(750), [sym_preproc_line] = STATE(750), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142438,132 +145971,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(1392), }, [751] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(57), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(301), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(751), [sym_block_comment] = STATE(751), [sym_line_comment] = STATE(751), [sym_compiler_directive_decl] = STATE(751), [sym_fsi_directive_decl] = STATE(751), [sym_preproc_line] = STATE(751), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142571,132 +146105,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [752] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(49), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(195), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(752), [sym_block_comment] = STATE(752), [sym_line_comment] = STATE(752), [sym_compiler_directive_decl] = STATE(752), [sym_fsi_directive_decl] = STATE(752), [sym_preproc_line] = STATE(752), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142704,110 +146239,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(682), }, [753] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(119), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(8), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(753), [sym_block_comment] = STATE(753), [sym_line_comment] = STATE(753), [sym_compiler_directive_decl] = STATE(753), [sym_fsi_directive_decl] = STATE(753), [sym_preproc_line] = STATE(753), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -142816,20 +146352,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142837,10 +146373,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -142850,119 +146386,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [754] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(179), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(351), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(754), [sym_block_comment] = STATE(754), [sym_line_comment] = STATE(754), [sym_compiler_directive_decl] = STATE(754), [sym_fsi_directive_decl] = STATE(754), [sym_preproc_line] = STATE(754), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -142970,132 +146507,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1200), }, [755] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(51), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(97), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(755), [sym_block_comment] = STATE(755), [sym_line_comment] = STATE(755), [sym_compiler_directive_decl] = STATE(755), [sym_fsi_directive_decl] = STATE(755), [sym_preproc_line] = STATE(755), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143103,132 +146641,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(217), }, [756] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(59), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(93), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(756), [sym_block_comment] = STATE(756), [sym_line_comment] = STATE(756), [sym_compiler_directive_decl] = STATE(756), [sym_fsi_directive_decl] = STATE(756), [sym_preproc_line] = STATE(756), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143236,132 +146775,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [757] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(42), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(361), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(757), [sym_block_comment] = STATE(757), [sym_line_comment] = STATE(757), [sym_compiler_directive_decl] = STATE(757), [sym_fsi_directive_decl] = STATE(757), [sym_preproc_line] = STATE(757), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143369,132 +146909,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(217), }, [758] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(341), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(355), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(758), [sym_block_comment] = STATE(758), [sym_line_comment] = STATE(758), [sym_compiler_directive_decl] = STATE(758), [sym_fsi_directive_decl] = STATE(758), [sym_preproc_line] = STATE(758), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143502,132 +147043,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1200), }, [759] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(339), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(245), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(759), [sym_block_comment] = STATE(759), [sym_line_comment] = STATE(759), [sym_compiler_directive_decl] = STATE(759), [sym_fsi_directive_decl] = STATE(759), [sym_preproc_line] = STATE(759), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143635,132 +147177,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [760] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(61), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(660), + [sym__expression] = STATE(128), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(760), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(760), [sym_block_comment] = STATE(760), [sym_line_comment] = STATE(760), [sym_compiler_directive_decl] = STATE(760), [sym_fsi_directive_decl] = STATE(760), [sym_preproc_line] = STATE(760), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(598), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(622), + [anon_sym_return_BANG] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_yield_BANG] = ACTIONS(624), + [anon_sym_lazy] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(598), + [anon_sym_upcast] = ACTIONS(598), + [anon_sym_downcast] = ACTIONS(598), + [anon_sym_for] = ACTIONS(628), + [anon_sym_while] = ACTIONS(630), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(648), + [anon_sym_use_BANG] = ACTIONS(650), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143768,110 +147311,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(678), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(682), }, [761] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(130), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(363), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(761), [sym_block_comment] = STATE(761), [sym_line_comment] = STATE(761), [sym_compiler_directive_decl] = STATE(761), [sym_fsi_directive_decl] = STATE(761), [sym_preproc_line] = STATE(761), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -143880,20 +147424,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -143901,10 +147445,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -143914,119 +147458,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [762] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(111), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(292), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(762), [sym_block_comment] = STATE(762), [sym_line_comment] = STATE(762), [sym_compiler_directive_decl] = STATE(762), [sym_fsi_directive_decl] = STATE(762), [sym_preproc_line] = STATE(762), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144034,132 +147579,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [763] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(324), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(356), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(763), [sym_block_comment] = STATE(763), [sym_line_comment] = STATE(763), [sym_compiler_directive_decl] = STATE(763), [sym_fsi_directive_decl] = STATE(763), [sym_preproc_line] = STATE(763), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144167,132 +147713,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1200), }, [764] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(337), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(246), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(764), [sym_block_comment] = STATE(764), [sym_line_comment] = STATE(764), [sym_compiler_directive_decl] = STATE(764), [sym_fsi_directive_decl] = STATE(764), [sym_preproc_line] = STATE(764), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144300,132 +147847,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [765] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(125), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(247), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(765), [sym_block_comment] = STATE(765), [sym_line_comment] = STATE(765), [sym_compiler_directive_decl] = STATE(765), [sym_fsi_directive_decl] = STATE(765), [sym_preproc_line] = STATE(765), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144433,132 +147981,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [766] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(121), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(271), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(766), [sym_block_comment] = STATE(766), [sym_line_comment] = STATE(766), [sym_compiler_directive_decl] = STATE(766), [sym_fsi_directive_decl] = STATE(766), [sym_preproc_line] = STATE(766), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144566,132 +148115,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1392), }, [767] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(314), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(357), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(767), [sym_block_comment] = STATE(767), [sym_line_comment] = STATE(767), [sym_compiler_directive_decl] = STATE(767), [sym_fsi_directive_decl] = STATE(767), [sym_preproc_line] = STATE(767), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144699,132 +148249,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1200), }, [768] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(77), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(158), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(768), [sym_block_comment] = STATE(768), [sym_line_comment] = STATE(768), [sym_compiler_directive_decl] = STATE(768), [sym_fsi_directive_decl] = STATE(768), [sym_preproc_line] = STATE(768), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144832,132 +148383,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(816), }, [769] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(64), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(369), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(769), [sym_block_comment] = STATE(769), [sym_line_comment] = STATE(769), [sym_compiler_directive_decl] = STATE(769), [sym_fsi_directive_decl] = STATE(769), [sym_preproc_line] = STATE(769), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -144965,132 +148517,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(217), }, [770] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(48), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(62), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(770), [sym_block_comment] = STATE(770), [sym_line_comment] = STATE(770), [sym_compiler_directive_decl] = STATE(770), [sym_fsi_directive_decl] = STATE(770), [sym_preproc_line] = STATE(770), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145098,132 +148651,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(816), }, [771] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(55), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(302), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(771), [sym_block_comment] = STATE(771), [sym_line_comment] = STATE(771), [sym_compiler_directive_decl] = STATE(771), [sym_fsi_directive_decl] = STATE(771), [sym_preproc_line] = STATE(771), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145231,132 +148785,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(1200), }, [772] = { - [sym_function_or_value_defn] = STATE(752), - [sym__expression] = STATE(52), - [sym_tuple_expression] = STATE(1678), - [sym_brace_expression] = STATE(1678), - [sym_anon_record_expression] = STATE(1678), - [sym_prefixed_expression] = STATE(1678), - [sym_literal_expression] = STATE(1678), - [sym_typecast_expression] = STATE(1678), - [sym_for_expression] = STATE(1678), - [sym_while_expression] = STATE(1678), - [sym__if_branch] = STATE(7119), - [sym_if_expression] = STATE(1678), - [sym_fun_expression] = STATE(1678), - [sym_try_expression] = STATE(1678), - [sym_match_expression] = STATE(1678), - [sym_function_expression] = STATE(1678), - [sym_object_instantiation_expression] = STATE(1678), - [sym_mutate_expression] = STATE(1678), - [sym_index_expression] = STATE(1678), - [sym_dot_expression] = STATE(1678), - [sym_typed_expression] = STATE(1678), - [sym_declaration_expression] = STATE(1678), - [sym_do_expression] = STATE(1678), - [sym_list_expression] = STATE(1678), - [sym_array_expression] = STATE(1678), - [sym_begin_end_expression] = STATE(1678), - [sym_paren_expression] = STATE(1678), - [sym_application_expression] = STATE(1678), - [sym_infix_expression] = STATE(1678), - [sym_ce_expression] = STATE(1678), - [sym_sequential_expression] = STATE(1678), - [sym_char] = STATE(1809), - [sym_format_string] = STATE(1799), - [sym__string_literal] = STATE(1799), - [sym_string] = STATE(1809), - [sym_verbatim_string] = STATE(1809), - [sym_bytearray] = STATE(1809), - [sym_verbatim_bytearray] = STATE(1809), - [sym_format_triple_quoted_string] = STATE(1798), - [sym_triple_quoted_string] = STATE(1809), - [sym_const] = STATE(1678), - [sym_long_identifier_or_op] = STATE(1678), - [sym_long_identifier] = STATE(1802), - [sym_active_pattern] = STATE(1791), - [sym__identifier_or_op] = STATE(1800), - [sym_prefix_op] = STATE(555), - [sym_sbyte] = STATE(1809), - [sym_byte] = STATE(1809), - [sym_int16] = STATE(1809), - [sym_uint16] = STATE(1809), - [sym_int32] = STATE(1809), - [sym_uint32] = STATE(1809), - [sym_nativeint] = STATE(1809), - [sym_unativeint] = STATE(1809), - [sym_int64] = STATE(1809), - [sym_uint64] = STATE(1809), - [sym_ieee32] = STATE(1809), - [sym_ieee64] = STATE(1809), - [sym_bignum] = STATE(1809), - [sym_decimal] = STATE(1809), - [sym_float] = STATE(1491), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(264), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(772), [sym_block_comment] = STATE(772), [sym_line_comment] = STATE(772), [sym_compiler_directive_decl] = STATE(772), [sym_fsi_directive_decl] = STATE(772), [sym_preproc_line] = STATE(772), - [sym_preproc_if_in_expression] = STATE(1678), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(493), - [anon_sym_return] = ACTIONS(497), - [anon_sym_do] = ACTIONS(499), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_null] = ACTIONS(505), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACE_PIPE] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_return_BANG] = ACTIONS(515), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_yield_BANG] = ACTIONS(515), - [anon_sym_lazy] = ACTIONS(497), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_upcast] = ACTIONS(497), - [anon_sym_downcast] = ACTIONS(497), - [anon_sym_LT_AT] = ACTIONS(2108), - [anon_sym_LT_AT_AT] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_try] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_match_BANG] = ACTIONS(533), - [anon_sym_function] = ACTIONS(535), - [anon_sym_use] = ACTIONS(545), - [anon_sym_use_BANG] = ACTIONS(547), - [anon_sym_do_BANG] = ACTIONS(549), - [anon_sym_begin] = ACTIONS(551), - [aux_sym_char_token1] = ACTIONS(555), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(559), - [anon_sym_AT_DQUOTE] = ACTIONS(561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(565), - [sym_bool] = ACTIONS(567), - [sym_unit] = ACTIONS(2112), - [anon_sym_LPAREN_PIPE] = ACTIONS(569), - [sym_op_identifier] = ACTIONS(2114), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145364,110 +148919,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(573), - [sym_xint] = ACTIONS(575), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(577), + [anon_sym_POUNDif] = ACTIONS(816), }, [773] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(300), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(348), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(773), [sym_block_comment] = STATE(773), [sym_line_comment] = STATE(773), [sym_compiler_directive_decl] = STATE(773), [sym_fsi_directive_decl] = STATE(773), [sym_preproc_line] = STATE(773), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -145476,20 +149032,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145497,10 +149053,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -145510,119 +149066,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [774] = { - [sym_function_or_value_defn] = STATE(708), - [sym__expression] = STATE(60), - [sym_tuple_expression] = STATE(2063), - [sym_brace_expression] = STATE(2063), - [sym_anon_record_expression] = STATE(2063), - [sym_prefixed_expression] = STATE(2063), - [sym_literal_expression] = STATE(2063), - [sym_typecast_expression] = STATE(2063), - [sym_for_expression] = STATE(2063), - [sym_while_expression] = STATE(2063), - [sym__if_branch] = STATE(6817), - [sym_if_expression] = STATE(2063), - [sym_fun_expression] = STATE(2063), - [sym_try_expression] = STATE(2063), - [sym_match_expression] = STATE(2063), - [sym_function_expression] = STATE(2063), - [sym_object_instantiation_expression] = STATE(2063), - [sym_mutate_expression] = STATE(2063), - [sym_index_expression] = STATE(2063), - [sym_dot_expression] = STATE(2063), - [sym_typed_expression] = STATE(2063), - [sym_declaration_expression] = STATE(2063), - [sym_do_expression] = STATE(2063), - [sym_list_expression] = STATE(2063), - [sym_array_expression] = STATE(2063), - [sym_begin_end_expression] = STATE(2063), - [sym_paren_expression] = STATE(2063), - [sym_application_expression] = STATE(2063), - [sym_infix_expression] = STATE(2063), - [sym_ce_expression] = STATE(2063), - [sym_sequential_expression] = STATE(2063), - [sym_char] = STATE(1959), - [sym_format_string] = STATE(1976), - [sym__string_literal] = STATE(1976), - [sym_string] = STATE(1959), - [sym_verbatim_string] = STATE(1959), - [sym_bytearray] = STATE(1959), - [sym_verbatim_bytearray] = STATE(1959), - [sym_format_triple_quoted_string] = STATE(1983), - [sym_triple_quoted_string] = STATE(1959), - [sym_const] = STATE(2063), - [sym_long_identifier_or_op] = STATE(2063), - [sym_long_identifier] = STATE(1888), - [sym_active_pattern] = STATE(2051), - [sym__identifier_or_op] = STATE(1891), - [sym_prefix_op] = STATE(774), - [sym_sbyte] = STATE(1959), - [sym_byte] = STATE(1959), - [sym_int16] = STATE(1959), - [sym_uint16] = STATE(1959), - [sym_int32] = STATE(1959), - [sym_uint32] = STATE(1959), - [sym_nativeint] = STATE(1959), - [sym_unativeint] = STATE(1959), - [sym_int64] = STATE(1959), - [sym_uint64] = STATE(1959), - [sym_ieee32] = STATE(1959), - [sym_ieee64] = STATE(1959), - [sym_bignum] = STATE(1959), - [sym_decimal] = STATE(1959), - [sym_float] = STATE(1548), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(101), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(774), [sym_block_comment] = STATE(774), [sym_line_comment] = STATE(774), [sym_compiler_directive_decl] = STATE(774), [sym_fsi_directive_decl] = STATE(774), [sym_preproc_line] = STATE(774), - [sym_preproc_if_in_expression] = STATE(2063), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(397), - [anon_sym_return] = ACTIONS(401), - [anon_sym_do] = ACTIONS(403), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_null] = ACTIONS(409), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(411), - [anon_sym_LBRACK_PIPE] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_LBRACE_PIPE] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_return_BANG] = ACTIONS(421), - [anon_sym_yield] = ACTIONS(401), - [anon_sym_yield_BANG] = ACTIONS(421), - [anon_sym_lazy] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(401), - [anon_sym_upcast] = ACTIONS(401), - [anon_sym_downcast] = ACTIONS(401), - [anon_sym_LT_AT] = ACTIONS(1604), - [anon_sym_LT_AT_AT] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(429), - [anon_sym_while] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(433), - [anon_sym_try] = ACTIONS(435), - [anon_sym_match] = ACTIONS(437), - [anon_sym_match_BANG] = ACTIONS(439), - [anon_sym_function] = ACTIONS(441), - [anon_sym_use] = ACTIONS(451), - [anon_sym_use_BANG] = ACTIONS(453), - [anon_sym_do_BANG] = ACTIONS(455), - [anon_sym_begin] = ACTIONS(457), - [aux_sym_char_token1] = ACTIONS(461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_AT_DQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(471), - [sym_bool] = ACTIONS(473), - [sym_unit] = ACTIONS(1608), - [anon_sym_LPAREN_PIPE] = ACTIONS(475), - [sym_op_identifier] = ACTIONS(1610), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145630,132 +149187,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(479), - [sym_xint] = ACTIONS(481), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(483), + [anon_sym_POUNDif] = ACTIONS(816), }, [775] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(79), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(61), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(775), [sym_block_comment] = STATE(775), [sym_line_comment] = STATE(775), [sym_compiler_directive_decl] = STATE(775), [sym_fsi_directive_decl] = STATE(775), [sym_preproc_line] = STATE(775), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145763,132 +149321,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [776] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(81), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(60), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(776), [sym_block_comment] = STATE(776), [sym_line_comment] = STATE(776), [sym_compiler_directive_decl] = STATE(776), [sym_fsi_directive_decl] = STATE(776), [sym_preproc_line] = STATE(776), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -145896,110 +149455,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, [777] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(302), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(312), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(777), [sym_block_comment] = STATE(777), [sym_line_comment] = STATE(777), [sym_compiler_directive_decl] = STATE(777), [sym_fsi_directive_decl] = STATE(777), [sym_preproc_line] = STATE(777), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -146008,20 +149568,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146029,10 +149589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -146042,119 +149602,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDif] = ACTIONS(217), }, [778] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(333), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(107), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(778), [sym_block_comment] = STATE(778), [sym_line_comment] = STATE(778), [sym_compiler_directive_decl] = STATE(778), [sym_fsi_directive_decl] = STATE(778), [sym_preproc_line] = STATE(778), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146162,132 +149723,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(972), }, [779] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(246), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(322), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(779), [sym_block_comment] = STATE(779), [sym_line_comment] = STATE(779), [sym_compiler_directive_decl] = STATE(779), [sym_fsi_directive_decl] = STATE(779), [sym_preproc_line] = STATE(779), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146295,132 +149857,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1200), }, [780] = { - [sym_function_or_value_defn] = STATE(601), - [sym__expression] = STATE(254), - [sym_tuple_expression] = STATE(1874), - [sym_brace_expression] = STATE(1874), - [sym_anon_record_expression] = STATE(1874), - [sym_prefixed_expression] = STATE(1874), - [sym_literal_expression] = STATE(1874), - [sym_typecast_expression] = STATE(1874), - [sym_for_expression] = STATE(1874), - [sym_while_expression] = STATE(1874), - [sym__if_branch] = STATE(7041), - [sym_if_expression] = STATE(1874), - [sym_fun_expression] = STATE(1874), - [sym_try_expression] = STATE(1874), - [sym_match_expression] = STATE(1874), - [sym_function_expression] = STATE(1874), - [sym_object_instantiation_expression] = STATE(1874), - [sym_mutate_expression] = STATE(1874), - [sym_index_expression] = STATE(1874), - [sym_dot_expression] = STATE(1874), - [sym_typed_expression] = STATE(1874), - [sym_declaration_expression] = STATE(1874), - [sym_do_expression] = STATE(1874), - [sym_list_expression] = STATE(1874), - [sym_array_expression] = STATE(1874), - [sym_begin_end_expression] = STATE(1874), - [sym_paren_expression] = STATE(1874), - [sym_application_expression] = STATE(1874), - [sym_infix_expression] = STATE(1874), - [sym_ce_expression] = STATE(1874), - [sym_sequential_expression] = STATE(1874), - [sym_char] = STATE(2120), - [sym_format_string] = STATE(2111), - [sym__string_literal] = STATE(2111), - [sym_string] = STATE(2120), - [sym_verbatim_string] = STATE(2120), - [sym_bytearray] = STATE(2120), - [sym_verbatim_bytearray] = STATE(2120), - [sym_format_triple_quoted_string] = STATE(2110), - [sym_triple_quoted_string] = STATE(2120), - [sym_const] = STATE(1874), - [sym_long_identifier_or_op] = STATE(1874), - [sym_long_identifier] = STATE(2082), - [sym_active_pattern] = STATE(1922), - [sym__identifier_or_op] = STATE(2029), - [sym_prefix_op] = STATE(712), - [sym_sbyte] = STATE(2120), - [sym_byte] = STATE(2120), - [sym_int16] = STATE(2120), - [sym_uint16] = STATE(2120), - [sym_int32] = STATE(2120), - [sym_uint32] = STATE(2120), - [sym_nativeint] = STATE(2120), - [sym_unativeint] = STATE(2120), - [sym_int64] = STATE(2120), - [sym_uint64] = STATE(2120), - [sym_ieee32] = STATE(2120), - [sym_ieee64] = STATE(2120), - [sym_bignum] = STATE(2120), - [sym_decimal] = STATE(2120), - [sym_float] = STATE(1532), + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(18), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(780), [sym_block_comment] = STATE(780), [sym_line_comment] = STATE(780), [sym_compiler_directive_decl] = STATE(780), [sym_fsi_directive_decl] = STATE(780), [sym_preproc_line] = STATE(780), - [sym_preproc_if_in_expression] = STATE(1874), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(836), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(842), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_null] = ACTIONS(848), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_LBRACK_PIPE] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACE_PIPE] = ACTIONS(856), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_return_BANG] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_yield_BANG] = ACTIONS(1084), - [anon_sym_lazy] = ACTIONS(1078), - [anon_sym_assert] = ACTIONS(1078), - [anon_sym_upcast] = ACTIONS(1078), - [anon_sym_downcast] = ACTIONS(1078), - [anon_sym_LT_AT] = ACTIONS(2150), - [anon_sym_LT_AT_AT] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(872), - [anon_sym_try] = ACTIONS(874), - [anon_sym_match] = ACTIONS(876), - [anon_sym_match_BANG] = ACTIONS(878), - [anon_sym_function] = ACTIONS(880), - [anon_sym_use] = ACTIONS(1094), - [anon_sym_use_BANG] = ACTIONS(1096), - [anon_sym_do_BANG] = ACTIONS(894), - [anon_sym_begin] = ACTIONS(896), - [aux_sym_char_token1] = ACTIONS(900), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_AT_DQUOTE] = ACTIONS(906), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), - [sym_bool] = ACTIONS(912), - [sym_unit] = ACTIONS(2154), - [anon_sym_LPAREN_PIPE] = ACTIONS(914), - [sym_op_identifier] = ACTIONS(2156), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146428,110 +149991,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(1098), - [sym_xint] = ACTIONS(920), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(922), + [anon_sym_POUNDif] = ACTIONS(291), }, [781] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(307), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(59), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(781), [sym_block_comment] = STATE(781), [sym_line_comment] = STATE(781), [sym_compiler_directive_decl] = STATE(781), [sym_fsi_directive_decl] = STATE(781), [sym_preproc_line] = STATE(781), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + }, + [782] = { + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(334), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), + [sym_xml_doc] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_line_comment] = STATE(782), + [sym_compiler_directive_decl] = STATE(782), + [sym_fsi_directive_decl] = STATE(782), + [sym_preproc_line] = STATE(782), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + }, + [783] = { + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(332), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), + [sym_xml_doc] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_line_comment] = STATE(783), + [sym_compiler_directive_decl] = STATE(783), + [sym_fsi_directive_decl] = STATE(783), + [sym_preproc_line] = STATE(783), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + }, + [784] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(238), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(784), + [sym_block_comment] = STATE(784), + [sym_line_comment] = STATE(784), + [sym_compiler_directive_decl] = STATE(784), + [sym_fsi_directive_decl] = STATE(784), + [sym_preproc_line] = STATE(784), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -146540,20 +150506,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146561,10 +150527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -146573,120 +150539,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, - [782] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(335), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(782), - [sym_block_comment] = STATE(782), - [sym_line_comment] = STATE(782), - [sym_compiler_directive_decl] = STATE(782), - [sym_fsi_directive_decl] = STATE(782), - [sym_preproc_line] = STATE(782), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [785] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(308), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), + [sym_xml_doc] = STATE(785), + [sym_block_comment] = STATE(785), + [sym_line_comment] = STATE(785), + [sym_compiler_directive_decl] = STATE(785), + [sym_fsi_directive_decl] = STATE(785), + [sym_preproc_line] = STATE(785), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146694,110 +150661,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(1290), }, - [783] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(338), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(783), - [sym_block_comment] = STATE(783), - [sym_line_comment] = STATE(783), - [sym_compiler_directive_decl] = STATE(783), - [sym_fsi_directive_decl] = STATE(783), - [sym_preproc_line] = STATE(783), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [786] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(5), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(786), + [sym_block_comment] = STATE(786), + [sym_line_comment] = STATE(786), + [sym_compiler_directive_decl] = STATE(786), + [sym_fsi_directive_decl] = STATE(786), + [sym_preproc_line] = STATE(786), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -146806,20 +150774,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146827,10 +150795,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -146839,120 +150807,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, - [784] = { - [sym_function_or_value_defn] = STATE(725), - [sym__expression] = STATE(82), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(579), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_line_comment] = STATE(784), - [sym_compiler_directive_decl] = STATE(784), - [sym_fsi_directive_decl] = STATE(784), - [sym_preproc_line] = STATE(784), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(590), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [787] = { + [sym_function_or_value_defn] = STATE(787), + [sym__expression] = STATE(58), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(744), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), + [sym_xml_doc] = STATE(787), + [sym_block_comment] = STATE(787), + [sym_line_comment] = STATE(787), + [sym_compiler_directive_decl] = STATE(787), + [sym_fsi_directive_decl] = STATE(787), + [sym_preproc_line] = STATE(787), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(734), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(608), - [anon_sym_return_BANG] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_yield_BANG] = ACTIONS(610), - [anon_sym_lazy] = ACTIONS(590), - [anon_sym_assert] = ACTIONS(590), - [anon_sym_upcast] = ACTIONS(590), - [anon_sym_downcast] = ACTIONS(590), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(618), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(758), + [anon_sym_return_BANG] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_yield_BANG] = ACTIONS(760), + [anon_sym_lazy] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(734), + [anon_sym_upcast] = ACTIONS(734), + [anon_sym_downcast] = ACTIONS(734), + [anon_sym_for] = ACTIONS(764), + [anon_sym_while] = ACTIONS(766), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(640), - [anon_sym_use_BANG] = ACTIONS(642), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(784), + [anon_sym_use_BANG] = ACTIONS(786), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -146960,111 +150929,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(670), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(812), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(816), }, - [785] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(298), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(785), - [sym_block_comment] = STATE(785), - [sym_line_comment] = STATE(785), - [sym_compiler_directive_decl] = STATE(785), - [sym_fsi_directive_decl] = STATE(785), - [sym_preproc_line] = STATE(785), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [788] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(36), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(788), + [sym_block_comment] = STATE(788), + [sym_line_comment] = STATE(788), + [sym_compiler_directive_decl] = STATE(788), + [sym_fsi_directive_decl] = STATE(788), + [sym_preproc_line] = STATE(788), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(291), + }, + [789] = { + [sym_function_or_value_defn] = STATE(789), + [sym__expression] = STATE(72), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(599), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(789), + [sym_block_comment] = STATE(789), + [sym_line_comment] = STATE(789), + [sym_compiler_directive_decl] = STATE(789), + [sym_fsi_directive_decl] = STATE(789), + [sym_preproc_line] = STATE(789), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(706), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(712), + [anon_sym_return_BANG] = ACTIONS(714), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_yield_BANG] = ACTIONS(714), + [anon_sym_lazy] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(706), + [anon_sym_upcast] = ACTIONS(706), + [anon_sym_downcast] = ACTIONS(706), + [anon_sym_for] = ACTIONS(716), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), [anon_sym_fun] = ACTIONS(167), @@ -147072,20 +151176,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(720), + [anon_sym_use_BANG] = ACTIONS(722), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -147093,10 +151197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(726), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -147105,98 +151209,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, - [786] = { - [sym_function_or_value_defn] = STATE(640), - [sym__expression] = STATE(37), - [sym_tuple_expression] = STATE(1247), - [sym_brace_expression] = STATE(1247), - [sym_anon_record_expression] = STATE(1247), - [sym_prefixed_expression] = STATE(1247), - [sym_literal_expression] = STATE(1247), - [sym_typecast_expression] = STATE(1247), - [sym_for_expression] = STATE(1247), - [sym_while_expression] = STATE(1247), - [sym__if_branch] = STATE(7777), - [sym_if_expression] = STATE(1247), - [sym_fun_expression] = STATE(1247), - [sym_try_expression] = STATE(1247), - [sym_match_expression] = STATE(1247), - [sym_function_expression] = STATE(1247), - [sym_object_instantiation_expression] = STATE(1247), - [sym_mutate_expression] = STATE(1247), - [sym_index_expression] = STATE(1247), - [sym_dot_expression] = STATE(1247), - [sym_typed_expression] = STATE(1247), - [sym_declaration_expression] = STATE(1247), - [sym_do_expression] = STATE(1247), - [sym_list_expression] = STATE(1247), - [sym_array_expression] = STATE(1247), - [sym_begin_end_expression] = STATE(1247), - [sym_paren_expression] = STATE(1247), - [sym_application_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_ce_expression] = STATE(1247), - [sym_sequential_expression] = STATE(1247), - [sym_char] = STATE(1199), - [sym_format_string] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_string] = STATE(1199), - [sym_verbatim_string] = STATE(1199), - [sym_bytearray] = STATE(1199), - [sym_verbatim_bytearray] = STATE(1199), - [sym_format_triple_quoted_string] = STATE(1214), - [sym_triple_quoted_string] = STATE(1199), - [sym_const] = STATE(1247), - [sym_long_identifier_or_op] = STATE(1247), - [sym_long_identifier] = STATE(1215), - [sym_active_pattern] = STATE(1204), - [sym__identifier_or_op] = STATE(1220), - [sym_prefix_op] = STATE(564), - [sym_sbyte] = STATE(1199), - [sym_byte] = STATE(1199), - [sym_int16] = STATE(1199), - [sym_uint16] = STATE(1199), - [sym_int32] = STATE(1199), - [sym_uint32] = STATE(1199), - [sym_nativeint] = STATE(1199), - [sym_unativeint] = STATE(1199), - [sym_int64] = STATE(1199), - [sym_uint64] = STATE(1199), - [sym_ieee32] = STATE(1199), - [sym_ieee64] = STATE(1199), - [sym_bignum] = STATE(1199), - [sym_decimal] = STATE(1199), - [sym_float] = STATE(1007), - [sym_xml_doc] = STATE(786), - [sym_block_comment] = STATE(786), - [sym_line_comment] = STATE(786), - [sym_compiler_directive_decl] = STATE(786), - [sym_fsi_directive_decl] = STATE(786), - [sym_preproc_line] = STATE(786), - [sym_preproc_if_in_expression] = STATE(1247), - [aux_sym_prefix_op_repeat1] = STATE(3151), + [790] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(26), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), + [sym_xml_doc] = STATE(790), + [sym_block_comment] = STATE(790), + [sym_line_comment] = STATE(790), + [sym_compiler_directive_decl] = STATE(790), + [sym_fsi_directive_decl] = STATE(790), + [sym_preproc_line] = STATE(790), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), [sym_identifier] = ACTIONS(17), [anon_sym_return] = ACTIONS(27), - [anon_sym_do] = ACTIONS(257), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_null] = ACTIONS(39), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_LBRACK_PIPE] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(47), - [anon_sym_LBRACE_PIPE] = ACTIONS(49), - [anon_sym_new] = ACTIONS(51), - [anon_sym_return_BANG] = ACTIONS(53), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), [anon_sym_yield] = ACTIONS(27), - [anon_sym_yield_BANG] = ACTIONS(53), + [anon_sym_yield_BANG] = ACTIONS(57), [anon_sym_lazy] = ACTIONS(27), [anon_sym_assert] = ACTIONS(27), [anon_sym_upcast] = ACTIONS(27), [anon_sym_downcast] = ACTIONS(27), - [anon_sym_LT_AT] = ACTIONS(55), - [anon_sym_LT_AT_AT] = ACTIONS(57), [anon_sym_for] = ACTIONS(59), [anon_sym_while] = ACTIONS(61), [anon_sym_if] = ACTIONS(63), @@ -147226,132 +151331,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(107), - [sym_xint] = ACTIONS(109), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(293), + [anon_sym_POUNDif] = ACTIONS(291), }, - [787] = { - [sym_function_or_value_defn] = STATE(751), - [sym__expression] = STATE(263), - [sym_tuple_expression] = STATE(1813), - [sym_brace_expression] = STATE(1813), - [sym_anon_record_expression] = STATE(1813), - [sym_prefixed_expression] = STATE(1813), - [sym_literal_expression] = STATE(1813), - [sym_typecast_expression] = STATE(1813), - [sym_for_expression] = STATE(1813), - [sym_while_expression] = STATE(1813), - [sym__if_branch] = STATE(6690), - [sym_if_expression] = STATE(1813), - [sym_fun_expression] = STATE(1813), - [sym_try_expression] = STATE(1813), - [sym_match_expression] = STATE(1813), - [sym_function_expression] = STATE(1813), - [sym_object_instantiation_expression] = STATE(1813), - [sym_mutate_expression] = STATE(1813), - [sym_index_expression] = STATE(1813), - [sym_dot_expression] = STATE(1813), - [sym_typed_expression] = STATE(1813), - [sym_declaration_expression] = STATE(1813), - [sym_do_expression] = STATE(1813), - [sym_list_expression] = STATE(1813), - [sym_array_expression] = STATE(1813), - [sym_begin_end_expression] = STATE(1813), - [sym_paren_expression] = STATE(1813), - [sym_application_expression] = STATE(1813), - [sym_infix_expression] = STATE(1813), - [sym_ce_expression] = STATE(1813), - [sym_sequential_expression] = STATE(1813), - [sym_char] = STATE(1781), - [sym_format_string] = STATE(1777), - [sym__string_literal] = STATE(1777), - [sym_string] = STATE(1781), - [sym_verbatim_string] = STATE(1781), - [sym_bytearray] = STATE(1781), - [sym_verbatim_bytearray] = STATE(1781), - [sym_format_triple_quoted_string] = STATE(1775), - [sym_triple_quoted_string] = STATE(1781), - [sym_const] = STATE(1813), - [sym_long_identifier_or_op] = STATE(1813), - [sym_long_identifier] = STATE(1773), - [sym_active_pattern] = STATE(1780), - [sym__identifier_or_op] = STATE(1707), - [sym_prefix_op] = STATE(590), - [sym_sbyte] = STATE(1781), - [sym_byte] = STATE(1781), - [sym_int16] = STATE(1781), - [sym_uint16] = STATE(1781), - [sym_int32] = STATE(1781), - [sym_uint32] = STATE(1781), - [sym_nativeint] = STATE(1781), - [sym_unativeint] = STATE(1781), - [sym_int64] = STATE(1781), - [sym_uint64] = STATE(1781), - [sym_ieee32] = STATE(1781), - [sym_ieee64] = STATE(1781), - [sym_bignum] = STATE(1781), - [sym_decimal] = STATE(1781), - [sym_float] = STATE(1500), - [sym_xml_doc] = STATE(787), - [sym_block_comment] = STATE(787), - [sym_line_comment] = STATE(787), - [sym_compiler_directive_decl] = STATE(787), - [sym_fsi_directive_decl] = STATE(787), - [sym_preproc_line] = STATE(787), - [sym_preproc_if_in_expression] = STATE(1813), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(586), - [anon_sym_return] = ACTIONS(712), - [anon_sym_do] = ACTIONS(592), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_null] = ACTIONS(598), + [791] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(310), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), + [sym_xml_doc] = STATE(791), + [sym_block_comment] = STATE(791), + [sym_line_comment] = STATE(791), + [sym_compiler_directive_decl] = STATE(791), + [sym_fsi_directive_decl] = STATE(791), + [sym_preproc_line] = STATE(791), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACK_PIPE] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LBRACE_PIPE] = ACTIONS(606), - [anon_sym_new] = ACTIONS(716), - [anon_sym_return_BANG] = ACTIONS(718), - [anon_sym_yield] = ACTIONS(712), - [anon_sym_yield_BANG] = ACTIONS(718), - [anon_sym_lazy] = ACTIONS(712), - [anon_sym_assert] = ACTIONS(712), - [anon_sym_upcast] = ACTIONS(712), - [anon_sym_downcast] = ACTIONS(712), - [anon_sym_LT_AT] = ACTIONS(2044), - [anon_sym_LT_AT_AT] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(720), - [anon_sym_while] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(622), - [anon_sym_try] = ACTIONS(624), - [anon_sym_match] = ACTIONS(626), - [anon_sym_match_BANG] = ACTIONS(628), - [anon_sym_function] = ACTIONS(630), - [anon_sym_use] = ACTIONS(724), - [anon_sym_use_BANG] = ACTIONS(726), - [anon_sym_do_BANG] = ACTIONS(644), - [anon_sym_begin] = ACTIONS(646), - [aux_sym_char_token1] = ACTIONS(652), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(656), - [anon_sym_AT_DQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(660), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), - [sym_bool] = ACTIONS(664), - [sym_unit] = ACTIONS(2054), - [anon_sym_LPAREN_PIPE] = ACTIONS(666), - [sym_op_identifier] = ACTIONS(2056), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -147359,132 +151465,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(728), - [sym_xint] = ACTIONS(672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(674), + [anon_sym_POUNDif] = ACTIONS(1392), }, - [788] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(331), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(788), - [sym_block_comment] = STATE(788), - [sym_line_comment] = STATE(788), - [sym_compiler_directive_decl] = STATE(788), - [sym_fsi_directive_decl] = STATE(788), - [sym_preproc_line] = STATE(788), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [792] = { + [sym_function_or_value_defn] = STATE(630), + [sym__expression] = STATE(134), + [sym_literal_expression] = STATE(2215), + [sym_long_identifier_or_op] = STATE(2215), + [sym_tuple_expression] = STATE(2215), + [sym_brace_expression] = STATE(2215), + [sym_anon_record_expression] = STATE(2215), + [sym_prefixed_expression] = STATE(2215), + [sym_typecast_expression] = STATE(2215), + [sym_for_expression] = STATE(2215), + [sym_while_expression] = STATE(2215), + [sym__if_branch] = STATE(7387), + [sym_if_expression] = STATE(2215), + [sym_fun_expression] = STATE(2215), + [sym_try_expression] = STATE(2215), + [sym_match_expression] = STATE(2215), + [sym_function_expression] = STATE(2215), + [sym_object_instantiation_expression] = STATE(2215), + [sym_mutate_expression] = STATE(2215), + [sym_index_expression] = STATE(2215), + [sym_dot_expression] = STATE(2215), + [sym_typed_expression] = STATE(2215), + [sym_declaration_expression] = STATE(2215), + [sym_do_expression] = STATE(2215), + [sym_list_expression] = STATE(2215), + [sym_array_expression] = STATE(2215), + [sym_begin_end_expression] = STATE(2215), + [sym_paren_expression] = STATE(2215), + [sym_application_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_ce_expression] = STATE(2215), + [sym_sequential_expression] = STATE(2215), + [sym_char] = STATE(2306), + [sym_format_string] = STATE(2320), + [sym__string_literal] = STATE(2320), + [sym_string] = STATE(2306), + [sym_verbatim_string] = STATE(2306), + [sym_bytearray] = STATE(2306), + [sym_verbatim_bytearray] = STATE(2306), + [sym_format_triple_quoted_string] = STATE(2333), + [sym_triple_quoted_string] = STATE(2306), + [sym_const] = STATE(2215), + [sym_long_identifier] = STATE(2160), + [sym_active_pattern] = STATE(2277), + [sym__identifier_or_op] = STATE(2161), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(700), + [sym_sbyte] = STATE(2306), + [sym_byte] = STATE(2306), + [sym_int16] = STATE(2306), + [sym_uint16] = STATE(2306), + [sym_int32] = STATE(2306), + [sym_uint32] = STATE(2306), + [sym_nativeint] = STATE(2306), + [sym_unativeint] = STATE(2306), + [sym_int64] = STATE(2306), + [sym_uint64] = STATE(2306), + [sym_ieee32] = STATE(2306), + [sym_ieee64] = STATE(2306), + [sym_bignum] = STATE(2306), + [sym_decimal] = STATE(2306), + [sym_float] = STATE(1705), + [sym_xml_doc] = STATE(792), + [sym_block_comment] = STATE(792), + [sym_line_comment] = STATE(792), + [sym_compiler_directive_decl] = STATE(792), + [sym_fsi_directive_decl] = STATE(792), + [sym_preproc_line] = STATE(792), + [sym_preproc_if_in_expression] = STATE(2215), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(405), + [anon_sym_return] = ACTIONS(409), + [anon_sym_do] = ACTIONS(411), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_null] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_LBRACK_PIPE] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LT_AT] = ACTIONS(425), + [anon_sym_LT_AT_AT] = ACTIONS(1836), + [anon_sym_LBRACE_PIPE] = ACTIONS(431), + [anon_sym_new] = ACTIONS(433), + [anon_sym_return_BANG] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(409), + [anon_sym_yield_BANG] = ACTIONS(435), + [anon_sym_lazy] = ACTIONS(409), + [anon_sym_assert] = ACTIONS(409), + [anon_sym_upcast] = ACTIONS(409), + [anon_sym_downcast] = ACTIONS(409), + [anon_sym_for] = ACTIONS(439), + [anon_sym_while] = ACTIONS(441), [anon_sym_if] = ACTIONS(63), - [anon_sym_fun] = ACTIONS(167), - [anon_sym_try] = ACTIONS(169), - [anon_sym_match] = ACTIONS(171), - [anon_sym_match_BANG] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_fun] = ACTIONS(443), + [anon_sym_try] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_match_BANG] = ACTIONS(449), + [anon_sym_function] = ACTIONS(451), + [anon_sym_use] = ACTIONS(459), + [anon_sym_use_BANG] = ACTIONS(461), + [anon_sym_do_BANG] = ACTIONS(463), + [anon_sym_begin] = ACTIONS(465), + [aux_sym_char_token1] = ACTIONS(469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(471), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_AT_DQUOTE] = ACTIONS(475), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(477), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(479), + [sym_bool] = ACTIONS(481), + [sym_unit] = ACTIONS(1838), + [anon_sym_LPAREN_PIPE] = ACTIONS(483), + [sym_op_identifier] = ACTIONS(1840), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -147492,110 +151599,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), - [sym_int] = ACTIONS(213), - [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(487), + [sym_xint] = ACTIONS(489), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(217), + [anon_sym_POUNDif] = ACTIONS(491), }, - [789] = { - [sym_function_or_value_defn] = STATE(685), - [sym__expression] = STATE(264), - [sym_tuple_expression] = STATE(1027), - [sym_brace_expression] = STATE(1027), - [sym_anon_record_expression] = STATE(1027), - [sym_prefixed_expression] = STATE(1027), - [sym_literal_expression] = STATE(1027), - [sym_typecast_expression] = STATE(1027), - [sym_for_expression] = STATE(1027), - [sym_while_expression] = STATE(1027), - [sym__if_branch] = STATE(6845), - [sym_if_expression] = STATE(1027), - [sym_fun_expression] = STATE(1027), - [sym_try_expression] = STATE(1027), - [sym_match_expression] = STATE(1027), - [sym_function_expression] = STATE(1027), - [sym_object_instantiation_expression] = STATE(1027), - [sym_mutate_expression] = STATE(1027), - [sym_index_expression] = STATE(1027), - [sym_dot_expression] = STATE(1027), - [sym_typed_expression] = STATE(1027), - [sym_declaration_expression] = STATE(1027), - [sym_do_expression] = STATE(1027), - [sym_list_expression] = STATE(1027), - [sym_array_expression] = STATE(1027), - [sym_begin_end_expression] = STATE(1027), - [sym_paren_expression] = STATE(1027), - [sym_application_expression] = STATE(1027), - [sym_infix_expression] = STATE(1027), - [sym_ce_expression] = STATE(1027), - [sym_sequential_expression] = STATE(1027), - [sym_char] = STATE(1052), - [sym_format_string] = STATE(1035), - [sym__string_literal] = STATE(1035), - [sym_string] = STATE(1052), - [sym_verbatim_string] = STATE(1052), - [sym_bytearray] = STATE(1052), - [sym_verbatim_bytearray] = STATE(1052), - [sym_format_triple_quoted_string] = STATE(1034), - [sym_triple_quoted_string] = STATE(1052), - [sym_const] = STATE(1027), - [sym_long_identifier_or_op] = STATE(1027), - [sym_long_identifier] = STATE(1030), - [sym_active_pattern] = STATE(1040), - [sym__identifier_or_op] = STATE(1041), - [sym_prefix_op] = STATE(560), - [sym_sbyte] = STATE(1052), - [sym_byte] = STATE(1052), - [sym_int16] = STATE(1052), - [sym_uint16] = STATE(1052), - [sym_int32] = STATE(1052), - [sym_uint32] = STATE(1052), - [sym_nativeint] = STATE(1052), - [sym_unativeint] = STATE(1052), - [sym_int64] = STATE(1052), - [sym_uint64] = STATE(1052), - [sym_ieee32] = STATE(1052), - [sym_ieee64] = STATE(1052), - [sym_bignum] = STATE(1052), - [sym_decimal] = STATE(1052), - [sym_float] = STATE(903), - [sym_xml_doc] = STATE(789), - [sym_block_comment] = STATE(789), - [sym_line_comment] = STATE(789), - [sym_compiler_directive_decl] = STATE(789), - [sym_fsi_directive_decl] = STATE(789), - [sym_preproc_line] = STATE(789), - [sym_preproc_if_in_expression] = STATE(1027), - [aux_sym_prefix_op_repeat1] = STATE(3151), - [sym_identifier] = ACTIONS(117), - [anon_sym_return] = ACTIONS(125), - [anon_sym_do] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_BANG] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_null] = ACTIONS(137), + [793] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(326), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(793), + [sym_block_comment] = STATE(793), + [sym_line_comment] = STATE(793), + [sym_compiler_directive_decl] = STATE(793), + [sym_fsi_directive_decl] = STATE(793), + [sym_preproc_line] = STATE(793), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), [anon_sym_AMP] = ACTIONS(41), [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_LBRACK_PIPE] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACE_PIPE] = ACTIONS(149), - [anon_sym_new] = ACTIONS(153), - [anon_sym_return_BANG] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(125), - [anon_sym_yield_BANG] = ACTIONS(155), - [anon_sym_lazy] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_upcast] = ACTIONS(125), - [anon_sym_downcast] = ACTIONS(125), - [anon_sym_LT_AT] = ACTIONS(2066), - [anon_sym_LT_AT_AT] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), [anon_sym_for] = ACTIONS(163), [anon_sym_while] = ACTIONS(165), [anon_sym_if] = ACTIONS(63), @@ -147604,20 +151712,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(171), [anon_sym_match_BANG] = ACTIONS(173), [anon_sym_function] = ACTIONS(175), - [anon_sym_use] = ACTIONS(185), - [anon_sym_use_BANG] = ACTIONS(187), - [anon_sym_do_BANG] = ACTIONS(189), - [anon_sym_begin] = ACTIONS(191), - [aux_sym_char_token1] = ACTIONS(195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(197), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_AT_DQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [sym_bool] = ACTIONS(207), - [sym_unit] = ACTIONS(2078), - [anon_sym_LPAREN_PIPE] = ACTIONS(209), - [sym_op_identifier] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), [anon_sym_PLUS] = ACTIONS(41), [anon_sym_DASH] = ACTIONS(41), [anon_sym_PLUS_DOT] = ACTIONS(103), @@ -147625,10 +151733,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(103), [anon_sym_AMP_AMP] = ACTIONS(103), [anon_sym_TILDE] = ACTIONS(105), - [aux_sym_prefix_op_token1] = ACTIONS(103), + [aux_sym_prefix_op_token1] = ACTIONS(107), [sym_int] = ACTIONS(213), [sym_xint] = ACTIONS(215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -147637,7914 +151745,9385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(217), }, - [790] = { - [sym_xml_doc] = STATE(790), - [sym_block_comment] = STATE(790), - [sym_line_comment] = STATE(790), - [sym_compiler_directive_decl] = STATE(790), - [sym_fsi_directive_decl] = STATE(790), - [sym_preproc_line] = STATE(790), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_GT_RBRACK] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_to] = ACTIONS(2518), - [anon_sym_downto] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2522), - [anon_sym_uy] = ACTIONS(2524), - [anon_sym_s] = ACTIONS(2526), - [anon_sym_us] = ACTIONS(2528), - [anon_sym_l] = ACTIONS(2530), - [aux_sym_uint32_token1] = ACTIONS(2532), - [anon_sym_n] = ACTIONS(2534), - [anon_sym_un] = ACTIONS(2536), - [anon_sym_L] = ACTIONS(2538), - [aux_sym_uint64_token1] = ACTIONS(2540), - [aux_sym_bignum_token1] = ACTIONS(2542), - [aux_sym_decimal_token1] = ACTIONS(2544), - [anon_sym_DOT2] = ACTIONS(2546), - [aux_sym_float_token1] = ACTIONS(2548), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - }, - [791] = { - [sym_xml_doc] = STATE(791), - [sym_block_comment] = STATE(791), - [sym_line_comment] = STATE(791), - [sym_compiler_directive_decl] = STATE(791), - [sym_fsi_directive_decl] = STATE(791), - [sym_preproc_line] = STATE(791), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_GT_RBRACK] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_to] = ACTIONS(2518), - [anon_sym_downto] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2522), - [anon_sym_uy] = ACTIONS(2524), - [anon_sym_s] = ACTIONS(2526), - [anon_sym_us] = ACTIONS(2528), - [anon_sym_l] = ACTIONS(2530), - [aux_sym_uint32_token1] = ACTIONS(2532), - [anon_sym_n] = ACTIONS(2534), - [anon_sym_un] = ACTIONS(2536), - [anon_sym_L] = ACTIONS(2538), - [aux_sym_uint64_token1] = ACTIONS(2540), - [anon_sym_lf] = ACTIONS(2550), - [anon_sym_LF] = ACTIONS(2552), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - }, - [792] = { - [sym_xml_doc] = STATE(792), - [sym_block_comment] = STATE(792), - [sym_line_comment] = STATE(792), - [sym_compiler_directive_decl] = STATE(792), - [sym_fsi_directive_decl] = STATE(792), - [sym_preproc_line] = STATE(792), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2554), - [anon_sym_uy] = ACTIONS(2556), - [anon_sym_s] = ACTIONS(2558), - [anon_sym_us] = ACTIONS(2560), - [anon_sym_l] = ACTIONS(2562), - [aux_sym_uint32_token1] = ACTIONS(2564), - [anon_sym_n] = ACTIONS(2566), - [anon_sym_un] = ACTIONS(2568), - [anon_sym_L] = ACTIONS(2570), - [aux_sym_uint64_token1] = ACTIONS(2572), - [aux_sym_bignum_token1] = ACTIONS(2574), - [aux_sym_decimal_token1] = ACTIONS(2576), - [anon_sym_DOT2] = ACTIONS(2578), - [aux_sym_float_token1] = ACTIONS(2580), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - }, - [793] = { - [sym_xml_doc] = STATE(793), - [sym_block_comment] = STATE(793), - [sym_line_comment] = STATE(793), - [sym_compiler_directive_decl] = STATE(793), - [sym_fsi_directive_decl] = STATE(793), - [sym_preproc_line] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2554), - [anon_sym_uy] = ACTIONS(2556), - [anon_sym_s] = ACTIONS(2558), - [anon_sym_us] = ACTIONS(2560), - [anon_sym_l] = ACTIONS(2562), - [aux_sym_uint32_token1] = ACTIONS(2564), - [anon_sym_n] = ACTIONS(2566), - [anon_sym_un] = ACTIONS(2568), - [anon_sym_L] = ACTIONS(2570), - [aux_sym_uint64_token1] = ACTIONS(2572), - [aux_sym_bignum_token1] = ACTIONS(2574), - [aux_sym_decimal_token1] = ACTIONS(2576), - [anon_sym_DOT2] = ACTIONS(2578), - [aux_sym_float_token1] = ACTIONS(2580), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - }, [794] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(200), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(794), [sym_block_comment] = STATE(794), [sym_line_comment] = STATE(794), [sym_compiler_directive_decl] = STATE(794), [sym_fsi_directive_decl] = STATE(794), [sym_preproc_line] = STATE(794), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2582), - [anon_sym_uy] = ACTIONS(2584), - [anon_sym_s] = ACTIONS(2586), - [anon_sym_us] = ACTIONS(2588), - [anon_sym_l] = ACTIONS(2590), - [aux_sym_uint32_token1] = ACTIONS(2592), - [anon_sym_n] = ACTIONS(2594), - [anon_sym_un] = ACTIONS(2596), - [anon_sym_L] = ACTIONS(2598), - [aux_sym_uint64_token1] = ACTIONS(2600), - [aux_sym_bignum_token1] = ACTIONS(2602), - [aux_sym_decimal_token1] = ACTIONS(2604), - [anon_sym_DOT2] = ACTIONS(2606), - [aux_sym_float_token1] = ACTIONS(2608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [795] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(367), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(795), [sym_block_comment] = STATE(795), [sym_line_comment] = STATE(795), [sym_compiler_directive_decl] = STATE(795), [sym_fsi_directive_decl] = STATE(795), [sym_preproc_line] = STATE(795), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2554), - [anon_sym_uy] = ACTIONS(2556), - [anon_sym_s] = ACTIONS(2558), - [anon_sym_us] = ACTIONS(2560), - [anon_sym_l] = ACTIONS(2562), - [aux_sym_uint32_token1] = ACTIONS(2564), - [anon_sym_n] = ACTIONS(2566), - [anon_sym_un] = ACTIONS(2568), - [anon_sym_L] = ACTIONS(2570), - [aux_sym_uint64_token1] = ACTIONS(2572), - [anon_sym_lf] = ACTIONS(2610), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [796] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(213), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(796), [sym_block_comment] = STATE(796), [sym_line_comment] = STATE(796), [sym_compiler_directive_decl] = STATE(796), [sym_fsi_directive_decl] = STATE(796), [sym_preproc_line] = STATE(796), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2614), - [anon_sym_uy] = ACTIONS(2616), - [anon_sym_s] = ACTIONS(2618), - [anon_sym_us] = ACTIONS(2620), - [anon_sym_l] = ACTIONS(2622), - [aux_sym_uint32_token1] = ACTIONS(2624), - [anon_sym_n] = ACTIONS(2626), - [anon_sym_un] = ACTIONS(2628), - [anon_sym_L] = ACTIONS(2630), - [aux_sym_uint64_token1] = ACTIONS(2632), - [aux_sym_bignum_token1] = ACTIONS(2634), - [aux_sym_decimal_token1] = ACTIONS(2636), - [anon_sym_DOT2] = ACTIONS(2638), - [aux_sym_float_token1] = ACTIONS(2640), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [797] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(110), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(797), [sym_block_comment] = STATE(797), [sym_line_comment] = STATE(797), [sym_compiler_directive_decl] = STATE(797), [sym_fsi_directive_decl] = STATE(797), [sym_preproc_line] = STATE(797), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2582), - [anon_sym_uy] = ACTIONS(2584), - [anon_sym_s] = ACTIONS(2586), - [anon_sym_us] = ACTIONS(2588), - [anon_sym_l] = ACTIONS(2590), - [aux_sym_uint32_token1] = ACTIONS(2592), - [anon_sym_n] = ACTIONS(2594), - [anon_sym_un] = ACTIONS(2596), - [anon_sym_L] = ACTIONS(2598), - [aux_sym_uint64_token1] = ACTIONS(2600), - [anon_sym_lf] = ACTIONS(2642), - [anon_sym_LF] = ACTIONS(2644), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [798] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(111), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(798), [sym_block_comment] = STATE(798), [sym_line_comment] = STATE(798), [sym_compiler_directive_decl] = STATE(798), [sym_fsi_directive_decl] = STATE(798), [sym_preproc_line] = STATE(798), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2554), - [anon_sym_uy] = ACTIONS(2556), - [anon_sym_s] = ACTIONS(2558), - [anon_sym_us] = ACTIONS(2560), - [anon_sym_l] = ACTIONS(2562), - [aux_sym_uint32_token1] = ACTIONS(2564), - [anon_sym_n] = ACTIONS(2566), - [anon_sym_un] = ACTIONS(2568), - [anon_sym_L] = ACTIONS(2570), - [aux_sym_uint64_token1] = ACTIONS(2572), - [anon_sym_lf] = ACTIONS(2610), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [799] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(170), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(799), [sym_block_comment] = STATE(799), [sym_line_comment] = STATE(799), [sym_compiler_directive_decl] = STATE(799), [sym_fsi_directive_decl] = STATE(799), [sym_preproc_line] = STATE(799), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2522), - [anon_sym_uy] = ACTIONS(2524), - [anon_sym_s] = ACTIONS(2526), - [anon_sym_us] = ACTIONS(2528), - [anon_sym_l] = ACTIONS(2530), - [aux_sym_uint32_token1] = ACTIONS(2532), - [anon_sym_n] = ACTIONS(2534), - [anon_sym_un] = ACTIONS(2536), - [anon_sym_L] = ACTIONS(2538), - [aux_sym_uint64_token1] = ACTIONS(2540), - [aux_sym_bignum_token1] = ACTIONS(2542), - [aux_sym_decimal_token1] = ACTIONS(2544), - [anon_sym_DOT2] = ACTIONS(2546), - [aux_sym_float_token1] = ACTIONS(2548), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [800] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(56), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(800), [sym_block_comment] = STATE(800), [sym_line_comment] = STATE(800), [sym_compiler_directive_decl] = STATE(800), [sym_fsi_directive_decl] = STATE(800), [sym_preproc_line] = STATE(800), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2646), - [anon_sym_uy] = ACTIONS(2648), - [anon_sym_s] = ACTIONS(2650), - [anon_sym_us] = ACTIONS(2652), - [anon_sym_l] = ACTIONS(2654), - [aux_sym_uint32_token1] = ACTIONS(2656), - [anon_sym_n] = ACTIONS(2658), - [anon_sym_un] = ACTIONS(2660), - [anon_sym_L] = ACTIONS(2662), - [aux_sym_uint64_token1] = ACTIONS(2664), - [aux_sym_bignum_token1] = ACTIONS(2666), - [aux_sym_decimal_token1] = ACTIONS(2668), - [anon_sym_DOT2] = ACTIONS(2670), - [aux_sym_float_token1] = ACTIONS(2672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [801] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(179), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(801), [sym_block_comment] = STATE(801), [sym_line_comment] = STATE(801), [sym_compiler_directive_decl] = STATE(801), [sym_fsi_directive_decl] = STATE(801), [sym_preproc_line] = STATE(801), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2646), - [anon_sym_uy] = ACTIONS(2648), - [anon_sym_s] = ACTIONS(2650), - [anon_sym_us] = ACTIONS(2652), - [anon_sym_l] = ACTIONS(2654), - [aux_sym_uint32_token1] = ACTIONS(2656), - [anon_sym_n] = ACTIONS(2658), - [anon_sym_un] = ACTIONS(2660), - [anon_sym_L] = ACTIONS(2662), - [aux_sym_uint64_token1] = ACTIONS(2664), - [aux_sym_bignum_token1] = ACTIONS(2666), - [aux_sym_decimal_token1] = ACTIONS(2668), - [anon_sym_DOT2] = ACTIONS(2670), - [aux_sym_float_token1] = ACTIONS(2672), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [802] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(6), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(802), [sym_block_comment] = STATE(802), [sym_line_comment] = STATE(802), [sym_compiler_directive_decl] = STATE(802), [sym_fsi_directive_decl] = STATE(802), [sym_preproc_line] = STATE(802), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2674), - [anon_sym_uy] = ACTIONS(2676), - [anon_sym_s] = ACTIONS(2678), - [anon_sym_us] = ACTIONS(2680), - [anon_sym_l] = ACTIONS(2682), - [aux_sym_uint32_token1] = ACTIONS(2684), - [anon_sym_n] = ACTIONS(2686), - [anon_sym_un] = ACTIONS(2688), - [anon_sym_L] = ACTIONS(2690), - [aux_sym_uint64_token1] = ACTIONS(2692), - [aux_sym_bignum_token1] = ACTIONS(2694), - [aux_sym_decimal_token1] = ACTIONS(2696), - [anon_sym_DOT2] = ACTIONS(2698), - [aux_sym_float_token1] = ACTIONS(2700), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [803] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(345), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(803), [sym_block_comment] = STATE(803), [sym_line_comment] = STATE(803), [sym_compiler_directive_decl] = STATE(803), [sym_fsi_directive_decl] = STATE(803), [sym_preproc_line] = STATE(803), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2702), - [anon_sym_uy] = ACTIONS(2704), - [anon_sym_s] = ACTIONS(2706), - [anon_sym_us] = ACTIONS(2708), - [anon_sym_l] = ACTIONS(2710), - [aux_sym_uint32_token1] = ACTIONS(2712), - [anon_sym_n] = ACTIONS(2714), - [anon_sym_un] = ACTIONS(2716), - [anon_sym_L] = ACTIONS(2718), - [aux_sym_uint64_token1] = ACTIONS(2720), - [aux_sym_bignum_token1] = ACTIONS(2722), - [aux_sym_decimal_token1] = ACTIONS(2724), - [anon_sym_DOT2] = ACTIONS(2726), - [aux_sym_float_token1] = ACTIONS(2728), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [anon_sym_POUNDelse] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), }, [804] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(80), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(804), [sym_block_comment] = STATE(804), [sym_line_comment] = STATE(804), [sym_compiler_directive_decl] = STATE(804), [sym_fsi_directive_decl] = STATE(804), [sym_preproc_line] = STATE(804), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_DASH_GT] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2730), - [anon_sym_uy] = ACTIONS(2732), - [anon_sym_s] = ACTIONS(2734), - [anon_sym_us] = ACTIONS(2736), - [anon_sym_l] = ACTIONS(2738), - [aux_sym_uint32_token1] = ACTIONS(2740), - [anon_sym_n] = ACTIONS(2742), - [anon_sym_un] = ACTIONS(2744), - [anon_sym_L] = ACTIONS(2746), - [aux_sym_uint64_token1] = ACTIONS(2748), - [aux_sym_bignum_token1] = ACTIONS(2750), - [aux_sym_decimal_token1] = ACTIONS(2752), - [anon_sym_DOT2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [805] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(377), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(805), [sym_block_comment] = STATE(805), [sym_line_comment] = STATE(805), [sym_compiler_directive_decl] = STATE(805), [sym_fsi_directive_decl] = STATE(805), [sym_preproc_line] = STATE(805), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2646), - [anon_sym_uy] = ACTIONS(2648), - [anon_sym_s] = ACTIONS(2650), - [anon_sym_us] = ACTIONS(2652), - [anon_sym_l] = ACTIONS(2654), - [aux_sym_uint32_token1] = ACTIONS(2656), - [anon_sym_n] = ACTIONS(2658), - [anon_sym_un] = ACTIONS(2660), - [anon_sym_L] = ACTIONS(2662), - [aux_sym_uint64_token1] = ACTIONS(2664), - [anon_sym_lf] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2760), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [806] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(98), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(806), [sym_block_comment] = STATE(806), [sym_line_comment] = STATE(806), [sym_compiler_directive_decl] = STATE(806), [sym_fsi_directive_decl] = STATE(806), [sym_preproc_line] = STATE(806), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2762), - [anon_sym_uy] = ACTIONS(2764), - [anon_sym_s] = ACTIONS(2766), - [anon_sym_us] = ACTIONS(2768), - [anon_sym_l] = ACTIONS(2770), - [aux_sym_uint32_token1] = ACTIONS(2772), - [anon_sym_n] = ACTIONS(2774), - [anon_sym_un] = ACTIONS(2776), - [anon_sym_L] = ACTIONS(2778), - [aux_sym_uint64_token1] = ACTIONS(2780), - [aux_sym_bignum_token1] = ACTIONS(2782), - [aux_sym_decimal_token1] = ACTIONS(2784), - [anon_sym_DOT2] = ACTIONS(2786), - [aux_sym_float_token1] = ACTIONS(2788), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [807] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(329), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(807), [sym_block_comment] = STATE(807), [sym_line_comment] = STATE(807), [sym_compiler_directive_decl] = STATE(807), [sym_fsi_directive_decl] = STATE(807), [sym_preproc_line] = STATE(807), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_GT_RBRACK] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_RBRACK] = ACTIONS(2792), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_to] = ACTIONS(2790), - [anon_sym_downto] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_end] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_DOT_DOT2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), }, [808] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(257), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(808), [sym_block_comment] = STATE(808), [sym_line_comment] = STATE(808), [sym_compiler_directive_decl] = STATE(808), [sym_fsi_directive_decl] = STATE(808), [sym_preproc_line] = STATE(808), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_GT_RBRACK] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_to] = ACTIONS(2806), - [anon_sym_downto] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_end] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_DOT_DOT2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [809] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(286), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(809), [sym_block_comment] = STATE(809), [sym_line_comment] = STATE(809), [sym_compiler_directive_decl] = STATE(809), [sym_fsi_directive_decl] = STATE(809), [sym_preproc_line] = STATE(809), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_GT_RBRACK] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_to] = ACTIONS(2810), - [anon_sym_downto] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_end] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [810] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(279), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(810), [sym_block_comment] = STATE(810), [sym_line_comment] = STATE(810), [sym_compiler_directive_decl] = STATE(810), [sym_fsi_directive_decl] = STATE(810), [sym_preproc_line] = STATE(810), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_GT_RBRACK] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_to] = ACTIONS(2814), - [anon_sym_downto] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_end] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_DOT_DOT2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [811] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(343), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(811), [sym_block_comment] = STATE(811), [sym_line_comment] = STATE(811), [sym_compiler_directive_decl] = STATE(811), [sym_fsi_directive_decl] = STATE(811), [sym_preproc_line] = STATE(811), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2614), - [anon_sym_uy] = ACTIONS(2616), - [anon_sym_s] = ACTIONS(2618), - [anon_sym_us] = ACTIONS(2620), - [anon_sym_l] = ACTIONS(2622), - [aux_sym_uint32_token1] = ACTIONS(2624), - [anon_sym_n] = ACTIONS(2626), - [anon_sym_un] = ACTIONS(2628), - [anon_sym_L] = ACTIONS(2630), - [aux_sym_uint64_token1] = ACTIONS(2632), - [anon_sym_lf] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2818), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [812] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(307), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(812), [sym_block_comment] = STATE(812), [sym_line_comment] = STATE(812), [sym_compiler_directive_decl] = STATE(812), [sym_fsi_directive_decl] = STATE(812), [sym_preproc_line] = STATE(812), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2820), - [anon_sym_uy] = ACTIONS(2822), - [anon_sym_s] = ACTIONS(2824), - [anon_sym_us] = ACTIONS(2826), - [anon_sym_l] = ACTIONS(2828), - [aux_sym_uint32_token1] = ACTIONS(2830), - [anon_sym_n] = ACTIONS(2832), - [anon_sym_un] = ACTIONS(2834), - [anon_sym_L] = ACTIONS(2836), - [aux_sym_uint64_token1] = ACTIONS(2838), - [aux_sym_bignum_token1] = ACTIONS(2840), - [aux_sym_decimal_token1] = ACTIONS(2842), - [anon_sym_DOT2] = ACTIONS(2844), - [aux_sym_float_token1] = ACTIONS(2846), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [813] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(75), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(813), [sym_block_comment] = STATE(813), [sym_line_comment] = STATE(813), [sym_compiler_directive_decl] = STATE(813), [sym_fsi_directive_decl] = STATE(813), [sym_preproc_line] = STATE(813), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_DASH_GT] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2730), - [anon_sym_uy] = ACTIONS(2732), - [anon_sym_s] = ACTIONS(2734), - [anon_sym_us] = ACTIONS(2736), - [anon_sym_l] = ACTIONS(2738), - [aux_sym_uint32_token1] = ACTIONS(2740), - [anon_sym_n] = ACTIONS(2742), - [anon_sym_un] = ACTIONS(2744), - [anon_sym_L] = ACTIONS(2746), - [aux_sym_uint64_token1] = ACTIONS(2748), - [aux_sym_bignum_token1] = ACTIONS(2750), - [aux_sym_decimal_token1] = ACTIONS(2752), - [anon_sym_DOT2] = ACTIONS(2754), - [aux_sym_float_token1] = ACTIONS(2756), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [814] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(124), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(814), [sym_block_comment] = STATE(814), [sym_line_comment] = STATE(814), [sym_compiler_directive_decl] = STATE(814), [sym_fsi_directive_decl] = STATE(814), [sym_preproc_line] = STATE(814), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_GT_RBRACK] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_to] = ACTIONS(2850), - [anon_sym_downto] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_end] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_DOT_DOT2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [815] = { + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(358), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(815), [sym_block_comment] = STATE(815), [sym_line_comment] = STATE(815), [sym_compiler_directive_decl] = STATE(815), [sym_fsi_directive_decl] = STATE(815), [sym_preproc_line] = STATE(815), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2852), - [anon_sym_uy] = ACTIONS(2854), - [anon_sym_s] = ACTIONS(2856), - [anon_sym_us] = ACTIONS(2858), - [anon_sym_l] = ACTIONS(2860), - [aux_sym_uint32_token1] = ACTIONS(2862), - [anon_sym_n] = ACTIONS(2864), - [anon_sym_un] = ACTIONS(2866), - [anon_sym_L] = ACTIONS(2868), - [aux_sym_uint64_token1] = ACTIONS(2870), - [aux_sym_bignum_token1] = ACTIONS(2872), - [aux_sym_decimal_token1] = ACTIONS(2874), - [anon_sym_DOT2] = ACTIONS(2876), - [aux_sym_float_token1] = ACTIONS(2878), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1108), }, [816] = { + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(125), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(816), [sym_block_comment] = STATE(816), [sym_line_comment] = STATE(816), [sym_compiler_directive_decl] = STATE(816), [sym_fsi_directive_decl] = STATE(816), [sym_preproc_line] = STATE(816), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_DASH_GT] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2730), - [anon_sym_uy] = ACTIONS(2732), - [anon_sym_s] = ACTIONS(2734), - [anon_sym_us] = ACTIONS(2736), - [anon_sym_l] = ACTIONS(2738), - [aux_sym_uint32_token1] = ACTIONS(2740), - [anon_sym_n] = ACTIONS(2742), - [anon_sym_un] = ACTIONS(2744), - [anon_sym_L] = ACTIONS(2746), - [aux_sym_uint64_token1] = ACTIONS(2748), - [anon_sym_lf] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2882), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(972), }, [817] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(330), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(817), [sym_block_comment] = STATE(817), [sym_line_comment] = STATE(817), [sym_compiler_directive_decl] = STATE(817), [sym_fsi_directive_decl] = STATE(817), [sym_preproc_line] = STATE(817), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2702), - [anon_sym_uy] = ACTIONS(2704), - [anon_sym_s] = ACTIONS(2706), - [anon_sym_us] = ACTIONS(2708), - [anon_sym_l] = ACTIONS(2710), - [aux_sym_uint32_token1] = ACTIONS(2712), - [anon_sym_n] = ACTIONS(2714), - [anon_sym_un] = ACTIONS(2716), - [anon_sym_L] = ACTIONS(2718), - [aux_sym_uint64_token1] = ACTIONS(2720), - [anon_sym_lf] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [anon_sym_POUNDelse] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [818] = { + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(185), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(818), [sym_block_comment] = STATE(818), [sym_line_comment] = STATE(818), [sym_compiler_directive_decl] = STATE(818), [sym_fsi_directive_decl] = STATE(818), [sym_preproc_line] = STATE(818), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2674), - [anon_sym_uy] = ACTIONS(2676), - [anon_sym_s] = ACTIONS(2678), - [anon_sym_us] = ACTIONS(2680), - [anon_sym_l] = ACTIONS(2682), - [aux_sym_uint32_token1] = ACTIONS(2684), - [anon_sym_n] = ACTIONS(2686), - [anon_sym_un] = ACTIONS(2688), - [anon_sym_L] = ACTIONS(2690), - [aux_sym_uint64_token1] = ACTIONS(2692), - [anon_sym_lf] = ACTIONS(2888), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), }, [819] = { - [sym__else_expression] = STATE(1051), - [sym_elif_expression] = STATE(875), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(196), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(819), [sym_block_comment] = STATE(819), [sym_line_comment] = STATE(819), [sym_compiler_directive_decl] = STATE(819), [sym_fsi_directive_decl] = STATE(819), [sym_preproc_line] = STATE(819), - [aux_sym_if_expression_repeat1] = STATE(831), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_GT_RBRACK] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_RBRACK] = ACTIONS(2894), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_to] = ACTIONS(2892), - [anon_sym_downto] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2896), - [anon_sym_elif] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_end] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_DOT_DOT2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [820] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(306), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(820), [sym_block_comment] = STATE(820), [sym_line_comment] = STATE(820), [sym_compiler_directive_decl] = STATE(820), [sym_fsi_directive_decl] = STATE(820), [sym_preproc_line] = STATE(820), - [aux_sym_long_identifier_repeat1] = STATE(820), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2902), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_to] = ACTIONS(2900), - [anon_sym_downto] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), }, [821] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(891), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(299), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(821), [sym_block_comment] = STATE(821), [sym_line_comment] = STATE(821), [sym_compiler_directive_decl] = STATE(821), [sym_fsi_directive_decl] = STATE(821), [sym_preproc_line] = STATE(821), - [aux_sym__compound_type_repeat1] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [822] = { + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(119), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(822), [sym_block_comment] = STATE(822), [sym_line_comment] = STATE(822), [sym_compiler_directive_decl] = STATE(822), [sym_fsi_directive_decl] = STATE(822), [sym_preproc_line] = STATE(822), - [aux_sym_type_argument_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_GT_RBRACK] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_to] = ACTIONS(2917), - [anon_sym_downto] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_end] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_DOT_DOT2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2921), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(972), }, [823] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(83), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(823), [sym_block_comment] = STATE(823), [sym_line_comment] = STATE(823), [sym_compiler_directive_decl] = STATE(823), [sym_fsi_directive_decl] = STATE(823), [sym_preproc_line] = STATE(823), - [aux_sym_type_argument_repeat1] = STATE(828), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_to] = ACTIONS(2924), - [anon_sym_downto] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_end] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2928), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [824] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(891), + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(342), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(824), [sym_block_comment] = STATE(824), [sym_line_comment] = STATE(824), [sym_compiler_directive_decl] = STATE(824), [sym_fsi_directive_decl] = STATE(824), [sym_preproc_line] = STATE(824), - [aux_sym__compound_type_repeat1] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [825] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(278), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(825), [sym_block_comment] = STATE(825), [sym_line_comment] = STATE(825), [sym_compiler_directive_decl] = STATE(825), [sym_fsi_directive_decl] = STATE(825), [sym_preproc_line] = STATE(825), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2762), - [anon_sym_uy] = ACTIONS(2764), - [anon_sym_s] = ACTIONS(2766), - [anon_sym_us] = ACTIONS(2768), - [anon_sym_l] = ACTIONS(2770), - [aux_sym_uint32_token1] = ACTIONS(2772), - [anon_sym_n] = ACTIONS(2774), - [anon_sym_un] = ACTIONS(2776), - [anon_sym_L] = ACTIONS(2778), - [aux_sym_uint64_token1] = ACTIONS(2780), - [anon_sym_lf] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2933), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [826] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(891), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(359), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(826), [sym_block_comment] = STATE(826), [sym_line_comment] = STATE(826), [sym_compiler_directive_decl] = STATE(826), [sym_fsi_directive_decl] = STATE(826), [sym_preproc_line] = STATE(826), - [aux_sym__compound_type_repeat1] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [827] = { + [sym_function_or_value_defn] = STATE(745), + [sym__expression] = STATE(113), + [sym_literal_expression] = STATE(2032), + [sym_long_identifier_or_op] = STATE(2032), + [sym_tuple_expression] = STATE(2032), + [sym_brace_expression] = STATE(2032), + [sym_anon_record_expression] = STATE(2032), + [sym_prefixed_expression] = STATE(2032), + [sym_typecast_expression] = STATE(2032), + [sym_for_expression] = STATE(2032), + [sym_while_expression] = STATE(2032), + [sym__if_branch] = STATE(7535), + [sym_if_expression] = STATE(2032), + [sym_fun_expression] = STATE(2032), + [sym_try_expression] = STATE(2032), + [sym_match_expression] = STATE(2032), + [sym_function_expression] = STATE(2032), + [sym_object_instantiation_expression] = STATE(2032), + [sym_mutate_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_dot_expression] = STATE(2032), + [sym_typed_expression] = STATE(2032), + [sym_declaration_expression] = STATE(2032), + [sym_do_expression] = STATE(2032), + [sym_list_expression] = STATE(2032), + [sym_array_expression] = STATE(2032), + [sym_begin_end_expression] = STATE(2032), + [sym_paren_expression] = STATE(2032), + [sym_application_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_ce_expression] = STATE(2032), + [sym_sequential_expression] = STATE(2032), + [sym_char] = STATE(2038), + [sym_format_string] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_string] = STATE(2038), + [sym_verbatim_string] = STATE(2038), + [sym_bytearray] = STATE(2038), + [sym_verbatim_bytearray] = STATE(2038), + [sym_format_triple_quoted_string] = STATE(2042), + [sym_triple_quoted_string] = STATE(2038), + [sym_const] = STATE(2032), + [sym_long_identifier] = STATE(2163), + [sym_active_pattern] = STATE(2209), + [sym__identifier_or_op] = STATE(2301), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(822), + [sym_sbyte] = STATE(2038), + [sym_byte] = STATE(2038), + [sym_int16] = STATE(2038), + [sym_uint16] = STATE(2038), + [sym_int32] = STATE(2038), + [sym_uint32] = STATE(2038), + [sym_nativeint] = STATE(2038), + [sym_unativeint] = STATE(2038), + [sym_int64] = STATE(2038), + [sym_uint64] = STATE(2038), + [sym_ieee32] = STATE(2038), + [sym_ieee64] = STATE(2038), + [sym_bignum] = STATE(2038), + [sym_decimal] = STATE(2038), + [sym_float] = STATE(1739), [sym_xml_doc] = STATE(827), [sym_block_comment] = STATE(827), [sym_line_comment] = STATE(827), [sym_compiler_directive_decl] = STATE(827), [sym_fsi_directive_decl] = STATE(827), [sym_preproc_line] = STATE(827), - [aux_sym_long_identifier_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_GT_RBRACK] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_to] = ACTIONS(2935), - [anon_sym_downto] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_end] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_DOT_DOT2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [sym_preproc_if_in_expression] = STATE(2032), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(892), + [anon_sym_return] = ACTIONS(896), + [anon_sym_do] = ACTIONS(898), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_null] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_LBRACK_PIPE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_LT_AT] = ACTIONS(912), + [anon_sym_LT_AT_AT] = ACTIONS(2331), + [anon_sym_LBRACE_PIPE] = ACTIONS(916), + [anon_sym_new] = ACTIONS(918), + [anon_sym_return_BANG] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(896), + [anon_sym_yield_BANG] = ACTIONS(920), + [anon_sym_lazy] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(896), + [anon_sym_upcast] = ACTIONS(896), + [anon_sym_downcast] = ACTIONS(896), + [anon_sym_for] = ACTIONS(924), + [anon_sym_while] = ACTIONS(926), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(928), + [anon_sym_try] = ACTIONS(930), + [anon_sym_match] = ACTIONS(932), + [anon_sym_match_BANG] = ACTIONS(934), + [anon_sym_function] = ACTIONS(936), + [anon_sym_use] = ACTIONS(940), + [anon_sym_use_BANG] = ACTIONS(942), + [anon_sym_do_BANG] = ACTIONS(944), + [anon_sym_begin] = ACTIONS(946), + [aux_sym_char_token1] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_AT_DQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_bool] = ACTIONS(962), + [sym_unit] = ACTIONS(2333), + [anon_sym_LPAREN_PIPE] = ACTIONS(964), + [sym_op_identifier] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(968), + [sym_xint] = ACTIONS(970), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(972), }, [828] = { + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(165), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(828), [sym_block_comment] = STATE(828), [sym_line_comment] = STATE(828), [sym_compiler_directive_decl] = STATE(828), [sym_fsi_directive_decl] = STATE(828), [sym_preproc_line] = STATE(828), - [aux_sym_type_argument_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_GT_RBRACK] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_to] = ACTIONS(2941), - [anon_sym_downto] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_end] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_DOT_DOT2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1108), }, [829] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(891), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(337), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(829), [sym_block_comment] = STATE(829), [sym_line_comment] = STATE(829), [sym_compiler_directive_decl] = STATE(829), [sym_fsi_directive_decl] = STATE(829), [sym_preproc_line] = STATE(829), - [aux_sym__compound_type_repeat1] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_open] = ACTIONS(2790), - [anon_sym_LBRACK_LT] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2792), - [anon_sym_POUNDload] = ACTIONS(2792), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [830] = { - [sym_type_arguments] = STATE(882), - [sym_long_identifier] = STATE(891), + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(336), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(830), [sym_block_comment] = STATE(830), [sym_line_comment] = STATE(830), [sym_compiler_directive_decl] = STATE(830), [sym_fsi_directive_decl] = STATE(830), [sym_preproc_line] = STATE(830), - [aux_sym__compound_type_repeat1] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2907), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2913), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - }, - [831] = { - [sym__else_expression] = STATE(1094), - [sym_elif_expression] = STATE(875), - [sym_xml_doc] = STATE(831), - [sym_block_comment] = STATE(831), - [sym_line_comment] = STATE(831), - [sym_compiler_directive_decl] = STATE(831), - [sym_fsi_directive_decl] = STATE(831), - [sym_preproc_line] = STATE(831), - [aux_sym_if_expression_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_GT_RBRACK] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_to] = ACTIONS(2945), - [anon_sym_downto] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2896), - [anon_sym_elif] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_end] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), - }, - [832] = { - [sym_xml_doc] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_line_comment] = STATE(832), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), + }, + [831] = { + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(147), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), + [sym_xml_doc] = STATE(831), + [sym_block_comment] = STATE(831), + [sym_line_comment] = STATE(831), + [sym_compiler_directive_decl] = STATE(831), + [sym_fsi_directive_decl] = STATE(831), + [sym_preproc_line] = STATE(831), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), + }, + [832] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(305), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), + [sym_xml_doc] = STATE(832), + [sym_block_comment] = STATE(832), + [sym_line_comment] = STATE(832), [sym_compiler_directive_decl] = STATE(832), [sym_fsi_directive_decl] = STATE(832), [sym_preproc_line] = STATE(832), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2852), - [anon_sym_uy] = ACTIONS(2854), - [anon_sym_s] = ACTIONS(2856), - [anon_sym_us] = ACTIONS(2858), - [anon_sym_l] = ACTIONS(2860), - [aux_sym_uint32_token1] = ACTIONS(2862), - [anon_sym_n] = ACTIONS(2864), - [anon_sym_un] = ACTIONS(2866), - [anon_sym_L] = ACTIONS(2868), - [aux_sym_uint64_token1] = ACTIONS(2870), - [anon_sym_lf] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [833] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(162), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(833), [sym_block_comment] = STATE(833), [sym_line_comment] = STATE(833), [sym_compiler_directive_decl] = STATE(833), [sym_fsi_directive_decl] = STATE(833), [sym_preproc_line] = STATE(833), - [aux_sym_long_identifier_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_GT_RBRACK] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_to] = ACTIONS(2953), - [anon_sym_downto] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_end] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_DOT_DOT2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [834] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(331), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(834), [sym_block_comment] = STATE(834), [sym_line_comment] = STATE(834), [sym_compiler_directive_decl] = STATE(834), [sym_fsi_directive_decl] = STATE(834), [sym_preproc_line] = STATE(834), - [aux_sym__compound_type_repeat1] = STATE(834), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_GT_RBRACK] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_to] = ACTIONS(2810), - [anon_sym_downto] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_end] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [835] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(171), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(835), [sym_block_comment] = STATE(835), [sym_line_comment] = STATE(835), [sym_compiler_directive_decl] = STATE(835), [sym_fsi_directive_decl] = STATE(835), [sym_preproc_line] = STATE(835), - [aux_sym_long_identifier_repeat1] = STATE(820), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_GT_RBRACK] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_RBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_to] = ACTIONS(2966), - [anon_sym_downto] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_end] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_DOT_DOT2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [836] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(174), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(836), [sym_block_comment] = STATE(836), [sym_line_comment] = STATE(836), [sym_compiler_directive_decl] = STATE(836), [sym_fsi_directive_decl] = STATE(836), [sym_preproc_line] = STATE(836), - [aux_sym__compound_type_repeat1] = STATE(834), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_GT_RBRACK] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_to] = ACTIONS(2970), - [anon_sym_downto] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_end] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_DOT_DOT2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), }, [837] = { + [sym_function_or_value_defn] = STATE(837), + [sym__expression] = STATE(313), + [sym_literal_expression] = STATE(2159), + [sym_long_identifier_or_op] = STATE(2159), + [sym_tuple_expression] = STATE(2159), + [sym_brace_expression] = STATE(2159), + [sym_anon_record_expression] = STATE(2159), + [sym_prefixed_expression] = STATE(2159), + [sym_typecast_expression] = STATE(2159), + [sym_for_expression] = STATE(2159), + [sym_while_expression] = STATE(2159), + [sym__if_branch] = STATE(7573), + [sym_if_expression] = STATE(2159), + [sym_fun_expression] = STATE(2159), + [sym_try_expression] = STATE(2159), + [sym_match_expression] = STATE(2159), + [sym_function_expression] = STATE(2159), + [sym_object_instantiation_expression] = STATE(2159), + [sym_mutate_expression] = STATE(2159), + [sym_index_expression] = STATE(2159), + [sym_dot_expression] = STATE(2159), + [sym_typed_expression] = STATE(2159), + [sym_declaration_expression] = STATE(2159), + [sym_do_expression] = STATE(2159), + [sym_list_expression] = STATE(2159), + [sym_array_expression] = STATE(2159), + [sym_begin_end_expression] = STATE(2159), + [sym_paren_expression] = STATE(2159), + [sym_application_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_ce_expression] = STATE(2159), + [sym_sequential_expression] = STATE(2159), + [sym_char] = STATE(2179), + [sym_format_string] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_string] = STATE(2179), + [sym_verbatim_string] = STATE(2179), + [sym_bytearray] = STATE(2179), + [sym_verbatim_bytearray] = STATE(2179), + [sym_format_triple_quoted_string] = STATE(2183), + [sym_triple_quoted_string] = STATE(2179), + [sym_const] = STATE(2159), + [sym_long_identifier] = STATE(2063), + [sym_active_pattern] = STATE(2173), + [sym__identifier_or_op] = STATE(2213), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(571), + [sym_sbyte] = STATE(2179), + [sym_byte] = STATE(2179), + [sym_int16] = STATE(2179), + [sym_uint16] = STATE(2179), + [sym_int32] = STATE(2179), + [sym_uint32] = STATE(2179), + [sym_nativeint] = STATE(2179), + [sym_unativeint] = STATE(2179), + [sym_int64] = STATE(2179), + [sym_uint64] = STATE(2179), + [sym_ieee32] = STATE(2179), + [sym_ieee64] = STATE(2179), + [sym_bignum] = STATE(2179), + [sym_decimal] = STATE(2179), + [sym_float] = STATE(1726), [sym_xml_doc] = STATE(837), [sym_block_comment] = STATE(837), [sym_line_comment] = STATE(837), [sym_compiler_directive_decl] = STATE(837), [sym_fsi_directive_decl] = STATE(837), [sym_preproc_line] = STATE(837), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(2820), - [anon_sym_uy] = ACTIONS(2822), - [anon_sym_s] = ACTIONS(2824), - [anon_sym_us] = ACTIONS(2826), - [anon_sym_l] = ACTIONS(2828), - [aux_sym_uint32_token1] = ACTIONS(2830), - [anon_sym_n] = ACTIONS(2832), - [anon_sym_un] = ACTIONS(2834), - [anon_sym_L] = ACTIONS(2836), - [aux_sym_uint64_token1] = ACTIONS(2838), - [anon_sym_lf] = ACTIONS(2974), - [anon_sym_LF] = ACTIONS(2976), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_preproc_if_in_expression] = STATE(2159), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(730), + [anon_sym_return] = ACTIONS(994), + [anon_sym_do] = ACTIONS(736), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_null] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LBRACK_PIPE] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_LT_AT] = ACTIONS(750), + [anon_sym_LT_AT_AT] = ACTIONS(2363), + [anon_sym_LBRACE_PIPE] = ACTIONS(756), + [anon_sym_new] = ACTIONS(998), + [anon_sym_return_BANG] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(994), + [anon_sym_yield_BANG] = ACTIONS(1000), + [anon_sym_lazy] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(994), + [anon_sym_upcast] = ACTIONS(994), + [anon_sym_downcast] = ACTIONS(994), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(766), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(768), + [anon_sym_try] = ACTIONS(770), + [anon_sym_match] = ACTIONS(772), + [anon_sym_match_BANG] = ACTIONS(774), + [anon_sym_function] = ACTIONS(776), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_use_BANG] = ACTIONS(1012), + [anon_sym_do_BANG] = ACTIONS(788), + [anon_sym_begin] = ACTIONS(790), + [aux_sym_char_token1] = ACTIONS(794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_AT_DQUOTE] = ACTIONS(800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_bool] = ACTIONS(806), + [sym_unit] = ACTIONS(2373), + [anon_sym_LPAREN_PIPE] = ACTIONS(808), + [sym_op_identifier] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1014), + [sym_xint] = ACTIONS(814), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(816), }, [838] = { - [sym_type_arguments] = STATE(947), - [sym_long_identifier] = STATE(954), + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(169), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(838), [sym_block_comment] = STATE(838), [sym_line_comment] = STATE(838), [sym_compiler_directive_decl] = STATE(838), [sym_fsi_directive_decl] = STATE(838), [sym_preproc_line] = STATE(838), - [aux_sym__compound_type_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_open] = ACTIONS(2790), - [anon_sym_LBRACK_LT] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2982), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2792), - [anon_sym_POUNDload] = ACTIONS(2792), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [sym__dedent] = ACTIONS(2792), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [839] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(311), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(839), [sym_block_comment] = STATE(839), [sym_line_comment] = STATE(839), [sym_compiler_directive_decl] = STATE(839), [sym_fsi_directive_decl] = STATE(839), [sym_preproc_line] = STATE(839), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_to] = ACTIONS(2924), - [anon_sym_downto] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_end] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [840] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(172), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(840), [sym_block_comment] = STATE(840), [sym_line_comment] = STATE(840), [sym_compiler_directive_decl] = STATE(840), [sym_fsi_directive_decl] = STATE(840), [sym_preproc_line] = STATE(840), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_GT_RBRACK] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_to] = ACTIONS(2986), - [anon_sym_downto] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_end] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), }, [841] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(175), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(841), [sym_block_comment] = STATE(841), [sym_line_comment] = STATE(841), [sym_compiler_directive_decl] = STATE(841), [sym_fsi_directive_decl] = STATE(841), [sym_preproc_line] = STATE(841), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_GT_RBRACK] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_RBRACK] = ACTIONS(2992), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_to] = ACTIONS(2990), - [anon_sym_downto] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_end] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_DOT_DOT2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(2994), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [842] = { - [sym_elif_expression] = STATE(875), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(173), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(842), [sym_block_comment] = STATE(842), [sym_line_comment] = STATE(842), [sym_compiler_directive_decl] = STATE(842), [sym_fsi_directive_decl] = STATE(842), [sym_preproc_line] = STATE(842), - [aux_sym_if_expression_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_GT_RBRACK] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_RBRACK] = ACTIONS(2998), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_to] = ACTIONS(2996), - [anon_sym_downto] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3000), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_end] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_DOT_DOT2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [843] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(316), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(843), [sym_block_comment] = STATE(843), [sym_line_comment] = STATE(843), [sym_compiler_directive_decl] = STATE(843), [sym_fsi_directive_decl] = STATE(843), [sym_preproc_line] = STATE(843), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_GT_RBRACK] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_to] = ACTIONS(3003), - [anon_sym_downto] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_end] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_DOT_DOT2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [844] = { + [sym_function_or_value_defn] = STATE(754), + [sym__expression] = STATE(350), + [sym_literal_expression] = STATE(2379), + [sym_long_identifier_or_op] = STATE(2379), + [sym_tuple_expression] = STATE(2379), + [sym_brace_expression] = STATE(2379), + [sym_anon_record_expression] = STATE(2379), + [sym_prefixed_expression] = STATE(2379), + [sym_typecast_expression] = STATE(2379), + [sym_for_expression] = STATE(2379), + [sym_while_expression] = STATE(2379), + [sym__if_branch] = STATE(7611), + [sym_if_expression] = STATE(2379), + [sym_fun_expression] = STATE(2379), + [sym_try_expression] = STATE(2379), + [sym_match_expression] = STATE(2379), + [sym_function_expression] = STATE(2379), + [sym_object_instantiation_expression] = STATE(2379), + [sym_mutate_expression] = STATE(2379), + [sym_index_expression] = STATE(2379), + [sym_dot_expression] = STATE(2379), + [sym_typed_expression] = STATE(2379), + [sym_declaration_expression] = STATE(2379), + [sym_do_expression] = STATE(2379), + [sym_list_expression] = STATE(2379), + [sym_array_expression] = STATE(2379), + [sym_begin_end_expression] = STATE(2379), + [sym_paren_expression] = STATE(2379), + [sym_application_expression] = STATE(2379), + [sym_infix_expression] = STATE(2379), + [sym_ce_expression] = STATE(2379), + [sym_sequential_expression] = STATE(2379), + [sym_char] = STATE(2429), + [sym_format_string] = STATE(2417), + [sym__string_literal] = STATE(2417), + [sym_string] = STATE(2429), + [sym_verbatim_string] = STATE(2429), + [sym_bytearray] = STATE(2429), + [sym_verbatim_bytearray] = STATE(2429), + [sym_format_triple_quoted_string] = STATE(2416), + [sym_triple_quoted_string] = STATE(2429), + [sym_const] = STATE(2379), + [sym_long_identifier] = STATE(2367), + [sym_active_pattern] = STATE(2717), + [sym__identifier_or_op] = STATE(2582), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(844), + [sym_sbyte] = STATE(2429), + [sym_byte] = STATE(2429), + [sym_int16] = STATE(2429), + [sym_uint16] = STATE(2429), + [sym_int32] = STATE(2429), + [sym_uint32] = STATE(2429), + [sym_nativeint] = STATE(2429), + [sym_unativeint] = STATE(2429), + [sym_int64] = STATE(2429), + [sym_uint64] = STATE(2429), + [sym_ieee32] = STATE(2429), + [sym_ieee64] = STATE(2429), + [sym_bignum] = STATE(2429), + [sym_decimal] = STATE(2429), + [sym_float] = STATE(1853), [sym_xml_doc] = STATE(844), [sym_block_comment] = STATE(844), [sym_line_comment] = STATE(844), [sym_compiler_directive_decl] = STATE(844), [sym_fsi_directive_decl] = STATE(844), [sym_preproc_line] = STATE(844), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_GT_RBRACK] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_to] = ACTIONS(3007), - [anon_sym_downto] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_end] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_DOT_DOT2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [sym_preproc_if_in_expression] = STATE(2379), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_LBRACK_PIPE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LT_AT] = ACTIONS(1134), + [anon_sym_LT_AT_AT] = ACTIONS(2261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1140), + [anon_sym_new] = ACTIONS(1142), + [anon_sym_return_BANG] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1118), + [anon_sym_yield_BANG] = ACTIONS(1144), + [anon_sym_lazy] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1118), + [anon_sym_upcast] = ACTIONS(1118), + [anon_sym_downcast] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_match_BANG] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_use_BANG] = ACTIONS(1170), + [anon_sym_do_BANG] = ACTIONS(1172), + [anon_sym_begin] = ACTIONS(1174), + [aux_sym_char_token1] = ACTIONS(1178), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE] = ACTIONS(1182), + [anon_sym_AT_DQUOTE] = ACTIONS(1184), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1188), + [sym_bool] = ACTIONS(1190), + [sym_unit] = ACTIONS(2263), + [anon_sym_LPAREN_PIPE] = ACTIONS(1192), + [sym_op_identifier] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1196), + [sym_xint] = ACTIONS(1198), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1200), }, [845] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(254), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(845), [sym_block_comment] = STATE(845), [sym_line_comment] = STATE(845), [sym_compiler_directive_decl] = STATE(845), [sym_fsi_directive_decl] = STATE(845), [sym_preproc_line] = STATE(845), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_GT_RBRACK] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_to] = ACTIONS(2986), - [anon_sym_downto] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_end] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [846] = { + [sym_function_or_value_defn] = STATE(678), + [sym__expression] = STATE(176), + [sym_literal_expression] = STATE(1992), + [sym_long_identifier_or_op] = STATE(1992), + [sym_tuple_expression] = STATE(1992), + [sym_brace_expression] = STATE(1992), + [sym_anon_record_expression] = STATE(1992), + [sym_prefixed_expression] = STATE(1992), + [sym_typecast_expression] = STATE(1992), + [sym_for_expression] = STATE(1992), + [sym_while_expression] = STATE(1992), + [sym__if_branch] = STATE(7271), + [sym_if_expression] = STATE(1992), + [sym_fun_expression] = STATE(1992), + [sym_try_expression] = STATE(1992), + [sym_match_expression] = STATE(1992), + [sym_function_expression] = STATE(1992), + [sym_object_instantiation_expression] = STATE(1992), + [sym_mutate_expression] = STATE(1992), + [sym_index_expression] = STATE(1992), + [sym_dot_expression] = STATE(1992), + [sym_typed_expression] = STATE(1992), + [sym_declaration_expression] = STATE(1992), + [sym_do_expression] = STATE(1992), + [sym_list_expression] = STATE(1992), + [sym_array_expression] = STATE(1992), + [sym_begin_end_expression] = STATE(1992), + [sym_paren_expression] = STATE(1992), + [sym_application_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_ce_expression] = STATE(1992), + [sym_sequential_expression] = STATE(1992), + [sym_char] = STATE(1850), + [sym_format_string] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_string] = STATE(1850), + [sym_verbatim_string] = STATE(1850), + [sym_bytearray] = STATE(1850), + [sym_verbatim_bytearray] = STATE(1850), + [sym_format_triple_quoted_string] = STATE(1847), + [sym_triple_quoted_string] = STATE(1850), + [sym_const] = STATE(1992), + [sym_long_identifier] = STATE(1846), + [sym_active_pattern] = STATE(1849), + [sym__identifier_or_op] = STATE(1906), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(806), + [sym_sbyte] = STATE(1850), + [sym_byte] = STATE(1850), + [sym_int16] = STATE(1850), + [sym_uint16] = STATE(1850), + [sym_int32] = STATE(1850), + [sym_uint32] = STATE(1850), + [sym_nativeint] = STATE(1850), + [sym_unativeint] = STATE(1850), + [sym_int64] = STATE(1850), + [sym_uint64] = STATE(1850), + [sym_ieee32] = STATE(1850), + [sym_ieee64] = STATE(1850), + [sym_bignum] = STATE(1850), + [sym_decimal] = STATE(1850), + [sym_float] = STATE(1497), [sym_xml_doc] = STATE(846), [sym_block_comment] = STATE(846), [sym_line_comment] = STATE(846), [sym_compiler_directive_decl] = STATE(846), [sym_fsi_directive_decl] = STATE(846), [sym_preproc_line] = STATE(846), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_GT_RBRACK] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_to] = ACTIONS(2917), - [anon_sym_downto] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_end] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_DOT_DOT2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_preproc_if_in_expression] = STATE(1992), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(594), + [anon_sym_return] = ACTIONS(688), + [anon_sym_do] = ACTIONS(600), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_null] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_LBRACK_PIPE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LT_AT] = ACTIONS(614), + [anon_sym_LT_AT_AT] = ACTIONS(2273), + [anon_sym_LBRACE_PIPE] = ACTIONS(620), + [anon_sym_new] = ACTIONS(692), + [anon_sym_return_BANG] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_yield_BANG] = ACTIONS(694), + [anon_sym_lazy] = ACTIONS(688), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_upcast] = ACTIONS(688), + [anon_sym_downcast] = ACTIONS(688), + [anon_sym_for] = ACTIONS(696), + [anon_sym_while] = ACTIONS(630), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(632), + [anon_sym_try] = ACTIONS(634), + [anon_sym_match] = ACTIONS(636), + [anon_sym_match_BANG] = ACTIONS(638), + [anon_sym_function] = ACTIONS(640), + [anon_sym_use] = ACTIONS(700), + [anon_sym_use_BANG] = ACTIONS(702), + [anon_sym_do_BANG] = ACTIONS(652), + [anon_sym_begin] = ACTIONS(654), + [aux_sym_char_token1] = ACTIONS(660), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_DQUOTE] = ACTIONS(666), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_bool] = ACTIONS(672), + [sym_unit] = ACTIONS(2281), + [anon_sym_LPAREN_PIPE] = ACTIONS(674), + [sym_op_identifier] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(704), + [sym_xint] = ACTIONS(680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(682), }, [847] = { - [sym_type_arguments] = STATE(947), - [sym_long_identifier] = STATE(954), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(384), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(847), [sym_block_comment] = STATE(847), [sym_line_comment] = STATE(847), [sym_compiler_directive_decl] = STATE(847), [sym_fsi_directive_decl] = STATE(847), [sym_preproc_line] = STATE(847), - [aux_sym__compound_type_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(3011), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2982), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [848] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(260), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(848), [sym_block_comment] = STATE(848), [sym_line_comment] = STATE(848), [sym_compiler_directive_decl] = STATE(848), [sym_fsi_directive_decl] = STATE(848), [sym_preproc_line] = STATE(848), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_GT_RBRACK] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_to] = ACTIONS(3013), - [anon_sym_downto] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_end] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_DOT_DOT2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [849] = { + [sym_function_or_value_defn] = STATE(803), + [sym__expression] = STATE(261), + [sym_literal_expression] = STATE(2372), + [sym_long_identifier_or_op] = STATE(2372), + [sym_tuple_expression] = STATE(2372), + [sym_brace_expression] = STATE(2372), + [sym_anon_record_expression] = STATE(2372), + [sym_prefixed_expression] = STATE(2372), + [sym_typecast_expression] = STATE(2372), + [sym_for_expression] = STATE(2372), + [sym_while_expression] = STATE(2372), + [sym__if_branch] = STATE(7237), + [sym_if_expression] = STATE(2372), + [sym_fun_expression] = STATE(2372), + [sym_try_expression] = STATE(2372), + [sym_match_expression] = STATE(2372), + [sym_function_expression] = STATE(2372), + [sym_object_instantiation_expression] = STATE(2372), + [sym_mutate_expression] = STATE(2372), + [sym_index_expression] = STATE(2372), + [sym_dot_expression] = STATE(2372), + [sym_typed_expression] = STATE(2372), + [sym_declaration_expression] = STATE(2372), + [sym_do_expression] = STATE(2372), + [sym_list_expression] = STATE(2372), + [sym_array_expression] = STATE(2372), + [sym_begin_end_expression] = STATE(2372), + [sym_paren_expression] = STATE(2372), + [sym_application_expression] = STATE(2372), + [sym_infix_expression] = STATE(2372), + [sym_ce_expression] = STATE(2372), + [sym_sequential_expression] = STATE(2372), + [sym_char] = STATE(2456), + [sym_format_string] = STATE(2459), + [sym__string_literal] = STATE(2459), + [sym_string] = STATE(2456), + [sym_verbatim_string] = STATE(2456), + [sym_bytearray] = STATE(2456), + [sym_verbatim_bytearray] = STATE(2456), + [sym_format_triple_quoted_string] = STATE(2460), + [sym_triple_quoted_string] = STATE(2456), + [sym_const] = STATE(2372), + [sym_long_identifier] = STATE(2461), + [sym_active_pattern] = STATE(2457), + [sym__identifier_or_op] = STATE(2374), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(685), + [sym_sbyte] = STATE(2456), + [sym_byte] = STATE(2456), + [sym_int16] = STATE(2456), + [sym_uint16] = STATE(2456), + [sym_int32] = STATE(2456), + [sym_uint32] = STATE(2456), + [sym_nativeint] = STATE(2456), + [sym_unativeint] = STATE(2456), + [sym_int64] = STATE(2456), + [sym_uint64] = STATE(2456), + [sym_ieee32] = STATE(2456), + [sym_ieee64] = STATE(2456), + [sym_bignum] = STATE(2456), + [sym_decimal] = STATE(2456), + [sym_float] = STATE(1830), [sym_xml_doc] = STATE(849), [sym_block_comment] = STATE(849), [sym_line_comment] = STATE(849), [sym_compiler_directive_decl] = STATE(849), [sym_fsi_directive_decl] = STATE(849), [sym_preproc_line] = STATE(849), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_GT_RBRACK] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_to] = ACTIONS(3017), - [anon_sym_downto] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_end] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_DOT_DOT2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [sym_preproc_if_in_expression] = STATE(2372), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_null] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK_PIPE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LT_AT] = ACTIONS(1326), + [anon_sym_LT_AT_AT] = ACTIONS(2423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1332), + [anon_sym_new] = ACTIONS(1334), + [anon_sym_return_BANG] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_yield_BANG] = ACTIONS(1336), + [anon_sym_lazy] = ACTIONS(1310), + [anon_sym_assert] = ACTIONS(1310), + [anon_sym_upcast] = ACTIONS(1310), + [anon_sym_downcast] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1344), + [anon_sym_try] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_match_BANG] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_use_BANG] = ACTIONS(1362), + [anon_sym_do_BANG] = ACTIONS(1364), + [anon_sym_begin] = ACTIONS(1366), + [aux_sym_char_token1] = ACTIONS(1370), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_AT_DQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1380), + [sym_bool] = ACTIONS(1382), + [sym_unit] = ACTIONS(2425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1384), + [sym_op_identifier] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1388), + [sym_xint] = ACTIONS(1390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1392), }, [850] = { + [sym_function_or_value_defn] = STATE(794), + [sym__expression] = STATE(269), + [sym_literal_expression] = STATE(2766), + [sym_long_identifier_or_op] = STATE(2766), + [sym_tuple_expression] = STATE(2766), + [sym_brace_expression] = STATE(2766), + [sym_anon_record_expression] = STATE(2766), + [sym_prefixed_expression] = STATE(2766), + [sym_typecast_expression] = STATE(2766), + [sym_for_expression] = STATE(2766), + [sym_while_expression] = STATE(2766), + [sym__if_branch] = STATE(7444), + [sym_if_expression] = STATE(2766), + [sym_fun_expression] = STATE(2766), + [sym_try_expression] = STATE(2766), + [sym_match_expression] = STATE(2766), + [sym_function_expression] = STATE(2766), + [sym_object_instantiation_expression] = STATE(2766), + [sym_mutate_expression] = STATE(2766), + [sym_index_expression] = STATE(2766), + [sym_dot_expression] = STATE(2766), + [sym_typed_expression] = STATE(2766), + [sym_declaration_expression] = STATE(2766), + [sym_do_expression] = STATE(2766), + [sym_list_expression] = STATE(2766), + [sym_array_expression] = STATE(2766), + [sym_begin_end_expression] = STATE(2766), + [sym_paren_expression] = STATE(2766), + [sym_application_expression] = STATE(2766), + [sym_infix_expression] = STATE(2766), + [sym_ce_expression] = STATE(2766), + [sym_sequential_expression] = STATE(2766), + [sym_char] = STATE(2364), + [sym_format_string] = STATE(2373), + [sym__string_literal] = STATE(2373), + [sym_string] = STATE(2364), + [sym_verbatim_string] = STATE(2364), + [sym_bytearray] = STATE(2364), + [sym_verbatim_bytearray] = STATE(2364), + [sym_format_triple_quoted_string] = STATE(2360), + [sym_triple_quoted_string] = STATE(2364), + [sym_const] = STATE(2766), + [sym_long_identifier] = STATE(2353), + [sym_active_pattern] = STATE(2363), + [sym__identifier_or_op] = STATE(2484), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(796), + [sym_sbyte] = STATE(2364), + [sym_byte] = STATE(2364), + [sym_int16] = STATE(2364), + [sym_uint16] = STATE(2364), + [sym_int32] = STATE(2364), + [sym_uint32] = STATE(2364), + [sym_nativeint] = STATE(2364), + [sym_unativeint] = STATE(2364), + [sym_int64] = STATE(2364), + [sym_uint64] = STATE(2364), + [sym_ieee32] = STATE(2364), + [sym_ieee64] = STATE(2364), + [sym_bignum] = STATE(2364), + [sym_decimal] = STATE(2364), + [sym_float] = STATE(1875), [sym_xml_doc] = STATE(850), [sym_block_comment] = STATE(850), [sym_line_comment] = STATE(850), [sym_compiler_directive_decl] = STATE(850), [sym_fsi_directive_decl] = STATE(850), [sym_preproc_line] = STATE(850), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_GT_RBRACK] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_to] = ACTIONS(3021), - [anon_sym_downto] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_end] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_DOT_DOT2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [sym_preproc_if_in_expression] = STATE(2766), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_LBRACK_PIPE] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LT_AT] = ACTIONS(1224), + [anon_sym_LT_AT_AT] = ACTIONS(2407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_return_BANG] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_yield_BANG] = ACTIONS(1234), + [anon_sym_lazy] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1208), + [anon_sym_upcast] = ACTIONS(1208), + [anon_sym_downcast] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_match_BANG] = ACTIONS(1248), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_use_BANG] = ACTIONS(1260), + [anon_sym_do_BANG] = ACTIONS(1262), + [anon_sym_begin] = ACTIONS(1264), + [aux_sym_char_token1] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1272), + [anon_sym_AT_DQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1278), + [sym_bool] = ACTIONS(1280), + [sym_unit] = ACTIONS(2409), + [anon_sym_LPAREN_PIPE] = ACTIONS(1282), + [sym_op_identifier] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1286), + [sym_xint] = ACTIONS(1288), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1290), }, [851] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(24), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(851), [sym_block_comment] = STATE(851), [sym_line_comment] = STATE(851), [sym_compiler_directive_decl] = STATE(851), [sym_fsi_directive_decl] = STATE(851), [sym_preproc_line] = STATE(851), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_GT_RBRACK] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_to] = ACTIONS(3025), - [anon_sym_downto] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_end] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_DOT_DOT2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(291), }, [852] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(2), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(852), [sym_block_comment] = STATE(852), [sym_line_comment] = STATE(852), [sym_compiler_directive_decl] = STATE(852), [sym_fsi_directive_decl] = STATE(852), [sym_preproc_line] = STATE(852), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2902), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_to] = ACTIONS(2900), - [anon_sym_downto] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [853] = { - [sym_type_arguments] = STATE(947), - [sym_long_identifier] = STATE(954), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(69), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(853), [sym_block_comment] = STATE(853), [sym_line_comment] = STATE(853), [sym_compiler_directive_decl] = STATE(853), [sym_fsi_directive_decl] = STATE(853), [sym_preproc_line] = STATE(853), - [aux_sym__compound_type_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(3011), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2982), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [854] = { + [sym_function_or_value_defn] = STATE(780), + [sym__expression] = STATE(17), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(854), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(854), [sym_block_comment] = STATE(854), [sym_line_comment] = STATE(854), [sym_compiler_directive_decl] = STATE(854), [sym_fsi_directive_decl] = STATE(854), [sym_preproc_line] = STATE(854), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_GT_RBRACK] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_to] = ACTIONS(3029), - [anon_sym_downto] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_end] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_DOT_DOT2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(271), + [anon_sym_return_BANG] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(263), + [anon_sym_yield_BANG] = ACTIONS(273), + [anon_sym_lazy] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(263), + [anon_sym_upcast] = ACTIONS(263), + [anon_sym_downcast] = ACTIONS(263), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(279), + [anon_sym_use_BANG] = ACTIONS(281), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(287), + [sym_xint] = ACTIONS(289), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(291), }, [855] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(84), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(855), [sym_block_comment] = STATE(855), [sym_line_comment] = STATE(855), [sym_compiler_directive_decl] = STATE(855), [sym_fsi_directive_decl] = STATE(855), [sym_preproc_line] = STATE(855), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_GT_RBRACK] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_to] = ACTIONS(3037), - [anon_sym_downto] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_end] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [856] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(9), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(856), [sym_block_comment] = STATE(856), [sym_line_comment] = STATE(856), [sym_compiler_directive_decl] = STATE(856), [sym_fsi_directive_decl] = STATE(856), [sym_preproc_line] = STATE(856), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_GT_RBRACK] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_to] = ACTIONS(3033), - [anon_sym_downto] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_end] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_DOT_DOT2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [857] = { - [sym_type_arguments] = STATE(947), - [sym_long_identifier] = STATE(954), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(385), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(857), [sym_block_comment] = STATE(857), [sym_line_comment] = STATE(857), [sym_compiler_directive_decl] = STATE(857), [sym_fsi_directive_decl] = STATE(857), [sym_preproc_line] = STATE(857), - [aux_sym__compound_type_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(3011), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2982), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [858] = { + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(150), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(858), [sym_block_comment] = STATE(858), [sym_line_comment] = STATE(858), [sym_compiler_directive_decl] = STATE(858), [sym_fsi_directive_decl] = STATE(858), [sym_preproc_line] = STATE(858), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_GT_RBRACK] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_to] = ACTIONS(3043), - [anon_sym_downto] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_end] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_DOT_DOT2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1108), }, [859] = { - [sym_type_arguments] = STATE(947), - [sym_long_identifier] = STATE(954), + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(319), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(859), [sym_block_comment] = STATE(859), [sym_line_comment] = STATE(859), [sym_compiler_directive_decl] = STATE(859), [sym_fsi_directive_decl] = STATE(859), [sym_preproc_line] = STATE(859), - [aux_sym__compound_type_repeat1] = STATE(881), - [sym_identifier] = ACTIONS(3011), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2978), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2982), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [860] = { + [sym_function_or_value_defn] = STATE(858), + [sym__expression] = STATE(210), + [sym_literal_expression] = STATE(2388), + [sym_long_identifier_or_op] = STATE(2388), + [sym_tuple_expression] = STATE(2388), + [sym_brace_expression] = STATE(2388), + [sym_anon_record_expression] = STATE(2388), + [sym_prefixed_expression] = STATE(2388), + [sym_typecast_expression] = STATE(2388), + [sym_for_expression] = STATE(2388), + [sym_while_expression] = STATE(2388), + [sym__if_branch] = STATE(7331), + [sym_if_expression] = STATE(2388), + [sym_fun_expression] = STATE(2388), + [sym_try_expression] = STATE(2388), + [sym_match_expression] = STATE(2388), + [sym_function_expression] = STATE(2388), + [sym_object_instantiation_expression] = STATE(2388), + [sym_mutate_expression] = STATE(2388), + [sym_index_expression] = STATE(2388), + [sym_dot_expression] = STATE(2388), + [sym_typed_expression] = STATE(2388), + [sym_declaration_expression] = STATE(2388), + [sym_do_expression] = STATE(2388), + [sym_list_expression] = STATE(2388), + [sym_array_expression] = STATE(2388), + [sym_begin_end_expression] = STATE(2388), + [sym_paren_expression] = STATE(2388), + [sym_application_expression] = STATE(2388), + [sym_infix_expression] = STATE(2388), + [sym_ce_expression] = STATE(2388), + [sym_sequential_expression] = STATE(2388), + [sym_char] = STATE(2350), + [sym_format_string] = STATE(2357), + [sym__string_literal] = STATE(2357), + [sym_string] = STATE(2350), + [sym_verbatim_string] = STATE(2350), + [sym_bytearray] = STATE(2350), + [sym_verbatim_bytearray] = STATE(2350), + [sym_format_triple_quoted_string] = STATE(2365), + [sym_triple_quoted_string] = STATE(2350), + [sym_const] = STATE(2388), + [sym_long_identifier] = STATE(2769), + [sym_active_pattern] = STATE(2640), + [sym__identifier_or_op] = STATE(2767), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(860), + [sym_sbyte] = STATE(2350), + [sym_byte] = STATE(2350), + [sym_int16] = STATE(2350), + [sym_uint16] = STATE(2350), + [sym_int32] = STATE(2350), + [sym_uint32] = STATE(2350), + [sym_nativeint] = STATE(2350), + [sym_unativeint] = STATE(2350), + [sym_int64] = STATE(2350), + [sym_uint64] = STATE(2350), + [sym_ieee32] = STATE(2350), + [sym_ieee64] = STATE(2350), + [sym_bignum] = STATE(2350), + [sym_decimal] = STATE(2350), + [sym_float] = STATE(1862), [sym_xml_doc] = STATE(860), [sym_block_comment] = STATE(860), [sym_line_comment] = STATE(860), [sym_compiler_directive_decl] = STATE(860), [sym_fsi_directive_decl] = STATE(860), [sym_preproc_line] = STATE(860), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_GT_RBRACK] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_to] = ACTIONS(3047), - [anon_sym_downto] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_end] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_DOT_DOT2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [sym_preproc_if_in_expression] = STATE(2388), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LBRACK_PIPE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_LT_AT] = ACTIONS(1042), + [anon_sym_LT_AT_AT] = ACTIONS(2391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_return_BANG] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1026), + [anon_sym_yield_BANG] = ACTIONS(1052), + [anon_sym_lazy] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1026), + [anon_sym_upcast] = ACTIONS(1026), + [anon_sym_downcast] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_match_BANG] = ACTIONS(1066), + [anon_sym_function] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_use_BANG] = ACTIONS(1078), + [anon_sym_do_BANG] = ACTIONS(1080), + [anon_sym_begin] = ACTIONS(1082), + [aux_sym_char_token1] = ACTIONS(1086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1090), + [anon_sym_AT_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1096), + [sym_bool] = ACTIONS(1098), + [sym_unit] = ACTIONS(2393), + [anon_sym_LPAREN_PIPE] = ACTIONS(1100), + [sym_op_identifier] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(1104), + [sym_xint] = ACTIONS(1106), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(1108), }, [861] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(10), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(861), [sym_block_comment] = STATE(861), [sym_line_comment] = STATE(861), [sym_compiler_directive_decl] = STATE(861), [sym_fsi_directive_decl] = STATE(861), [sym_preproc_line] = STATE(861), - [aux_sym_long_identifier_repeat1] = STATE(867), - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [862] = { + [sym_function_or_value_defn] = STATE(788), + [sym__expression] = STATE(25), + [sym_literal_expression] = STATE(1318), + [sym_long_identifier_or_op] = STATE(1318), + [sym_tuple_expression] = STATE(1318), + [sym_brace_expression] = STATE(1318), + [sym_anon_record_expression] = STATE(1318), + [sym_prefixed_expression] = STATE(1318), + [sym_typecast_expression] = STATE(1318), + [sym_for_expression] = STATE(1318), + [sym_while_expression] = STATE(1318), + [sym__if_branch] = STATE(8374), + [sym_if_expression] = STATE(1318), + [sym_fun_expression] = STATE(1318), + [sym_try_expression] = STATE(1318), + [sym_match_expression] = STATE(1318), + [sym_function_expression] = STATE(1318), + [sym_object_instantiation_expression] = STATE(1318), + [sym_mutate_expression] = STATE(1318), + [sym_index_expression] = STATE(1318), + [sym_dot_expression] = STATE(1318), + [sym_typed_expression] = STATE(1318), + [sym_declaration_expression] = STATE(1318), + [sym_do_expression] = STATE(1318), + [sym_list_expression] = STATE(1318), + [sym_array_expression] = STATE(1318), + [sym_begin_end_expression] = STATE(1318), + [sym_paren_expression] = STATE(1318), + [sym_application_expression] = STATE(1318), + [sym_infix_expression] = STATE(1318), + [sym_ce_expression] = STATE(1318), + [sym_sequential_expression] = STATE(1318), + [sym_char] = STATE(1283), + [sym_format_string] = STATE(1367), + [sym__string_literal] = STATE(1367), + [sym_string] = STATE(1283), + [sym_verbatim_string] = STATE(1283), + [sym_bytearray] = STATE(1283), + [sym_verbatim_bytearray] = STATE(1283), + [sym_format_triple_quoted_string] = STATE(1276), + [sym_triple_quoted_string] = STATE(1283), + [sym_const] = STATE(1318), + [sym_long_identifier] = STATE(1371), + [sym_active_pattern] = STATE(1300), + [sym__identifier_or_op] = STATE(1380), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(790), + [sym_sbyte] = STATE(1283), + [sym_byte] = STATE(1283), + [sym_int16] = STATE(1283), + [sym_uint16] = STATE(1283), + [sym_int32] = STATE(1283), + [sym_uint32] = STATE(1283), + [sym_nativeint] = STATE(1283), + [sym_unativeint] = STATE(1283), + [sym_int64] = STATE(1283), + [sym_uint64] = STATE(1283), + [sym_ieee32] = STATE(1283), + [sym_ieee64] = STATE(1283), + [sym_bignum] = STATE(1283), + [sym_decimal] = STATE(1283), + [sym_float] = STATE(1084), [sym_xml_doc] = STATE(862), [sym_block_comment] = STATE(862), [sym_line_comment] = STATE(862), [sym_compiler_directive_decl] = STATE(862), [sym_fsi_directive_decl] = STATE(862), [sym_preproc_line] = STATE(862), - [aux_sym_type_argument_repeat1] = STATE(871), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3053), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_preproc_if_in_expression] = STATE(1318), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(17), + [anon_sym_return] = ACTIONS(27), + [anon_sym_do] = ACTIONS(265), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_null] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_LBRACK_PIPE] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_LT_AT] = ACTIONS(49), + [anon_sym_LT_AT_AT] = ACTIONS(51), + [anon_sym_LBRACE_PIPE] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_return_BANG] = ACTIONS(57), + [anon_sym_yield] = ACTIONS(27), + [anon_sym_yield_BANG] = ACTIONS(57), + [anon_sym_lazy] = ACTIONS(27), + [anon_sym_assert] = ACTIONS(27), + [anon_sym_upcast] = ACTIONS(27), + [anon_sym_downcast] = ACTIONS(27), + [anon_sym_for] = ACTIONS(59), + [anon_sym_while] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_match_BANG] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_use] = ACTIONS(75), + [anon_sym_use_BANG] = ACTIONS(77), + [anon_sym_do_BANG] = ACTIONS(79), + [anon_sym_begin] = ACTIONS(81), + [aux_sym_char_token1] = ACTIONS(83), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(87), + [anon_sym_AT_DQUOTE] = ACTIONS(89), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(93), + [sym_bool] = ACTIONS(95), + [sym_unit] = ACTIONS(97), + [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [sym_op_identifier] = ACTIONS(101), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(109), + [sym_xint] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(291), }, [863] = { + [sym_function_or_value_defn] = STATE(786), + [sym__expression] = STATE(375), + [sym_literal_expression] = STATE(1141), + [sym_long_identifier_or_op] = STATE(1141), + [sym_tuple_expression] = STATE(1141), + [sym_brace_expression] = STATE(1141), + [sym_anon_record_expression] = STATE(1141), + [sym_prefixed_expression] = STATE(1141), + [sym_typecast_expression] = STATE(1141), + [sym_for_expression] = STATE(1141), + [sym_while_expression] = STATE(1141), + [sym__if_branch] = STATE(7197), + [sym_if_expression] = STATE(1141), + [sym_fun_expression] = STATE(1141), + [sym_try_expression] = STATE(1141), + [sym_match_expression] = STATE(1141), + [sym_function_expression] = STATE(1141), + [sym_object_instantiation_expression] = STATE(1141), + [sym_mutate_expression] = STATE(1141), + [sym_index_expression] = STATE(1141), + [sym_dot_expression] = STATE(1141), + [sym_typed_expression] = STATE(1141), + [sym_declaration_expression] = STATE(1141), + [sym_do_expression] = STATE(1141), + [sym_list_expression] = STATE(1141), + [sym_array_expression] = STATE(1141), + [sym_begin_end_expression] = STATE(1141), + [sym_paren_expression] = STATE(1141), + [sym_application_expression] = STATE(1141), + [sym_infix_expression] = STATE(1141), + [sym_ce_expression] = STATE(1141), + [sym_sequential_expression] = STATE(1141), + [sym_char] = STATE(1126), + [sym_format_string] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_string] = STATE(1126), + [sym_verbatim_string] = STATE(1126), + [sym_bytearray] = STATE(1126), + [sym_verbatim_bytearray] = STATE(1126), + [sym_format_triple_quoted_string] = STATE(1121), + [sym_triple_quoted_string] = STATE(1126), + [sym_const] = STATE(1141), + [sym_long_identifier] = STATE(1064), + [sym_active_pattern] = STATE(1058), + [sym__identifier_or_op] = STATE(1120), + [sym__infix_or_prefix_op] = STATE(3539), + [sym_prefix_op] = STATE(753), + [sym_sbyte] = STATE(1126), + [sym_byte] = STATE(1126), + [sym_int16] = STATE(1126), + [sym_uint16] = STATE(1126), + [sym_int32] = STATE(1126), + [sym_uint32] = STATE(1126), + [sym_nativeint] = STATE(1126), + [sym_unativeint] = STATE(1126), + [sym_int64] = STATE(1126), + [sym_uint64] = STATE(1126), + [sym_ieee32] = STATE(1126), + [sym_ieee64] = STATE(1126), + [sym_bignum] = STATE(1126), + [sym_decimal] = STATE(1126), + [sym_float] = STATE(966), [sym_xml_doc] = STATE(863), [sym_block_comment] = STATE(863), [sym_line_comment] = STATE(863), [sym_compiler_directive_decl] = STATE(863), [sym_fsi_directive_decl] = STATE(863), [sym_preproc_line] = STATE(863), - [aux_sym_long_identifier_repeat1] = STATE(861), - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_module] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_LBRACK_LT] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2956), - [anon_sym_POUNDload] = ACTIONS(2956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_preproc_if_in_expression] = STATE(1141), + [aux_sym_prefix_op_repeat1] = STATE(3527), + [sym_identifier] = ACTIONS(119), + [anon_sym_return] = ACTIONS(127), + [anon_sym_do] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_let_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_null] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_LBRACK_PIPE] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_LT_AT] = ACTIONS(149), + [anon_sym_LT_AT_AT] = ACTIONS(2293), + [anon_sym_LBRACE_PIPE] = ACTIONS(155), + [anon_sym_new] = ACTIONS(157), + [anon_sym_return_BANG] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(127), + [anon_sym_yield_BANG] = ACTIONS(159), + [anon_sym_lazy] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_upcast] = ACTIONS(127), + [anon_sym_downcast] = ACTIONS(127), + [anon_sym_for] = ACTIONS(163), + [anon_sym_while] = ACTIONS(165), + [anon_sym_if] = ACTIONS(63), + [anon_sym_fun] = ACTIONS(167), + [anon_sym_try] = ACTIONS(169), + [anon_sym_match] = ACTIONS(171), + [anon_sym_match_BANG] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_use] = ACTIONS(183), + [anon_sym_use_BANG] = ACTIONS(185), + [anon_sym_do_BANG] = ACTIONS(187), + [anon_sym_begin] = ACTIONS(189), + [aux_sym_char_token1] = ACTIONS(193), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_AT_DQUOTE] = ACTIONS(199), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(203), + [sym_bool] = ACTIONS(205), + [sym_unit] = ACTIONS(2303), + [anon_sym_LPAREN_PIPE] = ACTIONS(207), + [sym_op_identifier] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(41), + [anon_sym_PLUS_DOT] = ACTIONS(103), + [anon_sym_DASH_DOT] = ACTIONS(103), + [anon_sym_PERCENT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [aux_sym_prefix_op_token1] = ACTIONS(107), + [sym_int] = ACTIONS(213), + [sym_xint] = ACTIONS(215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(217), }, [864] = { [sym_xml_doc] = STATE(864), @@ -155553,102 +161132,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(864), [sym_fsi_directive_decl] = STATE(864), [sym_preproc_line] = STATE(864), - [aux_sym_long_identifier_repeat1] = STATE(861), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_GT_RBRACK] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_to] = ACTIONS(2768), + [anon_sym_downto] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_end] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2772), + [anon_sym_uy] = ACTIONS(2774), + [anon_sym_s] = ACTIONS(2776), + [anon_sym_us] = ACTIONS(2778), + [anon_sym_l] = ACTIONS(2780), + [aux_sym_uint32_token1] = ACTIONS(2782), + [anon_sym_n] = ACTIONS(2784), + [anon_sym_un] = ACTIONS(2786), + [anon_sym_L] = ACTIONS(2788), + [aux_sym_uint64_token1] = ACTIONS(2790), + [aux_sym_bignum_token1] = ACTIONS(2792), + [aux_sym_decimal_token1] = ACTIONS(2794), + [anon_sym_DOT2] = ACTIONS(2796), + [aux_sym_float_token1] = ACTIONS(2798), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [865] = { [sym_xml_doc] = STATE(865), @@ -155657,206 +161244,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(865), [sym_fsi_directive_decl] = STATE(865), [sym_preproc_line] = STATE(865), - [aux_sym_type_argument_repeat1] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3060), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2800), + [anon_sym_uy] = ACTIONS(2802), + [anon_sym_s] = ACTIONS(2804), + [anon_sym_us] = ACTIONS(2806), + [anon_sym_l] = ACTIONS(2808), + [aux_sym_uint32_token1] = ACTIONS(2810), + [anon_sym_n] = ACTIONS(2812), + [anon_sym_un] = ACTIONS(2814), + [anon_sym_L] = ACTIONS(2816), + [aux_sym_uint64_token1] = ACTIONS(2818), + [aux_sym_bignum_token1] = ACTIONS(2820), + [aux_sym_decimal_token1] = ACTIONS(2822), + [anon_sym_DOT2] = ACTIONS(2824), + [aux_sym_float_token1] = ACTIONS(2826), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [866] = { - [sym__else_expression] = STATE(1226), - [sym_elif_expression] = STATE(1078), [sym_xml_doc] = STATE(866), [sym_block_comment] = STATE(866), [sym_line_comment] = STATE(866), [sym_compiler_directive_decl] = STATE(866), [sym_fsi_directive_decl] = STATE(866), [sym_preproc_line] = STATE(866), - [aux_sym_if_expression_repeat1] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_module] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_open] = ACTIONS(2945), - [anon_sym_LBRACK_LT] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_type] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_elif] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2947), - [anon_sym_POUNDload] = ACTIONS(2947), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_GT_RBRACK] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_to] = ACTIONS(2768), + [anon_sym_downto] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_end] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2772), + [anon_sym_uy] = ACTIONS(2774), + [anon_sym_s] = ACTIONS(2776), + [anon_sym_us] = ACTIONS(2778), + [anon_sym_l] = ACTIONS(2780), + [aux_sym_uint32_token1] = ACTIONS(2782), + [anon_sym_n] = ACTIONS(2784), + [anon_sym_un] = ACTIONS(2786), + [anon_sym_L] = ACTIONS(2788), + [aux_sym_uint64_token1] = ACTIONS(2790), + [anon_sym_lf] = ACTIONS(2828), + [anon_sym_LF] = ACTIONS(2830), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [867] = { [sym_xml_doc] = STATE(867), @@ -155865,102 +161466,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(867), [sym_fsi_directive_decl] = STATE(867), [sym_preproc_line] = STATE(867), - [aux_sym_long_identifier_repeat1] = STATE(867), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2832), + [anon_sym_uy] = ACTIONS(2834), + [anon_sym_s] = ACTIONS(2836), + [anon_sym_us] = ACTIONS(2838), + [anon_sym_l] = ACTIONS(2840), + [aux_sym_uint32_token1] = ACTIONS(2842), + [anon_sym_n] = ACTIONS(2844), + [anon_sym_un] = ACTIONS(2846), + [anon_sym_L] = ACTIONS(2848), + [aux_sym_uint64_token1] = ACTIONS(2850), + [aux_sym_bignum_token1] = ACTIONS(2852), + [aux_sym_decimal_token1] = ACTIONS(2854), + [anon_sym_DOT2] = ACTIONS(2856), + [aux_sym_float_token1] = ACTIONS(2858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [868] = { [sym_xml_doc] = STATE(868), @@ -155969,102 +161576,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(868), [sym_fsi_directive_decl] = STATE(868), [sym_preproc_line] = STATE(868), - [aux_sym__compound_type_repeat1] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_open] = ACTIONS(2970), - [anon_sym_LBRACK_LT] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2972), - [anon_sym_POUNDload] = ACTIONS(2972), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2800), + [anon_sym_uy] = ACTIONS(2802), + [anon_sym_s] = ACTIONS(2804), + [anon_sym_us] = ACTIONS(2806), + [anon_sym_l] = ACTIONS(2808), + [aux_sym_uint32_token1] = ACTIONS(2810), + [anon_sym_n] = ACTIONS(2812), + [anon_sym_un] = ACTIONS(2814), + [anon_sym_L] = ACTIONS(2816), + [aux_sym_uint64_token1] = ACTIONS(2818), + [aux_sym_bignum_token1] = ACTIONS(2820), + [aux_sym_decimal_token1] = ACTIONS(2822), + [anon_sym_DOT2] = ACTIONS(2824), + [aux_sym_float_token1] = ACTIONS(2826), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [869] = { [sym_xml_doc] = STATE(869), @@ -156073,102 +161686,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(869), [sym_fsi_directive_decl] = STATE(869), [sym_preproc_line] = STATE(869), - [aux_sym__compound_type_repeat1] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2800), + [anon_sym_uy] = ACTIONS(2802), + [anon_sym_s] = ACTIONS(2804), + [anon_sym_us] = ACTIONS(2806), + [anon_sym_l] = ACTIONS(2808), + [aux_sym_uint32_token1] = ACTIONS(2810), + [anon_sym_n] = ACTIONS(2812), + [anon_sym_un] = ACTIONS(2814), + [anon_sym_L] = ACTIONS(2816), + [aux_sym_uint64_token1] = ACTIONS(2818), + [anon_sym_lf] = ACTIONS(2860), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [870] = { [sym_xml_doc] = STATE(870), @@ -156177,102 +161795,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(870), [sym_fsi_directive_decl] = STATE(870), [sym_preproc_line] = STATE(870), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_GT_RBRACK] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_to] = ACTIONS(3073), - [anon_sym_downto] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_DOT_DOT2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3077), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2832), + [anon_sym_uy] = ACTIONS(2834), + [anon_sym_s] = ACTIONS(2836), + [anon_sym_us] = ACTIONS(2838), + [anon_sym_l] = ACTIONS(2840), + [aux_sym_uint32_token1] = ACTIONS(2842), + [anon_sym_n] = ACTIONS(2844), + [anon_sym_un] = ACTIONS(2846), + [anon_sym_L] = ACTIONS(2848), + [aux_sym_uint64_token1] = ACTIONS(2850), + [anon_sym_lf] = ACTIONS(2864), + [anon_sym_LF] = ACTIONS(2866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [871] = { [sym_xml_doc] = STATE(871), @@ -156281,206 +161903,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(871), [sym_fsi_directive_decl] = STATE(871), [sym_preproc_line] = STATE(871), - [aux_sym_type_argument_repeat1] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_open] = ACTIONS(2941), - [anon_sym_LBRACK_LT] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2943), - [anon_sym_POUNDload] = ACTIONS(2943), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2868), + [anon_sym_uy] = ACTIONS(2870), + [anon_sym_s] = ACTIONS(2872), + [anon_sym_us] = ACTIONS(2874), + [anon_sym_l] = ACTIONS(2876), + [aux_sym_uint32_token1] = ACTIONS(2878), + [anon_sym_n] = ACTIONS(2880), + [anon_sym_un] = ACTIONS(2882), + [anon_sym_L] = ACTIONS(2884), + [aux_sym_uint64_token1] = ACTIONS(2886), + [aux_sym_bignum_token1] = ACTIONS(2888), + [aux_sym_decimal_token1] = ACTIONS(2890), + [anon_sym_DOT2] = ACTIONS(2892), + [aux_sym_float_token1] = ACTIONS(2894), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [872] = { - [sym__else_expression] = STATE(1266), - [sym_elif_expression] = STATE(1078), [sym_xml_doc] = STATE(872), [sym_block_comment] = STATE(872), [sym_line_comment] = STATE(872), [sym_compiler_directive_decl] = STATE(872), [sym_fsi_directive_decl] = STATE(872), [sym_preproc_line] = STATE(872), - [aux_sym_if_expression_repeat1] = STATE(866), - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2892), - [anon_sym_namespace] = ACTIONS(2892), - [anon_sym_module] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_open] = ACTIONS(2892), - [anon_sym_LBRACK_LT] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3063), - [anon_sym_elif] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2894), - [anon_sym_POUNDload] = ACTIONS(2894), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2800), + [anon_sym_uy] = ACTIONS(2802), + [anon_sym_s] = ACTIONS(2804), + [anon_sym_us] = ACTIONS(2806), + [anon_sym_l] = ACTIONS(2808), + [aux_sym_uint32_token1] = ACTIONS(2810), + [anon_sym_n] = ACTIONS(2812), + [anon_sym_un] = ACTIONS(2814), + [anon_sym_L] = ACTIONS(2816), + [aux_sym_uint64_token1] = ACTIONS(2818), + [anon_sym_lf] = ACTIONS(2860), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [873] = { [sym_xml_doc] = STATE(873), @@ -156489,204 +162119,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(873), [sym_fsi_directive_decl] = STATE(873), [sym_preproc_line] = STATE(873), - [aux_sym_rules_repeat1] = STATE(894), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_GT_RBRACK] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3081), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_to] = ACTIONS(3079), - [anon_sym_downto] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_end] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_DOT_DOT2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(3085), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2896), + [anon_sym_uy] = ACTIONS(2898), + [anon_sym_s] = ACTIONS(2900), + [anon_sym_us] = ACTIONS(2902), + [anon_sym_l] = ACTIONS(2904), + [aux_sym_uint32_token1] = ACTIONS(2906), + [anon_sym_n] = ACTIONS(2908), + [anon_sym_un] = ACTIONS(2910), + [anon_sym_L] = ACTIONS(2912), + [aux_sym_uint64_token1] = ACTIONS(2914), + [aux_sym_bignum_token1] = ACTIONS(2916), + [aux_sym_decimal_token1] = ACTIONS(2918), + [anon_sym_DOT2] = ACTIONS(2920), + [aux_sym_float_token1] = ACTIONS(2922), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [874] = { - [sym__else_expression] = STATE(1396), - [sym_elif_expression] = STATE(1110), [sym_xml_doc] = STATE(874), [sym_block_comment] = STATE(874), [sym_line_comment] = STATE(874), [sym_compiler_directive_decl] = STATE(874), [sym_fsi_directive_decl] = STATE(874), [sym_preproc_line] = STATE(874), - [aux_sym_if_expression_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(2945), - [anon_sym_module] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_open] = ACTIONS(2945), - [anon_sym_LBRACK_LT] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_type] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2947), - [anon_sym_POUNDload] = ACTIONS(2947), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), - [sym__dedent] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2924), + [anon_sym_uy] = ACTIONS(2926), + [anon_sym_s] = ACTIONS(2928), + [anon_sym_us] = ACTIONS(2930), + [anon_sym_l] = ACTIONS(2932), + [aux_sym_uint32_token1] = ACTIONS(2934), + [anon_sym_n] = ACTIONS(2936), + [anon_sym_un] = ACTIONS(2938), + [anon_sym_L] = ACTIONS(2940), + [aux_sym_uint64_token1] = ACTIONS(2942), + [aux_sym_bignum_token1] = ACTIONS(2944), + [aux_sym_decimal_token1] = ACTIONS(2946), + [anon_sym_DOT2] = ACTIONS(2948), + [aux_sym_float_token1] = ACTIONS(2950), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [anon_sym_POUNDelse] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [875] = { [sym_xml_doc] = STATE(875), @@ -156695,204 +162333,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(875), [sym_fsi_directive_decl] = STATE(875), [sym_preproc_line] = STATE(875), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_GT_RBRACK] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_RBRACK] = ACTIONS(3094), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3092), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_to] = ACTIONS(3092), - [anon_sym_downto] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_end] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_DOT_DOT2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2772), + [anon_sym_uy] = ACTIONS(2774), + [anon_sym_s] = ACTIONS(2776), + [anon_sym_us] = ACTIONS(2778), + [anon_sym_l] = ACTIONS(2780), + [aux_sym_uint32_token1] = ACTIONS(2782), + [anon_sym_n] = ACTIONS(2784), + [anon_sym_un] = ACTIONS(2786), + [anon_sym_L] = ACTIONS(2788), + [aux_sym_uint64_token1] = ACTIONS(2790), + [aux_sym_bignum_token1] = ACTIONS(2792), + [aux_sym_decimal_token1] = ACTIONS(2794), + [anon_sym_DOT2] = ACTIONS(2796), + [aux_sym_float_token1] = ACTIONS(2798), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [876] = { - [sym_type_arguments] = STATE(1180), - [sym_long_identifier] = STATE(1170), [sym_xml_doc] = STATE(876), [sym_block_comment] = STATE(876), [sym_line_comment] = STATE(876), [sym_compiler_directive_decl] = STATE(876), [sym_fsi_directive_decl] = STATE(876), [sym_preproc_line] = STATE(876), - [aux_sym__compound_type_repeat1] = STATE(1032), - [sym_identifier] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(3102), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2952), + [anon_sym_uy] = ACTIONS(2954), + [anon_sym_s] = ACTIONS(2956), + [anon_sym_us] = ACTIONS(2958), + [anon_sym_l] = ACTIONS(2960), + [aux_sym_uint32_token1] = ACTIONS(2962), + [anon_sym_n] = ACTIONS(2964), + [anon_sym_un] = ACTIONS(2966), + [anon_sym_L] = ACTIONS(2968), + [aux_sym_uint64_token1] = ACTIONS(2970), + [aux_sym_bignum_token1] = ACTIONS(2972), + [aux_sym_decimal_token1] = ACTIONS(2974), + [anon_sym_DOT2] = ACTIONS(2976), + [aux_sym_float_token1] = ACTIONS(2978), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [877] = { [sym_xml_doc] = STATE(877), @@ -156901,101 +162547,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(877), [sym_fsi_directive_decl] = STATE(877), [sym_preproc_line] = STATE(877), - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2990), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_LBRACK_LT] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3106), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2992), - [anon_sym_POUNDload] = ACTIONS(2992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2952), + [anon_sym_uy] = ACTIONS(2954), + [anon_sym_s] = ACTIONS(2956), + [anon_sym_us] = ACTIONS(2958), + [anon_sym_l] = ACTIONS(2960), + [aux_sym_uint32_token1] = ACTIONS(2962), + [anon_sym_n] = ACTIONS(2964), + [anon_sym_un] = ACTIONS(2966), + [anon_sym_L] = ACTIONS(2968), + [aux_sym_uint64_token1] = ACTIONS(2970), + [aux_sym_bignum_token1] = ACTIONS(2972), + [aux_sym_decimal_token1] = ACTIONS(2974), + [anon_sym_DOT2] = ACTIONS(2976), + [aux_sym_float_token1] = ACTIONS(2978), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [878] = { [sym_xml_doc] = STATE(878), @@ -157004,307 +162654,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(878), [sym_fsi_directive_decl] = STATE(878), [sym_preproc_line] = STATE(878), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2980), + [anon_sym_uy] = ACTIONS(2982), + [anon_sym_s] = ACTIONS(2984), + [anon_sym_us] = ACTIONS(2986), + [anon_sym_l] = ACTIONS(2988), + [aux_sym_uint32_token1] = ACTIONS(2990), + [anon_sym_n] = ACTIONS(2992), + [anon_sym_un] = ACTIONS(2994), + [anon_sym_L] = ACTIONS(2996), + [aux_sym_uint64_token1] = ACTIONS(2998), + [aux_sym_bignum_token1] = ACTIONS(3000), + [aux_sym_decimal_token1] = ACTIONS(3002), + [anon_sym_DOT2] = ACTIONS(3004), + [aux_sym_float_token1] = ACTIONS(3006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [879] = { + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(879), [sym_block_comment] = STATE(879), [sym_line_comment] = STATE(879), [sym_compiler_directive_decl] = STATE(879), [sym_fsi_directive_decl] = STATE(879), [sym_preproc_line] = STATE(879), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_GT_RBRACK] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_to] = ACTIONS(3012), + [anon_sym_downto] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_end] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [880] = { - [sym_type_arguments] = STATE(1180), - [sym_long_identifier] = STATE(1170), + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(880), [sym_block_comment] = STATE(880), [sym_line_comment] = STATE(880), [sym_compiler_directive_decl] = STATE(880), [sym_fsi_directive_decl] = STATE(880), [sym_preproc_line] = STATE(880), - [aux_sym__compound_type_repeat1] = STATE(1032), - [sym_identifier] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(3102), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_GT_RBRACK] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_RBRACK] = ACTIONS(3022), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_to] = ACTIONS(3024), + [anon_sym_downto] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_end] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_DOT_DOT2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [881] = { [sym_xml_doc] = STATE(881), @@ -157313,204 +162973,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(881), [sym_fsi_directive_decl] = STATE(881), [sym_preproc_line] = STATE(881), - [aux_sym__compound_type_repeat1] = STATE(892), - [sym_identifier] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_open] = ACTIONS(2970), - [anon_sym_LBRACK_LT] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(2980), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2972), - [anon_sym_POUNDload] = ACTIONS(2972), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), - [sym__dedent] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2868), + [anon_sym_uy] = ACTIONS(2870), + [anon_sym_s] = ACTIONS(2872), + [anon_sym_us] = ACTIONS(2874), + [anon_sym_l] = ACTIONS(2876), + [aux_sym_uint32_token1] = ACTIONS(2878), + [anon_sym_n] = ACTIONS(2880), + [anon_sym_un] = ACTIONS(2882), + [anon_sym_L] = ACTIONS(2884), + [aux_sym_uint64_token1] = ACTIONS(2886), + [anon_sym_lf] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3028), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [882] = { + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(882), [sym_block_comment] = STATE(882), [sym_line_comment] = STATE(882), [sym_compiler_directive_decl] = STATE(882), [sym_fsi_directive_decl] = STATE(882), [sym_preproc_line] = STATE(882), - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3025), - [anon_sym_namespace] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3025), - [anon_sym_LBRACK_LT] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3027), - [anon_sym_POUNDload] = ACTIONS(3027), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_GT_RBRACK] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_RBRACK] = ACTIONS(3030), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_to] = ACTIONS(3032), + [anon_sym_downto] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_end] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [883] = { [sym_xml_doc] = STATE(883), @@ -157519,101 +163185,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(883), [sym_fsi_directive_decl] = STATE(883), [sym_preproc_line] = STATE(883), - [aux_sym_rules_repeat1] = STATE(894), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_GT_RBRACK] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_to] = ACTIONS(3108), - [anon_sym_downto] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_end] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_DOT_DOT2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3112), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2980), + [anon_sym_uy] = ACTIONS(2982), + [anon_sym_s] = ACTIONS(2984), + [anon_sym_us] = ACTIONS(2986), + [anon_sym_l] = ACTIONS(2988), + [aux_sym_uint32_token1] = ACTIONS(2990), + [anon_sym_n] = ACTIONS(2992), + [anon_sym_un] = ACTIONS(2994), + [anon_sym_L] = ACTIONS(2996), + [aux_sym_uint64_token1] = ACTIONS(2998), + [aux_sym_bignum_token1] = ACTIONS(3000), + [aux_sym_decimal_token1] = ACTIONS(3002), + [anon_sym_DOT2] = ACTIONS(3004), + [aux_sym_float_token1] = ACTIONS(3006), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [884] = { [sym_xml_doc] = STATE(884), @@ -157622,307 +163291,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(884), [sym_fsi_directive_decl] = STATE(884), [sym_preproc_line] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3029), - [anon_sym_namespace] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_LBRACK_LT] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3031), - [anon_sym_POUNDload] = ACTIONS(3031), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3034), + [anon_sym_uy] = ACTIONS(3036), + [anon_sym_s] = ACTIONS(3038), + [anon_sym_us] = ACTIONS(3040), + [anon_sym_l] = ACTIONS(3042), + [aux_sym_uint32_token1] = ACTIONS(3044), + [anon_sym_n] = ACTIONS(3046), + [anon_sym_un] = ACTIONS(3048), + [anon_sym_L] = ACTIONS(3050), + [aux_sym_uint64_token1] = ACTIONS(3052), + [aux_sym_bignum_token1] = ACTIONS(3054), + [aux_sym_decimal_token1] = ACTIONS(3056), + [anon_sym_DOT2] = ACTIONS(3058), + [aux_sym_float_token1] = ACTIONS(3060), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [885] = { - [sym_type_arguments] = STATE(1140), - [sym_long_identifier] = STATE(1135), [sym_xml_doc] = STATE(885), [sym_block_comment] = STATE(885), [sym_line_comment] = STATE(885), [sym_compiler_directive_decl] = STATE(885), [sym_fsi_directive_decl] = STATE(885), [sym_preproc_line] = STATE(885), - [aux_sym__compound_type_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_DOT_DOT2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(3121), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_AT_GT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3062), + [anon_sym_uy] = ACTIONS(3064), + [anon_sym_s] = ACTIONS(3066), + [anon_sym_us] = ACTIONS(3068), + [anon_sym_l] = ACTIONS(3070), + [aux_sym_uint32_token1] = ACTIONS(3072), + [anon_sym_n] = ACTIONS(3074), + [anon_sym_un] = ACTIONS(3076), + [anon_sym_L] = ACTIONS(3078), + [aux_sym_uint64_token1] = ACTIONS(3080), + [aux_sym_bignum_token1] = ACTIONS(3082), + [aux_sym_decimal_token1] = ACTIONS(3084), + [anon_sym_DOT2] = ACTIONS(3086), + [aux_sym_float_token1] = ACTIONS(3088), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [886] = { + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(886), [sym_block_comment] = STATE(886), [sym_line_comment] = STATE(886), [sym_compiler_directive_decl] = STATE(886), [sym_fsi_directive_decl] = STATE(886), [sym_preproc_line] = STATE(886), - [aux_sym_type_argument_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3125), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_GT_RBRACK] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_to] = ACTIONS(3092), + [anon_sym_downto] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_end] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_DOT_DOT2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [887] = { [sym_xml_doc] = STATE(887), @@ -157931,101 +163609,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(887), [sym_fsi_directive_decl] = STATE(887), [sym_preproc_line] = STATE(887), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2952), + [anon_sym_uy] = ACTIONS(2954), + [anon_sym_s] = ACTIONS(2956), + [anon_sym_us] = ACTIONS(2958), + [anon_sym_l] = ACTIONS(2960), + [aux_sym_uint32_token1] = ACTIONS(2962), + [anon_sym_n] = ACTIONS(2964), + [anon_sym_un] = ACTIONS(2966), + [anon_sym_L] = ACTIONS(2968), + [aux_sym_uint64_token1] = ACTIONS(2970), + [anon_sym_lf] = ACTIONS(3094), + [anon_sym_LF] = ACTIONS(3096), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [888] = { [sym_xml_doc] = STATE(888), @@ -158034,101 +163715,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(888), [sym_fsi_directive_decl] = STATE(888), [sym_preproc_line] = STATE(888), - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3013), - [anon_sym_namespace] = ACTIONS(3013), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3013), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3098), + [anon_sym_uy] = ACTIONS(3100), + [anon_sym_s] = ACTIONS(3102), + [anon_sym_us] = ACTIONS(3104), + [anon_sym_l] = ACTIONS(3106), + [aux_sym_uint32_token1] = ACTIONS(3108), + [anon_sym_n] = ACTIONS(3110), + [anon_sym_un] = ACTIONS(3112), + [anon_sym_L] = ACTIONS(3114), + [aux_sym_uint64_token1] = ACTIONS(3116), + [aux_sym_bignum_token1] = ACTIONS(3118), + [aux_sym_decimal_token1] = ACTIONS(3120), + [anon_sym_DOT2] = ACTIONS(3122), + [aux_sym_float_token1] = ACTIONS(3124), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [889] = { [sym_xml_doc] = STATE(889), @@ -158137,204 +163821,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(889), [sym_fsi_directive_decl] = STATE(889), [sym_preproc_line] = STATE(889), - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_module] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_LBRACK_LT] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_type] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3005), - [anon_sym_POUNDload] = ACTIONS(3005), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_AT_AT_GT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3126), + [anon_sym_uy] = ACTIONS(3128), + [anon_sym_s] = ACTIONS(3130), + [anon_sym_us] = ACTIONS(3132), + [anon_sym_l] = ACTIONS(3134), + [aux_sym_uint32_token1] = ACTIONS(3136), + [anon_sym_n] = ACTIONS(3138), + [anon_sym_un] = ACTIONS(3140), + [anon_sym_L] = ACTIONS(3142), + [aux_sym_uint64_token1] = ACTIONS(3144), + [aux_sym_bignum_token1] = ACTIONS(3146), + [aux_sym_decimal_token1] = ACTIONS(3148), + [anon_sym_DOT2] = ACTIONS(3150), + [aux_sym_float_token1] = ACTIONS(3152), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [890] = { + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(890), [sym_block_comment] = STATE(890), [sym_line_comment] = STATE(890), [sym_compiler_directive_decl] = STATE(890), [sym_fsi_directive_decl] = STATE(890), [sym_preproc_line] = STATE(890), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_GT_RBRACK] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_to] = ACTIONS(3154), + [anon_sym_downto] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3014), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_end] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_DOT_DOT2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [891] = { [sym_xml_doc] = STATE(891), @@ -158343,101 +164033,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(891), [sym_fsi_directive_decl] = STATE(891), [sym_preproc_line] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3033), - [anon_sym_namespace] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3033), - [anon_sym_LBRACK_LT] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3039), - [anon_sym_POUNDload] = ACTIONS(3039), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3158), + [anon_sym_uy] = ACTIONS(3160), + [anon_sym_s] = ACTIONS(3162), + [anon_sym_us] = ACTIONS(3164), + [anon_sym_l] = ACTIONS(3166), + [aux_sym_uint32_token1] = ACTIONS(3168), + [anon_sym_n] = ACTIONS(3170), + [anon_sym_un] = ACTIONS(3172), + [anon_sym_L] = ACTIONS(3174), + [aux_sym_uint64_token1] = ACTIONS(3176), + [aux_sym_bignum_token1] = ACTIONS(3178), + [aux_sym_decimal_token1] = ACTIONS(3180), + [anon_sym_DOT2] = ACTIONS(3182), + [aux_sym_float_token1] = ACTIONS(3184), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [892] = { [sym_xml_doc] = STATE(892), @@ -158446,101 +164139,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(892), [sym_fsi_directive_decl] = STATE(892), [sym_preproc_line] = STATE(892), - [aux_sym__compound_type_repeat1] = STATE(892), - [sym_identifier] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2896), + [anon_sym_uy] = ACTIONS(2898), + [anon_sym_s] = ACTIONS(2900), + [anon_sym_us] = ACTIONS(2902), + [anon_sym_l] = ACTIONS(2904), + [aux_sym_uint32_token1] = ACTIONS(2906), + [anon_sym_n] = ACTIONS(2908), + [anon_sym_un] = ACTIONS(2910), + [anon_sym_L] = ACTIONS(2912), + [aux_sym_uint64_token1] = ACTIONS(2914), + [anon_sym_lf] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3188), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [893] = { [sym_xml_doc] = STATE(893), @@ -158549,101 +164244,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(893), [sym_fsi_directive_decl] = STATE(893), [sym_preproc_line] = STATE(893), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_GT_RBRACK] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_to] = ACTIONS(3073), - [anon_sym_downto] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_DOT_DOT2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2980), + [anon_sym_uy] = ACTIONS(2982), + [anon_sym_s] = ACTIONS(2984), + [anon_sym_us] = ACTIONS(2986), + [anon_sym_l] = ACTIONS(2988), + [aux_sym_uint32_token1] = ACTIONS(2990), + [anon_sym_n] = ACTIONS(2992), + [anon_sym_un] = ACTIONS(2994), + [anon_sym_L] = ACTIONS(2996), + [aux_sym_uint64_token1] = ACTIONS(2998), + [anon_sym_lf] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3192), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [894] = { [sym_xml_doc] = STATE(894), @@ -158652,307 +164349,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(894), [sym_fsi_directive_decl] = STATE(894), [sym_preproc_line] = STATE(894), - [aux_sym_rules_repeat1] = STATE(894), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_GT_RBRACK] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_to] = ACTIONS(3131), - [anon_sym_downto] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_end] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_DOT_DOT2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3138), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(2924), + [anon_sym_uy] = ACTIONS(2926), + [anon_sym_s] = ACTIONS(2928), + [anon_sym_us] = ACTIONS(2930), + [anon_sym_l] = ACTIONS(2932), + [aux_sym_uint32_token1] = ACTIONS(2934), + [anon_sym_n] = ACTIONS(2936), + [anon_sym_un] = ACTIONS(2938), + [anon_sym_L] = ACTIONS(2940), + [aux_sym_uint64_token1] = ACTIONS(2942), + [anon_sym_lf] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3196), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [anon_sym_POUNDelse] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [895] = { - [sym_type_arguments] = STATE(1180), - [sym_long_identifier] = STATE(1170), [sym_xml_doc] = STATE(895), [sym_block_comment] = STATE(895), [sym_line_comment] = STATE(895), [sym_compiler_directive_decl] = STATE(895), [sym_fsi_directive_decl] = STATE(895), [sym_preproc_line] = STATE(895), - [aux_sym__compound_type_repeat1] = STATE(1032), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(3102), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [sym__dedent] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3098), + [anon_sym_uy] = ACTIONS(3100), + [anon_sym_s] = ACTIONS(3102), + [anon_sym_us] = ACTIONS(3104), + [anon_sym_l] = ACTIONS(3106), + [aux_sym_uint32_token1] = ACTIONS(3108), + [anon_sym_n] = ACTIONS(3110), + [anon_sym_un] = ACTIONS(3112), + [anon_sym_L] = ACTIONS(3114), + [aux_sym_uint64_token1] = ACTIONS(3116), + [anon_sym_lf] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3200), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [896] = { - [sym_type_arguments] = STATE(1140), - [sym_long_identifier] = STATE(1135), [sym_xml_doc] = STATE(896), [sym_block_comment] = STATE(896), [sym_line_comment] = STATE(896), [sym_compiler_directive_decl] = STATE(896), [sym_fsi_directive_decl] = STATE(896), [sym_preproc_line] = STATE(896), - [aux_sym__compound_type_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_DOT_DOT2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(3121), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [aux_sym_long_identifier_repeat1] = STATE(915), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_GT_RBRACK] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_to] = ACTIONS(3202), + [anon_sym_downto] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_end] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_DOT_DOT2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [897] = { [sym_xml_doc] = STATE(897), @@ -158961,101 +164662,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(897), [sym_fsi_directive_decl] = STATE(897), [sym_preproc_line] = STATE(897), - [aux_sym_type_argument_repeat1] = STATE(902), - [sym_identifier] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3141), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_AT_AT_GT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3126), + [anon_sym_uy] = ACTIONS(3128), + [anon_sym_s] = ACTIONS(3130), + [anon_sym_us] = ACTIONS(3132), + [anon_sym_l] = ACTIONS(3134), + [aux_sym_uint32_token1] = ACTIONS(3136), + [anon_sym_n] = ACTIONS(3138), + [anon_sym_un] = ACTIONS(3140), + [anon_sym_L] = ACTIONS(3142), + [aux_sym_uint64_token1] = ACTIONS(3144), + [anon_sym_lf] = ACTIONS(3208), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [898] = { [sym_xml_doc] = STATE(898), @@ -159064,1337 +164766,1350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(898), [sym_fsi_directive_decl] = STATE(898), [sym_preproc_line] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3043), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_LBRACK_LT] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3045), - [anon_sym_POUNDload] = ACTIONS(3045), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [aux_sym__compound_type_repeat1] = STATE(912), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_GT_RBRACK] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_RBRACK] = ACTIONS(3214), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_to] = ACTIONS(3212), + [anon_sym_downto] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_end] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_DOT_DOT2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [899] = { - [sym_elif_expression] = STATE(1078), [sym_xml_doc] = STATE(899), [sym_block_comment] = STATE(899), [sym_line_comment] = STATE(899), [sym_compiler_directive_decl] = STATE(899), [sym_fsi_directive_decl] = STATE(899), [sym_preproc_line] = STATE(899), - [aux_sym_if_expression_repeat1] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_identifier] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2996), - [anon_sym_LBRACK_LT] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2998), - [anon_sym_POUNDload] = ACTIONS(2998), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3034), + [anon_sym_uy] = ACTIONS(3036), + [anon_sym_s] = ACTIONS(3038), + [anon_sym_us] = ACTIONS(3040), + [anon_sym_l] = ACTIONS(3042), + [aux_sym_uint32_token1] = ACTIONS(3044), + [anon_sym_n] = ACTIONS(3046), + [anon_sym_un] = ACTIONS(3048), + [anon_sym_L] = ACTIONS(3050), + [aux_sym_uint64_token1] = ACTIONS(3052), + [anon_sym_lf] = ACTIONS(3216), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [900] = { + [sym_type_arguments] = STATE(970), + [sym_long_identifier] = STATE(985), [sym_xml_doc] = STATE(900), [sym_block_comment] = STATE(900), [sym_line_comment] = STATE(900), [sym_compiler_directive_decl] = STATE(900), [sym_fsi_directive_decl] = STATE(900), [sym_preproc_line] = STATE(900), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_GT_RBRACK] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_to] = ACTIONS(3147), - [anon_sym_downto] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_end] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_DOT_DOT2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), - }, - [901] = { - [sym_xml_doc] = STATE(901), - [sym_block_comment] = STATE(901), - [sym_line_comment] = STATE(901), - [sym_compiler_directive_decl] = STATE(901), - [sym_fsi_directive_decl] = STATE(901), - [sym_preproc_line] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3047), - [anon_sym_namespace] = ACTIONS(3047), - [anon_sym_module] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_LBRACK_LT] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3049), - [anon_sym_POUNDload] = ACTIONS(3049), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), - }, - [902] = { - [sym_xml_doc] = STATE(902), - [sym_block_comment] = STATE(902), - [sym_line_comment] = STATE(902), - [sym_compiler_directive_decl] = STATE(902), - [sym_fsi_directive_decl] = STATE(902), - [sym_preproc_line] = STATE(902), - [aux_sym_type_argument_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_open] = ACTIONS(2941), - [anon_sym_LBRACK_LT] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2943), - [anon_sym_POUNDload] = ACTIONS(2943), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), - [sym__dedent] = ACTIONS(2943), - }, - [903] = { - [sym_xml_doc] = STATE(903), - [sym_block_comment] = STATE(903), - [sym_line_comment] = STATE(903), - [sym_compiler_directive_decl] = STATE(903), - [sym_fsi_directive_decl] = STATE(903), - [sym_preproc_line] = STATE(903), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_GT_RBRACK] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_to] = ACTIONS(2518), - [anon_sym_downto] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2550), - [aux_sym_decimal_token1] = ACTIONS(2544), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - }, - [904] = { - [sym_xml_doc] = STATE(904), - [sym_block_comment] = STATE(904), - [sym_line_comment] = STATE(904), - [sym_compiler_directive_decl] = STATE(904), - [sym_fsi_directive_decl] = STATE(904), - [sym_preproc_line] = STATE(904), - [aux_sym_long_identifier_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2953), - [anon_sym_module] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_LBRACK_LT] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2956), - [anon_sym_POUNDload] = ACTIONS(2956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), - }, - [905] = { - [sym_type_arguments] = STATE(1180), - [sym_long_identifier] = STATE(1170), - [sym_xml_doc] = STATE(905), - [sym_block_comment] = STATE(905), - [sym_line_comment] = STATE(905), - [sym_compiler_directive_decl] = STATE(905), - [sym_fsi_directive_decl] = STATE(905), - [sym_preproc_line] = STATE(905), - [aux_sym__compound_type_repeat1] = STATE(1032), - [sym_identifier] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(3102), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), - }, - [906] = { - [sym_xml_doc] = STATE(906), - [sym_block_comment] = STATE(906), - [sym_line_comment] = STATE(906), - [sym_compiler_directive_decl] = STATE(906), - [sym_fsi_directive_decl] = STATE(906), - [sym_preproc_line] = STATE(906), - [aux_sym_long_identifier_repeat1] = STATE(909), - [sym_identifier] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), - }, - [907] = { - [sym_type_arguments] = STATE(1140), - [sym_long_identifier] = STATE(1135), - [sym_xml_doc] = STATE(907), - [sym_block_comment] = STATE(907), - [sym_line_comment] = STATE(907), - [sym_compiler_directive_decl] = STATE(907), - [sym_fsi_directive_decl] = STATE(907), - [sym_preproc_line] = STATE(907), - [aux_sym__compound_type_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_DOT_DOT2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(3121), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), - }, - [908] = { + [aux_sym__compound_type_repeat1] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_LBRACK_LT] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3226), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3090), + [anon_sym_POUNDload] = ACTIONS(3090), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + }, + [901] = { + [sym_type_arguments] = STATE(970), + [sym_long_identifier] = STATE(985), + [sym_xml_doc] = STATE(901), + [sym_block_comment] = STATE(901), + [sym_line_comment] = STATE(901), + [sym_compiler_directive_decl] = STATE(901), + [sym_fsi_directive_decl] = STATE(901), + [sym_preproc_line] = STATE(901), + [aux_sym__compound_type_repeat1] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3226), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + }, + [902] = { + [sym_type_arguments] = STATE(970), + [sym_long_identifier] = STATE(985), + [sym_xml_doc] = STATE(902), + [sym_block_comment] = STATE(902), + [sym_line_comment] = STATE(902), + [sym_compiler_directive_decl] = STATE(902), + [sym_fsi_directive_decl] = STATE(902), + [sym_preproc_line] = STATE(902), + [aux_sym__compound_type_repeat1] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3154), + [anon_sym_LBRACK_LT] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3226), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3156), + [anon_sym_POUNDload] = ACTIONS(3156), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), + }, + [903] = { + [sym_type_arguments] = STATE(970), + [sym_long_identifier] = STATE(985), + [sym_xml_doc] = STATE(903), + [sym_block_comment] = STATE(903), + [sym_line_comment] = STATE(903), + [sym_compiler_directive_decl] = STATE(903), + [sym_fsi_directive_decl] = STATE(903), + [sym_preproc_line] = STATE(903), + [aux_sym__compound_type_repeat1] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_open] = ACTIONS(3012), + [anon_sym_LBRACK_LT] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3226), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3010), + [anon_sym_POUNDload] = ACTIONS(3010), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), + }, + [904] = { + [sym_xml_doc] = STATE(904), + [sym_block_comment] = STATE(904), + [sym_line_comment] = STATE(904), + [sym_compiler_directive_decl] = STATE(904), + [sym_fsi_directive_decl] = STATE(904), + [sym_preproc_line] = STATE(904), + [aux_sym_type_argument_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_GT_RBRACK] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_to] = ACTIONS(3230), + [anon_sym_downto] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_end] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_DOT_DOT2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), + }, + [905] = { + [sym_xml_doc] = STATE(905), + [sym_block_comment] = STATE(905), + [sym_line_comment] = STATE(905), + [sym_compiler_directive_decl] = STATE(905), + [sym_fsi_directive_decl] = STATE(905), + [sym_preproc_line] = STATE(905), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_AT_GT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3062), + [anon_sym_uy] = ACTIONS(3064), + [anon_sym_s] = ACTIONS(3066), + [anon_sym_us] = ACTIONS(3068), + [anon_sym_l] = ACTIONS(3070), + [aux_sym_uint32_token1] = ACTIONS(3072), + [anon_sym_n] = ACTIONS(3074), + [anon_sym_un] = ACTIONS(3076), + [anon_sym_L] = ACTIONS(3078), + [aux_sym_uint64_token1] = ACTIONS(3080), + [anon_sym_lf] = ACTIONS(3234), + [anon_sym_LF] = ACTIONS(3236), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + }, + [906] = { + [sym_xml_doc] = STATE(906), + [sym_block_comment] = STATE(906), + [sym_line_comment] = STATE(906), + [sym_compiler_directive_decl] = STATE(906), + [sym_fsi_directive_decl] = STATE(906), + [sym_preproc_line] = STATE(906), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(3158), + [anon_sym_uy] = ACTIONS(3160), + [anon_sym_s] = ACTIONS(3162), + [anon_sym_us] = ACTIONS(3164), + [anon_sym_l] = ACTIONS(3166), + [aux_sym_uint32_token1] = ACTIONS(3168), + [anon_sym_n] = ACTIONS(3170), + [anon_sym_un] = ACTIONS(3172), + [anon_sym_L] = ACTIONS(3174), + [aux_sym_uint64_token1] = ACTIONS(3176), + [anon_sym_lf] = ACTIONS(3238), + [anon_sym_LF] = ACTIONS(3240), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + }, + [907] = { + [sym_xml_doc] = STATE(907), + [sym_block_comment] = STATE(907), + [sym_line_comment] = STATE(907), + [sym_compiler_directive_decl] = STATE(907), + [sym_fsi_directive_decl] = STATE(907), + [sym_preproc_line] = STATE(907), + [aux_sym_type_argument_repeat1] = STATE(904), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_GT_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_to] = ACTIONS(3242), + [anon_sym_downto] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_end] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_DOT_DOT2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3246), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + }, + [908] = { + [sym__else_expression] = STATE(1179), + [sym_elif_expression] = STATE(1000), [sym_xml_doc] = STATE(908), [sym_block_comment] = STATE(908), [sym_line_comment] = STATE(908), [sym_compiler_directive_decl] = STATE(908), [sym_fsi_directive_decl] = STATE(908), [sym_preproc_line] = STATE(908), - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_LBRACK_LT] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3009), - [anon_sym_POUNDload] = ACTIONS(3009), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [aux_sym_if_expression_repeat1] = STATE(914), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_GT_RBRACK] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_to] = ACTIONS(3249), + [anon_sym_downto] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3253), + [anon_sym_elif] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_end] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_DOT_DOT2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [909] = { + [sym_type_arguments] = STATE(970), + [sym_long_identifier] = STATE(985), [sym_xml_doc] = STATE(909), [sym_block_comment] = STATE(909), [sym_line_comment] = STATE(909), [sym_compiler_directive_decl] = STATE(909), [sym_fsi_directive_decl] = STATE(909), [sym_preproc_line] = STATE(909), - [aux_sym_long_identifier_repeat1] = STATE(909), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym__compound_type_repeat1] = STATE(943), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_module] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_LBRACK_LT] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3226), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3022), + [anon_sym_POUNDload] = ACTIONS(3022), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [910] = { - [sym_type_arguments] = STATE(1140), - [sym_long_identifier] = STATE(1135), [sym_xml_doc] = STATE(910), [sym_block_comment] = STATE(910), [sym_line_comment] = STATE(910), [sym_compiler_directive_decl] = STATE(910), [sym_fsi_directive_decl] = STATE(910), [sym_preproc_line] = STATE(910), - [aux_sym__compound_type_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(3121), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [aux_sym_long_identifier_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_GT_RBRACK] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_to] = ACTIONS(3257), + [anon_sym_downto] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_end] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_DOT_DOT2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [911] = { [sym_xml_doc] = STATE(911), @@ -160403,101 +166118,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(911), [sym_fsi_directive_decl] = STATE(911), [sym_preproc_line] = STATE(911), - [aux_sym_rules_repeat1] = STATE(873), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_GT_RBRACK] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_to] = ACTIONS(3108), - [anon_sym_downto] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_end] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_DOT_DOT2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3112), + [aux_sym_long_identifier_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_GT_RBRACK] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_to] = ACTIONS(3261), + [anon_sym_downto] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_end] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_DOT_DOT2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [912] = { [sym_xml_doc] = STATE(912), @@ -160506,101 +166222,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(912), [sym_fsi_directive_decl] = STATE(912), [sym_preproc_line] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3017), - [anon_sym_namespace] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3019), - [anon_sym_POUNDload] = ACTIONS(3019), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [aux_sym__compound_type_repeat1] = STATE(912), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_GT_RBRACK] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_RBRACK] = ACTIONS(3030), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_to] = ACTIONS(3032), + [anon_sym_downto] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_end] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3271), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [913] = { [sym_xml_doc] = STATE(913), @@ -160609,307 +166326,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(913), [sym_fsi_directive_decl] = STATE(913), [sym_preproc_line] = STATE(913), - [aux_sym_rules_repeat1] = STATE(883), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_GT_RBRACK] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3162), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_to] = ACTIONS(3160), - [anon_sym_downto] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_end] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_DOT_DOT2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3164), + [aux_sym_type_argument_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_GT_RBRACK] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_to] = ACTIONS(3274), + [anon_sym_downto] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_end] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DOT_DOT2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3278), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [914] = { + [sym__else_expression] = STATE(1160), + [sym_elif_expression] = STATE(1000), [sym_xml_doc] = STATE(914), [sym_block_comment] = STATE(914), [sym_line_comment] = STATE(914), [sym_compiler_directive_decl] = STATE(914), [sym_fsi_directive_decl] = STATE(914), [sym_preproc_line] = STATE(914), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_GT_RBRACK] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_to] = ACTIONS(3167), - [anon_sym_downto] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_end] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym_if_expression_repeat1] = STATE(931), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_GT_RBRACK] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3283), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_to] = ACTIONS(3281), + [anon_sym_downto] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3253), + [anon_sym_elif] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_end] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_DOT_DOT2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [915] = { - [sym_type_arguments] = STATE(1180), - [sym_long_identifier] = STATE(1170), [sym_xml_doc] = STATE(915), [sym_block_comment] = STATE(915), [sym_line_comment] = STATE(915), [sym_compiler_directive_decl] = STATE(915), [sym_fsi_directive_decl] = STATE(915), [sym_preproc_line] = STATE(915), - [aux_sym__compound_type_repeat1] = STATE(1032), - [sym_identifier] = ACTIONS(3096), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(3102), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), + [aux_sym_long_identifier_repeat1] = STATE(915), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_to] = ACTIONS(3285), + [anon_sym_downto] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_end] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [916] = { [sym_xml_doc] = STATE(916), @@ -160918,101 +166638,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(916), [sym_fsi_directive_decl] = STATE(916), [sym_preproc_line] = STATE(916), - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3033), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_GT_RBRACK] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_RBRACK] = ACTIONS(3294), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_to] = ACTIONS(3292), + [anon_sym_downto] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_end] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_DOT_DOT2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [917] = { [sym_xml_doc] = STATE(917), @@ -161021,101 +166741,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(917), [sym_fsi_directive_decl] = STATE(917), [sym_preproc_line] = STATE(917), - [aux_sym_long_identifier_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_GT_RBRACK] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_to] = ACTIONS(3296), + [anon_sym_downto] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_end] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_DOT_DOT2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [918] = { [sym_xml_doc] = STATE(918), @@ -161124,101 +166844,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(918), [sym_fsi_directive_decl] = STATE(918), [sym_preproc_line] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3021), - [anon_sym_namespace] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_LBRACK_LT] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3023), - [anon_sym_POUNDload] = ACTIONS(3023), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_GT_RBRACK] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_RBRACK] = ACTIONS(3302), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_to] = ACTIONS(3300), + [anon_sym_downto] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_end] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_DOT_DOT2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [919] = { [sym_xml_doc] = STATE(919), @@ -161227,204 +166947,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(919), [sym_fsi_directive_decl] = STATE(919), [sym_preproc_line] = STATE(919), - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_GT_RBRACK] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_RBRACK] = ACTIONS(3306), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_to] = ACTIONS(3304), + [anon_sym_downto] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_end] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_DOT_DOT2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [920] = { - [sym__else_expression] = STATE(1417), - [sym_elif_expression] = STATE(1110), [sym_xml_doc] = STATE(920), [sym_block_comment] = STATE(920), [sym_line_comment] = STATE(920), [sym_compiler_directive_decl] = STATE(920), [sym_fsi_directive_decl] = STATE(920), [sym_preproc_line] = STATE(920), - [aux_sym_if_expression_repeat1] = STATE(874), - [sym_identifier] = ACTIONS(2892), - [anon_sym_module] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_open] = ACTIONS(2892), - [anon_sym_LBRACK_LT] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_elif] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2894), - [anon_sym_POUNDload] = ACTIONS(2894), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), - [sym__dedent] = ACTIONS(2894), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_GT_RBRACK] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_RBRACK] = ACTIONS(3310), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_to] = ACTIONS(3308), + [anon_sym_downto] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_end] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_DOT_DOT2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [921] = { [sym_xml_doc] = STATE(921), @@ -161433,204 +167153,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(921), [sym_fsi_directive_decl] = STATE(921), [sym_preproc_line] = STATE(921), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_GT_RBRACK] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_to] = ACTIONS(3167), - [anon_sym_downto] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_end] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_to] = ACTIONS(3285), + [anon_sym_downto] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_end] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [922] = { - [sym_type_arguments] = STATE(1140), - [sym_long_identifier] = STATE(1135), [sym_xml_doc] = STATE(922), [sym_block_comment] = STATE(922), [sym_line_comment] = STATE(922), [sym_compiler_directive_decl] = STATE(922), [sym_fsi_directive_decl] = STATE(922), [sym_preproc_line] = STATE(922), - [aux_sym__compound_type_repeat1] = STATE(1013), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_DOT_DOT2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(3121), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), - [sym__dedent] = ACTIONS(2792), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_GT_RBRACK] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_to] = ACTIONS(3314), + [anon_sym_downto] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_end] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [923] = { [sym_xml_doc] = STATE(923), @@ -161639,101 +167359,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(923), [sym_fsi_directive_decl] = STATE(923), [sym_preproc_line] = STATE(923), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_GT_RBRACK] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_to] = ACTIONS(3173), - [anon_sym_downto] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_end] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_DOT_DOT2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_GT_RBRACK] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_to] = ACTIONS(3318), + [anon_sym_downto] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_DOT_DOT2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [924] = { [sym_xml_doc] = STATE(924), @@ -161742,101 +167462,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(924), [sym_fsi_directive_decl] = STATE(924), [sym_preproc_line] = STATE(924), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_GT_RBRACK] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_to] = ACTIONS(3177), - [anon_sym_downto] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_end] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_DOT_DOT2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3181), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_GT_RBRACK] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_RBRACK] = ACTIONS(3324), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_to] = ACTIONS(3322), + [anon_sym_downto] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_DOT_DOT2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [925] = { [sym_xml_doc] = STATE(925), @@ -161845,202 +167565,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(925), [sym_fsi_directive_decl] = STATE(925), [sym_preproc_line] = STATE(925), - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_LBRACK_LT] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3183), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3075), - [anon_sym_POUNDload] = ACTIONS(3075), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_GT_RBRACK] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_RBRACK] = ACTIONS(3276), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_to] = ACTIONS(3274), + [anon_sym_downto] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_end] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DOT_DOT2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [926] = { + [sym_type_arguments] = STATE(1024), + [sym_long_identifier] = STATE(1038), [sym_xml_doc] = STATE(926), [sym_block_comment] = STATE(926), [sym_line_comment] = STATE(926), [sym_compiler_directive_decl] = STATE(926), [sym_fsi_directive_decl] = STATE(926), [sym_preproc_line] = STATE(926), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_GT_RBRACK] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_to] = ACTIONS(3131), - [anon_sym_downto] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_end] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_DOT_DOT2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [aux_sym__compound_type_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_LBRACK_LT] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3022), + [anon_sym_POUNDload] = ACTIONS(3022), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + [sym__dedent] = ACTIONS(3022), }, [927] = { [sym_xml_doc] = STATE(927), @@ -162049,100 +167771,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(927), [sym_fsi_directive_decl] = STATE(927), [sym_preproc_line] = STATE(927), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_GT_RBRACK] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_to] = ACTIONS(3185), - [anon_sym_downto] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_end] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_DOT_DOT2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_GT_RBRACK] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_RBRACK] = ACTIONS(3338), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_to] = ACTIONS(3336), + [anon_sym_downto] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_end] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_DOT_DOT2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [928] = { [sym_xml_doc] = STATE(928), @@ -162151,202 +167874,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(928), [sym_fsi_directive_decl] = STATE(928), [sym_preproc_line] = STATE(928), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_GT_RBRACK] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_to] = ACTIONS(3189), - [anon_sym_downto] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_GT_RBRACK] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_to] = ACTIONS(3340), + [anon_sym_downto] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_end] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_DOT_DOT2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [929] = { + [sym_type_arguments] = STATE(1024), + [sym_long_identifier] = STATE(1038), [sym_xml_doc] = STATE(929), [sym_block_comment] = STATE(929), [sym_line_comment] = STATE(929), [sym_compiler_directive_decl] = STATE(929), [sym_fsi_directive_decl] = STATE(929), [sym_preproc_line] = STATE(929), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_GT_RBRACK] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_to] = ACTIONS(3197), - [anon_sym_downto] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_end] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_DOT_DOT2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [aux_sym__compound_type_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_open] = ACTIONS(3012), + [anon_sym_LBRACK_LT] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3010), + [anon_sym_POUNDload] = ACTIONS(3010), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), + [sym__dedent] = ACTIONS(3010), }, [930] = { [sym_xml_doc] = STATE(930), @@ -162355,406 +168080,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(930), [sym_fsi_directive_decl] = STATE(930), [sym_preproc_line] = STATE(930), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_GT_RBRACK] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_to] = ACTIONS(3189), - [anon_sym_downto] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_DOT_DOT2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_GT_RBRACK] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_to] = ACTIONS(3242), + [anon_sym_downto] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_end] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_DOT_DOT2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [931] = { - [sym_type_arguments] = STATE(1316), - [sym_long_identifier] = STATE(1327), + [sym_elif_expression] = STATE(1000), [sym_xml_doc] = STATE(931), [sym_block_comment] = STATE(931), [sym_line_comment] = STATE(931), [sym_compiler_directive_decl] = STATE(931), [sym_fsi_directive_decl] = STATE(931), [sym_preproc_line] = STATE(931), - [aux_sym__compound_type_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(3201), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(3207), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [aux_sym_if_expression_repeat1] = STATE(931), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_GT_RBRACK] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_to] = ACTIONS(3344), + [anon_sym_downto] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_end] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_DOT_DOT2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [932] = { + [sym_type_arguments] = STATE(1024), + [sym_long_identifier] = STATE(1038), [sym_xml_doc] = STATE(932), [sym_block_comment] = STATE(932), [sym_line_comment] = STATE(932), [sym_compiler_directive_decl] = STATE(932), [sym_fsi_directive_decl] = STATE(932), [sym_preproc_line] = STATE(932), - [sym_identifier] = ACTIONS(3007), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_LBRACK_LT] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3009), - [anon_sym_POUNDload] = ACTIONS(3009), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), - [sym__dedent] = ACTIONS(3009), + [aux_sym__compound_type_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_open] = ACTIONS(3154), + [anon_sym_LBRACK_LT] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3156), + [anon_sym_POUNDload] = ACTIONS(3156), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), + [sym__dedent] = ACTIONS(3156), }, [933] = { - [sym_type_arguments] = STATE(1316), - [sym_long_identifier] = STATE(1327), + [sym_type_arguments] = STATE(1024), + [sym_long_identifier] = STATE(1038), [sym_xml_doc] = STATE(933), [sym_block_comment] = STATE(933), [sym_line_comment] = STATE(933), [sym_compiler_directive_decl] = STATE(933), [sym_fsi_directive_decl] = STATE(933), [sym_preproc_line] = STATE(933), - [aux_sym__compound_type_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(3201), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(3207), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym__compound_type_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_LBRACK_LT] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3090), + [anon_sym_POUNDload] = ACTIONS(3090), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), }, [934] = { [sym_xml_doc] = STATE(934), @@ -162763,610 +168492,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(934), [sym_fsi_directive_decl] = STATE(934), [sym_preproc_line] = STATE(934), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_GT_RBRACK] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3353), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_to] = ACTIONS(3351), + [anon_sym_downto] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_end] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_DOT_DOT2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [935] = { - [sym_type_arguments] = STATE(1316), - [sym_long_identifier] = STATE(1327), [sym_xml_doc] = STATE(935), [sym_block_comment] = STATE(935), [sym_line_comment] = STATE(935), [sym_compiler_directive_decl] = STATE(935), [sym_fsi_directive_decl] = STATE(935), [sym_preproc_line] = STATE(935), - [aux_sym__compound_type_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(3201), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(3207), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_GT_RBRACK] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_RBRACK] = ACTIONS(3357), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_to] = ACTIONS(3355), + [anon_sym_downto] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_end] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_DOT_DOT2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(3359), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [936] = { - [sym_type_arguments] = STATE(1316), - [sym_long_identifier] = STATE(1327), [sym_xml_doc] = STATE(936), [sym_block_comment] = STATE(936), [sym_line_comment] = STATE(936), [sym_compiler_directive_decl] = STATE(936), [sym_fsi_directive_decl] = STATE(936), [sym_preproc_line] = STATE(936), - [aux_sym__compound_type_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(3201), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(3207), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_GT_RBRACK] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_RBRACK] = ACTIONS(3353), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_to] = ACTIONS(3351), + [anon_sym_downto] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_end] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_DOT_DOT2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [937] = { + [sym_type_arguments] = STATE(1024), + [sym_long_identifier] = STATE(1038), [sym_xml_doc] = STATE(937), [sym_block_comment] = STATE(937), [sym_line_comment] = STATE(937), [sym_compiler_directive_decl] = STATE(937), [sym_fsi_directive_decl] = STATE(937), [sym_preproc_line] = STATE(937), - [sym_identifier] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [aux_sym__compound_type_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3332), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [938] = { - [sym_type_arguments] = STATE(1256), - [sym_long_identifier] = STATE(1323), [sym_xml_doc] = STATE(938), [sym_block_comment] = STATE(938), [sym_line_comment] = STATE(938), [sym_compiler_directive_decl] = STATE(938), [sym_fsi_directive_decl] = STATE(938), [sym_preproc_line] = STATE(938), - [aux_sym__compound_type_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(3215), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [anon_sym_POUNDendif] = ACTIONS(2792), - [anon_sym_POUNDelse] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_GT_RBRACK] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_RBRACK] = ACTIONS(3363), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_to] = ACTIONS(3361), + [anon_sym_downto] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_end] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_DOT_DOT2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [939] = { - [sym_elif_expression] = STATE(1110), [sym_xml_doc] = STATE(939), [sym_block_comment] = STATE(939), [sym_line_comment] = STATE(939), [sym_compiler_directive_decl] = STATE(939), [sym_fsi_directive_decl] = STATE(939), [sym_preproc_line] = STATE(939), - [aux_sym_if_expression_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_open] = ACTIONS(2996), - [anon_sym_LBRACK_LT] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2998), - [anon_sym_POUNDload] = ACTIONS(2998), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), - [sym__dedent] = ACTIONS(2998), + [aux_sym_long_identifier_repeat1] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3261), + [anon_sym_LBRACK_LT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3264), + [anon_sym_POUNDload] = ACTIONS(3264), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [940] = { [sym_xml_doc] = STATE(940), @@ -163375,100 +169109,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(940), [sym_fsi_directive_decl] = STATE(940), [sym_preproc_line] = STATE(940), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_GT_RBRACK] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_to] = ACTIONS(3167), - [anon_sym_downto] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_end] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym_type_argument_repeat1] = STATE(944), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3369), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [941] = { [sym_xml_doc] = STATE(941), @@ -163477,100 +169211,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(941), [sym_fsi_directive_decl] = STATE(941), [sym_preproc_line] = STATE(941), - [sym_identifier] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [aux_sym_long_identifier_repeat1] = STATE(941), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3372), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [942] = { [sym_xml_doc] = STATE(942), @@ -163579,202 +169313,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(942), [sym_fsi_directive_decl] = STATE(942), [sym_preproc_line] = STATE(942), - [sym_identifier] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_LBRACK_LT] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3222), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2992), - [anon_sym_POUNDload] = ACTIONS(2992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), - [sym__dedent] = ACTIONS(2992), + [aux_sym_type_argument_repeat1] = STATE(942), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3375), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [943] = { - [sym_type_arguments] = STATE(1316), - [sym_long_identifier] = STATE(1327), [sym_xml_doc] = STATE(943), [sym_block_comment] = STATE(943), [sym_line_comment] = STATE(943), [sym_compiler_directive_decl] = STATE(943), [sym_fsi_directive_decl] = STATE(943), [sym_preproc_line] = STATE(943), - [aux_sym__compound_type_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(3207), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [aux_sym__compound_type_repeat1] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_open] = ACTIONS(3212), + [anon_sym_LBRACK_LT] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3214), + [anon_sym_POUNDload] = ACTIONS(3214), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [944] = { [sym_xml_doc] = STATE(944), @@ -163783,202 +169517,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(944), [sym_fsi_directive_decl] = STATE(944), [sym_preproc_line] = STATE(944), - [aux_sym_long_identifier_repeat1] = STATE(962), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_GT_RBRACK] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_to] = ACTIONS(2953), - [anon_sym_downto] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_end] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_DOT_DOT2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [aux_sym_type_argument_repeat1] = STATE(942), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_open] = ACTIONS(3230), + [anon_sym_LBRACK_LT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3232), + [anon_sym_POUNDload] = ACTIONS(3232), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [945] = { + [sym__else_expression] = STATE(1372), + [sym_elif_expression] = STATE(1158), [sym_xml_doc] = STATE(945), [sym_block_comment] = STATE(945), [sym_line_comment] = STATE(945), [sym_compiler_directive_decl] = STATE(945), [sym_fsi_directive_decl] = STATE(945), [sym_preproc_line] = STATE(945), - [sym_identifier] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3019), - [anon_sym_POUNDload] = ACTIONS(3019), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3019), + [aux_sym_if_expression_repeat1] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_open] = ACTIONS(3249), + [anon_sym_LBRACK_LT] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_elif] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3251), + [anon_sym_POUNDload] = ACTIONS(3251), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [946] = { [sym_xml_doc] = STATE(946), @@ -163987,100 +169721,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(946), [sym_fsi_directive_decl] = STATE(946), [sym_preproc_line] = STATE(946), - [sym_identifier] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [aux_sym__compound_type_repeat1] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [947] = { [sym_xml_doc] = STATE(947), @@ -164089,100 +169823,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(947), [sym_fsi_directive_decl] = STATE(947), [sym_preproc_line] = STATE(947), - [sym_identifier] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3025), - [anon_sym_LBRACK_LT] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3027), - [anon_sym_POUNDload] = ACTIONS(3027), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), - [sym__dedent] = ACTIONS(3027), + [aux_sym_long_identifier_repeat1] = STATE(941), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3385), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [948] = { [sym_xml_doc] = STATE(948), @@ -164191,100 +169925,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(948), [sym_fsi_directive_decl] = STATE(948), [sym_preproc_line] = STATE(948), - [aux_sym_long_identifier_repeat1] = STATE(948), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2902), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_to] = ACTIONS(2900), - [anon_sym_downto] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_long_identifier_repeat1] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3385), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [949] = { [sym_xml_doc] = STATE(949), @@ -164293,202 +170027,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(949), [sym_fsi_directive_decl] = STATE(949), [sym_preproc_line] = STATE(949), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_GT_RBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_to] = ACTIONS(3231), - [anon_sym_downto] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_end] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_DOT_DOT2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_GT_RBRACK] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_to] = ACTIONS(3387), + [anon_sym_downto] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_end] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_DOT_DOT2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(3391), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [950] = { + [sym__else_expression] = STATE(1423), + [sym_elif_expression] = STATE(1158), [sym_xml_doc] = STATE(950), [sym_block_comment] = STATE(950), [sym_line_comment] = STATE(950), [sym_compiler_directive_decl] = STATE(950), [sym_fsi_directive_decl] = STATE(950), [sym_preproc_line] = STATE(950), - [sym_identifier] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [aux_sym_if_expression_repeat1] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_open] = ACTIONS(3281), + [anon_sym_LBRACK_LT] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_elif] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3283), + [anon_sym_POUNDload] = ACTIONS(3283), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [951] = { [sym_xml_doc] = STATE(951), @@ -164497,100 +170231,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(951), [sym_fsi_directive_decl] = STATE(951), [sym_preproc_line] = STATE(951), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_GT_RBRACK] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_to] = ACTIONS(3239), - [anon_sym_downto] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_end] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_DOT_DOT2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_open] = ACTIONS(3300), + [anon_sym_LBRACK_LT] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3302), + [anon_sym_POUNDload] = ACTIONS(3302), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [952] = { [sym_xml_doc] = STATE(952), @@ -164599,202 +170332,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(952), [sym_fsi_directive_decl] = STATE(952), [sym_preproc_line] = STATE(952), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_GT_RBRACK] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_RBRACK] = ACTIONS(3247), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_to] = ACTIONS(3245), - [anon_sym_downto] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_end] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_DOT_DOT2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [aux_sym_type_argument_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_open] = ACTIONS(3230), + [anon_sym_LBRACK_LT] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3232), + [anon_sym_POUNDload] = ACTIONS(3232), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), + [sym__dedent] = ACTIONS(3232), }, [953] = { + [sym_type_arguments] = STATE(1250), + [sym_long_identifier] = STATE(1206), [sym_xml_doc] = STATE(953), [sym_block_comment] = STATE(953), [sym_line_comment] = STATE(953), [sym_compiler_directive_decl] = STATE(953), [sym_fsi_directive_decl] = STATE(953), [sym_preproc_line] = STATE(953), - [sym_identifier] = ACTIONS(3003), - [anon_sym_module] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_LBRACK_LT] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_type] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3005), - [anon_sym_POUNDload] = ACTIONS(3005), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3005), + [aux_sym__compound_type_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_DOT_DOT2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3397), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), + [sym__dedent] = ACTIONS(3156), }, [954] = { [sym_xml_doc] = STATE(954), @@ -164803,508 +170534,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(954), [sym_fsi_directive_decl] = STATE(954), [sym_preproc_line] = STATE(954), - [sym_identifier] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3033), - [anon_sym_LBRACK_LT] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3039), - [anon_sym_POUNDload] = ACTIONS(3039), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), - [sym__dedent] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_GT_RBRACK] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_to] = ACTIONS(3387), + [anon_sym_downto] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_end] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_DOT_DOT2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [955] = { - [sym_type_arguments] = STATE(1256), - [sym_long_identifier] = STATE(1323), + [sym_elif_expression] = STATE(1158), [sym_xml_doc] = STATE(955), [sym_block_comment] = STATE(955), [sym_line_comment] = STATE(955), [sym_compiler_directive_decl] = STATE(955), [sym_fsi_directive_decl] = STATE(955), [sym_preproc_line] = STATE(955), - [aux_sym__compound_type_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(3249), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(3215), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [anon_sym_POUNDendif] = ACTIONS(2812), - [anon_sym_POUNDelse] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [aux_sym_if_expression_repeat1] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_LBRACK_LT] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3346), + [anon_sym_POUNDload] = ACTIONS(3346), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [956] = { - [sym_type_arguments] = STATE(1256), - [sym_long_identifier] = STATE(1323), [sym_xml_doc] = STATE(956), [sym_block_comment] = STATE(956), [sym_line_comment] = STATE(956), [sym_compiler_directive_decl] = STATE(956), [sym_fsi_directive_decl] = STATE(956), [sym_preproc_line] = STATE(956), - [aux_sym__compound_type_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(3249), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(3215), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [anon_sym_POUNDendif] = ACTIONS(2848), - [anon_sym_POUNDelse] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [aux_sym_rules_repeat1] = STATE(974), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_GT_RBRACK] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_RBRACK] = ACTIONS(3406), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_to] = ACTIONS(3404), + [anon_sym_downto] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_end] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_DOT_DOT2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(3410), }, [957] = { - [sym_type_arguments] = STATE(1256), - [sym_long_identifier] = STATE(1323), + [sym__else_expression] = STATE(1669), + [sym_elif_expression] = STATE(1192), [sym_xml_doc] = STATE(957), [sym_block_comment] = STATE(957), [sym_line_comment] = STATE(957), [sym_compiler_directive_decl] = STATE(957), [sym_fsi_directive_decl] = STATE(957), [sym_preproc_line] = STATE(957), - [aux_sym__compound_type_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(3249), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(3215), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [anon_sym_POUNDendif] = ACTIONS(2808), - [anon_sym_POUNDelse] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym_if_expression_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_open] = ACTIONS(3281), + [anon_sym_LBRACK_LT] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_elif] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3283), + [anon_sym_POUNDload] = ACTIONS(3283), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), + [sym__dedent] = ACTIONS(3283), }, [958] = { - [sym_type_arguments] = STATE(1256), - [sym_long_identifier] = STATE(1323), [sym_xml_doc] = STATE(958), [sym_block_comment] = STATE(958), [sym_line_comment] = STATE(958), [sym_compiler_directive_decl] = STATE(958), [sym_fsi_directive_decl] = STATE(958), [sym_preproc_line] = STATE(958), - [aux_sym__compound_type_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(3249), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(3215), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [anon_sym_POUNDendif] = ACTIONS(2804), - [anon_sym_POUNDelse] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_open] = ACTIONS(3361), + [anon_sym_LBRACK_LT] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3363), + [anon_sym_POUNDload] = ACTIONS(3363), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [959] = { [sym_xml_doc] = STATE(959), @@ -165313,100 +171039,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(959), [sym_fsi_directive_decl] = STATE(959), [sym_preproc_line] = STATE(959), - [sym_identifier] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_LBRACK_LT] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3031), - [anon_sym_POUNDload] = ACTIONS(3031), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), - [sym__dedent] = ACTIONS(3031), + [aux_sym__compound_type_repeat1] = STATE(965), + [sym_identifier] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_open] = ACTIONS(3212), + [anon_sym_LBRACK_LT] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3214), + [anon_sym_POUNDload] = ACTIONS(3214), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), + [sym__dedent] = ACTIONS(3214), }, [960] = { [sym_xml_doc] = STATE(960), @@ -165415,304 +171140,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(960), [sym_fsi_directive_decl] = STATE(960), [sym_preproc_line] = STATE(960), - [sym_identifier] = ACTIONS(3013), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3013), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_GT_RBRACK] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_to] = ACTIONS(3417), + [anon_sym_downto] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_end] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_DOT_DOT2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(3421), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [961] = { + [sym_type_arguments] = STATE(1248), + [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(961), [sym_block_comment] = STATE(961), [sym_line_comment] = STATE(961), [sym_compiler_directive_decl] = STATE(961), [sym_fsi_directive_decl] = STATE(961), [sym_preproc_line] = STATE(961), - [sym_identifier] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [aux_sym__compound_type_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3427), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), + [sym__dedent] = ACTIONS(3156), }, [962] = { + [sym_type_arguments] = STATE(1250), + [sym_long_identifier] = STATE(1206), [sym_xml_doc] = STATE(962), [sym_block_comment] = STATE(962), [sym_line_comment] = STATE(962), [sym_compiler_directive_decl] = STATE(962), [sym_fsi_directive_decl] = STATE(962), [sym_preproc_line] = STATE(962), - [aux_sym_long_identifier_repeat1] = STATE(948), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_GT_RBRACK] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_RBRACK] = ACTIONS(2968), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_to] = ACTIONS(2966), - [anon_sym_downto] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_end] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_DOT_DOT2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [aux_sym__compound_type_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3397), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), + [sym__dedent] = ACTIONS(3010), }, [963] = { [sym_xml_doc] = STATE(963), @@ -165721,202 +171443,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(963), [sym_fsi_directive_decl] = STATE(963), [sym_preproc_line] = STATE(963), - [sym_identifier] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_LBRACK_LT] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3023), - [anon_sym_POUNDload] = ACTIONS(3023), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), - [sym__dedent] = ACTIONS(3023), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [964] = { + [sym_type_arguments] = STATE(1250), + [sym_long_identifier] = STATE(1206), [sym_xml_doc] = STATE(964), [sym_block_comment] = STATE(964), [sym_line_comment] = STATE(964), [sym_compiler_directive_decl] = STATE(964), [sym_fsi_directive_decl] = STATE(964), [sym_preproc_line] = STATE(964), - [sym_identifier] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_LBRACK_LT] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3045), - [anon_sym_POUNDload] = ACTIONS(3045), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), - [sym__dedent] = ACTIONS(3045), + [aux_sym__compound_type_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3397), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [965] = { [sym_xml_doc] = STATE(965), @@ -165925,100 +171645,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(965), [sym_fsi_directive_decl] = STATE(965), [sym_preproc_line] = STATE(965), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_GT_RBRACK] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_to] = ACTIONS(3167), - [anon_sym_downto] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_end] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym__compound_type_repeat1] = STATE(965), + [sym_identifier] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [966] = { [sym_xml_doc] = STATE(966), @@ -166027,100 +171746,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(966), [sym_fsi_directive_decl] = STATE(966), [sym_preproc_line] = STATE(966), - [sym_identifier] = ACTIONS(3047), - [anon_sym_module] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_LBRACK_LT] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3049), - [anon_sym_POUNDload] = ACTIONS(3049), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), - [sym__dedent] = ACTIONS(3049), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_GT_RBRACK] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_to] = ACTIONS(2768), + [anon_sym_downto] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_end] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(2828), + [aux_sym_decimal_token1] = ACTIONS(2794), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [967] = { [sym_xml_doc] = STATE(967), @@ -166129,292 +171847,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(967), [sym_fsi_directive_decl] = STATE(967), [sym_preproc_line] = STATE(967), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_GT_RBRACK] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_RBRACK] = ACTIONS(3255), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_to] = ACTIONS(3253), - [anon_sym_downto] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_end] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_DOT_DOT2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_LBRACK_LT] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3342), + [anon_sym_POUNDload] = ACTIONS(3342), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [968] = { + [sym_type_arguments] = STATE(1248), + [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(968), [sym_block_comment] = STATE(968), [sym_line_comment] = STATE(968), [sym_compiler_directive_decl] = STATE(968), [sym_fsi_directive_decl] = STATE(968), [sym_preproc_line] = STATE(968), - [aux_sym_rules_repeat1] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(3110), - [sym_identifier] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_module] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3108), - [anon_sym_LBRACK_LT] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_type] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3110), - [anon_sym_POUNDload] = ACTIONS(3110), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3259), + [aux_sym__compound_type_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3427), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + [sym__dedent] = ACTIONS(3022), }, [969] = { + [sym_type_arguments] = STATE(1250), + [sym_long_identifier] = STATE(1206), [sym_xml_doc] = STATE(969), [sym_block_comment] = STATE(969), [sym_line_comment] = STATE(969), [sym_compiler_directive_decl] = STATE(969), [sym_fsi_directive_decl] = STATE(969), [sym_preproc_line] = STATE(969), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_GT_RBRACK] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_RBRACK] = ACTIONS(3264), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_to] = ACTIONS(3262), - [anon_sym_downto] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_end] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_DOT_DOT2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), + [aux_sym__compound_type_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_DOT_DOT2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3397), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -166422,8 +172139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), }, [970] = { [sym_xml_doc] = STATE(970), @@ -166432,99 +172150,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(970), [sym_fsi_directive_decl] = STATE(970), [sym_preproc_line] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3177), - [anon_sym_namespace] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_LBRACK_LT] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3266), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3179), - [anon_sym_POUNDload] = ACTIONS(3179), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_open] = ACTIONS(3336), + [anon_sym_LBRACK_LT] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3338), + [anon_sym_POUNDload] = ACTIONS(3338), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [971] = { [sym_xml_doc] = STATE(971), @@ -166533,99 +172251,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(971), [sym_fsi_directive_decl] = STATE(971), [sym_preproc_line] = STATE(971), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_GT_RBRACK] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_RBRACK] = ACTIONS(3270), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_to] = ACTIONS(3268), - [anon_sym_downto] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_end] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_DOT_DOT2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_GT_RBRACK] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_RBRACK] = ACTIONS(3440), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_to] = ACTIONS(3438), + [anon_sym_downto] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_end] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [972] = { [sym_xml_doc] = STATE(972), @@ -166634,99 +172352,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(972), [sym_fsi_directive_decl] = STATE(972), [sym_preproc_line] = STATE(972), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_GT_RBRACK] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_RBRACK] = ACTIONS(3274), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_to] = ACTIONS(3272), - [anon_sym_downto] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_end] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_DOT_DOT2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [aux_sym_rules_repeat1] = STATE(986), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_GT_RBRACK] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_RBRACK] = ACTIONS(3444), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_to] = ACTIONS(3442), + [anon_sym_downto] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_end] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_DOT_DOT2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(3446), }, [973] = { [sym_xml_doc] = STATE(973), @@ -166735,99 +172453,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(973), [sym_fsi_directive_decl] = STATE(973), [sym_preproc_line] = STATE(973), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_GT_RBRACK] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_RBRACK] = ACTIONS(3278), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_to] = ACTIONS(3276), - [anon_sym_downto] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_end] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_DOT_DOT2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [aux_sym_long_identifier_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), }, [974] = { [sym_xml_doc] = STATE(974), @@ -166836,200 +172554,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(974), [sym_fsi_directive_decl] = STATE(974), [sym_preproc_line] = STATE(974), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_GT_RBRACK] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3282), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_to] = ACTIONS(3280), - [anon_sym_downto] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_end] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_DOT_DOT2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [aux_sym_rules_repeat1] = STATE(998), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_GT_RBRACK] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_RBRACK] = ACTIONS(3444), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_to] = ACTIONS(3442), + [anon_sym_downto] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_end] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_DOT_DOT2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(3446), }, [975] = { + [sym__else_expression] = STATE(1654), + [sym_elif_expression] = STATE(1192), [sym_xml_doc] = STATE(975), [sym_block_comment] = STATE(975), [sym_line_comment] = STATE(975), [sym_compiler_directive_decl] = STATE(975), [sym_fsi_directive_decl] = STATE(975), [sym_preproc_line] = STATE(975), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_GT_RBRACK] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_RBRACK] = ACTIONS(3286), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_to] = ACTIONS(3284), - [anon_sym_downto] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_end] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_DOT_DOT2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [aux_sym_if_expression_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_open] = ACTIONS(3249), + [anon_sym_LBRACK_LT] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_elif] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3251), + [anon_sym_POUNDload] = ACTIONS(3251), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), + [sym__dedent] = ACTIONS(3251), }, [976] = { [sym_xml_doc] = STATE(976), @@ -167038,99 +172756,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(976), [sym_fsi_directive_decl] = STATE(976), [sym_preproc_line] = STATE(976), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_GT_RBRACK] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_RBRACK] = ACTIONS(3290), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_to] = ACTIONS(3288), - [anon_sym_downto] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_end] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_DOT_DOT2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_GT_RBRACK] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_RBRACK] = ACTIONS(3453), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_to] = ACTIONS(3451), + [anon_sym_downto] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_end] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_DOT_DOT2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [977] = { [sym_xml_doc] = STATE(977), @@ -167139,99 +172857,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(977), [sym_fsi_directive_decl] = STATE(977), [sym_preproc_line] = STATE(977), - [aux_sym_type_argument_repeat1] = STATE(1095), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3292), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [978] = { [sym_xml_doc] = STATE(978), @@ -167240,99 +172958,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(978), [sym_fsi_directive_decl] = STATE(978), [sym_preproc_line] = STATE(978), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_GT_RBRACK] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_to] = ACTIONS(3295), - [anon_sym_downto] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_end] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_DOT_DOT2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_GT_RBRACK] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_RBRACK] = ACTIONS(3457), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_to] = ACTIONS(3455), + [anon_sym_downto] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_end] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_DOT_DOT2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [979] = { [sym_xml_doc] = STATE(979), @@ -167341,200 +173059,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(979), [sym_fsi_directive_decl] = STATE(979), [sym_preproc_line] = STATE(979), - [aux_sym__compound_type_repeat1] = STATE(979), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_DOT_DOT2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_open] = ACTIONS(3355), + [anon_sym_LBRACK_LT] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(3459), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3357), + [anon_sym_POUNDload] = ACTIONS(3357), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [980] = { - [sym_type_arguments] = STATE(1502), - [sym_long_identifier] = STATE(1507), [sym_xml_doc] = STATE(980), [sym_block_comment] = STATE(980), [sym_line_comment] = STATE(980), [sym_compiler_directive_decl] = STATE(980), [sym_fsi_directive_decl] = STATE(980), [sym_preproc_line] = STATE(980), - [aux_sym__compound_type_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(3308), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [981] = { [sym_xml_doc] = STATE(981), @@ -167543,200 +173261,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(981), [sym_fsi_directive_decl] = STATE(981), [sym_preproc_line] = STATE(981), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_GT_RBRACK] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_RBRACK] = ACTIONS(3314), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_to] = ACTIONS(3312), - [anon_sym_downto] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_end] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_DOT_DOT2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [982] = { - [sym_type_arguments] = STATE(1478), - [sym_long_identifier] = STATE(1457), [sym_xml_doc] = STATE(982), [sym_block_comment] = STATE(982), [sym_line_comment] = STATE(982), [sym_compiler_directive_decl] = STATE(982), [sym_fsi_directive_decl] = STATE(982), [sym_preproc_line] = STATE(982), - [aux_sym__compound_type_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_LT2] = ACTIONS(3322), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [anon_sym_POUNDendif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [983] = { [sym_xml_doc] = STATE(983), @@ -167745,301 +173463,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(983), [sym_fsi_directive_decl] = STATE(983), [sym_preproc_line] = STATE(983), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_GT_RBRACK] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_RBRACK] = ACTIONS(3328), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_to] = ACTIONS(3326), - [anon_sym_downto] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_end] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_DOT_DOT2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_open] = ACTIONS(3304), + [anon_sym_LBRACK_LT] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3306), + [anon_sym_POUNDload] = ACTIONS(3306), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [984] = { - [sym_type_arguments] = STATE(1478), - [sym_long_identifier] = STATE(1457), [sym_xml_doc] = STATE(984), [sym_block_comment] = STATE(984), [sym_line_comment] = STATE(984), [sym_compiler_directive_decl] = STATE(984), [sym_fsi_directive_decl] = STATE(984), [sym_preproc_line] = STATE(984), - [aux_sym__compound_type_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_open] = ACTIONS(3322), + [anon_sym_LBRACK_LT] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), [anon_sym_LT2] = ACTIONS(3322), [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [anon_sym_POUNDendif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3324), + [anon_sym_POUNDload] = ACTIONS(3324), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [985] = { - [sym_type_arguments] = STATE(1478), - [sym_long_identifier] = STATE(1457), [sym_xml_doc] = STATE(985), [sym_block_comment] = STATE(985), [sym_line_comment] = STATE(985), [sym_compiler_directive_decl] = STATE(985), [sym_fsi_directive_decl] = STATE(985), [sym_preproc_line] = STATE(985), - [aux_sym__compound_type_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_LT2] = ACTIONS(3322), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [anon_sym_POUNDendif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_LBRACK_LT] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3298), + [anon_sym_POUNDload] = ACTIONS(3298), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [986] = { [sym_xml_doc] = STATE(986), @@ -168048,99 +173766,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(986), [sym_fsi_directive_decl] = STATE(986), [sym_preproc_line] = STATE(986), - [aux_sym_long_identifier_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_DOT_DOT2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [aux_sym_rules_repeat1] = STATE(998), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_GT_RBRACK] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_RBRACK] = ACTIONS(3465), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_to] = ACTIONS(3463), + [anon_sym_downto] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_end] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_DOT_DOT2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(3467), }, [987] = { [sym_xml_doc] = STATE(987), @@ -168149,200 +173867,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(987), [sym_fsi_directive_decl] = STATE(987), [sym_preproc_line] = STATE(987), - [aux_sym_long_identifier_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_DOT_DOT2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [aux_sym_long_identifier_repeat1] = STATE(990), + [sym_identifier] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [988] = { + [sym_type_arguments] = STATE(1248), + [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(988), [sym_block_comment] = STATE(988), [sym_line_comment] = STATE(988), [sym_compiler_directive_decl] = STATE(988), [sym_fsi_directive_decl] = STATE(988), [sym_preproc_line] = STATE(988), - [aux_sym_long_identifier_repeat1] = STATE(988), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym__compound_type_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3427), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), + [sym__dedent] = ACTIONS(3010), }, [989] = { [sym_xml_doc] = STATE(989), @@ -168351,99 +174069,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(989), [sym_fsi_directive_decl] = STATE(989), [sym_preproc_line] = STATE(989), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_GT_RBRACK] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_to] = ACTIONS(3339), - [anon_sym_downto] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_end] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_DOT_DOT2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [aux_sym_long_identifier_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3261), + [anon_sym_LBRACK_LT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3470), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3264), + [anon_sym_POUNDload] = ACTIONS(3264), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [990] = { [sym_xml_doc] = STATE(990), @@ -168452,99 +174170,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(990), [sym_fsi_directive_decl] = STATE(990), [sym_preproc_line] = STATE(990), - [aux_sym_type_argument_repeat1] = STATE(990), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_DOT_DOT2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3343), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [aux_sym_long_identifier_repeat1] = STATE(990), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3474), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [991] = { [sym_xml_doc] = STATE(991), @@ -168553,200 +174271,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(991), [sym_fsi_directive_decl] = STATE(991), [sym_preproc_line] = STATE(991), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_GT_RBRACK] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_RBRACK] = ACTIONS(3348), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_to] = ACTIONS(3346), - [anon_sym_downto] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_end] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_DOT_DOT2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [aux_sym_type_argument_repeat1] = STATE(952), + [sym_identifier] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3477), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [992] = { + [sym_type_arguments] = STATE(1248), + [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(992), [sym_block_comment] = STATE(992), [sym_line_comment] = STATE(992), [sym_compiler_directive_decl] = STATE(992), [sym_fsi_directive_decl] = STATE(992), [sym_preproc_line] = STATE(992), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_GT_RBRACK] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3352), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_to] = ACTIONS(3350), - [anon_sym_downto] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_end] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_DOT_DOT2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [aux_sym__compound_type_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3427), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [993] = { [sym_xml_doc] = STATE(993), @@ -168755,99 +174473,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(993), [sym_fsi_directive_decl] = STATE(993), [sym_preproc_line] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_LBRACK_LT] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3191), - [anon_sym_POUNDload] = ACTIONS(3191), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_GT_RBRACK] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_RBRACK] = ACTIONS(3440), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_to] = ACTIONS(3438), + [anon_sym_downto] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_end] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [994] = { [sym_xml_doc] = STATE(994), @@ -168856,99 +174574,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(994), [sym_fsi_directive_decl] = STATE(994), [sym_preproc_line] = STATE(994), - [aux_sym_type_argument_repeat1] = STATE(990), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_DOT_DOT2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), - [sym__dedent] = ACTIONS(2943), + [aux_sym_type_argument_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3480), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [995] = { [sym_xml_doc] = STATE(995), @@ -168957,200 +174675,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(995), [sym_fsi_directive_decl] = STATE(995), [sym_preproc_line] = STATE(995), - [aux_sym_long_identifier_repeat1] = STATE(988), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_DOT_DOT2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_open] = ACTIONS(3308), + [anon_sym_LBRACK_LT] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3310), + [anon_sym_POUNDload] = ACTIONS(3310), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [996] = { + [sym_type_arguments] = STATE(1248), + [sym_long_identifier] = STATE(1191), [sym_xml_doc] = STATE(996), [sym_block_comment] = STATE(996), [sym_line_comment] = STATE(996), [sym_compiler_directive_decl] = STATE(996), [sym_fsi_directive_decl] = STATE(996), [sym_preproc_line] = STATE(996), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_GT_RBRACK] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_RBRACK] = ACTIONS(3358), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_to] = ACTIONS(3356), - [anon_sym_downto] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_end] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_DOT_DOT2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [aux_sym__compound_type_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3427), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3429), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), }, [997] = { [sym_xml_doc] = STATE(997), @@ -169159,99 +174877,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(997), [sym_fsi_directive_decl] = STATE(997), [sym_preproc_line] = STATE(997), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_GT_RBRACK] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_RBRACK] = ACTIONS(3362), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_to] = ACTIONS(3360), - [anon_sym_downto] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_end] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_DOT_DOT2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_open] = ACTIONS(3318), + [anon_sym_LBRACK_LT] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3320), + [anon_sym_POUNDload] = ACTIONS(3320), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [998] = { [sym_xml_doc] = STATE(998), @@ -169260,99 +174978,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(998), [sym_fsi_directive_decl] = STATE(998), [sym_preproc_line] = STATE(998), - [aux_sym_rules_repeat1] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(3162), - [sym_identifier] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_open] = ACTIONS(3160), - [anon_sym_LBRACK_LT] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3162), - [anon_sym_POUNDload] = ACTIONS(3162), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3364), + [aux_sym_rules_repeat1] = STATE(998), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_GT_RBRACK] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_RBRACK] = ACTIONS(3485), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_to] = ACTIONS(3483), + [anon_sym_downto] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_end] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_DOT_DOT2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3490), }, [999] = { [sym_xml_doc] = STATE(999), @@ -169361,99 +175079,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(999), [sym_fsi_directive_decl] = STATE(999), [sym_preproc_line] = STATE(999), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_GT_RBRACK] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_to] = ACTIONS(3367), - [anon_sym_downto] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_end] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_DOT_DOT2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1000] = { [sym_xml_doc] = STATE(1000), @@ -169462,494 +175180,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1000), [sym_fsi_directive_decl] = STATE(1000), [sym_preproc_line] = STATE(1000), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_GT_RBRACK] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_to] = ACTIONS(3371), - [anon_sym_downto] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_end] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_DOT_DOT2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), - }, - [1001] = { - [sym_xml_doc] = STATE(1001), - [sym_block_comment] = STATE(1001), - [sym_line_comment] = STATE(1001), - [sym_compiler_directive_decl] = STATE(1001), - [sym_fsi_directive_decl] = STATE(1001), - [sym_preproc_line] = STATE(1001), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_GT_RBRACK] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_RBRACK] = ACTIONS(3377), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_to] = ACTIONS(3375), - [anon_sym_downto] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_end] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_DOT_DOT2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), - }, - [1002] = { - [sym_xml_doc] = STATE(1002), - [sym_block_comment] = STATE(1002), - [sym_line_comment] = STATE(1002), - [sym_compiler_directive_decl] = STATE(1002), - [sym_fsi_directive_decl] = STATE(1002), - [sym_preproc_line] = STATE(1002), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_GT_RBRACK] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_to] = ACTIONS(3379), - [anon_sym_downto] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_end] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_DOT_DOT2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), - }, - [1003] = { - [sym_xml_doc] = STATE(1003), - [sym_block_comment] = STATE(1003), - [sym_line_comment] = STATE(1003), - [sym_compiler_directive_decl] = STATE(1003), - [sym_fsi_directive_decl] = STATE(1003), - [sym_preproc_line] = STATE(1003), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_GT_RBRACK] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_to] = ACTIONS(3383), - [anon_sym_downto] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_end] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_DOT_DOT2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), - }, - [1004] = { - [sym_xml_doc] = STATE(1004), - [sym_block_comment] = STATE(1004), - [sym_line_comment] = STATE(1004), - [sym_compiler_directive_decl] = STATE(1004), - [sym_fsi_directive_decl] = STATE(1004), - [sym_preproc_line] = STATE(1004), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_GT_RBRACK] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_to] = ACTIONS(3387), - [anon_sym_downto] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_end] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_DOT_DOT2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_GT_RBRACK] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_RBRACK] = ACTIONS(3495), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_to] = ACTIONS(3493), + [anon_sym_downto] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_end] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DOT_DOT2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -169957,8 +175271,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + }, + [1001] = { + [sym_xml_doc] = STATE(1001), + [sym_block_comment] = STATE(1001), + [sym_line_comment] = STATE(1001), + [sym_compiler_directive_decl] = STATE(1001), + [sym_fsi_directive_decl] = STATE(1001), + [sym_preproc_line] = STATE(1001), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_open] = ACTIONS(3292), + [anon_sym_LBRACK_LT] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3294), + [anon_sym_POUNDload] = ACTIONS(3294), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + }, + [1002] = { + [sym_type_arguments] = STATE(1250), + [sym_long_identifier] = STATE(1206), + [sym_xml_doc] = STATE(1002), + [sym_block_comment] = STATE(1002), + [sym_line_comment] = STATE(1002), + [sym_compiler_directive_decl] = STATE(1002), + [sym_fsi_directive_decl] = STATE(1002), + [sym_preproc_line] = STATE(1002), + [aux_sym__compound_type_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(3431), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_DOT_DOT2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3397), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3399), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + [sym__dedent] = ACTIONS(3022), + }, + [1003] = { + [sym_type_arguments] = STATE(1461), + [sym_long_identifier] = STATE(1376), + [sym_xml_doc] = STATE(1003), + [sym_block_comment] = STATE(1003), + [sym_line_comment] = STATE(1003), + [sym_compiler_directive_decl] = STATE(1003), + [sym_fsi_directive_decl] = STATE(1003), + [sym_preproc_line] = STATE(1003), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3503), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [anon_sym_POUNDendif] = ACTIONS(3022), + [anon_sym_POUNDelse] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + }, + [1004] = { + [sym_xml_doc] = STATE(1004), + [sym_block_comment] = STATE(1004), + [sym_line_comment] = STATE(1004), + [sym_compiler_directive_decl] = STATE(1004), + [sym_fsi_directive_decl] = STATE(1004), + [sym_preproc_line] = STATE(1004), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_GT_RBRACK] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_to] = ACTIONS(3507), + [anon_sym_downto] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_end] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_DOT_DOT2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1005] = { [sym_xml_doc] = STATE(1005), @@ -169967,200 +175683,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1005), [sym_fsi_directive_decl] = STATE(1005), [sym_preproc_line] = STATE(1005), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_GT_RBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_to] = ACTIONS(3391), - [anon_sym_downto] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_end] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_DOT_DOT2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_open] = ACTIONS(3292), + [anon_sym_LBRACK_LT] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3294), + [anon_sym_POUNDload] = ACTIONS(3294), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + [sym__dedent] = ACTIONS(3294), }, [1006] = { - [sym_type_arguments] = STATE(1502), - [sym_long_identifier] = STATE(1507), + [sym_type_arguments] = STATE(1390), + [sym_long_identifier] = STATE(1438), [sym_xml_doc] = STATE(1006), [sym_block_comment] = STATE(1006), [sym_line_comment] = STATE(1006), [sym_compiler_directive_decl] = STATE(1006), [sym_fsi_directive_decl] = STATE(1006), [sym_preproc_line] = STATE(1006), - [aux_sym__compound_type_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(3308), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [aux_sym__compound_type_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3519), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [1007] = { [sym_xml_doc] = STATE(1007), @@ -170169,99 +175883,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1007), [sym_fsi_directive_decl] = STATE(1007), [sym_preproc_line] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2610), - [aux_sym_decimal_token1] = ACTIONS(2576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_GT_RBRACK] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_RBRACK] = ACTIONS(3525), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_RBRACE] = ACTIONS(3525), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_to] = ACTIONS(3523), + [anon_sym_downto] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_end] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_DOT_DOT2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [1008] = { [sym_xml_doc] = STATE(1008), @@ -170270,99 +175983,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1008), [sym_fsi_directive_decl] = STATE(1008), [sym_preproc_line] = STATE(1008), - [aux_sym_long_identifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1009] = { [sym_xml_doc] = STATE(1009), @@ -170371,200 +176083,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1009), [sym_fsi_directive_decl] = STATE(1009), [sym_preproc_line] = STATE(1009), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_GT_RBRACK] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_to] = ACTIONS(3397), - [anon_sym_downto] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_end] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_DOT_DOT2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_GT_RBRACK] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_RBRACK] = ACTIONS(3529), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_RBRACE] = ACTIONS(3529), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_to] = ACTIONS(3527), + [anon_sym_downto] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_end] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_DOT_DOT2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [1010] = { - [sym_type_arguments] = STATE(1502), - [sym_long_identifier] = STATE(1507), [sym_xml_doc] = STATE(1010), [sym_block_comment] = STATE(1010), [sym_line_comment] = STATE(1010), [sym_compiler_directive_decl] = STATE(1010), [sym_fsi_directive_decl] = STATE(1010), [sym_preproc_line] = STATE(1010), - [aux_sym__compound_type_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(3308), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_GT_RBRACK] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_RBRACK] = ACTIONS(3535), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_RBRACE] = ACTIONS(3535), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_to] = ACTIONS(3533), + [anon_sym_downto] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_end] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_DOT_DOT2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [1011] = { [sym_xml_doc] = STATE(1011), @@ -170573,200 +176283,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1011), [sym_fsi_directive_decl] = STATE(1011), [sym_preproc_line] = STATE(1011), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_GT_RBRACK] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_to] = ACTIONS(3401), - [anon_sym_downto] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_end] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_DOT_DOT2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_GT_RBRACK] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_RBRACK] = ACTIONS(3485), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_to] = ACTIONS(3483), + [anon_sym_downto] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_end] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_DOT_DOT2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1012] = { + [sym_type_arguments] = STATE(1461), + [sym_long_identifier] = STATE(1376), [sym_xml_doc] = STATE(1012), [sym_block_comment] = STATE(1012), [sym_line_comment] = STATE(1012), [sym_compiler_directive_decl] = STATE(1012), [sym_fsi_directive_decl] = STATE(1012), [sym_preproc_line] = STATE(1012), - [aux_sym_long_identifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3503), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [anon_sym_POUNDendif] = ACTIONS(3156), + [anon_sym_POUNDelse] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1013] = { [sym_xml_doc] = STATE(1013), @@ -170775,99 +176483,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1013), [sym_fsi_directive_decl] = STATE(1013), [sym_preproc_line] = STATE(1013), - [aux_sym__compound_type_repeat1] = STATE(979), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_DOT_DOT2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), - [sym__dedent] = ACTIONS(2972), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_GT_RBRACK] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_RBRACK] = ACTIONS(3440), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_to] = ACTIONS(3438), + [anon_sym_downto] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_end] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1014] = { [sym_xml_doc] = STATE(1014), @@ -170876,99 +176583,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1014), [sym_fsi_directive_decl] = STATE(1014), [sym_preproc_line] = STATE(1014), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_GT_RBRACK] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_to] = ACTIONS(3405), - [anon_sym_downto] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_end] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_DOT_DOT2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_open] = ACTIONS(3355), + [anon_sym_LBRACK_LT] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(3537), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3357), + [anon_sym_POUNDload] = ACTIONS(3357), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3357), }, [1015] = { [sym_xml_doc] = STATE(1015), @@ -170977,301 +176683,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1015), [sym_fsi_directive_decl] = STATE(1015), [sym_preproc_line] = STATE(1015), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_GT_RBRACK] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_to] = ACTIONS(3409), - [anon_sym_downto] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_end] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_DOT_DOT2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1016] = { - [sym_type_arguments] = STATE(1478), - [sym_long_identifier] = STATE(1457), [sym_xml_doc] = STATE(1016), [sym_block_comment] = STATE(1016), [sym_line_comment] = STATE(1016), [sym_compiler_directive_decl] = STATE(1016), [sym_fsi_directive_decl] = STATE(1016), [sym_preproc_line] = STATE(1016), - [aux_sym__compound_type_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_LT2] = ACTIONS(3322), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [anon_sym_POUNDendif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [aux_sym_long_identifier_repeat1] = STATE(1016), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3539), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_to] = ACTIONS(3285), + [anon_sym_downto] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_end] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1017] = { + [sym_type_arguments] = STATE(1390), + [sym_long_identifier] = STATE(1438), [sym_xml_doc] = STATE(1017), [sym_block_comment] = STATE(1017), [sym_line_comment] = STATE(1017), [sym_compiler_directive_decl] = STATE(1017), [sym_fsi_directive_decl] = STATE(1017), [sym_preproc_line] = STATE(1017), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_GT_RBRACK] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_to] = ACTIONS(3413), - [anon_sym_downto] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_end] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_DOT_DOT2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [aux_sym__compound_type_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3519), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1018] = { [sym_xml_doc] = STATE(1018), @@ -171280,301 +176983,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1018), [sym_fsi_directive_decl] = STATE(1018), [sym_preproc_line] = STATE(1018), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_GT_RBRACK] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_to] = ACTIONS(3417), - [anon_sym_downto] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_end] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_DOT_DOT2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_GT_RBRACK] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_RBRACK] = ACTIONS(3544), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_to] = ACTIONS(3542), + [anon_sym_downto] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_end] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_DOT_DOT2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [1019] = { + [sym_type_arguments] = STATE(1390), + [sym_long_identifier] = STATE(1438), [sym_xml_doc] = STATE(1019), [sym_block_comment] = STATE(1019), [sym_line_comment] = STATE(1019), [sym_compiler_directive_decl] = STATE(1019), [sym_fsi_directive_decl] = STATE(1019), [sym_preproc_line] = STATE(1019), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_GT_RBRACK] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_to] = ACTIONS(3421), - [anon_sym_downto] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_end] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_DOT_DOT2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [aux_sym__compound_type_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3519), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1020] = { + [sym_type_arguments] = STATE(1390), + [sym_long_identifier] = STATE(1438), [sym_xml_doc] = STATE(1020), [sym_block_comment] = STATE(1020), [sym_line_comment] = STATE(1020), [sym_compiler_directive_decl] = STATE(1020), [sym_fsi_directive_decl] = STATE(1020), [sym_preproc_line] = STATE(1020), - [aux_sym_type_argument_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3425), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [aux_sym__compound_type_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3519), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1021] = { [sym_xml_doc] = STATE(1021), @@ -171583,99 +177283,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1021), [sym_fsi_directive_decl] = STATE(1021), [sym_preproc_line] = STATE(1021), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_GT_RBRACK] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_RBRACK] = ACTIONS(3430), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_to] = ACTIONS(3428), - [anon_sym_downto] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_end] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_DOT_DOT2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_open] = ACTIONS(3318), + [anon_sym_LBRACK_LT] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3320), + [anon_sym_POUNDload] = ACTIONS(3320), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), + [sym__dedent] = ACTIONS(3320), }, [1022] = { [sym_xml_doc] = STATE(1022), @@ -171684,99 +177383,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1022), [sym_fsi_directive_decl] = STATE(1022), [sym_preproc_line] = STATE(1022), - [aux_sym__compound_type_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_GT_RBRACK] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_to] = ACTIONS(3507), + [anon_sym_downto] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_end] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1023] = { [sym_xml_doc] = STATE(1023), @@ -171785,99 +177483,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1023), [sym_fsi_directive_decl] = STATE(1023), [sym_preproc_line] = STATE(1023), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_GT_RBRACK] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_RBRACK] = ACTIONS(3437), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_to] = ACTIONS(3435), - [anon_sym_downto] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_end] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_DOT_DOT2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_open] = ACTIONS(3387), + [anon_sym_LBRACK_LT] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(3548), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3389), + [anon_sym_POUNDload] = ACTIONS(3389), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1024] = { [sym_xml_doc] = STATE(1024), @@ -171886,99 +177583,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1024), [sym_fsi_directive_decl] = STATE(1024), [sym_preproc_line] = STATE(1024), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_GT_RBRACK] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_RBRACK] = ACTIONS(3441), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_to] = ACTIONS(3439), - [anon_sym_downto] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_end] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_DOT_DOT2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_open] = ACTIONS(3336), + [anon_sym_LBRACK_LT] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3338), + [anon_sym_POUNDload] = ACTIONS(3338), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), + [sym__dedent] = ACTIONS(3338), }, [1025] = { [sym_xml_doc] = STATE(1025), @@ -171987,99 +177683,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1025), [sym_fsi_directive_decl] = STATE(1025), [sym_preproc_line] = STATE(1025), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_GT_RBRACK] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_RBRACK] = ACTIONS(3445), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_to] = ACTIONS(3443), - [anon_sym_downto] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_end] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_DOT_DOT2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [1026] = { [sym_xml_doc] = STATE(1026), @@ -172088,99 +177783,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1026), [sym_fsi_directive_decl] = STATE(1026), [sym_preproc_line] = STATE(1026), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2902), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_to] = ACTIONS(2900), - [anon_sym_downto] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1027] = { [sym_xml_doc] = STATE(1027), @@ -172189,99 +177883,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1027), [sym_fsi_directive_decl] = STATE(1027), [sym_preproc_line] = STATE(1027), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_GT_RBRACK] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_RBRACK] = ACTIONS(3449), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_to] = ACTIONS(3447), - [anon_sym_downto] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_end] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_DOT_DOT2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_GT_RBRACK] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_RBRACK] = ACTIONS(3440), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_to] = ACTIONS(3438), + [anon_sym_downto] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_end] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1028] = { [sym_xml_doc] = STATE(1028), @@ -172290,99 +177983,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1028), [sym_fsi_directive_decl] = STATE(1028), [sym_preproc_line] = STATE(1028), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_GT_RBRACK] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_RBRACK] = ACTIONS(3453), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_to] = ACTIONS(3451), - [anon_sym_downto] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_end] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_DOT_DOT2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1029] = { [sym_xml_doc] = STATE(1029), @@ -172391,200 +178083,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1029), [sym_fsi_directive_decl] = STATE(1029), [sym_preproc_line] = STATE(1029), - [aux_sym_rules_repeat1] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(3110), - [sym_identifier] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_module] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3108), - [anon_sym_LBRACK_LT] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_type] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3110), - [anon_sym_POUNDload] = ACTIONS(3110), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_open] = ACTIONS(3300), + [anon_sym_LBRACK_LT] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3302), + [anon_sym_POUNDload] = ACTIONS(3302), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), + [sym__dedent] = ACTIONS(3302), }, [1030] = { + [sym_type_arguments] = STATE(1461), + [sym_long_identifier] = STATE(1376), [sym_xml_doc] = STATE(1030), [sym_block_comment] = STATE(1030), [sym_line_comment] = STATE(1030), [sym_compiler_directive_decl] = STATE(1030), [sym_fsi_directive_decl] = STATE(1030), [sym_preproc_line] = STATE(1030), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_GT_RBRACK] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_to] = ACTIONS(3037), - [anon_sym_downto] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_end] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3503), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [anon_sym_POUNDendif] = ACTIONS(3090), + [anon_sym_POUNDelse] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1031] = { [sym_xml_doc] = STATE(1031), @@ -172593,99 +178283,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1031), [sym_fsi_directive_decl] = STATE(1031), [sym_preproc_line] = STATE(1031), - [sym_identifier] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_LBRACK_LT] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3455), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3075), - [anon_sym_POUNDload] = ACTIONS(3075), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_open] = ACTIONS(3304), + [anon_sym_LBRACK_LT] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3306), + [anon_sym_POUNDload] = ACTIONS(3306), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), + [sym__dedent] = ACTIONS(3306), }, [1032] = { [sym_xml_doc] = STATE(1032), @@ -172694,99 +178383,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1032), [sym_fsi_directive_decl] = STATE(1032), [sym_preproc_line] = STATE(1032), - [aux_sym__compound_type_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), - [sym__dedent] = ACTIONS(2972), + [sym_identifier] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_LBRACK_LT] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3342), + [anon_sym_POUNDload] = ACTIONS(3342), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), + [sym__dedent] = ACTIONS(3342), }, [1033] = { [sym_xml_doc] = STATE(1033), @@ -172795,99 +178483,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1033), [sym_fsi_directive_decl] = STATE(1033), [sym_preproc_line] = STATE(1033), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_GT_RBRACK] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_to] = ACTIONS(3457), - [anon_sym_downto] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_end] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_DOT_DOT2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [aux_sym_long_identifier_repeat1] = STATE(1016), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_GT_RBRACK] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_to] = ACTIONS(3202), + [anon_sym_downto] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_end] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_DOT_DOT2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1034] = { [sym_xml_doc] = STATE(1034), @@ -172896,200 +178583,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1034), [sym_fsi_directive_decl] = STATE(1034), [sym_preproc_line] = STATE(1034), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_GT_RBRACK] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3463), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_to] = ACTIONS(3461), - [anon_sym_downto] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_end] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_DOT_DOT2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [1035] = { + [sym_type_arguments] = STATE(1461), + [sym_long_identifier] = STATE(1376), [sym_xml_doc] = STATE(1035), [sym_block_comment] = STATE(1035), [sym_line_comment] = STATE(1035), [sym_compiler_directive_decl] = STATE(1035), [sym_fsi_directive_decl] = STATE(1035), [sym_preproc_line] = STATE(1035), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_GT_RBRACK] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_RBRACE] = ACTIONS(3467), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_to] = ACTIONS(3465), - [anon_sym_downto] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_end] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_DOT_DOT2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3503), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [anon_sym_POUNDendif] = ACTIONS(3030), + [anon_sym_POUNDelse] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1036] = { [sym_xml_doc] = STATE(1036), @@ -173098,200 +178783,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1036), [sym_fsi_directive_decl] = STATE(1036), [sym_preproc_line] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_module] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3147), - [anon_sym_LBRACK_LT] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3149), - [anon_sym_POUNDload] = ACTIONS(3149), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_open] = ACTIONS(3322), + [anon_sym_LBRACK_LT] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3324), + [anon_sym_POUNDload] = ACTIONS(3324), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), + [sym__dedent] = ACTIONS(3324), }, [1037] = { + [sym_type_arguments] = STATE(1390), + [sym_long_identifier] = STATE(1438), [sym_xml_doc] = STATE(1037), [sym_block_comment] = STATE(1037), [sym_line_comment] = STATE(1037), [sym_compiler_directive_decl] = STATE(1037), [sym_fsi_directive_decl] = STATE(1037), [sym_preproc_line] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_LBRACK_LT] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3175), - [anon_sym_POUNDload] = ACTIONS(3175), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [aux_sym__compound_type_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(3513), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3519), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3521), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1038] = { [sym_xml_doc] = STATE(1038), @@ -173300,99 +178983,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1038), [sym_fsi_directive_decl] = STATE(1038), [sym_preproc_line] = STATE(1038), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_GT_RBRACK] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_to] = ACTIONS(3469), - [anon_sym_downto] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_end] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_DOT_DOT2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_LBRACK_LT] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3298), + [anon_sym_POUNDload] = ACTIONS(3298), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), + [sym__dedent] = ACTIONS(3298), }, [1039] = { [sym_xml_doc] = STATE(1039), @@ -173401,99 +179083,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1039), [sym_fsi_directive_decl] = STATE(1039), [sym_preproc_line] = STATE(1039), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_GT_RBRACK] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_RBRACE] = ACTIONS(3475), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_to] = ACTIONS(3473), - [anon_sym_downto] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_end] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_DOT_DOT2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_GT_RBRACK] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_RBRACK] = ACTIONS(3556), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_to] = ACTIONS(3554), + [anon_sym_downto] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_end] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_DOT_DOT2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [1040] = { [sym_xml_doc] = STATE(1040), @@ -173502,402 +179183,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1040), [sym_fsi_directive_decl] = STATE(1040), [sym_preproc_line] = STATE(1040), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_GT_RBRACK] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_RBRACE] = ACTIONS(3479), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_to] = ACTIONS(3477), - [anon_sym_downto] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_end] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_DOT_DOT2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [aux_sym_long_identifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_GT_RBRACK] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_to] = ACTIONS(3261), + [anon_sym_downto] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_end] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_DOT_DOT2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1041] = { + [sym_type_arguments] = STATE(1461), + [sym_long_identifier] = STATE(1376), [sym_xml_doc] = STATE(1041), [sym_block_comment] = STATE(1041), [sym_line_comment] = STATE(1041), [sym_compiler_directive_decl] = STATE(1041), [sym_fsi_directive_decl] = STATE(1041), [sym_preproc_line] = STATE(1041), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_GT_RBRACK] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_to] = ACTIONS(3037), - [anon_sym_downto] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_end] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [aux_sym__compound_type_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3499), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3503), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3505), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [anon_sym_POUNDendif] = ACTIONS(3010), + [anon_sym_POUNDelse] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1042] = { - [sym__else_expression] = STATE(1613), - [sym_elif_expression] = STATE(1518), [sym_xml_doc] = STATE(1042), [sym_block_comment] = STATE(1042), [sym_line_comment] = STATE(1042), [sym_compiler_directive_decl] = STATE(1042), [sym_fsi_directive_decl] = STATE(1042), [sym_preproc_line] = STATE(1042), - [aux_sym_if_expression_repeat1] = STATE(1103), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_elif] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), - [sym__dedent] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_open] = ACTIONS(3361), + [anon_sym_LBRACK_LT] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3363), + [anon_sym_POUNDload] = ACTIONS(3363), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3363), }, [1043] = { + [sym_elif_expression] = STATE(1192), [sym_xml_doc] = STATE(1043), [sym_block_comment] = STATE(1043), [sym_line_comment] = STATE(1043), [sym_compiler_directive_decl] = STATE(1043), [sym_fsi_directive_decl] = STATE(1043), [sym_preproc_line] = STATE(1043), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_GT_RBRACK] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3487), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_to] = ACTIONS(3485), - [anon_sym_downto] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_end] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_DOT_DOT2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [aux_sym_if_expression_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_open] = ACTIONS(3344), + [anon_sym_LBRACK_LT] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3346), + [anon_sym_POUNDload] = ACTIONS(3346), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), + [sym__dedent] = ACTIONS(3346), }, [1044] = { [sym_xml_doc] = STATE(1044), @@ -173906,191 +179583,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1044), [sym_fsi_directive_decl] = STATE(1044), [sym_preproc_line] = STATE(1044), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_GT_RBRACK] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_RBRACE] = ACTIONS(3491), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_to] = ACTIONS(3489), - [anon_sym_downto] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_end] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_DOT_DOT2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_open] = ACTIONS(3308), + [anon_sym_LBRACK_LT] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3310), + [anon_sym_POUNDload] = ACTIONS(3310), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), + [sym__dedent] = ACTIONS(3310), }, [1045] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), [sym_xml_doc] = STATE(1045), [sym_block_comment] = STATE(1045), [sym_line_comment] = STATE(1045), [sym_compiler_directive_decl] = STATE(1045), [sym_fsi_directive_decl] = STATE(1045), [sym_preproc_line] = STATE(1045), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_GT_RBRACK] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_to] = ACTIONS(3493), - [anon_sym_downto] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_end] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_DOT_DOT2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -174098,8 +179772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1046] = { [sym_xml_doc] = STATE(1046), @@ -174108,200 +179782,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1046), [sym_fsi_directive_decl] = STATE(1046), [sym_preproc_line] = STATE(1046), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_GT_RBRACK] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_to] = ACTIONS(3497), - [anon_sym_downto] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_end] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_DOT_DOT2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_GT_RBRACK] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_RBRACK] = ACTIONS(3579), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_RBRACE] = ACTIONS(3579), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_to] = ACTIONS(3577), + [anon_sym_downto] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_end] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_DOT_DOT2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [1047] = { - [sym__else_expression] = STATE(1842), - [sym_elif_expression] = STATE(1518), [sym_xml_doc] = STATE(1047), [sym_block_comment] = STATE(1047), [sym_line_comment] = STATE(1047), [sym_compiler_directive_decl] = STATE(1047), [sym_fsi_directive_decl] = STATE(1047), [sym_preproc_line] = STATE(1047), - [aux_sym_if_expression_repeat1] = STATE(1042), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_elif] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_DOT_DOT2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), - [sym__dedent] = ACTIONS(2894), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_GT_RBRACK] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_RBRACK] = ACTIONS(3583), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_RBRACE] = ACTIONS(3583), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_to] = ACTIONS(3581), + [anon_sym_downto] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_end] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_DOT_DOT2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [1048] = { [sym_xml_doc] = STATE(1048), @@ -174310,200 +179980,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1048), [sym_fsi_directive_decl] = STATE(1048), [sym_preproc_line] = STATE(1048), - [aux_sym_sequential_expression_repeat1] = STATE(1048), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_GT_RBRACK] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_to] = ACTIONS(3501), - [anon_sym_downto] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_end] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_GT_RBRACK] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_RBRACK] = ACTIONS(3587), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_RBRACE] = ACTIONS(3587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3585), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_to] = ACTIONS(3585), + [anon_sym_downto] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_end] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_DOT_DOT2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [1049] = { + [sym__else_expression] = STATE(1968), + [sym_elif_expression] = STATE(1465), [sym_xml_doc] = STATE(1049), [sym_block_comment] = STATE(1049), [sym_line_comment] = STATE(1049), [sym_compiler_directive_decl] = STATE(1049), [sym_fsi_directive_decl] = STATE(1049), [sym_preproc_line] = STATE(1049), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_GT_RBRACK] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_RBRACK] = ACTIONS(3510), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_to] = ACTIONS(3508), - [anon_sym_downto] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_end] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_DOT_DOT2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [aux_sym_if_expression_repeat1] = STATE(1051), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3589), + [anon_sym_elif] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_DOT_DOT2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), + [sym__dedent] = ACTIONS(3251), }, [1050] = { [sym_xml_doc] = STATE(1050), @@ -174512,200 +180178,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1050), [sym_fsi_directive_decl] = STATE(1050), [sym_preproc_line] = STATE(1050), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_GT_RBRACK] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_RBRACK] = ACTIONS(3514), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_to] = ACTIONS(3512), - [anon_sym_downto] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_end] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_DOT_DOT2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [aux_sym__compound_type_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [1051] = { + [sym__else_expression] = STATE(1938), + [sym_elif_expression] = STATE(1465), [sym_xml_doc] = STATE(1051), [sym_block_comment] = STATE(1051), [sym_line_comment] = STATE(1051), [sym_compiler_directive_decl] = STATE(1051), [sym_fsi_directive_decl] = STATE(1051), [sym_preproc_line] = STATE(1051), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_GT_RBRACK] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_RBRACK] = ACTIONS(3518), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_to] = ACTIONS(3516), - [anon_sym_downto] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_end] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [aux_sym_if_expression_repeat1] = STATE(1205), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3589), + [anon_sym_elif] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_DOT_DOT2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), + [sym__dedent] = ACTIONS(3283), }, [1052] = { [sym_xml_doc] = STATE(1052), @@ -174714,99 +180376,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1052), [sym_fsi_directive_decl] = STATE(1052), [sym_preproc_line] = STATE(1052), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_GT_RBRACK] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_to] = ACTIONS(2518), - [anon_sym_downto] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [aux_sym_type_argument_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_DOT_DOT2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), + [sym__dedent] = ACTIONS(3232), }, [1053] = { [sym_xml_doc] = STATE(1053), @@ -174815,99 +180475,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1053), [sym_fsi_directive_decl] = STATE(1053), [sym_preproc_line] = STATE(1053), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_GT_RBRACK] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_RBRACK] = ACTIONS(3522), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_to] = ACTIONS(3520), - [anon_sym_downto] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_end] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT_DOT2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [aux_sym_long_identifier_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3596), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_DOT_DOT2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1054] = { [sym_xml_doc] = STATE(1054), @@ -174916,99 +180574,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1054), [sym_fsi_directive_decl] = STATE(1054), [sym_preproc_line] = STATE(1054), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_GT_RBRACK] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_RBRACK] = ACTIONS(3526), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_to] = ACTIONS(3524), - [anon_sym_downto] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_end] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_DOT_DOT2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_GT_RBRACK] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3598), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_to] = ACTIONS(3598), + [anon_sym_downto] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_end] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_DOT_DOT2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [1055] = { [sym_xml_doc] = STATE(1055), @@ -175017,99 +180673,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1055), [sym_fsi_directive_decl] = STATE(1055), [sym_preproc_line] = STATE(1055), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_GT_RBRACK] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_RBRACK] = ACTIONS(3530), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_to] = ACTIONS(3528), - [anon_sym_downto] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_end] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_DOT_DOT2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_GT_RBRACK] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_RBRACK] = ACTIONS(3604), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_to] = ACTIONS(3602), + [anon_sym_downto] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_end] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_DOT_DOT2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [1056] = { [sym_xml_doc] = STATE(1056), @@ -175118,1008 +180772,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1056), [sym_fsi_directive_decl] = STATE(1056), [sym_preproc_line] = STATE(1056), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_GT_RBRACK] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_to] = ACTIONS(3532), - [anon_sym_downto] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_end] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_DOT_DOT2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), - }, - [1057] = { - [sym_xml_doc] = STATE(1057), - [sym_block_comment] = STATE(1057), - [sym_line_comment] = STATE(1057), - [sym_compiler_directive_decl] = STATE(1057), - [sym_fsi_directive_decl] = STATE(1057), - [sym_preproc_line] = STATE(1057), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_GT_RBRACK] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_RBRACK] = ACTIONS(3536), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_to] = ACTIONS(3534), - [anon_sym_downto] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_end] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_DOT_DOT2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), - }, - [1058] = { - [sym_xml_doc] = STATE(1058), - [sym_block_comment] = STATE(1058), - [sym_line_comment] = STATE(1058), - [sym_compiler_directive_decl] = STATE(1058), - [sym_fsi_directive_decl] = STATE(1058), - [sym_preproc_line] = STATE(1058), - [aux_sym_type_argument_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3538), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), - }, - [1059] = { - [sym_xml_doc] = STATE(1059), - [sym_block_comment] = STATE(1059), - [sym_line_comment] = STATE(1059), - [sym_compiler_directive_decl] = STATE(1059), - [sym_fsi_directive_decl] = STATE(1059), - [sym_preproc_line] = STATE(1059), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_GT_RBRACK] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_RBRACK] = ACTIONS(3543), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3543), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_to] = ACTIONS(3541), - [anon_sym_downto] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_end] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_DOT_DOT2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - }, - [1060] = { - [sym_xml_doc] = STATE(1060), - [sym_block_comment] = STATE(1060), - [sym_line_comment] = STATE(1060), - [sym_compiler_directive_decl] = STATE(1060), - [sym_fsi_directive_decl] = STATE(1060), - [sym_preproc_line] = STATE(1060), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_GT_RBRACK] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_RBRACK] = ACTIONS(3547), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3547), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3545), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_to] = ACTIONS(3545), - [anon_sym_downto] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_end] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_DOT_DOT2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), - }, - [1061] = { - [sym_xml_doc] = STATE(1061), - [sym_block_comment] = STATE(1061), - [sym_line_comment] = STATE(1061), - [sym_compiler_directive_decl] = STATE(1061), - [sym_fsi_directive_decl] = STATE(1061), - [sym_preproc_line] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3073), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_LBRACK_LT] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3075), - [anon_sym_POUNDload] = ACTIONS(3075), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - }, - [1062] = { - [sym_type_arguments] = STATE(1478), - [sym_long_identifier] = STATE(1457), - [sym_xml_doc] = STATE(1062), - [sym_block_comment] = STATE(1062), - [sym_line_comment] = STATE(1062), - [sym_compiler_directive_decl] = STATE(1062), - [sym_fsi_directive_decl] = STATE(1062), - [sym_preproc_line] = STATE(1062), - [aux_sym__compound_type_repeat1] = STATE(1239), - [sym_identifier] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3318), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_LT2] = ACTIONS(3322), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [anon_sym_POUNDendif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), - }, - [1063] = { - [sym_xml_doc] = STATE(1063), - [sym_block_comment] = STATE(1063), - [sym_line_comment] = STATE(1063), - [sym_compiler_directive_decl] = STATE(1063), - [sym_fsi_directive_decl] = STATE(1063), - [sym_preproc_line] = STATE(1063), - [aux_sym_long_identifier_repeat1] = STATE(1063), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), - }, - [1064] = { - [sym__else_expression] = STATE(1624), - [sym_elif_expression] = STATE(1459), - [sym_xml_doc] = STATE(1064), - [sym_block_comment] = STATE(1064), - [sym_line_comment] = STATE(1064), - [sym_compiler_directive_decl] = STATE(1064), - [sym_fsi_directive_decl] = STATE(1064), - [sym_preproc_line] = STATE(1064), - [aux_sym_if_expression_repeat1] = STATE(1070), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3552), - [anon_sym_elif] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), - [sym__dedent] = ACTIONS(2894), - }, - [1065] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), - [sym_xml_doc] = STATE(1065), - [sym_block_comment] = STATE(1065), + [sym_identifier] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_open] = ACTIONS(3387), + [anon_sym_LBRACK_LT] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(3606), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3389), + [anon_sym_POUNDload] = ACTIONS(3389), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), + }, + [1057] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), + [sym_xml_doc] = STATE(1057), + [sym_block_comment] = STATE(1057), + [sym_line_comment] = STATE(1057), + [sym_compiler_directive_decl] = STATE(1057), + [sym_fsi_directive_decl] = STATE(1057), + [sym_preproc_line] = STATE(1057), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_DOT_DOT] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + }, + [1058] = { + [sym_xml_doc] = STATE(1058), + [sym_block_comment] = STATE(1058), + [sym_line_comment] = STATE(1058), + [sym_compiler_directive_decl] = STATE(1058), + [sym_fsi_directive_decl] = STATE(1058), + [sym_preproc_line] = STATE(1058), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_GT_RBRACK] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_RBRACK] = ACTIONS(3610), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_to] = ACTIONS(3608), + [anon_sym_downto] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_end] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_DOT_DOT2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), + }, + [1059] = { + [sym_xml_doc] = STATE(1059), + [sym_block_comment] = STATE(1059), + [sym_line_comment] = STATE(1059), + [sym_compiler_directive_decl] = STATE(1059), + [sym_fsi_directive_decl] = STATE(1059), + [sym_preproc_line] = STATE(1059), + [aux_sym_sequential_expression_repeat1] = STATE(1122), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_GT_RBRACK] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_RBRACK] = ACTIONS(3614), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_to] = ACTIONS(3612), + [anon_sym_downto] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_end] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), + }, + [1060] = { + [sym_xml_doc] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_line_comment] = STATE(1060), + [sym_compiler_directive_decl] = STATE(1060), + [sym_fsi_directive_decl] = STATE(1060), + [sym_preproc_line] = STATE(1060), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_GT_RBRACK] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_RBRACK] = ACTIONS(3618), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_to] = ACTIONS(3616), + [anon_sym_downto] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_end] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_DOT_DOT2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), + }, + [1061] = { + [sym_xml_doc] = STATE(1061), + [sym_block_comment] = STATE(1061), + [sym_line_comment] = STATE(1061), + [sym_compiler_directive_decl] = STATE(1061), + [sym_fsi_directive_decl] = STATE(1061), + [sym_preproc_line] = STATE(1061), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + }, + [1062] = { + [sym_xml_doc] = STATE(1062), + [sym_block_comment] = STATE(1062), + [sym_line_comment] = STATE(1062), + [sym_compiler_directive_decl] = STATE(1062), + [sym_fsi_directive_decl] = STATE(1062), + [sym_preproc_line] = STATE(1062), + [aux_sym__compound_type_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), + [sym__dedent] = ACTIONS(3214), + }, + [1063] = { + [sym_xml_doc] = STATE(1063), + [sym_block_comment] = STATE(1063), + [sym_line_comment] = STATE(1063), + [sym_compiler_directive_decl] = STATE(1063), + [sym_fsi_directive_decl] = STATE(1063), + [sym_preproc_line] = STATE(1063), + [aux_sym_type_argument_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), + [sym__dedent] = ACTIONS(3232), + }, + [1064] = { + [sym_xml_doc] = STATE(1064), + [sym_block_comment] = STATE(1064), + [sym_line_comment] = STATE(1064), + [sym_compiler_directive_decl] = STATE(1064), + [sym_fsi_directive_decl] = STATE(1064), + [sym_preproc_line] = STATE(1064), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_GT_RBRACK] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_to] = ACTIONS(3314), + [anon_sym_downto] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_end] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + }, + [1065] = { + [sym_xml_doc] = STATE(1065), + [sym_block_comment] = STATE(1065), [sym_line_comment] = STATE(1065), [sym_compiler_directive_decl] = STATE(1065), [sym_fsi_directive_decl] = STATE(1065), [sym_preproc_line] = STATE(1065), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(3556), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_COLON] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_COLON_QMARK] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_AT_GT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2850), - [anon_sym_AT_AT_GT] = ACTIONS(2850), - [anon_sym_COLON_GT] = ACTIONS(2848), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_DOT_LBRACK] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2850), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2850), - [anon_sym_DASH_DOT] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2850), - [aux_sym_infix_op_token1] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_DOLLAR] = ACTIONS(2850), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2850), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_GT_RBRACK] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_RBRACK] = ACTIONS(3622), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_to] = ACTIONS(3620), + [anon_sym_downto] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_end] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_DOT_DOT2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [1066] = { [sym_xml_doc] = STATE(1066), @@ -176128,200 +181762,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1066), [sym_fsi_directive_decl] = STATE(1066), [sym_preproc_line] = STATE(1066), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_GT_RBRACK] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_RBRACK] = ACTIONS(3568), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3566), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_to] = ACTIONS(3566), - [anon_sym_downto] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_end] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_DOT_DOT2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_GT_RBRACK] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(3626), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_to] = ACTIONS(3624), + [anon_sym_downto] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_end] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_DOT_DOT2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [1067] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), + [sym_type_arguments] = STATE(1476), + [sym_long_identifier] = STATE(1483), [sym_xml_doc] = STATE(1067), [sym_block_comment] = STATE(1067), [sym_line_comment] = STATE(1067), [sym_compiler_directive_decl] = STATE(1067), [sym_fsi_directive_decl] = STATE(1067), [sym_preproc_line] = STATE(1067), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(3556), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_AT_GT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2806), - [anon_sym_AT_AT_GT] = ACTIONS(2806), - [anon_sym_COLON_GT] = ACTIONS(2804), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_DOT_LBRACK] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2806), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2806), - [anon_sym_DASH_DOT] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2806), - [aux_sym_infix_op_token1] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_DOLLAR] = ACTIONS(2806), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2806), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [aux_sym__compound_type_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3634), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [1068] = { [sym_xml_doc] = STATE(1068), @@ -176330,301 +181960,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1068), [sym_fsi_directive_decl] = STATE(1068), [sym_preproc_line] = STATE(1068), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_GT_RBRACK] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_RBRACK] = ACTIONS(3572), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_to] = ACTIONS(3570), - [anon_sym_downto] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_end] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_DOT_DOT2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_GT_RBRACK] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_RBRACK] = ACTIONS(3640), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_to] = ACTIONS(3638), + [anon_sym_downto] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_end] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_DOT_DOT2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [1069] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), [sym_xml_doc] = STATE(1069), [sym_block_comment] = STATE(1069), [sym_line_comment] = STATE(1069), [sym_compiler_directive_decl] = STATE(1069), [sym_fsi_directive_decl] = STATE(1069), [sym_preproc_line] = STATE(1069), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_GT_RBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_RBRACK] = ACTIONS(3644), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_to] = ACTIONS(3642), + [anon_sym_downto] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_end] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_DOT_DOT2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [1070] = { - [sym__else_expression] = STATE(1711), - [sym_elif_expression] = STATE(1459), [sym_xml_doc] = STATE(1070), [sym_block_comment] = STATE(1070), [sym_line_comment] = STATE(1070), [sym_compiler_directive_decl] = STATE(1070), [sym_fsi_directive_decl] = STATE(1070), [sym_preproc_line] = STATE(1070), - [aux_sym_if_expression_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3552), - [anon_sym_elif] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), - [sym__dedent] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_GT_RBRACK] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_RBRACK] = ACTIONS(3648), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_to] = ACTIONS(3646), + [anon_sym_downto] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_end] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_DOT_DOT2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [1071] = { [sym_xml_doc] = STATE(1071), @@ -176633,200 +182257,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1071), [sym_fsi_directive_decl] = STATE(1071), [sym_preproc_line] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym_long_identifier_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3650), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1072] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), [sym_xml_doc] = STATE(1072), [sym_block_comment] = STATE(1072), [sym_line_comment] = STATE(1072), [sym_compiler_directive_decl] = STATE(1072), [sym_fsi_directive_decl] = STATE(1072), [sym_preproc_line] = STATE(1072), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(3556), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym_type_argument_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DOT_DOT2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3653), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [1073] = { [sym_xml_doc] = STATE(1073), @@ -176835,99 +182455,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1073), [sym_fsi_directive_decl] = STATE(1073), [sym_preproc_line] = STATE(1073), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_GT_RBRACK] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_RBRACK] = ACTIONS(3576), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_to] = ACTIONS(3574), - [anon_sym_downto] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_end] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_DOT_DOT2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_GT_RBRACK] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_RBRACK] = ACTIONS(3658), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_to] = ACTIONS(3656), + [anon_sym_downto] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_end] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_DOT_DOT2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [1074] = { [sym_xml_doc] = STATE(1074), @@ -176936,200 +182554,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1074), [sym_fsi_directive_decl] = STATE(1074), [sym_preproc_line] = STATE(1074), - [aux_sym_long_identifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_GT_RBRACK] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_RBRACK] = ACTIONS(3662), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_to] = ACTIONS(3660), + [anon_sym_downto] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_end] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_DOT_DOT2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [1075] = { + [sym_type_arguments] = STATE(1519), + [sym_long_identifier] = STATE(1598), [sym_xml_doc] = STATE(1075), [sym_block_comment] = STATE(1075), [sym_line_comment] = STATE(1075), [sym_compiler_directive_decl] = STATE(1075), [sym_fsi_directive_decl] = STATE(1075), [sym_preproc_line] = STATE(1075), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_GT_RBRACK] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_RBRACK] = ACTIONS(3584), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3584), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_to] = ACTIONS(3582), - [anon_sym_downto] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_end] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_DOT_DOT2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [aux_sym__compound_type_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3668), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [anon_sym_POUNDendif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1076] = { [sym_xml_doc] = STATE(1076), @@ -177138,99 +182752,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1076), [sym_fsi_directive_decl] = STATE(1076), [sym_preproc_line] = STATE(1076), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_GT_RBRACK] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_RBRACK] = ACTIONS(3588), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_RBRACE] = ACTIONS(3588), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_to] = ACTIONS(3586), - [anon_sym_downto] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_end] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_DOT_DOT2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_open] = ACTIONS(3451), + [anon_sym_LBRACK_LT] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3453), + [anon_sym_POUNDload] = ACTIONS(3453), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1077] = { [sym_xml_doc] = STATE(1077), @@ -177239,99 +182851,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1077), [sym_fsi_directive_decl] = STATE(1077), [sym_preproc_line] = STATE(1077), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_GT_RBRACK] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_RBRACK] = ACTIONS(3592), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3592), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_to] = ACTIONS(3590), - [anon_sym_downto] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_end] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_DOT_DOT2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [aux_sym_type_argument_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3672), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [1078] = { [sym_xml_doc] = STATE(1078), @@ -177340,99 +182950,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1078), [sym_fsi_directive_decl] = STATE(1078), [sym_preproc_line] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(3094), - [sym_identifier] = ACTIONS(3092), - [anon_sym_namespace] = ACTIONS(3092), - [anon_sym_module] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3092), - [anon_sym_LBRACK_LT] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_type] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3094), - [anon_sym_POUNDload] = ACTIONS(3094), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_GT_RBRACK] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_RBRACK] = ACTIONS(3677), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_RBRACE] = ACTIONS(3677), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_to] = ACTIONS(3675), + [anon_sym_downto] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_end] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_DOT_DOT2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [1079] = { [sym_xml_doc] = STATE(1079), @@ -177441,200 +183049,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1079), [sym_fsi_directive_decl] = STATE(1079), [sym_preproc_line] = STATE(1079), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_GT_RBRACK] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_RBRACK] = ACTIONS(3596), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_to] = ACTIONS(3594), - [anon_sym_downto] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_end] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_DOT_DOT2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_GT_RBRACK] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_RBRACK] = ACTIONS(3546), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_to] = ACTIONS(3679), + [anon_sym_downto] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_end] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_DOT_DOT2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [1080] = { + [sym_type_arguments] = STATE(1610), + [sym_long_identifier] = STATE(1583), [sym_xml_doc] = STATE(1080), [sym_block_comment] = STATE(1080), [sym_line_comment] = STATE(1080), [sym_compiler_directive_decl] = STATE(1080), [sym_fsi_directive_decl] = STATE(1080), [sym_preproc_line] = STATE(1080), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_GT_RBRACK] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3600), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3600), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_to] = ACTIONS(3598), - [anon_sym_downto] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_end] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_DOT_DOT2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [aux_sym__compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_AT_AT_GT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3687), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1081] = { [sym_xml_doc] = STATE(1081), @@ -177643,99 +183247,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1081), [sym_fsi_directive_decl] = STATE(1081), [sym_preproc_line] = STATE(1081), - [aux_sym_sequential_expression_repeat1] = STATE(1048), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_GT_RBRACK] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3604), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_to] = ACTIONS(3602), - [anon_sym_downto] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_end] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [aux_sym_long_identifier_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3596), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_DOT_DOT2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), }, [1082] = { [sym_xml_doc] = STATE(1082), @@ -177744,99 +183346,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1082), [sym_fsi_directive_decl] = STATE(1082), [sym_preproc_line] = STATE(1082), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_GT_RBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_to] = ACTIONS(3606), - [anon_sym_downto] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_end] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_DOT_DOT2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_GT_RBRACK] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_RBRACK] = ACTIONS(3691), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3689), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_to] = ACTIONS(3689), + [anon_sym_downto] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_end] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_DOT_DOT2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [1083] = { [sym_xml_doc] = STATE(1083), @@ -177845,99 +183445,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1083), [sym_fsi_directive_decl] = STATE(1083), [sym_preproc_line] = STATE(1083), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_GT_RBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_to] = ACTIONS(3610), - [anon_sym_downto] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_end] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_DOT_DOT2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_GT_RBRACK] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_RBRACK] = ACTIONS(3695), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3693), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_to] = ACTIONS(3693), + [anon_sym_downto] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_end] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_DOT_DOT2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [1084] = { [sym_xml_doc] = STATE(1084), @@ -177946,99 +183544,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1084), [sym_fsi_directive_decl] = STATE(1084), [sym_preproc_line] = STATE(1084), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_GT_RBRACK] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_to] = ACTIONS(3614), - [anon_sym_downto] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_end] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_DOT_DOT2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(2860), + [aux_sym_decimal_token1] = ACTIONS(2822), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1085] = { [sym_xml_doc] = STATE(1085), @@ -178047,200 +183643,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1085), [sym_fsi_directive_decl] = STATE(1085), [sym_preproc_line] = STATE(1085), - [aux_sym_rules_repeat1] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(3081), - [sym_identifier] = ACTIONS(3079), - [anon_sym_namespace] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_open] = ACTIONS(3079), - [anon_sym_LBRACK_LT] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_type] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3081), - [anon_sym_POUNDload] = ACTIONS(3081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_GT_RBRACK] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_RBRACK] = ACTIONS(3699), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_RBRACE] = ACTIONS(3699), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_to] = ACTIONS(3697), + [anon_sym_downto] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_end] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_DOT_DOT2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [1086] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), [sym_xml_doc] = STATE(1086), [sym_block_comment] = STATE(1086), [sym_line_comment] = STATE(1086), [sym_compiler_directive_decl] = STATE(1086), [sym_fsi_directive_decl] = STATE(1086), [sym_preproc_line] = STATE(1086), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(3556), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_GT_RBRACK] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_RBRACK] = ACTIONS(3703), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3703), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_to] = ACTIONS(3701), + [anon_sym_downto] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_end] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_DOT_DOT2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [1087] = { [sym_xml_doc] = STATE(1087), @@ -178249,99 +183841,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1087), [sym_fsi_directive_decl] = STATE(1087), [sym_preproc_line] = STATE(1087), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_GT_RBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_to] = ACTIONS(3621), - [anon_sym_downto] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_end] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_DOT_DOT2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_GT_RBRACK] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_RBRACK] = ACTIONS(3707), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_RBRACE] = ACTIONS(3707), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3705), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_to] = ACTIONS(3705), + [anon_sym_downto] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_end] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_DOT_DOT2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [1088] = { [sym_xml_doc] = STATE(1088), @@ -178350,99 +183940,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1088), [sym_fsi_directive_decl] = STATE(1088), [sym_preproc_line] = STATE(1088), - [aux_sym_rules_repeat1] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_LBRACK_LT] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3133), - [anon_sym_POUNDload] = ACTIONS(3133), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3628), + [aux_sym_type_argument_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_DOT_DOT2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3709), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [1089] = { [sym_xml_doc] = STATE(1089), @@ -178451,200 +184039,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1089), [sym_fsi_directive_decl] = STATE(1089), [sym_preproc_line] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_GT_RBRACK] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_RBRACK] = ACTIONS(3714), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_with] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_to] = ACTIONS(3712), + [anon_sym_downto] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_end] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_DOT_DOT2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [1090] = { - [sym_type_arguments] = STATE(1452), - [sym_long_identifier] = STATE(1429), [sym_xml_doc] = STATE(1090), [sym_block_comment] = STATE(1090), [sym_line_comment] = STATE(1090), [sym_compiler_directive_decl] = STATE(1090), [sym_fsi_directive_decl] = STATE(1090), [sym_preproc_line] = STATE(1090), - [aux_sym__compound_type_repeat1] = STATE(1287), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(3562), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3564), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3507), + [anon_sym_namespace] = ACTIONS(3507), + [anon_sym_module] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_open] = ACTIONS(3507), + [anon_sym_LBRACK_LT] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_type] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3509), + [anon_sym_POUNDload] = ACTIONS(3509), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1091] = { [sym_xml_doc] = STATE(1091), @@ -178653,99 +184237,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1091), [sym_fsi_directive_decl] = STATE(1091), [sym_preproc_line] = STATE(1091), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_GT_RBRACK] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_RBRACK] = ACTIONS(3633), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3631), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_to] = ACTIONS(3631), - [anon_sym_downto] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_end] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_DOT_DOT2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_GT_RBRACK] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_RBRACK] = ACTIONS(3720), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_with] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_to] = ACTIONS(3718), + [anon_sym_downto] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_end] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_DOT_DOT2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [1092] = { [sym_xml_doc] = STATE(1092), @@ -178754,99 +184336,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1092), [sym_fsi_directive_decl] = STATE(1092), [sym_preproc_line] = STATE(1092), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_GT_RBRACK] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_RBRACK] = ACTIONS(3637), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_RBRACE] = ACTIONS(3637), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_with] = ACTIONS(3635), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_to] = ACTIONS(3635), - [anon_sym_downto] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_end] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_DOT_DOT2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_GT_RBRACK] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_RBRACK] = ACTIONS(3724), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_with] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_to] = ACTIONS(3722), + [anon_sym_downto] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_end] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_DOT_DOT2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [1093] = { [sym_xml_doc] = STATE(1093), @@ -178855,99 +184435,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1093), [sym_fsi_directive_decl] = STATE(1093), [sym_preproc_line] = STATE(1093), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_GT_RBRACK] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_RBRACK] = ACTIONS(3641), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_RBRACE] = ACTIONS(3641), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_with] = ACTIONS(3639), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_to] = ACTIONS(3639), - [anon_sym_downto] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_end] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_DOT_DOT2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_GT_RBRACK] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_RBRACK] = ACTIONS(3728), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_with] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_to] = ACTIONS(3726), + [anon_sym_downto] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_end] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_DOT_DOT2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [1094] = { [sym_xml_doc] = STATE(1094), @@ -178956,99 +184534,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1094), [sym_fsi_directive_decl] = STATE(1094), [sym_preproc_line] = STATE(1094), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_GT_RBRACK] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_RBRACK] = ACTIONS(3645), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_with] = ACTIONS(3643), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_to] = ACTIONS(3643), - [anon_sym_downto] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_end] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_DOT_DOT2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_GT_RBRACK] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_RBRACK] = ACTIONS(3732), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_with] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_to] = ACTIONS(3730), + [anon_sym_downto] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_end] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_DOT_DOT2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [1095] = { [sym_xml_doc] = STATE(1095), @@ -179057,301 +184633,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1095), [sym_fsi_directive_decl] = STATE(1095), [sym_preproc_line] = STATE(1095), - [aux_sym_type_argument_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), - [sym__dedent] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_GT_RBRACK] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_RBRACK] = ACTIONS(3736), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_to] = ACTIONS(3734), + [anon_sym_downto] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_end] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_DOT_DOT2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [1096] = { - [sym_type_arguments] = STATE(1502), - [sym_long_identifier] = STATE(1507), [sym_xml_doc] = STATE(1096), [sym_block_comment] = STATE(1096), [sym_line_comment] = STATE(1096), [sym_compiler_directive_decl] = STATE(1096), [sym_fsi_directive_decl] = STATE(1096), [sym_preproc_line] = STATE(1096), - [aux_sym__compound_type_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_COLON_QMARK] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_AT_GT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2814), - [anon_sym_AT_AT_GT] = ACTIONS(2814), - [anon_sym_COLON_GT] = ACTIONS(2812), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_DOT_LBRACK] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(3308), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2814), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2814), - [anon_sym_DASH_DOT] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2814), - [aux_sym_infix_op_token1] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_DOLLAR] = ACTIONS(2814), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2814), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_GT_RBRACK] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_RBRACK] = ACTIONS(3740), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_to] = ACTIONS(3738), + [anon_sym_downto] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_end] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_DOT_DOT2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [1097] = { - [sym_type_arguments] = STATE(1502), - [sym_long_identifier] = STATE(1507), [sym_xml_doc] = STATE(1097), [sym_block_comment] = STATE(1097), [sym_line_comment] = STATE(1097), [sym_compiler_directive_decl] = STATE(1097), [sym_fsi_directive_decl] = STATE(1097), [sym_preproc_line] = STATE(1097), - [aux_sym__compound_type_repeat1] = STATE(1209), - [sym_identifier] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(3308), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_GT_RBRACK] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_RBRACK] = ACTIONS(3744), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_with] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_to] = ACTIONS(3742), + [anon_sym_downto] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_end] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_DOT_DOT2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [1098] = { [sym_xml_doc] = STATE(1098), @@ -179360,298 +184930,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1098), [sym_fsi_directive_decl] = STATE(1098), [sym_preproc_line] = STATE(1098), - [aux_sym_long_identifier_repeat1] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3647), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_GT_RBRACK] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_RBRACK] = ACTIONS(3748), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_with] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_to] = ACTIONS(3746), + [anon_sym_downto] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_end] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_DOT_DOT2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [1099] = { - [sym_type_arguments] = STATE(851), - [sym_long_identifier] = STATE(856), + [sym_type_arguments] = STATE(1574), + [sym_long_identifier] = STATE(1555), [sym_xml_doc] = STATE(1099), [sym_block_comment] = STATE(1099), [sym_line_comment] = STATE(1099), [sym_compiler_directive_decl] = STATE(1099), [sym_fsi_directive_decl] = STATE(1099), [sym_preproc_line] = STATE(1099), - [aux_sym__compound_type_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_let_BANG] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_null] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_COLON_QMARK] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACK_PIPE] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LBRACE_PIPE] = ACTIONS(2792), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_return_BANG] = ACTIONS(2792), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_yield_BANG] = ACTIONS(2792), - [anon_sym_lazy] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_upcast] = ACTIONS(2790), - [anon_sym_downcast] = ACTIONS(2790), - [anon_sym_LT_AT] = ACTIONS(2790), - [anon_sym_AT_GT] = ACTIONS(2790), - [anon_sym_LT_AT_AT] = ACTIONS(2790), - [anon_sym_AT_AT_GT] = ACTIONS(2790), - [anon_sym_COLON_GT] = ACTIONS(2792), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_fun] = ACTIONS(2790), - [anon_sym_DASH_GT] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_match_BANG] = ACTIONS(2792), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_DOT_LBRACK] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_use_BANG] = ACTIONS(2792), - [anon_sym_do_BANG] = ACTIONS(2792), - [anon_sym_begin] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_LT2] = ACTIONS(2798), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2790), - [aux_sym_char_token1] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_AT_DQUOTE] = ACTIONS(2792), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2792), - [sym_bool] = ACTIONS(2790), - [sym_unit] = ACTIONS(2790), - [anon_sym_LPAREN_PIPE] = ACTIONS(2790), - [sym_op_identifier] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS_DOT] = ACTIONS(2790), - [anon_sym_DASH_DOT] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2792), - [aux_sym_prefix_op_token1] = ACTIONS(2790), - [aux_sym_infix_op_token1] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_DOLLAR] = ACTIONS(2790), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2790), - [sym_int] = ACTIONS(2790), - [sym_xint] = ACTIONS(2792), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2792), - [sym__newline] = ACTIONS(2792), + [aux_sym__compound_type_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_AT_GT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3756), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3758), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [1100] = { + [sym_type_arguments] = STATE(1519), + [sym_long_identifier] = STATE(1598), [sym_xml_doc] = STATE(1100), [sym_block_comment] = STATE(1100), [sym_line_comment] = STATE(1100), [sym_compiler_directive_decl] = STATE(1100), [sym_fsi_directive_decl] = STATE(1100), [sym_preproc_line] = STATE(1100), - [aux_sym_long_identifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [anon_sym_POUNDendif] = ACTIONS(2956), - [anon_sym_POUNDelse] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [aux_sym__compound_type_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3668), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [anon_sym_POUNDendif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [1101] = { [sym_xml_doc] = STATE(1101), @@ -179660,398 +185227,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1101), [sym_fsi_directive_decl] = STATE(1101), [sym_preproc_line] = STATE(1101), - [aux_sym_sequential_expression_repeat1] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3501), - [anon_sym_namespace] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_LBRACK_LT] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3503), - [anon_sym_POUNDload] = ACTIONS(3503), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_GT_RBRACK] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_RBRACK] = ACTIONS(3764), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_with] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_to] = ACTIONS(3762), + [anon_sym_downto] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_end] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_DOT_DOT2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [1102] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), [sym_xml_doc] = STATE(1102), [sym_block_comment] = STATE(1102), [sym_line_comment] = STATE(1102), [sym_compiler_directive_decl] = STATE(1102), [sym_fsi_directive_decl] = STATE(1102), [sym_preproc_line] = STATE(1102), - [aux_sym_long_identifier_repeat1] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_module] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_LBRACK_LT] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2956), - [anon_sym_POUNDload] = ACTIONS(2956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_DOT_DOT] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1103] = { - [sym_elif_expression] = STATE(1518), [sym_xml_doc] = STATE(1103), [sym_block_comment] = STATE(1103), [sym_line_comment] = STATE(1103), [sym_compiler_directive_decl] = STATE(1103), [sym_fsi_directive_decl] = STATE(1103), [sym_preproc_line] = STATE(1103), - [aux_sym_if_expression_repeat1] = STATE(1103), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3661), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_DOT_DOT2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), - [sym__dedent] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_GT_RBRACK] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_RBRACK] = ACTIONS(3768), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_with] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_to] = ACTIONS(3766), + [anon_sym_downto] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_end] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_DOT_DOT2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [1104] = { + [sym_type_arguments] = STATE(1476), + [sym_long_identifier] = STATE(1483), [sym_xml_doc] = STATE(1104), [sym_block_comment] = STATE(1104), [sym_line_comment] = STATE(1104), [sym_compiler_directive_decl] = STATE(1104), [sym_fsi_directive_decl] = STATE(1104), [sym_preproc_line] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym__compound_type_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3634), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1105] = { [sym_xml_doc] = STATE(1105), @@ -180060,198 +185623,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1105), [sym_fsi_directive_decl] = STATE(1105), [sym_preproc_line] = STATE(1105), - [aux_sym__compound_type_repeat1] = STATE(1105), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [anon_sym_POUNDendif] = ACTIONS(2808), - [anon_sym_POUNDelse] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_GT_RBRACK] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_RBRACK] = ACTIONS(3772), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_with] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_to] = ACTIONS(3770), + [anon_sym_downto] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_end] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_DOT_DOT2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [1106] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), [sym_xml_doc] = STATE(1106), [sym_block_comment] = STATE(1106), [sym_line_comment] = STATE(1106), [sym_compiler_directive_decl] = STATE(1106), [sym_fsi_directive_decl] = STATE(1106), [sym_preproc_line] = STATE(1106), - [aux_sym__compound_type_repeat1] = STATE(1105), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [anon_sym_POUNDendif] = ACTIONS(2972), - [anon_sym_POUNDelse] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_DOT_DOT] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1107] = { [sym_xml_doc] = STATE(1107), @@ -180260,98 +185821,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1107), [sym_fsi_directive_decl] = STATE(1107), [sym_preproc_line] = STATE(1107), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_GT_RBRACK] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_to] = ACTIONS(3774), + [anon_sym_downto] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_end] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_DOT_DOT2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [1108] = { [sym_xml_doc] = STATE(1108), @@ -180360,98 +185920,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1108), [sym_fsi_directive_decl] = STATE(1108), [sym_preproc_line] = STATE(1108), - [aux_sym_long_identifier_repeat1] = STATE(1108), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [anon_sym_POUNDelse] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_GT_RBRACK] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_RBRACK] = ACTIONS(3780), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_with] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_to] = ACTIONS(3778), + [anon_sym_downto] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_end] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_DOT_DOT2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [1109] = { [sym_xml_doc] = STATE(1109), @@ -180460,98 +186019,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1109), [sym_fsi_directive_decl] = STATE(1109), [sym_preproc_line] = STATE(1109), - [aux_sym_long_identifier_repeat1] = STATE(1108), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [anon_sym_POUNDendif] = ACTIONS(2968), - [anon_sym_POUNDelse] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_GT_RBRACK] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_RBRACK] = ACTIONS(3784), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_with] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_to] = ACTIONS(3782), + [anon_sym_downto] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_end] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_DOT_DOT2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [1110] = { [sym_xml_doc] = STATE(1110), @@ -180560,98 +186118,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1110), [sym_fsi_directive_decl] = STATE(1110), [sym_preproc_line] = STATE(1110), - [sym_identifier] = ACTIONS(3092), - [anon_sym_module] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3092), - [anon_sym_LBRACK_LT] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_type] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3094), - [anon_sym_POUNDload] = ACTIONS(3094), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), - [sym__dedent] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_GT_RBRACK] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_RBRACK] = ACTIONS(3788), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_RBRACE] = ACTIONS(3788), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_with] = ACTIONS(3786), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_to] = ACTIONS(3786), + [anon_sym_downto] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_end] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_DOT_DOT2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [1111] = { [sym_xml_doc] = STATE(1111), @@ -180660,98 +186217,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1111), [sym_fsi_directive_decl] = STATE(1111), [sym_preproc_line] = STATE(1111), - [aux_sym_type_argument_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3672), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [anon_sym_POUNDelse] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_GT_RBRACK] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_RBRACK] = ACTIONS(3792), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_RBRACE] = ACTIONS(3792), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_with] = ACTIONS(3790), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_to] = ACTIONS(3790), + [anon_sym_downto] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_end] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_DOT_DOT2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [1112] = { [sym_xml_doc] = STATE(1112), @@ -180760,98 +186316,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1112), [sym_fsi_directive_decl] = STATE(1112), [sym_preproc_line] = STATE(1112), - [aux_sym_long_identifier_repeat1] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_GT_RBRACK] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_RBRACK] = ACTIONS(3796), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_with] = ACTIONS(3794), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_to] = ACTIONS(3794), + [anon_sym_downto] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_end] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_DOT_DOT2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [1113] = { [sym_xml_doc] = STATE(1113), @@ -180860,98 +186415,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1113), [sym_fsi_directive_decl] = STATE(1113), [sym_preproc_line] = STATE(1113), - [aux_sym_type_argument_repeat1] = STATE(1115), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [anon_sym_POUNDendif] = ACTIONS(2943), - [anon_sym_POUNDelse] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_GT_RBRACK] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_RBRACK] = ACTIONS(3800), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_RBRACE] = ACTIONS(3800), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_with] = ACTIONS(3798), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_to] = ACTIONS(3798), + [anon_sym_downto] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_end] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_DOT_DOT2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [1114] = { [sym_xml_doc] = STATE(1114), @@ -180960,98 +186514,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1114), [sym_fsi_directive_decl] = STATE(1114), [sym_preproc_line] = STATE(1114), - [aux_sym_long_identifier_repeat1] = STATE(1176), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_GT_RBRACK] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_RBRACK] = ACTIONS(3804), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_with] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_to] = ACTIONS(3802), + [anon_sym_downto] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_end] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_DOT_DOT2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [1115] = { [sym_xml_doc] = STATE(1115), @@ -181060,198 +186613,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1115), [sym_fsi_directive_decl] = STATE(1115), [sym_preproc_line] = STATE(1115), - [aux_sym_type_argument_repeat1] = STATE(1115), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3681), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [anon_sym_POUNDendif] = ACTIONS(2919), - [anon_sym_POUNDelse] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [aux_sym_long_identifier_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3806), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_DOT_DOT2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [1116] = { + [sym__else_expression] = STATE(1934), + [sym_elif_expression] = STATE(1569), [sym_xml_doc] = STATE(1116), [sym_block_comment] = STATE(1116), [sym_line_comment] = STATE(1116), [sym_compiler_directive_decl] = STATE(1116), [sym_fsi_directive_decl] = STATE(1116), [sym_preproc_line] = STATE(1116), - [sym_identifier] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [aux_sym_if_expression_repeat1] = STATE(1135), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3810), + [anon_sym_elif] = ACTIONS(3812), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), + [sym__dedent] = ACTIONS(3251), }, [1117] = { [sym_xml_doc] = STATE(1117), @@ -181260,98 +186811,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1117), [sym_fsi_directive_decl] = STATE(1117), [sym_preproc_line] = STATE(1117), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_DOT_DOT2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_GT_RBRACK] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_RBRACK] = ACTIONS(3816), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_with] = ACTIONS(3814), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_to] = ACTIONS(3814), + [anon_sym_downto] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_end] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_DOT_DOT2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [1118] = { [sym_xml_doc] = STATE(1118), @@ -181360,98 +186910,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1118), [sym_fsi_directive_decl] = STATE(1118), [sym_preproc_line] = STATE(1118), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_GT_RBRACK] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_RBRACK] = ACTIONS(3820), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_with] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_to] = ACTIONS(3818), + [anon_sym_downto] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_end] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_DOT_DOT2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [1119] = { [sym_xml_doc] = STATE(1119), @@ -181460,98 +187009,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1119), [sym_fsi_directive_decl] = STATE(1119), [sym_preproc_line] = STATE(1119), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_DOT_DOT2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), - [sym__dedent] = ACTIONS(3031), + [aux_sym__compound_type_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3822), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [1120] = { [sym_xml_doc] = STATE(1120), @@ -181560,98 +187108,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1120), [sym_fsi_directive_decl] = STATE(1120), [sym_preproc_line] = STATE(1120), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_DOT_DOT2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_GT_RBRACK] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_to] = ACTIONS(3314), + [anon_sym_downto] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_end] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [1121] = { [sym_xml_doc] = STATE(1121), @@ -181660,98 +187207,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1121), [sym_fsi_directive_decl] = STATE(1121), [sym_preproc_line] = STATE(1121), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_DOT_DOT2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), - [sym__dedent] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_GT_RBRACK] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_RBRACK] = ACTIONS(3827), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_RBRACE] = ACTIONS(3827), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3825), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_to] = ACTIONS(3825), + [anon_sym_downto] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_end] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_DOT_DOT2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [1122] = { [sym_xml_doc] = STATE(1122), @@ -181760,298 +187306,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1122), [sym_fsi_directive_decl] = STATE(1122), [sym_preproc_line] = STATE(1122), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_DOT_DOT2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), - [sym__dedent] = ACTIONS(3045), + [aux_sym_sequential_expression_repeat1] = STATE(1122), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_GT_RBRACK] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(3831), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_RBRACE] = ACTIONS(3831), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3829), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_to] = ACTIONS(3829), + [anon_sym_downto] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_end] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(3833), }, [1123] = { + [sym_type_arguments] = STATE(1574), + [sym_long_identifier] = STATE(1555), [sym_xml_doc] = STATE(1123), [sym_block_comment] = STATE(1123), [sym_line_comment] = STATE(1123), [sym_compiler_directive_decl] = STATE(1123), [sym_fsi_directive_decl] = STATE(1123), [sym_preproc_line] = STATE(1123), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_DOT_DOT2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), - [sym__dedent] = ACTIONS(3023), + [aux_sym__compound_type_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_AT_GT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3756), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3758), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1124] = { + [sym_type_arguments] = STATE(1574), + [sym_long_identifier] = STATE(1555), [sym_xml_doc] = STATE(1124), [sym_block_comment] = STATE(1124), [sym_line_comment] = STATE(1124), [sym_compiler_directive_decl] = STATE(1124), [sym_fsi_directive_decl] = STATE(1124), [sym_preproc_line] = STATE(1124), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_DOT_DOT2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [aux_sym__compound_type_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_AT_GT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3756), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3758), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1125] = { [sym_xml_doc] = STATE(1125), @@ -182060,98 +187603,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1125), [sym_fsi_directive_decl] = STATE(1125), [sym_preproc_line] = STATE(1125), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_DOT_DOT2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), - [sym__dedent] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_GT_RBRACK] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_RBRACK] = ACTIONS(3838), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_with] = ACTIONS(3836), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_to] = ACTIONS(3836), + [anon_sym_downto] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_end] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_DOT_DOT2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [1126] = { [sym_xml_doc] = STATE(1126), @@ -182160,98 +187702,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1126), [sym_fsi_directive_decl] = STATE(1126), [sym_preproc_line] = STATE(1126), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_DOT_DOT2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3005), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_GT_RBRACK] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_RBRACK] = ACTIONS(2770), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_to] = ACTIONS(2768), + [anon_sym_downto] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_end] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1127] = { [sym_xml_doc] = STATE(1127), @@ -182260,198 +187801,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1127), [sym_fsi_directive_decl] = STATE(1127), [sym_preproc_line] = STATE(1127), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_DOT_DOT2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_GT_RBRACK] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_RBRACK] = ACTIONS(3842), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_RBRACE] = ACTIONS(3842), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_with] = ACTIONS(3840), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_to] = ACTIONS(3840), + [anon_sym_downto] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_end] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_DOT_DOT2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [1128] = { + [sym_type_arguments] = STATE(1574), + [sym_long_identifier] = STATE(1555), [sym_xml_doc] = STATE(1128), [sym_block_comment] = STATE(1128), [sym_line_comment] = STATE(1128), [sym_compiler_directive_decl] = STATE(1128), [sym_fsi_directive_decl] = STATE(1128), [sym_preproc_line] = STATE(1128), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_DOT_DOT2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3686), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), - [sym__dedent] = ACTIONS(2992), + [aux_sym__compound_type_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_AT_GT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3756), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3758), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1129] = { [sym_xml_doc] = STATE(1129), @@ -182460,98 +187999,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1129), [sym_fsi_directive_decl] = STATE(1129), [sym_preproc_line] = STATE(1129), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [aux_sym_type_argument_repeat1] = STATE(1063), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3844), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [1130] = { [sym_xml_doc] = STATE(1130), @@ -182560,298 +188098,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1130), [sym_fsi_directive_decl] = STATE(1130), [sym_preproc_line] = STATE(1130), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_DOT_DOT2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1131] = { + [sym_type_arguments] = STATE(1519), + [sym_long_identifier] = STATE(1598), [sym_xml_doc] = STATE(1131), [sym_block_comment] = STATE(1131), [sym_line_comment] = STATE(1131), [sym_compiler_directive_decl] = STATE(1131), [sym_fsi_directive_decl] = STATE(1131), [sym_preproc_line] = STATE(1131), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [aux_sym__compound_type_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3668), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [anon_sym_POUNDendif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1132] = { + [sym_type_arguments] = STATE(1519), + [sym_long_identifier] = STATE(1598), [sym_xml_doc] = STATE(1132), [sym_block_comment] = STATE(1132), [sym_line_comment] = STATE(1132), [sym_compiler_directive_decl] = STATE(1132), [sym_fsi_directive_decl] = STATE(1132), [sym_preproc_line] = STATE(1132), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [aux_sym__compound_type_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3668), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [anon_sym_POUNDendif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1133] = { [sym_xml_doc] = STATE(1133), @@ -182860,98 +188395,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1133), [sym_fsi_directive_decl] = STATE(1133), [sym_preproc_line] = STATE(1133), - [sym_identifier] = ACTIONS(3147), - [anon_sym_module] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3147), - [anon_sym_LBRACK_LT] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3149), - [anon_sym_POUNDload] = ACTIONS(3149), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), - [sym__dedent] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_GT_RBRACK] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_RBRACK] = ACTIONS(3849), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3849), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_to] = ACTIONS(3847), + [anon_sym_downto] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_end] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_DOT_DOT2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [1134] = { [sym_xml_doc] = STATE(1134), @@ -182960,1299 +188494,1286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1134), [sym_fsi_directive_decl] = STATE(1134), [sym_preproc_line] = STATE(1134), - [sym_identifier] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_LBRACK_LT] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3175), - [anon_sym_POUNDload] = ACTIONS(3175), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), - [sym__dedent] = ACTIONS(3175), + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_open] = ACTIONS(3417), + [anon_sym_LBRACK_LT] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(3851), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3419), + [anon_sym_POUNDload] = ACTIONS(3419), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [1135] = { + [sym__else_expression] = STATE(1896), + [sym_elif_expression] = STATE(1569), [sym_xml_doc] = STATE(1135), [sym_block_comment] = STATE(1135), [sym_line_comment] = STATE(1135), [sym_compiler_directive_decl] = STATE(1135), [sym_fsi_directive_decl] = STATE(1135), [sym_preproc_line] = STATE(1135), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_DOT_DOT2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), - [sym__dedent] = ACTIONS(3039), + [aux_sym_if_expression_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3810), + [anon_sym_elif] = ACTIONS(3812), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), + [sym__dedent] = ACTIONS(3283), }, [1136] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), [sym_xml_doc] = STATE(1136), [sym_block_comment] = STATE(1136), [sym_line_comment] = STATE(1136), [sym_compiler_directive_decl] = STATE(1136), [sym_fsi_directive_decl] = STATE(1136), [sym_preproc_line] = STATE(1136), - [sym_identifier] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_LBRACK_LT] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3075), - [anon_sym_POUNDload] = ACTIONS(3075), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1137] = { + [sym_type_arguments] = STATE(1610), + [sym_long_identifier] = STATE(1583), [sym_xml_doc] = STATE(1137), [sym_block_comment] = STATE(1137), [sym_line_comment] = STATE(1137), [sym_compiler_directive_decl] = STATE(1137), [sym_fsi_directive_decl] = STATE(1137), [sym_preproc_line] = STATE(1137), - [sym_identifier] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_LBRACK_LT] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3690), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3179), - [anon_sym_POUNDload] = ACTIONS(3179), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), - [sym__dedent] = ACTIONS(3179), + [aux_sym__compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3853), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_AT_AT_GT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3687), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1138] = { + [sym_type_arguments] = STATE(1610), + [sym_long_identifier] = STATE(1583), [sym_xml_doc] = STATE(1138), [sym_block_comment] = STATE(1138), [sym_line_comment] = STATE(1138), [sym_compiler_directive_decl] = STATE(1138), [sym_fsi_directive_decl] = STATE(1138), [sym_preproc_line] = STATE(1138), - [aux_sym_sequential_expression_repeat1] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(3604), - [sym_identifier] = ACTIONS(3602), - [anon_sym_namespace] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_open] = ACTIONS(3602), - [anon_sym_LBRACK_LT] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3604), - [anon_sym_POUNDload] = ACTIONS(3604), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [aux_sym__compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3853), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_AT_AT_GT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3687), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1139] = { - [sym__else_expression] = STATE(1881), - [sym_elif_expression] = STATE(1566), + [sym_type_arguments] = STATE(1610), + [sym_long_identifier] = STATE(1583), [sym_xml_doc] = STATE(1139), [sym_block_comment] = STATE(1139), [sym_line_comment] = STATE(1139), [sym_compiler_directive_decl] = STATE(1139), [sym_fsi_directive_decl] = STATE(1139), [sym_preproc_line] = STATE(1139), - [aux_sym_if_expression_repeat1] = STATE(1151), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_elif] = ACTIONS(3694), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [anon_sym_POUNDendif] = ACTIONS(2894), - [anon_sym_POUNDelse] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), - }, - [1140] = { - [sym_xml_doc] = STATE(1140), - [sym_block_comment] = STATE(1140), - [sym_line_comment] = STATE(1140), - [sym_compiler_directive_decl] = STATE(1140), - [sym_fsi_directive_decl] = STATE(1140), - [sym_preproc_line] = STATE(1140), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_DOT_DOT2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), - [sym__dedent] = ACTIONS(3027), - }, - [1141] = { - [sym_xml_doc] = STATE(1141), - [sym_block_comment] = STATE(1141), - [sym_line_comment] = STATE(1141), - [sym_compiler_directive_decl] = STATE(1141), - [sym_fsi_directive_decl] = STATE(1141), - [sym_preproc_line] = STATE(1141), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), - }, - [1142] = { - [sym_xml_doc] = STATE(1142), - [sym_block_comment] = STATE(1142), - [sym_line_comment] = STATE(1142), - [sym_compiler_directive_decl] = STATE(1142), - [sym_fsi_directive_decl] = STATE(1142), - [sym_preproc_line] = STATE(1142), - [aux_sym_type_argument_repeat1] = STATE(1179), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3696), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - }, - [1143] = { - [sym_xml_doc] = STATE(1143), - [sym_block_comment] = STATE(1143), - [sym_line_comment] = STATE(1143), - [sym_compiler_directive_decl] = STATE(1143), - [sym_fsi_directive_decl] = STATE(1143), - [sym_preproc_line] = STATE(1143), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), - [sym__dedent] = ACTIONS(3049), - }, - [1144] = { - [sym_xml_doc] = STATE(1144), - [sym_block_comment] = STATE(1144), - [sym_line_comment] = STATE(1144), - [sym_compiler_directive_decl] = STATE(1144), - [sym_fsi_directive_decl] = STATE(1144), - [sym_preproc_line] = STATE(1144), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2642), - [aux_sym_decimal_token1] = ACTIONS(2604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), - }, - [1145] = { - [sym_xml_doc] = STATE(1145), - [sym_block_comment] = STATE(1145), - [sym_line_comment] = STATE(1145), - [sym_compiler_directive_decl] = STATE(1145), - [sym_fsi_directive_decl] = STATE(1145), - [sym_preproc_line] = STATE(1145), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), - [sym__dedent] = ACTIONS(3045), - }, - [1146] = { - [sym_xml_doc] = STATE(1146), - [sym_block_comment] = STATE(1146), - [sym_line_comment] = STATE(1146), - [sym_compiler_directive_decl] = STATE(1146), - [sym_fsi_directive_decl] = STATE(1146), - [sym_preproc_line] = STATE(1146), - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_LBRACK_LT] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3187), - [anon_sym_POUNDload] = ACTIONS(3187), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), - }, + [aux_sym__compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3853), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_AT_AT_GT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3687), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + }, + [1140] = { + [sym_xml_doc] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_line_comment] = STATE(1140), + [sym_compiler_directive_decl] = STATE(1140), + [sym_fsi_directive_decl] = STATE(1140), + [sym_preproc_line] = STATE(1140), + [aux_sym_long_identifier_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), + }, + [1141] = { + [sym_xml_doc] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_line_comment] = STATE(1141), + [sym_compiler_directive_decl] = STATE(1141), + [sym_fsi_directive_decl] = STATE(1141), + [sym_preproc_line] = STATE(1141), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_GT_RBRACK] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3861), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_RBRACE] = ACTIONS(3861), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_to] = ACTIONS(3859), + [anon_sym_downto] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_end] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_DOT_DOT2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), + }, + [1142] = { + [sym_xml_doc] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_line_comment] = STATE(1142), + [sym_compiler_directive_decl] = STATE(1142), + [sym_fsi_directive_decl] = STATE(1142), + [sym_preproc_line] = STATE(1142), + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_open] = ACTIONS(3455), + [anon_sym_LBRACK_LT] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3457), + [anon_sym_POUNDload] = ACTIONS(3457), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), + }, + [1143] = { + [sym_xml_doc] = STATE(1143), + [sym_block_comment] = STATE(1143), + [sym_line_comment] = STATE(1143), + [sym_compiler_directive_decl] = STATE(1143), + [sym_fsi_directive_decl] = STATE(1143), + [sym_preproc_line] = STATE(1143), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_GT_RBRACK] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_RBRACK] = ACTIONS(3865), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_RBRACE] = ACTIONS(3865), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_to] = ACTIONS(3863), + [anon_sym_downto] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_end] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_DOT_DOT2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), + }, + [1144] = { + [sym_xml_doc] = STATE(1144), + [sym_block_comment] = STATE(1144), + [sym_line_comment] = STATE(1144), + [sym_compiler_directive_decl] = STATE(1144), + [sym_fsi_directive_decl] = STATE(1144), + [sym_preproc_line] = STATE(1144), + [aux_sym_rules_repeat1] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_module] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_open] = ACTIONS(3483), + [anon_sym_LBRACK_LT] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3485), + [anon_sym_POUNDload] = ACTIONS(3485), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3870), + }, + [1145] = { + [sym_xml_doc] = STATE(1145), + [sym_block_comment] = STATE(1145), + [sym_line_comment] = STATE(1145), + [sym_compiler_directive_decl] = STATE(1145), + [sym_fsi_directive_decl] = STATE(1145), + [sym_preproc_line] = STATE(1145), + [aux_sym_rules_repeat1] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3463), + [anon_sym_namespace] = ACTIONS(3463), + [anon_sym_module] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_open] = ACTIONS(3463), + [anon_sym_LBRACK_LT] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_type] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3465), + [anon_sym_POUNDload] = ACTIONS(3465), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(3875), + }, + [1146] = { + [sym_xml_doc] = STATE(1146), + [sym_block_comment] = STATE(1146), + [sym_line_comment] = STATE(1146), + [sym_compiler_directive_decl] = STATE(1146), + [sym_fsi_directive_decl] = STATE(1146), + [sym_preproc_line] = STATE(1146), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_GT_RBRACK] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_with] = ACTIONS(3878), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_to] = ACTIONS(3878), + [anon_sym_downto] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_end] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_DOT_DOT2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), + }, [1147] = { [sym_xml_doc] = STATE(1147), [sym_block_comment] = STATE(1147), @@ -184260,198 +189781,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1147), [sym_fsi_directive_decl] = STATE(1147), [sym_preproc_line] = STATE(1147), - [aux_sym__compound_type_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [aux_sym_long_identifier_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3882), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), }, [1148] = { + [sym_type_arguments] = STATE(1519), + [sym_long_identifier] = STATE(1598), [sym_xml_doc] = STATE(1148), [sym_block_comment] = STATE(1148), [sym_line_comment] = STATE(1148), [sym_compiler_directive_decl] = STATE(1148), [sym_fsi_directive_decl] = STATE(1148), [sym_preproc_line] = STATE(1148), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), - [sym__dedent] = ACTIONS(3023), + [aux_sym__compound_type_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3668), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3670), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [anon_sym_POUNDendif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1149] = { [sym_xml_doc] = STATE(1149), @@ -184460,98 +189979,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1149), [sym_fsi_directive_decl] = STATE(1149), [sym_preproc_line] = STATE(1149), - [aux_sym_rules_repeat1] = STATE(1154), - [sym_identifier] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_open] = ACTIONS(3160), - [anon_sym_LBRACK_LT] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3162), - [anon_sym_POUNDload] = ACTIONS(3162), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3701), - [sym__dedent] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_GT_RBRACK] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_RBRACK] = ACTIONS(3886), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_with] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_to] = ACTIONS(3884), + [anon_sym_downto] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_end] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DOT_DOT2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [1150] = { [sym_xml_doc] = STATE(1150), @@ -184560,198 +190078,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1150), [sym_fsi_directive_decl] = STATE(1150), [sym_preproc_line] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(3199), - [sym_identifier] = ACTIONS(3197), - [anon_sym_namespace] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_LBRACK_LT] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3199), - [anon_sym_POUNDload] = ACTIONS(3199), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [aux_sym__compound_type_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_DOT_DOT2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), + [sym__dedent] = ACTIONS(3214), }, [1151] = { - [sym__else_expression] = STATE(1916), - [sym_elif_expression] = STATE(1566), [sym_xml_doc] = STATE(1151), [sym_block_comment] = STATE(1151), [sym_line_comment] = STATE(1151), [sym_compiler_directive_decl] = STATE(1151), [sym_fsi_directive_decl] = STATE(1151), [sym_preproc_line] = STATE(1151), - [aux_sym_if_expression_repeat1] = STATE(1292), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_elif] = ACTIONS(3694), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [anon_sym_POUNDendif] = ACTIONS(2947), - [anon_sym_POUNDelse] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_to] = ACTIONS(3285), + [anon_sym_downto] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_end] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1152] = { [sym_xml_doc] = STATE(1152), @@ -184760,98 +190276,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1152), [sym_fsi_directive_decl] = STATE(1152), [sym_preproc_line] = STATE(1152), - [aux_sym__compound_type_repeat1] = STATE(1152), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_GT_RBRACK] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_RBRACK] = ACTIONS(3890), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_with] = ACTIONS(3888), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_to] = ACTIONS(3888), + [anon_sym_downto] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_end] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_DOT_DOT2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [1153] = { [sym_xml_doc] = STATE(1153), @@ -184860,98 +190375,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1153), [sym_fsi_directive_decl] = STATE(1153), [sym_preproc_line] = STATE(1153), - [aux_sym_rules_repeat1] = STATE(1158), - [sym_identifier] = ACTIONS(3108), - [anon_sym_module] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3108), - [anon_sym_LBRACK_LT] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_type] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3110), - [anon_sym_POUNDload] = ACTIONS(3110), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3707), - [sym__dedent] = ACTIONS(3110), + [aux_sym_long_identifier_repeat1] = STATE(1153), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3892), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1154] = { [sym_xml_doc] = STATE(1154), @@ -184960,98 +190474,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1154), [sym_fsi_directive_decl] = STATE(1154), [sym_preproc_line] = STATE(1154), - [aux_sym_rules_repeat1] = STATE(1161), - [sym_identifier] = ACTIONS(3108), - [anon_sym_module] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3108), - [anon_sym_LBRACK_LT] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_type] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3110), - [anon_sym_POUNDload] = ACTIONS(3110), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3707), - [sym__dedent] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_GT_RBRACK] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_RBRACK] = ACTIONS(3897), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_to] = ACTIONS(3895), + [anon_sym_downto] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_end] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_DOT_DOT2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [1155] = { [sym_xml_doc] = STATE(1155), @@ -185060,98 +190573,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1155), [sym_fsi_directive_decl] = STATE(1155), [sym_preproc_line] = STATE(1155), - [sym_identifier] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_GT_RBRACK] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_RBRACK] = ACTIONS(3901), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_to] = ACTIONS(3899), + [anon_sym_downto] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_end] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_DOT_DOT2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [1156] = { [sym_xml_doc] = STATE(1156), @@ -185160,198 +190672,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1156), [sym_fsi_directive_decl] = STATE(1156), [sym_preproc_line] = STATE(1156), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3231), - [anon_sym_LBRACK_LT] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(3710), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3233), - [anon_sym_POUNDload] = ACTIONS(3233), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [aux_sym_rules_repeat1] = STATE(1164), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_open] = ACTIONS(3404), + [anon_sym_LBRACK_LT] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3406), + [anon_sym_POUNDload] = ACTIONS(3406), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(3903), }, [1157] = { + [sym_type_arguments] = STATE(1480), + [sym_long_identifier] = STATE(1524), [sym_xml_doc] = STATE(1157), [sym_block_comment] = STATE(1157), [sym_line_comment] = STATE(1157), [sym_compiler_directive_decl] = STATE(1157), [sym_fsi_directive_decl] = STATE(1157), [sym_preproc_line] = STATE(1157), - [sym_identifier] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_LBRACK_LT] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3191), - [anon_sym_POUNDload] = ACTIONS(3191), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [aux_sym__compound_type_repeat1] = STATE(1427), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_DOT_DOT] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3573), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3575), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1158] = { [sym_xml_doc] = STATE(1158), @@ -185360,198 +190870,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1158), [sym_fsi_directive_decl] = STATE(1158), [sym_preproc_line] = STATE(1158), - [aux_sym_rules_repeat1] = STATE(1161), - [sym_identifier] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_open] = ACTIONS(3079), - [anon_sym_LBRACK_LT] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_type] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3699), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3081), - [anon_sym_POUNDload] = ACTIONS(3081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(3714), - [sym__dedent] = ACTIONS(3081), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_module] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_open] = ACTIONS(3493), + [anon_sym_LBRACK_LT] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_type] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3495), + [anon_sym_POUNDload] = ACTIONS(3495), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1159] = { - [sym_elif_expression] = STATE(1459), + [sym_type_arguments] = STATE(1476), + [sym_long_identifier] = STATE(1483), [sym_xml_doc] = STATE(1159), [sym_block_comment] = STATE(1159), [sym_line_comment] = STATE(1159), [sym_compiler_directive_decl] = STATE(1159), [sym_fsi_directive_decl] = STATE(1159), [sym_preproc_line] = STATE(1159), - [aux_sym_if_expression_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3717), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), - [sym__dedent] = ACTIONS(2998), + [aux_sym__compound_type_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3010), + [anon_sym_COLON] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_COLON_QMARK] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_COLON_GT] = ACTIONS(3010), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3010), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_DOT_LBRACK] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_GT] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3634), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3012), + [anon_sym_DASH_DOT] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3012), + [aux_sym_infix_op_token1] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3012), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), }, [1160] = { [sym_xml_doc] = STATE(1160), @@ -185560,98 +191068,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1160), [sym_fsi_directive_decl] = STATE(1160), [sym_preproc_line] = STATE(1160), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_LBRACK_LT] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3133), - [anon_sym_POUNDload] = ACTIONS(3133), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_GT_RBRACK] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_RBRACK] = ACTIONS(3908), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3908), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_with] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_to] = ACTIONS(3906), + [anon_sym_downto] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_end] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_DOT_DOT2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [1161] = { [sym_xml_doc] = STATE(1161), @@ -185660,98 +191167,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1161), [sym_fsi_directive_decl] = STATE(1161), [sym_preproc_line] = STATE(1161), - [aux_sym_rules_repeat1] = STATE(1161), - [sym_identifier] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_LBRACK_LT] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3133), - [anon_sym_POUNDload] = ACTIONS(3133), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3723), - [sym__dedent] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_GT_RBRACK] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_RBRACK] = ACTIONS(3912), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_with] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_to] = ACTIONS(3910), + [anon_sym_downto] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_end] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_DOT_DOT2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [1162] = { [sym_xml_doc] = STATE(1162), @@ -185760,98 +191266,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1162), [sym_fsi_directive_decl] = STATE(1162), [sym_preproc_line] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(3247), - [sym_identifier] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_open] = ACTIONS(3245), - [anon_sym_LBRACK_LT] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3247), - [anon_sym_POUNDload] = ACTIONS(3247), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [aux_sym_long_identifier_repeat1] = STATE(1153), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3882), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1163] = { [sym_xml_doc] = STATE(1163), @@ -185860,98 +191365,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1163), [sym_fsi_directive_decl] = STATE(1163), [sym_preproc_line] = STATE(1163), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), - [sym__dedent] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_GT_RBRACK] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_RBRACK] = ACTIONS(3916), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_RBRACE] = ACTIONS(3916), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_with] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_to] = ACTIONS(3914), + [anon_sym_downto] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_end] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_DOT_DOT2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [1164] = { [sym_xml_doc] = STATE(1164), @@ -185960,98 +191464,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1164), [sym_fsi_directive_decl] = STATE(1164), [sym_preproc_line] = STATE(1164), - [aux_sym_long_identifier_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [anon_sym_POUNDendif] = ACTIONS(2937), - [anon_sym_POUNDelse] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [aux_sym_rules_repeat1] = STATE(1144), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_open] = ACTIONS(3442), + [anon_sym_LBRACK_LT] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3444), + [anon_sym_POUNDload] = ACTIONS(3444), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(3918), }, [1165] = { [sym_xml_doc] = STATE(1165), @@ -186060,98 +191563,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1165), [sym_fsi_directive_decl] = STATE(1165), [sym_preproc_line] = STATE(1165), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_GT_RBRACK] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(3923), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_to] = ACTIONS(3921), + [anon_sym_downto] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_end] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_DOT_DOT2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [1166] = { [sym_xml_doc] = STATE(1166), @@ -186160,198 +191662,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1166), [sym_fsi_directive_decl] = STATE(1166), [sym_preproc_line] = STATE(1166), - [aux_sym_long_identifier_repeat1] = STATE(1176), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3726), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [aux_sym_rules_repeat1] = STATE(1145), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_open] = ACTIONS(3442), + [anon_sym_LBRACK_LT] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3444), + [anon_sym_POUNDload] = ACTIONS(3444), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(3918), }, [1167] = { - [sym__else_expression] = STATE(2000), - [sym_elif_expression] = STATE(1574), + [sym_type_arguments] = STATE(1610), + [sym_long_identifier] = STATE(1583), [sym_xml_doc] = STATE(1167), [sym_block_comment] = STATE(1167), [sym_line_comment] = STATE(1167), [sym_compiler_directive_decl] = STATE(1167), [sym_fsi_directive_decl] = STATE(1167), [sym_preproc_line] = STATE(1167), - [aux_sym_if_expression_repeat1] = STATE(1178), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_elif] = ACTIONS(3730), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_DASH_GT] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_DOT_DOT] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [aux_sym__compound_type_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(3853), + [anon_sym_EQ] = ACTIONS(3022), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3024), + [anon_sym_AT_AT_GT] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_COLON_GT] = ACTIONS(3022), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3022), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_DOT_LBRACK] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3022), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3685), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3687), + [anon_sym_or] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3024), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3024), + [anon_sym_DASH_DOT] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3024), + [aux_sym_infix_op_token1] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3022), + [anon_sym_DOLLAR] = ACTIONS(3024), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3024), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), }, [1168] = { [sym_xml_doc] = STATE(1168), @@ -186360,98 +191860,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1168), [sym_fsi_directive_decl] = STATE(1168), [sym_preproc_line] = STATE(1168), - [aux_sym_long_identifier_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3732), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_GT_RBRACK] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_RBRACK] = ACTIONS(3927), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_RBRACE] = ACTIONS(3927), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_to] = ACTIONS(3925), + [anon_sym_downto] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_end] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_DOT_DOT2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [1169] = { [sym_xml_doc] = STATE(1169), @@ -186460,98 +191959,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1169), [sym_fsi_directive_decl] = STATE(1169), [sym_preproc_line] = STATE(1169), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_GT_RBRACK] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_RBRACK] = ACTIONS(3931), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3929), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_to] = ACTIONS(3929), + [anon_sym_downto] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_end] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_DOT_DOT2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [1170] = { [sym_xml_doc] = STATE(1170), @@ -186560,98 +192058,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1170), [sym_fsi_directive_decl] = STATE(1170), [sym_preproc_line] = STATE(1170), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), - [sym__dedent] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_GT_RBRACK] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_RBRACK] = ACTIONS(3935), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_RBRACE] = ACTIONS(3935), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3933), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_to] = ACTIONS(3933), + [anon_sym_downto] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_end] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_DOT_DOT2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [1171] = { [sym_xml_doc] = STATE(1171), @@ -186660,98 +192157,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1171), [sym_fsi_directive_decl] = STATE(1171), [sym_preproc_line] = STATE(1171), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_GT_RBRACK] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_RBRACK] = ACTIONS(3939), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3937), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_to] = ACTIONS(3937), + [anon_sym_downto] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_end] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_DOT_DOT2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [1172] = { [sym_xml_doc] = STATE(1172), @@ -186760,198 +192256,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1172), [sym_fsi_directive_decl] = STATE(1172), [sym_preproc_line] = STATE(1172), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_GT_RBRACK] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3941), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_to] = ACTIONS(3941), + [anon_sym_downto] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_end] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_DOT_DOT2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [1173] = { + [sym_type_arguments] = STATE(1476), + [sym_long_identifier] = STATE(1483), [sym_xml_doc] = STATE(1173), [sym_block_comment] = STATE(1173), [sym_line_comment] = STATE(1173), [sym_compiler_directive_decl] = STATE(1173), [sym_fsi_directive_decl] = STATE(1173), [sym_preproc_line] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_open] = ACTIONS(3239), - [anon_sym_LBRACK_LT] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(3735), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3241), - [anon_sym_POUNDload] = ACTIONS(3241), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [aux_sym__compound_type_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3634), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1174] = { [sym_xml_doc] = STATE(1174), @@ -186960,198 +192454,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1174), [sym_fsi_directive_decl] = STATE(1174), [sym_preproc_line] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3189), - [anon_sym_namespace] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_LBRACK_LT] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3191), - [anon_sym_POUNDload] = ACTIONS(3191), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_GT_RBRACK] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_RBRACK] = ACTIONS(3947), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_to] = ACTIONS(3945), + [anon_sym_downto] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_end] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_DOT_DOT2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [1175] = { - [sym__else_expression] = STATE(1894), - [sym_elif_expression] = STATE(1565), + [sym_type_arguments] = STATE(1574), + [sym_long_identifier] = STATE(1555), [sym_xml_doc] = STATE(1175), [sym_block_comment] = STATE(1175), [sym_line_comment] = STATE(1175), [sym_compiler_directive_decl] = STATE(1175), [sym_fsi_directive_decl] = STATE(1175), [sym_preproc_line] = STATE(1175), - [aux_sym_if_expression_repeat1] = STATE(1177), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3737), - [anon_sym_elif] = ACTIONS(3739), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [aux_sym__compound_type_repeat1] = STATE(1355), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_AT_GT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3752), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3756), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3758), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1176] = { [sym_xml_doc] = STATE(1176), @@ -187160,298 +192652,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1176), [sym_fsi_directive_decl] = STATE(1176), [sym_preproc_line] = STATE(1176), - [aux_sym_long_identifier_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3726), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_GT_RBRACK] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_RBRACK] = ACTIONS(3951), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3951), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3949), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_to] = ACTIONS(3949), + [anon_sym_downto] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_end] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_DOT_DOT2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [1177] = { - [sym__else_expression] = STATE(1860), - [sym_elif_expression] = STATE(1565), [sym_xml_doc] = STATE(1177), [sym_block_comment] = STATE(1177), [sym_line_comment] = STATE(1177), [sym_compiler_directive_decl] = STATE(1177), [sym_fsi_directive_decl] = STATE(1177), [sym_preproc_line] = STATE(1177), - [aux_sym_if_expression_repeat1] = STATE(1194), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3737), - [anon_sym_elif] = ACTIONS(3739), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_GT_RBRACK] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_RBRACK] = ACTIONS(3955), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3955), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3953), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_to] = ACTIONS(3953), + [anon_sym_downto] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_end] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_DOT_DOT2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [1178] = { - [sym__else_expression] = STATE(2028), - [sym_elif_expression] = STATE(1574), [sym_xml_doc] = STATE(1178), [sym_block_comment] = STATE(1178), [sym_line_comment] = STATE(1178), [sym_compiler_directive_decl] = STATE(1178), [sym_fsi_directive_decl] = STATE(1178), [sym_preproc_line] = STATE(1178), - [aux_sym_if_expression_repeat1] = STATE(1212), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_elif] = ACTIONS(3730), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_DASH_GT] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_DOT_DOT] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_GT_RBRACK] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_RBRACK] = ACTIONS(3959), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3959), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3957), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_to] = ACTIONS(3957), + [anon_sym_downto] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_end] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_DOT_DOT2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [1179] = { [sym_xml_doc] = STATE(1179), @@ -187460,198 +192949,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1179), [sym_fsi_directive_decl] = STATE(1179), [sym_preproc_line] = STATE(1179), - [aux_sym_type_argument_repeat1] = STATE(1185), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_GT_RBRACK] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_RBRACK] = ACTIONS(3963), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_to] = ACTIONS(3961), + [anon_sym_downto] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_end] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_DOT_DOT2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [1180] = { + [sym_type_arguments] = STATE(1476), + [sym_long_identifier] = STATE(1483), [sym_xml_doc] = STATE(1180), [sym_block_comment] = STATE(1180), [sym_line_comment] = STATE(1180), [sym_compiler_directive_decl] = STATE(1180), [sym_fsi_directive_decl] = STATE(1180), [sym_preproc_line] = STATE(1180), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), - [sym__dedent] = ACTIONS(3027), + [aux_sym__compound_type_repeat1] = STATE(1435), + [sym_identifier] = ACTIONS(3628), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym_COLON] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_COLON_QMARK] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_COLON_GT] = ACTIONS(3090), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_DOT_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3634), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3636), + [anon_sym_or] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3092), + [anon_sym_DASH_DOT] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3092), + [aux_sym_infix_op_token1] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3092), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), }, [1181] = { [sym_xml_doc] = STATE(1181), @@ -187660,98 +193147,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1181), [sym_fsi_directive_decl] = STATE(1181), [sym_preproc_line] = STATE(1181), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_GT_RBRACK] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_RBRACK] = ACTIONS(3967), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_RBRACE] = ACTIONS(3967), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_to] = ACTIONS(3965), + [anon_sym_downto] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_end] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_DOT_DOT2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [1182] = { [sym_xml_doc] = STATE(1182), @@ -187760,98 +193246,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1182), [sym_fsi_directive_decl] = STATE(1182), [sym_preproc_line] = STATE(1182), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_GT_RBRACK] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_RBRACK] = ACTIONS(3971), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_RBRACE] = ACTIONS(3971), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_to] = ACTIONS(3969), + [anon_sym_downto] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_end] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_DOT_DOT2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [1183] = { [sym_xml_doc] = STATE(1183), @@ -187860,98 +193345,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1183), [sym_fsi_directive_decl] = STATE(1183), [sym_preproc_line] = STATE(1183), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_GT_RBRACK] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_RBRACK] = ACTIONS(3975), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_to] = ACTIONS(3973), + [anon_sym_downto] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_end] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_DOT_DOT2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [1184] = { [sym_xml_doc] = STATE(1184), @@ -187960,98 +193444,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1184), [sym_fsi_directive_decl] = STATE(1184), [sym_preproc_line] = STATE(1184), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), - [sym__dedent] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_open] = ACTIONS(3387), + [anon_sym_LBRACK_LT] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3389), + [anon_sym_POUNDload] = ACTIONS(3389), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1185] = { [sym_xml_doc] = STATE(1185), @@ -188060,98 +193543,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1185), [sym_fsi_directive_decl] = STATE(1185), [sym_preproc_line] = STATE(1185), - [aux_sym_type_argument_repeat1] = STATE(1185), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3741), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_GT_RBRACK] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_RBRACK] = ACTIONS(3979), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_to] = ACTIONS(3977), + [anon_sym_downto] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_end] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DOT_DOT2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [1186] = { [sym_xml_doc] = STATE(1186), @@ -188160,98 +193642,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1186), [sym_fsi_directive_decl] = STATE(1186), [sym_preproc_line] = STATE(1186), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3744), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), - [sym__dedent] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_open] = ACTIONS(3455), + [anon_sym_LBRACK_LT] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3457), + [anon_sym_POUNDload] = ACTIONS(3457), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), + [sym__dedent] = ACTIONS(3457), }, [1187] = { [sym_xml_doc] = STATE(1187), @@ -188260,97 +193740,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1187), [sym_fsi_directive_decl] = STATE(1187), [sym_preproc_line] = STATE(1187), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [aux_sym_type_argument_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1188] = { [sym_xml_doc] = STATE(1188), @@ -188359,97 +193838,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1188), [sym_fsi_directive_decl] = STATE(1188), [sym_preproc_line] = STATE(1188), - [ts_builtin_sym_end] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_open] = ACTIONS(3280), - [anon_sym_LBRACK_LT] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3282), - [anon_sym_POUNDload] = ACTIONS(3282), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_DOT_DOT2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), + [sym__dedent] = ACTIONS(3320), }, [1189] = { [sym_xml_doc] = STATE(1189), @@ -188458,97 +193936,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1189), [sym_fsi_directive_decl] = STATE(1189), [sym_preproc_line] = STATE(1189), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_long_identifier_repeat1] = STATE(1224), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [anon_sym_POUNDendif] = ACTIONS(3259), + [anon_sym_POUNDelse] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1190] = { [sym_xml_doc] = STATE(1190), @@ -188557,97 +194034,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1190), [sym_fsi_directive_decl] = STATE(1190), [sym_preproc_line] = STATE(1190), - [aux_sym_sequential_expression_repeat1] = STATE(1193), - [sym_identifier] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_open] = ACTIONS(3602), - [anon_sym_LBRACK_LT] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3604), - [anon_sym_POUNDload] = ACTIONS(3604), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), - [sym__dedent] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), + [sym__dedent] = ACTIONS(3324), }, [1191] = { [sym_xml_doc] = STATE(1191), @@ -188656,97 +194132,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1191), [sym_fsi_directive_decl] = STATE(1191), [sym_preproc_line] = STATE(1191), - [aux_sym_long_identifier_repeat1] = STATE(1196), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), + [sym__dedent] = ACTIONS(3298), }, [1192] = { [sym_xml_doc] = STATE(1192), @@ -188755,97 +194230,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1192), [sym_fsi_directive_decl] = STATE(1192), [sym_preproc_line] = STATE(1192), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [anon_sym_POUNDendif] = ACTIONS(3035), - [anon_sym_POUNDelse] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3493), + [anon_sym_module] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_open] = ACTIONS(3493), + [anon_sym_LBRACK_LT] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_type] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3495), + [anon_sym_POUNDload] = ACTIONS(3495), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + [sym__dedent] = ACTIONS(3495), }, [1193] = { [sym_xml_doc] = STATE(1193), @@ -188855,195 +194329,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(1193), [sym_preproc_line] = STATE(1193), [aux_sym_sequential_expression_repeat1] = STATE(1193), - [sym_identifier] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_LBRACK_LT] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3503), - [anon_sym_POUNDload] = ACTIONS(3503), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3750), - [sym__dedent] = ACTIONS(3503), + [ts_builtin_sym_end] = ACTIONS(3831), + [sym_identifier] = ACTIONS(3829), + [anon_sym_namespace] = ACTIONS(3829), + [anon_sym_module] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_open] = ACTIONS(3829), + [anon_sym_LBRACK_LT] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_type] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3831), + [anon_sym_POUNDload] = ACTIONS(3831), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(3983), }, [1194] = { - [sym_elif_expression] = STATE(1565), [sym_xml_doc] = STATE(1194), [sym_block_comment] = STATE(1194), [sym_line_comment] = STATE(1194), [sym_compiler_directive_decl] = STATE(1194), [sym_fsi_directive_decl] = STATE(1194), [sym_preproc_line] = STATE(1194), - [aux_sym_if_expression_repeat1] = STATE(1194), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_as] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3753), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_DOT_DOT2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [1195] = { [sym_xml_doc] = STATE(1195), @@ -189052,97 +194524,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1195), [sym_fsi_directive_decl] = STATE(1195), [sym_preproc_line] = STATE(1195), - [aux_sym_long_identifier_repeat1] = STATE(1191), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3756), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_DOT_DOT] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_open] = ACTIONS(3451), + [anon_sym_LBRACK_LT] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3453), + [anon_sym_POUNDload] = ACTIONS(3453), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), + [sym__dedent] = ACTIONS(3453), }, [1196] = { [sym_xml_doc] = STATE(1196), @@ -189151,97 +194622,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1196), [sym_fsi_directive_decl] = STATE(1196), [sym_preproc_line] = STATE(1196), - [aux_sym_long_identifier_repeat1] = STATE(1196), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3760), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_DOT_DOT2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3363), }, [1197] = { [sym_xml_doc] = STATE(1197), @@ -189250,97 +194720,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1197), [sym_fsi_directive_decl] = STATE(1197), [sym_preproc_line] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_open] = ACTIONS(3528), - [anon_sym_LBRACK_LT] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3530), - [anon_sym_POUNDload] = ACTIONS(3530), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [aux_sym_type_argument_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3986), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1198] = { [sym_xml_doc] = STATE(1198), @@ -189349,97 +194818,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1198), [sym_fsi_directive_decl] = STATE(1198), [sym_preproc_line] = STATE(1198), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [anon_sym_POUNDelse] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [aux_sym_long_identifier_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3989), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1199] = { [sym_xml_doc] = STATE(1199), @@ -189448,97 +194916,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1199), [sym_fsi_directive_decl] = STATE(1199), [sym_preproc_line] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_DOT_DOT2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), + [sym__dedent] = ACTIONS(3342), }, [1200] = { [sym_xml_doc] = STATE(1200), @@ -189547,97 +195014,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1200), [sym_fsi_directive_decl] = STATE(1200), [sym_preproc_line] = STATE(1200), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1201] = { [sym_xml_doc] = STATE(1201), @@ -189646,97 +195112,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1201), [sym_fsi_directive_decl] = STATE(1201), [sym_preproc_line] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3566), - [anon_sym_namespace] = ACTIONS(3566), - [anon_sym_module] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_open] = ACTIONS(3566), - [anon_sym_LBRACK_LT] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_type] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3568), - [anon_sym_POUNDload] = ACTIONS(3568), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_open] = ACTIONS(3554), + [anon_sym_LBRACK_LT] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(3991), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3556), + [anon_sym_POUNDload] = ACTIONS(3556), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [1202] = { [sym_xml_doc] = STATE(1202), @@ -189745,97 +195210,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1202), [sym_fsi_directive_decl] = STATE(1202), [sym_preproc_line] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(3572), - [sym_identifier] = ACTIONS(3570), - [anon_sym_namespace] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_open] = ACTIONS(3570), - [anon_sym_LBRACK_LT] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3572), - [anon_sym_POUNDload] = ACTIONS(3572), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), + [sym__dedent] = ACTIONS(3310), }, [1203] = { [sym_xml_doc] = STATE(1203), @@ -189844,97 +195308,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1203), [sym_fsi_directive_decl] = STATE(1203), [sym_preproc_line] = STATE(1203), - [aux_sym__compound_type_repeat1] = STATE(1203), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3763), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [1204] = { [sym_xml_doc] = STATE(1204), @@ -189943,196 +195406,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1204), [sym_fsi_directive_decl] = STATE(1204), [sym_preproc_line] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3477), - [anon_sym_namespace] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_LBRACK_LT] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3479), - [anon_sym_POUNDload] = ACTIONS(3479), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), + [sym__dedent] = ACTIONS(3302), }, [1205] = { + [sym_elif_expression] = STATE(1465), [sym_xml_doc] = STATE(1205), [sym_block_comment] = STATE(1205), [sym_line_comment] = STATE(1205), [sym_compiler_directive_decl] = STATE(1205), [sym_fsi_directive_decl] = STATE(1205), [sym_preproc_line] = STATE(1205), - [aux_sym_long_identifier_repeat1] = STATE(1205), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3766), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_if_expression_repeat1] = STATE(1205), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_DOT_DOT2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), + [sym__dedent] = ACTIONS(3346), }, [1206] = { [sym_xml_doc] = STATE(1206), @@ -190141,97 +195602,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1206), [sym_fsi_directive_decl] = STATE(1206), [sym_preproc_line] = STATE(1206), - [aux_sym_long_identifier_repeat1] = STATE(1205), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3769), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [anon_sym_POUNDendif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_DOT_DOT2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), + [sym__dedent] = ACTIONS(3298), }, [1207] = { [sym_xml_doc] = STATE(1207), @@ -190240,97 +195700,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1207), [sym_fsi_directive_decl] = STATE(1207), [sym_preproc_line] = STATE(1207), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_open] = ACTIONS(3387), + [anon_sym_LBRACK_LT] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3389), + [anon_sym_POUNDload] = ACTIONS(3389), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), }, [1208] = { [sym_xml_doc] = STATE(1208), @@ -190339,97 +195798,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1208), [sym_fsi_directive_decl] = STATE(1208), [sym_preproc_line] = STATE(1208), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3771), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [aux_sym_sequential_expression_repeat1] = STATE(1193), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_open] = ACTIONS(3612), + [anon_sym_LBRACK_LT] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3614), + [anon_sym_POUNDload] = ACTIONS(3614), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [1209] = { [sym_xml_doc] = STATE(1209), @@ -190438,97 +195896,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1209), [sym_fsi_directive_decl] = STATE(1209), [sym_preproc_line] = STATE(1209), - [aux_sym__compound_type_repeat1] = STATE(1203), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3306), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_as] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3363), }, [1210] = { [sym_xml_doc] = STATE(1210), @@ -190537,97 +195994,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1210), [sym_fsi_directive_decl] = STATE(1210), [sym_preproc_line] = STATE(1210), - [aux_sym_long_identifier_repeat1] = STATE(1244), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1211] = { [sym_xml_doc] = STATE(1211), @@ -190636,196 +196092,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1211), [sym_fsi_directive_decl] = STATE(1211), [sym_preproc_line] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3465), - [anon_sym_namespace] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_LBRACK_LT] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3467), - [anon_sym_POUNDload] = ACTIONS(3467), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [aux_sym_long_identifier_repeat1] = STATE(1211), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1212] = { - [sym_elif_expression] = STATE(1574), [sym_xml_doc] = STATE(1212), [sym_block_comment] = STATE(1212), [sym_line_comment] = STATE(1212), [sym_compiler_directive_decl] = STATE(1212), [sym_fsi_directive_decl] = STATE(1212), [sym_preproc_line] = STATE(1212), - [aux_sym_if_expression_repeat1] = STATE(1212), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3775), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_DASH_GT] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [aux_sym__compound_type_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [anon_sym_POUNDendif] = ACTIONS(3214), + [anon_sym_POUNDelse] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1213] = { [sym_xml_doc] = STATE(1213), @@ -190834,97 +196288,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1213), [sym_fsi_directive_decl] = STATE(1213), [sym_preproc_line] = STATE(1213), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3574), - [anon_sym_namespace] = ACTIONS(3574), - [anon_sym_module] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_open] = ACTIONS(3574), - [anon_sym_LBRACK_LT] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_type] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3576), - [anon_sym_POUNDload] = ACTIONS(3576), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_DOT_DOT2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), + [sym__dedent] = ACTIONS(3302), }, [1214] = { [sym_xml_doc] = STATE(1214), @@ -190933,97 +196386,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1214), [sym_fsi_directive_decl] = STATE(1214), [sym_preproc_line] = STATE(1214), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_LBRACK_LT] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3463), - [anon_sym_POUNDload] = ACTIONS(3463), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1215] = { [sym_xml_doc] = STATE(1215), @@ -191032,97 +196484,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1215), [sym_fsi_directive_decl] = STATE(1215), [sym_preproc_line] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [1216] = { [sym_xml_doc] = STATE(1216), @@ -191131,97 +196582,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1216), [sym_fsi_directive_decl] = STATE(1216), [sym_preproc_line] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_open] = ACTIONS(3582), - [anon_sym_LBRACK_LT] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3584), - [anon_sym_POUNDload] = ACTIONS(3584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_DOT_DOT2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [1217] = { [sym_xml_doc] = STATE(1217), @@ -191230,97 +196680,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1217), [sym_fsi_directive_decl] = STATE(1217), [sym_preproc_line] = STATE(1217), - [ts_builtin_sym_end] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_LBRACK_LT] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3399), - [anon_sym_POUNDload] = ACTIONS(3399), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_DOT_DOT2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + [sym__dedent] = ACTIONS(3294), }, [1218] = { [sym_xml_doc] = STATE(1218), @@ -191329,97 +196778,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1218), [sym_fsi_directive_decl] = STATE(1218), [sym_preproc_line] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(3588), - [sym_identifier] = ACTIONS(3586), - [anon_sym_namespace] = ACTIONS(3586), - [anon_sym_module] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_open] = ACTIONS(3586), - [anon_sym_LBRACK_LT] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_type] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3588), - [anon_sym_POUNDload] = ACTIONS(3588), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [aux_sym_rules_repeat1] = STATE(1218), + [sym_identifier] = ACTIONS(3483), + [anon_sym_module] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_open] = ACTIONS(3483), + [anon_sym_LBRACK_LT] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3485), + [anon_sym_POUNDload] = ACTIONS(3485), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4002), + [sym__dedent] = ACTIONS(3485), }, [1219] = { [sym_xml_doc] = STATE(1219), @@ -191428,97 +196876,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1219), [sym_fsi_directive_decl] = STATE(1219), [sym_preproc_line] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(3592), - [sym_identifier] = ACTIONS(3590), - [anon_sym_namespace] = ACTIONS(3590), - [anon_sym_module] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_open] = ACTIONS(3590), - [anon_sym_LBRACK_LT] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_type] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3592), - [anon_sym_POUNDload] = ACTIONS(3592), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [aux_sym_rules_repeat1] = STATE(1218), + [sym_identifier] = ACTIONS(3463), + [anon_sym_module] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_open] = ACTIONS(3463), + [anon_sym_LBRACK_LT] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_type] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3465), + [anon_sym_POUNDload] = ACTIONS(3465), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4007), + [sym__dedent] = ACTIONS(3465), }, [1220] = { [sym_xml_doc] = STATE(1220), @@ -191527,97 +196974,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1220), [sym_fsi_directive_decl] = STATE(1220), [sym_preproc_line] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_open] = ACTIONS(3417), + [anon_sym_LBRACK_LT] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4010), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3419), + [anon_sym_POUNDload] = ACTIONS(3419), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + [sym__dedent] = ACTIONS(3419), }, [1221] = { [sym_xml_doc] = STATE(1221), @@ -191626,196 +197072,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1221), [sym_fsi_directive_decl] = STATE(1221), [sym_preproc_line] = STATE(1221), - [aux_sym_type_argument_repeat1] = STATE(1309), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3778), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [aux_sym_rules_repeat1] = STATE(1218), + [sym_identifier] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_open] = ACTIONS(3442), + [anon_sym_LBRACK_LT] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3444), + [anon_sym_POUNDload] = ACTIONS(3444), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4012), + [sym__dedent] = ACTIONS(3444), }, [1222] = { - [sym__else_expression] = STATE(2274), - [sym_elif_expression] = STATE(1691), [sym_xml_doc] = STATE(1222), [sym_block_comment] = STATE(1222), [sym_line_comment] = STATE(1222), [sym_compiler_directive_decl] = STATE(1222), [sym_fsi_directive_decl] = STATE(1222), [sym_preproc_line] = STATE(1222), - [aux_sym_if_expression_repeat1] = STATE(1225), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3781), - [anon_sym_elif] = ACTIONS(3783), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [anon_sym_POUNDendif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1223] = { [sym_xml_doc] = STATE(1223), @@ -191824,97 +197268,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1223), [sym_fsi_directive_decl] = STATE(1223), [sym_preproc_line] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(3785), - [sym_identifier] = ACTIONS(3787), - [anon_sym_namespace] = ACTIONS(3787), - [anon_sym_module] = ACTIONS(3787), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_open] = ACTIONS(3787), - [anon_sym_LBRACK_LT] = ACTIONS(3785), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3787), - [anon_sym_type] = ACTIONS(3787), - [anon_sym_do] = ACTIONS(3787), - [anon_sym_let] = ACTIONS(3787), - [anon_sym_let_BANG] = ACTIONS(3785), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3787), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LBRACK_PIPE] = ACTIONS(3785), - [anon_sym_LBRACE] = ACTIONS(3787), - [anon_sym_LBRACE_PIPE] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3787), - [anon_sym_return_BANG] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3787), - [anon_sym_yield_BANG] = ACTIONS(3785), - [anon_sym_lazy] = ACTIONS(3787), - [anon_sym_assert] = ACTIONS(3787), - [anon_sym_upcast] = ACTIONS(3787), - [anon_sym_downcast] = ACTIONS(3787), - [anon_sym_LT_AT] = ACTIONS(3787), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3787), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3787), - [anon_sym_while] = ACTIONS(3787), - [anon_sym_if] = ACTIONS(3787), - [anon_sym_fun] = ACTIONS(3787), - [anon_sym_try] = ACTIONS(3787), - [anon_sym_match] = ACTIONS(3787), - [anon_sym_match_BANG] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(3787), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3787), - [anon_sym_use_BANG] = ACTIONS(3785), - [anon_sym_do_BANG] = ACTIONS(3785), - [anon_sym_begin] = ACTIONS(3787), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3787), - [anon_sym_DQUOTE] = ACTIONS(3787), - [anon_sym_AT_DQUOTE] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [sym_bool] = ACTIONS(3787), - [sym_unit] = ACTIONS(3787), - [anon_sym_LPAREN_PIPE] = ACTIONS(3787), - [sym_op_identifier] = ACTIONS(3787), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_PLUS_DOT] = ACTIONS(3787), - [anon_sym_DASH_DOT] = ACTIONS(3787), - [anon_sym_PERCENT] = ACTIONS(3787), - [anon_sym_AMP_AMP] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3785), - [aux_sym_prefix_op_token1] = ACTIONS(3787), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3787), - [sym_xint] = ACTIONS(3785), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3785), - [anon_sym_POUNDload] = ACTIONS(3785), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3785), - [sym__newline] = ACTIONS(3195), + [aux_sym_rules_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_open] = ACTIONS(3442), + [anon_sym_LBRACK_LT] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3444), + [anon_sym_POUNDload] = ACTIONS(3444), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4012), + [sym__dedent] = ACTIONS(3444), }, [1224] = { [sym_xml_doc] = STATE(1224), @@ -191923,196 +197366,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1224), [sym_fsi_directive_decl] = STATE(1224), [sym_preproc_line] = STATE(1224), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [anon_sym_POUNDendif] = ACTIONS(3049), - [anon_sym_POUNDelse] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [aux_sym_long_identifier_repeat1] = STATE(1228), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [anon_sym_POUNDendif] = ACTIONS(3204), + [anon_sym_POUNDelse] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1225] = { - [sym__else_expression] = STATE(2308), - [sym_elif_expression] = STATE(1691), [sym_xml_doc] = STATE(1225), [sym_block_comment] = STATE(1225), [sym_line_comment] = STATE(1225), [sym_compiler_directive_decl] = STATE(1225), [sym_fsi_directive_decl] = STATE(1225), [sym_preproc_line] = STATE(1225), - [aux_sym_if_expression_repeat1] = STATE(1487), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3781), - [anon_sym_elif] = ACTIONS(3783), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [anon_sym_POUNDendif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [aux_sym_long_identifier_repeat1] = STATE(1224), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [anon_sym_POUNDendif] = ACTIONS(3264), + [anon_sym_POUNDelse] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1226] = { [sym_xml_doc] = STATE(1226), @@ -192121,97 +197562,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1226), [sym_fsi_directive_decl] = STATE(1226), [sym_preproc_line] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3643), - [anon_sym_namespace] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3645), - [anon_sym_POUNDload] = ACTIONS(3645), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [aux_sym_type_argument_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4021), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [anon_sym_POUNDendif] = ACTIONS(3276), + [anon_sym_POUNDelse] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1227] = { [sym_xml_doc] = STATE(1227), @@ -192220,97 +197660,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1227), [sym_fsi_directive_decl] = STATE(1227), [sym_preproc_line] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3639), - [anon_sym_namespace] = ACTIONS(3639), - [anon_sym_module] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3639), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_type] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3507), + [anon_sym_namespace] = ACTIONS(3507), + [anon_sym_module] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_open] = ACTIONS(3507), + [anon_sym_LBRACK_LT] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_type] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3509), + [anon_sym_POUNDload] = ACTIONS(3509), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1228] = { [sym_xml_doc] = STATE(1228), @@ -192319,196 +197758,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1228), [sym_fsi_directive_decl] = STATE(1228), [sym_preproc_line] = STATE(1228), - [aux_sym__compound_type_repeat1] = STATE(1228), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [anon_sym_POUNDendif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym_long_identifier_repeat1] = STATE(1228), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4024), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [anon_sym_POUNDelse] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1229] = { + [sym__else_expression] = STATE(2329), + [sym_elif_expression] = STATE(1736), [sym_xml_doc] = STATE(1229), [sym_block_comment] = STATE(1229), [sym_line_comment] = STATE(1229), [sym_compiler_directive_decl] = STATE(1229), [sym_fsi_directive_decl] = STATE(1229), [sym_preproc_line] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3635), - [anon_sym_namespace] = ACTIONS(3635), - [anon_sym_module] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_open] = ACTIONS(3635), - [anon_sym_LBRACK_LT] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_type] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3637), - [anon_sym_POUNDload] = ACTIONS(3637), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [aux_sym_if_expression_repeat1] = STATE(1233), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4027), + [anon_sym_elif] = ACTIONS(4029), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [anon_sym_POUNDendif] = ACTIONS(3251), + [anon_sym_POUNDelse] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1230] = { [sym_xml_doc] = STATE(1230), @@ -192517,97 +197954,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1230), [sym_fsi_directive_decl] = STATE(1230), [sym_preproc_line] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3631), - [anon_sym_namespace] = ACTIONS(3631), - [anon_sym_module] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_open] = ACTIONS(3631), - [anon_sym_LBRACK_LT] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_type] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3633), - [anon_sym_POUNDload] = ACTIONS(3633), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1231] = { [sym_xml_doc] = STATE(1231), @@ -192616,97 +198052,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1231), [sym_fsi_directive_decl] = STATE(1231), [sym_preproc_line] = STATE(1231), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [anon_sym_POUNDendif] = ACTIONS(3045), - [anon_sym_POUNDelse] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_DOT_DOT2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1232] = { [sym_xml_doc] = STATE(1232), @@ -192715,196 +198150,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1232), [sym_fsi_directive_decl] = STATE(1232), [sym_preproc_line] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_open] = ACTIONS(3346), - [anon_sym_LBRACK_LT] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3348), - [anon_sym_POUNDload] = ACTIONS(3348), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [aux_sym_type_argument_repeat1] = STATE(1265), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4031), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [anon_sym_POUNDendif] = ACTIONS(3244), + [anon_sym_POUNDelse] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1233] = { + [sym__else_expression] = STATE(2345), + [sym_elif_expression] = STATE(1736), [sym_xml_doc] = STATE(1233), [sym_block_comment] = STATE(1233), [sym_line_comment] = STATE(1233), [sym_compiler_directive_decl] = STATE(1233), [sym_fsi_directive_decl] = STATE(1233), [sym_preproc_line] = STATE(1233), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [anon_sym_POUNDendif] = ACTIONS(3023), - [anon_sym_POUNDelse] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [aux_sym_if_expression_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4027), + [anon_sym_elif] = ACTIONS(4029), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [anon_sym_POUNDendif] = ACTIONS(3283), + [anon_sym_POUNDelse] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1234] = { [sym_xml_doc] = STATE(1234), @@ -192913,97 +198346,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1234), [sym_fsi_directive_decl] = STATE(1234), [sym_preproc_line] = STATE(1234), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [anon_sym_POUNDendif] = ACTIONS(3015), - [anon_sym_POUNDelse] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_DOT_DOT2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), + [sym__dedent] = ACTIONS(3306), }, [1235] = { [sym_xml_doc] = STATE(1235), @@ -193012,97 +198444,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1235), [sym_fsi_directive_decl] = STATE(1235), [sym_preproc_line] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(3616), - [sym_identifier] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_LBRACK_LT] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3616), - [anon_sym_POUNDload] = ACTIONS(3616), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1236] = { [sym_xml_doc] = STATE(1236), @@ -193111,97 +198542,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1236), [sym_fsi_directive_decl] = STATE(1236), [sym_preproc_line] = STATE(1236), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [anon_sym_POUNDendif] = ACTIONS(3009), - [anon_sym_POUNDelse] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [aux_sym__compound_type_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [anon_sym_POUNDendif] = ACTIONS(3030), + [anon_sym_POUNDelse] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1237] = { [sym_xml_doc] = STATE(1237), @@ -193210,394 +198640,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1237), [sym_fsi_directive_decl] = STATE(1237), [sym_preproc_line] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3612), - [sym_identifier] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3612), - [anon_sym_POUNDload] = ACTIONS(3612), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), - }, - [1238] = { - [sym_xml_doc] = STATE(1238), - [sym_block_comment] = STATE(1238), - [sym_line_comment] = STATE(1238), - [sym_compiler_directive_decl] = STATE(1238), - [sym_fsi_directive_decl] = STATE(1238), - [sym_preproc_line] = STATE(1238), - [ts_builtin_sym_end] = ACTIONS(3608), - [sym_identifier] = ACTIONS(3606), - [anon_sym_namespace] = ACTIONS(3606), - [anon_sym_module] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3606), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), - }, - [1239] = { - [sym_xml_doc] = STATE(1239), - [sym_block_comment] = STATE(1239), - [sym_line_comment] = STATE(1239), - [sym_compiler_directive_decl] = STATE(1239), - [sym_fsi_directive_decl] = STATE(1239), - [sym_preproc_line] = STATE(1239), - [aux_sym__compound_type_repeat1] = STATE(1228), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [anon_sym_POUNDendif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), - }, - [1240] = { - [sym_xml_doc] = STATE(1240), - [sym_block_comment] = STATE(1240), - [sym_line_comment] = STATE(1240), - [sym_compiler_directive_decl] = STATE(1240), - [sym_fsi_directive_decl] = STATE(1240), - [sym_preproc_line] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(3600), - [sym_identifier] = ACTIONS(3598), - [anon_sym_namespace] = ACTIONS(3598), - [anon_sym_module] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_open] = ACTIONS(3598), - [anon_sym_LBRACK_LT] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_type] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), + [aux_sym_long_identifier_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4039), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3600), - [anon_sym_POUNDload] = ACTIONS(3600), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + }, + [1238] = { + [sym_xml_doc] = STATE(1238), + [sym_block_comment] = STATE(1238), + [sym_line_comment] = STATE(1238), + [sym_compiler_directive_decl] = STATE(1238), + [sym_fsi_directive_decl] = STATE(1238), + [sym_preproc_line] = STATE(1238), + [aux_sym_rules_repeat1] = STATE(1221), + [sym_identifier] = ACTIONS(3404), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_open] = ACTIONS(3404), + [anon_sym_LBRACK_LT] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3406), + [anon_sym_POUNDload] = ACTIONS(3406), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4043), + [sym__dedent] = ACTIONS(3406), + }, + [1239] = { + [sym_xml_doc] = STATE(1239), + [sym_block_comment] = STATE(1239), + [sym_line_comment] = STATE(1239), + [sym_compiler_directive_decl] = STATE(1239), + [sym_fsi_directive_decl] = STATE(1239), + [sym_preproc_line] = STATE(1239), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_DOT_DOT2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), + [sym__dedent] = ACTIONS(3310), + }, + [1240] = { + [sym__else_expression] = STATE(2105), + [sym_elif_expression] = STATE(1699), + [sym_xml_doc] = STATE(1240), + [sym_block_comment] = STATE(1240), + [sym_line_comment] = STATE(1240), + [sym_compiler_directive_decl] = STATE(1240), + [sym_fsi_directive_decl] = STATE(1240), + [sym_preproc_line] = STATE(1240), + [aux_sym_if_expression_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4046), + [anon_sym_elif] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1241] = { [sym_xml_doc] = STATE(1241), @@ -193606,97 +199032,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1241), [sym_fsi_directive_decl] = STATE(1241), [sym_preproc_line] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(3596), - [sym_identifier] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3594), - [anon_sym_module] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_open] = ACTIONS(3594), - [anon_sym_LBRACK_LT] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_type] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3596), - [anon_sym_POUNDload] = ACTIONS(3596), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), + [sym__dedent] = ACTIONS(3306), }, [1242] = { [sym_xml_doc] = STATE(1242), @@ -193705,97 +199130,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1242), [sym_fsi_directive_decl] = STATE(1242), [sym_preproc_line] = STATE(1242), - [aux_sym_long_identifier_repeat1] = STATE(1242), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3792), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym__compound_type_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1243] = { [sym_xml_doc] = STATE(1243), @@ -193804,97 +199228,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1243), [sym_fsi_directive_decl] = STATE(1243), [sym_preproc_line] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_open] = ACTIONS(3520), - [anon_sym_LBRACK_LT] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3522), - [anon_sym_POUNDload] = ACTIONS(3522), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + [sym__dedent] = ACTIONS(3294), }, [1244] = { [sym_xml_doc] = STATE(1244), @@ -193903,97 +199326,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1244), [sym_fsi_directive_decl] = STATE(1244), [sym_preproc_line] = STATE(1244), - [aux_sym_long_identifier_repeat1] = STATE(1242), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3773), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1245] = { [sym_xml_doc] = STATE(1245), @@ -194002,97 +199424,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1245), [sym_fsi_directive_decl] = STATE(1245), [sym_preproc_line] = STATE(1245), - [sym_identifier] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), + [sym__dedent] = ACTIONS(3320), }, [1246] = { [sym_xml_doc] = STATE(1246), @@ -194101,97 +199522,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1246), [sym_fsi_directive_decl] = STATE(1246), [sym_preproc_line] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_open] = ACTIONS(3524), - [anon_sym_LBRACK_LT] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3526), - [anon_sym_POUNDload] = ACTIONS(3526), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3533), + [anon_sym_namespace] = ACTIONS(3533), + [anon_sym_module] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_open] = ACTIONS(3533), + [anon_sym_LBRACK_LT] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_type] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3535), + [anon_sym_POUNDload] = ACTIONS(3535), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [1247] = { [sym_xml_doc] = STATE(1247), @@ -194200,97 +199620,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1247), [sym_fsi_directive_decl] = STATE(1247), [sym_preproc_line] = STATE(1247), - [ts_builtin_sym_end] = ACTIONS(3449), - [sym_identifier] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3447), - [anon_sym_LBRACK_LT] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3449), - [anon_sym_POUNDload] = ACTIONS(3449), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [aux_sym_long_identifier_repeat1] = STATE(1211), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1248] = { [sym_xml_doc] = STATE(1248), @@ -194299,97 +199718,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1248), [sym_fsi_directive_decl] = STATE(1248), [sym_preproc_line] = STATE(1248), - [aux_sym_type_argument_repeat1] = STATE(1294), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3795), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), + [sym__dedent] = ACTIONS(3338), }, [1249] = { [sym_xml_doc] = STATE(1249), @@ -194398,97 +199816,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1249), [sym_fsi_directive_decl] = STATE(1249), [sym_preproc_line] = STATE(1249), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [anon_sym_POUNDendif] = ACTIONS(3005), - [anon_sym_POUNDelse] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [aux_sym_long_identifier_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3989), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1250] = { [sym_xml_doc] = STATE(1250), @@ -194497,97 +199914,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1250), [sym_fsi_directive_decl] = STATE(1250), [sym_preproc_line] = STATE(1250), - [sym_identifier] = ACTIONS(3131), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_LBRACK_LT] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3133), - [anon_sym_POUNDload] = ACTIONS(3133), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), - [sym__dedent] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_DOT_DOT2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), + [sym__dedent] = ACTIONS(3338), }, [1251] = { [sym_xml_doc] = STATE(1251), @@ -194596,97 +200012,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1251), [sym_fsi_directive_decl] = STATE(1251), [sym_preproc_line] = STATE(1251), - [sym_identifier] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_LBRACK_LT] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3187), - [anon_sym_POUNDload] = ACTIONS(3187), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), - [sym__dedent] = ACTIONS(3187), + [aux_sym__compound_type_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1252] = { [sym_xml_doc] = STATE(1252), @@ -194695,97 +200110,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1252), [sym_fsi_directive_decl] = STATE(1252), [sym_preproc_line] = STATE(1252), - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_open] = ACTIONS(3532), - [anon_sym_LBRACK_LT] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3195), - [anon_sym_POUNDload] = ACTIONS(3195), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1253] = { [sym_xml_doc] = STATE(1253), @@ -194794,97 +200208,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1253), [sym_fsi_directive_decl] = STATE(1253), [sym_preproc_line] = STATE(1253), - [aux_sym_type_argument_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(3798), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), + [sym__dedent] = ACTIONS(3342), }, [1254] = { [sym_xml_doc] = STATE(1254), @@ -194893,196 +200306,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1254), [sym_fsi_directive_decl] = STATE(1254), [sym_preproc_line] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(3453), - [sym_identifier] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3451), - [anon_sym_LBRACK_LT] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3453), - [anon_sym_POUNDload] = ACTIONS(3453), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_DOT_DOT2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4055), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3357), }, [1255] = { + [sym_elif_expression] = STATE(1569), [sym_xml_doc] = STATE(1255), [sym_block_comment] = STATE(1255), [sym_line_comment] = STATE(1255), [sym_compiler_directive_decl] = STATE(1255), [sym_fsi_directive_decl] = STATE(1255), [sym_preproc_line] = STATE(1255), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [anon_sym_POUNDelse] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_if_expression_repeat1] = STATE(1255), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4057), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), + [sym__dedent] = ACTIONS(3346), }, [1256] = { [sym_xml_doc] = STATE(1256), @@ -195091,97 +200502,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1256), [sym_fsi_directive_decl] = STATE(1256), [sym_preproc_line] = STATE(1256), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [anon_sym_POUNDendif] = ACTIONS(3027), - [anon_sym_POUNDelse] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [aux_sym_type_argument_repeat1] = STATE(1187), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4060), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1257] = { [sym_xml_doc] = STATE(1257), @@ -195190,97 +200600,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1257), [sym_fsi_directive_decl] = STATE(1257), [sym_preproc_line] = STATE(1257), - [aux_sym_long_identifier_repeat1] = STATE(1191), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_DOT_DOT] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1258] = { [sym_xml_doc] = STATE(1258), @@ -195289,97 +200698,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1258), [sym_fsi_directive_decl] = STATE(1258), [sym_preproc_line] = STATE(1258), - [sym_identifier] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_LBRACK_LT] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3199), - [anon_sym_POUNDload] = ACTIONS(3199), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [sym__dedent] = ACTIONS(3199), + [aux_sym_long_identifier_repeat1] = STATE(1258), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4063), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1259] = { [sym_xml_doc] = STATE(1259), @@ -195388,97 +200796,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1259), [sym_fsi_directive_decl] = STATE(1259), [sym_preproc_line] = STATE(1259), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [anon_sym_POUNDendif] = ACTIONS(3019), - [anon_sym_POUNDelse] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3527), + [anon_sym_namespace] = ACTIONS(3527), + [anon_sym_module] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_open] = ACTIONS(3527), + [anon_sym_LBRACK_LT] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3529), + [anon_sym_POUNDload] = ACTIONS(3529), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [1260] = { [sym_xml_doc] = STATE(1260), @@ -195487,97 +200894,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1260), [sym_fsi_directive_decl] = STATE(1260), [sym_preproc_line] = STATE(1260), - [aux_sym_long_identifier_repeat1] = STATE(1206), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3801), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [anon_sym_POUNDendif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(2864), + [aux_sym_decimal_token1] = ACTIONS(2854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1261] = { [sym_xml_doc] = STATE(1261), @@ -195586,97 +200992,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1261), [sym_fsi_directive_decl] = STATE(1261), [sym_preproc_line] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3391), - [anon_sym_namespace] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_open] = ACTIONS(3391), - [anon_sym_LBRACK_LT] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3393), - [anon_sym_POUNDload] = ACTIONS(3393), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1262] = { [sym_xml_doc] = STATE(1262), @@ -195685,97 +201090,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1262), [sym_fsi_directive_decl] = STATE(1262), [sym_preproc_line] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3387), - [anon_sym_LBRACK_LT] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), + [aux_sym_long_identifier_repeat1] = STATE(1247), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3261), + [anon_sym_namespace] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3261), + [anon_sym_LBRACK_LT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3389), - [anon_sym_POUNDload] = ACTIONS(3389), + [anon_sym_POUNDr] = ACTIONS(3264), + [anon_sym_POUNDload] = ACTIONS(3264), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1263] = { [sym_xml_doc] = STATE(1263), @@ -195784,196 +201188,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1263), [sym_fsi_directive_decl] = STATE(1263), [sym_preproc_line] = STATE(1263), - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3375), - [anon_sym_LBRACK_LT] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3377), - [anon_sym_POUNDload] = ACTIONS(3377), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3523), + [anon_sym_namespace] = ACTIONS(3523), + [anon_sym_module] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_open] = ACTIONS(3523), + [anon_sym_LBRACK_LT] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_type] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3525), + [anon_sym_POUNDload] = ACTIONS(3525), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [1264] = { + [sym_type_arguments] = STATE(927), + [sym_long_identifier] = STATE(917), [sym_xml_doc] = STATE(1264), [sym_block_comment] = STATE(1264), [sym_line_comment] = STATE(1264), [sym_compiler_directive_decl] = STATE(1264), [sym_fsi_directive_decl] = STATE(1264), [sym_preproc_line] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3371), - [anon_sym_LBRACK_LT] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3373), - [anon_sym_POUNDload] = ACTIONS(3373), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [aux_sym__compound_type_repeat1] = STATE(898), + [sym_identifier] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_let_BANG] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_COLON_QMARK] = ACTIONS(3154), + [anon_sym_COLON_COLON] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LBRACK_PIPE] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_LT_AT] = ACTIONS(3154), + [anon_sym_LT_AT_AT] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_return_BANG] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_yield_BANG] = ACTIONS(3156), + [anon_sym_lazy] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_upcast] = ACTIONS(3154), + [anon_sym_downcast] = ACTIONS(3154), + [anon_sym_COLON_GT] = ACTIONS(3156), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_fun] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_match_BANG] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_DOT_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_use] = ACTIONS(3154), + [anon_sym_use_BANG] = ACTIONS(3156), + [anon_sym_do_BANG] = ACTIONS(3156), + [anon_sym_begin] = ACTIONS(3154), + [anon_sym_LPAREN2] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_LT2] = ACTIONS(3018), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3154), + [aux_sym_char_token1] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_AT_DQUOTE] = ACTIONS(3156), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3156), + [sym_bool] = ACTIONS(3154), + [sym_unit] = ACTIONS(3154), + [anon_sym_LPAREN_PIPE] = ACTIONS(3154), + [sym_op_identifier] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_PLUS_DOT] = ACTIONS(3154), + [anon_sym_DASH_DOT] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3156), + [aux_sym_prefix_op_token1] = ACTIONS(3154), + [aux_sym_infix_op_token1] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_DOLLAR] = ACTIONS(3154), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3154), + [sym_int] = ACTIONS(3154), + [sym_xint] = ACTIONS(3156), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3156), + [sym__newline] = ACTIONS(3156), }, [1265] = { [sym_xml_doc] = STATE(1265), @@ -195982,97 +201384,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1265), [sym_fsi_directive_decl] = STATE(1265), [sym_preproc_line] = STATE(1265), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3805), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [anon_sym_POUNDendif] = ACTIONS(2992), - [anon_sym_POUNDelse] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [aux_sym_type_argument_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [anon_sym_POUNDendif] = ACTIONS(3232), + [anon_sym_POUNDelse] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1266] = { [sym_xml_doc] = STATE(1266), @@ -196081,196 +201482,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1266), [sym_fsi_directive_decl] = STATE(1266), [sym_preproc_line] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_open] = ACTIONS(3516), - [anon_sym_LBRACK_LT] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3518), - [anon_sym_POUNDload] = ACTIONS(3518), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3507), + [anon_sym_module] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_open] = ACTIONS(3507), + [anon_sym_LBRACK_LT] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_type] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3509), + [anon_sym_POUNDload] = ACTIONS(3509), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1267] = { + [sym__else_expression] = STATE(2318), + [sym_elif_expression] = STATE(1711), [sym_xml_doc] = STATE(1267), [sym_block_comment] = STATE(1267), [sym_line_comment] = STATE(1267), [sym_compiler_directive_decl] = STATE(1267), [sym_fsi_directive_decl] = STATE(1267), [sym_preproc_line] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3497), - [anon_sym_namespace] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_LBRACK_LT] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3499), - [anon_sym_POUNDload] = ACTIONS(3499), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [aux_sym_if_expression_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4074), + [anon_sym_elif] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_DASH_GT] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1268] = { [sym_xml_doc] = STATE(1268), @@ -196279,97 +201678,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1268), [sym_fsi_directive_decl] = STATE(1268), [sym_preproc_line] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3493), - [anon_sym_namespace] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_LBRACK_LT] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3495), - [anon_sym_POUNDload] = ACTIONS(3495), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_DOT_DOT2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [1269] = { [sym_xml_doc] = STATE(1269), @@ -196378,97 +201776,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1269), [sym_fsi_directive_decl] = STATE(1269), [sym_preproc_line] = STATE(1269), - [aux_sym_long_identifier_repeat1] = STATE(1191), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3756), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_DOT_DOT] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_as] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4078), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3357), }, [1270] = { [sym_xml_doc] = STATE(1270), @@ -196477,97 +201874,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1270), [sym_fsi_directive_decl] = STATE(1270), [sym_preproc_line] = STATE(1270), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3489), - [anon_sym_namespace] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_LBRACK_LT] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3491), - [anon_sym_POUNDload] = ACTIONS(3491), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_open] = ACTIONS(3542), + [anon_sym_LBRACK_LT] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3544), + [anon_sym_POUNDload] = ACTIONS(3544), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [1271] = { [sym_xml_doc] = STATE(1271), @@ -196576,295 +201972,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1271), [sym_fsi_directive_decl] = STATE(1271), [sym_preproc_line] = STATE(1271), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [anon_sym_POUNDendif] = ACTIONS(2988), - [anon_sym_POUNDelse] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_module] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_open] = ACTIONS(3483), + [anon_sym_LBRACK_LT] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3485), + [anon_sym_POUNDload] = ACTIONS(3485), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1272] = { + [sym__else_expression] = STATE(2136), + [sym_elif_expression] = STATE(1699), [sym_xml_doc] = STATE(1272), [sym_block_comment] = STATE(1272), [sym_line_comment] = STATE(1272), [sym_compiler_directive_decl] = STATE(1272), [sym_fsi_directive_decl] = STATE(1272), [sym_preproc_line] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3541), - [anon_sym_namespace] = ACTIONS(3541), - [anon_sym_module] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3541), - [anon_sym_LBRACK_LT] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_type] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3543), - [anon_sym_POUNDload] = ACTIONS(3543), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [aux_sym_if_expression_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4046), + [anon_sym_elif] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1273] = { + [sym__else_expression] = STATE(2273), + [sym_elif_expression] = STATE(1711), [sym_xml_doc] = STATE(1273), [sym_block_comment] = STATE(1273), [sym_line_comment] = STATE(1273), [sym_compiler_directive_decl] = STATE(1273), [sym_fsi_directive_decl] = STATE(1273), [sym_preproc_line] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3485), - [anon_sym_namespace] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_LBRACK_LT] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3487), - [anon_sym_POUNDload] = ACTIONS(3487), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [aux_sym_if_expression_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4074), + [anon_sym_elif] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_DASH_GT] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_DOT_DOT] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1274] = { [sym_xml_doc] = STATE(1274), @@ -196873,97 +202266,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1274), [sym_fsi_directive_decl] = STATE(1274), [sym_preproc_line] = STATE(1274), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [anon_sym_POUNDendif] = ACTIONS(2988), - [anon_sym_POUNDelse] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_DOT_DOT2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), + [sym__dedent] = ACTIONS(3324), }, [1275] = { [sym_xml_doc] = STATE(1275), @@ -196972,97 +202364,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1275), [sym_fsi_directive_decl] = STATE(1275), [sym_preproc_line] = STATE(1275), - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_open] = ACTIONS(3356), - [anon_sym_LBRACK_LT] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3358), - [anon_sym_POUNDload] = ACTIONS(3358), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [ts_builtin_sym_end] = ACTIONS(3912), + [sym_identifier] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_module] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_type] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3912), + [anon_sym_POUNDload] = ACTIONS(3912), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [1276] = { [sym_xml_doc] = STATE(1276), @@ -197071,97 +202461,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1276), [sym_fsi_directive_decl] = STATE(1276), [sym_preproc_line] = STATE(1276), - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_identifier] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_open] = ACTIONS(3350), - [anon_sym_LBRACK_LT] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3352), - [anon_sym_POUNDload] = ACTIONS(3352), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [ts_builtin_sym_end] = ACTIONS(3827), + [sym_identifier] = ACTIONS(3825), + [anon_sym_namespace] = ACTIONS(3825), + [anon_sym_module] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_open] = ACTIONS(3825), + [anon_sym_LBRACK_LT] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_type] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3827), + [anon_sym_POUNDload] = ACTIONS(3827), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [1277] = { [sym_xml_doc] = STATE(1277), @@ -197170,97 +202558,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1277), [sym_fsi_directive_decl] = STATE(1277), [sym_preproc_line] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3473), - [anon_sym_namespace] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_LBRACK_LT] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3475), - [anon_sym_POUNDload] = ACTIONS(3475), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [ts_builtin_sym_end] = ACTIONS(3744), + [sym_identifier] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3744), + [anon_sym_POUNDload] = ACTIONS(3744), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [1278] = { [sym_xml_doc] = STATE(1278), @@ -197269,97 +202655,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1278), [sym_fsi_directive_decl] = STATE(1278), [sym_preproc_line] = STATE(1278), - [sym_identifier] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_open] = ACTIONS(3245), - [anon_sym_LBRACK_LT] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3247), - [anon_sym_POUNDload] = ACTIONS(3247), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), - [sym__dedent] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3507), + [anon_sym_module] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_open] = ACTIONS(3507), + [anon_sym_LBRACK_LT] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_type] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3509), + [anon_sym_POUNDload] = ACTIONS(3509), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1279] = { [sym_xml_doc] = STATE(1279), @@ -197368,97 +202752,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1279), [sym_fsi_directive_decl] = STATE(1279), [sym_preproc_line] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3512), - [anon_sym_namespace] = ACTIONS(3512), - [anon_sym_module] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_open] = ACTIONS(3512), - [anon_sym_LBRACK_LT] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_type] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3514), - [anon_sym_POUNDload] = ACTIONS(3514), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [aux_sym__compound_type_repeat1] = STATE(1296), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_AT_AT_GT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1280] = { [sym_xml_doc] = STATE(1280), @@ -197467,97 +202849,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1280), [sym_fsi_directive_decl] = STATE(1280), [sym_preproc_line] = STATE(1280), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3339), - [anon_sym_LBRACK_LT] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3341), - [anon_sym_POUNDload] = ACTIONS(3341), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [aux_sym_type_argument_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_AT_GT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1281] = { [sym_xml_doc] = STATE(1281), @@ -197566,97 +202946,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1281), [sym_fsi_directive_decl] = STATE(1281), [sym_preproc_line] = STATE(1281), - [ts_builtin_sym_end] = ACTIONS(3459), - [sym_identifier] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_LBRACK_LT] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3459), - [anon_sym_POUNDload] = ACTIONS(3459), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [anon_sym_POUNDendif] = ACTIONS(3363), + [anon_sym_POUNDelse] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1282] = { [sym_xml_doc] = STATE(1282), @@ -197665,97 +203043,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1282), [sym_fsi_directive_decl] = STATE(1282), [sym_preproc_line] = STATE(1282), - [ts_builtin_sym_end] = ACTIONS(3328), - [sym_identifier] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_open] = ACTIONS(3326), - [anon_sym_LBRACK_LT] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3328), - [anon_sym_POUNDload] = ACTIONS(3328), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_open] = ACTIONS(3712), + [anon_sym_LBRACK_LT] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_type] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3714), + [anon_sym_POUNDload] = ACTIONS(3714), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [1283] = { [sym_xml_doc] = STATE(1283), @@ -197764,97 +203140,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1283), [sym_fsi_directive_decl] = STATE(1283), [sym_preproc_line] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(3441), - [sym_identifier] = ACTIONS(3439), - [anon_sym_namespace] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3439), - [anon_sym_LBRACK_LT] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3441), - [anon_sym_POUNDload] = ACTIONS(3441), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1284] = { [sym_xml_doc] = STATE(1284), @@ -197863,97 +203237,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1284), [sym_fsi_directive_decl] = STATE(1284), [sym_preproc_line] = STATE(1284), - [aux_sym_sequential_expression_repeat1] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_LBRACK_LT] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3503), - [anon_sym_POUNDload] = ACTIONS(3503), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3807), + [ts_builtin_sym_end] = ACTIONS(3724), + [sym_identifier] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_open] = ACTIONS(3722), + [anon_sym_LBRACK_LT] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_type] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3724), + [anon_sym_POUNDload] = ACTIONS(3724), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [1285] = { [sym_xml_doc] = STATE(1285), @@ -197962,97 +203334,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1285), [sym_fsi_directive_decl] = STATE(1285), [sym_preproc_line] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3437), - [sym_identifier] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3435), - [anon_sym_LBRACK_LT] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3437), - [anon_sym_POUNDload] = ACTIONS(3437), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1286] = { [sym_xml_doc] = STATE(1286), @@ -198061,97 +203431,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1286), [sym_fsi_directive_decl] = STATE(1286), [sym_preproc_line] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_LBRACK_LT] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3314), - [anon_sym_POUNDload] = ACTIONS(3314), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [aux_sym_long_identifier_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1287] = { [sym_xml_doc] = STATE(1287), @@ -198160,97 +203528,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1287), [sym_fsi_directive_decl] = STATE(1287), [sym_preproc_line] = STATE(1287), - [aux_sym__compound_type_repeat1] = STATE(1328), - [sym_identifier] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2972), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_AT_GT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2970), - [anon_sym_AT_AT_GT] = ACTIONS(2970), - [anon_sym_COLON_GT] = ACTIONS(2972), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_DOT_LBRACK] = ACTIONS(2972), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_DOT_DOT] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_LPAREN2] = ACTIONS(2972), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2970), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2970), - [anon_sym_DASH_DOT] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2970), - [aux_sym_infix_op_token1] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2972), - [anon_sym_DOLLAR] = ACTIONS(2970), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2970), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [aux_sym_sequential_expression_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_open] = ACTIONS(3612), + [anon_sym_LBRACK_LT] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3614), + [anon_sym_POUNDload] = ACTIONS(3614), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), + [sym__dedent] = ACTIONS(3614), }, [1288] = { [sym_xml_doc] = STATE(1288), @@ -198259,97 +203625,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1288), [sym_fsi_directive_decl] = STATE(1288), [sym_preproc_line] = STATE(1288), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [aux_sym_long_identifier_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_AT_AT_GT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4084), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1289] = { [sym_xml_doc] = STATE(1289), @@ -198358,97 +203722,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1289), [sym_fsi_directive_decl] = STATE(1289), [sym_preproc_line] = STATE(1289), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [ts_builtin_sym_end] = ACTIONS(3695), + [sym_identifier] = ACTIONS(3693), + [anon_sym_namespace] = ACTIONS(3693), + [anon_sym_module] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_open] = ACTIONS(3693), + [anon_sym_LBRACK_LT] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_type] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3695), + [anon_sym_POUNDload] = ACTIONS(3695), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [1290] = { [sym_xml_doc] = STATE(1290), @@ -198457,97 +203819,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1290), [sym_fsi_directive_decl] = STATE(1290), [sym_preproc_line] = STATE(1290), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3810), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_open] = ACTIONS(3718), + [anon_sym_LBRACK_LT] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_type] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3720), + [anon_sym_POUNDload] = ACTIONS(3720), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [1291] = { [sym_xml_doc] = STATE(1291), @@ -198556,196 +203916,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1291), [sym_fsi_directive_decl] = STATE(1291), [sym_preproc_line] = STATE(1291), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [ts_builtin_sym_end] = ACTIONS(3865), + [sym_identifier] = ACTIONS(3863), + [anon_sym_namespace] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_open] = ACTIONS(3863), + [anon_sym_LBRACK_LT] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_type] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3865), + [anon_sym_POUNDload] = ACTIONS(3865), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [1292] = { - [sym_elif_expression] = STATE(1566), [sym_xml_doc] = STATE(1292), [sym_block_comment] = STATE(1292), [sym_line_comment] = STATE(1292), [sym_compiler_directive_decl] = STATE(1292), [sym_fsi_directive_decl] = STATE(1292), [sym_preproc_line] = STATE(1292), - [aux_sym_if_expression_repeat1] = STATE(1292), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3812), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [anon_sym_POUNDendif] = ACTIONS(2998), - [anon_sym_POUNDelse] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [ts_builtin_sym_end] = ACTIONS(3880), + [sym_identifier] = ACTIONS(3878), + [anon_sym_namespace] = ACTIONS(3878), + [anon_sym_module] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_LBRACK_LT] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3880), + [anon_sym_POUNDload] = ACTIONS(3880), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [1293] = { [sym_xml_doc] = STATE(1293), @@ -198754,97 +204110,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1293), [sym_fsi_directive_decl] = STATE(1293), [sym_preproc_line] = STATE(1293), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [aux_sym_long_identifier_repeat1] = STATE(1324), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_AT_AT_GT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1294] = { [sym_xml_doc] = STATE(1294), @@ -198853,97 +204207,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1294), [sym_fsi_directive_decl] = STATE(1294), [sym_preproc_line] = STATE(1294), - [aux_sym_type_argument_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [anon_sym_POUNDendif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_open] = ACTIONS(3554), + [anon_sym_LBRACK_LT] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4090), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3556), + [anon_sym_POUNDload] = ACTIONS(3556), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), + [sym__dedent] = ACTIONS(3556), }, [1295] = { [sym_xml_doc] = STATE(1295), @@ -198952,97 +204304,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1295), [sym_fsi_directive_decl] = STATE(1295), [sym_preproc_line] = STATE(1295), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3469), - [anon_sym_namespace] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_LBRACK_LT] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3471), - [anon_sym_POUNDload] = ACTIONS(3471), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [aux_sym_long_identifier_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_AT_GT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1296] = { [sym_xml_doc] = STATE(1296), @@ -199051,97 +204401,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1296), [sym_fsi_directive_decl] = STATE(1296), [sym_preproc_line] = STATE(1296), - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3295), - [anon_sym_LBRACK_LT] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3297), - [anon_sym_POUNDload] = ACTIONS(3297), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [aux_sym__compound_type_repeat1] = STATE(1296), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_AT_AT_GT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1297] = { [sym_xml_doc] = STATE(1297), @@ -199150,196 +204498,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1297), [sym_fsi_directive_decl] = STATE(1297), [sym_preproc_line] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_LBRACK_LT] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3290), - [anon_sym_POUNDload] = ACTIONS(3290), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [aux_sym_type_argument_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_AT_GT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4099), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1298] = { - [sym__else_expression] = STATE(2276), - [sym_elif_expression] = STATE(1690), [sym_xml_doc] = STATE(1298), [sym_block_comment] = STATE(1298), [sym_line_comment] = STATE(1298), [sym_compiler_directive_decl] = STATE(1298), [sym_fsi_directive_decl] = STATE(1298), [sym_preproc_line] = STATE(1298), - [aux_sym_if_expression_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3815), - [anon_sym_elif] = ACTIONS(3817), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_DOT_DOT] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [aux_sym_long_identifier_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [anon_sym_POUNDendif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1299] = { [sym_xml_doc] = STATE(1299), @@ -199348,97 +204692,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1299), [sym_fsi_directive_decl] = STATE(1299), [sym_preproc_line] = STATE(1299), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3764), + [sym_identifier] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_open] = ACTIONS(3762), + [anon_sym_LBRACK_LT] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_type] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3764), + [anon_sym_POUNDload] = ACTIONS(3764), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [1300] = { [sym_xml_doc] = STATE(1300), @@ -199447,97 +204789,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1300), [sym_fsi_directive_decl] = STATE(1300), [sym_preproc_line] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_LBRACK_LT] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3286), - [anon_sym_POUNDload] = ACTIONS(3286), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [ts_builtin_sym_end] = ACTIONS(3610), + [sym_identifier] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_open] = ACTIONS(3608), + [anon_sym_LBRACK_LT] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_type] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3610), + [anon_sym_POUNDload] = ACTIONS(3610), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [1301] = { [sym_xml_doc] = STATE(1301), @@ -199546,97 +204886,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1301), [sym_fsi_directive_decl] = STATE(1301), [sym_preproc_line] = STATE(1301), - [aux_sym_type_argument_repeat1] = STATE(1301), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3819), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1302] = { [sym_xml_doc] = STATE(1302), @@ -199645,295 +204983,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1302), [sym_fsi_directive_decl] = STATE(1302), [sym_preproc_line] = STATE(1302), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3810), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [aux_sym_long_identifier_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(4082), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1303] = { - [sym__else_expression] = STATE(2322), - [sym_elif_expression] = STATE(1784), [sym_xml_doc] = STATE(1303), [sym_block_comment] = STATE(1303), [sym_line_comment] = STATE(1303), [sym_compiler_directive_decl] = STATE(1303), [sym_fsi_directive_decl] = STATE(1303), [sym_preproc_line] = STATE(1303), - [aux_sym_if_expression_repeat1] = STATE(1455), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3822), - [anon_sym_elif] = ACTIONS(3824), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2945), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1304] = { + [sym__else_expression] = STATE(2551), + [sym_elif_expression] = STATE(1976), [sym_xml_doc] = STATE(1304), [sym_block_comment] = STATE(1304), [sym_line_comment] = STATE(1304), [sym_compiler_directive_decl] = STATE(1304), [sym_fsi_directive_decl] = STATE(1304), [sym_preproc_line] = STATE(1304), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [aux_sym_if_expression_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_AT_AT_GT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_elif] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1305] = { [sym_xml_doc] = STATE(1305), @@ -199942,97 +205274,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1305), [sym_fsi_directive_decl] = STATE(1305), [sym_preproc_line] = STATE(1305), - [aux_sym_long_identifier_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3826), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1306] = { [sym_xml_doc] = STATE(1306), @@ -200041,97 +205371,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1306), [sym_fsi_directive_decl] = STATE(1306), [sym_preproc_line] = STATE(1306), - [ts_builtin_sym_end] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_LBRACK_LT] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3278), - [anon_sym_POUNDload] = ACTIONS(3278), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [aux_sym_sequential_expression_repeat1] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3831), + [sym_identifier] = ACTIONS(3829), + [anon_sym_module] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_open] = ACTIONS(3829), + [anon_sym_LBRACK_LT] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_type] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3831), + [anon_sym_POUNDload] = ACTIONS(3831), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4110), }, [1307] = { [sym_xml_doc] = STATE(1307), @@ -200140,97 +205468,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1307), [sym_fsi_directive_decl] = STATE(1307), [sym_preproc_line] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_open] = ACTIONS(3272), - [anon_sym_LBRACK_LT] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3274), - [anon_sym_POUNDload] = ACTIONS(3274), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_open] = ACTIONS(3730), + [anon_sym_LBRACK_LT] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_type] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3732), + [anon_sym_POUNDload] = ACTIONS(3732), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [1308] = { [sym_xml_doc] = STATE(1308), @@ -200239,395 +205565,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1308), [sym_fsi_directive_decl] = STATE(1308), [sym_preproc_line] = STATE(1308), - [aux_sym_type_argument_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_DOT_DOT] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3829), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), - }, - [1309] = { - [sym_xml_doc] = STATE(1309), - [sym_block_comment] = STATE(1309), - [sym_line_comment] = STATE(1309), - [sym_compiler_directive_decl] = STATE(1309), - [sym_fsi_directive_decl] = STATE(1309), - [sym_preproc_line] = STATE(1309), - [aux_sym_type_argument_repeat1] = STATE(1301), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), - }, - [1310] = { - [sym_xml_doc] = STATE(1310), - [sym_block_comment] = STATE(1310), - [sym_line_comment] = STATE(1310), - [sym_compiler_directive_decl] = STATE(1310), - [sym_fsi_directive_decl] = STATE(1310), - [sym_preproc_line] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3270), - [sym_identifier] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_open] = ACTIONS(3268), - [anon_sym_LBRACK_LT] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3270), - [anon_sym_POUNDload] = ACTIONS(3270), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), - }, - [1311] = { - [sym_xml_doc] = STATE(1311), - [sym_block_comment] = STATE(1311), - [sym_line_comment] = STATE(1311), - [sym_compiler_directive_decl] = STATE(1311), - [sym_fsi_directive_decl] = STATE(1311), - [sym_preproc_line] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(3264), - [sym_identifier] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), + [aux_sym_long_identifier_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(3261), [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_LBRACK_LT] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3261), [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4113), [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3261), [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3261), [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), [anon_sym_COLON_GT] = ACTIONS(3264), [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_use] = ACTIONS(3261), [anon_sym_use_BANG] = ACTIONS(3264), [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), + [anon_sym_begin] = ACTIONS(3261), [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), [anon_sym_AT_DQUOTE] = ACTIONS(3264), [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), [sym_xint] = ACTIONS(3264), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3264), - [anon_sym_POUNDload] = ACTIONS(3264), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3264), [sym__newline] = ACTIONS(3264), }, + [1309] = { + [sym_elif_expression] = STATE(1711), + [sym_xml_doc] = STATE(1309), + [sym_block_comment] = STATE(1309), + [sym_line_comment] = STATE(1309), + [sym_compiler_directive_decl] = STATE(1309), + [sym_fsi_directive_decl] = STATE(1309), + [sym_preproc_line] = STATE(1309), + [aux_sym_if_expression_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4117), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_DASH_GT] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), + }, + [1310] = { + [sym_xml_doc] = STATE(1310), + [sym_block_comment] = STATE(1310), + [sym_line_comment] = STATE(1310), + [sym_compiler_directive_decl] = STATE(1310), + [sym_fsi_directive_decl] = STATE(1310), + [sym_preproc_line] = STATE(1310), + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_open] = ACTIONS(3660), + [anon_sym_LBRACK_LT] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3662), + [anon_sym_POUNDload] = ACTIONS(3662), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), + }, + [1311] = { + [sym_xml_doc] = STATE(1311), + [sym_block_comment] = STATE(1311), + [sym_line_comment] = STATE(1311), + [sym_compiler_directive_decl] = STATE(1311), + [sym_fsi_directive_decl] = STATE(1311), + [sym_preproc_line] = STATE(1311), + [ts_builtin_sym_end] = ACTIONS(3658), + [sym_identifier] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_open] = ACTIONS(3656), + [anon_sym_LBRACK_LT] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3658), + [anon_sym_POUNDload] = ACTIONS(3658), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), + }, [1312] = { [sym_xml_doc] = STATE(1312), [sym_block_comment] = STATE(1312), @@ -200635,196 +205953,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1312), [sym_fsi_directive_decl] = STATE(1312), [sym_preproc_line] = STATE(1312), - [aux_sym_type_argument_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(3832), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [anon_sym_POUNDendif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_as] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1313] = { - [sym__else_expression] = STATE(2149), - [sym_elif_expression] = STATE(1690), [sym_xml_doc] = STATE(1313), [sym_block_comment] = STATE(1313), [sym_line_comment] = STATE(1313), [sym_compiler_directive_decl] = STATE(1313), [sym_fsi_directive_decl] = STATE(1313), [sym_preproc_line] = STATE(1313), - [aux_sym_if_expression_repeat1] = STATE(1395), - [sym_identifier] = ACTIONS(2945), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_let_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_null] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2945), - [anon_sym_COLON_QMARK] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_LBRACE_PIPE] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_return_BANG] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_yield_BANG] = ACTIONS(2947), - [anon_sym_lazy] = ACTIONS(2945), - [anon_sym_assert] = ACTIONS(2945), - [anon_sym_upcast] = ACTIONS(2945), - [anon_sym_downcast] = ACTIONS(2945), - [anon_sym_LT_AT] = ACTIONS(2945), - [anon_sym_AT_GT] = ACTIONS(2945), - [anon_sym_LT_AT_AT] = ACTIONS(2945), - [anon_sym_AT_AT_GT] = ACTIONS(2945), - [anon_sym_COLON_GT] = ACTIONS(2947), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(3815), - [anon_sym_elif] = ACTIONS(3817), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_fun] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_match_BANG] = ACTIONS(2947), - [anon_sym_function] = ACTIONS(2945), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_DOT_LBRACK] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_use_BANG] = ACTIONS(2947), - [anon_sym_do_BANG] = ACTIONS(2947), - [anon_sym_DOT_DOT] = ACTIONS(2947), - [anon_sym_begin] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2945), - [aux_sym_char_token1] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [anon_sym_AT_DQUOTE] = ACTIONS(2947), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2947), - [sym_bool] = ACTIONS(2945), - [sym_unit] = ACTIONS(2945), - [anon_sym_LPAREN_PIPE] = ACTIONS(2945), - [sym_op_identifier] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2945), - [anon_sym_DASH_DOT] = ACTIONS(2945), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [aux_sym_prefix_op_token1] = ACTIONS(2945), - [aux_sym_infix_op_token1] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2945), - [sym_int] = ACTIONS(2945), - [sym_xint] = ACTIONS(2947), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2947), - [sym__newline] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(3691), + [sym_identifier] = ACTIONS(3689), + [anon_sym_namespace] = ACTIONS(3689), + [anon_sym_module] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_open] = ACTIONS(3689), + [anon_sym_LBRACK_LT] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_type] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3691), + [anon_sym_POUNDload] = ACTIONS(3691), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [1314] = { [sym_xml_doc] = STATE(1314), @@ -200833,196 +206147,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1314), [sym_fsi_directive_decl] = STATE(1314), [sym_preproc_line] = STATE(1314), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [anon_sym_POUNDendif] = ACTIONS(3031), - [anon_sym_POUNDelse] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [aux_sym_long_identifier_repeat1] = STATE(1314), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1315] = { - [sym__else_expression] = STATE(2349), - [sym_elif_expression] = STATE(1784), [sym_xml_doc] = STATE(1315), [sym_block_comment] = STATE(1315), [sym_line_comment] = STATE(1315), [sym_compiler_directive_decl] = STATE(1315), [sym_fsi_directive_decl] = STATE(1315), [sym_preproc_line] = STATE(1315), - [aux_sym_if_expression_repeat1] = STATE(1303), - [sym_identifier] = ACTIONS(2892), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_let_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_null] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_LBRACK_PIPE] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_LBRACE_PIPE] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_return_BANG] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_yield_BANG] = ACTIONS(2894), - [anon_sym_lazy] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_upcast] = ACTIONS(2892), - [anon_sym_downcast] = ACTIONS(2892), - [anon_sym_LT_AT] = ACTIONS(2892), - [anon_sym_AT_GT] = ACTIONS(2892), - [anon_sym_LT_AT_AT] = ACTIONS(2892), - [anon_sym_AT_AT_GT] = ACTIONS(2892), - [anon_sym_COLON_GT] = ACTIONS(2894), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(3822), - [anon_sym_elif] = ACTIONS(3824), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_fun] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_match_BANG] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2892), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_DOT_LBRACK] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_use_BANG] = ACTIONS(2894), - [anon_sym_do_BANG] = ACTIONS(2894), - [anon_sym_begin] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2892), - [aux_sym_char_token1] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_AT_DQUOTE] = ACTIONS(2894), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2894), - [sym_bool] = ACTIONS(2892), - [sym_unit] = ACTIONS(2892), - [anon_sym_LPAREN_PIPE] = ACTIONS(2892), - [sym_op_identifier] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS_DOT] = ACTIONS(2892), - [anon_sym_DASH_DOT] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2894), - [aux_sym_prefix_op_token1] = ACTIONS(2892), - [aux_sym_infix_op_token1] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2892), - [sym_int] = ACTIONS(2892), - [sym_xint] = ACTIONS(2894), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2894), - [sym__newline] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3675), + [anon_sym_namespace] = ACTIONS(3675), + [anon_sym_module] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_open] = ACTIONS(3675), + [anon_sym_LBRACK_LT] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_type] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3677), + [anon_sym_POUNDload] = ACTIONS(3677), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [1316] = { [sym_xml_doc] = STATE(1316), @@ -201031,97 +206341,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1316), [sym_fsi_directive_decl] = STATE(1316), [sym_preproc_line] = STATE(1316), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1317] = { [sym_xml_doc] = STATE(1317), @@ -201130,97 +206438,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1317), [sym_fsi_directive_decl] = STATE(1317), [sym_preproc_line] = STATE(1317), - [sym_identifier] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_open] = ACTIONS(3231), - [anon_sym_LBRACK_LT] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(3835), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3233), - [anon_sym_POUNDload] = ACTIONS(3233), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), - [sym__dedent] = ACTIONS(3233), + [aux_sym__compound_type_repeat1] = STATE(1317), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_AT_GT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4123), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1318] = { [sym_xml_doc] = STATE(1318), @@ -201229,97 +206535,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1318), [sym_fsi_directive_decl] = STATE(1318), [sym_preproc_line] = STATE(1318), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(3861), + [sym_identifier] = ACTIONS(3859), + [anon_sym_namespace] = ACTIONS(3859), + [anon_sym_module] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_open] = ACTIONS(3859), + [anon_sym_LBRACK_LT] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_type] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3861), + [anon_sym_POUNDload] = ACTIONS(3861), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [1319] = { [sym_xml_doc] = STATE(1319), @@ -201328,97 +206632,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1319), [sym_fsi_directive_decl] = STATE(1319), [sym_preproc_line] = STATE(1319), - [sym_identifier] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_LBRACK_LT] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3191), - [anon_sym_POUNDload] = ACTIONS(3191), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [ts_builtin_sym_end] = ACTIONS(3699), + [sym_identifier] = ACTIONS(3697), + [anon_sym_namespace] = ACTIONS(3697), + [anon_sym_module] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_open] = ACTIONS(3697), + [anon_sym_LBRACK_LT] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_type] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3699), + [anon_sym_POUNDload] = ACTIONS(3699), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [1320] = { [sym_xml_doc] = STATE(1320), @@ -201427,196 +206729,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1320), [sym_fsi_directive_decl] = STATE(1320), [sym_preproc_line] = STATE(1320), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [anon_sym_POUNDendif] = ACTIONS(2919), - [anon_sym_POUNDelse] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(3923), + [sym_identifier] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_open] = ACTIONS(3921), + [anon_sym_LBRACK_LT] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_type] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3923), + [anon_sym_POUNDload] = ACTIONS(3923), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [1321] = { + [sym__else_expression] = STATE(2591), + [sym_elif_expression] = STATE(1754), [sym_xml_doc] = STATE(1321), [sym_block_comment] = STATE(1321), [sym_line_comment] = STATE(1321), [sym_compiler_directive_decl] = STATE(1321), [sym_fsi_directive_decl] = STATE(1321), [sym_preproc_line] = STATE(1321), - [aux_sym_sequential_expression_repeat1] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(3604), - [sym_identifier] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_open] = ACTIONS(3602), - [anon_sym_LBRACK_LT] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3604), - [anon_sym_POUNDload] = ACTIONS(3604), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [aux_sym_if_expression_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4126), + [anon_sym_elif] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_DOT_DOT] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1322] = { [sym_xml_doc] = STATE(1322), @@ -201625,97 +206923,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1322), [sym_fsi_directive_decl] = STATE(1322), [sym_preproc_line] = STATE(1322), - [aux_sym_type_argument_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2941), - [anon_sym_COLON_QMARK] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_AT_GT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2941), - [anon_sym_AT_AT_GT] = ACTIONS(2941), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_DOT_LBRACK] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_DOT_DOT] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2941), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2941), - [anon_sym_DASH_DOT] = ACTIONS(2941), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2941), - [aux_sym_infix_op_token1] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2941), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [ts_builtin_sym_end] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_open] = ACTIONS(3646), + [anon_sym_LBRACK_LT] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3648), + [anon_sym_POUNDload] = ACTIONS(3648), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [1323] = { [sym_xml_doc] = STATE(1323), @@ -201724,97 +207020,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1323), [sym_fsi_directive_decl] = STATE(1323), [sym_preproc_line] = STATE(1323), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [anon_sym_POUNDendif] = ACTIONS(3039), - [anon_sym_POUNDelse] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(3959), + [sym_identifier] = ACTIONS(3957), + [anon_sym_namespace] = ACTIONS(3957), + [anon_sym_module] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_LBRACK_LT] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_type] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3959), + [anon_sym_POUNDload] = ACTIONS(3959), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [1324] = { [sym_xml_doc] = STATE(1324), @@ -201823,97 +207117,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1324), [sym_fsi_directive_decl] = STATE(1324), [sym_preproc_line] = STATE(1324), - [aux_sym_long_identifier_repeat1] = STATE(1325), - [sym_identifier] = ACTIONS(2953), - [anon_sym_module] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_LBRACK_LT] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3837), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2956), - [anon_sym_POUNDload] = ACTIONS(2956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [aux_sym_long_identifier_repeat1] = STATE(1460), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_AT_AT_GT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1325] = { [sym_xml_doc] = STATE(1325), @@ -201922,97 +207214,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1325), [sym_fsi_directive_decl] = STATE(1325), [sym_preproc_line] = STATE(1325), - [aux_sym_long_identifier_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [anon_sym_POUNDendif] = ACTIONS(3302), + [anon_sym_POUNDelse] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1326] = { [sym_xml_doc] = STATE(1326), @@ -202021,97 +207311,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1326), [sym_fsi_directive_decl] = STATE(1326), [sym_preproc_line] = STATE(1326), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3843), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [aux_sym_long_identifier_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1327] = { [sym_xml_doc] = STATE(1327), @@ -202120,97 +207408,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1327), [sym_fsi_directive_decl] = STATE(1327), [sym_preproc_line] = STATE(1327), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1328] = { [sym_xml_doc] = STATE(1328), @@ -202219,97 +207505,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1328), [sym_fsi_directive_decl] = STATE(1328), [sym_preproc_line] = STATE(1328), - [aux_sym__compound_type_repeat1] = STATE(1328), - [sym_identifier] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_COLON_QMARK] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_AT_GT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2810), - [anon_sym_AT_AT_GT] = ACTIONS(2810), - [anon_sym_COLON_GT] = ACTIONS(2808), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_DOT_LBRACK] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2810), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2810), - [anon_sym_DASH_DOT] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2810), - [aux_sym_infix_op_token1] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_DOLLAR] = ACTIONS(2810), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2810), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3679), + [anon_sym_namespace] = ACTIONS(3679), + [anon_sym_module] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_open] = ACTIONS(3679), + [anon_sym_LBRACK_LT] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_type] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3546), + [anon_sym_POUNDload] = ACTIONS(3546), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [1329] = { [sym_xml_doc] = STATE(1329), @@ -202318,97 +207602,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1329), [sym_fsi_directive_decl] = STATE(1329), [sym_preproc_line] = STATE(1329), - [sym_identifier] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_open] = ACTIONS(3239), - [anon_sym_LBRACK_LT] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(3848), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3241), - [anon_sym_POUNDload] = ACTIONS(3241), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), - [sym__dedent] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3955), + [sym_identifier] = ACTIONS(3953), + [anon_sym_namespace] = ACTIONS(3953), + [anon_sym_module] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_open] = ACTIONS(3953), + [anon_sym_LBRACK_LT] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_type] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3955), + [anon_sym_POUNDload] = ACTIONS(3955), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [1330] = { [sym_xml_doc] = STATE(1330), @@ -202417,97 +207699,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1330), [sym_fsi_directive_decl] = STATE(1330), [sym_preproc_line] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3407), - [sym_identifier] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_LBRACK_LT] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3407), - [anon_sym_POUNDload] = ACTIONS(3407), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1331] = { [sym_xml_doc] = STATE(1331), @@ -202516,97 +207796,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1331), [sym_fsi_directive_decl] = STATE(1331), [sym_preproc_line] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3383), - [anon_sym_LBRACK_LT] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3385), - [anon_sym_POUNDload] = ACTIONS(3385), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [ts_builtin_sym_end] = ACTIONS(3951), + [sym_identifier] = ACTIONS(3949), + [anon_sym_namespace] = ACTIONS(3949), + [anon_sym_module] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_LBRACK_LT] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_type] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3951), + [anon_sym_POUNDload] = ACTIONS(3951), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [1332] = { [sym_xml_doc] = STATE(1332), @@ -202615,97 +207893,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1332), [sym_fsi_directive_decl] = STATE(1332), [sym_preproc_line] = STATE(1332), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3379), - [anon_sym_LBRACK_LT] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3381), - [anon_sym_POUNDload] = ACTIONS(3381), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [aux_sym_long_identifier_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [anon_sym_POUNDendif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1333] = { [sym_xml_doc] = STATE(1333), @@ -202714,97 +207990,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1333), [sym_fsi_directive_decl] = STATE(1333), [sym_preproc_line] = STATE(1333), - [aux_sym_long_identifier_repeat1] = STATE(1244), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3850), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [ts_builtin_sym_end] = ACTIONS(3947), + [sym_identifier] = ACTIONS(3945), + [anon_sym_namespace] = ACTIONS(3945), + [anon_sym_module] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_LBRACK_LT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_type] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3947), + [anon_sym_POUNDload] = ACTIONS(3947), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [1334] = { [sym_xml_doc] = STATE(1334), @@ -202813,196 +208087,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1334), [sym_fsi_directive_decl] = STATE(1334), [sym_preproc_line] = STATE(1334), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3367), - [anon_sym_LBRACK_LT] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3369), - [anon_sym_POUNDload] = ACTIONS(3369), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [aux_sym_long_identifier_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1335] = { + [sym__else_expression] = STATE(2516), + [sym_elif_expression] = STATE(1811), [sym_xml_doc] = STATE(1335), [sym_block_comment] = STATE(1335), [sym_line_comment] = STATE(1335), [sym_compiler_directive_decl] = STATE(1335), [sym_fsi_directive_decl] = STATE(1335), [sym_preproc_line] = STATE(1335), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [aux_sym_if_expression_repeat1] = STATE(1359), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_AT_GT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_elif] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1336] = { [sym_xml_doc] = STATE(1336), @@ -203011,97 +208281,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1336), [sym_fsi_directive_decl] = STATE(1336), [sym_preproc_line] = STATE(1336), - [aux_sym_long_identifier_repeat1] = STATE(1206), - [sym_identifier] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_COLON_QMARK] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_AT_GT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2935), - [anon_sym_AT_AT_GT] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_DOT_LBRACK] = ACTIONS(2937), - [anon_sym_DOT] = ACTIONS(3769), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_LPAREN2] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2935), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2935), - [aux_sym_infix_op_token1] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2935), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2935), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [anon_sym_POUNDendif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [ts_builtin_sym_end] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_open] = ACTIONS(3616), + [anon_sym_LBRACK_LT] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3618), + [anon_sym_POUNDload] = ACTIONS(3618), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [1337] = { [sym_xml_doc] = STATE(1337), @@ -203110,97 +208378,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1337), [sym_fsi_directive_decl] = STATE(1337), [sym_preproc_line] = STATE(1337), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [aux_sym_type_argument_repeat1] = STATE(1449), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1338] = { [sym_xml_doc] = STATE(1338), @@ -203209,196 +208475,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1338), [sym_fsi_directive_decl] = STATE(1338), [sym_preproc_line] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3362), - [sym_identifier] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_open] = ACTIONS(3360), - [anon_sym_LBRACK_LT] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3362), - [anon_sym_POUNDload] = ACTIONS(3362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [aux_sym_long_identifier_repeat1] = STATE(1338), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1339] = { + [sym_elif_expression] = STATE(1736), [sym_xml_doc] = STATE(1339), [sym_block_comment] = STATE(1339), [sym_line_comment] = STATE(1339), [sym_compiler_directive_decl] = STATE(1339), [sym_fsi_directive_decl] = STATE(1339), [sym_preproc_line] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(3255), - [sym_identifier] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_open] = ACTIONS(3253), - [anon_sym_LBRACK_LT] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3255), - [anon_sym_POUNDload] = ACTIONS(3255), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [aux_sym_if_expression_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4143), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [anon_sym_POUNDendif] = ACTIONS(3346), + [anon_sym_POUNDelse] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1340] = { [sym_xml_doc] = STATE(1340), @@ -203407,196 +208669,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1340), [sym_fsi_directive_decl] = STATE(1340), [sym_preproc_line] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_module] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_open] = ACTIONS(3534), - [anon_sym_LBRACK_LT] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_type] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3536), - [anon_sym_POUNDload] = ACTIONS(3536), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_DOT_DOT2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4146), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), }, [1341] = { + [sym__else_expression] = STATE(2621), + [sym_elif_expression] = STATE(1754), [sym_xml_doc] = STATE(1341), [sym_block_comment] = STATE(1341), [sym_line_comment] = STATE(1341), [sym_compiler_directive_decl] = STATE(1341), [sym_fsi_directive_decl] = STATE(1341), [sym_preproc_line] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(3411), - [sym_identifier] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_LBRACK_LT] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3411), - [anon_sym_POUNDload] = ACTIONS(3411), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [aux_sym_if_expression_repeat1] = STATE(1671), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4126), + [anon_sym_elif] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_DOT_DOT] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1342] = { [sym_xml_doc] = STATE(1342), @@ -203605,97 +208863,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1342), [sym_fsi_directive_decl] = STATE(1342), [sym_preproc_line] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_LBRACK_LT] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3415), - [anon_sym_POUNDload] = ACTIONS(3415), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(3703), + [sym_identifier] = ACTIONS(3701), + [anon_sym_namespace] = ACTIONS(3701), + [anon_sym_module] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_open] = ACTIONS(3701), + [anon_sym_LBRACK_LT] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_type] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3703), + [anon_sym_POUNDload] = ACTIONS(3703), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [1343] = { [sym_xml_doc] = STATE(1343), @@ -203704,97 +208960,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1343), [sym_fsi_directive_decl] = STATE(1343), [sym_preproc_line] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_LBRACK_LT] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3419), - [anon_sym_POUNDload] = ACTIONS(3419), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [aux_sym_sequential_expression_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(3829), + [anon_sym_module] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_open] = ACTIONS(3829), + [anon_sym_LBRACK_LT] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_type] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3831), + [anon_sym_POUNDload] = ACTIONS(3831), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4148), + [sym__dedent] = ACTIONS(3831), }, [1344] = { [sym_xml_doc] = STATE(1344), @@ -203803,97 +209057,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1344), [sym_fsi_directive_decl] = STATE(1344), [sym_preproc_line] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_LBRACK_LT] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), + [aux_sym_type_argument_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4151), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3423), - [anon_sym_POUNDload] = ACTIONS(3423), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [anon_sym_POUNDif] = ACTIONS(3276), + [anon_sym_POUNDendif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1345] = { [sym_xml_doc] = STATE(1345), @@ -203902,97 +209154,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1345), [sym_fsi_directive_decl] = STATE(1345), [sym_preproc_line] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_open] = ACTIONS(3428), - [anon_sym_LBRACK_LT] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3430), - [anon_sym_POUNDload] = ACTIONS(3430), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [ts_builtin_sym_end] = ACTIONS(3943), + [sym_identifier] = ACTIONS(3941), + [anon_sym_namespace] = ACTIONS(3941), + [anon_sym_module] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_open] = ACTIONS(3941), + [anon_sym_LBRACK_LT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_type] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3943), + [anon_sym_POUNDload] = ACTIONS(3943), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [1346] = { [sym_xml_doc] = STATE(1346), @@ -204001,97 +209251,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1346), [sym_fsi_directive_decl] = STATE(1346), [sym_preproc_line] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_open] = ACTIONS(3508), - [anon_sym_LBRACK_LT] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3510), - [anon_sym_POUNDload] = ACTIONS(3510), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [aux_sym_type_argument_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [anon_sym_POUNDendif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1347] = { [sym_xml_doc] = STATE(1347), @@ -204100,196 +209348,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1347), [sym_fsi_directive_decl] = STATE(1347), [sym_preproc_line] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3445), - [sym_identifier] = ACTIONS(3443), - [anon_sym_namespace] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3443), - [anon_sym_LBRACK_LT] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3445), - [anon_sym_POUNDload] = ACTIONS(3445), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [ts_builtin_sym_end] = ACTIONS(3849), + [sym_identifier] = ACTIONS(3847), + [anon_sym_namespace] = ACTIONS(3847), + [anon_sym_module] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_open] = ACTIONS(3847), + [anon_sym_LBRACK_LT] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_type] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3849), + [anon_sym_POUNDload] = ACTIONS(3849), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [1348] = { + [sym_elif_expression] = STATE(1699), [sym_xml_doc] = STATE(1348), [sym_block_comment] = STATE(1348), [sym_line_comment] = STATE(1348), [sym_compiler_directive_decl] = STATE(1348), [sym_fsi_directive_decl] = STATE(1348), [sym_preproc_line] = STATE(1348), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_DOT_DOT2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3854), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [aux_sym_if_expression_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1349] = { [sym_xml_doc] = STATE(1349), @@ -204298,97 +209542,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1349), [sym_fsi_directive_decl] = STATE(1349), [sym_preproc_line] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3545), - [anon_sym_namespace] = ACTIONS(3545), - [anon_sym_module] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3545), - [anon_sym_LBRACK_LT] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_type] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3547), - [anon_sym_POUNDload] = ACTIONS(3547), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [ts_builtin_sym_end] = ACTIONS(3804), + [sym_identifier] = ACTIONS(3802), + [anon_sym_namespace] = ACTIONS(3802), + [anon_sym_module] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_open] = ACTIONS(3802), + [anon_sym_LBRACK_LT] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_type] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3804), + [anon_sym_POUNDload] = ACTIONS(3804), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [1350] = { [sym_xml_doc] = STATE(1350), @@ -204397,97 +209639,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1350), [sym_fsi_directive_decl] = STATE(1350), [sym_preproc_line] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_open] = ACTIONS(3638), + [anon_sym_LBRACK_LT] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3640), + [anon_sym_POUNDload] = ACTIONS(3640), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [1351] = { [sym_xml_doc] = STATE(1351), @@ -204496,97 +209736,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1351), [sym_fsi_directive_decl] = STATE(1351), [sym_preproc_line] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_LBRACK_LT] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3403), - [anon_sym_POUNDload] = ACTIONS(3403), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [anon_sym_POUNDendif] = ACTIONS(3353), + [anon_sym_POUNDelse] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1352] = { [sym_xml_doc] = STATE(1352), @@ -204595,97 +209833,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1352), [sym_fsi_directive_decl] = STATE(1352), [sym_preproc_line] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3621), - [anon_sym_namespace] = ACTIONS(3621), - [anon_sym_module] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_open] = ACTIONS(3621), - [anon_sym_LBRACK_LT] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_type] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3623), - [anon_sym_POUNDload] = ACTIONS(3623), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [aux_sym_type_argument_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4157), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [anon_sym_POUNDendif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1353] = { [sym_xml_doc] = STATE(1353), @@ -204694,96 +209930,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1353), [sym_fsi_directive_decl] = STATE(1353), [sym_preproc_line] = STATE(1353), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [anon_sym_POUNDendif] = ACTIONS(3312), + [anon_sym_POUNDelse] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [1354] = { [sym_xml_doc] = STATE(1354), @@ -204792,96 +210027,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1354), [sym_fsi_directive_decl] = STATE(1354), [sym_preproc_line] = STATE(1354), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [anon_sym_POUNDendif] = ACTIONS(3306), + [anon_sym_POUNDelse] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1355] = { [sym_xml_doc] = STATE(1355), @@ -204890,96 +210124,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1355), [sym_fsi_directive_decl] = STATE(1355), [sym_preproc_line] = STATE(1355), - [sym_identifier] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_LBRACK_LT] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3314), - [anon_sym_POUNDload] = ACTIONS(3314), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - [sym__dedent] = ACTIONS(3314), + [aux_sym__compound_type_repeat1] = STATE(1317), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_AT_GT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1356] = { [sym_xml_doc] = STATE(1356), @@ -204988,96 +210221,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1356), [sym_fsi_directive_decl] = STATE(1356), [sym_preproc_line] = STATE(1356), - [sym_identifier] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_open] = ACTIONS(3326), - [anon_sym_LBRACK_LT] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3328), - [anon_sym_POUNDload] = ACTIONS(3328), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), - [sym__dedent] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3890), + [sym_identifier] = ACTIONS(3888), + [anon_sym_namespace] = ACTIONS(3888), + [anon_sym_module] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_open] = ACTIONS(3888), + [anon_sym_LBRACK_LT] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_type] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3890), + [anon_sym_POUNDload] = ACTIONS(3890), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [1357] = { [sym_xml_doc] = STATE(1357), @@ -205086,96 +210318,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1357), [sym_fsi_directive_decl] = STATE(1357), [sym_preproc_line] = STATE(1357), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_DOT_DOT2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [aux_sym_long_identifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1358] = { [sym_xml_doc] = STATE(1358), @@ -205184,194 +210415,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1358), [sym_fsi_directive_decl] = STATE(1358), [sym_preproc_line] = STATE(1358), - [sym_identifier] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_LBRACK_LT] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3290), - [anon_sym_POUNDload] = ACTIONS(3290), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), - [sym__dedent] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [anon_sym_POUNDendif] = ACTIONS(3310), + [anon_sym_POUNDelse] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1359] = { + [sym__else_expression] = STATE(2473), + [sym_elif_expression] = STATE(1811), [sym_xml_doc] = STATE(1359), [sym_block_comment] = STATE(1359), [sym_line_comment] = STATE(1359), [sym_compiler_directive_decl] = STATE(1359), [sym_fsi_directive_decl] = STATE(1359), [sym_preproc_line] = STATE(1359), - [sym_identifier] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_open] = ACTIONS(3360), - [anon_sym_LBRACK_LT] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3362), - [anon_sym_POUNDload] = ACTIONS(3362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), - [sym__dedent] = ACTIONS(3362), + [aux_sym_if_expression_repeat1] = STATE(1589), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_AT_GT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_elif] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1360] = { [sym_xml_doc] = STATE(1360), @@ -205380,96 +210609,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1360), [sym_fsi_directive_decl] = STATE(1360), [sym_preproc_line] = STATE(1360), - [sym_identifier] = ACTIONS(3339), - [anon_sym_module] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3339), - [anon_sym_LBRACK_LT] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3341), - [anon_sym_POUNDload] = ACTIONS(3341), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), - [sym__dedent] = ACTIONS(3341), + [ts_builtin_sym_end] = ACTIONS(3626), + [sym_identifier] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_open] = ACTIONS(3624), + [anon_sym_LBRACK_LT] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3626), + [anon_sym_POUNDload] = ACTIONS(3626), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [1361] = { [sym_xml_doc] = STATE(1361), @@ -205478,96 +210706,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1361), [sym_fsi_directive_decl] = STATE(1361), [sym_preproc_line] = STATE(1361), - [sym_identifier] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3367), - [anon_sym_LBRACK_LT] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3369), - [anon_sym_POUNDload] = ACTIONS(3369), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), - [sym__dedent] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1362] = { [sym_xml_doc] = STATE(1362), @@ -205576,292 +210803,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1362), [sym_fsi_directive_decl] = STATE(1362), [sym_preproc_line] = STATE(1362), - [sym_identifier] = ACTIONS(3350), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_open] = ACTIONS(3350), - [anon_sym_LBRACK_LT] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3352), - [anon_sym_POUNDload] = ACTIONS(3352), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), - [sym__dedent] = ACTIONS(3352), - }, - [1363] = { - [sym_xml_doc] = STATE(1363), - [sym_block_comment] = STATE(1363), - [sym_line_comment] = STATE(1363), - [sym_compiler_directive_decl] = STATE(1363), - [sym_fsi_directive_decl] = STATE(1363), - [sym_preproc_line] = STATE(1363), - [sym_identifier] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_open] = ACTIONS(3356), - [anon_sym_LBRACK_LT] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3358), - [anon_sym_POUNDload] = ACTIONS(3358), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), - [sym__dedent] = ACTIONS(3358), - }, - [1364] = { - [sym_xml_doc] = STATE(1364), - [sym_block_comment] = STATE(1364), - [sym_line_comment] = STATE(1364), - [sym_compiler_directive_decl] = STATE(1364), - [sym_fsi_directive_decl] = STATE(1364), + [ts_builtin_sym_end] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3602), + [anon_sym_namespace] = ACTIONS(3602), + [anon_sym_module] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_open] = ACTIONS(3602), + [anon_sym_LBRACK_LT] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3604), + [anon_sym_POUNDload] = ACTIONS(3604), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), + }, + [1363] = { + [sym_xml_doc] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_line_comment] = STATE(1363), + [sym_compiler_directive_decl] = STATE(1363), + [sym_fsi_directive_decl] = STATE(1363), + [sym_preproc_line] = STATE(1363), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + }, + [1364] = { + [sym_xml_doc] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_line_comment] = STATE(1364), + [sym_compiler_directive_decl] = STATE(1364), + [sym_fsi_directive_decl] = STATE(1364), [sym_preproc_line] = STATE(1364), - [sym_identifier] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3371), - [anon_sym_LBRACK_LT] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3373), - [anon_sym_POUNDload] = ACTIONS(3373), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), - [sym__dedent] = ACTIONS(3373), + [aux_sym_type_argument_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_AT_AT_GT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1365] = { [sym_xml_doc] = STATE(1365), @@ -205870,96 +211094,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1365), [sym_fsi_directive_decl] = STATE(1365), [sym_preproc_line] = STATE(1365), - [sym_identifier] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3387), - [anon_sym_LBRACK_LT] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3389), - [anon_sym_POUNDload] = ACTIONS(3389), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), - [sym__dedent] = ACTIONS(3389), + [anon_sym_POUNDif] = ACTIONS(3276), + [anon_sym_POUNDendif] = ACTIONS(3276), + [anon_sym_POUNDelse] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1366] = { [sym_xml_doc] = STATE(1366), @@ -205968,96 +211191,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1366), [sym_fsi_directive_decl] = STATE(1366), [sym_preproc_line] = STATE(1366), - [sym_identifier] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3451), - [anon_sym_LBRACK_LT] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3453), - [anon_sym_POUNDload] = ACTIONS(3453), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), - [sym__dedent] = ACTIONS(3453), + [ts_builtin_sym_end] = ACTIONS(3886), + [sym_identifier] = ACTIONS(3884), + [anon_sym_namespace] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_open] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_type] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3886), + [anon_sym_POUNDload] = ACTIONS(3886), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [1367] = { [sym_xml_doc] = STATE(1367), @@ -206066,96 +211288,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1367), [sym_fsi_directive_decl] = STATE(1367), [sym_preproc_line] = STATE(1367), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(3838), + [sym_identifier] = ACTIONS(3836), + [anon_sym_namespace] = ACTIONS(3836), + [anon_sym_module] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_open] = ACTIONS(3836), + [anon_sym_LBRACK_LT] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_type] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3838), + [anon_sym_POUNDload] = ACTIONS(3838), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [1368] = { [sym_xml_doc] = STATE(1368), @@ -206164,96 +211385,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1368), [sym_fsi_directive_decl] = STATE(1368), [sym_preproc_line] = STATE(1368), - [sym_identifier] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_open] = ACTIONS(3284), - [anon_sym_LBRACK_LT] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3286), - [anon_sym_POUNDload] = ACTIONS(3286), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), - [sym__dedent] = ACTIONS(3286), + [ts_builtin_sym_end] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3726), + [anon_sym_namespace] = ACTIONS(3726), + [anon_sym_module] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_open] = ACTIONS(3726), + [anon_sym_LBRACK_LT] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_type] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3728), + [anon_sym_POUNDload] = ACTIONS(3728), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [1369] = { [sym_xml_doc] = STATE(1369), @@ -206262,96 +211482,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1369), [sym_fsi_directive_decl] = STATE(1369), [sym_preproc_line] = STATE(1369), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_DOT_DOT] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3916), + [sym_identifier] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_open] = ACTIONS(3914), + [anon_sym_LBRACK_LT] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3916), + [anon_sym_POUNDload] = ACTIONS(3916), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [1370] = { [sym_xml_doc] = STATE(1370), @@ -206360,96 +211579,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1370), [sym_fsi_directive_decl] = STATE(1370), [sym_preproc_line] = STATE(1370), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [anon_sym_POUNDendif] = ACTIONS(3244), + [anon_sym_POUNDelse] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1371] = { [sym_xml_doc] = STATE(1371), @@ -206458,96 +211676,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1371), [sym_fsi_directive_decl] = STATE(1371), [sym_preproc_line] = STATE(1371), - [sym_identifier] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_open] = ACTIONS(3280), - [anon_sym_LBRACK_LT] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3282), - [anon_sym_POUNDload] = ACTIONS(3282), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), - [sym__dedent] = ACTIONS(3282), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [1372] = { [sym_xml_doc] = STATE(1372), @@ -206556,96 +211773,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1372), [sym_fsi_directive_decl] = STATE(1372), [sym_preproc_line] = STATE(1372), - [sym_identifier] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3379), - [anon_sym_LBRACK_LT] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3381), - [anon_sym_POUNDload] = ACTIONS(3381), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), - [sym__dedent] = ACTIONS(3381), + [ts_builtin_sym_end] = ACTIONS(3963), + [sym_identifier] = ACTIONS(3961), + [anon_sym_namespace] = ACTIONS(3961), + [anon_sym_module] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_open] = ACTIONS(3961), + [anon_sym_LBRACK_LT] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_type] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3963), + [anon_sym_POUNDload] = ACTIONS(3963), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [1373] = { [sym_xml_doc] = STATE(1373), @@ -206654,96 +211870,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1373), [sym_fsi_directive_decl] = STATE(1373), [sym_preproc_line] = STATE(1373), - [sym_identifier] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_LBRACK_LT] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3278), - [anon_sym_POUNDload] = ACTIONS(3278), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), - [sym__dedent] = ACTIONS(3278), + [ts_builtin_sym_end] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_open] = ACTIONS(3642), + [anon_sym_LBRACK_LT] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3644), + [anon_sym_POUNDload] = ACTIONS(3644), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [1374] = { [sym_xml_doc] = STATE(1374), @@ -206752,96 +211967,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1374), [sym_fsi_directive_decl] = STATE(1374), [sym_preproc_line] = STATE(1374), - [sym_identifier] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_open] = ACTIONS(3272), - [anon_sym_LBRACK_LT] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3274), - [anon_sym_POUNDload] = ACTIONS(3274), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), - [sym__dedent] = ACTIONS(3274), + [ts_builtin_sym_end] = ACTIONS(3816), + [sym_identifier] = ACTIONS(3814), + [anon_sym_namespace] = ACTIONS(3814), + [anon_sym_module] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_open] = ACTIONS(3814), + [anon_sym_LBRACK_LT] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_type] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3816), + [anon_sym_POUNDload] = ACTIONS(3816), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [1375] = { [sym_xml_doc] = STATE(1375), @@ -206850,96 +212064,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1375), [sym_fsi_directive_decl] = STATE(1375), [sym_preproc_line] = STATE(1375), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3856), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(3820), + [sym_identifier] = ACTIONS(3818), + [anon_sym_namespace] = ACTIONS(3818), + [anon_sym_module] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_open] = ACTIONS(3818), + [anon_sym_LBRACK_LT] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_type] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3820), + [anon_sym_POUNDload] = ACTIONS(3820), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [1376] = { [sym_xml_doc] = STATE(1376), @@ -206948,194 +212161,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1376), [sym_fsi_directive_decl] = STATE(1376), [sym_preproc_line] = STATE(1376), - [sym_identifier] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_open] = ACTIONS(3268), - [anon_sym_LBRACK_LT] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3270), - [anon_sym_POUNDload] = ACTIONS(3270), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), - [sym__dedent] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [anon_sym_POUNDendif] = ACTIONS(3298), + [anon_sym_POUNDelse] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1377] = { + [sym__else_expression] = STATE(2627), + [sym_elif_expression] = STATE(1976), [sym_xml_doc] = STATE(1377), [sym_block_comment] = STATE(1377), [sym_line_comment] = STATE(1377), [sym_compiler_directive_decl] = STATE(1377), [sym_fsi_directive_decl] = STATE(1377), [sym_preproc_line] = STATE(1377), - [sym_identifier] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_open] = ACTIONS(3262), - [anon_sym_LBRACK_LT] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3264), - [anon_sym_POUNDload] = ACTIONS(3264), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), - [sym__dedent] = ACTIONS(3264), + [aux_sym_if_expression_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_AT_AT_GT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4106), + [anon_sym_elif] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1378] = { [sym_xml_doc] = STATE(1378), @@ -207144,96 +212355,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1378), [sym_fsi_directive_decl] = STATE(1378), [sym_preproc_line] = STATE(1378), - [sym_identifier] = ACTIONS(3383), - [anon_sym_module] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3383), - [anon_sym_LBRACK_LT] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3385), - [anon_sym_POUNDload] = ACTIONS(3385), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), - [sym__dedent] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [anon_sym_POUNDendif] = ACTIONS(3353), + [anon_sym_POUNDelse] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1379] = { [sym_xml_doc] = STATE(1379), @@ -207242,96 +212452,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1379), [sym_fsi_directive_decl] = STATE(1379), [sym_preproc_line] = STATE(1379), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(3897), + [sym_identifier] = ACTIONS(3895), + [anon_sym_namespace] = ACTIONS(3895), + [anon_sym_module] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3895), + [anon_sym_LBRACK_LT] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_type] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3897), + [anon_sym_POUNDload] = ACTIONS(3897), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [1380] = { [sym_xml_doc] = STATE(1380), @@ -207340,96 +212549,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1380), [sym_fsi_directive_decl] = STATE(1380), [sym_preproc_line] = STATE(1380), - [sym_identifier] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_LBRACK_LT] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3463), - [anon_sym_POUNDload] = ACTIONS(3463), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), - [sym__dedent] = ACTIONS(3463), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [1381] = { [sym_xml_doc] = STATE(1381), @@ -207438,194 +212646,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1381), [sym_fsi_directive_decl] = STATE(1381), [sym_preproc_line] = STATE(1381), - [sym_identifier] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_LBRACK_LT] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3407), - [anon_sym_POUNDload] = ACTIONS(3407), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), - [sym__dedent] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4164), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [anon_sym_POUNDendif] = ACTIONS(3357), + [anon_sym_POUNDelse] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1382] = { + [sym__else_expression] = STATE(2760), + [sym_elif_expression] = STATE(1764), [sym_xml_doc] = STATE(1382), [sym_block_comment] = STATE(1382), [sym_line_comment] = STATE(1382), [sym_compiler_directive_decl] = STATE(1382), [sym_fsi_directive_decl] = STATE(1382), [sym_preproc_line] = STATE(1382), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [anon_sym_POUNDendif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [aux_sym_if_expression_repeat1] = STATE(1399), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_elif] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1383] = { [sym_xml_doc] = STATE(1383), @@ -207634,96 +212840,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1383), [sym_fsi_directive_decl] = STATE(1383), [sym_preproc_line] = STATE(1383), - [aux_sym_rules_repeat1] = STATE(1434), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_DOT_DOT2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3862), - [sym__dedent] = ACTIONS(3162), + [aux_sym_type_argument_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3232), + [anon_sym_COLON] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_COLON_QMARK] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_DOT_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_DOT_DOT] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3230), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3230), + [anon_sym_DASH_DOT] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3230), + [aux_sym_infix_op_token1] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3232), + [anon_sym_DOLLAR] = ACTIONS(3230), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3230), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), }, [1384] = { [sym_xml_doc] = STATE(1384), @@ -207732,96 +212937,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1384), [sym_fsi_directive_decl] = STATE(1384), [sym_preproc_line] = STATE(1384), - [sym_identifier] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_open] = ACTIONS(3253), - [anon_sym_LBRACK_LT] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3255), - [anon_sym_POUNDload] = ACTIONS(3255), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), - [sym__dedent] = ACTIONS(3255), + [ts_builtin_sym_end] = ACTIONS(3901), + [sym_identifier] = ACTIONS(3899), + [anon_sym_namespace] = ACTIONS(3899), + [anon_sym_module] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_open] = ACTIONS(3899), + [anon_sym_LBRACK_LT] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_type] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3901), + [anon_sym_POUNDload] = ACTIONS(3901), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [1385] = { [sym_xml_doc] = STATE(1385), @@ -207830,96 +213034,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1385), [sym_fsi_directive_decl] = STATE(1385), [sym_preproc_line] = STATE(1385), - [sym_identifier] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_LBRACK_LT] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3411), - [anon_sym_POUNDload] = ACTIONS(3411), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), - [sym__dedent] = ACTIONS(3411), + [aux_sym_type_argument_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4170), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1386] = { [sym_xml_doc] = STATE(1386), @@ -207928,96 +213131,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1386), [sym_fsi_directive_decl] = STATE(1386), [sym_preproc_line] = STATE(1386), - [sym_identifier] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_LBRACK_LT] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3467), - [anon_sym_POUNDload] = ACTIONS(3467), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), - [sym__dedent] = ACTIONS(3467), + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3734), + [anon_sym_LBRACK_LT] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_type] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [1387] = { [sym_xml_doc] = STATE(1387), @@ -208026,96 +213228,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1387), [sym_fsi_directive_decl] = STATE(1387), [sym_preproc_line] = STATE(1387), - [sym_identifier] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_LBRACK_LT] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3419), - [anon_sym_POUNDload] = ACTIONS(3419), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), - [sym__dedent] = ACTIONS(3419), + [ts_builtin_sym_end] = ACTIONS(4173), + [sym_identifier] = ACTIONS(4175), + [anon_sym_namespace] = ACTIONS(4175), + [anon_sym_module] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_open] = ACTIONS(4175), + [anon_sym_LBRACK_LT] = ACTIONS(4173), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_do] = ACTIONS(4175), + [anon_sym_let] = ACTIONS(4175), + [anon_sym_let_BANG] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_LBRACK_PIPE] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_LT_AT] = ACTIONS(4175), + [anon_sym_LT_AT_AT] = ACTIONS(4175), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(4173), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_return_BANG] = ACTIONS(4173), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_yield_BANG] = ACTIONS(4173), + [anon_sym_lazy] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_upcast] = ACTIONS(4175), + [anon_sym_downcast] = ACTIONS(4175), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_fun] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_match_BANG] = ACTIONS(4173), + [anon_sym_function] = ACTIONS(4175), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(4175), + [anon_sym_use_BANG] = ACTIONS(4173), + [anon_sym_do_BANG] = ACTIONS(4173), + [anon_sym_begin] = ACTIONS(4175), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(4175), + [anon_sym_AT_DQUOTE] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [sym_bool] = ACTIONS(4175), + [sym_unit] = ACTIONS(4175), + [anon_sym_LPAREN_PIPE] = ACTIONS(4175), + [sym_op_identifier] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4175), + [anon_sym_DASH] = ACTIONS(4175), + [anon_sym_PLUS_DOT] = ACTIONS(4175), + [anon_sym_DASH_DOT] = ACTIONS(4175), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_TILDE] = ACTIONS(4173), + [aux_sym_prefix_op_token1] = ACTIONS(4175), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(4175), + [sym_xint] = ACTIONS(4173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4173), + [anon_sym_POUNDload] = ACTIONS(4173), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4173), + [sym__newline] = ACTIONS(3546), }, [1388] = { [sym_xml_doc] = STATE(1388), @@ -208124,96 +213325,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1388), [sym_fsi_directive_decl] = STATE(1388), [sym_preproc_line] = STATE(1388), - [sym_identifier] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_LBRACK_LT] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3423), - [anon_sym_POUNDload] = ACTIONS(3423), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), - [sym__dedent] = ACTIONS(3423), + [aux_sym__compound_type_repeat1] = STATE(1425), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [anon_sym_POUNDendif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1389] = { [sym_xml_doc] = STATE(1389), @@ -208222,96 +213422,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1389), [sym_fsi_directive_decl] = STATE(1389), [sym_preproc_line] = STATE(1389), - [sym_identifier] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_open] = ACTIONS(3428), - [anon_sym_LBRACK_LT] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3430), - [anon_sym_POUNDload] = ACTIONS(3430), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), - [sym__dedent] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [anon_sym_POUNDendif] = ACTIONS(3324), + [anon_sym_POUNDelse] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1390] = { [sym_xml_doc] = STATE(1390), @@ -208320,96 +213519,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1390), [sym_fsi_directive_decl] = STATE(1390), [sym_preproc_line] = STATE(1390), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3865), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1391] = { [sym_xml_doc] = STATE(1391), @@ -208418,96 +213616,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1391), [sym_fsi_directive_decl] = STATE(1391), [sym_preproc_line] = STATE(1391), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3867), + [aux_sym_long_identifier_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(4134), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [anon_sym_POUNDendif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1392] = { [sym_xml_doc] = STATE(1392), @@ -208516,96 +213713,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1392), [sym_fsi_directive_decl] = STATE(1392), [sym_preproc_line] = STATE(1392), - [sym_identifier] = ACTIONS(3541), - [anon_sym_module] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3541), - [anon_sym_LBRACK_LT] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_type] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3543), - [anon_sym_POUNDload] = ACTIONS(3543), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - [sym__dedent] = ACTIONS(3543), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3738), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [1393] = { [sym_xml_doc] = STATE(1393), @@ -208614,96 +213810,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1393), [sym_fsi_directive_decl] = STATE(1393), [sym_preproc_line] = STATE(1393), - [sym_identifier] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_LBRACK_LT] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2520), - [anon_sym_POUNDload] = ACTIONS(2520), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [anon_sym_POUNDelse] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1394] = { [sym_xml_doc] = STATE(1394), @@ -208712,194 +213907,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1394), [sym_fsi_directive_decl] = STATE(1394), [sym_preproc_line] = STATE(1394), - [sym_identifier] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_open] = ACTIONS(3528), - [anon_sym_LBRACK_LT] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3530), - [anon_sym_POUNDload] = ACTIONS(3530), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), - [sym__dedent] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1395] = { - [sym_elif_expression] = STATE(1690), [sym_xml_doc] = STATE(1395), [sym_block_comment] = STATE(1395), [sym_line_comment] = STATE(1395), [sym_compiler_directive_decl] = STATE(1395), [sym_fsi_directive_decl] = STATE(1395), [sym_preproc_line] = STATE(1395), - [aux_sym_if_expression_repeat1] = STATE(1395), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_DOT_DOT] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [aux_sym_long_identifier_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4177), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1396] = { [sym_xml_doc] = STATE(1396), @@ -208908,96 +214101,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1396), [sym_fsi_directive_decl] = STATE(1396), [sym_preproc_line] = STATE(1396), - [sym_identifier] = ACTIONS(3643), - [anon_sym_module] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_open] = ACTIONS(3643), - [anon_sym_LBRACK_LT] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_type] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3645), - [anon_sym_POUNDload] = ACTIONS(3645), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), - [sym__dedent] = ACTIONS(3645), + [ts_builtin_sym_end] = ACTIONS(3748), + [sym_identifier] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_open] = ACTIONS(3746), + [anon_sym_LBRACK_LT] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_type] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3748), + [anon_sym_POUNDload] = ACTIONS(3748), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [1397] = { [sym_xml_doc] = STATE(1397), @@ -209006,96 +214198,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1397), [sym_fsi_directive_decl] = STATE(1397), [sym_preproc_line] = STATE(1397), - [sym_identifier] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_open] = ACTIONS(3610), - [anon_sym_LBRACK_LT] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3612), - [anon_sym_POUNDload] = ACTIONS(3612), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), - [sym__dedent] = ACTIONS(3612), + [ts_builtin_sym_end] = ACTIONS(3800), + [sym_identifier] = ACTIONS(3798), + [anon_sym_namespace] = ACTIONS(3798), + [anon_sym_module] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_open] = ACTIONS(3798), + [anon_sym_LBRACK_LT] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_type] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3800), + [anon_sym_POUNDload] = ACTIONS(3800), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [1398] = { [sym_xml_doc] = STATE(1398), @@ -209104,194 +214295,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1398), [sym_fsi_directive_decl] = STATE(1398), [sym_preproc_line] = STATE(1398), - [sym_identifier] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_LBRACK_LT] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3495), - [anon_sym_POUNDload] = ACTIONS(3495), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), - [sym__dedent] = ACTIONS(3495), + [ts_builtin_sym_end] = ACTIONS(3931), + [sym_identifier] = ACTIONS(3929), + [anon_sym_namespace] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_open] = ACTIONS(3929), + [anon_sym_LBRACK_LT] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_type] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3931), + [anon_sym_POUNDload] = ACTIONS(3931), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [1399] = { + [sym__else_expression] = STATE(2678), + [sym_elif_expression] = STATE(1764), [sym_xml_doc] = STATE(1399), [sym_block_comment] = STATE(1399), [sym_line_comment] = STATE(1399), [sym_compiler_directive_decl] = STATE(1399), [sym_fsi_directive_decl] = STATE(1399), [sym_preproc_line] = STATE(1399), - [sym_identifier] = ACTIONS(3391), - [anon_sym_module] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_open] = ACTIONS(3391), - [anon_sym_LBRACK_LT] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3393), - [anon_sym_POUNDload] = ACTIONS(3393), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), - [sym__dedent] = ACTIONS(3393), + [aux_sym_if_expression_repeat1] = STATE(1525), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4166), + [anon_sym_elif] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1400] = { [sym_xml_doc] = STATE(1400), @@ -209300,96 +214489,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1400), [sym_fsi_directive_decl] = STATE(1400), [sym_preproc_line] = STATE(1400), - [sym_identifier] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3375), - [anon_sym_LBRACK_LT] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3377), - [anon_sym_POUNDload] = ACTIONS(3377), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), - [sym__dedent] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1401] = { [sym_xml_doc] = STATE(1401), @@ -209398,96 +214586,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1401), [sym_fsi_directive_decl] = STATE(1401), [sym_preproc_line] = STATE(1401), - [sym_identifier] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_LBRACK_LT] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3499), - [anon_sym_POUNDload] = ACTIONS(3499), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), - [sym__dedent] = ACTIONS(3499), + [aux_sym_type_argument_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4179), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1402] = { [sym_xml_doc] = STATE(1402), @@ -209496,96 +214683,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1402), [sym_fsi_directive_decl] = STATE(1402), [sym_preproc_line] = STATE(1402), - [sym_identifier] = ACTIONS(3590), - [anon_sym_module] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_open] = ACTIONS(3590), - [anon_sym_LBRACK_LT] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_type] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3592), - [anon_sym_POUNDload] = ACTIONS(3592), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), - [sym__dedent] = ACTIONS(3592), + [aux_sym_long_identifier_repeat1] = STATE(1357), + [sym_identifier] = ACTIONS(3261), + [anon_sym_module] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_open] = ACTIONS(3261), + [anon_sym_LBRACK_LT] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3264), + [anon_sym_POUNDload] = ACTIONS(3264), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [1403] = { [sym_xml_doc] = STATE(1403), @@ -209594,96 +214780,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1403), [sym_fsi_directive_decl] = STATE(1403), [sym_preproc_line] = STATE(1403), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_open] = ACTIONS(3542), + [anon_sym_LBRACK_LT] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3544), + [anon_sym_POUNDload] = ACTIONS(3544), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), + [sym__dedent] = ACTIONS(3544), }, [1404] = { [sym_xml_doc] = STATE(1404), @@ -209692,96 +214877,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1404), [sym_fsi_directive_decl] = STATE(1404), [sym_preproc_line] = STATE(1404), - [sym_identifier] = ACTIONS(3534), - [anon_sym_module] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_open] = ACTIONS(3534), - [anon_sym_LBRACK_LT] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_type] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3536), - [anon_sym_POUNDload] = ACTIONS(3536), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), - [sym__dedent] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3483), + [anon_sym_module] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_open] = ACTIONS(3483), + [anon_sym_LBRACK_LT] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_type] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3485), + [anon_sym_POUNDload] = ACTIONS(3485), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [sym__dedent] = ACTIONS(3485), }, [1405] = { [sym_xml_doc] = STATE(1405), @@ -209790,96 +214974,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1405), [sym_fsi_directive_decl] = STATE(1405), [sym_preproc_line] = STATE(1405), - [sym_identifier] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_LBRACK_LT] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3415), - [anon_sym_POUNDload] = ACTIONS(3415), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), - [sym__dedent] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [anon_sym_POUNDendif] = ACTIONS(3320), + [anon_sym_POUNDelse] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1406] = { [sym_xml_doc] = STATE(1406), @@ -209888,96 +215071,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1406), [sym_fsi_directive_decl] = STATE(1406), [sym_preproc_line] = STATE(1406), - [sym_identifier] = ACTIONS(3787), - [anon_sym_module] = ACTIONS(3787), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_open] = ACTIONS(3787), - [anon_sym_LBRACK_LT] = ACTIONS(3785), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3787), - [anon_sym_type] = ACTIONS(3787), - [anon_sym_do] = ACTIONS(3787), - [anon_sym_let] = ACTIONS(3787), - [anon_sym_let_BANG] = ACTIONS(3785), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3787), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3787), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LBRACK_PIPE] = ACTIONS(3785), - [anon_sym_LBRACE] = ACTIONS(3787), - [anon_sym_LBRACE_PIPE] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3787), - [anon_sym_return_BANG] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3787), - [anon_sym_yield_BANG] = ACTIONS(3785), - [anon_sym_lazy] = ACTIONS(3787), - [anon_sym_assert] = ACTIONS(3787), - [anon_sym_upcast] = ACTIONS(3787), - [anon_sym_downcast] = ACTIONS(3787), - [anon_sym_LT_AT] = ACTIONS(3787), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3787), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3787), - [anon_sym_while] = ACTIONS(3787), - [anon_sym_if] = ACTIONS(3787), - [anon_sym_fun] = ACTIONS(3787), - [anon_sym_try] = ACTIONS(3787), - [anon_sym_match] = ACTIONS(3787), - [anon_sym_match_BANG] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(3787), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3787), - [anon_sym_use_BANG] = ACTIONS(3785), - [anon_sym_do_BANG] = ACTIONS(3785), - [anon_sym_begin] = ACTIONS(3787), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3787), - [anon_sym_DQUOTE] = ACTIONS(3787), - [anon_sym_AT_DQUOTE] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [sym_bool] = ACTIONS(3787), - [sym_unit] = ACTIONS(3787), - [anon_sym_LPAREN_PIPE] = ACTIONS(3787), - [sym_op_identifier] = ACTIONS(3787), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_PLUS_DOT] = ACTIONS(3787), - [anon_sym_DASH_DOT] = ACTIONS(3787), - [anon_sym_PERCENT] = ACTIONS(3787), - [anon_sym_AMP_AMP] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3785), - [aux_sym_prefix_op_token1] = ACTIONS(3787), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3787), - [sym_xint] = ACTIONS(3785), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3785), - [anon_sym_POUNDload] = ACTIONS(3785), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3785), - [sym__newline] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3785), + [aux_sym_long_identifier_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4186), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1407] = { [sym_xml_doc] = STATE(1407), @@ -209986,96 +215168,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1407), [sym_fsi_directive_decl] = STATE(1407), [sym_preproc_line] = STATE(1407), - [aux_sym_rules_repeat1] = STATE(1407), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3872), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3875), - [sym__dedent] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(3796), + [sym_identifier] = ACTIONS(3794), + [anon_sym_namespace] = ACTIONS(3794), + [anon_sym_module] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_open] = ACTIONS(3794), + [anon_sym_LBRACK_LT] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_type] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3796), + [anon_sym_POUNDload] = ACTIONS(3796), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [1408] = { [sym_xml_doc] = STATE(1408), @@ -210084,96 +215265,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1408), [sym_fsi_directive_decl] = STATE(1408), [sym_preproc_line] = STATE(1408), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [aux_sym_long_identifier_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1409] = { [sym_xml_doc] = STATE(1409), @@ -210182,96 +215362,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1409), [sym_fsi_directive_decl] = STATE(1409), [sym_preproc_line] = STATE(1409), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_DOT_DOT] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [ts_builtin_sym_end] = ACTIONS(3935), + [sym_identifier] = ACTIONS(3933), + [anon_sym_namespace] = ACTIONS(3933), + [anon_sym_module] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_open] = ACTIONS(3933), + [anon_sym_LBRACK_LT] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_type] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3935), + [anon_sym_POUNDload] = ACTIONS(3935), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [1410] = { [sym_xml_doc] = STATE(1410), @@ -210280,194 +215459,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1410), [sym_fsi_directive_decl] = STATE(1410), [sym_preproc_line] = STATE(1410), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_DOT_DOT] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [aux_sym_sequential_expression_repeat1] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_open] = ACTIONS(3612), + [anon_sym_LBRACK_LT] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3614), + [anon_sym_POUNDload] = ACTIONS(3614), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [1411] = { + [sym__else_expression] = STATE(2562), + [sym_elif_expression] = STATE(1942), [sym_xml_doc] = STATE(1411), [sym_block_comment] = STATE(1411), [sym_line_comment] = STATE(1411), [sym_compiler_directive_decl] = STATE(1411), [sym_fsi_directive_decl] = STATE(1411), [sym_preproc_line] = STATE(1411), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [aux_sym_if_expression_repeat1] = STATE(1433), + [sym_identifier] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_let_BANG] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_COLON_QMARK] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACK_PIPE] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_LT_AT] = ACTIONS(3249), + [anon_sym_LT_AT_AT] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_LBRACE_PIPE] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_return_BANG] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_yield_BANG] = ACTIONS(3251), + [anon_sym_lazy] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_upcast] = ACTIONS(3249), + [anon_sym_downcast] = ACTIONS(3249), + [anon_sym_COLON_GT] = ACTIONS(3251), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(4192), + [anon_sym_elif] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_fun] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_match_BANG] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_DOT_LBRACK] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3249), + [anon_sym_use_BANG] = ACTIONS(3251), + [anon_sym_do_BANG] = ACTIONS(3251), + [anon_sym_begin] = ACTIONS(3249), + [anon_sym_LPAREN2] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3249), + [aux_sym_char_token1] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_AT_DQUOTE] = ACTIONS(3251), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3251), + [sym_bool] = ACTIONS(3249), + [sym_unit] = ACTIONS(3249), + [anon_sym_LPAREN_PIPE] = ACTIONS(3249), + [sym_op_identifier] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_PLUS_DOT] = ACTIONS(3249), + [anon_sym_DASH_DOT] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3251), + [aux_sym_prefix_op_token1] = ACTIONS(3249), + [aux_sym_infix_op_token1] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3249), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3249), + [sym_int] = ACTIONS(3249), + [sym_xint] = ACTIONS(3251), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3251), + [anon_sym_POUNDendif] = ACTIONS(3251), + [sym__newline] = ACTIONS(3251), }, [1412] = { [sym_xml_doc] = STATE(1412), @@ -210476,96 +215653,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1412), [sym_fsi_directive_decl] = STATE(1412), [sym_preproc_line] = STATE(1412), - [sym_identifier] = ACTIONS(3586), - [anon_sym_module] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_open] = ACTIONS(3586), - [anon_sym_LBRACK_LT] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_type] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3588), - [anon_sym_POUNDload] = ACTIONS(3588), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), - [sym__dedent] = ACTIONS(3588), + [ts_builtin_sym_end] = ACTIONS(3842), + [sym_identifier] = ACTIONS(3840), + [anon_sym_namespace] = ACTIONS(3840), + [anon_sym_module] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_open] = ACTIONS(3840), + [anon_sym_LBRACK_LT] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_type] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3842), + [anon_sym_POUNDload] = ACTIONS(3842), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [1413] = { [sym_xml_doc] = STATE(1413), @@ -210574,96 +215750,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1413), [sym_fsi_directive_decl] = STATE(1413), [sym_preproc_line] = STATE(1413), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(3927), + [sym_identifier] = ACTIONS(3925), + [anon_sym_namespace] = ACTIONS(3925), + [anon_sym_module] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_open] = ACTIONS(3925), + [anon_sym_LBRACK_LT] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_type] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3927), + [anon_sym_POUNDload] = ACTIONS(3927), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [1414] = { [sym_xml_doc] = STATE(1414), @@ -210672,96 +215847,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1414), [sym_fsi_directive_decl] = STATE(1414), [sym_preproc_line] = STATE(1414), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(3792), + [sym_identifier] = ACTIONS(3790), + [anon_sym_namespace] = ACTIONS(3790), + [anon_sym_module] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_open] = ACTIONS(3790), + [anon_sym_LBRACK_LT] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_type] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3792), + [anon_sym_POUNDload] = ACTIONS(3792), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [1415] = { [sym_xml_doc] = STATE(1415), @@ -210770,96 +215944,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1415), [sym_fsi_directive_decl] = STATE(1415), [sym_preproc_line] = STATE(1415), - [sym_identifier] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_open] = ACTIONS(3582), - [anon_sym_LBRACK_LT] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3584), - [anon_sym_POUNDload] = ACTIONS(3584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), - [sym__dedent] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [anon_sym_POUNDendif] = ACTIONS(3294), + [anon_sym_POUNDelse] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1416] = { [sym_xml_doc] = STATE(1416), @@ -210868,96 +216041,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1416), [sym_fsi_directive_decl] = STATE(1416), [sym_preproc_line] = STATE(1416), - [aux_sym_rules_repeat1] = STATE(1407), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(3880), - [sym__dedent] = ACTIONS(3081), + [aux_sym_type_argument_repeat1] = STATE(1364), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_AT_AT_GT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4196), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1417] = { [sym_xml_doc] = STATE(1417), @@ -210966,96 +216138,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1417), [sym_fsi_directive_decl] = STATE(1417), [sym_preproc_line] = STATE(1417), - [sym_identifier] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_open] = ACTIONS(3516), - [anon_sym_LBRACK_LT] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3518), - [anon_sym_POUNDload] = ACTIONS(3518), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), - [sym__dedent] = ACTIONS(3518), + [ts_builtin_sym_end] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_open] = ACTIONS(3620), + [anon_sym_LBRACK_LT] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3622), + [anon_sym_POUNDload] = ACTIONS(3622), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [1418] = { [sym_xml_doc] = STATE(1418), @@ -211064,96 +216235,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1418), [sym_fsi_directive_decl] = STATE(1418), [sym_preproc_line] = STATE(1418), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_DOT_DOT] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(3967), + [sym_identifier] = ACTIONS(3965), + [anon_sym_namespace] = ACTIONS(3965), + [anon_sym_module] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_open] = ACTIONS(3965), + [anon_sym_LBRACK_LT] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_type] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3967), + [anon_sym_POUNDload] = ACTIONS(3967), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [1419] = { [sym_xml_doc] = STATE(1419), @@ -211162,96 +216332,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1419), [sym_fsi_directive_decl] = STATE(1419), [sym_preproc_line] = STATE(1419), - [sym_identifier] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_LBRACK_LT] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3403), - [anon_sym_POUNDload] = ACTIONS(3403), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), - [sym__dedent] = ACTIONS(3403), + [aux_sym_long_identifier_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_AT_GT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1420] = { [sym_xml_doc] = STATE(1420), @@ -211260,96 +216429,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1420), [sym_fsi_directive_decl] = STATE(1420), [sym_preproc_line] = STATE(1420), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3883), + [aux_sym__compound_type_repeat1] = STATE(1420), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_DOT_DOT] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4201), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1421] = { [sym_xml_doc] = STATE(1421), @@ -211358,96 +216526,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1421), [sym_fsi_directive_decl] = STATE(1421), [sym_preproc_line] = STATE(1421), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3885), + [ts_builtin_sym_end] = ACTIONS(3971), + [sym_identifier] = ACTIONS(3969), + [anon_sym_namespace] = ACTIONS(3969), + [anon_sym_module] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_open] = ACTIONS(3969), + [anon_sym_LBRACK_LT] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_type] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3971), + [anon_sym_POUNDload] = ACTIONS(3971), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [1422] = { [sym_xml_doc] = STATE(1422), @@ -211456,96 +216623,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1422), [sym_fsi_directive_decl] = STATE(1422), [sym_preproc_line] = STATE(1422), - [sym_identifier] = ACTIONS(3545), - [anon_sym_module] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3545), - [anon_sym_LBRACK_LT] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_type] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3547), - [anon_sym_POUNDload] = ACTIONS(3547), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), - [sym__dedent] = ACTIONS(3547), + [aux_sym_type_argument_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_AT_AT_GT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4204), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1423] = { [sym_xml_doc] = STATE(1423), @@ -211554,96 +216720,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1423), [sym_fsi_directive_decl] = STATE(1423), [sym_preproc_line] = STATE(1423), - [sym_identifier] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_open] = ACTIONS(3614), - [anon_sym_LBRACK_LT] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3616), - [anon_sym_POUNDload] = ACTIONS(3616), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), - [sym__dedent] = ACTIONS(3616), + [ts_builtin_sym_end] = ACTIONS(3908), + [sym_identifier] = ACTIONS(3906), + [anon_sym_namespace] = ACTIONS(3906), + [anon_sym_module] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_open] = ACTIONS(3906), + [anon_sym_LBRACK_LT] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_type] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3908), + [anon_sym_POUNDload] = ACTIONS(3908), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [1424] = { [sym_xml_doc] = STATE(1424), @@ -211652,96 +216817,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1424), [sym_fsi_directive_decl] = STATE(1424), [sym_preproc_line] = STATE(1424), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_GT_RBRACK] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3527), + [anon_sym_module] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_open] = ACTIONS(3527), + [anon_sym_LBRACK_LT] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_type] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4207), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3529), + [anon_sym_POUNDload] = ACTIONS(3529), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), + [sym__dedent] = ACTIONS(3529), }, [1425] = { [sym_xml_doc] = STATE(1425), @@ -211750,96 +216914,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1425), [sym_fsi_directive_decl] = STATE(1425), [sym_preproc_line] = STATE(1425), - [sym_identifier] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_open] = ACTIONS(3570), - [anon_sym_LBRACK_LT] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3572), - [anon_sym_POUNDload] = ACTIONS(3572), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), - [sym__dedent] = ACTIONS(3572), + [aux_sym__compound_type_repeat1] = STATE(1425), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [anon_sym_POUNDendif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1426] = { [sym_xml_doc] = STATE(1426), @@ -211848,96 +217011,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1426), [sym_fsi_directive_decl] = STATE(1426), [sym_preproc_line] = STATE(1426), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3887), + [sym_identifier] = ACTIONS(3523), + [anon_sym_module] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_open] = ACTIONS(3523), + [anon_sym_LBRACK_LT] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_type] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3525), + [anon_sym_POUNDload] = ACTIONS(3525), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), + [sym__dedent] = ACTIONS(3525), }, [1427] = { [sym_xml_doc] = STATE(1427), @@ -211946,96 +217108,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1427), [sym_fsi_directive_decl] = STATE(1427), [sym_preproc_line] = STATE(1427), - [sym_identifier] = ACTIONS(3574), - [anon_sym_module] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_open] = ACTIONS(3574), - [anon_sym_LBRACK_LT] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_type] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3576), - [anon_sym_POUNDload] = ACTIONS(3576), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), - [sym__dedent] = ACTIONS(3576), + [aux_sym__compound_type_repeat1] = STATE(1420), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1428] = { [sym_xml_doc] = STATE(1428), @@ -212044,96 +217205,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1428), [sym_fsi_directive_decl] = STATE(1428), [sym_preproc_line] = STATE(1428), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3889), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3533), + [anon_sym_module] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_open] = ACTIONS(3533), + [anon_sym_LBRACK_LT] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_type] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3535), + [anon_sym_POUNDload] = ACTIONS(3535), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), + [sym__dedent] = ACTIONS(3535), }, [1429] = { [sym_xml_doc] = STATE(1429), @@ -212142,96 +217302,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1429), [sym_fsi_directive_decl] = STATE(1429), [sym_preproc_line] = STATE(1429), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(3768), + [sym_identifier] = ACTIONS(3766), + [anon_sym_namespace] = ACTIONS(3766), + [anon_sym_module] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_open] = ACTIONS(3766), + [anon_sym_LBRACK_LT] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3768), + [anon_sym_POUNDload] = ACTIONS(3768), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [1430] = { [sym_xml_doc] = STATE(1430), @@ -212240,96 +217399,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1430), [sym_fsi_directive_decl] = STATE(1430), [sym_preproc_line] = STATE(1430), - [sym_identifier] = ACTIONS(3566), - [anon_sym_module] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_open] = ACTIONS(3566), - [anon_sym_LBRACK_LT] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_type] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3568), - [anon_sym_POUNDload] = ACTIONS(3568), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), - [sym__dedent] = ACTIONS(3568), + [ts_builtin_sym_end] = ACTIONS(3772), + [sym_identifier] = ACTIONS(3770), + [anon_sym_namespace] = ACTIONS(3770), + [anon_sym_module] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_open] = ACTIONS(3770), + [anon_sym_LBRACK_LT] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_type] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3772), + [anon_sym_POUNDload] = ACTIONS(3772), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [1431] = { [sym_xml_doc] = STATE(1431), @@ -212338,96 +217496,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1431), [sym_fsi_directive_decl] = STATE(1431), [sym_preproc_line] = STATE(1431), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3577), + [anon_sym_namespace] = ACTIONS(3577), + [anon_sym_module] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_open] = ACTIONS(3577), + [anon_sym_LBRACK_LT] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_type] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3579), + [anon_sym_POUNDload] = ACTIONS(3579), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [1432] = { [sym_xml_doc] = STATE(1432), @@ -212436,194 +217593,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1432), [sym_fsi_directive_decl] = STATE(1432), [sym_preproc_line] = STATE(1432), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_DOT_DOT] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [aux_sym_type_argument_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4212), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1433] = { + [sym__else_expression] = STATE(2648), + [sym_elif_expression] = STATE(1942), [sym_xml_doc] = STATE(1433), [sym_block_comment] = STATE(1433), [sym_line_comment] = STATE(1433), [sym_compiler_directive_decl] = STATE(1433), [sym_fsi_directive_decl] = STATE(1433), [sym_preproc_line] = STATE(1433), - [aux_sym_rules_repeat1] = STATE(1444), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_DOT_DOT2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3891), - [sym__dedent] = ACTIONS(3110), + [aux_sym_if_expression_repeat1] = STATE(1487), + [sym_identifier] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_let_BANG] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_null] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_COLON_QMARK] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACK_PIPE] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_LT_AT] = ACTIONS(3281), + [anon_sym_LT_AT_AT] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_LBRACE_PIPE] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_return_BANG] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_yield_BANG] = ACTIONS(3283), + [anon_sym_lazy] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_upcast] = ACTIONS(3281), + [anon_sym_downcast] = ACTIONS(3281), + [anon_sym_COLON_GT] = ACTIONS(3283), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(4192), + [anon_sym_elif] = ACTIONS(4194), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_fun] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_match_BANG] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_DOT_LBRACK] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3281), + [anon_sym_use_BANG] = ACTIONS(3283), + [anon_sym_do_BANG] = ACTIONS(3283), + [anon_sym_begin] = ACTIONS(3281), + [anon_sym_LPAREN2] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3281), + [aux_sym_char_token1] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_AT_DQUOTE] = ACTIONS(3283), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3283), + [sym_bool] = ACTIONS(3281), + [sym_unit] = ACTIONS(3281), + [anon_sym_LPAREN_PIPE] = ACTIONS(3281), + [sym_op_identifier] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_PLUS_DOT] = ACTIONS(3281), + [anon_sym_DASH_DOT] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3283), + [aux_sym_prefix_op_token1] = ACTIONS(3281), + [aux_sym_infix_op_token1] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_DOLLAR] = ACTIONS(3281), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3281), + [sym_int] = ACTIONS(3281), + [sym_xint] = ACTIONS(3283), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3283), + [anon_sym_POUNDendif] = ACTIONS(3283), + [sym__newline] = ACTIONS(3283), }, [1434] = { [sym_xml_doc] = STATE(1434), @@ -212632,96 +217787,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1434), [sym_fsi_directive_decl] = STATE(1434), [sym_preproc_line] = STATE(1434), - [aux_sym_rules_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_DOT_DOT2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3891), - [sym__dedent] = ACTIONS(3110), + [ts_builtin_sym_end] = ACTIONS(3780), + [sym_identifier] = ACTIONS(3778), + [anon_sym_namespace] = ACTIONS(3778), + [anon_sym_module] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_open] = ACTIONS(3778), + [anon_sym_LBRACK_LT] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_type] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3780), + [anon_sym_POUNDload] = ACTIONS(3780), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [1435] = { [sym_xml_doc] = STATE(1435), @@ -212730,96 +217884,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1435), [sym_fsi_directive_decl] = STATE(1435), [sym_preproc_line] = STATE(1435), - [sym_identifier] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3435), - [anon_sym_LBRACK_LT] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3437), - [anon_sym_POUNDload] = ACTIONS(3437), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), - [sym__dedent] = ACTIONS(3437), + [aux_sym__compound_type_repeat1] = STATE(1453), + [sym_identifier] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3212), + [anon_sym_COLON_QMARK] = ACTIONS(3212), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3212), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_COLON_GT] = ACTIONS(3214), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_DOT_LBRACK] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_LPAREN2] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3212), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3212), + [anon_sym_DASH_DOT] = ACTIONS(3212), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3212), + [aux_sym_infix_op_token1] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_DOLLAR] = ACTIONS(3212), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3212), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), }, [1436] = { [sym_xml_doc] = STATE(1436), @@ -212828,96 +217981,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1436), [sym_fsi_directive_decl] = STATE(1436), [sym_preproc_line] = STATE(1436), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [ts_builtin_sym_end] = ACTIONS(3975), + [sym_identifier] = ACTIONS(3973), + [anon_sym_namespace] = ACTIONS(3973), + [anon_sym_module] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_LBRACK_LT] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_type] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3975), + [anon_sym_POUNDload] = ACTIONS(3975), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [1437] = { [sym_xml_doc] = STATE(1437), @@ -212926,96 +218078,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1437), [sym_fsi_directive_decl] = STATE(1437), [sym_preproc_line] = STATE(1437), - [aux_sym_rules_repeat1] = STATE(1407), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3896), - [sym__dedent] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4215), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), }, [1438] = { [sym_xml_doc] = STATE(1438), @@ -213024,96 +218175,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1438), [sym_fsi_directive_decl] = STATE(1438), [sym_preproc_line] = STATE(1438), - [aux_sym_rules_repeat1] = STATE(1416), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(3896), - [sym__dedent] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1439] = { [sym_xml_doc] = STATE(1439), @@ -213122,96 +218272,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1439), [sym_fsi_directive_decl] = STATE(1439), [sym_preproc_line] = STATE(1439), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym_long_identifier_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_AT_GT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1440] = { [sym_xml_doc] = STATE(1440), @@ -213220,96 +218369,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1440), [sym_fsi_directive_decl] = STATE(1440), [sym_preproc_line] = STATE(1440), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [aux_sym_long_identifier_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_AT_GT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4217), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1441] = { [sym_xml_doc] = STATE(1441), @@ -213318,96 +218466,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1441), [sym_fsi_directive_decl] = STATE(1441), [sym_preproc_line] = STATE(1441), - [sym_identifier] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_open] = ACTIONS(3295), - [anon_sym_LBRACK_LT] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3297), - [anon_sym_POUNDload] = ACTIONS(3297), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), - [sym__dedent] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1442] = { [sym_xml_doc] = STATE(1442), @@ -213416,96 +218563,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1442), [sym_fsi_directive_decl] = STATE(1442), [sym_preproc_line] = STATE(1442), - [sym_identifier] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_LBRACK_LT] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3471), - [anon_sym_POUNDload] = ACTIONS(3471), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), - [sym__dedent] = ACTIONS(3471), + [ts_builtin_sym_end] = ACTIONS(3979), + [sym_identifier] = ACTIONS(3977), + [anon_sym_namespace] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_open] = ACTIONS(3977), + [anon_sym_LBRACK_LT] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_type] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3979), + [anon_sym_POUNDload] = ACTIONS(3979), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [1443] = { [sym_xml_doc] = STATE(1443), @@ -213514,96 +218660,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1443), [sym_fsi_directive_decl] = STATE(1443), [sym_preproc_line] = STATE(1443), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_DOT_DOT] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [ts_builtin_sym_end] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3598), + [anon_sym_module] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_open] = ACTIONS(3598), + [anon_sym_LBRACK_LT] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_type] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3600), + [anon_sym_POUNDload] = ACTIONS(3600), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [1444] = { [sym_xml_doc] = STATE(1444), @@ -213612,96 +218757,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1444), [sym_fsi_directive_decl] = STATE(1444), [sym_preproc_line] = STATE(1444), - [aux_sym_rules_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3860), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_DOT_DOT2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(3899), - [sym__dedent] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1445] = { [sym_xml_doc] = STATE(1445), @@ -213710,96 +218854,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1445), [sym_fsi_directive_decl] = STATE(1445), [sym_preproc_line] = STATE(1445), - [aux_sym_rules_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_DOT_DOT2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3905), - [sym__dedent] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3774), + [anon_sym_namespace] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_open] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_type] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3776), + [anon_sym_POUNDload] = ACTIONS(3776), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [1446] = { [sym_xml_doc] = STATE(1446), @@ -213808,96 +218951,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1446), [sym_fsi_directive_decl] = STATE(1446), [sym_preproc_line] = STATE(1446), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3908), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [anon_sym_POUNDendif] = ACTIONS(3075), - [anon_sym_POUNDelse] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3581), + [anon_sym_namespace] = ACTIONS(3581), + [anon_sym_module] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_open] = ACTIONS(3581), + [anon_sym_LBRACK_LT] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_type] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3583), + [anon_sym_POUNDload] = ACTIONS(3583), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [1447] = { [sym_xml_doc] = STATE(1447), @@ -213906,96 +219048,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1447), [sym_fsi_directive_decl] = STATE(1447), [sym_preproc_line] = STATE(1447), - [aux_sym_rules_repeat1] = STATE(1437), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_as] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3910), - [sym__dedent] = ACTIONS(3162), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3585), + [anon_sym_namespace] = ACTIONS(3585), + [anon_sym_module] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_open] = ACTIONS(3585), + [anon_sym_LBRACK_LT] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_type] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3587), + [anon_sym_POUNDload] = ACTIONS(3587), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [1448] = { [sym_xml_doc] = STATE(1448), @@ -214004,96 +219145,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1448), [sym_fsi_directive_decl] = STATE(1448), [sym_preproc_line] = STATE(1448), - [sym_identifier] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_AT_GT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3029), - [anon_sym_AT_AT_GT] = ACTIONS(3029), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_DOT_LBRACK] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_LPAREN2] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3029), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3029), - [anon_sym_DASH_DOT] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3029), - [aux_sym_infix_op_token1] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3031), - [anon_sym_DOLLAR] = ACTIONS(3029), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3029), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [anon_sym_POUNDendif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1449] = { [sym_xml_doc] = STATE(1449), @@ -214102,96 +219242,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1449), [sym_fsi_directive_decl] = STATE(1449), [sym_preproc_line] = STATE(1449), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), - [sym__dedent] = ACTIONS(3149), + [aux_sym_type_argument_repeat1] = STATE(1449), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(4220), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1450] = { [sym_xml_doc] = STATE(1450), @@ -214200,96 +219339,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1450), [sym_fsi_directive_decl] = STATE(1450), [sym_preproc_line] = STATE(1450), - [sym_identifier] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_LBRACK_LT] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3399), - [anon_sym_POUNDload] = ACTIONS(3399), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), - [sym__dedent] = ACTIONS(3399), + [ts_builtin_sym_end] = ACTIONS(3707), + [sym_identifier] = ACTIONS(3705), + [anon_sym_namespace] = ACTIONS(3705), + [anon_sym_module] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_open] = ACTIONS(3705), + [anon_sym_LBRACK_LT] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_type] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3707), + [anon_sym_POUNDload] = ACTIONS(3707), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [1451] = { [sym_xml_doc] = STATE(1451), @@ -214298,96 +219436,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1451), [sym_fsi_directive_decl] = STATE(1451), [sym_preproc_line] = STATE(1451), - [sym_identifier] = ACTIONS(3621), - [anon_sym_module] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_open] = ACTIONS(3621), - [anon_sym_LBRACK_LT] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_type] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3623), - [anon_sym_POUNDload] = ACTIONS(3623), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), - [sym__dedent] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1452] = { [sym_xml_doc] = STATE(1452), @@ -214396,96 +219533,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1452), [sym_fsi_directive_decl] = STATE(1452), [sym_preproc_line] = STATE(1452), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [aux_sym_type_argument_repeat1] = STATE(1280), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_AT_GT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(4223), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1453] = { [sym_xml_doc] = STATE(1453), @@ -214494,96 +219630,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1453), [sym_fsi_directive_decl] = STATE(1453), [sym_preproc_line] = STATE(1453), - [aux_sym_long_identifier_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [aux_sym__compound_type_repeat1] = STATE(1453), + [sym_identifier] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_COLON_GT] = ACTIONS(3030), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_DOT_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3030), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3032), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3032), + [anon_sym_DASH_DOT] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3032), + [aux_sym_infix_op_token1] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3030), + [anon_sym_DOLLAR] = ACTIONS(3032), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3032), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), }, [1454] = { [sym_xml_doc] = STATE(1454), @@ -214592,194 +219727,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1454), [sym_fsi_directive_decl] = STATE(1454), [sym_preproc_line] = STATE(1454), - [sym_identifier] = ACTIONS(3439), - [anon_sym_module] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3439), - [anon_sym_LBRACK_LT] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_type] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3441), - [anon_sym_POUNDload] = ACTIONS(3441), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - [sym__dedent] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3939), + [sym_identifier] = ACTIONS(3937), + [anon_sym_namespace] = ACTIONS(3937), + [anon_sym_module] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_open] = ACTIONS(3937), + [anon_sym_LBRACK_LT] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_type] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3939), + [anon_sym_POUNDload] = ACTIONS(3939), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [1455] = { - [sym_elif_expression] = STATE(1784), [sym_xml_doc] = STATE(1455), [sym_block_comment] = STATE(1455), [sym_line_comment] = STATE(1455), [sym_compiler_directive_decl] = STATE(1455), [sym_fsi_directive_decl] = STATE(1455), [sym_preproc_line] = STATE(1455), - [aux_sym_if_expression_repeat1] = STATE(1455), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3913), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_GT] = ACTIONS(2996), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1456] = { [sym_xml_doc] = STATE(1456), @@ -214788,96 +219921,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1456), [sym_fsi_directive_decl] = STATE(1456), [sym_preproc_line] = STATE(1456), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3916), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_as] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4229), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1457] = { [sym_xml_doc] = STATE(1457), @@ -214886,96 +220018,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1457), [sym_fsi_directive_decl] = STATE(1457), [sym_preproc_line] = STATE(1457), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [anon_sym_POUNDendif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(3788), + [sym_identifier] = ACTIONS(3786), + [anon_sym_namespace] = ACTIONS(3786), + [anon_sym_module] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_open] = ACTIONS(3786), + [anon_sym_LBRACK_LT] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_type] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3788), + [anon_sym_POUNDload] = ACTIONS(3788), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [1458] = { [sym_xml_doc] = STATE(1458), @@ -214984,96 +220115,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1458), [sym_fsi_directive_decl] = STATE(1458), [sym_preproc_line] = STATE(1458), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_DOT_DOT] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(3784), + [sym_identifier] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_open] = ACTIONS(3782), + [anon_sym_LBRACK_LT] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_type] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3784), + [anon_sym_POUNDload] = ACTIONS(3784), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [1459] = { [sym_xml_doc] = STATE(1459), @@ -215082,96 +220212,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1459), [sym_fsi_directive_decl] = STATE(1459), [sym_preproc_line] = STATE(1459), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3092), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3092), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), - [sym__dedent] = ACTIONS(3094), + [aux_sym_long_identifier_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_COLON_QMARK] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(4177), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_COLON_GT] = ACTIONS(3259), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_DOT_LBRACK] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_DOT_DOT] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_LPAREN2] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3257), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3257), + [anon_sym_DASH_DOT] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3257), + [aux_sym_infix_op_token1] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3259), + [anon_sym_DOLLAR] = ACTIONS(3257), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3257), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), }, [1460] = { [sym_xml_doc] = STATE(1460), @@ -215180,96 +220309,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1460), [sym_fsi_directive_decl] = STATE(1460), [sym_preproc_line] = STATE(1460), - [sym_identifier] = ACTIONS(3512), - [anon_sym_module] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_open] = ACTIONS(3512), - [anon_sym_LBRACK_LT] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_type] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3514), - [anon_sym_POUNDload] = ACTIONS(3514), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), - [sym__dedent] = ACTIONS(3514), + [aux_sym_long_identifier_repeat1] = STATE(1460), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_AT_AT_GT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4231), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1461] = { [sym_xml_doc] = STATE(1461), @@ -215278,96 +220406,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1461), [sym_fsi_directive_decl] = STATE(1461), [sym_preproc_line] = STATE(1461), - [sym_identifier] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_COLON_QMARK] = ACTIONS(2924), - [anon_sym_COLON_COLON] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_AT_GT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2924), - [anon_sym_AT_AT_GT] = ACTIONS(2924), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_DOT_LBRACK] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_LPAREN2] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2924), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2924), - [anon_sym_DASH_DOT] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2924), - [aux_sym_infix_op_token1] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2924), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [anon_sym_POUNDendif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [anon_sym_POUNDendif] = ACTIONS(3338), + [anon_sym_POUNDelse] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1462] = { [sym_xml_doc] = STATE(1462), @@ -215376,96 +220503,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1462), [sym_fsi_directive_decl] = STATE(1462), [sym_preproc_line] = STATE(1462), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3532), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_DOT_DOT2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [anon_sym_POUNDendif] = ACTIONS(3342), + [anon_sym_POUNDelse] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1463] = { [sym_xml_doc] = STATE(1463), @@ -215474,96 +220600,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1463), [sym_fsi_directive_decl] = STATE(1463), [sym_preproc_line] = STATE(1463), - [sym_identifier] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_LBRACK_LT] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3459), - [anon_sym_POUNDload] = ACTIONS(3459), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), - [sym__dedent] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_GT_RBRACK] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3316), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1464] = { [sym_xml_doc] = STATE(1464), @@ -215572,96 +220696,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1464), [sym_fsi_directive_decl] = STATE(1464), [sym_preproc_line] = STATE(1464), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3920), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3701), + [anon_sym_module] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_open] = ACTIONS(3701), + [anon_sym_LBRACK_LT] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_type] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3703), + [anon_sym_POUNDload] = ACTIONS(3703), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), + [sym__dedent] = ACTIONS(3703), }, [1465] = { [sym_xml_doc] = STATE(1465), @@ -215670,96 +220792,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1465), [sym_fsi_directive_decl] = STATE(1465), [sym_preproc_line] = STATE(1465), - [sym_identifier] = ACTIONS(3443), - [anon_sym_module] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3443), - [anon_sym_LBRACK_LT] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_type] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3445), - [anon_sym_POUNDload] = ACTIONS(3445), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), - [sym__dedent] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DOT_DOT2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + [sym__dedent] = ACTIONS(3495), }, [1466] = { [sym_xml_doc] = STATE(1466), @@ -215768,96 +220888,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1466), [sym_fsi_directive_decl] = STATE(1466), [sym_preproc_line] = STATE(1466), - [sym_identifier] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_LBRACK_LT] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3475), - [anon_sym_POUNDload] = ACTIONS(3475), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), - [sym__dedent] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_open] = ACTIONS(3608), + [anon_sym_LBRACK_LT] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_type] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3610), + [anon_sym_POUNDload] = ACTIONS(3610), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), + [sym__dedent] = ACTIONS(3610), }, [1467] = { [sym_xml_doc] = STATE(1467), @@ -215866,96 +220984,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1467), [sym_fsi_directive_decl] = STATE(1467), [sym_preproc_line] = STATE(1467), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1468] = { [sym_xml_doc] = STATE(1468), @@ -215964,96 +221080,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1468), [sym_fsi_directive_decl] = STATE(1468), [sym_preproc_line] = STATE(1468), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_DOT_DOT] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [anon_sym_POUNDendif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1469] = { [sym_xml_doc] = STATE(1469), @@ -216062,96 +221176,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1469), [sym_fsi_directive_decl] = STATE(1469), [sym_preproc_line] = STATE(1469), - [sym_identifier] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_LBRACK_LT] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3487), - [anon_sym_POUNDload] = ACTIONS(3487), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), - [sym__dedent] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1470] = { [sym_xml_doc] = STATE(1470), @@ -216160,292 +221272,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1470), [sym_fsi_directive_decl] = STATE(1470), [sym_preproc_line] = STATE(1470), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_DOT_DOT2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), - [sym__dedent] = ACTIONS(3175), - }, - [1471] = { - [sym_xml_doc] = STATE(1471), - [sym_block_comment] = STATE(1471), - [sym_line_comment] = STATE(1471), - [sym_compiler_directive_decl] = STATE(1471), - [sym_fsi_directive_decl] = STATE(1471), - [sym_preproc_line] = STATE(1471), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), - }, - [1472] = { - [sym_xml_doc] = STATE(1472), - [sym_block_comment] = STATE(1472), - [sym_line_comment] = STATE(1472), + [aux_sym_long_identifier_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + }, + [1471] = { + [sym_xml_doc] = STATE(1471), + [sym_block_comment] = STATE(1471), + [sym_line_comment] = STATE(1471), + [sym_compiler_directive_decl] = STATE(1471), + [sym_fsi_directive_decl] = STATE(1471), + [sym_preproc_line] = STATE(1471), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + }, + [1472] = { + [sym_xml_doc] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_line_comment] = STATE(1472), [sym_compiler_directive_decl] = STATE(1472), [sym_fsi_directive_decl] = STATE(1472), [sym_preproc_line] = STATE(1472), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_DASH_GT] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3922), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_DOT_DOT] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4236), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1473] = { [sym_xml_doc] = STATE(1473), @@ -216454,96 +221560,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1473), [sym_fsi_directive_decl] = STATE(1473), [sym_preproc_line] = STATE(1473), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [anon_sym_POUNDendif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1474] = { [sym_xml_doc] = STATE(1474), @@ -216552,96 +221656,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1474), [sym_fsi_directive_decl] = STATE(1474), [sym_preproc_line] = STATE(1474), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [anon_sym_POUNDendif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), }, [1475] = { [sym_xml_doc] = STATE(1475), @@ -216650,96 +221752,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1475), [sym_fsi_directive_decl] = STATE(1475), [sym_preproc_line] = STATE(1475), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_AT_GT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1476] = { [sym_xml_doc] = STATE(1476), @@ -216748,96 +221848,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1476), [sym_fsi_directive_decl] = STATE(1476), [sym_preproc_line] = STATE(1476), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3926), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [anon_sym_POUNDendif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1477] = { [sym_xml_doc] = STATE(1477), @@ -216846,96 +221944,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1477), [sym_fsi_directive_decl] = STATE(1477), [sym_preproc_line] = STATE(1477), - [sym_identifier] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_open] = ACTIONS(3346), - [anon_sym_LBRACK_LT] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3348), - [anon_sym_POUNDload] = ACTIONS(3348), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), - [sym__dedent] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3585), + [anon_sym_module] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_open] = ACTIONS(3585), + [anon_sym_LBRACK_LT] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_type] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3587), + [anon_sym_POUNDload] = ACTIONS(3587), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), + [sym__dedent] = ACTIONS(3587), }, [1478] = { [sym_xml_doc] = STATE(1478), @@ -216944,96 +222040,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1478), [sym_fsi_directive_decl] = STATE(1478), [sym_preproc_line] = STATE(1478), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [anon_sym_POUNDendif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [anon_sym_POUNDendif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1479] = { [sym_xml_doc] = STATE(1479), @@ -217042,96 +222136,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1479), [sym_fsi_directive_decl] = STATE(1479), [sym_preproc_line] = STATE(1479), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [anon_sym_POUNDendif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1480] = { [sym_xml_doc] = STATE(1480), @@ -217140,96 +222232,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1480), [sym_fsi_directive_decl] = STATE(1480), [sym_preproc_line] = STATE(1480), - [sym_identifier] = ACTIONS(3631), - [anon_sym_module] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_open] = ACTIONS(3631), - [anon_sym_LBRACK_LT] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_type] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3633), - [anon_sym_POUNDload] = ACTIONS(3633), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), - [sym__dedent] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1481] = { [sym_xml_doc] = STATE(1481), @@ -217238,96 +222328,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1481), [sym_fsi_directive_decl] = STATE(1481), [sym_preproc_line] = STATE(1481), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [anon_sym_POUNDendif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1482] = { [sym_xml_doc] = STATE(1482), @@ -217336,96 +222424,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1482), [sym_fsi_directive_decl] = STATE(1482), [sym_preproc_line] = STATE(1482), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [anon_sym_POUNDendif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1483] = { [sym_xml_doc] = STATE(1483), @@ -217434,96 +222520,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1483), [sym_fsi_directive_decl] = STATE(1483), [sym_preproc_line] = STATE(1483), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_DOT_DOT2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), - [sym__dedent] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1484] = { [sym_xml_doc] = STATE(1484), @@ -217532,96 +222616,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1484), [sym_fsi_directive_decl] = STATE(1484), [sym_preproc_line] = STATE(1484), - [sym_identifier] = ACTIONS(3635), - [anon_sym_module] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_open] = ACTIONS(3635), - [anon_sym_LBRACK_LT] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_type] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3637), - [anon_sym_POUNDload] = ACTIONS(3637), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), - [sym__dedent] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1485] = { [sym_xml_doc] = STATE(1485), @@ -217630,96 +222712,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1485), [sym_fsi_directive_decl] = STATE(1485), [sym_preproc_line] = STATE(1485), - [sym_identifier] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_LBRACK_LT] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3479), - [anon_sym_POUNDload] = ACTIONS(3479), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), - [sym__dedent] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_AT_GT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1486] = { [sym_xml_doc] = STATE(1486), @@ -217728,99 +222808,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1486), [sym_fsi_directive_decl] = STATE(1486), [sym_preproc_line] = STATE(1486), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3581), + [anon_sym_module] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_open] = ACTIONS(3581), + [anon_sym_LBRACK_LT] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_type] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3583), + [anon_sym_POUNDload] = ACTIONS(3583), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), + [sym__dedent] = ACTIONS(3583), }, [1487] = { - [sym_elif_expression] = STATE(1691), + [sym_elif_expression] = STATE(1942), [sym_xml_doc] = STATE(1487), [sym_block_comment] = STATE(1487), [sym_line_comment] = STATE(1487), @@ -217828,94 +222906,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fsi_directive_decl] = STATE(1487), [sym_preproc_line] = STATE(1487), [aux_sym_if_expression_repeat1] = STATE(1487), - [sym_identifier] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_let_BANG] = ACTIONS(2998), - [anon_sym_LPAREN] = ACTIONS(2996), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_null] = ACTIONS(2996), - [anon_sym_QMARK] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_LBRACK_PIPE] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(2996), - [anon_sym_LBRACE_PIPE] = ACTIONS(2998), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_return_BANG] = ACTIONS(2998), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_yield_BANG] = ACTIONS(2998), - [anon_sym_lazy] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_upcast] = ACTIONS(2996), - [anon_sym_downcast] = ACTIONS(2996), - [anon_sym_LT_AT] = ACTIONS(2996), - [anon_sym_AT_GT] = ACTIONS(2996), - [anon_sym_LT_AT_AT] = ACTIONS(2996), - [anon_sym_AT_AT_GT] = ACTIONS(2996), - [anon_sym_COLON_GT] = ACTIONS(2998), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2998), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_elif] = ACTIONS(3928), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_fun] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_match_BANG] = ACTIONS(2998), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_LT_DASH] = ACTIONS(2996), - [anon_sym_DOT_LBRACK] = ACTIONS(2998), - [anon_sym_DOT] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2998), - [anon_sym_use] = ACTIONS(2996), - [anon_sym_use_BANG] = ACTIONS(2998), - [anon_sym_do_BANG] = ACTIONS(2998), - [anon_sym_begin] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_or] = ACTIONS(2996), - [aux_sym_char_token1] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2996), - [anon_sym_DQUOTE] = ACTIONS(2996), - [anon_sym_AT_DQUOTE] = ACTIONS(2998), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2998), - [sym_bool] = ACTIONS(2996), - [sym_unit] = ACTIONS(2996), - [anon_sym_LPAREN_PIPE] = ACTIONS(2996), - [sym_op_identifier] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS_DOT] = ACTIONS(2996), - [anon_sym_DASH_DOT] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_AMP_AMP] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [aux_sym_prefix_op_token1] = ACTIONS(2996), - [aux_sym_infix_op_token1] = ACTIONS(2996), - [anon_sym_PIPE_PIPE] = ACTIONS(2996), - [anon_sym_BANG_EQ] = ACTIONS(2996), - [anon_sym_COLON_EQ] = ACTIONS(2998), - [anon_sym_DOLLAR] = ACTIONS(2996), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2996), - [sym_int] = ACTIONS(2996), - [sym_xint] = ACTIONS(2998), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2998), - [anon_sym_POUNDendif] = ACTIONS(2998), - [sym__newline] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4240), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [anon_sym_POUNDendif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1488] = { [sym_xml_doc] = STATE(1488), @@ -217924,96 +223000,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1488), [sym_fsi_directive_decl] = STATE(1488), [sym_preproc_line] = STATE(1488), - [sym_identifier] = ACTIONS(3639), - [anon_sym_module] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_open] = ACTIONS(3639), - [anon_sym_LBRACK_LT] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_type] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3641), - [anon_sym_POUNDload] = ACTIONS(3641), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), - [sym__dedent] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_open] = ACTIONS(3774), + [anon_sym_LBRACK_LT] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_type] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3776), + [anon_sym_POUNDload] = ACTIONS(3776), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), + [sym__dedent] = ACTIONS(3776), }, [1489] = { [sym_xml_doc] = STATE(1489), @@ -218022,96 +223096,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1489), [sym_fsi_directive_decl] = STATE(1489), [sym_preproc_line] = STATE(1489), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [anon_sym_POUNDendif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4243), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_DASH_GT] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1490] = { [sym_xml_doc] = STATE(1490), @@ -218120,96 +223192,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1490), [sym_fsi_directive_decl] = STATE(1490), [sym_preproc_line] = STATE(1490), - [sym_identifier] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_open] = ACTIONS(3508), - [anon_sym_LBRACK_LT] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3510), - [anon_sym_POUNDload] = ACTIONS(3510), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), - [sym__dedent] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3602), + [anon_sym_module] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_open] = ACTIONS(3602), + [anon_sym_LBRACK_LT] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3604), + [anon_sym_POUNDload] = ACTIONS(3604), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), + [sym__dedent] = ACTIONS(3604), }, [1491] = { [sym_xml_doc] = STATE(1491), @@ -218218,96 +223288,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1491), [sym_fsi_directive_decl] = STATE(1491), [sym_preproc_line] = STATE(1491), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2816), - [aux_sym_decimal_token1] = ACTIONS(2636), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_DOT_DOT2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), + [sym__dedent] = ACTIONS(3457), }, [1492] = { [sym_xml_doc] = STATE(1492), @@ -218316,96 +223384,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1492), [sym_fsi_directive_decl] = STATE(1492), [sym_preproc_line] = STATE(1492), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_AT_AT_GT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1493] = { [sym_xml_doc] = STATE(1493), @@ -218414,96 +223480,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1493), [sym_fsi_directive_decl] = STATE(1493), [sym_preproc_line] = STATE(1493), - [sym_identifier] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_COLON_QMARK] = ACTIONS(3021), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_AT_GT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3021), - [anon_sym_AT_AT_GT] = ACTIONS(3021), - [anon_sym_COLON_GT] = ACTIONS(3023), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_DOT_LBRACK] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_LPAREN2] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3021), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3021), - [anon_sym_DASH_DOT] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3021), - [aux_sym_infix_op_token1] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3021), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [anon_sym_POUNDendif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_open] = ACTIONS(3616), + [anon_sym_LBRACK_LT] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3618), + [anon_sym_POUNDload] = ACTIONS(3618), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), + [sym__dedent] = ACTIONS(3618), }, [1494] = { [sym_xml_doc] = STATE(1494), @@ -218512,96 +223576,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1494), [sym_fsi_directive_decl] = STATE(1494), [sym_preproc_line] = STATE(1494), - [sym_identifier] = ACTIONS(2986), - [anon_sym_EQ] = ACTIONS(2988), - [anon_sym_COLON] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_COMMA] = ACTIONS(2988), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_COLON_QMARK] = ACTIONS(2986), - [anon_sym_COLON_COLON] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_AT_GT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2986), - [anon_sym_AT_AT_GT] = ACTIONS(2986), - [anon_sym_COLON_GT] = ACTIONS(2988), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2986), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_LT_DASH] = ACTIONS(2986), - [anon_sym_DOT_LBRACK] = ACTIONS(2988), - [anon_sym_DOT] = ACTIONS(2986), - [anon_sym_LT] = ACTIONS(2988), - [anon_sym_GT] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_LPAREN2] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(2986), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_or] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2986), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2986), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2986), - [anon_sym_DASH_DOT] = ACTIONS(2986), - [anon_sym_PERCENT] = ACTIONS(2986), - [anon_sym_AMP_AMP] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2986), - [aux_sym_infix_op_token1] = ACTIONS(2986), - [anon_sym_PIPE_PIPE] = ACTIONS(2986), - [anon_sym_BANG_EQ] = ACTIONS(2986), - [anon_sym_COLON_EQ] = ACTIONS(2988), - [anon_sym_DOLLAR] = ACTIONS(2986), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2986), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1495] = { [sym_xml_doc] = STATE(1495), @@ -218610,96 +223672,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1495), [sym_fsi_directive_decl] = STATE(1495), [sym_preproc_line] = STATE(1495), - [sym_identifier] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_COLON] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_QMARK] = ACTIONS(2990), - [anon_sym_COLON_QMARK] = ACTIONS(2990), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_AT_GT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2990), - [anon_sym_AT_AT_GT] = ACTIONS(2990), - [anon_sym_COLON_GT] = ACTIONS(2992), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2990), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_DOT_LBRACK] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_LPAREN2] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(2990), - [anon_sym_LT2] = ACTIONS(3931), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_or] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2990), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2990), - [anon_sym_DASH_DOT] = ACTIONS(2990), - [anon_sym_PERCENT] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2990), - [aux_sym_infix_op_token1] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [anon_sym_COLON_EQ] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2990), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2990), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1496] = { [sym_xml_doc] = STATE(1496), @@ -218708,96 +223768,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1496), [sym_fsi_directive_decl] = STATE(1496), [sym_preproc_line] = STATE(1496), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3933), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), - [sym__dedent] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1497] = { [sym_xml_doc] = STATE(1497), @@ -218806,96 +223864,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1497), [sym_fsi_directive_decl] = STATE(1497), [sym_preproc_line] = STATE(1497), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [anon_sym_POUNDendif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3094), + [aux_sym_decimal_token1] = ACTIONS(2974), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1498] = { [sym_xml_doc] = STATE(1498), @@ -218904,96 +223960,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1498), [sym_fsi_directive_decl] = STATE(1498), [sym_preproc_line] = STATE(1498), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3935), + [sym_identifier] = ACTIONS(3705), + [anon_sym_module] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_open] = ACTIONS(3705), + [anon_sym_LBRACK_LT] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_type] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3707), + [anon_sym_POUNDload] = ACTIONS(3707), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), + [sym__dedent] = ACTIONS(3707), }, [1499] = { [sym_xml_doc] = STATE(1499), @@ -219002,96 +224056,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1499), [sym_fsi_directive_decl] = STATE(1499), [sym_preproc_line] = STATE(1499), - [sym_identifier] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3447), - [anon_sym_LBRACK_LT] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3449), - [anon_sym_POUNDload] = ACTIONS(3449), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [sym__dedent] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1500] = { [sym_xml_doc] = STATE(1500), @@ -219100,96 +224152,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1500), [sym_fsi_directive_decl] = STATE(1500), [sym_preproc_line] = STATE(1500), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2758), - [aux_sym_decimal_token1] = ACTIONS(2668), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_as] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4249), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + [sym__dedent] = ACTIONS(3419), }, [1501] = { [sym_xml_doc] = STATE(1501), @@ -219198,96 +224248,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1501), [sym_fsi_directive_decl] = STATE(1501), [sym_preproc_line] = STATE(1501), - [sym_identifier] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_AT_GT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3017), - [anon_sym_AT_AT_GT] = ACTIONS(3017), - [anon_sym_COLON_GT] = ACTIONS(3019), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_DOT_LBRACK] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_LPAREN2] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3017), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3017), - [anon_sym_DASH_DOT] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3017), - [aux_sym_infix_op_token1] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3017), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_AT_AT_GT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1502] = { [sym_xml_doc] = STATE(1502), @@ -219296,96 +224344,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1502), [sym_fsi_directive_decl] = STATE(1502), [sym_preproc_line] = STATE(1502), - [sym_identifier] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_COLON_QMARK] = ACTIONS(3025), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_AT_GT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3025), - [anon_sym_AT_AT_GT] = ACTIONS(3025), - [anon_sym_COLON_GT] = ACTIONS(3027), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_DOT_LBRACK] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_LPAREN2] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3025), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3025), - [anon_sym_DASH_DOT] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3025), - [aux_sym_infix_op_token1] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3027), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3025), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4251), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1503] = { [sym_xml_doc] = STATE(1503), @@ -219394,96 +224440,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1503), [sym_fsi_directive_decl] = STATE(1503), [sym_preproc_line] = STATE(1503), - [sym_identifier] = ACTIONS(3606), - [anon_sym_module] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_open] = ACTIONS(3606), - [anon_sym_LBRACK_LT] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3608), - [anon_sym_POUNDload] = ACTIONS(3608), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), - [sym__dedent] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_open] = ACTIONS(3730), + [anon_sym_LBRACK_LT] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_type] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3732), + [anon_sym_POUNDload] = ACTIONS(3732), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), }, [1504] = { [sym_xml_doc] = STATE(1504), @@ -219492,96 +224536,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1504), [sym_fsi_directive_decl] = STATE(1504), [sym_preproc_line] = STATE(1504), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [anon_sym_POUNDendif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1505] = { [sym_xml_doc] = STATE(1505), @@ -219590,96 +224632,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1505), [sym_fsi_directive_decl] = STATE(1505), [sym_preproc_line] = STATE(1505), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), - [sym__dedent] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3298), }, [1506] = { [sym_xml_doc] = STATE(1506), @@ -219688,96 +224728,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1506), [sym_fsi_directive_decl] = STATE(1506), [sym_preproc_line] = STATE(1506), - [sym_identifier] = ACTIONS(3003), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_COLON_QMARK] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_AT_GT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3003), - [anon_sym_AT_AT_GT] = ACTIONS(3003), - [anon_sym_COLON_GT] = ACTIONS(3005), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3003), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_DOT_LBRACK] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3003), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3003), - [anon_sym_DASH_DOT] = ACTIONS(3003), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3003), - [aux_sym_infix_op_token1] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3003), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4253), }, [1507] = { [sym_xml_doc] = STATE(1507), @@ -219786,96 +224824,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1507), [sym_fsi_directive_decl] = STATE(1507), [sym_preproc_line] = STATE(1507), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_COLON_QMARK] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3033), - [anon_sym_COLON_GT] = ACTIONS(3039), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_DOT_LBRACK] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3039), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3033), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_as] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), + [sym__dedent] = ACTIONS(3453), }, [1508] = { [sym_xml_doc] = STATE(1508), @@ -219884,96 +224920,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1508), [sym_fsi_directive_decl] = STATE(1508), [sym_preproc_line] = STATE(1508), - [sym_identifier] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_open] = ACTIONS(3520), - [anon_sym_LBRACK_LT] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3522), - [anon_sym_POUNDload] = ACTIONS(3522), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), - [sym__dedent] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1509] = { [sym_xml_doc] = STATE(1509), @@ -219982,96 +225016,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1509), [sym_fsi_directive_decl] = STATE(1509), [sym_preproc_line] = STATE(1509), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(4175), + [anon_sym_module] = ACTIONS(4175), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_open] = ACTIONS(4175), + [anon_sym_LBRACK_LT] = ACTIONS(4173), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_do] = ACTIONS(4175), + [anon_sym_let] = ACTIONS(4175), + [anon_sym_let_BANG] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_LBRACK_PIPE] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_LT_AT] = ACTIONS(4175), + [anon_sym_LT_AT_AT] = ACTIONS(4175), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(4173), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_return_BANG] = ACTIONS(4173), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_yield_BANG] = ACTIONS(4173), + [anon_sym_lazy] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_upcast] = ACTIONS(4175), + [anon_sym_downcast] = ACTIONS(4175), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_fun] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_match_BANG] = ACTIONS(4173), + [anon_sym_function] = ACTIONS(4175), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(4175), + [anon_sym_use_BANG] = ACTIONS(4173), + [anon_sym_do_BANG] = ACTIONS(4173), + [anon_sym_begin] = ACTIONS(4175), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(4175), + [anon_sym_AT_DQUOTE] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [sym_bool] = ACTIONS(4175), + [sym_unit] = ACTIONS(4175), + [anon_sym_LPAREN_PIPE] = ACTIONS(4175), + [sym_op_identifier] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(4175), + [anon_sym_DASH] = ACTIONS(4175), + [anon_sym_PLUS_DOT] = ACTIONS(4175), + [anon_sym_DASH_DOT] = ACTIONS(4175), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_AMP_AMP] = ACTIONS(4175), + [anon_sym_TILDE] = ACTIONS(4173), + [aux_sym_prefix_op_token1] = ACTIONS(4175), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(4175), + [sym_xint] = ACTIONS(4173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4173), + [anon_sym_POUNDload] = ACTIONS(4173), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4173), + [sym__newline] = ACTIONS(3546), + [sym__dedent] = ACTIONS(4173), }, [1510] = { [sym_xml_doc] = STATE(1510), @@ -220080,96 +225112,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1510), [sym_fsi_directive_decl] = STATE(1510), [sym_preproc_line] = STATE(1510), - [sym_identifier] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_open] = ACTIONS(3524), - [anon_sym_LBRACK_LT] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3526), - [anon_sym_POUNDload] = ACTIONS(3526), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), - [sym__dedent] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1511] = { [sym_xml_doc] = STATE(1511), @@ -220178,96 +225208,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1511), [sym_fsi_directive_decl] = STATE(1511), [sym_preproc_line] = STATE(1511), - [sym_identifier] = ACTIONS(3594), - [anon_sym_module] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_open] = ACTIONS(3594), - [anon_sym_LBRACK_LT] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_type] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3596), - [anon_sym_POUNDload] = ACTIONS(3596), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), - [sym__dedent] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_GT] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1512] = { [sym_xml_doc] = STATE(1512), @@ -220276,96 +225304,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1512), [sym_fsi_directive_decl] = STATE(1512), [sym_preproc_line] = STATE(1512), - [sym_identifier] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_open] = ACTIONS(3532), - [anon_sym_LBRACK_LT] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3195), - [anon_sym_POUNDload] = ACTIONS(3195), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_open] = ACTIONS(3656), + [anon_sym_LBRACK_LT] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3658), + [anon_sym_POUNDload] = ACTIONS(3658), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), + [sym__dedent] = ACTIONS(3658), }, [1513] = { [sym_xml_doc] = STATE(1513), @@ -220374,96 +225400,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1513), [sym_fsi_directive_decl] = STATE(1513), [sym_preproc_line] = STATE(1513), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_DOT_DOT2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3937), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), - [sym__dedent] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1514] = { [sym_xml_doc] = STATE(1514), @@ -220472,96 +225496,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1514), [sym_fsi_directive_decl] = STATE(1514), [sym_preproc_line] = STATE(1514), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [anon_sym_POUNDendif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_GT] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1515] = { [sym_xml_doc] = STATE(1515), @@ -220570,96 +225592,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1515), [sym_fsi_directive_decl] = STATE(1515), [sym_preproc_line] = STATE(1515), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1516] = { [sym_xml_doc] = STATE(1516), @@ -220668,96 +225688,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1516), [sym_fsi_directive_decl] = STATE(1516), [sym_preproc_line] = STATE(1516), - [sym_identifier] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_COLON_QMARK] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_AT_GT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3007), - [anon_sym_AT_AT_GT] = ACTIONS(3007), - [anon_sym_COLON_GT] = ACTIONS(3009), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3007), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_DOT_LBRACK] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3007), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3007), - [anon_sym_DASH_DOT] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3007), - [aux_sym_infix_op_token1] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3007), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [aux_sym_rules_repeat1] = STATE(1522), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_DOT_DOT2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4257), + [sym__dedent] = ACTIONS(3406), }, [1517] = { [sym_xml_doc] = STATE(1517), @@ -220766,96 +225784,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1517), [sym_fsi_directive_decl] = STATE(1517), [sym_preproc_line] = STATE(1517), - [sym_identifier] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_COLON_QMARK] = ACTIONS(3013), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_AT_GT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3013), - [anon_sym_AT_AT_GT] = ACTIONS(3013), - [anon_sym_COLON_GT] = ACTIONS(3015), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_DOT_LBRACK] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_LPAREN2] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3013), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3013), - [anon_sym_DASH_DOT] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3013), - [aux_sym_infix_op_token1] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3013), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3026), + [aux_sym_decimal_token1] = ACTIONS(2890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1518] = { [sym_xml_doc] = STATE(1518), @@ -220864,96 +225880,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1518), [sym_fsi_directive_decl] = STATE(1518), [sym_preproc_line] = STATE(1518), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3092), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_DOT_DOT2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), - [sym__dedent] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1519] = { [sym_xml_doc] = STATE(1519), @@ -220962,96 +225976,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1519), [sym_fsi_directive_decl] = STATE(1519), [sym_preproc_line] = STATE(1519), - [sym_identifier] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3037), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3035), - [anon_sym_POUNDload] = ACTIONS(3035), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3939), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [anon_sym_POUNDendif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1520] = { [sym_xml_doc] = STATE(1520), @@ -221060,96 +226072,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1520), [sym_fsi_directive_decl] = STATE(1520), [sym_preproc_line] = STATE(1520), - [sym_identifier] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_LBRACK_LT] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3491), - [anon_sym_POUNDload] = ACTIONS(3491), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), - [sym__dedent] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_DOT_DOT] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1521] = { [sym_xml_doc] = STATE(1521), @@ -221158,96 +226168,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1521), [sym_fsi_directive_decl] = STATE(1521), [sym_preproc_line] = STATE(1521), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [anon_sym_POUNDendif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [aux_sym_rules_repeat1] = STATE(1535), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_DOT_DOT2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4260), + [sym__dedent] = ACTIONS(3444), }, [1522] = { [sym_xml_doc] = STATE(1522), @@ -221256,96 +226264,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1522), [sym_fsi_directive_decl] = STATE(1522), [sym_preproc_line] = STATE(1522), - [sym_identifier] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_COLON] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_COLON_QMARK] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_AT_GT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2917), - [anon_sym_AT_AT_GT] = ACTIONS(2917), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_DOT_LBRACK] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2917), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2917), - [anon_sym_DASH_DOT] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2917), - [aux_sym_infix_op_token1] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2917), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [anon_sym_POUNDendif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [aux_sym_rules_repeat1] = STATE(1540), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_DOT_DOT2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4260), + [sym__dedent] = ACTIONS(3444), }, [1523] = { [sym_xml_doc] = STATE(1523), @@ -221354,96 +226360,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1523), [sym_fsi_directive_decl] = STATE(1523), [sym_preproc_line] = STATE(1523), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [anon_sym_POUNDendif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [anon_sym_POUNDendif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1524] = { [sym_xml_doc] = STATE(1524), @@ -221452,194 +226456,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1524), [sym_fsi_directive_decl] = STATE(1524), [sym_preproc_line] = STATE(1524), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), - [sym__dedent] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1525] = { + [sym_elif_expression] = STATE(1764), [sym_xml_doc] = STATE(1525), [sym_block_comment] = STATE(1525), [sym_line_comment] = STATE(1525), [sym_compiler_directive_decl] = STATE(1525), [sym_fsi_directive_decl] = STATE(1525), [sym_preproc_line] = STATE(1525), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_if_expression_repeat1] = STATE(1525), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1526] = { [sym_xml_doc] = STATE(1526), @@ -221648,96 +226648,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1526), [sym_fsi_directive_decl] = STATE(1526), [sym_preproc_line] = STATE(1526), - [sym_identifier] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3033), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3033), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3033), - [anon_sym_DASH_DOT] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3033), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4266), }, [1527] = { [sym_xml_doc] = STATE(1527), @@ -221746,96 +226744,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1527), [sym_fsi_directive_decl] = STATE(1527), [sym_preproc_line] = STATE(1527), - [sym_identifier] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3043), - [anon_sym_COLON_QMARK] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_AT_GT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3043), - [anon_sym_AT_AT_GT] = ACTIONS(3043), - [anon_sym_COLON_GT] = ACTIONS(3045), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3043), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_DOT_LBRACK] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_LPAREN2] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3043), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3043), - [anon_sym_DASH_DOT] = ACTIONS(3043), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3043), - [aux_sym_infix_op_token1] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3043), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_DOT_DOT] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1528] = { [sym_xml_doc] = STATE(1528), @@ -221844,96 +226840,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1528), [sym_fsi_directive_decl] = STATE(1528), [sym_preproc_line] = STATE(1528), - [sym_identifier] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_COLON_QMARK] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_AT_GT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3047), - [anon_sym_AT_AT_GT] = ACTIONS(3047), - [anon_sym_COLON_GT] = ACTIONS(3049), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_DOT_LBRACK] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3047), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3047), - [anon_sym_DASH_DOT] = ACTIONS(3047), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3047), - [aux_sym_infix_op_token1] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3047), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1529] = { [sym_xml_doc] = STATE(1529), @@ -221942,96 +226936,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1529), [sym_fsi_directive_decl] = STATE(1529), [sym_preproc_line] = STATE(1529), - [sym_identifier] = ACTIONS(3598), - [anon_sym_module] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_open] = ACTIONS(3598), - [anon_sym_LBRACK_LT] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_type] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3600), - [anon_sym_POUNDload] = ACTIONS(3600), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), - [sym__dedent] = ACTIONS(3600), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4270), }, [1530] = { [sym_xml_doc] = STATE(1530), @@ -222040,95 +227032,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1530), [sym_fsi_directive_decl] = STATE(1530), [sym_preproc_line] = STATE(1530), - [aux_sym_rules_repeat1] = STATE(1530), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_DASH_GT] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3946), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1531] = { [sym_xml_doc] = STATE(1531), @@ -222137,95 +227128,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1531), [sym_fsi_directive_decl] = STATE(1531), [sym_preproc_line] = STATE(1531), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_DOT_DOT2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_AT_AT_GT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1532] = { [sym_xml_doc] = STATE(1532), @@ -222234,95 +227224,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1532), [sym_fsi_directive_decl] = STATE(1532), [sym_preproc_line] = STATE(1532), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_DASH_GT] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2880), - [aux_sym_decimal_token1] = ACTIONS(2752), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_open] = ACTIONS(3660), + [anon_sym_LBRACK_LT] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3662), + [anon_sym_POUNDload] = ACTIONS(3662), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), + [sym__dedent] = ACTIONS(3662), }, [1533] = { [sym_xml_doc] = STATE(1533), @@ -222331,95 +227320,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1533), [sym_fsi_directive_decl] = STATE(1533), [sym_preproc_line] = STATE(1533), - [aux_sym_rules_repeat1] = STATE(1536), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [anon_sym_POUNDendif] = ACTIONS(3081), - [anon_sym_POUNDelse] = ACTIONS(3081), - [sym__newline] = ACTIONS(3951), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_DOT_DOT] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1534] = { [sym_xml_doc] = STATE(1534), @@ -222428,95 +227416,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1534), [sym_fsi_directive_decl] = STATE(1534), [sym_preproc_line] = STATE(1534), - [aux_sym_rules_repeat1] = STATE(1536), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [anon_sym_POUNDendif] = ACTIONS(3110), - [anon_sym_POUNDelse] = ACTIONS(3110), - [sym__newline] = ACTIONS(3954), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_DASH_GT] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4272), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1535] = { [sym_xml_doc] = STATE(1535), @@ -222525,95 +227512,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1535), [sym_fsi_directive_decl] = STATE(1535), [sym_preproc_line] = STATE(1535), - [aux_sym_rules_repeat1] = STATE(1533), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [anon_sym_POUNDendif] = ACTIONS(3110), - [anon_sym_POUNDelse] = ACTIONS(3110), - [sym__newline] = ACTIONS(3954), + [aux_sym_rules_repeat1] = STATE(1540), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_DOT_DOT2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4274), + [sym__dedent] = ACTIONS(3465), }, [1536] = { [sym_xml_doc] = STATE(1536), @@ -222622,95 +227608,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1536), [sym_fsi_directive_decl] = STATE(1536), [sym_preproc_line] = STATE(1536), - [aux_sym_rules_repeat1] = STATE(1536), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [anon_sym_POUNDendif] = ACTIONS(3133), - [anon_sym_POUNDelse] = ACTIONS(3133), - [sym__newline] = ACTIONS(3960), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [anon_sym_POUNDendif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1537] = { [sym_xml_doc] = STATE(1537), @@ -222719,95 +227704,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1537), [sym_fsi_directive_decl] = STATE(1537), [sym_preproc_line] = STATE(1537), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3532), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_DOT_DOT2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4277), }, [1538] = { [sym_xml_doc] = STATE(1538), @@ -222816,95 +227800,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1538), [sym_fsi_directive_decl] = STATE(1538), [sym_preproc_line] = STATE(1538), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [anon_sym_POUNDendif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1539] = { [sym_xml_doc] = STATE(1539), @@ -222913,95 +227896,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1539), [sym_fsi_directive_decl] = STATE(1539), [sym_preproc_line] = STATE(1539), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3963), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [anon_sym_POUNDendif] = ACTIONS(3179), - [anon_sym_POUNDelse] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3693), + [anon_sym_module] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_open] = ACTIONS(3693), + [anon_sym_LBRACK_LT] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_type] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3695), + [anon_sym_POUNDload] = ACTIONS(3695), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), + [sym__dedent] = ACTIONS(3695), }, [1540] = { [sym_xml_doc] = STATE(1540), @@ -223010,95 +227992,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1540), [sym_fsi_directive_decl] = STATE(1540), [sym_preproc_line] = STATE(1540), - [aux_sym_rules_repeat1] = STATE(1534), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [anon_sym_POUNDendif] = ACTIONS(3162), - [anon_sym_POUNDelse] = ACTIONS(3162), - [sym__newline] = ACTIONS(3965), + [aux_sym_rules_repeat1] = STATE(1540), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_DOT_DOT2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4282), + [sym__dedent] = ACTIONS(3485), }, [1541] = { [sym_xml_doc] = STATE(1541), @@ -223107,95 +228088,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1541), [sym_fsi_directive_decl] = STATE(1541), [sym_preproc_line] = STATE(1541), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_open] = ACTIONS(3722), + [anon_sym_LBRACK_LT] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_type] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3724), + [anon_sym_POUNDload] = ACTIONS(3724), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), + [sym__dedent] = ACTIONS(3724), }, [1542] = { [sym_xml_doc] = STATE(1542), @@ -223204,95 +228184,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1542), [sym_fsi_directive_decl] = STATE(1542), [sym_preproc_line] = STATE(1542), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_DASH_GT] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_DOT_DOT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3970), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [anon_sym_POUNDendif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1543] = { [sym_xml_doc] = STATE(1543), @@ -223301,95 +228280,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1543), [sym_fsi_directive_decl] = STATE(1543), [sym_preproc_line] = STATE(1543), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [anon_sym_POUNDendif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1544] = { [sym_xml_doc] = STATE(1544), @@ -223398,95 +228376,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1544), [sym_fsi_directive_decl] = STATE(1544), [sym_preproc_line] = STATE(1544), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [anon_sym_POUNDendif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1545] = { [sym_xml_doc] = STATE(1545), @@ -223495,95 +228472,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1545), [sym_fsi_directive_decl] = STATE(1545), [sym_preproc_line] = STATE(1545), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_DASH_GT] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1546] = { [sym_xml_doc] = STATE(1546), @@ -223592,95 +228568,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1546), [sym_fsi_directive_decl] = STATE(1546), [sym_preproc_line] = STATE(1546), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [anon_sym_POUNDelse] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4243), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_DASH_GT] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3679), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_DOT_DOT2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1547] = { [sym_xml_doc] = STATE(1547), @@ -223689,95 +228664,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1547), [sym_fsi_directive_decl] = STATE(1547), [sym_preproc_line] = STATE(1547), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(3972), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3726), + [anon_sym_module] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_open] = ACTIONS(3726), + [anon_sym_LBRACK_LT] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_type] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3728), + [anon_sym_POUNDload] = ACTIONS(3728), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), + [sym__dedent] = ACTIONS(3728), }, [1548] = { [sym_xml_doc] = STATE(1548), @@ -223786,95 +228760,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1548), [sym_fsi_directive_decl] = STATE(1548), [sym_preproc_line] = STATE(1548), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2884), - [aux_sym_decimal_token1] = ACTIONS(2724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [anon_sym_POUNDelse] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4285), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1549] = { [sym_xml_doc] = STATE(1549), @@ -223883,95 +228856,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1549), [sym_fsi_directive_decl] = STATE(1549), [sym_preproc_line] = STATE(1549), - [aux_sym_long_identifier_repeat1] = STATE(1601), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_DOT_DOT2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4287), }, [1550] = { [sym_xml_doc] = STATE(1550), @@ -223980,95 +228952,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1550), [sym_fsi_directive_decl] = STATE(1550), [sym_preproc_line] = STATE(1550), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2888), - [aux_sym_decimal_token1] = ACTIONS(2696), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_AT_AT_GT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1551] = { [sym_xml_doc] = STATE(1551), @@ -224077,95 +229048,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1551), [sym_fsi_directive_decl] = STATE(1551), [sym_preproc_line] = STATE(1551), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_DASH_GT] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_AT_GT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4289), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1552] = { [sym_xml_doc] = STATE(1552), @@ -224174,95 +229144,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1552), [sym_fsi_directive_decl] = STATE(1552), [sym_preproc_line] = STATE(1552), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3532), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_DOT_DOT2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_open] = ACTIONS(3734), + [anon_sym_LBRACK_LT] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_type] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3736), + [anon_sym_POUNDload] = ACTIONS(3736), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), + [sym__dedent] = ACTIONS(3736), }, [1553] = { [sym_xml_doc] = STATE(1553), @@ -224271,95 +229240,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1553), [sym_fsi_directive_decl] = STATE(1553), [sym_preproc_line] = STATE(1553), - [aux_sym_long_identifier_repeat1] = STATE(1560), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [anon_sym_EQ2] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1554] = { [sym_xml_doc] = STATE(1554), @@ -224368,95 +229336,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1554), [sym_fsi_directive_decl] = STATE(1554), [sym_preproc_line] = STATE(1554), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [anon_sym_POUNDendif] = ACTIONS(3149), - [anon_sym_POUNDelse] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_open] = ACTIONS(3738), + [anon_sym_LBRACK_LT] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3740), + [anon_sym_POUNDload] = ACTIONS(3740), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), + [sym__dedent] = ACTIONS(3740), }, [1555] = { [sym_xml_doc] = STATE(1555), @@ -224465,95 +229432,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1555), [sym_fsi_directive_decl] = STATE(1555), [sym_preproc_line] = STATE(1555), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_DOT_DOT2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), - [sym__dedent] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_AT_GT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1556] = { [sym_xml_doc] = STATE(1556), @@ -224562,95 +229528,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1556), [sym_fsi_directive_decl] = STATE(1556), [sym_preproc_line] = STATE(1556), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [anon_sym_POUNDelse] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_AT_AT_GT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1557] = { [sym_xml_doc] = STATE(1557), @@ -224659,95 +229624,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1557), [sym_fsi_directive_decl] = STATE(1557), [sym_preproc_line] = STATE(1557), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(3980), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_DOT_DOT2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), - [sym__dedent] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_DASH_GT] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1558] = { [sym_xml_doc] = STATE(1558), @@ -224756,95 +229720,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1558), [sym_fsi_directive_decl] = STATE(1558), [sym_preproc_line] = STATE(1558), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3859), + [anon_sym_module] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_open] = ACTIONS(3859), + [anon_sym_LBRACK_LT] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_type] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3861), + [anon_sym_POUNDload] = ACTIONS(3861), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), + [sym__dedent] = ACTIONS(3861), }, [1559] = { [sym_xml_doc] = STATE(1559), @@ -224853,95 +229816,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1559), [sym_fsi_directive_decl] = STATE(1559), [sym_preproc_line] = STATE(1559), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_DOT_DOT2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [sym__dedent] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_AT_GT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1560] = { [sym_xml_doc] = STATE(1560), @@ -224950,95 +229912,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1560), [sym_fsi_directive_decl] = STATE(1560), [sym_preproc_line] = STATE(1560), - [aux_sym_long_identifier_repeat1] = STATE(1560), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(3984), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_EQ2] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_AT_AT_GT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1561] = { [sym_xml_doc] = STATE(1561), @@ -225047,95 +230008,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1561), [sym_fsi_directive_decl] = STATE(1561), [sym_preproc_line] = STATE(1561), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3987), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_open] = ACTIONS(3746), + [anon_sym_LBRACK_LT] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_type] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3748), + [anon_sym_POUNDload] = ACTIONS(3748), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), + [sym__dedent] = ACTIONS(3748), }, [1562] = { [sym_xml_doc] = STATE(1562), @@ -225144,95 +230104,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1562), [sym_fsi_directive_decl] = STATE(1562), [sym_preproc_line] = STATE(1562), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_DOT_DOT2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), - [sym__dedent] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_open] = ACTIONS(3718), + [anon_sym_LBRACK_LT] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_type] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3720), + [anon_sym_POUNDload] = ACTIONS(3720), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), + [sym__dedent] = ACTIONS(3720), }, [1563] = { [sym_xml_doc] = STATE(1563), @@ -225241,95 +230200,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1563), [sym_fsi_directive_decl] = STATE(1563), [sym_preproc_line] = STATE(1563), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(3989), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), - [sym__dedent] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3766), + [anon_sym_module] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_open] = ACTIONS(3766), + [anon_sym_LBRACK_LT] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3768), + [anon_sym_POUNDload] = ACTIONS(3768), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), + [sym__dedent] = ACTIONS(3768), }, [1564] = { [sym_xml_doc] = STATE(1564), @@ -225338,95 +230296,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1564), [sym_fsi_directive_decl] = STATE(1564), [sym_preproc_line] = STATE(1564), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_DOT_DOT2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), - [sym__dedent] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3770), + [anon_sym_module] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_open] = ACTIONS(3770), + [anon_sym_LBRACK_LT] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_type] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3772), + [anon_sym_POUNDload] = ACTIONS(3772), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [sym__dedent] = ACTIONS(3772), }, [1565] = { [sym_xml_doc] = STATE(1565), @@ -225435,95 +230392,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1565), [sym_fsi_directive_decl] = STATE(1565), [sym_preproc_line] = STATE(1565), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3092), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3092), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_open] = ACTIONS(3742), + [anon_sym_LBRACK_LT] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3744), + [anon_sym_POUNDload] = ACTIONS(3744), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), + [sym__dedent] = ACTIONS(3744), }, [1566] = { [sym_xml_doc] = STATE(1566), @@ -225532,95 +230488,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1566), [sym_fsi_directive_decl] = STATE(1566), [sym_preproc_line] = STATE(1566), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [anon_sym_POUNDendif] = ACTIONS(3094), - [anon_sym_POUNDelse] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3577), + [anon_sym_module] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_open] = ACTIONS(3577), + [anon_sym_LBRACK_LT] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_type] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3579), + [anon_sym_POUNDload] = ACTIONS(3579), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), + [sym__dedent] = ACTIONS(3579), }, [1567] = { [sym_xml_doc] = STATE(1567), @@ -225629,95 +230584,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1567), [sym_fsi_directive_decl] = STATE(1567), [sym_preproc_line] = STATE(1567), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(3991), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [anon_sym_POUNDendif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_AT_AT_GT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1568] = { [sym_xml_doc] = STATE(1568), @@ -225726,95 +230680,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1568), [sym_fsi_directive_decl] = STATE(1568), [sym_preproc_line] = STATE(1568), - [aux_sym_sequential_expression_repeat1] = STATE(1568), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_as] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(3993), - [sym__dedent] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3697), + [anon_sym_module] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_open] = ACTIONS(3697), + [anon_sym_LBRACK_LT] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_type] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3699), + [anon_sym_POUNDload] = ACTIONS(3699), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), + [sym__dedent] = ACTIONS(3699), }, [1569] = { [sym_xml_doc] = STATE(1569), @@ -225823,483 +230776,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1569), [sym_fsi_directive_decl] = STATE(1569), [sym_preproc_line] = STATE(1569), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - }, - [1570] = { - [sym_xml_doc] = STATE(1570), - [sym_block_comment] = STATE(1570), - [sym_line_comment] = STATE(1570), - [sym_compiler_directive_decl] = STATE(1570), - [sym_fsi_directive_decl] = STATE(1570), - [sym_preproc_line] = STATE(1570), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), - }, - [1571] = { - [sym_xml_doc] = STATE(1571), - [sym_block_comment] = STATE(1571), - [sym_line_comment] = STATE(1571), - [sym_compiler_directive_decl] = STATE(1571), - [sym_fsi_directive_decl] = STATE(1571), - [sym_preproc_line] = STATE(1571), - [aux_sym_rules_repeat1] = STATE(1573), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_as] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(3998), - }, - [1572] = { - [sym_xml_doc] = STATE(1572), - [sym_block_comment] = STATE(1572), - [sym_line_comment] = STATE(1572), - [sym_compiler_directive_decl] = STATE(1572), - [sym_fsi_directive_decl] = STATE(1572), - [sym_preproc_line] = STATE(1572), - [aux_sym_rules_repeat1] = STATE(1576), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4001), - }, - [1573] = { - [sym_xml_doc] = STATE(1573), - [sym_block_comment] = STATE(1573), - [sym_line_comment] = STATE(1573), - [sym_compiler_directive_decl] = STATE(1573), - [sym_fsi_directive_decl] = STATE(1573), - [sym_preproc_line] = STATE(1573), - [aux_sym_rules_repeat1] = STATE(1578), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4001), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_as] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + [sym__dedent] = ACTIONS(3495), + }, + [1570] = { + [sym_xml_doc] = STATE(1570), + [sym_block_comment] = STATE(1570), + [sym_line_comment] = STATE(1570), + [sym_compiler_directive_decl] = STATE(1570), + [sym_fsi_directive_decl] = STATE(1570), + [sym_preproc_line] = STATE(1570), + [sym_identifier] = ACTIONS(3778), + [anon_sym_module] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_open] = ACTIONS(3778), + [anon_sym_LBRACK_LT] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_type] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3780), + [anon_sym_POUNDload] = ACTIONS(3780), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), + [sym__dedent] = ACTIONS(3780), + }, + [1571] = { + [sym_xml_doc] = STATE(1571), + [sym_block_comment] = STATE(1571), + [sym_line_comment] = STATE(1571), + [sym_compiler_directive_decl] = STATE(1571), + [sym_fsi_directive_decl] = STATE(1571), + [sym_preproc_line] = STATE(1571), + [sym_identifier] = ACTIONS(3689), + [anon_sym_module] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_open] = ACTIONS(3689), + [anon_sym_LBRACK_LT] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_type] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3691), + [anon_sym_POUNDload] = ACTIONS(3691), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), + [sym__dedent] = ACTIONS(3691), + }, + [1572] = { + [sym_xml_doc] = STATE(1572), + [sym_block_comment] = STATE(1572), + [sym_line_comment] = STATE(1572), + [sym_compiler_directive_decl] = STATE(1572), + [sym_fsi_directive_decl] = STATE(1572), + [sym_preproc_line] = STATE(1572), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_AT_AT_GT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), + }, + [1573] = { + [sym_xml_doc] = STATE(1573), + [sym_block_comment] = STATE(1573), + [sym_line_comment] = STATE(1573), + [sym_compiler_directive_decl] = STATE(1573), + [sym_fsi_directive_decl] = STATE(1573), + [sym_preproc_line] = STATE(1573), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1574] = { [sym_xml_doc] = STATE(1574), @@ -226308,95 +231256,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1574), [sym_fsi_directive_decl] = STATE(1574), [sym_preproc_line] = STATE(1574), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_DASH_GT] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_AT_GT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1575] = { [sym_xml_doc] = STATE(1575), @@ -226405,95 +231352,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1575), [sym_fsi_directive_decl] = STATE(1575), [sym_preproc_line] = STATE(1575), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_DOT_DOT2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3679), + [anon_sym_module] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_open] = ACTIONS(3679), + [anon_sym_LBRACK_LT] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_type] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3546), + [anon_sym_POUNDload] = ACTIONS(3546), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), + [sym__dedent] = ACTIONS(3546), }, [1576] = { [sym_xml_doc] = STATE(1576), @@ -226502,95 +231448,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1576), [sym_fsi_directive_decl] = STATE(1576), [sym_preproc_line] = STATE(1576), - [aux_sym_rules_repeat1] = STATE(1578), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3079), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(4004), + [sym_identifier] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_open] = ACTIONS(3782), + [anon_sym_LBRACK_LT] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_type] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3784), + [anon_sym_POUNDload] = ACTIONS(3784), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), + [sym__dedent] = ACTIONS(3784), }, [1577] = { [sym_xml_doc] = STATE(1577), @@ -226599,95 +231544,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1577), [sym_fsi_directive_decl] = STATE(1577), [sym_preproc_line] = STATE(1577), - [aux_sym_long_identifier_repeat1] = STATE(1577), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3814), + [anon_sym_module] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_open] = ACTIONS(3814), + [anon_sym_LBRACK_LT] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_type] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3816), + [anon_sym_POUNDload] = ACTIONS(3816), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), + [sym__dedent] = ACTIONS(3816), }, [1578] = { [sym_xml_doc] = STATE(1578), @@ -226696,95 +231640,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1578), [sym_fsi_directive_decl] = STATE(1578), [sym_preproc_line] = STATE(1578), - [aux_sym_rules_repeat1] = STATE(1578), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(4013), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_AT_GT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1579] = { [sym_xml_doc] = STATE(1579), @@ -226793,95 +231736,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1579), [sym_fsi_directive_decl] = STATE(1579), [sym_preproc_line] = STATE(1579), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [anon_sym_POUNDendif] = ACTIONS(3191), - [anon_sym_POUNDelse] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1580] = { [sym_xml_doc] = STATE(1580), @@ -226890,95 +231832,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1580), [sym_fsi_directive_decl] = STATE(1580), [sym_preproc_line] = STATE(1580), - [aux_sym_long_identifier_repeat1] = STATE(1577), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1581] = { [sym_xml_doc] = STATE(1581), @@ -226987,95 +231928,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1581), [sym_fsi_directive_decl] = STATE(1581), [sym_preproc_line] = STATE(1581), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_DOT_DOT2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4291), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + [sym__dedent] = ACTIONS(3419), }, [1582] = { [sym_xml_doc] = STATE(1582), @@ -227084,95 +232024,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1582), [sym_fsi_directive_decl] = STATE(1582), [sym_preproc_line] = STATE(1582), - [aux_sym_long_identifier_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_EQ2] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_AT_AT_GT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1583] = { [sym_xml_doc] = STATE(1583), @@ -227181,95 +232120,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1583), [sym_fsi_directive_decl] = STATE(1583), [sym_preproc_line] = STATE(1583), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_DASH_GT] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_AT_AT_GT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1584] = { [sym_xml_doc] = STATE(1584), @@ -227278,95 +232216,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1584), [sym_fsi_directive_decl] = STATE(1584), [sym_preproc_line] = STATE(1584), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), - [sym__dedent] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3818), + [anon_sym_module] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_open] = ACTIONS(3818), + [anon_sym_LBRACK_LT] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_type] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3820), + [anon_sym_POUNDload] = ACTIONS(3820), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), + [sym__dedent] = ACTIONS(3820), }, [1585] = { [sym_xml_doc] = STATE(1585), @@ -227375,95 +232312,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1585), [sym_fsi_directive_decl] = STATE(1585), [sym_preproc_line] = STATE(1585), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [sym__dedent] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_as] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), + [sym__dedent] = ACTIONS(3457), }, [1586] = { [sym_xml_doc] = STATE(1586), @@ -227472,95 +232408,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1586), [sym_fsi_directive_decl] = STATE(1586), [sym_preproc_line] = STATE(1586), - [aux_sym_long_identifier_repeat1] = STATE(1580), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4024), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), - [sym__dedent] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_COLON_QMARK] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_AT_GT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3308), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_COLON_GT] = ACTIONS(3310), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_DOT_LBRACK] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3308), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3308), + [anon_sym_DASH_DOT] = ACTIONS(3308), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3308), + [aux_sym_infix_op_token1] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_DOLLAR] = ACTIONS(3308), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3308), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), }, [1587] = { [sym_xml_doc] = STATE(1587), @@ -227569,95 +232504,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1587), [sym_fsi_directive_decl] = STATE(1587), [sym_preproc_line] = STATE(1587), - [aux_sym_rules_repeat1] = STATE(1594), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_DASH_GT] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_DOT_DOT] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(4030), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_AT_GT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1588] = { [sym_xml_doc] = STATE(1588), @@ -227666,192 +232600,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1588), [sym_fsi_directive_decl] = STATE(1588), [sym_preproc_line] = STATE(1588), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3786), + [anon_sym_module] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_open] = ACTIONS(3786), + [anon_sym_LBRACK_LT] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_type] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3788), + [anon_sym_POUNDload] = ACTIONS(3788), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), + [sym__dedent] = ACTIONS(3788), }, [1589] = { + [sym_elif_expression] = STATE(1811), [sym_xml_doc] = STATE(1589), [sym_block_comment] = STATE(1589), [sym_line_comment] = STATE(1589), [sym_compiler_directive_decl] = STATE(1589), [sym_fsi_directive_decl] = STATE(1589), [sym_preproc_line] = STATE(1589), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [anon_sym_POUNDendif] = ACTIONS(3175), - [anon_sym_POUNDelse] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [aux_sym_if_expression_repeat1] = STATE(1589), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_AT_GT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1590] = { [sym_xml_doc] = STATE(1590), @@ -227860,95 +232792,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1590), [sym_fsi_directive_decl] = STATE(1590), [sym_preproc_line] = STATE(1590), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), - [sym__dedent] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3790), + [anon_sym_module] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_open] = ACTIONS(3790), + [anon_sym_LBRACK_LT] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_type] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3792), + [anon_sym_POUNDload] = ACTIONS(3792), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), + [sym__dedent] = ACTIONS(3792), }, [1591] = { [sym_xml_doc] = STATE(1591), @@ -227957,95 +232888,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1591), [sym_fsi_directive_decl] = STATE(1591), [sym_preproc_line] = STATE(1591), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3798), + [anon_sym_module] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_open] = ACTIONS(3798), + [anon_sym_LBRACK_LT] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_type] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3800), + [anon_sym_POUNDload] = ACTIONS(3800), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), + [sym__dedent] = ACTIONS(3800), }, [1592] = { [sym_xml_doc] = STATE(1592), @@ -228054,95 +232984,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1592), [sym_fsi_directive_decl] = STATE(1592), [sym_preproc_line] = STATE(1592), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), - [sym__dedent] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3802), + [anon_sym_module] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_open] = ACTIONS(3802), + [anon_sym_LBRACK_LT] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_type] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3804), + [anon_sym_POUNDload] = ACTIONS(3804), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), + [sym__dedent] = ACTIONS(3804), }, [1593] = { [sym_xml_doc] = STATE(1593), @@ -228151,95 +233080,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1593), [sym_fsi_directive_decl] = STATE(1593), [sym_preproc_line] = STATE(1593), - [aux_sym_rules_repeat1] = STATE(1595), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_DASH_GT] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4033), + [sym_identifier] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_COLON] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_COLON_QMARK] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3322), + [anon_sym_AT_AT_GT] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_COLON_GT] = ACTIONS(3324), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_DOT_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3322), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3322), + [anon_sym_DASH_DOT] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3322), + [aux_sym_infix_op_token1] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3324), + [anon_sym_DOLLAR] = ACTIONS(3322), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3322), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), }, [1594] = { [sym_xml_doc] = STATE(1594), @@ -228248,95 +233176,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1594), [sym_fsi_directive_decl] = STATE(1594), [sym_preproc_line] = STATE(1594), - [aux_sym_rules_repeat1] = STATE(1530), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_DASH_GT] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4033), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4296), }, [1595] = { [sym_xml_doc] = STATE(1595), @@ -228345,95 +233272,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1595), [sym_fsi_directive_decl] = STATE(1595), [sym_preproc_line] = STATE(1595), - [aux_sym_rules_repeat1] = STATE(1530), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_DASH_GT] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_DOT_DOT] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(4036), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_GT] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1596] = { [sym_xml_doc] = STATE(1596), @@ -228442,95 +233368,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1596), [sym_fsi_directive_decl] = STATE(1596), [sym_preproc_line] = STATE(1596), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4039), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_DOT_DOT2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), - [sym__dedent] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3598), + [anon_sym_module] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_open] = ACTIONS(3598), + [anon_sym_LBRACK_LT] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_type] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3600), + [anon_sym_POUNDload] = ACTIONS(3600), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), + [sym__dedent] = ACTIONS(3600), }, [1597] = { [sym_xml_doc] = STATE(1597), @@ -228539,95 +233464,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1597), [sym_fsi_directive_decl] = STATE(1597), [sym_preproc_line] = STATE(1597), - [aux_sym_long_identifier_repeat1] = STATE(1597), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [anon_sym_POUNDendif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [1598] = { [sym_xml_doc] = STATE(1598), @@ -228636,95 +233560,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1598), [sym_fsi_directive_decl] = STATE(1598), [sym_preproc_line] = STATE(1598), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [anon_sym_POUNDendif] = ACTIONS(3075), - [anon_sym_POUNDelse] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3296), + [anon_sym_COLON_QMARK] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3298), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_DOT_LBRACK] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(3296), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3296), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [anon_sym_POUNDendif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), }, [1599] = { [sym_xml_doc] = STATE(1599), @@ -228733,95 +233656,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1599), [sym_fsi_directive_decl] = STATE(1599), [sym_preproc_line] = STATE(1599), - [aux_sym_sequential_expression_repeat1] = STATE(1568), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), - [sym__dedent] = ACTIONS(3604), + [aux_sym_rules_repeat1] = STATE(1620), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4302), + [sym__dedent] = ACTIONS(3406), }, [1600] = { [sym_xml_doc] = STATE(1600), @@ -228830,95 +233752,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1600), [sym_fsi_directive_decl] = STATE(1600), [sym_preproc_line] = STATE(1600), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), - [sym__dedent] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_as] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1601] = { [sym_xml_doc] = STATE(1601), @@ -228927,95 +233848,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1601), [sym_fsi_directive_decl] = STATE(1601), [sym_preproc_line] = STATE(1601), - [aux_sym_long_identifier_repeat1] = STATE(1597), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_DOT_DOT2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_AT_GT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1602] = { [sym_xml_doc] = STATE(1602), @@ -229024,95 +233944,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1602), [sym_fsi_directive_decl] = STATE(1602), [sym_preproc_line] = STATE(1602), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3847), + [anon_sym_module] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_open] = ACTIONS(3847), + [anon_sym_LBRACK_LT] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_type] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3849), + [anon_sym_POUNDload] = ACTIONS(3849), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), + [sym__dedent] = ACTIONS(3849), }, [1603] = { [sym_xml_doc] = STATE(1603), @@ -229121,95 +234040,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1603), [sym_fsi_directive_decl] = STATE(1603), [sym_preproc_line] = STATE(1603), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4307), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [anon_sym_POUNDendif] = ACTIONS(3389), + [anon_sym_POUNDelse] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1604] = { [sym_xml_doc] = STATE(1604), @@ -229218,94 +234136,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1604), [sym_fsi_directive_decl] = STATE(1604), [sym_preproc_line] = STATE(1604), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3304), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3304), + [anon_sym_COLON_QMARK] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3304), + [anon_sym_DOT] = ACTIONS(3304), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_COLON_GT] = ACTIONS(3306), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_DOT_LBRACK] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_DOT_DOT] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3304), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3304), + [anon_sym_DASH_DOT] = ACTIONS(3304), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3304), + [aux_sym_infix_op_token1] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_DOLLAR] = ACTIONS(3304), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3304), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), }, [1605] = { [sym_xml_doc] = STATE(1605), @@ -229314,94 +234232,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1605), [sym_fsi_directive_decl] = STATE(1605), [sym_preproc_line] = STATE(1605), - [aux_sym_rules_repeat1] = STATE(1834), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4050), + [sym_identifier] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_open] = ACTIONS(3620), + [anon_sym_LBRACK_LT] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3622), + [anon_sym_POUNDload] = ACTIONS(3622), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), + [sym__dedent] = ACTIONS(3622), }, [1606] = { [sym_xml_doc] = STATE(1606), @@ -229410,94 +234328,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1606), [sym_fsi_directive_decl] = STATE(1606), [sym_preproc_line] = STATE(1606), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_DOT_DOT2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), - [sym__dedent] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_DOT_DOT] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1607] = { [sym_xml_doc] = STATE(1607), @@ -229506,190 +234424,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1607), [sym_fsi_directive_decl] = STATE(1607), [sym_preproc_line] = STATE(1607), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_DOT_DOT2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), - [sym__dedent] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_DOT_DOT] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1608] = { + [sym_elif_expression] = STATE(1976), [sym_xml_doc] = STATE(1608), [sym_block_comment] = STATE(1608), [sym_line_comment] = STATE(1608), [sym_compiler_directive_decl] = STATE(1608), [sym_fsi_directive_decl] = STATE(1608), [sym_preproc_line] = STATE(1608), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3631), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), - [sym__dedent] = ACTIONS(3633), + [aux_sym_if_expression_repeat1] = STATE(1608), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_AT_AT_GT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1609] = { [sym_xml_doc] = STATE(1609), @@ -229698,94 +234616,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1609), [sym_fsi_directive_decl] = STATE(1609), [sym_preproc_line] = STATE(1609), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [anon_sym_POUNDendif] = ACTIONS(3133), - [anon_sym_POUNDelse] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [anon_sym_POUNDendif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1610] = { [sym_xml_doc] = STATE(1610), @@ -229794,94 +234712,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1610), [sym_fsi_directive_decl] = STATE(1610), [sym_preproc_line] = STATE(1610), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3631), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_DOT_DOT2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), - [sym__dedent] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_COLON_QMARK] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3336), + [anon_sym_AT_AT_GT] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_COLON_GT] = ACTIONS(3338), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_DOT_LBRACK] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3336), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3336), + [anon_sym_DASH_DOT] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3336), + [aux_sym_infix_op_token1] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_DOLLAR] = ACTIONS(3336), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3336), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), }, [1611] = { [sym_xml_doc] = STATE(1611), @@ -229890,94 +234808,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1611), [sym_fsi_directive_decl] = STATE(1611), [sym_preproc_line] = STATE(1611), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_with] = ACTIONS(3635), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_DOT_DOT2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), - [sym__dedent] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3863), + [anon_sym_module] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_open] = ACTIONS(3863), + [anon_sym_LBRACK_LT] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_type] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3865), + [anon_sym_POUNDload] = ACTIONS(3865), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), + [sym__dedent] = ACTIONS(3865), }, [1612] = { [sym_xml_doc] = STATE(1612), @@ -229986,94 +234904,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1612), [sym_fsi_directive_decl] = STATE(1612), [sym_preproc_line] = STATE(1612), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_with] = ACTIONS(3639), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_DOT_DOT2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), - [sym__dedent] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_open] = ACTIONS(3624), + [anon_sym_LBRACK_LT] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3626), + [anon_sym_POUNDload] = ACTIONS(3626), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), + [sym__dedent] = ACTIONS(3626), }, [1613] = { [sym_xml_doc] = STATE(1613), @@ -230082,94 +235000,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1613), [sym_fsi_directive_decl] = STATE(1613), [sym_preproc_line] = STATE(1613), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_with] = ACTIONS(3643), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_DOT_DOT2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), - [sym__dedent] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_open] = ACTIONS(3638), + [anon_sym_LBRACK_LT] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3640), + [anon_sym_POUNDload] = ACTIONS(3640), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), + [sym__dedent] = ACTIONS(3640), }, [1614] = { [sym_xml_doc] = STATE(1614), @@ -230178,94 +235096,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1614), [sym_fsi_directive_decl] = STATE(1614), [sym_preproc_line] = STATE(1614), - [aux_sym_rules_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [anon_sym_POUNDendif] = ACTIONS(3133), - [sym__newline] = ACTIONS(4056), + [sym_identifier] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_open] = ACTIONS(3646), + [anon_sym_LBRACK_LT] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3648), + [anon_sym_POUNDload] = ACTIONS(3648), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), + [sym__dedent] = ACTIONS(3648), }, [1615] = { [sym_xml_doc] = STATE(1615), @@ -230274,94 +235192,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1615), [sym_fsi_directive_decl] = STATE(1615), [sym_preproc_line] = STATE(1615), - [aux_sym_long_identifier_repeat1] = STATE(1792), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_DOT_DOT] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4312), }, [1616] = { [sym_xml_doc] = STATE(1616), @@ -230370,94 +235288,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1616), [sym_fsi_directive_decl] = STATE(1616), [sym_preproc_line] = STATE(1616), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [anon_sym_POUNDendif] = ACTIONS(3247), - [anon_sym_POUNDelse] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_COLON_QMARK] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3340), + [anon_sym_AT_AT_GT] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_COLON_GT] = ACTIONS(3342), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_DOT_LBRACK] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3340), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3340), + [anon_sym_DASH_DOT] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3340), + [aux_sym_infix_op_token1] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(3340), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3340), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), }, [1617] = { [sym_xml_doc] = STATE(1617), @@ -230466,94 +235384,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1617), [sym_fsi_directive_decl] = STATE(1617), [sym_preproc_line] = STATE(1617), - [aux_sym_rules_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [anon_sym_POUNDendif] = ACTIONS(3081), - [sym__newline] = ACTIONS(4065), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_AT_GT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1618] = { [sym_xml_doc] = STATE(1618), @@ -230562,94 +235480,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1618), [sym_fsi_directive_decl] = STATE(1618), [sym_preproc_line] = STATE(1618), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), - [sym__dedent] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3878), + [anon_sym_module] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_open] = ACTIONS(3878), + [anon_sym_LBRACK_LT] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3880), + [anon_sym_POUNDload] = ACTIONS(3880), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), + [sym__dedent] = ACTIONS(3880), }, [1619] = { [sym_xml_doc] = STATE(1619), @@ -230658,94 +235576,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1619), [sym_fsi_directive_decl] = STATE(1619), [sym_preproc_line] = STATE(1619), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), - [sym__dedent] = ACTIONS(3612), + [aux_sym_rules_repeat1] = STATE(1627), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4314), + [sym__dedent] = ACTIONS(3444), }, [1620] = { [sym_xml_doc] = STATE(1620), @@ -230754,94 +235672,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1620), [sym_fsi_directive_decl] = STATE(1620), [sym_preproc_line] = STATE(1620), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), - [sym__dedent] = ACTIONS(3608), + [aux_sym_rules_repeat1] = STATE(1646), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4314), + [sym__dedent] = ACTIONS(3444), }, [1621] = { [sym_xml_doc] = STATE(1621), @@ -230850,94 +235768,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1621), [sym_fsi_directive_decl] = STATE(1621), [sym_preproc_line] = STATE(1621), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), - [sym__dedent] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3675), + [anon_sym_module] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_open] = ACTIONS(3675), + [anon_sym_LBRACK_LT] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_type] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3677), + [anon_sym_POUNDload] = ACTIONS(3677), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), + [sym__dedent] = ACTIONS(3677), }, [1622] = { [sym_xml_doc] = STATE(1622), @@ -230946,94 +235864,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1622), [sym_fsi_directive_decl] = STATE(1622), [sym_preproc_line] = STATE(1622), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), - [sym__dedent] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4317), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [anon_sym_POUNDendif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1623] = { [sym_xml_doc] = STATE(1623), @@ -231042,94 +235960,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1623), [sym_fsi_directive_decl] = STATE(1623), [sym_preproc_line] = STATE(1623), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_DOT_DOT2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), - [sym__dedent] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_DOT_DOT2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + [sym__dedent] = ACTIONS(3389), }, [1624] = { [sym_xml_doc] = STATE(1624), @@ -231138,94 +236056,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1624), [sym_fsi_directive_decl] = STATE(1624), [sym_preproc_line] = STATE(1624), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), - [sym__dedent] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_open] = ACTIONS(3712), + [anon_sym_LBRACK_LT] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_type] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3714), + [anon_sym_POUNDload] = ACTIONS(3714), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), + [sym__dedent] = ACTIONS(3714), }, [1625] = { [sym_xml_doc] = STATE(1625), @@ -231234,94 +236152,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1625), [sym_fsi_directive_decl] = STATE(1625), [sym_preproc_line] = STATE(1625), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), - [sym__dedent] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1626] = { [sym_xml_doc] = STATE(1626), @@ -231330,94 +236248,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1626), [sym_fsi_directive_decl] = STATE(1626), [sym_preproc_line] = STATE(1626), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_DOT_DOT2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), - [sym__dedent] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3825), + [anon_sym_module] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_open] = ACTIONS(3825), + [anon_sym_LBRACK_LT] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_type] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3827), + [anon_sym_POUNDload] = ACTIONS(3827), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), + [sym__dedent] = ACTIONS(3827), }, [1627] = { [sym_xml_doc] = STATE(1627), @@ -231426,84 +236344,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1627), [sym_fsi_directive_decl] = STATE(1627), [sym_preproc_line] = STATE(1627), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_as] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), + [aux_sym_rules_repeat1] = STATE(1646), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_as] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -231511,9 +236429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), - [sym__dedent] = ACTIONS(3495), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4319), + [sym__dedent] = ACTIONS(3465), }, [1628] = { [sym_xml_doc] = STATE(1628), @@ -231522,94 +236440,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1628), [sym_fsi_directive_decl] = STATE(1628), [sym_preproc_line] = STATE(1628), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), - [sym__dedent] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3762), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_open] = ACTIONS(3762), + [anon_sym_LBRACK_LT] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_type] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3764), + [anon_sym_POUNDload] = ACTIONS(3764), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), + [sym__dedent] = ACTIONS(3764), }, [1629] = { [sym_xml_doc] = STATE(1629), @@ -231618,94 +236536,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1629), [sym_fsi_directive_decl] = STATE(1629), [sym_preproc_line] = STATE(1629), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_as] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), - [sym__dedent] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_COMMA] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_QMARK] = ACTIONS(3355), + [anon_sym_COLON_QMARK] = ACTIONS(3355), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3355), + [anon_sym_AT_AT_GT] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3355), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_COLON_GT] = ACTIONS(3357), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_LT_DASH] = ACTIONS(3355), + [anon_sym_DOT_LBRACK] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_LPAREN2] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_LT2] = ACTIONS(4322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_or] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3355), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3355), + [anon_sym_DASH_DOT] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3355), + [aux_sym_infix_op_token1] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_COLON_EQ] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3355), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), }, [1630] = { [sym_xml_doc] = STATE(1630), @@ -231714,94 +236632,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1630), [sym_fsi_directive_decl] = STATE(1630), [sym_preproc_line] = STATE(1630), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), - [sym__dedent] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_AT_AT_GT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1631] = { [sym_xml_doc] = STATE(1631), @@ -231810,94 +236728,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1631), [sym_fsi_directive_decl] = STATE(1631), [sym_preproc_line] = STATE(1631), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_as] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), - [sym__dedent] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1632] = { [sym_xml_doc] = STATE(1632), @@ -231906,94 +236824,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1632), [sym_fsi_directive_decl] = STATE(1632), [sym_preproc_line] = STATE(1632), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), - [sym__dedent] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_AT_GT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1633] = { [sym_xml_doc] = STATE(1633), @@ -232002,94 +236920,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1633), [sym_fsi_directive_decl] = STATE(1633), [sym_preproc_line] = STATE(1633), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_DOT_DOT2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), - [sym__dedent] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_AT_AT_GT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1634] = { [sym_xml_doc] = STATE(1634), @@ -232098,94 +237016,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1634), [sym_fsi_directive_decl] = STATE(1634), [sym_preproc_line] = STATE(1634), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_DOT_DOT2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), - [sym__dedent] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_AT_GT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1635] = { [sym_xml_doc] = STATE(1635), @@ -232194,94 +237112,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1635), [sym_fsi_directive_decl] = STATE(1635), [sym_preproc_line] = STATE(1635), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), - [sym__dedent] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3910), + [anon_sym_module] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_open] = ACTIONS(3910), + [anon_sym_LBRACK_LT] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_type] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3912), + [anon_sym_POUNDload] = ACTIONS(3912), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), + [sym__dedent] = ACTIONS(3912), }, [1636] = { [sym_xml_doc] = STATE(1636), @@ -232290,94 +237208,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1636), [sym_fsi_directive_decl] = STATE(1636), [sym_preproc_line] = STATE(1636), - [aux_sym_rules_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [anon_sym_POUNDendif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4068), + [sym_identifier] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_open] = ACTIONS(3921), + [anon_sym_LBRACK_LT] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_type] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3923), + [anon_sym_POUNDload] = ACTIONS(3923), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), + [sym__dedent] = ACTIONS(3923), }, [1637] = { [sym_xml_doc] = STATE(1637), @@ -232386,94 +237304,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1637), [sym_fsi_directive_decl] = STATE(1637), [sym_preproc_line] = STATE(1637), - [aux_sym_rules_repeat1] = STATE(1617), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [anon_sym_POUNDendif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4068), + [sym_identifier] = ACTIONS(3836), + [anon_sym_module] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_open] = ACTIONS(3836), + [anon_sym_LBRACK_LT] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_type] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3838), + [anon_sym_POUNDload] = ACTIONS(3838), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), + [sym__dedent] = ACTIONS(3838), }, [1638] = { [sym_xml_doc] = STATE(1638), @@ -232482,94 +237400,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1638), [sym_fsi_directive_decl] = STATE(1638), [sym_preproc_line] = STATE(1638), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_DOT_DOT2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), - [sym__dedent] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1639] = { [sym_xml_doc] = STATE(1639), @@ -232578,94 +237496,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1639), [sym_fsi_directive_decl] = STATE(1639), [sym_preproc_line] = STATE(1639), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_DOT_DOT2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), - [sym__dedent] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_open] = ACTIONS(3884), + [anon_sym_LBRACK_LT] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_type] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3886), + [anon_sym_POUNDload] = ACTIONS(3886), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), + [sym__dedent] = ACTIONS(3886), }, [1640] = { [sym_xml_doc] = STATE(1640), @@ -232674,94 +237592,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1640), [sym_fsi_directive_decl] = STATE(1640), [sym_preproc_line] = STATE(1640), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_as] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - [sym__dedent] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3929), + [anon_sym_module] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_open] = ACTIONS(3929), + [anon_sym_LBRACK_LT] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_type] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3931), + [anon_sym_POUNDload] = ACTIONS(3931), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), + [sym__dedent] = ACTIONS(3931), }, [1641] = { [sym_xml_doc] = STATE(1641), @@ -232770,94 +237688,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1641), [sym_fsi_directive_decl] = STATE(1641), [sym_preproc_line] = STATE(1641), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), - [sym__dedent] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3888), + [anon_sym_module] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_open] = ACTIONS(3888), + [anon_sym_LBRACK_LT] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_type] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3890), + [anon_sym_POUNDload] = ACTIONS(3890), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), + [sym__dedent] = ACTIONS(3890), }, [1642] = { [sym_xml_doc] = STATE(1642), @@ -232866,94 +237784,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1642), [sym_fsi_directive_decl] = STATE(1642), [sym_preproc_line] = STATE(1642), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3895), + [anon_sym_module] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_open] = ACTIONS(3895), + [anon_sym_LBRACK_LT] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_type] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3897), + [anon_sym_POUNDload] = ACTIONS(3897), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), + [sym__dedent] = ACTIONS(3897), }, [1643] = { [sym_xml_doc] = STATE(1643), @@ -232962,94 +237880,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1643), [sym_fsi_directive_decl] = STATE(1643), [sym_preproc_line] = STATE(1643), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3899), + [anon_sym_module] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_open] = ACTIONS(3899), + [anon_sym_LBRACK_LT] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_type] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3901), + [anon_sym_POUNDload] = ACTIONS(3901), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), + [sym__dedent] = ACTIONS(3901), }, [1644] = { [sym_xml_doc] = STATE(1644), @@ -233058,94 +237976,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1644), [sym_fsi_directive_decl] = STATE(1644), [sym_preproc_line] = STATE(1644), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_DOT_DOT2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), - [sym__dedent] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_open] = ACTIONS(3314), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3550), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3312), + [anon_sym_POUNDload] = ACTIONS(3312), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(4324), }, [1645] = { [sym_xml_doc] = STATE(1645), @@ -233154,94 +238072,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1645), [sym_fsi_directive_decl] = STATE(1645), [sym_preproc_line] = STATE(1645), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [anon_sym_POUNDendif] = ACTIONS(3199), - [anon_sym_POUNDelse] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3937), + [anon_sym_module] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_open] = ACTIONS(3937), + [anon_sym_LBRACK_LT] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_type] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3939), + [anon_sym_POUNDload] = ACTIONS(3939), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), + [sym__dedent] = ACTIONS(3939), }, [1646] = { [sym_xml_doc] = STATE(1646), @@ -233250,94 +238168,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1646), [sym_fsi_directive_decl] = STATE(1646), [sym_preproc_line] = STATE(1646), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym_rules_repeat1] = STATE(1646), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_as] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4326), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4329), + [sym__dedent] = ACTIONS(3485), }, [1647] = { [sym_xml_doc] = STATE(1647), @@ -233346,94 +238264,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1647), [sym_fsi_directive_decl] = STATE(1647), [sym_preproc_line] = STATE(1647), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2974), - [aux_sym_decimal_token1] = ACTIONS(2842), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_open] = ACTIONS(3977), + [anon_sym_LBRACK_LT] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_type] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3979), + [anon_sym_POUNDload] = ACTIONS(3979), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), + [sym__dedent] = ACTIONS(3979), }, [1648] = { [sym_xml_doc] = STATE(1648), @@ -233442,94 +238360,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1648), [sym_fsi_directive_decl] = STATE(1648), [sym_preproc_line] = STATE(1648), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_as] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3545), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), - [sym__dedent] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_AT_AT_GT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1649] = { [sym_xml_doc] = STATE(1649), @@ -233538,94 +238456,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1649), [sym_fsi_directive_decl] = STATE(1649), [sym_preproc_line] = STATE(1649), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), - [sym__dedent] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3973), + [anon_sym_module] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_LBRACK_LT] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_type] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3975), + [anon_sym_POUNDload] = ACTIONS(3975), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), + [sym__dedent] = ACTIONS(3975), }, [1650] = { [sym_xml_doc] = STATE(1650), @@ -233634,94 +238552,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1650), [sym_fsi_directive_decl] = STATE(1650), [sym_preproc_line] = STATE(1650), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), - [sym__dedent] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3969), + [anon_sym_module] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_open] = ACTIONS(3969), + [anon_sym_LBRACK_LT] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_type] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3971), + [anon_sym_POUNDload] = ACTIONS(3971), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), + [sym__dedent] = ACTIONS(3971), }, [1651] = { [sym_xml_doc] = STATE(1651), @@ -233730,94 +238648,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1651), [sym_fsi_directive_decl] = STATE(1651), [sym_preproc_line] = STATE(1651), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_DOT_DOT2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), - [sym__dedent] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_COLON_QMARK] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_AT_GT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_COLON_GT] = ACTIONS(3320), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_DOT_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3318), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3318), + [anon_sym_DASH_DOT] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3318), + [aux_sym_infix_op_token1] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(3318), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3318), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), }, [1652] = { [sym_xml_doc] = STATE(1652), @@ -233826,94 +238744,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1652), [sym_fsi_directive_decl] = STATE(1652), [sym_preproc_line] = STATE(1652), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3566), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_DOT_DOT2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), - [sym__dedent] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3244), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_COLON_QMARK] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_DOT_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_DOT_DOT] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3242), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3242), + [anon_sym_DASH_DOT] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3242), + [aux_sym_infix_op_token1] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3244), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3242), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), }, [1653] = { [sym_xml_doc] = STATE(1653), @@ -233922,94 +238840,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1653), [sym_fsi_directive_decl] = STATE(1653), [sym_preproc_line] = STATE(1653), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_as] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), - [sym__dedent] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3965), + [anon_sym_module] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_open] = ACTIONS(3965), + [anon_sym_LBRACK_LT] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_type] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3967), + [anon_sym_POUNDload] = ACTIONS(3967), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), + [sym__dedent] = ACTIONS(3967), }, [1654] = { [sym_xml_doc] = STATE(1654), @@ -234018,94 +238936,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1654), [sym_fsi_directive_decl] = STATE(1654), [sym_preproc_line] = STATE(1654), - [aux_sym_rules_repeat1] = STATE(1636), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [anon_sym_POUNDendif] = ACTIONS(3162), - [sym__newline] = ACTIONS(4071), + [sym_identifier] = ACTIONS(3961), + [anon_sym_module] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_open] = ACTIONS(3961), + [anon_sym_LBRACK_LT] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_type] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3963), + [anon_sym_POUNDload] = ACTIONS(3963), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), + [sym__dedent] = ACTIONS(3963), }, [1655] = { [sym_xml_doc] = STATE(1655), @@ -234114,94 +239032,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1655), [sym_fsi_directive_decl] = STATE(1655), [sym_preproc_line] = STATE(1655), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), - [sym__dedent] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3292), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3292), + [anon_sym_COLON_QMARK] = ACTIONS(3292), + [anon_sym_COLON_COLON] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_AT_GT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3292), + [anon_sym_DOT] = ACTIONS(3292), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_COLON_GT] = ACTIONS(3294), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_DOT_LBRACK] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3292), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3292), + [anon_sym_DASH_DOT] = ACTIONS(3292), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3292), + [aux_sym_infix_op_token1] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_DOLLAR] = ACTIONS(3292), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3292), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), }, [1656] = { [sym_xml_doc] = STATE(1656), @@ -234210,94 +239128,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1656), [sym_fsi_directive_decl] = STATE(1656), [sym_preproc_line] = STATE(1656), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), - [sym__dedent] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_DASH_GT] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1657] = { [sym_xml_doc] = STATE(1657), @@ -234306,94 +239224,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1657), [sym_fsi_directive_decl] = STATE(1657), [sym_preproc_line] = STATE(1657), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), - [sym__dedent] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3957), + [anon_sym_module] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_open] = ACTIONS(3957), + [anon_sym_LBRACK_LT] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_type] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3959), + [anon_sym_POUNDload] = ACTIONS(3959), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), + [sym__dedent] = ACTIONS(3959), }, [1658] = { [sym_xml_doc] = STATE(1658), @@ -234402,94 +239320,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1658), [sym_fsi_directive_decl] = STATE(1658), [sym_preproc_line] = STATE(1658), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), - [sym__dedent] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3953), + [anon_sym_module] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_open] = ACTIONS(3953), + [anon_sym_LBRACK_LT] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_type] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3955), + [anon_sym_POUNDload] = ACTIONS(3955), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), + [sym__dedent] = ACTIONS(3955), }, [1659] = { [sym_xml_doc] = STATE(1659), @@ -234498,94 +239416,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1659), [sym_fsi_directive_decl] = STATE(1659), [sym_preproc_line] = STATE(1659), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_DOT_DOT2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), - [sym__dedent] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3949), + [anon_sym_module] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_open] = ACTIONS(3949), + [anon_sym_LBRACK_LT] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_type] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3951), + [anon_sym_POUNDload] = ACTIONS(3951), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), + [sym__dedent] = ACTIONS(3951), }, [1660] = { [sym_xml_doc] = STATE(1660), @@ -234594,94 +239512,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1660), [sym_fsi_directive_decl] = STATE(1660), [sym_preproc_line] = STATE(1660), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [anon_sym_POUNDendif] = ACTIONS(3187), - [anon_sym_POUNDelse] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3945), + [anon_sym_module] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_LBRACK_LT] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_type] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3947), + [anon_sym_POUNDload] = ACTIONS(3947), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), + [sym__dedent] = ACTIONS(3947), }, [1661] = { [sym_xml_doc] = STATE(1661), @@ -234690,94 +239608,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1661), [sym_fsi_directive_decl] = STATE(1661), [sym_preproc_line] = STATE(1661), - [aux_sym_sequential_expression_repeat1] = STATE(1810), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3604), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_DOT_DOT2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_open] = ACTIONS(2768), + [anon_sym_LBRACK_LT] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2770), + [anon_sym_POUNDload] = ACTIONS(2770), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1662] = { [sym_xml_doc] = STATE(1662), @@ -234786,94 +239704,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1662), [sym_fsi_directive_decl] = STATE(1662), [sym_preproc_line] = STATE(1662), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_DOT_DOT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(4074), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3941), + [anon_sym_module] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_open] = ACTIONS(3941), + [anon_sym_LBRACK_LT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_type] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3943), + [anon_sym_POUNDload] = ACTIONS(3943), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), + [sym__dedent] = ACTIONS(3943), }, [1663] = { [sym_xml_doc] = STATE(1663), @@ -234882,94 +239800,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1663), [sym_fsi_directive_decl] = STATE(1663), [sym_preproc_line] = STATE(1663), - [aux_sym_long_identifier_repeat1] = STATE(1820), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4076), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [anon_sym_EQ2] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_open] = ACTIONS(3642), + [anon_sym_LBRACK_LT] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3644), + [anon_sym_POUNDload] = ACTIONS(3644), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), + [sym__dedent] = ACTIONS(3644), }, [1664] = { [sym_xml_doc] = STATE(1664), @@ -234978,94 +239896,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1664), [sym_fsi_directive_decl] = STATE(1664), [sym_preproc_line] = STATE(1664), - [aux_sym_long_identifier_repeat1] = STATE(1709), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [anon_sym_POUNDendif] = ACTIONS(2968), - [anon_sym_POUNDelse] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(3353), + [anon_sym_COLON] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_QMARK] = ACTIONS(3351), + [anon_sym_COLON_QMARK] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_AT_GT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3351), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(3353), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_LT_DASH] = ACTIONS(3351), + [anon_sym_DOT_LBRACK] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_or] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3351), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3351), + [anon_sym_DASH_DOT] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_AMP_AMP] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3351), + [aux_sym_infix_op_token1] = ACTIONS(3351), + [anon_sym_PIPE_PIPE] = ACTIONS(3351), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_COLON_EQ] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3351), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), }, [1665] = { [sym_xml_doc] = STATE(1665), @@ -235074,478 +239992,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1665), [sym_fsi_directive_decl] = STATE(1665), [sym_preproc_line] = STATE(1665), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_DOT_DOT2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), - [sym__dedent] = ACTIONS(3445), - }, - [1666] = { - [sym_xml_doc] = STATE(1666), - [sym_block_comment] = STATE(1666), - [sym_line_comment] = STATE(1666), - [sym_compiler_directive_decl] = STATE(1666), - [sym_fsi_directive_decl] = STATE(1666), - [sym_preproc_line] = STATE(1666), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_DOT_DOT2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), - [sym__dedent] = ACTIONS(3369), - }, - [1667] = { - [sym_xml_doc] = STATE(1667), - [sym_block_comment] = STATE(1667), - [sym_line_comment] = STATE(1667), - [sym_compiler_directive_decl] = STATE(1667), - [sym_fsi_directive_decl] = STATE(1667), - [sym_preproc_line] = STATE(1667), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_DOT_DOT2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), - }, - [1668] = { - [sym_xml_doc] = STATE(1668), - [sym_block_comment] = STATE(1668), - [sym_line_comment] = STATE(1668), - [sym_compiler_directive_decl] = STATE(1668), - [sym_fsi_directive_decl] = STATE(1668), - [sym_preproc_line] = STATE(1668), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_DOT_DOT2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), - [sym__dedent] = ACTIONS(3362), - }, - [1669] = { - [sym_xml_doc] = STATE(1669), - [sym_block_comment] = STATE(1669), - [sym_line_comment] = STATE(1669), - [sym_compiler_directive_decl] = STATE(1669), - [sym_fsi_directive_decl] = STATE(1669), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_DOT_DOT2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), + [sym__dedent] = ACTIONS(3453), + }, + [1666] = { + [sym_xml_doc] = STATE(1666), + [sym_block_comment] = STATE(1666), + [sym_line_comment] = STATE(1666), + [sym_compiler_directive_decl] = STATE(1666), + [sym_fsi_directive_decl] = STATE(1666), + [sym_preproc_line] = STATE(1666), + [sym_identifier] = ACTIONS(3933), + [anon_sym_module] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_open] = ACTIONS(3933), + [anon_sym_LBRACK_LT] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_type] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3935), + [anon_sym_POUNDload] = ACTIONS(3935), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), + [sym__dedent] = ACTIONS(3935), + }, + [1667] = { + [sym_xml_doc] = STATE(1667), + [sym_block_comment] = STATE(1667), + [sym_line_comment] = STATE(1667), + [sym_compiler_directive_decl] = STATE(1667), + [sym_fsi_directive_decl] = STATE(1667), + [sym_preproc_line] = STATE(1667), + [sym_identifier] = ACTIONS(3925), + [anon_sym_module] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_open] = ACTIONS(3925), + [anon_sym_LBRACK_LT] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_type] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3927), + [anon_sym_POUNDload] = ACTIONS(3927), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), + [sym__dedent] = ACTIONS(3927), + }, + [1668] = { + [sym_xml_doc] = STATE(1668), + [sym_block_comment] = STATE(1668), + [sym_line_comment] = STATE(1668), + [sym_compiler_directive_decl] = STATE(1668), + [sym_fsi_directive_decl] = STATE(1668), + [sym_preproc_line] = STATE(1668), + [sym_identifier] = ACTIONS(3914), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_open] = ACTIONS(3914), + [anon_sym_LBRACK_LT] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3916), + [anon_sym_POUNDload] = ACTIONS(3916), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), + [sym__dedent] = ACTIONS(3916), + }, + [1669] = { + [sym_xml_doc] = STATE(1669), + [sym_block_comment] = STATE(1669), + [sym_line_comment] = STATE(1669), + [sym_compiler_directive_decl] = STATE(1669), + [sym_fsi_directive_decl] = STATE(1669), [sym_preproc_line] = STATE(1669), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_DOT_DOT2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), - [sym__dedent] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3906), + [anon_sym_module] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_open] = ACTIONS(3906), + [anon_sym_LBRACK_LT] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_type] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3908), + [anon_sym_POUNDload] = ACTIONS(3908), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), + [sym__dedent] = ACTIONS(3908), }, [1670] = { [sym_xml_doc] = STATE(1670), @@ -235554,190 +240472,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1670), [sym_fsi_directive_decl] = STATE(1670), [sym_preproc_line] = STATE(1670), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_DOT_DOT2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), - [sym__dedent] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3363), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_COLON_QMARK] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_LT_DASH] = ACTIONS(3361), + [anon_sym_DOT_LBRACK] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_LPAREN2] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3361), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3361), + [anon_sym_DASH_DOT] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3361), + [aux_sym_infix_op_token1] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_COLON_EQ] = ACTIONS(3363), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3361), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), }, [1671] = { + [sym_elif_expression] = STATE(1754), [sym_xml_doc] = STATE(1671), [sym_block_comment] = STATE(1671), [sym_line_comment] = STATE(1671), [sym_compiler_directive_decl] = STATE(1671), [sym_fsi_directive_decl] = STATE(1671), [sym_preproc_line] = STATE(1671), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3195), + [aux_sym_if_expression_repeat1] = STATE(1671), + [sym_identifier] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_let_BANG] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_null] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_COLON_QMARK] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LBRACK_PIPE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LT_AT] = ACTIONS(3344), + [anon_sym_LT_AT_AT] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_LBRACE_PIPE] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_return_BANG] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_yield_BANG] = ACTIONS(3346), + [anon_sym_lazy] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_upcast] = ACTIONS(3344), + [anon_sym_downcast] = ACTIONS(3344), + [anon_sym_COLON_GT] = ACTIONS(3346), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_elif] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_fun] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_match_BANG] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_DOT_LBRACK] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_use] = ACTIONS(3344), + [anon_sym_use_BANG] = ACTIONS(3346), + [anon_sym_do_BANG] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_begin] = ACTIONS(3344), + [anon_sym_LPAREN2] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3344), + [aux_sym_char_token1] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_AT_DQUOTE] = ACTIONS(3346), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [sym_bool] = ACTIONS(3344), + [sym_unit] = ACTIONS(3344), + [anon_sym_LPAREN_PIPE] = ACTIONS(3344), + [sym_op_identifier] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_PLUS_DOT] = ACTIONS(3344), + [anon_sym_DASH_DOT] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3346), + [aux_sym_prefix_op_token1] = ACTIONS(3344), + [aux_sym_infix_op_token1] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_DOLLAR] = ACTIONS(3344), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3344), + [sym_int] = ACTIONS(3344), + [sym_xint] = ACTIONS(3346), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3346), + [sym__newline] = ACTIONS(3346), }, [1672] = { [sym_xml_doc] = STATE(1672), @@ -235746,94 +240664,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1672), [sym_fsi_directive_decl] = STATE(1672), [sym_preproc_line] = STATE(1672), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_as] = ACTIONS(3635), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_with] = ACTIONS(3635), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), - [sym__dedent] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3794), + [anon_sym_module] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_open] = ACTIONS(3794), + [anon_sym_LBRACK_LT] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_type] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3796), + [anon_sym_POUNDload] = ACTIONS(3796), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), + [sym__dedent] = ACTIONS(3796), }, [1673] = { [sym_xml_doc] = STATE(1673), @@ -235842,94 +240760,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1673), [sym_fsi_directive_decl] = STATE(1673), [sym_preproc_line] = STATE(1673), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_as] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), - [sym__dedent] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3300), + [anon_sym_COLON_QMARK] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_AT_GT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3300), + [anon_sym_DOT] = ACTIONS(3300), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_COLON_GT] = ACTIONS(3302), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_DOT_LBRACK] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3300), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3300), + [anon_sym_DASH_DOT] = ACTIONS(3300), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3300), + [aux_sym_infix_op_token1] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_DOLLAR] = ACTIONS(3300), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3300), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), }, [1674] = { [sym_xml_doc] = STATE(1674), @@ -235938,94 +240856,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1674), [sym_fsi_directive_decl] = STATE(1674), [sym_preproc_line] = STATE(1674), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_as] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), - [sym__dedent] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3840), + [anon_sym_module] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_open] = ACTIONS(3840), + [anon_sym_LBRACK_LT] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_type] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3842), + [anon_sym_POUNDload] = ACTIONS(3842), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), + [sym__dedent] = ACTIONS(3842), }, [1675] = { [sym_xml_doc] = STATE(1675), @@ -236034,84 +240952,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1675), [sym_fsi_directive_decl] = STATE(1675), [sym_preproc_line] = STATE(1675), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_DOT_DOT2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3274), + [anon_sym_EQ] = ACTIONS(3276), + [anon_sym_COLON] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_COMMA] = ACTIONS(3276), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_QMARK] = ACTIONS(3274), + [anon_sym_COLON_QMARK] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3274), + [anon_sym_DOT] = ACTIONS(3274), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_LT_DASH] = ACTIONS(3274), + [anon_sym_DOT_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3274), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3274), + [anon_sym_DASH_DOT] = ACTIONS(3274), + [anon_sym_PERCENT] = ACTIONS(3274), + [anon_sym_AMP_AMP] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3274), + [aux_sym_infix_op_token1] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(3274), + [anon_sym_BANG_EQ] = ACTIONS(3274), + [anon_sym_COLON_EQ] = ACTIONS(3276), + [anon_sym_DOLLAR] = ACTIONS(3274), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3274), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -236119,9 +241038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), - [sym__dedent] = ACTIONS(3419), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), }, [1676] = { [sym_xml_doc] = STATE(1676), @@ -236130,94 +241048,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1676), [sym_fsi_directive_decl] = STATE(1676), [sym_preproc_line] = STATE(1676), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_DOT_DOT2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), - [sym__dedent] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_as] = ACTIONS(3533), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), + [sym__dedent] = ACTIONS(3535), }, [1677] = { [sym_xml_doc] = STATE(1677), @@ -236226,94 +241143,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1677), [sym_fsi_directive_decl] = STATE(1677), [sym_preproc_line] = STATE(1677), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_as] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), + [sym__dedent] = ACTIONS(3525), }, [1678] = { [sym_xml_doc] = STATE(1678), @@ -236322,94 +241238,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1678), [sym_fsi_directive_decl] = STATE(1678), [sym_preproc_line] = STATE(1678), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [sym__dedent] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_DOT_DOT2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1679] = { [sym_xml_doc] = STATE(1679), @@ -236418,94 +241333,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1679), [sym_fsi_directive_decl] = STATE(1679), [sym_preproc_line] = STATE(1679), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_DOT_DOT2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), - [sym__dedent] = ACTIONS(3255), + [aux_sym_rules_repeat1] = STATE(1690), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [anon_sym_POUNDendif] = ACTIONS(3465), + [anon_sym_POUNDelse] = ACTIONS(3465), + [sym__newline] = ACTIONS(4337), }, [1680] = { [sym_xml_doc] = STATE(1680), @@ -236514,94 +241428,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1680), [sym_fsi_directive_decl] = STATE(1680), [sym_preproc_line] = STATE(1680), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [anon_sym_POUNDendif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3296), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3296), + [anon_sym_DASH_DOT] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3296), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3312), }, [1681] = { [sym_xml_doc] = STATE(1681), @@ -236610,94 +241523,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1681), [sym_fsi_directive_decl] = STATE(1681), [sym_preproc_line] = STATE(1681), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_DASH_GT] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [anon_sym_POUNDendif] = ACTIONS(3453), + [anon_sym_POUNDelse] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1682] = { [sym_xml_doc] = STATE(1682), @@ -236706,94 +241618,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1682), [sym_fsi_directive_decl] = STATE(1682), [sym_preproc_line] = STATE(1682), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_DOT_DOT2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - [sym__dedent] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3679), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_DOT_DOT2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1683] = { [sym_xml_doc] = STATE(1683), @@ -236802,94 +241713,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1683), [sym_fsi_directive_decl] = STATE(1683), [sym_preproc_line] = STATE(1683), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_DOT_DOT2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), - [sym__dedent] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_as] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [sym__dedent] = ACTIONS(3485), }, [1684] = { [sym_xml_doc] = STATE(1684), @@ -236898,94 +241808,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1684), [sym_fsi_directive_decl] = STATE(1684), [sym_preproc_line] = STATE(1684), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [anon_sym_POUNDelse] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1685] = { [sym_xml_doc] = STATE(1685), @@ -236994,94 +241903,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1685), [sym_fsi_directive_decl] = STATE(1685), [sym_preproc_line] = STATE(1685), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_DOT_DOT2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), - [sym__dedent] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_as] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1686] = { [sym_xml_doc] = STATE(1686), @@ -237090,94 +241998,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1686), [sym_fsi_directive_decl] = STATE(1686), [sym_preproc_line] = STATE(1686), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), - [sym__dedent] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_DASH_GT] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1687] = { [sym_xml_doc] = STATE(1687), @@ -237186,94 +242093,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1687), [sym_fsi_directive_decl] = STATE(1687), [sym_preproc_line] = STATE(1687), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_DASH_GT] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_as] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), + [sym__dedent] = ACTIONS(3544), }, [1688] = { [sym_xml_doc] = STATE(1688), @@ -237282,94 +242188,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1688), [sym_fsi_directive_decl] = STATE(1688), [sym_preproc_line] = STATE(1688), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_DASH_GT] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [aux_sym_rules_repeat1] = STATE(1690), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [anon_sym_POUNDendif] = ACTIONS(3444), + [anon_sym_POUNDelse] = ACTIONS(3444), + [sym__newline] = ACTIONS(4340), }, [1689] = { [sym_xml_doc] = STATE(1689), @@ -237378,94 +242283,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1689), [sym_fsi_directive_decl] = STATE(1689), [sym_preproc_line] = STATE(1689), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_DOT_DOT2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), - [sym__dedent] = ACTIONS(3616), + [aux_sym_rules_repeat1] = STATE(1679), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [anon_sym_POUNDendif] = ACTIONS(3444), + [anon_sym_POUNDelse] = ACTIONS(3444), + [sym__newline] = ACTIONS(4340), }, [1690] = { [sym_xml_doc] = STATE(1690), @@ -237474,94 +242378,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1690), [sym_fsi_directive_decl] = STATE(1690), [sym_preproc_line] = STATE(1690), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [aux_sym_rules_repeat1] = STATE(1690), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4343), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [anon_sym_POUNDelse] = ACTIONS(3485), + [sym__newline] = ACTIONS(4346), }, [1691] = { [sym_xml_doc] = STATE(1691), @@ -237570,94 +242473,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1691), [sym_fsi_directive_decl] = STATE(1691), [sym_preproc_line] = STATE(1691), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [anon_sym_POUNDendif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_as] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1692] = { [sym_xml_doc] = STATE(1692), @@ -237666,94 +242568,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1692), [sym_fsi_directive_decl] = STATE(1692), [sym_preproc_line] = STATE(1692), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [aux_sym_rules_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [anon_sym_POUNDendif] = ACTIONS(3406), + [anon_sym_POUNDelse] = ACTIONS(3406), + [sym__newline] = ACTIONS(4351), }, [1693] = { [sym_xml_doc] = STATE(1693), @@ -237762,94 +242663,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1693), [sym_fsi_directive_decl] = STATE(1693), [sym_preproc_line] = STATE(1693), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_DOT_DOT2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), - [sym__dedent] = ACTIONS(3612), + [aux_sym_long_identifier_repeat1] = STATE(1697), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4354), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [anon_sym_EQ2] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [1694] = { [sym_xml_doc] = STATE(1694), @@ -237858,94 +242758,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1694), [sym_fsi_directive_decl] = STATE(1694), [sym_preproc_line] = STATE(1694), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_DOT_DOT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [aux_sym_long_identifier_repeat1] = STATE(1694), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1695] = { [sym_xml_doc] = STATE(1695), @@ -237954,94 +242853,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1695), [sym_fsi_directive_decl] = STATE(1695), [sym_preproc_line] = STATE(1695), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [anon_sym_POUNDelse] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [anon_sym_POUNDendif] = ACTIONS(3389), + [anon_sym_POUNDelse] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1696] = { [sym_xml_doc] = STATE(1696), @@ -238050,94 +242948,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1696), [sym_fsi_directive_decl] = STATE(1696), [sym_preproc_line] = STATE(1696), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_DOT_DOT2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), - [sym__dedent] = ACTIONS(3608), + [aux_sym_rules_repeat1] = STATE(1710), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3404), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4363), }, [1697] = { [sym_xml_doc] = STATE(1697), @@ -238146,94 +243043,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1697), [sym_fsi_directive_decl] = STATE(1697), [sym_preproc_line] = STATE(1697), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), - [sym__dedent] = ACTIONS(3348), + [aux_sym_long_identifier_repeat1] = STATE(1698), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_EQ2] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1698] = { [sym_xml_doc] = STATE(1698), @@ -238242,94 +243138,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1698), [sym_fsi_directive_decl] = STATE(1698), [sym_preproc_line] = STATE(1698), - [aux_sym_sequential_expression_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_DOT_DOT2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4084), - [sym__dedent] = ACTIONS(3503), + [aux_sym_long_identifier_repeat1] = STATE(1698), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4368), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [anon_sym_EQ2] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1699] = { [sym_xml_doc] = STATE(1699), @@ -238338,94 +243233,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1699), [sym_fsi_directive_decl] = STATE(1699), [sym_preproc_line] = STATE(1699), - [aux_sym_sequential_expression_repeat1] = STATE(1699), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_as] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4087), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_as] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1700] = { [sym_xml_doc] = STATE(1700), @@ -238434,84 +243328,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1700), [sym_fsi_directive_decl] = STATE(1700), [sym_preproc_line] = STATE(1700), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_DOT_DOT2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3387), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4371), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -238519,9 +243413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), - [sym__dedent] = ACTIONS(3600), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1701] = { [sym_xml_doc] = STATE(1701), @@ -238530,94 +243423,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1701), [sym_fsi_directive_decl] = STATE(1701), [sym_preproc_line] = STATE(1701), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), - [sym__dedent] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_as] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1702] = { [sym_xml_doc] = STATE(1702), @@ -238626,94 +243518,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1702), [sym_fsi_directive_decl] = STATE(1702), [sym_preproc_line] = STATE(1702), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), - [sym__dedent] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [anon_sym_POUNDelse] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1703] = { [sym_xml_doc] = STATE(1703), @@ -238722,94 +243613,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1703), [sym_fsi_directive_decl] = STATE(1703), [sym_preproc_line] = STATE(1703), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_DOT_DOT2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), - [sym__dedent] = ACTIONS(3596), + [aux_sym_long_identifier_repeat1] = STATE(1694), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_DOT_DOT2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1704] = { [sym_xml_doc] = STATE(1704), @@ -238825,7 +243715,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(3417), [anon_sym_let] = ACTIONS(3417), [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3417), [anon_sym_LPAREN] = ACTIONS(3417), [anon_sym_COMMA] = ACTIONS(3419), [anon_sym_null] = ACTIONS(3417), @@ -238836,8 +243725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3417), [anon_sym_LBRACK_PIPE] = ACTIONS(3419), [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3417), [anon_sym_new] = ACTIONS(3417), [anon_sym_return_BANG] = ACTIONS(3419), [anon_sym_yield] = ACTIONS(3417), @@ -238846,10 +243737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3417), [anon_sym_upcast] = ACTIONS(3417), [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), [anon_sym_COLON_GT] = ACTIONS(3419), [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), [anon_sym_for] = ACTIONS(3417), @@ -238862,7 +243749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3417), [anon_sym_LT_DASH] = ACTIONS(3417), [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), [anon_sym_LT] = ACTIONS(3419), [anon_sym_use] = ACTIONS(3417), [anon_sym_use_BANG] = ACTIONS(3419), @@ -238894,8 +243780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_EQ] = ACTIONS(3419), [anon_sym_DOLLAR] = ACTIONS(3417), [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), + [sym_int] = ACTIONS(4375), [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -238904,8 +243792,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3419), + [anon_sym_POUNDendif] = ACTIONS(3419), + [anon_sym_POUNDelse] = ACTIONS(3419), [sym__newline] = ACTIONS(3419), - [sym__dedent] = ACTIONS(3419), }, [1705] = { [sym_xml_doc] = STATE(1705), @@ -238914,94 +243803,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1705), [sym_fsi_directive_decl] = STATE(1705), [sym_preproc_line] = STATE(1705), - [aux_sym_long_identifier_repeat1] = STATE(1705), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3194), + [aux_sym_decimal_token1] = ACTIONS(2946), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [anon_sym_POUNDelse] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1706] = { [sym_xml_doc] = STATE(1706), @@ -239010,94 +243898,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1706), [sym_fsi_directive_decl] = STATE(1706), [sym_preproc_line] = STATE(1706), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_as] = ACTIONS(3639), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_with] = ACTIONS(3639), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), - [sym__dedent] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_as] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4377), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), + [sym__dedent] = ACTIONS(3556), }, [1707] = { [sym_xml_doc] = STATE(1707), @@ -239106,94 +243993,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1707), [sym_fsi_directive_decl] = STATE(1707), [sym_preproc_line] = STATE(1707), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_as] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1708] = { [sym_xml_doc] = STATE(1708), @@ -239202,479 +244088,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1708), [sym_fsi_directive_decl] = STATE(1708), [sym_preproc_line] = STATE(1708), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), - [sym__dedent] = ACTIONS(3411), - }, - [1709] = { - [sym_xml_doc] = STATE(1709), - [sym_block_comment] = STATE(1709), - [sym_line_comment] = STATE(1709), - [sym_compiler_directive_decl] = STATE(1709), - [sym_fsi_directive_decl] = STATE(1709), - [sym_preproc_line] = STATE(1709), - [aux_sym_long_identifier_repeat1] = STATE(1709), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4093), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [anon_sym_POUNDelse] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - }, - [1710] = { - [sym_xml_doc] = STATE(1710), - [sym_block_comment] = STATE(1710), - [sym_line_comment] = STATE(1710), - [sym_compiler_directive_decl] = STATE(1710), - [sym_fsi_directive_decl] = STATE(1710), - [sym_preproc_line] = STATE(1710), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), - [sym__dedent] = ACTIONS(3514), - }, - [1711] = { - [sym_xml_doc] = STATE(1711), - [sym_block_comment] = STATE(1711), - [sym_line_comment] = STATE(1711), - [sym_compiler_directive_decl] = STATE(1711), - [sym_fsi_directive_decl] = STATE(1711), - [sym_preproc_line] = STATE(1711), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_as] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_with] = ACTIONS(3643), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), - [sym__dedent] = ACTIONS(3645), - }, - [1712] = { - [sym_xml_doc] = STATE(1712), - [sym_block_comment] = STATE(1712), - [sym_line_comment] = STATE(1712), - [sym_compiler_directive_decl] = STATE(1712), - [sym_fsi_directive_decl] = STATE(1712), - [sym_preproc_line] = STATE(1712), - [aux_sym_long_identifier_repeat1] = STATE(1705), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), - }, + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4379), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + }, + [1709] = { + [sym_xml_doc] = STATE(1709), + [sym_block_comment] = STATE(1709), + [sym_line_comment] = STATE(1709), + [sym_compiler_directive_decl] = STATE(1709), + [sym_fsi_directive_decl] = STATE(1709), + [sym_preproc_line] = STATE(1709), + [aux_sym_rules_repeat1] = STATE(1713), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4381), + }, + [1710] = { + [sym_xml_doc] = STATE(1710), + [sym_block_comment] = STATE(1710), + [sym_line_comment] = STATE(1710), + [sym_compiler_directive_decl] = STATE(1710), + [sym_fsi_directive_decl] = STATE(1710), + [sym_preproc_line] = STATE(1710), + [aux_sym_rules_repeat1] = STATE(1715), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4381), + }, + [1711] = { + [sym_xml_doc] = STATE(1711), + [sym_block_comment] = STATE(1711), + [sym_line_comment] = STATE(1711), + [sym_compiler_directive_decl] = STATE(1711), + [sym_fsi_directive_decl] = STATE(1711), + [sym_preproc_line] = STATE(1711), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_DOT_DOT] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + }, + [1712] = { + [sym_xml_doc] = STATE(1712), + [sym_block_comment] = STATE(1712), + [sym_line_comment] = STATE(1712), + [sym_compiler_directive_decl] = STATE(1712), + [sym_fsi_directive_decl] = STATE(1712), + [sym_preproc_line] = STATE(1712), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4384), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [anon_sym_POUNDendif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), + }, [1713] = { [sym_xml_doc] = STATE(1713), [sym_block_comment] = STATE(1713), @@ -239682,94 +244563,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1713), [sym_fsi_directive_decl] = STATE(1713), [sym_preproc_line] = STATE(1713), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym_rules_repeat1] = STATE(1715), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_as] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_with] = ACTIONS(3463), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4386), }, [1714] = { [sym_xml_doc] = STATE(1714), @@ -239778,94 +244658,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1714), [sym_fsi_directive_decl] = STATE(1714), [sym_preproc_line] = STATE(1714), - [aux_sym_sequential_expression_repeat1] = STATE(1698), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_DOT_DOT2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), - [sym__dedent] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_as] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), + [sym__dedent] = ACTIONS(3529), }, [1715] = { [sym_xml_doc] = STATE(1715), @@ -239874,94 +244753,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1715), [sym_fsi_directive_decl] = STATE(1715), [sym_preproc_line] = STATE(1715), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [aux_sym_rules_repeat1] = STATE(1715), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_as] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4394), }, [1716] = { [sym_xml_doc] = STATE(1716), @@ -239970,94 +244848,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1716), [sym_fsi_directive_decl] = STATE(1716), [sym_preproc_line] = STATE(1716), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), - [sym__dedent] = ACTIONS(3255), + [aux_sym_long_identifier_repeat1] = STATE(1703), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_DOT_DOT2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [1717] = { [sym_xml_doc] = STATE(1717), @@ -240066,94 +244943,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1717), [sym_fsi_directive_decl] = STATE(1717), [sym_preproc_line] = STATE(1717), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [anon_sym_POUNDelse] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1718] = { [sym_xml_doc] = STATE(1718), @@ -240162,94 +245038,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1718), [sym_fsi_directive_decl] = STATE(1718), [sym_preproc_line] = STATE(1718), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_as] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), - [sym__dedent] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [anon_sym_POUNDendif] = ACTIONS(3457), + [anon_sym_POUNDelse] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1719] = { [sym_xml_doc] = STATE(1719), @@ -240258,94 +245133,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1719), [sym_fsi_directive_decl] = STATE(1719), [sym_preproc_line] = STATE(1719), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_as] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), - [sym__dedent] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_DASH_GT] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1720] = { [sym_xml_doc] = STATE(1720), @@ -240354,94 +245228,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1720), [sym_fsi_directive_decl] = STATE(1720), [sym_preproc_line] = STATE(1720), - [aux_sym_sequential_expression_repeat1] = STATE(1815), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_DOT_DOT] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_DOT_DOT2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), + [sym__dedent] = ACTIONS(3535), }, [1721] = { [sym_xml_doc] = STATE(1721), @@ -240450,84 +245323,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1721), [sym_fsi_directive_decl] = STATE(1721), [sym_preproc_line] = STATE(1721), - [aux_sym_sequential_expression_repeat1] = STATE(1831), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_DASH_GT] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4403), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -240535,9 +245408,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), - [sym__dedent] = ACTIONS(3604), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [1722] = { [sym_xml_doc] = STATE(1722), @@ -240546,94 +245418,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1722), [sym_fsi_directive_decl] = STATE(1722), [sym_preproc_line] = STATE(1722), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), - [sym__dedent] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1723] = { [sym_xml_doc] = STATE(1723), @@ -240642,94 +245513,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1723), [sym_fsi_directive_decl] = STATE(1723), [sym_preproc_line] = STATE(1723), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_DOT_DOT2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), - [sym__dedent] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_DOT_DOT2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), + [sym__dedent] = ACTIONS(3525), }, [1724] = { [sym_xml_doc] = STATE(1724), @@ -240738,94 +245608,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1724), [sym_fsi_directive_decl] = STATE(1724), [sym_preproc_line] = STATE(1724), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_DOT_DOT2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), - [sym__dedent] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1725] = { [sym_xml_doc] = STATE(1725), @@ -240834,94 +245703,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1725), [sym_fsi_directive_decl] = STATE(1725), [sym_preproc_line] = STATE(1725), - [sym_identifier] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_let_BANG] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_null] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_COLON_QMARK] = ACTIONS(3147), - [anon_sym_COLON_COLON] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_LBRACE_PIPE] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_return_BANG] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_yield_BANG] = ACTIONS(3149), - [anon_sym_lazy] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_upcast] = ACTIONS(3147), - [anon_sym_downcast] = ACTIONS(3147), - [anon_sym_LT_AT] = ACTIONS(3147), - [anon_sym_AT_GT] = ACTIONS(3147), - [anon_sym_LT_AT_AT] = ACTIONS(3147), - [anon_sym_AT_AT_GT] = ACTIONS(3147), - [anon_sym_COLON_GT] = ACTIONS(3149), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_elif] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_fun] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_match_BANG] = ACTIONS(3149), - [anon_sym_function] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_DOT_LBRACK] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_use] = ACTIONS(3147), - [anon_sym_use_BANG] = ACTIONS(3149), - [anon_sym_do_BANG] = ACTIONS(3149), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_begin] = ACTIONS(3147), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3147), - [aux_sym_char_token1] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [anon_sym_AT_DQUOTE] = ACTIONS(3149), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3149), - [sym_bool] = ACTIONS(3147), - [sym_unit] = ACTIONS(3147), - [anon_sym_LPAREN_PIPE] = ACTIONS(3147), - [sym_op_identifier] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3147), - [anon_sym_DASH_DOT] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3149), - [aux_sym_prefix_op_token1] = ACTIONS(3147), - [aux_sym_infix_op_token1] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_DOLLAR] = ACTIONS(3147), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3147), - [sym_int] = ACTIONS(3147), - [sym_xint] = ACTIONS(3149), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3149), - [sym__newline] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_DOT_DOT2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [sym__dedent] = ACTIONS(3485), }, [1726] = { [sym_xml_doc] = STATE(1726), @@ -240930,94 +245798,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1726), [sym_fsi_directive_decl] = STATE(1726), [sym_preproc_line] = STATE(1726), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_DASH_GT] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3190), + [aux_sym_decimal_token1] = ACTIONS(3002), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1727] = { [sym_xml_doc] = STATE(1727), @@ -241026,84 +245893,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1727), [sym_fsi_directive_decl] = STATE(1727), [sym_preproc_line] = STATE(1727), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_DOT_DOT2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_AT_AT_GT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4405), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -241111,9 +245978,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), - [sym__dedent] = ACTIONS(3264), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1728] = { [sym_xml_doc] = STATE(1728), @@ -241122,94 +245988,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1728), [sym_fsi_directive_decl] = STATE(1728), [sym_preproc_line] = STATE(1728), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_DOT_DOT2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), - [sym__dedent] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_DOT_DOT2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), + [sym__dedent] = ACTIONS(3544), }, [1729] = { [sym_xml_doc] = STATE(1729), @@ -241218,94 +246083,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1729), [sym_fsi_directive_decl] = STATE(1729), [sym_preproc_line] = STATE(1729), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_DOT_DOT2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), - [sym__dedent] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_DASH_GT] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1730] = { [sym_xml_doc] = STATE(1730), @@ -241314,94 +246178,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1730), [sym_fsi_directive_decl] = STATE(1730), [sym_preproc_line] = STATE(1730), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_DOT_DOT2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), - [sym__dedent] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), }, [1731] = { [sym_xml_doc] = STATE(1731), @@ -241410,94 +246273,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1731), [sym_fsi_directive_decl] = STATE(1731), [sym_preproc_line] = STATE(1731), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_DOT_DOT2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), - [sym__dedent] = ACTIONS(3487), + [aux_sym_long_identifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [1732] = { [sym_xml_doc] = STATE(1732), @@ -241506,94 +246368,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1732), [sym_fsi_directive_decl] = STATE(1732), [sym_preproc_line] = STATE(1732), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_DOT_DOT2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), - [sym__dedent] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_DASH_GT] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1733] = { [sym_xml_doc] = STATE(1733), @@ -241602,94 +246463,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1733), [sym_fsi_directive_decl] = STATE(1733), [sym_preproc_line] = STATE(1733), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [aux_sym_long_identifier_repeat1] = STATE(1733), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1734] = { [sym_xml_doc] = STATE(1734), @@ -241698,660 +246558,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1734), [sym_fsi_directive_decl] = STATE(1734), [sym_preproc_line] = STATE(1734), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_DOT_DOT2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), - [sym__dedent] = ACTIONS(3286), - }, - [1735] = { - [sym_xml_doc] = STATE(1735), - [sym_block_comment] = STATE(1735), - [sym_line_comment] = STATE(1735), - [sym_compiler_directive_decl] = STATE(1735), - [sym_fsi_directive_decl] = STATE(1735), - [sym_preproc_line] = STATE(1735), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_DOT_DOT2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), - [sym__dedent] = ACTIONS(3290), - }, - [1736] = { - [sym_xml_doc] = STATE(1736), - [sym_block_comment] = STATE(1736), - [sym_line_comment] = STATE(1736), - [sym_compiler_directive_decl] = STATE(1736), - [sym_fsi_directive_decl] = STATE(1736), - [sym_preproc_line] = STATE(1736), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), - [sym__dedent] = ACTIONS(3584), - }, - [1737] = { - [sym_xml_doc] = STATE(1737), - [sym_block_comment] = STATE(1737), - [sym_line_comment] = STATE(1737), - [sym_compiler_directive_decl] = STATE(1737), - [sym_fsi_directive_decl] = STATE(1737), - [sym_preproc_line] = STATE(1737), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_DOT_DOT2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3195), - }, - [1738] = { - [sym_xml_doc] = STATE(1738), - [sym_block_comment] = STATE(1738), - [sym_line_comment] = STATE(1738), - [sym_compiler_directive_decl] = STATE(1738), - [sym_fsi_directive_decl] = STATE(1738), - [sym_preproc_line] = STATE(1738), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_DOT_DOT2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), - [sym__dedent] = ACTIONS(3526), - }, - [1739] = { - [sym_xml_doc] = STATE(1739), - [sym_block_comment] = STATE(1739), - [sym_line_comment] = STATE(1739), - [sym_compiler_directive_decl] = STATE(1739), - [sym_fsi_directive_decl] = STATE(1739), - [sym_preproc_line] = STATE(1739), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_DOT_DOT2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), - [sym__dedent] = ACTIONS(3522), - }, - [1740] = { - [sym_xml_doc] = STATE(1740), - [sym_block_comment] = STATE(1740), - [sym_line_comment] = STATE(1740), - [sym_compiler_directive_decl] = STATE(1740), - [sym_fsi_directive_decl] = STATE(1740), - [sym_preproc_line] = STATE(1740), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_as] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4412), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -242359,9 +246643,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), - [sym__dedent] = ACTIONS(3264), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + }, + [1735] = { + [sym_xml_doc] = STATE(1735), + [sym_block_comment] = STATE(1735), + [sym_line_comment] = STATE(1735), + [sym_compiler_directive_decl] = STATE(1735), + [sym_fsi_directive_decl] = STATE(1735), + [sym_preproc_line] = STATE(1735), + [aux_sym_rules_repeat1] = STATE(1741), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_DASH_GT] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4416), + }, + [1736] = { + [sym_xml_doc] = STATE(1736), + [sym_block_comment] = STATE(1736), + [sym_line_comment] = STATE(1736), + [sym_compiler_directive_decl] = STATE(1736), + [sym_fsi_directive_decl] = STATE(1736), + [sym_preproc_line] = STATE(1736), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [anon_sym_POUNDendif] = ACTIONS(3495), + [anon_sym_POUNDelse] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), + }, + [1737] = { + [sym_xml_doc] = STATE(1737), + [sym_block_comment] = STATE(1737), + [sym_line_comment] = STATE(1737), + [sym_compiler_directive_decl] = STATE(1737), + [sym_fsi_directive_decl] = STATE(1737), + [sym_preproc_line] = STATE(1737), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), + }, + [1738] = { + [sym_xml_doc] = STATE(1738), + [sym_block_comment] = STATE(1738), + [sym_line_comment] = STATE(1738), + [sym_compiler_directive_decl] = STATE(1738), + [sym_fsi_directive_decl] = STATE(1738), + [sym_preproc_line] = STATE(1738), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4243), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3679), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_DOT_DOT2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), + }, + [1739] = { + [sym_xml_doc] = STATE(1739), + [sym_block_comment] = STATE(1739), + [sym_line_comment] = STATE(1739), + [sym_compiler_directive_decl] = STATE(1739), + [sym_fsi_directive_decl] = STATE(1739), + [sym_preproc_line] = STATE(1739), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3186), + [aux_sym_decimal_token1] = ACTIONS(2918), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + }, + [1740] = { + [sym_xml_doc] = STATE(1740), + [sym_block_comment] = STATE(1740), + [sym_line_comment] = STATE(1740), + [sym_compiler_directive_decl] = STATE(1740), + [sym_fsi_directive_decl] = STATE(1740), + [sym_preproc_line] = STATE(1740), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_AT_GT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(4419), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1741] = { [sym_xml_doc] = STATE(1741), @@ -242370,94 +247223,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1741), [sym_fsi_directive_decl] = STATE(1741), [sym_preproc_line] = STATE(1741), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), - [sym__dedent] = ACTIONS(3270), + [aux_sym_rules_repeat1] = STATE(1747), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_DASH_GT] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4421), }, [1742] = { [sym_xml_doc] = STATE(1742), @@ -242466,94 +247318,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1742), [sym_fsi_directive_decl] = STATE(1742), [sym_preproc_line] = STATE(1742), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_DOT_DOT2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), - [sym__dedent] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4424), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_DOT_DOT2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), + [sym__dedent] = ACTIONS(3556), }, [1743] = { [sym_xml_doc] = STATE(1743), @@ -242562,94 +247413,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1743), [sym_fsi_directive_decl] = STATE(1743), [sym_preproc_line] = STATE(1743), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), - [sym__dedent] = ACTIONS(3274), + [aux_sym_rules_repeat1] = STATE(1746), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_DASH_GT] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4421), }, [1744] = { [sym_xml_doc] = STATE(1744), @@ -242658,84 +247508,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1744), [sym_fsi_directive_decl] = STATE(1744), [sym_preproc_line] = STATE(1744), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), + [aux_sym_long_identifier_repeat1] = STATE(1731), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -242743,9 +247592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), - [sym__dedent] = ACTIONS(3278), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + [sym__dedent] = ACTIONS(3264), }, [1745] = { [sym_xml_doc] = STATE(1745), @@ -242754,94 +247603,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1745), [sym_fsi_directive_decl] = STATE(1745), [sym_preproc_line] = STATE(1745), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_DOT_DOT2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), - [sym__dedent] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1746] = { [sym_xml_doc] = STATE(1746), @@ -242850,94 +247698,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1746), [sym_fsi_directive_decl] = STATE(1746), [sym_preproc_line] = STATE(1746), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [aux_sym_rules_repeat1] = STATE(1747), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_DASH_GT] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_DOT_DOT] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4430), }, [1747] = { [sym_xml_doc] = STATE(1747), @@ -242946,94 +247793,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1747), [sym_fsi_directive_decl] = STATE(1747), [sym_preproc_line] = STATE(1747), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_DOT_DOT2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - [sym__dedent] = ACTIONS(3314), + [aux_sym_rules_repeat1] = STATE(1747), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4433), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_DASH_GT] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4436), }, [1748] = { [sym_xml_doc] = STATE(1748), @@ -243042,94 +247888,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1748), [sym_fsi_directive_decl] = STATE(1748), [sym_preproc_line] = STATE(1748), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_DOT_DOT2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), - [sym__dedent] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4243), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1749] = { [sym_xml_doc] = STATE(1749), @@ -243138,94 +247983,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1749), [sym_fsi_directive_decl] = STATE(1749), [sym_preproc_line] = STATE(1749), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4439), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_DOT_DOT2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), + [sym__dedent] = ACTIONS(3529), }, [1750] = { [sym_xml_doc] = STATE(1750), @@ -243234,94 +248078,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1750), [sym_fsi_directive_decl] = STATE(1750), [sym_preproc_line] = STATE(1750), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_as] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), - [sym__dedent] = ACTIONS(3282), + [aux_sym_sequential_expression_repeat1] = STATE(1750), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_as] = ACTIONS(3829), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3829), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4441), + [sym__dedent] = ACTIONS(3831), }, [1751] = { [sym_xml_doc] = STATE(1751), @@ -243330,94 +248173,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1751), [sym_fsi_directive_decl] = STATE(1751), [sym_preproc_line] = STATE(1751), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), - [sym__dedent] = ACTIONS(3286), + [aux_sym_sequential_expression_repeat1] = STATE(1750), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), + [sym__dedent] = ACTIONS(3614), }, [1752] = { [sym_xml_doc] = STATE(1752), @@ -243426,94 +248268,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1752), [sym_fsi_directive_decl] = STATE(1752), [sym_preproc_line] = STATE(1752), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), - [sym__dedent] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4243), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_DOT_DOT2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + [sym__dedent] = ACTIONS(3509), }, [1753] = { [sym_xml_doc] = STATE(1753), @@ -243522,94 +248363,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1753), [sym_fsi_directive_decl] = STATE(1753), [sym_preproc_line] = STATE(1753), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), - [sym__dedent] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_with] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_DOT_DOT2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), + [sym__dedent] = ACTIONS(3916), }, [1754] = { [sym_xml_doc] = STATE(1754), @@ -243618,94 +248457,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1754), [sym_fsi_directive_decl] = STATE(1754), [sym_preproc_line] = STATE(1754), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), - [sym__dedent] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_DOT_DOT] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1755] = { [sym_xml_doc] = STATE(1755), @@ -243714,84 +248551,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1755), [sym_fsi_directive_decl] = STATE(1755), [sym_preproc_line] = STATE(1755), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -243799,9 +248634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), - [sym__dedent] = ACTIONS(3314), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1756] = { [sym_xml_doc] = STATE(1756), @@ -243810,94 +248645,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1756), [sym_fsi_directive_decl] = STATE(1756), [sym_preproc_line] = STATE(1756), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_DOT_DOT2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), - [sym__dedent] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_as] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_with] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), }, [1757] = { [sym_xml_doc] = STATE(1757), @@ -243906,94 +248739,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1757), [sym_fsi_directive_decl] = STATE(1757), [sym_preproc_line] = STATE(1757), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), - [sym__dedent] = ACTIONS(3328), + [aux_sym_long_identifier_repeat1] = STATE(1761), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1758] = { [sym_xml_doc] = STATE(1758), @@ -244002,94 +248833,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1758), [sym_fsi_directive_decl] = STATE(1758), [sym_preproc_line] = STATE(1758), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), - [sym__dedent] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_AT_AT_GT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4446), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [1759] = { [sym_xml_doc] = STATE(1759), @@ -244098,94 +248927,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1759), [sym_fsi_directive_decl] = STATE(1759), [sym_preproc_line] = STATE(1759), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_DOT_DOT2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), - [sym__dedent] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_GT] = ACTIONS(3455), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1760] = { [sym_xml_doc] = STATE(1760), @@ -244194,94 +249021,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1760), [sym_fsi_directive_decl] = STATE(1760), [sym_preproc_line] = STATE(1760), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_DOT_DOT2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), - [sym__dedent] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1761] = { [sym_xml_doc] = STATE(1761), @@ -244290,94 +249115,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1761), [sym_fsi_directive_decl] = STATE(1761), [sym_preproc_line] = STATE(1761), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_DOT_DOT2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), - [sym__dedent] = ACTIONS(3358), + [aux_sym_long_identifier_repeat1] = STATE(1761), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4450), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1762] = { [sym_xml_doc] = STATE(1762), @@ -244386,94 +249209,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1762), [sym_fsi_directive_decl] = STATE(1762), [sym_preproc_line] = STATE(1762), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_DOT_DOT2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), - [sym__dedent] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), + [sym__dedent] = ACTIONS(3610), }, [1763] = { [sym_xml_doc] = STATE(1763), @@ -244482,94 +249303,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1763), [sym_fsi_directive_decl] = STATE(1763), [sym_preproc_line] = STATE(1763), - [aux_sym_sequential_expression_repeat1] = STATE(1772), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [anon_sym_POUNDendif] = ACTIONS(3604), - [anon_sym_POUNDelse] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4453), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_DASH_GT] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1764] = { [sym_xml_doc] = STATE(1764), @@ -244578,660 +249397,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1764), [sym_fsi_directive_decl] = STATE(1764), [sym_preproc_line] = STATE(1764), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3037), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [anon_sym_EQ2] = ACTIONS(4102), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), - }, - [1765] = { - [sym_xml_doc] = STATE(1765), - [sym_block_comment] = STATE(1765), - [sym_line_comment] = STATE(1765), - [sym_compiler_directive_decl] = STATE(1765), - [sym_fsi_directive_decl] = STATE(1765), - [sym_preproc_line] = STATE(1765), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_as] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), - [sym__dedent] = ACTIONS(3576), - }, - [1766] = { - [sym_xml_doc] = STATE(1766), - [sym_block_comment] = STATE(1766), - [sym_line_comment] = STATE(1766), - [sym_compiler_directive_decl] = STATE(1766), - [sym_fsi_directive_decl] = STATE(1766), - [sym_preproc_line] = STATE(1766), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), - }, - [1767] = { - [sym_xml_doc] = STATE(1767), - [sym_block_comment] = STATE(1767), - [sym_line_comment] = STATE(1767), - [sym_compiler_directive_decl] = STATE(1767), - [sym_fsi_directive_decl] = STATE(1767), - [sym_preproc_line] = STATE(1767), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), - }, - [1768] = { - [sym_xml_doc] = STATE(1768), - [sym_block_comment] = STATE(1768), - [sym_line_comment] = STATE(1768), - [sym_compiler_directive_decl] = STATE(1768), - [sym_fsi_directive_decl] = STATE(1768), - [sym_preproc_line] = STATE(1768), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), - [sym__dedent] = ACTIONS(3352), - }, - [1769] = { - [sym_xml_doc] = STATE(1769), - [sym_block_comment] = STATE(1769), - [sym_line_comment] = STATE(1769), - [sym_compiler_directive_decl] = STATE(1769), - [sym_fsi_directive_decl] = STATE(1769), - [sym_preproc_line] = STATE(1769), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), - }, - [1770] = { - [sym_xml_doc] = STATE(1770), - [sym_block_comment] = STATE(1770), - [sym_line_comment] = STATE(1770), - [sym_compiler_directive_decl] = STATE(1770), - [sym_fsi_directive_decl] = STATE(1770), - [sym_preproc_line] = STATE(1770), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_DOT_DOT2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -245239,17 +249481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), - [sym__dedent] = ACTIONS(3389), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, - [1771] = { - [sym_xml_doc] = STATE(1771), - [sym_block_comment] = STATE(1771), - [sym_line_comment] = STATE(1771), - [sym_compiler_directive_decl] = STATE(1771), - [sym_fsi_directive_decl] = STATE(1771), - [sym_preproc_line] = STATE(1771), + [1765] = { + [sym_xml_doc] = STATE(1765), + [sym_block_comment] = STATE(1765), + [sym_line_comment] = STATE(1765), + [sym_compiler_directive_decl] = STATE(1765), + [sym_fsi_directive_decl] = STATE(1765), + [sym_preproc_line] = STATE(1765), [sym_identifier] = ACTIONS(3451), [anon_sym_EQ] = ACTIONS(3453), [anon_sym_COLON] = ACTIONS(3451), @@ -245267,8 +249508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3451), [anon_sym_LBRACK_PIPE] = ACTIONS(3453), [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3451), [anon_sym_new] = ACTIONS(3451), [anon_sym_return_BANG] = ACTIONS(3453), [anon_sym_yield] = ACTIONS(3451), @@ -245277,10 +249520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3451), [anon_sym_upcast] = ACTIONS(3451), [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), [anon_sym_COLON_GT] = ACTIONS(3453), [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), [anon_sym_for] = ACTIONS(3451), @@ -245293,14 +249532,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3451), [anon_sym_LT_DASH] = ACTIONS(3451), [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), [anon_sym_LT] = ACTIONS(3453), + [anon_sym_GT] = ACTIONS(3451), [anon_sym_use] = ACTIONS(3451), [anon_sym_use_BANG] = ACTIONS(3453), [anon_sym_do_BANG] = ACTIONS(3453), [anon_sym_begin] = ACTIONS(3451), [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_DOT_DOT2] = ACTIONS(3453), [anon_sym_or] = ACTIONS(3451), [aux_sym_char_token1] = ACTIONS(3453), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), @@ -245328,6 +249566,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), [sym_int] = ACTIONS(3451), [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -245337,975 +249577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3453), [sym__newline] = ACTIONS(3453), - [sym__dedent] = ACTIONS(3453), - }, - [1772] = { - [sym_xml_doc] = STATE(1772), - [sym_block_comment] = STATE(1772), - [sym_line_comment] = STATE(1772), - [sym_compiler_directive_decl] = STATE(1772), - [sym_fsi_directive_decl] = STATE(1772), - [sym_preproc_line] = STATE(1772), - [aux_sym_sequential_expression_repeat1] = STATE(1772), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [anon_sym_POUNDendif] = ACTIONS(3503), - [anon_sym_POUNDelse] = ACTIONS(3503), - [sym__newline] = ACTIONS(4104), - }, - [1773] = { - [sym_xml_doc] = STATE(1773), - [sym_block_comment] = STATE(1773), - [sym_line_comment] = STATE(1773), - [sym_compiler_directive_decl] = STATE(1773), - [sym_fsi_directive_decl] = STATE(1773), - [sym_preproc_line] = STATE(1773), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_DOT_DOT2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), - }, - [1774] = { - [sym_xml_doc] = STATE(1774), - [sym_block_comment] = STATE(1774), - [sym_line_comment] = STATE(1774), - [sym_compiler_directive_decl] = STATE(1774), - [sym_fsi_directive_decl] = STATE(1774), - [sym_preproc_line] = STATE(1774), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), - [sym__dedent] = ACTIONS(3572), - }, - [1775] = { - [sym_xml_doc] = STATE(1775), - [sym_block_comment] = STATE(1775), - [sym_line_comment] = STATE(1775), - [sym_compiler_directive_decl] = STATE(1775), - [sym_fsi_directive_decl] = STATE(1775), - [sym_preproc_line] = STATE(1775), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_DOT_DOT2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), - [sym__dedent] = ACTIONS(3463), }, - [1776] = { - [sym_xml_doc] = STATE(1776), - [sym_block_comment] = STATE(1776), - [sym_line_comment] = STATE(1776), - [sym_compiler_directive_decl] = STATE(1776), - [sym_fsi_directive_decl] = STATE(1776), - [sym_preproc_line] = STATE(1776), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), - [sym__dedent] = ACTIONS(3358), - }, - [1777] = { - [sym_xml_doc] = STATE(1777), - [sym_block_comment] = STATE(1777), - [sym_line_comment] = STATE(1777), - [sym_compiler_directive_decl] = STATE(1777), - [sym_fsi_directive_decl] = STATE(1777), - [sym_preproc_line] = STATE(1777), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_DOT_DOT2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), - [sym__dedent] = ACTIONS(3467), - }, - [1778] = { - [sym_xml_doc] = STATE(1778), - [sym_block_comment] = STATE(1778), - [sym_line_comment] = STATE(1778), - [sym_compiler_directive_decl] = STATE(1778), - [sym_fsi_directive_decl] = STATE(1778), - [sym_preproc_line] = STATE(1778), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), - [sym__dedent] = ACTIONS(3373), - }, - [1779] = { - [sym_xml_doc] = STATE(1779), - [sym_block_comment] = STATE(1779), - [sym_line_comment] = STATE(1779), - [sym_compiler_directive_decl] = STATE(1779), - [sym_fsi_directive_decl] = STATE(1779), - [sym_preproc_line] = STATE(1779), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_DOT_DOT2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), - [sym__dedent] = ACTIONS(3403), - }, - [1780] = { - [sym_xml_doc] = STATE(1780), - [sym_block_comment] = STATE(1780), - [sym_line_comment] = STATE(1780), - [sym_compiler_directive_decl] = STATE(1780), - [sym_fsi_directive_decl] = STATE(1780), - [sym_preproc_line] = STATE(1780), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_DOT_DOT2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), - [sym__dedent] = ACTIONS(3479), - }, - [1781] = { - [sym_xml_doc] = STATE(1781), - [sym_block_comment] = STATE(1781), - [sym_line_comment] = STATE(1781), - [sym_compiler_directive_decl] = STATE(1781), - [sym_fsi_directive_decl] = STATE(1781), - [sym_preproc_line] = STATE(1781), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_DOT_DOT2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), - }, - [1782] = { - [sym_xml_doc] = STATE(1782), - [sym_block_comment] = STATE(1782), - [sym_line_comment] = STATE(1782), - [sym_compiler_directive_decl] = STATE(1782), - [sym_fsi_directive_decl] = STATE(1782), - [sym_preproc_line] = STATE(1782), + [1766] = { + [sym_xml_doc] = STATE(1766), + [sym_block_comment] = STATE(1766), + [sym_line_comment] = STATE(1766), + [sym_compiler_directive_decl] = STATE(1766), + [sym_fsi_directive_decl] = STATE(1766), + [sym_preproc_line] = STATE(1766), [sym_identifier] = ACTIONS(3387), [anon_sym_EQ] = ACTIONS(3389), [anon_sym_COLON] = ACTIONS(3387), @@ -246313,7 +249592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(3387), [anon_sym_let] = ACTIONS(3387), [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_as] = ACTIONS(3387), [anon_sym_LPAREN] = ACTIONS(3387), [anon_sym_COMMA] = ACTIONS(3389), [anon_sym_null] = ACTIONS(3387), @@ -246324,8 +249602,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3387), [anon_sym_LBRACK_PIPE] = ACTIONS(3389), [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3387), [anon_sym_new] = ACTIONS(3387), [anon_sym_return_BANG] = ACTIONS(3389), [anon_sym_yield] = ACTIONS(3387), @@ -246334,10 +249614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3387), [anon_sym_upcast] = ACTIONS(3387), [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), [anon_sym_COLON_GT] = ACTIONS(3389), [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), [anon_sym_for] = ACTIONS(3387), @@ -246350,8 +249626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3387), [anon_sym_LT_DASH] = ACTIONS(3387), [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), [anon_sym_LT] = ACTIONS(3389), + [anon_sym_GT] = ACTIONS(3387), [anon_sym_use] = ACTIONS(3387), [anon_sym_use_BANG] = ACTIONS(3389), [anon_sym_do_BANG] = ACTIONS(3389), @@ -246384,6 +249660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), [sym_int] = ACTIONS(3387), [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -246393,190 +249671,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3389), [sym__newline] = ACTIONS(3389), - [sym__dedent] = ACTIONS(3389), }, - [1783] = { - [sym_xml_doc] = STATE(1783), - [sym_block_comment] = STATE(1783), - [sym_line_comment] = STATE(1783), - [sym_compiler_directive_decl] = STATE(1783), - [sym_fsi_directive_decl] = STATE(1783), - [sym_preproc_line] = STATE(1783), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_DOT_DOT2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), - [sym__dedent] = ACTIONS(3530), + [1767] = { + [sym_xml_doc] = STATE(1767), + [sym_block_comment] = STATE(1767), + [sym_line_comment] = STATE(1767), + [sym_compiler_directive_decl] = STATE(1767), + [sym_fsi_directive_decl] = STATE(1767), + [sym_preproc_line] = STATE(1767), + [aux_sym_sequential_expression_repeat1] = STATE(1911), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, - [1784] = { - [sym_xml_doc] = STATE(1784), - [sym_block_comment] = STATE(1784), - [sym_line_comment] = STATE(1784), - [sym_compiler_directive_decl] = STATE(1784), - [sym_fsi_directive_decl] = STATE(1784), - [sym_preproc_line] = STATE(1784), - [sym_identifier] = ACTIONS(3092), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_COLON] = ACTIONS(3092), - [anon_sym_return] = ACTIONS(3092), - [anon_sym_do] = ACTIONS(3092), - [anon_sym_let] = ACTIONS(3092), - [anon_sym_let_BANG] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_null] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3092), - [anon_sym_COLON_QMARK] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LBRACK_PIPE] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3092), - [anon_sym_return_BANG] = ACTIONS(3094), - [anon_sym_yield] = ACTIONS(3092), - [anon_sym_yield_BANG] = ACTIONS(3094), - [anon_sym_lazy] = ACTIONS(3092), - [anon_sym_assert] = ACTIONS(3092), - [anon_sym_upcast] = ACTIONS(3092), - [anon_sym_downcast] = ACTIONS(3092), - [anon_sym_LT_AT] = ACTIONS(3092), - [anon_sym_AT_GT] = ACTIONS(3092), - [anon_sym_LT_AT_AT] = ACTIONS(3092), - [anon_sym_AT_AT_GT] = ACTIONS(3092), - [anon_sym_COLON_GT] = ACTIONS(3094), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3092), - [anon_sym_elif] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3092), - [anon_sym_fun] = ACTIONS(3092), - [anon_sym_try] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3092), - [anon_sym_match_BANG] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3092), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_DOT_LBRACK] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_GT] = ACTIONS(3092), - [anon_sym_use] = ACTIONS(3092), - [anon_sym_use_BANG] = ACTIONS(3094), - [anon_sym_do_BANG] = ACTIONS(3094), - [anon_sym_begin] = ACTIONS(3092), - [anon_sym_LPAREN2] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3092), - [aux_sym_char_token1] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_AT_DQUOTE] = ACTIONS(3094), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3094), - [sym_bool] = ACTIONS(3092), - [sym_unit] = ACTIONS(3092), - [anon_sym_LPAREN_PIPE] = ACTIONS(3092), - [sym_op_identifier] = ACTIONS(3092), - [anon_sym_PLUS] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3092), - [anon_sym_PLUS_DOT] = ACTIONS(3092), - [anon_sym_DASH_DOT] = ACTIONS(3092), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3094), - [aux_sym_prefix_op_token1] = ACTIONS(3092), - [aux_sym_infix_op_token1] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_DOLLAR] = ACTIONS(3092), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3092), - [sym_int] = ACTIONS(3092), - [sym_xint] = ACTIONS(3094), + [1768] = { + [sym_xml_doc] = STATE(1768), + [sym_block_comment] = STATE(1768), + [sym_line_comment] = STATE(1768), + [sym_compiler_directive_decl] = STATE(1768), + [sym_fsi_directive_decl] = STATE(1768), + [sym_preproc_line] = STATE(1768), + [aux_sym_sequential_expression_repeat1] = STATE(1768), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [anon_sym_POUNDendif] = ACTIONS(3831), + [anon_sym_POUNDelse] = ACTIONS(3831), + [sym__newline] = ACTIONS(4455), + }, + [1769] = { + [sym_xml_doc] = STATE(1769), + [sym_block_comment] = STATE(1769), + [sym_line_comment] = STATE(1769), + [sym_compiler_directive_decl] = STATE(1769), + [sym_fsi_directive_decl] = STATE(1769), + [sym_preproc_line] = STATE(1769), + [aux_sym_rules_repeat1] = STATE(1776), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4460), + }, + [1770] = { + [sym_xml_doc] = STATE(1770), + [sym_block_comment] = STATE(1770), + [sym_line_comment] = STATE(1770), + [sym_compiler_directive_decl] = STATE(1770), + [sym_fsi_directive_decl] = STATE(1770), + [sym_preproc_line] = STATE(1770), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3598), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_DOT_DOT2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -246584,112 +250044,1239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3094), - [sym__newline] = ACTIONS(3094), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), + [sym__dedent] = ACTIONS(3600), }, - [1785] = { - [sym_xml_doc] = STATE(1785), - [sym_block_comment] = STATE(1785), - [sym_line_comment] = STATE(1785), - [sym_compiler_directive_decl] = STATE(1785), - [sym_fsi_directive_decl] = STATE(1785), - [sym_preproc_line] = STATE(1785), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [1771] = { + [sym_xml_doc] = STATE(1771), + [sym_block_comment] = STATE(1771), + [sym_line_comment] = STATE(1771), + [sym_compiler_directive_decl] = STATE(1771), + [sym_fsi_directive_decl] = STATE(1771), + [sym_preproc_line] = STATE(1771), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_DOT_DOT2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), + [sym__dedent] = ACTIONS(3703), }, - [1786] = { - [sym_xml_doc] = STATE(1786), - [sym_block_comment] = STATE(1786), - [sym_line_comment] = STATE(1786), - [sym_compiler_directive_decl] = STATE(1786), - [sym_fsi_directive_decl] = STATE(1786), - [sym_preproc_line] = STATE(1786), + [1772] = { + [sym_xml_doc] = STATE(1772), + [sym_block_comment] = STATE(1772), + [sym_line_comment] = STATE(1772), + [sym_compiler_directive_decl] = STATE(1772), + [sym_fsi_directive_decl] = STATE(1772), + [sym_preproc_line] = STATE(1772), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4463), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + }, + [1773] = { + [sym_xml_doc] = STATE(1773), + [sym_block_comment] = STATE(1773), + [sym_line_comment] = STATE(1773), + [sym_compiler_directive_decl] = STATE(1773), + [sym_fsi_directive_decl] = STATE(1773), + [sym_preproc_line] = STATE(1773), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_as] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_with] = ACTIONS(3527), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4465), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), + }, + [1774] = { + [sym_xml_doc] = STATE(1774), + [sym_block_comment] = STATE(1774), + [sym_line_comment] = STATE(1774), + [sym_compiler_directive_decl] = STATE(1774), + [sym_fsi_directive_decl] = STATE(1774), + [sym_preproc_line] = STATE(1774), + [aux_sym_rules_repeat1] = STATE(1783), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(3442), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4467), + }, + [1775] = { + [sym_xml_doc] = STATE(1775), + [sym_block_comment] = STATE(1775), + [sym_line_comment] = STATE(1775), + [sym_compiler_directive_decl] = STATE(1775), + [sym_fsi_directive_decl] = STATE(1775), + [sym_preproc_line] = STATE(1775), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_as] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3705), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), + [sym__dedent] = ACTIONS(3707), + }, + [1776] = { + [sym_xml_doc] = STATE(1776), + [sym_block_comment] = STATE(1776), + [sym_line_comment] = STATE(1776), + [sym_compiler_directive_decl] = STATE(1776), + [sym_fsi_directive_decl] = STATE(1776), + [sym_preproc_line] = STATE(1776), + [aux_sym_rules_repeat1] = STATE(1787), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(3442), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4467), + }, + [1777] = { + [sym_xml_doc] = STATE(1777), + [sym_block_comment] = STATE(1777), + [sym_line_comment] = STATE(1777), + [sym_compiler_directive_decl] = STATE(1777), + [sym_fsi_directive_decl] = STATE(1777), + [sym_preproc_line] = STATE(1777), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_as] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_with] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), + [sym__dedent] = ACTIONS(3744), + }, + [1778] = { + [sym_xml_doc] = STATE(1778), + [sym_block_comment] = STATE(1778), + [sym_line_comment] = STATE(1778), + [sym_compiler_directive_decl] = STATE(1778), + [sym_fsi_directive_decl] = STATE(1778), + [sym_preproc_line] = STATE(1778), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_with] = ACTIONS(3794), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_DOT_DOT2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), + [sym__dedent] = ACTIONS(3796), + }, + [1779] = { + [sym_xml_doc] = STATE(1779), + [sym_block_comment] = STATE(1779), + [sym_line_comment] = STATE(1779), + [sym_compiler_directive_decl] = STATE(1779), + [sym_fsi_directive_decl] = STATE(1779), + [sym_preproc_line] = STATE(1779), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_DOT_DOT2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), + [sym__dedent] = ACTIONS(3644), + }, + [1780] = { + [sym_xml_doc] = STATE(1780), + [sym_block_comment] = STATE(1780), + [sym_line_comment] = STATE(1780), + [sym_compiler_directive_decl] = STATE(1780), + [sym_fsi_directive_decl] = STATE(1780), + [sym_preproc_line] = STATE(1780), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3814), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_with] = ACTIONS(3814), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), + [sym__dedent] = ACTIONS(3816), + }, + [1781] = { + [sym_xml_doc] = STATE(1781), + [sym_block_comment] = STATE(1781), + [sym_line_comment] = STATE(1781), + [sym_compiler_directive_decl] = STATE(1781), + [sym_fsi_directive_decl] = STATE(1781), + [sym_preproc_line] = STATE(1781), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4453), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_DASH_GT] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + }, + [1782] = { + [sym_xml_doc] = STATE(1782), + [sym_block_comment] = STATE(1782), + [sym_line_comment] = STATE(1782), + [sym_compiler_directive_decl] = STATE(1782), + [sym_fsi_directive_decl] = STATE(1782), + [sym_preproc_line] = STATE(1782), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_as] = ACTIONS(3818), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_with] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), + [sym__dedent] = ACTIONS(3820), + }, + [1783] = { + [sym_xml_doc] = STATE(1783), + [sym_block_comment] = STATE(1783), + [sym_line_comment] = STATE(1783), + [sym_compiler_directive_decl] = STATE(1783), + [sym_fsi_directive_decl] = STATE(1783), + [sym_preproc_line] = STATE(1783), + [aux_sym_rules_repeat1] = STATE(1787), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_GT] = ACTIONS(3463), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4470), + }, + [1784] = { + [sym_xml_doc] = STATE(1784), + [sym_block_comment] = STATE(1784), + [sym_line_comment] = STATE(1784), + [sym_compiler_directive_decl] = STATE(1784), + [sym_fsi_directive_decl] = STATE(1784), + [sym_preproc_line] = STATE(1784), [sym_identifier] = ACTIONS(3451), [anon_sym_EQ] = ACTIONS(3453), [anon_sym_COLON] = ACTIONS(3451), @@ -246697,7 +251284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(3451), [anon_sym_let] = ACTIONS(3451), [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_as] = ACTIONS(3451), [anon_sym_LPAREN] = ACTIONS(3451), [anon_sym_COMMA] = ACTIONS(3453), [anon_sym_null] = ACTIONS(3451), @@ -246708,8 +251294,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3451), [anon_sym_LBRACK_PIPE] = ACTIONS(3453), [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3451), [anon_sym_new] = ACTIONS(3451), [anon_sym_return_BANG] = ACTIONS(3453), [anon_sym_yield] = ACTIONS(3451), @@ -246718,10 +251306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3451), [anon_sym_upcast] = ACTIONS(3451), [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), [anon_sym_COLON_GT] = ACTIONS(3453), [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), [anon_sym_for] = ACTIONS(3451), @@ -246734,11 +251318,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3451), [anon_sym_LT_DASH] = ACTIONS(3451), [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), [anon_sym_LT] = ACTIONS(3453), [anon_sym_use] = ACTIONS(3451), [anon_sym_use_BANG] = ACTIONS(3453), [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_DOT_DOT] = ACTIONS(3453), [anon_sym_begin] = ACTIONS(3451), [anon_sym_LPAREN2] = ACTIONS(3453), [anon_sym_or] = ACTIONS(3451), @@ -246768,6 +251352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), [sym_int] = ACTIONS(3451), [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -246777,7 +251363,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3453), [sym__newline] = ACTIONS(3453), - [sym__dedent] = ACTIONS(3453), + }, + [1785] = { + [sym_xml_doc] = STATE(1785), + [sym_block_comment] = STATE(1785), + [sym_line_comment] = STATE(1785), + [sym_compiler_directive_decl] = STATE(1785), + [sym_fsi_directive_decl] = STATE(1785), + [sym_preproc_line] = STATE(1785), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + }, + [1786] = { + [sym_xml_doc] = STATE(1786), + [sym_block_comment] = STATE(1786), + [sym_line_comment] = STATE(1786), + [sym_compiler_directive_decl] = STATE(1786), + [sym_fsi_directive_decl] = STATE(1786), + [sym_preproc_line] = STATE(1786), + [aux_sym_long_identifier_repeat1] = STATE(1884), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4473), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [anon_sym_EQ2] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1787] = { [sym_xml_doc] = STATE(1787), @@ -246786,94 +251559,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1787), [sym_fsi_directive_decl] = STATE(1787), [sym_preproc_line] = STATE(1787), - [aux_sym_long_identifier_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_rules_repeat1] = STATE(1787), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3483), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4480), }, [1788] = { [sym_xml_doc] = STATE(1788), @@ -246882,94 +251653,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1788), [sym_fsi_directive_decl] = STATE(1788), [sym_preproc_line] = STATE(1788), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_as] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), - [sym__dedent] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [anon_sym_EQ2] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1789] = { [sym_xml_doc] = STATE(1789), @@ -246978,94 +251747,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1789), [sym_fsi_directive_decl] = STATE(1789), [sym_preproc_line] = STATE(1789), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_elif] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1790] = { [sym_xml_doc] = STATE(1790), @@ -247074,94 +251841,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1790), [sym_fsi_directive_decl] = STATE(1790), [sym_preproc_line] = STATE(1790), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3545), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_DOT_DOT2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), - [sym__dedent] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_as] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_with] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4349), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1791] = { [sym_xml_doc] = STATE(1791), @@ -247170,94 +251935,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1791), [sym_fsi_directive_decl] = STATE(1791), [sym_preproc_line] = STATE(1791), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_as] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), - [sym__dedent] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1792] = { [sym_xml_doc] = STATE(1792), @@ -247266,94 +252029,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1792), [sym_fsi_directive_decl] = STATE(1792), [sym_preproc_line] = STATE(1792), - [aux_sym_long_identifier_repeat1] = STATE(1787), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4110), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [anon_sym_POUNDendif] = ACTIONS(3535), + [anon_sym_POUNDelse] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [1793] = { [sym_xml_doc] = STATE(1793), @@ -247362,94 +252123,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1793), [sym_fsi_directive_decl] = STATE(1793), [sym_preproc_line] = STATE(1793), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_DASH_GT] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_with] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_DOT_DOT2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), + [sym__dedent] = ACTIONS(3820), }, [1794] = { [sym_xml_doc] = STATE(1794), @@ -247458,94 +252217,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1794), [sym_fsi_directive_decl] = STATE(1794), [sym_preproc_line] = STATE(1794), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4114), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [anon_sym_POUNDendif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [anon_sym_POUNDendif] = ACTIONS(3525), + [anon_sym_POUNDelse] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [1795] = { [sym_xml_doc] = STATE(1795), @@ -247554,94 +252311,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1795), [sym_fsi_directive_decl] = STATE(1795), [sym_preproc_line] = STATE(1795), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [anon_sym_POUNDendif] = ACTIONS(3241), - [anon_sym_POUNDelse] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3314), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [anon_sym_EQ2] = ACTIONS(4483), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1796] = { [sym_xml_doc] = STATE(1796), @@ -247650,94 +252405,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1796), [sym_fsi_directive_decl] = STATE(1796), [sym_preproc_line] = STATE(1796), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), - [sym__dedent] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_as] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4485), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [1797] = { [sym_xml_doc] = STATE(1797), @@ -247746,94 +252499,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1797), [sym_fsi_directive_decl] = STATE(1797), [sym_preproc_line] = STATE(1797), - [aux_sym_long_identifier_repeat1] = STATE(1664), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [anon_sym_POUNDendif] = ACTIONS(2956), - [anon_sym_POUNDelse] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3198), + [aux_sym_decimal_token1] = ACTIONS(3120), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1798] = { [sym_xml_doc] = STATE(1798), @@ -247842,94 +252593,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1798), [sym_fsi_directive_decl] = STATE(1798), [sym_preproc_line] = STATE(1798), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), - [sym__dedent] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_with] = ACTIONS(3814), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_DOT_DOT2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), + [sym__dedent] = ACTIONS(3816), }, [1799] = { [sym_xml_doc] = STATE(1799), @@ -247938,94 +252687,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1799), [sym_fsi_directive_decl] = STATE(1799), [sym_preproc_line] = STATE(1799), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_as] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), - [sym__dedent] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [anon_sym_POUNDelse] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1800] = { [sym_xml_doc] = STATE(1800), @@ -248034,94 +252781,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1800), [sym_fsi_directive_decl] = STATE(1800), [sym_preproc_line] = STATE(1800), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [anon_sym_POUNDendif] = ACTIONS(3544), + [anon_sym_POUNDelse] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [1801] = { [sym_xml_doc] = STATE(1801), @@ -248130,94 +252875,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1801), [sym_fsi_directive_decl] = STATE(1801), [sym_preproc_line] = STATE(1801), - [aux_sym_long_identifier_repeat1] = STATE(1712), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_as] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [aux_sym_long_identifier_repeat1] = STATE(2002), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4487), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [anon_sym_POUNDendif] = ACTIONS(3264), + [anon_sym_POUNDelse] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1802] = { [sym_xml_doc] = STATE(1802), @@ -248226,94 +252969,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1802), [sym_fsi_directive_decl] = STATE(1802), [sym_preproc_line] = STATE(1802), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), - [sym__dedent] = ACTIONS(3035), + [aux_sym_long_identifier_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1803] = { [sym_xml_doc] = STATE(1803), @@ -248322,94 +253063,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1803), [sym_fsi_directive_decl] = STATE(1803), [sym_preproc_line] = STATE(1803), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2949), - [aux_sym_decimal_token1] = ACTIONS(2874), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [aux_sym_long_identifier_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1804] = { [sym_xml_doc] = STATE(1804), @@ -248418,94 +253157,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1804), [sym_fsi_directive_decl] = STATE(1804), [sym_preproc_line] = STATE(1804), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1805] = { [sym_xml_doc] = STATE(1805), @@ -248514,94 +253251,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1805), [sym_fsi_directive_decl] = STATE(1805), [sym_preproc_line] = STATE(1805), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_with] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_DOT_DOT2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), + [sym__dedent] = ACTIONS(3744), }, [1806] = { [sym_xml_doc] = STATE(1806), @@ -248610,94 +253345,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1806), [sym_fsi_directive_decl] = STATE(1806), [sym_preproc_line] = STATE(1806), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_DOT_DOT2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), - [sym__dedent] = ACTIONS(3437), + [aux_sym_rules_repeat1] = STATE(1870), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_AT_AT_GT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4498), }, [1807] = { [sym_xml_doc] = STATE(1807), @@ -248706,94 +253439,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1807), [sym_fsi_directive_decl] = STATE(1807), [sym_preproc_line] = STATE(1807), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [aux_sym_rules_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4501), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4504), }, [1808] = { [sym_xml_doc] = STATE(1808), @@ -248802,94 +253533,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1808), [sym_fsi_directive_decl] = STATE(1808), [sym_preproc_line] = STATE(1808), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_DOT_DOT2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - [sym__dedent] = ACTIONS(3441), + [aux_sym_rules_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_DOT_DOT] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4509), }, [1809] = { [sym_xml_doc] = STATE(1809), @@ -248898,94 +253627,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1809), [sym_fsi_directive_decl] = STATE(1809), [sym_preproc_line] = STATE(1809), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), - [sym__dedent] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_with] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_DOT_DOT2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), + [sym__dedent] = ACTIONS(3732), }, [1810] = { [sym_xml_doc] = STATE(1810), @@ -248994,94 +253721,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1810), [sym_fsi_directive_decl] = STATE(1810), [sym_preproc_line] = STATE(1810), - [aux_sym_sequential_expression_repeat1] = STATE(1810), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_DOT_DOT2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4126), + [aux_sym_rules_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4512), }, [1811] = { [sym_xml_doc] = STATE(1811), @@ -249090,94 +253815,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1811), [sym_fsi_directive_decl] = STATE(1811), [sym_preproc_line] = STATE(1811), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_EQ2] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_AT_GT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1812] = { [sym_xml_doc] = STATE(1812), @@ -249186,94 +253909,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1812), [sym_fsi_directive_decl] = STATE(1812), [sym_preproc_line] = STATE(1812), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_as] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), - [sym__dedent] = ACTIONS(3530), + [aux_sym_rules_repeat1] = STATE(1808), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4512), }, [1813] = { [sym_xml_doc] = STATE(1813), @@ -249282,94 +254003,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1813), [sym_fsi_directive_decl] = STATE(1813), [sym_preproc_line] = STATE(1813), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_DOT_DOT2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), - [sym__dedent] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3705), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_DOT_DOT2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), + [sym__dedent] = ACTIONS(3707), }, [1814] = { [sym_xml_doc] = STATE(1814), @@ -249378,94 +254097,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1814), [sym_fsi_directive_decl] = STATE(1814), [sym_preproc_line] = STATE(1814), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3566), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3566), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), - [sym__dedent] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3585), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_DOT_DOT2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), + [sym__dedent] = ACTIONS(3587), }, [1815] = { [sym_xml_doc] = STATE(1815), @@ -249474,190 +254191,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1815), [sym_fsi_directive_decl] = STATE(1815), [sym_preproc_line] = STATE(1815), - [aux_sym_sequential_expression_repeat1] = STATE(1815), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_DASH_GT] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4129), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_DOT_DOT2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), + [sym__dedent] = ACTIONS(3583), }, [1816] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5583), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2242), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(3884), + [sym_format_string] = STATE(3883), + [sym__string_literal] = STATE(3883), + [sym_string] = STATE(3884), + [sym_verbatim_string] = STATE(3884), + [sym_bytearray] = STATE(3884), + [sym_verbatim_bytearray] = STATE(3884), + [sym_format_triple_quoted_string] = STATE(3882), + [sym_triple_quoted_string] = STATE(3884), + [sym_const] = STATE(3923), + [sym_long_identifier] = STATE(3753), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(3884), + [sym_byte] = STATE(3884), + [sym_int16] = STATE(3884), + [sym_uint16] = STATE(3884), + [sym_int32] = STATE(3884), + [sym_uint32] = STATE(3884), + [sym_nativeint] = STATE(3884), + [sym_unativeint] = STATE(3884), + [sym_int64] = STATE(3884), + [sym_uint64] = STATE(3884), + [sym_ieee32] = STATE(3884), + [sym_ieee64] = STATE(3884), + [sym_bignum] = STATE(3884), + [sym_decimal] = STATE(3884), + [sym_float] = STATE(3697), [sym_xml_doc] = STATE(1816), [sym_block_comment] = STATE(1816), [sym_line_comment] = STATE(1816), [sym_compiler_directive_decl] = STATE(1816), [sym_fsi_directive_decl] = STATE(1816), [sym_preproc_line] = STATE(1816), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(4132), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_DASH_GT] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4519), + [aux_sym_char_token1] = ACTIONS(4539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [anon_sym_AT_DQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [sym_bool] = ACTIONS(4551), + [sym_unit] = ACTIONS(4553), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4559), + [sym_xint] = ACTIONS(4561), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [1817] = { [sym_xml_doc] = STATE(1817), @@ -249666,94 +254379,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1817), [sym_fsi_directive_decl] = STATE(1817), [sym_preproc_line] = STATE(1817), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [anon_sym_POUNDendif] = ACTIONS(3191), - [anon_sym_POUNDelse] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_AT_AT_GT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1818] = { [sym_xml_doc] = STATE(1818), @@ -249762,94 +254473,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1818), [sym_fsi_directive_decl] = STATE(1818), [sym_preproc_line] = STATE(1818), - [sym_identifier] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_COLON_QMARK] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_AT_GT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3173), - [anon_sym_AT_AT_GT] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_DOT_LBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [anon_sym_LPAREN2] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3173), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3173), - [aux_sym_infix_op_token1] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_DOLLAR] = ACTIONS(3173), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3173), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), - [anon_sym_POUNDendif] = ACTIONS(3175), - [sym__newline] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_DOT_DOT2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), + [sym__dedent] = ACTIONS(3776), }, [1819] = { [sym_xml_doc] = STATE(1819), @@ -249858,7 +254567,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1819), [sym_fsi_directive_decl] = STATE(1819), [sym_preproc_line] = STATE(1819), - [aux_sym_sequential_expression_repeat1] = STATE(1699), [sym_identifier] = ACTIONS(3602), [anon_sym_EQ] = ACTIONS(3604), [anon_sym_COLON] = ACTIONS(3602), @@ -249866,7 +254574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(3602), [anon_sym_let] = ACTIONS(3602), [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3602), [anon_sym_LPAREN] = ACTIONS(3602), [anon_sym_COMMA] = ACTIONS(3604), [anon_sym_null] = ACTIONS(3602), @@ -249877,6 +254584,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3602), [anon_sym_LBRACK_PIPE] = ACTIONS(3604), [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), [anon_sym_LBRACE_PIPE] = ACTIONS(3604), [anon_sym_with] = ACTIONS(3602), [anon_sym_new] = ACTIONS(3602), @@ -249887,10 +254597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3602), [anon_sym_upcast] = ACTIONS(3602), [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), [anon_sym_COLON_GT] = ACTIONS(3604), [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), [anon_sym_for] = ACTIONS(3602), @@ -249903,13 +254609,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3602), [anon_sym_LT_DASH] = ACTIONS(3602), [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), [anon_sym_LT] = ACTIONS(3604), [anon_sym_use] = ACTIONS(3602), [anon_sym_use_BANG] = ACTIONS(3604), [anon_sym_do_BANG] = ACTIONS(3604), [anon_sym_begin] = ACTIONS(3602), [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_DOT_DOT2] = ACTIONS(3604), [anon_sym_or] = ACTIONS(3602), [aux_sym_char_token1] = ACTIONS(3604), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), @@ -249946,102 +254652,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3604), [sym__newline] = ACTIONS(3604), + [sym__dedent] = ACTIONS(3604), }, [1820] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5438), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym__pattern_param] = STATE(2164), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(3858), + [sym_format_string] = STATE(3857), + [sym__string_literal] = STATE(3857), + [sym_string] = STATE(3858), + [sym_verbatim_string] = STATE(3858), + [sym_bytearray] = STATE(3858), + [sym_verbatim_bytearray] = STATE(3858), + [sym_format_triple_quoted_string] = STATE(3854), + [sym_triple_quoted_string] = STATE(3858), + [sym_const] = STATE(3895), + [sym_long_identifier] = STATE(3769), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(3858), + [sym_byte] = STATE(3858), + [sym_int16] = STATE(3858), + [sym_uint16] = STATE(3858), + [sym_int32] = STATE(3858), + [sym_uint32] = STATE(3858), + [sym_nativeint] = STATE(3858), + [sym_unativeint] = STATE(3858), + [sym_int64] = STATE(3858), + [sym_uint64] = STATE(3858), + [sym_ieee32] = STATE(3858), + [sym_ieee64] = STATE(3858), + [sym_bignum] = STATE(3858), + [sym_decimal] = STATE(3858), + [sym_float] = STATE(3721), [sym_xml_doc] = STATE(1820), [sym_block_comment] = STATE(1820), [sym_line_comment] = STATE(1820), [sym_compiler_directive_decl] = STATE(1820), [sym_fsi_directive_decl] = STATE(1820), [sym_preproc_line] = STATE(1820), - [aux_sym_long_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [anon_sym_EQ2] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4567), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4583), + [anon_sym_DQUOTE] = ACTIONS(4585), + [anon_sym_AT_DQUOTE] = ACTIONS(4587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4591), + [sym_bool] = ACTIONS(4593), + [sym_unit] = ACTIONS(4595), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4601), + [sym_xint] = ACTIONS(4603), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym__newline] = ACTIONS(4523), + [sym__dedent] = ACTIONS(4523), }, [1821] = { [sym_xml_doc] = STATE(1821), @@ -250050,94 +254755,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1821), [sym_fsi_directive_decl] = STATE(1821), [sym_preproc_line] = STATE(1821), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_done] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_DOT_DOT2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), + [sym__dedent] = ACTIONS(3618), }, [1822] = { [sym_xml_doc] = STATE(1822), @@ -250146,94 +254849,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1822), [sym_fsi_directive_decl] = STATE(1822), [sym_preproc_line] = STATE(1822), - [aux_sym_rules_repeat1] = STATE(1828), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(4138), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [anon_sym_POUNDelse] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1823] = { [sym_xml_doc] = STATE(1823), @@ -250242,94 +254943,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1823), [sym_fsi_directive_decl] = STATE(1823), [sym_preproc_line] = STATE(1823), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_as] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - [sym__dedent] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_DOT_DOT2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), + [sym__dedent] = ACTIONS(3658), }, [1824] = { [sym_xml_doc] = STATE(1824), @@ -250338,94 +255037,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1824), [sym_fsi_directive_decl] = STATE(1824), [sym_preproc_line] = STATE(1824), - [aux_sym_rules_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(3160), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_let_BANG] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_COMMA] = ACTIONS(3162), - [anon_sym_null] = ACTIONS(3160), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LBRACK_PIPE] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_LBRACE_PIPE] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_return_BANG] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_yield_BANG] = ACTIONS(3162), - [anon_sym_lazy] = ACTIONS(3160), - [anon_sym_assert] = ACTIONS(3160), - [anon_sym_upcast] = ACTIONS(3160), - [anon_sym_downcast] = ACTIONS(3160), - [anon_sym_LT_AT] = ACTIONS(3160), - [anon_sym_AT_GT] = ACTIONS(3160), - [anon_sym_LT_AT_AT] = ACTIONS(3160), - [anon_sym_AT_AT_GT] = ACTIONS(3160), - [anon_sym_COLON_GT] = ACTIONS(3162), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_fun] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_match] = ACTIONS(3160), - [anon_sym_match_BANG] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_LT_DASH] = ACTIONS(3160), - [anon_sym_DOT_LBRACK] = ACTIONS(3162), - [anon_sym_DOT] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_use] = ACTIONS(3160), - [anon_sym_use_BANG] = ACTIONS(3162), - [anon_sym_do_BANG] = ACTIONS(3162), - [anon_sym_DOT_DOT] = ACTIONS(3162), - [anon_sym_begin] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_or] = ACTIONS(3160), - [aux_sym_char_token1] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_AT_DQUOTE] = ACTIONS(3162), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3162), - [sym_bool] = ACTIONS(3160), - [sym_unit] = ACTIONS(3160), - [anon_sym_LPAREN_PIPE] = ACTIONS(3160), - [sym_op_identifier] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS_DOT] = ACTIONS(3160), - [anon_sym_DASH_DOT] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3162), - [aux_sym_prefix_op_token1] = ACTIONS(3160), - [aux_sym_infix_op_token1] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3160), - [anon_sym_COLON_EQ] = ACTIONS(3162), - [anon_sym_DOLLAR] = ACTIONS(3160), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3160), - [sym_int] = ACTIONS(3160), - [sym_xint] = ACTIONS(3162), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3162), - [sym__newline] = ACTIONS(4141), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_DOT_DOT2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), + [sym__dedent] = ACTIONS(3662), }, [1825] = { [sym_xml_doc] = STATE(1825), @@ -250434,94 +255131,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1825), [sym_fsi_directive_decl] = STATE(1825), [sym_preproc_line] = STATE(1825), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(2931), - [aux_sym_decimal_token1] = ACTIONS(2784), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3693), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_DOT_DOT2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), + [sym__dedent] = ACTIONS(3695), }, [1826] = { [sym_xml_doc] = STATE(1826), @@ -250530,94 +255225,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1826), [sym_fsi_directive_decl] = STATE(1826), [sym_preproc_line] = STATE(1826), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_with] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_DOT_DOT2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), + [sym__dedent] = ACTIONS(3724), }, [1827] = { [sym_xml_doc] = STATE(1827), @@ -250626,94 +255319,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1827), [sym_fsi_directive_decl] = STATE(1827), [sym_preproc_line] = STATE(1827), - [aux_sym_rules_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4146), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_with] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_DOT_DOT2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), + [sym__dedent] = ACTIONS(3728), }, [1828] = { [sym_xml_doc] = STATE(1828), @@ -250722,94 +255413,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1828), [sym_fsi_directive_decl] = STATE(1828), [sym_preproc_line] = STATE(1828), - [aux_sym_rules_repeat1] = STATE(1837), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4146), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_DOT_DOT2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), + [sym__dedent] = ACTIONS(3736), }, [1829] = { [sym_xml_doc] = STATE(1829), @@ -250818,94 +255507,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1829), [sym_fsi_directive_decl] = STATE(1829), [sym_preproc_line] = STATE(1829), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_DOT_DOT2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), - [sym__dedent] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_DOT_DOT] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4605), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [1830] = { [sym_xml_doc] = STATE(1830), @@ -250914,94 +255601,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1830), [sym_fsi_directive_decl] = STATE(1830), [sym_preproc_line] = STATE(1830), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_DOT_DOT2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), - [sym__dedent] = ACTIONS(3475), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_AT_AT_GT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3208), + [aux_sym_decimal_token1] = ACTIONS(3148), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1831] = { [sym_xml_doc] = STATE(1831), @@ -251010,94 +255695,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1831), [sym_fsi_directive_decl] = STATE(1831), [sym_preproc_line] = STATE(1831), - [aux_sym_sequential_expression_repeat1] = STATE(1831), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4149), - [sym__dedent] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_DOT_DOT2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), + [sym__dedent] = ACTIONS(3740), }, [1832] = { [sym_xml_doc] = STATE(1832), @@ -251106,94 +255789,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1832), [sym_fsi_directive_decl] = STATE(1832), [sym_preproc_line] = STATE(1832), - [sym_identifier] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_COLON_QMARK] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_AT_GT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3177), - [anon_sym_AT_AT_GT] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_DOT_LBRACK] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [anon_sym_LPAREN2] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3177), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3177), - [aux_sym_infix_op_token1] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3177), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3177), - [sym_int] = ACTIONS(4152), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), - [anon_sym_POUNDendif] = ACTIONS(3179), - [sym__newline] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_with] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_DOT_DOT2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), + [sym__dedent] = ACTIONS(3748), }, [1833] = { [sym_xml_doc] = STATE(1833), @@ -251202,94 +255883,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1833), [sym_fsi_directive_decl] = STATE(1833), [sym_preproc_line] = STATE(1833), - [aux_sym_rules_repeat1] = STATE(1833), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(4157), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_with] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_DOT_DOT2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), + [sym__dedent] = ACTIONS(3768), }, [1834] = { [sym_xml_doc] = STATE(1834), @@ -251298,94 +255977,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1834), [sym_fsi_directive_decl] = STATE(1834), [sym_preproc_line] = STATE(1834), - [aux_sym_rules_repeat1] = STATE(1833), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_DOT_DOT] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(4160), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_with] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_DOT_DOT2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [sym__dedent] = ACTIONS(3772), }, [1835] = { [sym_xml_doc] = STATE(1835), @@ -251394,94 +256071,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1835), [sym_fsi_directive_decl] = STATE(1835), [sym_preproc_line] = STATE(1835), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), - [sym__dedent] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_DOT_DOT2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), + [sym__dedent] = ACTIONS(3579), }, [1836] = { [sym_xml_doc] = STATE(1836), @@ -251490,94 +256165,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1836), [sym_fsi_directive_decl] = STATE(1836), [sym_preproc_line] = STATE(1836), - [aux_sym_rules_repeat1] = STATE(1837), - [sym_identifier] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_return] = ACTIONS(3079), - [anon_sym_do] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_let_BANG] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_null] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3079), - [anon_sym_COLON_QMARK] = ACTIONS(3079), - [anon_sym_COLON_COLON] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_LBRACE_PIPE] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_return_BANG] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3079), - [anon_sym_yield_BANG] = ACTIONS(3081), - [anon_sym_lazy] = ACTIONS(3079), - [anon_sym_assert] = ACTIONS(3079), - [anon_sym_upcast] = ACTIONS(3079), - [anon_sym_downcast] = ACTIONS(3079), - [anon_sym_LT_AT] = ACTIONS(3079), - [anon_sym_AT_GT] = ACTIONS(3079), - [anon_sym_LT_AT_AT] = ACTIONS(3079), - [anon_sym_AT_AT_GT] = ACTIONS(3079), - [anon_sym_COLON_GT] = ACTIONS(3081), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3079), - [anon_sym_while] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3079), - [anon_sym_fun] = ACTIONS(3079), - [anon_sym_try] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3079), - [anon_sym_match_BANG] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3079), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_DOT_LBRACK] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3079), - [anon_sym_use] = ACTIONS(3079), - [anon_sym_use_BANG] = ACTIONS(3081), - [anon_sym_do_BANG] = ACTIONS(3081), - [anon_sym_begin] = ACTIONS(3079), - [anon_sym_LPAREN2] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3079), - [aux_sym_char_token1] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [anon_sym_AT_DQUOTE] = ACTIONS(3081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3081), - [sym_bool] = ACTIONS(3079), - [sym_unit] = ACTIONS(3079), - [anon_sym_LPAREN_PIPE] = ACTIONS(3079), - [sym_op_identifier] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3079), - [anon_sym_DASH_DOT] = ACTIONS(3079), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3081), - [aux_sym_prefix_op_token1] = ACTIONS(3079), - [aux_sym_infix_op_token1] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3079), - [sym_int] = ACTIONS(3079), - [sym_xint] = ACTIONS(3081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3081), - [sym__newline] = ACTIONS(4163), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_with] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_DOT_DOT2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), + [sym__dedent] = ACTIONS(3780), }, [1837] = { [sym_xml_doc] = STATE(1837), @@ -251586,94 +256259,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1837), [sym_fsi_directive_decl] = STATE(1837), [sym_preproc_line] = STATE(1837), - [aux_sym_rules_repeat1] = STATE(1837), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(4169), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_with] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_DOT_DOT2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), + [sym__dedent] = ACTIONS(3784), }, [1838] = { [sym_xml_doc] = STATE(1838), @@ -251682,94 +256353,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1838), [sym_fsi_directive_decl] = STATE(1838), [sym_preproc_line] = STATE(1838), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [anon_sym_POUNDendif] = ACTIONS(3233), - [anon_sym_POUNDelse] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_with] = ACTIONS(3786), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_DOT_DOT2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), + [sym__dedent] = ACTIONS(3788), }, [1839] = { [sym_xml_doc] = STATE(1839), @@ -251778,94 +256447,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1839), [sym_fsi_directive_decl] = STATE(1839), [sym_preproc_line] = STATE(1839), - [aux_sym_rules_repeat1] = STATE(1833), - [sym_identifier] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_COLON] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_let] = ACTIONS(3108), - [anon_sym_let_BANG] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_null] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3108), - [anon_sym_COLON_QMARK] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LBRACK_PIPE] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_LBRACE_PIPE] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_return_BANG] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3108), - [anon_sym_yield_BANG] = ACTIONS(3110), - [anon_sym_lazy] = ACTIONS(3108), - [anon_sym_assert] = ACTIONS(3108), - [anon_sym_upcast] = ACTIONS(3108), - [anon_sym_downcast] = ACTIONS(3108), - [anon_sym_LT_AT] = ACTIONS(3108), - [anon_sym_AT_GT] = ACTIONS(3108), - [anon_sym_LT_AT_AT] = ACTIONS(3108), - [anon_sym_AT_AT_GT] = ACTIONS(3108), - [anon_sym_COLON_GT] = ACTIONS(3110), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_fun] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3108), - [anon_sym_match_BANG] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3108), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_DOT_LBRACK] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_use] = ACTIONS(3108), - [anon_sym_use_BANG] = ACTIONS(3110), - [anon_sym_do_BANG] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3110), - [anon_sym_begin] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3108), - [aux_sym_char_token1] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_AT_DQUOTE] = ACTIONS(3110), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3110), - [sym_bool] = ACTIONS(3108), - [sym_unit] = ACTIONS(3108), - [anon_sym_LPAREN_PIPE] = ACTIONS(3108), - [sym_op_identifier] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS_DOT] = ACTIONS(3108), - [anon_sym_DASH_DOT] = ACTIONS(3108), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_TILDE] = ACTIONS(3110), - [aux_sym_prefix_op_token1] = ACTIONS(3108), - [aux_sym_infix_op_token1] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3108), - [sym_int] = ACTIONS(3108), - [sym_xint] = ACTIONS(3110), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3110), - [sym__newline] = ACTIONS(4050), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_with] = ACTIONS(3790), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_DOT_DOT2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), + [sym__dedent] = ACTIONS(3792), }, [1840] = { [sym_xml_doc] = STATE(1840), @@ -251874,94 +256541,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1840), [sym_fsi_directive_decl] = STATE(1840), [sym_preproc_line] = STATE(1840), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4174), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [aux_sym_long_identifier_repeat1] = STATE(1840), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [anon_sym_EQ2] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1841] = { [sym_xml_doc] = STATE(1841), @@ -251970,94 +256635,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1841), [sym_fsi_directive_decl] = STATE(1841), [sym_preproc_line] = STATE(1841), - [aux_sym_long_identifier_repeat1] = STATE(1841), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4176), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_EQ2] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_with] = ACTIONS(3798), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_DOT_DOT2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), + [sym__dedent] = ACTIONS(3800), }, [1842] = { [sym_xml_doc] = STATE(1842), @@ -252066,94 +256729,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1842), [sym_fsi_directive_decl] = STATE(1842), [sym_preproc_line] = STATE(1842), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_DOT_DOT2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), - [sym__dedent] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_with] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_DOT_DOT2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), + [sym__dedent] = ACTIONS(3804), }, [1843] = { [sym_xml_doc] = STATE(1843), @@ -252162,94 +256823,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1843), [sym_fsi_directive_decl] = STATE(1843), [sym_preproc_line] = STATE(1843), - [sym_identifier] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_AT_GT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3073), - [anon_sym_AT_AT_GT] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_DOT_LBRACK] = ACTIONS(3075), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3073), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3073), - [aux_sym_infix_op_token1] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_DOLLAR] = ACTIONS(3073), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3073), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), - [anon_sym_POUNDendif] = ACTIONS(3075), - [sym__newline] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1844] = { [sym_xml_doc] = STATE(1844), @@ -252258,94 +256917,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1844), [sym_fsi_directive_decl] = STATE(1844), [sym_preproc_line] = STATE(1844), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_DOT_DOT2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), - [sym__dedent] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4610), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_DOT_DOT] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [1845] = { [sym_xml_doc] = STATE(1845), @@ -252354,94 +257011,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1845), [sym_fsi_directive_decl] = STATE(1845), [sym_preproc_line] = STATE(1845), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(3987), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_AT_GT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4612), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1846] = { [sym_xml_doc] = STATE(1846), @@ -252450,94 +257105,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1846), [sym_fsi_directive_decl] = STATE(1846), [sym_preproc_line] = STATE(1846), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_DOT_DOT2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), - [sym__dedent] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1847] = { [sym_xml_doc] = STATE(1847), @@ -252546,94 +257199,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1847), [sym_fsi_directive_decl] = STATE(1847), [sym_preproc_line] = STATE(1847), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_DOT_DOT2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), - [sym__dedent] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3825), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_DOT_DOT2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), + [sym__dedent] = ACTIONS(3827), }, [1848] = { [sym_xml_doc] = STATE(1848), @@ -252642,94 +257293,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1848), [sym_fsi_directive_decl] = STATE(1848), [sym_preproc_line] = STATE(1848), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_DOT_DOT2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), - [sym__dedent] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_with] = ACTIONS(3836), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_DOT_DOT2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), + [sym__dedent] = ACTIONS(3838), }, [1849] = { [sym_xml_doc] = STATE(1849), @@ -252738,93 +257387,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1849), [sym_fsi_directive_decl] = STATE(1849), [sym_preproc_line] = STATE(1849), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3631), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_DOT_DOT2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), + [sym__dedent] = ACTIONS(3610), }, [1850] = { [sym_xml_doc] = STATE(1850), @@ -252833,93 +257481,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1850), [sym_fsi_directive_decl] = STATE(1850), [sym_preproc_line] = STATE(1850), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_DASH_GT] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_DOT_DOT] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_DOT_DOT2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1851] = { [sym_xml_doc] = STATE(1851), @@ -252928,93 +257575,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1851), [sym_fsi_directive_decl] = STATE(1851), [sym_preproc_line] = STATE(1851), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_as] = ACTIONS(3566), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3566), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_with] = ACTIONS(3840), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_DOT_DOT2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), + [sym__dedent] = ACTIONS(3842), }, [1852] = { [sym_xml_doc] = STATE(1852), @@ -253023,93 +257669,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1852), [sym_fsi_directive_decl] = STATE(1852), [sym_preproc_line] = STATE(1852), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_as] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4614), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [anon_sym_POUNDendif] = ACTIONS(3556), + [anon_sym_POUNDelse] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [1853] = { [sym_xml_doc] = STATE(1853), @@ -253118,93 +257763,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1853), [sym_fsi_directive_decl] = STATE(1853), [sym_preproc_line] = STATE(1853), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_as] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3238), + [aux_sym_decimal_token1] = ACTIONS(3180), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1854] = { [sym_xml_doc] = STATE(1854), @@ -253213,93 +257857,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1854), [sym_fsi_directive_decl] = STATE(1854), [sym_preproc_line] = STATE(1854), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_as] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1855] = { [sym_xml_doc] = STATE(1855), @@ -253308,93 +257951,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1855), [sym_fsi_directive_decl] = STATE(1855), [sym_preproc_line] = STATE(1855), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [anon_sym_POUNDelse] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1856] = { [sym_xml_doc] = STATE(1856), @@ -253403,93 +258045,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1856), [sym_fsi_directive_decl] = STATE(1856), [sym_preproc_line] = STATE(1856), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_as] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1857] = { [sym_xml_doc] = STATE(1857), @@ -253498,93 +258139,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1857), [sym_fsi_directive_decl] = STATE(1857), [sym_preproc_line] = STATE(1857), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_as] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_AT_GT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1858] = { [sym_xml_doc] = STATE(1858), @@ -253593,93 +258233,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1858), [sym_fsi_directive_decl] = STATE(1858), [sym_preproc_line] = STATE(1858), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [aux_sym_sequential_expression_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(3831), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_DOT_DOT2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4616), }, [1859] = { [sym_xml_doc] = STATE(1859), @@ -253688,93 +258327,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1859), [sym_fsi_directive_decl] = STATE(1859), [sym_preproc_line] = STATE(1859), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_DASH_GT] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_DOT_DOT] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_DASH_GT] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1860] = { [sym_xml_doc] = STATE(1860), @@ -253783,93 +258421,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1860), [sym_fsi_directive_decl] = STATE(1860), [sym_preproc_line] = STATE(1860), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_as] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_with] = ACTIONS(3643), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_as] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [1861] = { [sym_xml_doc] = STATE(1861), @@ -253878,93 +258515,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1861), [sym_fsi_directive_decl] = STATE(1861), [sym_preproc_line] = STATE(1861), - [aux_sym_long_identifier_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_as] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_with] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1862] = { [sym_xml_doc] = STATE(1862), @@ -253973,93 +258609,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1862), [sym_fsi_directive_decl] = STATE(1862), [sym_preproc_line] = STATE(1862), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_as] = ACTIONS(3639), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_with] = ACTIONS(3639), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3216), + [aux_sym_decimal_token1] = ACTIONS(3056), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1863] = { [sym_xml_doc] = STATE(1863), @@ -254068,948 +258703,938 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1863), [sym_fsi_directive_decl] = STATE(1863), [sym_preproc_line] = STATE(1863), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_as] = ACTIONS(3635), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_with] = ACTIONS(3635), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), - }, - [1864] = { - [sym_xml_doc] = STATE(1864), - [sym_block_comment] = STATE(1864), - [sym_line_comment] = STATE(1864), - [sym_compiler_directive_decl] = STATE(1864), - [sym_fsi_directive_decl] = STATE(1864), - [sym_preproc_line] = STATE(1864), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_DASH_GT] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), - }, - [1865] = { - [sym_xml_doc] = STATE(1865), - [sym_block_comment] = STATE(1865), - [sym_line_comment] = STATE(1865), - [sym_compiler_directive_decl] = STATE(1865), - [sym_fsi_directive_decl] = STATE(1865), - [sym_preproc_line] = STATE(1865), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_DASH_GT] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_DOT_DOT] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), - }, - [1866] = { - [sym_xml_doc] = STATE(1866), - [sym_block_comment] = STATE(1866), - [sym_line_comment] = STATE(1866), - [sym_compiler_directive_decl] = STATE(1866), - [sym_fsi_directive_decl] = STATE(1866), - [sym_preproc_line] = STATE(1866), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_DASH_GT] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_DOT_DOT] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - }, - [1867] = { - [sym_xml_doc] = STATE(1867), - [sym_block_comment] = STATE(1867), - [sym_line_comment] = STATE(1867), - [sym_compiler_directive_decl] = STATE(1867), - [sym_fsi_directive_decl] = STATE(1867), - [sym_preproc_line] = STATE(1867), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [anon_sym_EQ2] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - }, - [1868] = { - [sym_xml_doc] = STATE(1868), - [sym_block_comment] = STATE(1868), - [sym_line_comment] = STATE(1868), - [sym_compiler_directive_decl] = STATE(1868), - [sym_fsi_directive_decl] = STATE(1868), - [sym_preproc_line] = STATE(1868), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [anon_sym_POUNDendif] = ACTIONS(3437), - [anon_sym_POUNDelse] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), - }, - [1869] = { - [sym_xml_doc] = STATE(1869), - [sym_block_comment] = STATE(1869), - [sym_line_comment] = STATE(1869), - [sym_compiler_directive_decl] = STATE(1869), - [sym_fsi_directive_decl] = STATE(1869), - [sym_preproc_line] = STATE(1869), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [anon_sym_POUNDendif] = ACTIONS(3441), - [anon_sym_POUNDelse] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), - }, - [1870] = { - [sym_xml_doc] = STATE(1870), - [sym_block_comment] = STATE(1870), - [sym_line_comment] = STATE(1870), - [sym_compiler_directive_decl] = STATE(1870), - [sym_fsi_directive_decl] = STATE(1870), - [sym_preproc_line] = STATE(1870), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_as] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3541), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), - }, - [1871] = { - [sym_xml_doc] = STATE(1871), - [sym_block_comment] = STATE(1871), - [sym_line_comment] = STATE(1871), - [sym_compiler_directive_decl] = STATE(1871), - [sym_fsi_directive_decl] = STATE(1871), - [sym_preproc_line] = STATE(1871), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), - }, - [1872] = { + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4619), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [anon_sym_POUNDendif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), + }, + [1864] = { + [sym_xml_doc] = STATE(1864), + [sym_block_comment] = STATE(1864), + [sym_line_comment] = STATE(1864), + [sym_compiler_directive_decl] = STATE(1864), + [sym_fsi_directive_decl] = STATE(1864), + [sym_preproc_line] = STATE(1864), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), + }, + [1865] = { + [sym_xml_doc] = STATE(1865), + [sym_block_comment] = STATE(1865), + [sym_line_comment] = STATE(1865), + [sym_compiler_directive_decl] = STATE(1865), + [sym_fsi_directive_decl] = STATE(1865), + [sym_preproc_line] = STATE(1865), + [aux_sym_long_identifier_repeat1] = STATE(1802), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3261), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), + }, + [1866] = { + [sym_xml_doc] = STATE(1866), + [sym_block_comment] = STATE(1866), + [sym_line_comment] = STATE(1866), + [sym_compiler_directive_decl] = STATE(1866), + [sym_fsi_directive_decl] = STATE(1866), + [sym_preproc_line] = STATE(1866), + [aux_sym_rules_repeat1] = STATE(1810), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4625), + }, + [1867] = { + [sym_xml_doc] = STATE(1867), + [sym_block_comment] = STATE(1867), + [sym_line_comment] = STATE(1867), + [sym_compiler_directive_decl] = STATE(1867), + [sym_fsi_directive_decl] = STATE(1867), + [sym_preproc_line] = STATE(1867), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [anon_sym_POUNDendif] = ACTIONS(3529), + [anon_sym_POUNDelse] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), + }, + [1868] = { + [sym_xml_doc] = STATE(1868), + [sym_block_comment] = STATE(1868), + [sym_line_comment] = STATE(1868), + [sym_compiler_directive_decl] = STATE(1868), + [sym_fsi_directive_decl] = STATE(1868), + [sym_preproc_line] = STATE(1868), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4453), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_DASH_GT] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), + }, + [1869] = { + [sym_xml_doc] = STATE(1869), + [sym_block_comment] = STATE(1869), + [sym_line_comment] = STATE(1869), + [sym_compiler_directive_decl] = STATE(1869), + [sym_fsi_directive_decl] = STATE(1869), + [sym_preproc_line] = STATE(1869), + [aux_sym_rules_repeat1] = STATE(1904), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_AT_AT_GT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4630), + }, + [1870] = { + [sym_xml_doc] = STATE(1870), + [sym_block_comment] = STATE(1870), + [sym_line_comment] = STATE(1870), + [sym_compiler_directive_decl] = STATE(1870), + [sym_fsi_directive_decl] = STATE(1870), + [sym_preproc_line] = STATE(1870), + [aux_sym_rules_repeat1] = STATE(1907), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_AT_AT_GT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4630), + }, + [1871] = { + [sym_xml_doc] = STATE(1871), + [sym_block_comment] = STATE(1871), + [sym_line_comment] = STATE(1871), + [sym_compiler_directive_decl] = STATE(1871), + [sym_fsi_directive_decl] = STATE(1871), + [sym_preproc_line] = STATE(1871), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_AT_AT_GT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), + }, + [1872] = { [sym_xml_doc] = STATE(1872), [sym_block_comment] = STATE(1872), [sym_line_comment] = STATE(1872), [sym_compiler_directive_decl] = STATE(1872), [sym_fsi_directive_decl] = STATE(1872), [sym_preproc_line] = STATE(1872), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [anon_sym_POUNDendif] = ACTIONS(3459), - [anon_sym_POUNDelse] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [aux_sym_long_identifier_repeat1] = STATE(1872), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4633), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [anon_sym_POUNDelse] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [1873] = { [sym_xml_doc] = STATE(1873), @@ -255018,93 +259643,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1873), [sym_fsi_directive_decl] = STATE(1873), [sym_preproc_line] = STATE(1873), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3245), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [aux_sym_sequential_expression_repeat1] = STATE(1873), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3829), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4636), + [sym__dedent] = ACTIONS(3831), }, [1874] = { [sym_xml_doc] = STATE(1874), @@ -255113,93 +259737,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1874), [sym_fsi_directive_decl] = STATE(1874), [sym_preproc_line] = STATE(1874), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [aux_sym_sequential_expression_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_RBRACK] = ACTIONS(3614), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_DOT_DOT2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [1875] = { [sym_xml_doc] = STATE(1875), @@ -255208,93 +259831,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1875), [sym_fsi_directive_decl] = STATE(1875), [sym_preproc_line] = STATE(1875), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [anon_sym_POUNDendif] = ACTIONS(3475), - [anon_sym_POUNDelse] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_AT_GT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(3234), + [aux_sym_decimal_token1] = ACTIONS(3084), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [1876] = { [sym_xml_doc] = STATE(1876), @@ -255303,93 +259925,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1876), [sym_fsi_directive_decl] = STATE(1876), [sym_preproc_line] = STATE(1876), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_as] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_as] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_with] = ACTIONS(3523), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [1877] = { [sym_xml_doc] = STATE(1877), @@ -255398,93 +260019,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1877), [sym_fsi_directive_decl] = STATE(1877), [sym_preproc_line] = STATE(1877), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [anon_sym_POUNDendif] = ACTIONS(3487), - [anon_sym_POUNDelse] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [anon_sym_POUNDendif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [1878] = { [sym_xml_doc] = STATE(1878), @@ -255493,93 +260113,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1878), [sym_fsi_directive_decl] = STATE(1878), [sym_preproc_line] = STATE(1878), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [anon_sym_POUNDendif] = ACTIONS(3491), - [anon_sym_POUNDelse] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_DASH_GT] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1879] = { [sym_xml_doc] = STATE(1879), @@ -255588,93 +260207,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1879), [sym_fsi_directive_decl] = STATE(1879), [sym_preproc_line] = STATE(1879), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [anon_sym_POUNDendif] = ACTIONS(3495), - [anon_sym_POUNDelse] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1880] = { [sym_xml_doc] = STATE(1880), @@ -255683,93 +260301,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1880), [sym_fsi_directive_decl] = STATE(1880), [sym_preproc_line] = STATE(1880), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [anon_sym_POUNDendif] = ACTIONS(3499), - [anon_sym_POUNDelse] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_AT_AT_GT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1881] = { [sym_xml_doc] = STATE(1881), @@ -255778,93 +260395,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1881), [sym_fsi_directive_decl] = STATE(1881), [sym_preproc_line] = STATE(1881), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [anon_sym_POUNDendif] = ACTIONS(3518), - [anon_sym_POUNDelse] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_as] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), + [sym__dedent] = ACTIONS(3849), }, [1882] = { [sym_xml_doc] = STATE(1882), @@ -255873,93 +260489,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1882), [sym_fsi_directive_decl] = STATE(1882), [sym_preproc_line] = STATE(1882), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_as] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_as] = ACTIONS(3533), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [1883] = { [sym_xml_doc] = STATE(1883), @@ -255968,93 +260583,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1883), [sym_fsi_directive_decl] = STATE(1883), [sym_preproc_line] = STATE(1883), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4639), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_DASH_GT] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [1884] = { [sym_xml_doc] = STATE(1884), @@ -256063,93 +260677,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1884), [sym_fsi_directive_decl] = STATE(1884), [sym_preproc_line] = STATE(1884), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [aux_sym_long_identifier_repeat1] = STATE(1840), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_EQ2] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [1885] = { [sym_xml_doc] = STATE(1885), @@ -256158,93 +260771,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1885), [sym_fsi_directive_decl] = STATE(1885), [sym_preproc_line] = STATE(1885), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), + [sym__dedent] = ACTIONS(3865), }, [1886] = { [sym_xml_doc] = STATE(1886), @@ -256253,93 +260865,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1886), [sym_fsi_directive_decl] = STATE(1886), [sym_preproc_line] = STATE(1886), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_with] = ACTIONS(3878), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), + [sym__dedent] = ACTIONS(3880), }, [1887] = { [sym_xml_doc] = STATE(1887), @@ -256348,93 +260959,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1887), [sym_fsi_directive_decl] = STATE(1887), [sym_preproc_line] = STATE(1887), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_as] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [aux_sym_sequential_expression_repeat1] = STATE(1768), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [anon_sym_POUNDendif] = ACTIONS(3614), + [anon_sym_POUNDelse] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [1888] = { [sym_xml_doc] = STATE(1888), @@ -256443,93 +261053,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1888), [sym_fsi_directive_decl] = STATE(1888), [sym_preproc_line] = STATE(1888), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3748), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [anon_sym_POUNDendif] = ACTIONS(3035), - [anon_sym_POUNDelse] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_as] = ACTIONS(3884), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_with] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), + [sym__dedent] = ACTIONS(3886), }, [1889] = { [sym_xml_doc] = STATE(1889), @@ -256538,93 +261147,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1889), [sym_fsi_directive_decl] = STATE(1889), [sym_preproc_line] = STATE(1889), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [anon_sym_POUNDendif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1890] = { [sym_xml_doc] = STATE(1890), @@ -256633,93 +261241,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1890), [sym_fsi_directive_decl] = STATE(1890), [sym_preproc_line] = STATE(1890), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_as] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_with] = ACTIONS(3888), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), + [sym__dedent] = ACTIONS(3890), }, [1891] = { [sym_xml_doc] = STATE(1891), @@ -256728,93 +261335,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1891), [sym_fsi_directive_decl] = STATE(1891), [sym_preproc_line] = STATE(1891), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [anon_sym_POUNDendif] = ACTIONS(3035), - [anon_sym_POUNDelse] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_as] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_with] = ACTIONS(3840), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), + [sym__dedent] = ACTIONS(3842), }, [1892] = { [sym_xml_doc] = STATE(1892), @@ -256823,93 +261429,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1892), [sym_fsi_directive_decl] = STATE(1892), [sym_preproc_line] = STATE(1892), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), + [sym__dedent] = ACTIONS(3897), }, [1893] = { [sym_xml_doc] = STATE(1893), @@ -256918,93 +261523,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1893), [sym_fsi_directive_decl] = STATE(1893), [sym_preproc_line] = STATE(1893), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [anon_sym_POUNDendif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_as] = ACTIONS(3899), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), + [sym__dedent] = ACTIONS(3901), }, [1894] = { [sym_xml_doc] = STATE(1894), @@ -257013,188 +261617,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1894), [sym_fsi_directive_decl] = STATE(1894), [sym_preproc_line] = STATE(1894), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_as] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), + [sym__dedent] = ACTIONS(2770), }, [1895] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5482), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2057), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(1895), [sym_block_comment] = STATE(1895), [sym_line_comment] = STATE(1895), [sym_compiler_directive_decl] = STATE(1895), [sym_fsi_directive_decl] = STATE(1895), [sym_preproc_line] = STATE(1895), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [anon_sym_POUNDendif] = ACTIONS(3415), - [anon_sym_POUNDelse] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4645), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_LT2] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [1896] = { [sym_xml_doc] = STATE(1896), @@ -257203,93 +261805,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1896), [sym_fsi_directive_decl] = STATE(1896), [sym_preproc_line] = STATE(1896), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_as] = ACTIONS(3906), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_with] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), + [sym__dedent] = ACTIONS(3908), }, [1897] = { [sym_xml_doc] = STATE(1897), @@ -257298,386 +261899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1897), [sym_fsi_directive_decl] = STATE(1897), [sym_preproc_line] = STATE(1897), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_as] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), - }, - [1898] = { - [sym_xml_doc] = STATE(1898), - [sym_block_comment] = STATE(1898), - [sym_line_comment] = STATE(1898), - [sym_compiler_directive_decl] = STATE(1898), - [sym_fsi_directive_decl] = STATE(1898), - [sym_preproc_line] = STATE(1898), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_as] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), - }, - [1899] = { - [sym_xml_doc] = STATE(1899), - [sym_block_comment] = STATE(1899), - [sym_line_comment] = STATE(1899), - [sym_compiler_directive_decl] = STATE(1899), - [sym_fsi_directive_decl] = STATE(1899), - [sym_preproc_line] = STATE(1899), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_as] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), - }, - [1900] = { - [sym_xml_doc] = STATE(1900), - [sym_block_comment] = STATE(1900), - [sym_line_comment] = STATE(1900), - [sym_compiler_directive_decl] = STATE(1900), - [sym_fsi_directive_decl] = STATE(1900), - [sym_preproc_line] = STATE(1900), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [anon_sym_POUNDendif] = ACTIONS(3596), - [anon_sym_POUNDelse] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), - }, - [1901] = { - [sym_xml_doc] = STATE(1901), - [sym_block_comment] = STATE(1901), - [sym_line_comment] = STATE(1901), - [sym_compiler_directive_decl] = STATE(1901), - [sym_fsi_directive_decl] = STATE(1901), - [sym_preproc_line] = STATE(1901), [sym_identifier] = ACTIONS(3598), [anon_sym_EQ] = ACTIONS(3600), [anon_sym_COLON] = ACTIONS(3598), @@ -257685,6 +261906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(3598), [anon_sym_let] = ACTIONS(3598), [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3598), [anon_sym_LPAREN] = ACTIONS(3598), [anon_sym_COMMA] = ACTIONS(3600), [anon_sym_null] = ACTIONS(3598), @@ -257695,7 +261917,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3598), [anon_sym_LBRACK_PIPE] = ACTIONS(3600), [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3598), [anon_sym_new] = ACTIONS(3598), [anon_sym_return_BANG] = ACTIONS(3600), [anon_sym_yield] = ACTIONS(3598), @@ -257704,10 +261930,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(3598), [anon_sym_upcast] = ACTIONS(3598), [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), [anon_sym_COLON_GT] = ACTIONS(3600), [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), [anon_sym_for] = ACTIONS(3598), @@ -257720,7 +261942,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(3598), [anon_sym_LT_DASH] = ACTIONS(3598), [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), [anon_sym_LT] = ACTIONS(3600), [anon_sym_use] = ACTIONS(3598), [anon_sym_use_BANG] = ACTIONS(3600), @@ -257762,9 +261983,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(3600), - [anon_sym_POUNDendif] = ACTIONS(3600), - [anon_sym_POUNDelse] = ACTIONS(3600), [sym__newline] = ACTIONS(3600), + [sym__dedent] = ACTIONS(3600), + }, + [1898] = { + [sym_xml_doc] = STATE(1898), + [sym_block_comment] = STATE(1898), + [sym_line_comment] = STATE(1898), + [sym_compiler_directive_decl] = STATE(1898), + [sym_fsi_directive_decl] = STATE(1898), + [sym_preproc_line] = STATE(1898), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), + [sym__dedent] = ACTIONS(3703), + }, + [1899] = { + [sym_xml_doc] = STATE(1899), + [sym_block_comment] = STATE(1899), + [sym_line_comment] = STATE(1899), + [sym_compiler_directive_decl] = STATE(1899), + [sym_fsi_directive_decl] = STATE(1899), + [sym_preproc_line] = STATE(1899), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_with] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), + [sym__dedent] = ACTIONS(3916), + }, + [1900] = { + [sym_xml_doc] = STATE(1900), + [sym_block_comment] = STATE(1900), + [sym_line_comment] = STATE(1900), + [sym_compiler_directive_decl] = STATE(1900), + [sym_fsi_directive_decl] = STATE(1900), + [sym_preproc_line] = STATE(1900), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_as] = ACTIONS(3925), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), + [sym__dedent] = ACTIONS(3927), + }, + [1901] = { + [sym_xml_doc] = STATE(1901), + [sym_block_comment] = STATE(1901), + [sym_line_comment] = STATE(1901), + [sym_compiler_directive_decl] = STATE(1901), + [sym_fsi_directive_decl] = STATE(1901), + [sym_preproc_line] = STATE(1901), + [aux_sym_long_identifier_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4677), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_DASH_GT] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [1902] = { [sym_xml_doc] = STATE(1902), @@ -257773,93 +262369,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1902), [sym_fsi_directive_decl] = STATE(1902), [sym_preproc_line] = STATE(1902), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [anon_sym_POUNDendif] = ACTIONS(3608), - [anon_sym_POUNDelse] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_as] = ACTIONS(3836), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_with] = ACTIONS(3836), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), + [sym__dedent] = ACTIONS(3838), }, [1903] = { [sym_xml_doc] = STATE(1903), @@ -257868,93 +262463,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1903), [sym_fsi_directive_decl] = STATE(1903), [sym_preproc_line] = STATE(1903), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [anon_sym_POUNDendif] = ACTIONS(3612), - [anon_sym_POUNDelse] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3933), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), + [sym__dedent] = ACTIONS(3935), }, [1904] = { [sym_xml_doc] = STATE(1904), @@ -257963,93 +262557,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1904), [sym_fsi_directive_decl] = STATE(1904), [sym_preproc_line] = STATE(1904), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [anon_sym_POUNDendif] = ACTIONS(3616), - [anon_sym_POUNDelse] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [aux_sym_rules_repeat1] = STATE(1907), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_AT_AT_GT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4681), }, [1905] = { [sym_xml_doc] = STATE(1905), @@ -258058,93 +262651,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1905), [sym_fsi_directive_decl] = STATE(1905), [sym_preproc_line] = STATE(1905), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_as] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_as] = ACTIONS(3825), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3825), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), + [sym__dedent] = ACTIONS(3827), }, [1906] = { [sym_xml_doc] = STATE(1906), @@ -258153,93 +262745,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1906), [sym_fsi_directive_decl] = STATE(1906), [sym_preproc_line] = STATE(1906), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_DASH_GT] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_DOT_DOT2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), + [sym__dedent] = ACTIONS(3312), }, [1907] = { [sym_xml_doc] = STATE(1907), @@ -258248,93 +262839,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1907), [sym_fsi_directive_decl] = STATE(1907), [sym_preproc_line] = STATE(1907), - [aux_sym_long_identifier_repeat1] = STATE(1907), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_rules_repeat1] = STATE(1907), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4684), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_AT_AT_GT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4687), }, [1908] = { [sym_xml_doc] = STATE(1908), @@ -258343,93 +262933,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1908), [sym_fsi_directive_decl] = STATE(1908), [sym_preproc_line] = STATE(1908), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_DASH_GT] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_DOT_DOT] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3802), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_with] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), + [sym__dedent] = ACTIONS(3804), }, [1909] = { [sym_xml_doc] = STATE(1909), @@ -258438,93 +263027,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1909), [sym_fsi_directive_decl] = STATE(1909), [sym_preproc_line] = STATE(1909), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_as] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_DOT_DOT2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), + [sym__dedent] = ACTIONS(3849), }, [1910] = { [sym_xml_doc] = STATE(1910), @@ -258533,93 +263121,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1910), [sym_fsi_directive_decl] = STATE(1910), [sym_preproc_line] = STATE(1910), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [anon_sym_POUNDendif] = ACTIONS(3547), - [anon_sym_POUNDelse] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_AT_AT_GT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1911] = { [sym_xml_doc] = STATE(1911), @@ -258628,93 +263215,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1911), [sym_fsi_directive_decl] = STATE(1911), [sym_preproc_line] = STATE(1911), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [anon_sym_POUNDendif] = ACTIONS(3403), - [anon_sym_POUNDelse] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [aux_sym_sequential_expression_repeat1] = STATE(1911), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_as] = ACTIONS(3829), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_with] = ACTIONS(3829), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4690), }, [1912] = { [sym_xml_doc] = STATE(1912), @@ -258723,93 +263309,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1912), [sym_fsi_directive_decl] = STATE(1912), [sym_preproc_line] = STATE(1912), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_as] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_DOT_DOT] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [1913] = { [sym_xml_doc] = STATE(1913), @@ -258818,93 +263403,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1913), [sym_fsi_directive_decl] = STATE(1913), [sym_preproc_line] = STATE(1913), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [anon_sym_POUNDendif] = ACTIONS(3633), - [anon_sym_POUNDelse] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_with] = ACTIONS(3798), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), + [sym__dedent] = ACTIONS(3800), }, [1914] = { [sym_xml_doc] = STATE(1914), @@ -258913,93 +263497,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1914), [sym_fsi_directive_decl] = STATE(1914), [sym_preproc_line] = STATE(1914), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [anon_sym_POUNDendif] = ACTIONS(3637), - [anon_sym_POUNDelse] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_DOT_DOT2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), + [sym__dedent] = ACTIONS(3865), }, [1915] = { [sym_xml_doc] = STATE(1915), @@ -259008,93 +263591,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1915), [sym_fsi_directive_decl] = STATE(1915), [sym_preproc_line] = STATE(1915), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [anon_sym_POUNDendif] = ACTIONS(3641), - [anon_sym_POUNDelse] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_AT_AT_GT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4693), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1916] = { [sym_xml_doc] = STATE(1916), @@ -259103,93 +263685,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1916), [sym_fsi_directive_decl] = STATE(1916), [sym_preproc_line] = STATE(1916), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [anon_sym_POUNDendif] = ACTIONS(3645), - [anon_sym_POUNDelse] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_with] = ACTIONS(3878), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_DOT_DOT2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), + [sym__dedent] = ACTIONS(3880), }, [1917] = { [sym_xml_doc] = STATE(1917), @@ -259198,93 +263779,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1917), [sym_fsi_directive_decl] = STATE(1917), [sym_preproc_line] = STATE(1917), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_AT_GT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1918] = { [sym_xml_doc] = STATE(1918), @@ -259293,93 +263873,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1918), [sym_fsi_directive_decl] = STATE(1918), [sym_preproc_line] = STATE(1918), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [anon_sym_POUNDendif] = ACTIONS(3623), - [anon_sym_POUNDelse] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [aux_sym_rules_repeat1] = STATE(1918), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4698), }, [1919] = { [sym_xml_doc] = STATE(1919), @@ -259388,93 +263967,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1919), [sym_fsi_directive_decl] = STATE(1919), [sym_preproc_line] = STATE(1919), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3419), + [anon_sym_COLON] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3417), + [anon_sym_COLON_QMARK] = ACTIONS(3417), + [anon_sym_COLON_COLON] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_AT_GT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_COLON_GT] = ACTIONS(3419), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_LT_DASH] = ACTIONS(3417), + [anon_sym_DOT_LBRACK] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3417), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3417), + [anon_sym_DASH_DOT] = ACTIONS(3417), + [anon_sym_PERCENT] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3417), + [aux_sym_infix_op_token1] = ACTIONS(3417), + [anon_sym_PIPE_PIPE] = ACTIONS(3417), + [anon_sym_BANG_EQ] = ACTIONS(3417), + [anon_sym_COLON_EQ] = ACTIONS(3419), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), + [sym_int] = ACTIONS(4701), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + [sym__newline] = ACTIONS(3419), }, [1920] = { [sym_xml_doc] = STATE(1920), @@ -259483,93 +264061,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1920), [sym_fsi_directive_decl] = STATE(1920), [sym_preproc_line] = STATE(1920), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_with] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_DOT_DOT2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), + [sym__dedent] = ACTIONS(3886), }, [1921] = { [sym_xml_doc] = STATE(1921), @@ -259578,93 +264155,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1921), [sym_fsi_directive_decl] = STATE(1921), [sym_preproc_line] = STATE(1921), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [aux_sym_sequential_expression_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_DASH_GT] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_DOT_DOT] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [1922] = { [sym_xml_doc] = STATE(1922), @@ -259673,93 +264249,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1922), [sym_fsi_directive_decl] = STATE(1922), [sym_preproc_line] = STATE(1922), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_DASH_GT] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_with] = ACTIONS(3888), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_DOT_DOT2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), + [sym__dedent] = ACTIONS(3890), }, [1923] = { [sym_xml_doc] = STATE(1923), @@ -259768,93 +264343,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1923), [sym_fsi_directive_decl] = STATE(1923), [sym_preproc_line] = STATE(1923), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3810), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_with] = ACTIONS(3794), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), + [sym__dedent] = ACTIONS(3796), }, [1924] = { [sym_xml_doc] = STATE(1924), @@ -259863,93 +264437,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1924), [sym_fsi_directive_decl] = STATE(1924), [sym_preproc_line] = STATE(1924), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_DASH_GT] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [aux_sym_sequential_expression_repeat1] = STATE(1924), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_DOT_DOT2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4703), + [sym__dedent] = ACTIONS(3831), }, [1925] = { [sym_xml_doc] = STATE(1925), @@ -259958,93 +264531,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1925), [sym_fsi_directive_decl] = STATE(1925), [sym_preproc_line] = STATE(1925), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_as] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3545), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [aux_sym_rules_repeat1] = STATE(1918), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [anon_sym_POUNDendif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4708), }, [1926] = { [sym_xml_doc] = STATE(1926), @@ -260053,93 +264625,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1926), [sym_fsi_directive_decl] = STATE(1926), [sym_preproc_line] = STATE(1926), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3941), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), + [sym__dedent] = ACTIONS(3943), }, [1927] = { [sym_xml_doc] = STATE(1927), @@ -260148,93 +264719,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1927), [sym_fsi_directive_decl] = STATE(1927), [sym_preproc_line] = STATE(1927), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), + [sym__dedent] = ACTIONS(3947), }, [1928] = { [sym_xml_doc] = STATE(1928), @@ -260243,93 +264813,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1928), [sym_fsi_directive_decl] = STATE(1928), [sym_preproc_line] = STATE(1928), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [anon_sym_POUNDendif] = ACTIONS(3536), - [anon_sym_POUNDelse] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3949), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), + [sym__dedent] = ACTIONS(3951), }, [1929] = { [sym_xml_doc] = STATE(1929), @@ -260338,93 +264907,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1929), [sym_fsi_directive_decl] = STATE(1929), [sym_preproc_line] = STATE(1929), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_as] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3953), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), + [sym__dedent] = ACTIONS(3955), }, [1930] = { [sym_xml_doc] = STATE(1930), @@ -260433,93 +265001,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1930), [sym_fsi_directive_decl] = STATE(1930), [sym_preproc_line] = STATE(1930), - [aux_sym_sequential_expression_repeat1] = STATE(2099), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3957), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), + [sym__dedent] = ACTIONS(3959), }, [1931] = { [sym_xml_doc] = STATE(1931), @@ -260528,93 +265095,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1931), [sym_fsi_directive_decl] = STATE(1931), [sym_preproc_line] = STATE(1931), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_DOT_DOT2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), + [sym__dedent] = ACTIONS(3897), }, [1932] = { [sym_xml_doc] = STATE(1932), @@ -260623,93 +265189,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1932), [sym_fsi_directive_decl] = STATE(1932), [sym_preproc_line] = STATE(1932), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), + [sym__dedent] = ACTIONS(3644), }, [1933] = { [sym_xml_doc] = STATE(1933), @@ -260718,93 +265283,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1933), [sym_fsi_directive_decl] = STATE(1933), [sym_preproc_line] = STATE(1933), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_DOT_DOT2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), + [sym__dedent] = ACTIONS(3901), }, [1934] = { [sym_xml_doc] = STATE(1934), @@ -260813,93 +265377,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1934), [sym_fsi_directive_decl] = STATE(1934), [sym_preproc_line] = STATE(1934), - [aux_sym_long_identifier_repeat1] = STATE(1861), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [anon_sym_POUNDendif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), + [sym__dedent] = ACTIONS(3963), }, [1935] = { [sym_xml_doc] = STATE(1935), @@ -260908,93 +265471,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1935), [sym_fsi_directive_decl] = STATE(1935), [sym_preproc_line] = STATE(1935), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_DASH_GT] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_as] = ACTIONS(3965), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), + [sym__dedent] = ACTIONS(3967), }, [1936] = { [sym_xml_doc] = STATE(1936), @@ -261003,93 +265565,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1936), [sym_fsi_directive_decl] = STATE(1936), [sym_preproc_line] = STATE(1936), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), + [sym__dedent] = ACTIONS(3971), }, [1937] = { [sym_xml_doc] = STATE(1937), @@ -261098,93 +265659,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1937), [sym_fsi_directive_decl] = STATE(1937), [sym_preproc_line] = STATE(1937), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3037), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [anon_sym_EQ2] = ACTIONS(4102), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_as] = ACTIONS(3790), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_with] = ACTIONS(3790), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), + [sym__dedent] = ACTIONS(3792), }, [1938] = { [sym_xml_doc] = STATE(1938), @@ -261193,93 +265753,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1938), [sym_fsi_directive_decl] = STATE(1938), [sym_preproc_line] = STATE(1938), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_DASH_GT] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_DOT_DOT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_with] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_DOT_DOT2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), + [sym__dedent] = ACTIONS(3908), }, [1939] = { [sym_xml_doc] = STATE(1939), @@ -261288,93 +265847,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1939), [sym_fsi_directive_decl] = STATE(1939), [sym_preproc_line] = STATE(1939), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [anon_sym_POUNDendif] = ACTIONS(3592), - [anon_sym_POUNDelse] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_DOT_DOT2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), + [sym__dedent] = ACTIONS(3927), }, [1940] = { [sym_xml_doc] = STATE(1940), @@ -261383,93 +265941,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1940), [sym_fsi_directive_decl] = STATE(1940), [sym_preproc_line] = STATE(1940), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [anon_sym_POUNDendif] = ACTIONS(3588), - [anon_sym_POUNDelse] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3933), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_DOT_DOT2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), + [sym__dedent] = ACTIONS(3935), }, [1941] = { [sym_xml_doc] = STATE(1941), @@ -261478,93 +266035,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1941), [sym_fsi_directive_decl] = STATE(1941), [sym_preproc_line] = STATE(1941), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [anon_sym_POUNDendif] = ACTIONS(3530), - [anon_sym_POUNDelse] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3786), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_with] = ACTIONS(3786), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), + [sym__dedent] = ACTIONS(3788), }, [1942] = { [sym_xml_doc] = STATE(1942), @@ -261573,93 +266129,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1942), [sym_fsi_directive_decl] = STATE(1942), [sym_preproc_line] = STATE(1942), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_DASH_GT] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [anon_sym_POUNDendif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1943] = { [sym_xml_doc] = STATE(1943), @@ -261668,93 +266223,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1943), [sym_fsi_directive_decl] = STATE(1943), [sym_preproc_line] = STATE(1943), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_DASH_GT] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_as] = ACTIONS(3973), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), + [sym__dedent] = ACTIONS(3975), }, [1944] = { [sym_xml_doc] = STATE(1944), @@ -261763,93 +266317,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1944), [sym_fsi_directive_decl] = STATE(1944), [sym_preproc_line] = STATE(1944), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [anon_sym_POUNDendif] = ACTIONS(3584), - [anon_sym_POUNDelse] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(3453), + [anon_sym_COLON] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_QMARK] = ACTIONS(3451), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_AT_GT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3451), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_COLON_GT] = ACTIONS(3453), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_LT_DASH] = ACTIONS(3451), + [anon_sym_DOT_LBRACK] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_or] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3451), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3451), + [anon_sym_DASH_DOT] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3451), + [aux_sym_infix_op_token1] = ACTIONS(3451), + [anon_sym_PIPE_PIPE] = ACTIONS(3451), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_COLON_EQ] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3451), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + [sym__newline] = ACTIONS(3453), }, [1945] = { [sym_xml_doc] = STATE(1945), @@ -261858,93 +266411,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1945), [sym_fsi_directive_decl] = STATE(1945), [sym_preproc_line] = STATE(1945), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [anon_sym_POUNDendif] = ACTIONS(3576), - [anon_sym_POUNDelse] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4711), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_GT] = ACTIONS(3507), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [1946] = { [sym_xml_doc] = STATE(1946), @@ -261953,93 +266505,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1946), [sym_fsi_directive_decl] = STATE(1946), [sym_preproc_line] = STATE(1946), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_DASH_GT] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_as] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), + [sym__dedent] = ACTIONS(3979), }, [1947] = { [sym_xml_doc] = STATE(1947), @@ -262048,93 +266599,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1947), [sym_fsi_directive_decl] = STATE(1947), [sym_preproc_line] = STATE(1947), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_DASH_GT] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_as] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3937), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), + [sym__dedent] = ACTIONS(3939), }, [1948] = { [sym_xml_doc] = STATE(1948), @@ -262143,93 +266693,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1948), [sym_fsi_directive_decl] = STATE(1948), [sym_preproc_line] = STATE(1948), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_DASH_GT] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_DOT_DOT2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [1949] = { [sym_xml_doc] = STATE(1949), @@ -262238,93 +266787,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1949), [sym_fsi_directive_decl] = STATE(1949), [sym_preproc_line] = STATE(1949), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_DASH_GT] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [aux_sym_rules_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(4713), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_AT_GT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(4716), }, [1950] = { [sym_xml_doc] = STATE(1950), @@ -262333,93 +266881,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1950), [sym_fsi_directive_decl] = STATE(1950), [sym_preproc_line] = STATE(1950), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [anon_sym_POUNDendif] = ACTIONS(3362), - [anon_sym_POUNDelse] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3929), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), + [sym__dedent] = ACTIONS(3931), }, [1951] = { [sym_xml_doc] = STATE(1951), @@ -262428,93 +266975,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1951), [sym_fsi_directive_decl] = STATE(1951), [sym_preproc_line] = STATE(1951), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3941), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_DOT_DOT2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), + [sym__dedent] = ACTIONS(3943), }, [1952] = { [sym_xml_doc] = STATE(1952), @@ -262523,93 +267069,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1952), [sym_fsi_directive_decl] = STATE(1952), [sym_preproc_line] = STATE(1952), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_as] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [aux_sym_rules_repeat1] = STATE(1918), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [anon_sym_POUNDendif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4719), }, [1953] = { [sym_xml_doc] = STATE(1953), @@ -262618,93 +267163,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1953), [sym_fsi_directive_decl] = STATE(1953), [sym_preproc_line] = STATE(1953), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_as] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [aux_sym_rules_repeat1] = STATE(1925), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [anon_sym_POUNDendif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4719), }, [1954] = { [sym_xml_doc] = STATE(1954), @@ -262713,93 +267257,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1954), [sym_fsi_directive_decl] = STATE(1954), [sym_preproc_line] = STATE(1954), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_DOT_DOT2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), + [sym__dedent] = ACTIONS(3947), }, [1955] = { [sym_xml_doc] = STATE(1955), @@ -262808,93 +267351,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1955), [sym_fsi_directive_decl] = STATE(1955), [sym_preproc_line] = STATE(1955), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_DASH_GT] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_DOT_DOT] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [aux_sym_rules_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_do] = ACTIONS(3463), + [anon_sym_let] = ACTIONS(3463), + [anon_sym_let_BANG] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3463), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_null] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3463), + [anon_sym_COLON_QMARK] = ACTIONS(3463), + [anon_sym_COLON_COLON] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_AMP] = ACTIONS(3463), + [anon_sym_LBRACK] = ACTIONS(3463), + [anon_sym_LBRACK_PIPE] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3463), + [anon_sym_LT_AT] = ACTIONS(3463), + [anon_sym_AT_GT] = ACTIONS(3463), + [anon_sym_LT_AT_AT] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3463), + [anon_sym_LBRACE_PIPE] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3463), + [anon_sym_return_BANG] = ACTIONS(3465), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_yield_BANG] = ACTIONS(3465), + [anon_sym_lazy] = ACTIONS(3463), + [anon_sym_assert] = ACTIONS(3463), + [anon_sym_upcast] = ACTIONS(3463), + [anon_sym_downcast] = ACTIONS(3463), + [anon_sym_COLON_GT] = ACTIONS(3465), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3465), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_fun] = ACTIONS(3463), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_match_BANG] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3463), + [anon_sym_DOT_LBRACK] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_use] = ACTIONS(3463), + [anon_sym_use_BANG] = ACTIONS(3465), + [anon_sym_do_BANG] = ACTIONS(3465), + [anon_sym_begin] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(3465), + [anon_sym_or] = ACTIONS(3463), + [aux_sym_char_token1] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3463), + [anon_sym_DQUOTE] = ACTIONS(3463), + [anon_sym_AT_DQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3465), + [sym_bool] = ACTIONS(3463), + [sym_unit] = ACTIONS(3463), + [anon_sym_LPAREN_PIPE] = ACTIONS(3463), + [sym_op_identifier] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_PLUS_DOT] = ACTIONS(3463), + [anon_sym_DASH_DOT] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_AMP_AMP] = ACTIONS(3463), + [anon_sym_TILDE] = ACTIONS(3465), + [aux_sym_prefix_op_token1] = ACTIONS(3463), + [aux_sym_infix_op_token1] = ACTIONS(3463), + [anon_sym_PIPE_PIPE] = ACTIONS(3463), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_COLON_EQ] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3463), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3463), + [sym_int] = ACTIONS(3463), + [sym_xint] = ACTIONS(3465), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3465), + [sym__newline] = ACTIONS(4724), }, [1956] = { [sym_xml_doc] = STATE(1956), @@ -262903,93 +267445,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1956), [sym_fsi_directive_decl] = STATE(1956), [sym_preproc_line] = STATE(1956), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_DASH_GT] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3949), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_DOT_DOT2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), + [sym__dedent] = ACTIONS(3951), }, [1957] = { [sym_xml_doc] = STATE(1957), @@ -262998,93 +267539,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1957), [sym_fsi_directive_decl] = STATE(1957), [sym_preproc_line] = STATE(1957), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [anon_sym_POUNDendif] = ACTIONS(3572), - [anon_sym_POUNDelse] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3953), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_DOT_DOT2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), + [sym__dedent] = ACTIONS(3955), }, [1958] = { [sym_xml_doc] = STATE(1958), @@ -263093,93 +267633,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1958), [sym_fsi_directive_decl] = STATE(1958), [sym_preproc_line] = STATE(1958), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [anon_sym_POUNDendif] = ACTIONS(3568), - [anon_sym_POUNDelse] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3957), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_DOT_DOT2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), + [sym__dedent] = ACTIONS(3959), }, [1959] = { [sym_xml_doc] = STATE(1959), @@ -263188,93 +267727,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1959), [sym_fsi_directive_decl] = STATE(1959), [sym_preproc_line] = STATE(1959), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [anon_sym_POUNDelse] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_as] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_with] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), + [sym__dedent] = ACTIONS(3784), }, [1960] = { [sym_xml_doc] = STATE(1960), @@ -263283,93 +267821,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1960), [sym_fsi_directive_decl] = STATE(1960), [sym_preproc_line] = STATE(1960), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [anon_sym_POUNDendif] = ACTIONS(3369), - [anon_sym_POUNDelse] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_as] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_with] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), + [sym__dedent] = ACTIONS(3780), }, [1961] = { [sym_xml_doc] = STATE(1961), @@ -263378,93 +267915,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1961), [sym_fsi_directive_decl] = STATE(1961), [sym_preproc_line] = STATE(1961), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [anon_sym_POUNDendif] = ACTIONS(3290), - [anon_sym_POUNDelse] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), + [sym__dedent] = ACTIONS(3923), }, [1962] = { [sym_xml_doc] = STATE(1962), @@ -263473,93 +268009,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1962), [sym_fsi_directive_decl] = STATE(1962), [sym_preproc_line] = STATE(1962), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_DASH_GT] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_with] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), + [sym__dedent] = ACTIONS(3912), }, [1963] = { [sym_xml_doc] = STATE(1963), @@ -263568,93 +268103,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1963), [sym_fsi_directive_decl] = STATE(1963), [sym_preproc_line] = STATE(1963), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_DASH_GT] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_DOT_DOT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3577), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), + [sym__dedent] = ACTIONS(3579), }, [1964] = { [sym_xml_doc] = STATE(1964), @@ -263663,93 +268197,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1964), [sym_fsi_directive_decl] = STATE(1964), [sym_preproc_line] = STATE(1964), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [anon_sym_POUNDendif] = ACTIONS(3381), - [anon_sym_POUNDelse] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_DASH_GT] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_DOT_DOT] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [1965] = { [sym_xml_doc] = STATE(1965), @@ -263758,93 +268291,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1965), [sym_fsi_directive_decl] = STATE(1965), [sym_preproc_line] = STATE(1965), - [aux_sym_long_identifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2953), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_AT_AT_GT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_elif] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1966] = { [sym_xml_doc] = STATE(1966), @@ -263853,93 +268385,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1966), [sym_fsi_directive_decl] = STATE(1966), [sym_preproc_line] = STATE(1966), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [anon_sym_POUNDendif] = ACTIONS(3385), - [anon_sym_POUNDelse] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [aux_sym_sequential_expression_repeat1] = STATE(1924), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_DOT_DOT2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), + [sym__dedent] = ACTIONS(3614), }, [1967] = { [sym_xml_doc] = STATE(1967), @@ -263948,93 +268479,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1967), [sym_fsi_directive_decl] = STATE(1967), [sym_preproc_line] = STATE(1967), - [aux_sym_long_identifier_repeat1] = STATE(1934), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [anon_sym_POUNDendif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_DASH_GT] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [1968] = { [sym_xml_doc] = STATE(1968), @@ -264043,93 +268573,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1968), [sym_fsi_directive_decl] = STATE(1968), [sym_preproc_line] = STATE(1968), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [anon_sym_POUNDendif] = ACTIONS(3407), - [anon_sym_POUNDelse] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_DOT_DOT2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), + [sym__dedent] = ACTIONS(3963), }, [1969] = { [sym_xml_doc] = STATE(1969), @@ -264138,93 +268667,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1969), [sym_fsi_directive_decl] = STATE(1969), [sym_preproc_line] = STATE(1969), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_as] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_DOT_DOT2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), + [sym__dedent] = ACTIONS(3967), }, [1970] = { [sym_xml_doc] = STATE(1970), @@ -264233,93 +268761,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1970), [sym_fsi_directive_decl] = STATE(1970), [sym_preproc_line] = STATE(1970), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_DASH_GT] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_DOT_DOT2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), + [sym__dedent] = ACTIONS(3971), }, [1971] = { [sym_xml_doc] = STATE(1971), @@ -264328,93 +268855,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1971), [sym_fsi_directive_decl] = STATE(1971), [sym_preproc_line] = STATE(1971), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4197), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_DOT_DOT2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), + [sym__dedent] = ACTIONS(3975), }, [1972] = { [sym_xml_doc] = STATE(1972), @@ -264423,93 +268949,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1972), [sym_fsi_directive_decl] = STATE(1972), [sym_preproc_line] = STATE(1972), - [aux_sym_sequential_expression_repeat1] = STATE(1972), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_GT] = ACTIONS(3501), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4199), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_DOT_DOT2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), + [sym__dedent] = ACTIONS(3979), }, [1973] = { [sym_xml_doc] = STATE(1973), @@ -264518,93 +269043,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1973), [sym_fsi_directive_decl] = STATE(1973), [sym_preproc_line] = STATE(1973), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_DASH_GT] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_DOT_DOT] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3937), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_DOT_DOT2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), + [sym__dedent] = ACTIONS(3939), }, [1974] = { [sym_xml_doc] = STATE(1974), @@ -264613,93 +269137,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1974), [sym_fsi_directive_decl] = STATE(1974), [sym_preproc_line] = STATE(1974), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4098), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_as] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_with] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), + [sym__dedent] = ACTIONS(3764), }, [1975] = { [sym_xml_doc] = STATE(1975), @@ -264708,93 +269231,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1975), [sym_fsi_directive_decl] = STATE(1975), [sym_preproc_line] = STATE(1975), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [anon_sym_POUNDendif] = ACTIONS(3510), - [anon_sym_POUNDelse] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_with] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), + [sym__dedent] = ACTIONS(3720), }, [1976] = { [sym_xml_doc] = STATE(1976), @@ -264803,93 +269325,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1976), [sym_fsi_directive_decl] = STATE(1976), [sym_preproc_line] = STATE(1976), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [anon_sym_POUNDendif] = ACTIONS(3467), - [anon_sym_POUNDelse] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_let_BANG] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_null] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3493), + [anon_sym_COLON_QMARK] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_LBRACK_PIPE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_LT_AT] = ACTIONS(3493), + [anon_sym_LT_AT_AT] = ACTIONS(3493), + [anon_sym_AT_AT_GT] = ACTIONS(3493), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_LBRACE_PIPE] = ACTIONS(3495), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_return_BANG] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_yield_BANG] = ACTIONS(3495), + [anon_sym_lazy] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_upcast] = ACTIONS(3493), + [anon_sym_downcast] = ACTIONS(3493), + [anon_sym_COLON_GT] = ACTIONS(3495), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_elif] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_fun] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_match_BANG] = ACTIONS(3495), + [anon_sym_function] = ACTIONS(3493), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_DOT_LBRACK] = ACTIONS(3495), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_use] = ACTIONS(3493), + [anon_sym_use_BANG] = ACTIONS(3495), + [anon_sym_do_BANG] = ACTIONS(3495), + [anon_sym_begin] = ACTIONS(3493), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [aux_sym_char_token1] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_AT_DQUOTE] = ACTIONS(3495), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), + [sym_bool] = ACTIONS(3493), + [sym_unit] = ACTIONS(3493), + [anon_sym_LPAREN_PIPE] = ACTIONS(3493), + [sym_op_identifier] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS_DOT] = ACTIONS(3493), + [anon_sym_DASH_DOT] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3495), + [aux_sym_prefix_op_token1] = ACTIONS(3493), + [aux_sym_infix_op_token1] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3493), + [anon_sym_BANG_EQ] = ACTIONS(3493), + [anon_sym_COLON_EQ] = ACTIONS(3495), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), + [sym_int] = ACTIONS(3493), + [sym_xint] = ACTIONS(3495), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3495), + [sym__newline] = ACTIONS(3495), }, [1977] = { [sym_xml_doc] = STATE(1977), @@ -264898,93 +269419,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1977), [sym_fsi_directive_decl] = STATE(1977), [sym_preproc_line] = STATE(1977), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [anon_sym_POUNDendif] = ACTIONS(3377), - [anon_sym_POUNDelse] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_as] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_with] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [sym__dedent] = ACTIONS(3772), }, [1978] = { [sym_xml_doc] = STATE(1978), @@ -264993,93 +269513,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1978), [sym_fsi_directive_decl] = STATE(1978), [sym_preproc_line] = STATE(1978), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_as] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_as] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_with] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), + [sym__dedent] = ACTIONS(3768), }, [1979] = { [sym_xml_doc] = STATE(1979), @@ -265088,93 +269607,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1979), [sym_fsi_directive_decl] = STATE(1979), [sym_preproc_line] = STATE(1979), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3929), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_DOT_DOT2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), + [sym__dedent] = ACTIONS(3931), }, [1980] = { [sym_xml_doc] = STATE(1980), @@ -265183,93 +269701,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1980), [sym_fsi_directive_decl] = STATE(1980), [sym_preproc_line] = STATE(1980), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [anon_sym_POUNDendif] = ACTIONS(3393), - [anon_sym_POUNDelse] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_as] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_with] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), + [sym__dedent] = ACTIONS(3748), }, [1981] = { [sym_xml_doc] = STATE(1981), @@ -265278,93 +269795,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1981), [sym_fsi_directive_decl] = STATE(1981), [sym_preproc_line] = STATE(1981), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_DASH_GT] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_DOT_DOT2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), + [sym__dedent] = ACTIONS(3923), }, [1982] = { [sym_xml_doc] = STATE(1982), @@ -265373,93 +269889,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1982), [sym_fsi_directive_decl] = STATE(1982), [sym_preproc_line] = STATE(1982), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [anon_sym_POUNDendif] = ACTIONS(3543), - [anon_sym_POUNDelse] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_as] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_with] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), + [sym__dedent] = ACTIONS(3714), }, [1983] = { [sym_xml_doc] = STATE(1983), @@ -265468,93 +269983,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1983), [sym_fsi_directive_decl] = STATE(1983), [sym_preproc_line] = STATE(1983), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [anon_sym_POUNDendif] = ACTIONS(3463), - [anon_sym_POUNDelse] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_with] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_DOT_DOT2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), + [sym__dedent] = ACTIONS(3912), }, [1984] = { [sym_xml_doc] = STATE(1984), @@ -265563,93 +270077,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1984), [sym_fsi_directive_decl] = STATE(1984), [sym_preproc_line] = STATE(1984), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_as] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [aux_sym_sequential_expression_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_DASH_GT] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_DOT_DOT] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4727), }, [1985] = { [sym_xml_doc] = STATE(1985), @@ -265658,93 +270171,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1985), [sym_fsi_directive_decl] = STATE(1985), [sym_preproc_line] = STATE(1985), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_as] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), + [sym__dedent] = ACTIONS(3740), }, [1986] = { [sym_xml_doc] = STATE(1986), @@ -265753,93 +270265,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1986), [sym_fsi_directive_decl] = STATE(1986), [sym_preproc_line] = STATE(1986), - [sym_identifier] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_let_BANG] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_COLON_QMARK] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_return_BANG] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_yield_BANG] = ACTIONS(3187), - [anon_sym_lazy] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_upcast] = ACTIONS(3185), - [anon_sym_downcast] = ACTIONS(3185), - [anon_sym_LT_AT] = ACTIONS(3185), - [anon_sym_AT_GT] = ACTIONS(3185), - [anon_sym_LT_AT_AT] = ACTIONS(3185), - [anon_sym_AT_AT_GT] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_match_BANG] = ACTIONS(3187), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_DOT_LBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_use] = ACTIONS(3185), - [anon_sym_use_BANG] = ACTIONS(3187), - [anon_sym_do_BANG] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [anon_sym_LPAREN2] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3185), - [aux_sym_char_token1] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_AT_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3187), - [sym_bool] = ACTIONS(3185), - [sym_unit] = ACTIONS(3185), - [anon_sym_LPAREN_PIPE] = ACTIONS(3185), - [sym_op_identifier] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3187), - [aux_sym_prefix_op_token1] = ACTIONS(3185), - [aux_sym_infix_op_token1] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3185), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3185), - [sym_int] = ACTIONS(3185), - [sym_xint] = ACTIONS(3187), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3187), - [sym__newline] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), + [sym__dedent] = ACTIONS(3736), }, [1987] = { [sym_xml_doc] = STATE(1987), @@ -265848,93 +270359,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1987), [sym_fsi_directive_decl] = STATE(1987), [sym_preproc_line] = STATE(1987), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3726), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_with] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), + [sym__dedent] = ACTIONS(3728), }, [1988] = { [sym_xml_doc] = STATE(1988), @@ -265943,93 +270453,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1988), [sym_fsi_directive_decl] = STATE(1988), [sym_preproc_line] = STATE(1988), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_DASH_GT] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_with] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), + [sym__dedent] = ACTIONS(3724), }, [1989] = { [sym_xml_doc] = STATE(1989), @@ -266038,93 +270547,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1989), [sym_fsi_directive_decl] = STATE(1989), [sym_preproc_line] = STATE(1989), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_DASH_GT] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_DOT_DOT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_as] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3693), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), + [sym__dedent] = ACTIONS(3695), }, [1990] = { [sym_xml_doc] = STATE(1990), @@ -266133,93 +270641,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1990), [sym_fsi_directive_decl] = STATE(1990), [sym_preproc_line] = STATE(1990), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_as] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), + [sym__dedent] = ACTIONS(3662), }, [1991] = { [sym_xml_doc] = STATE(1991), @@ -266228,93 +270735,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1991), [sym_fsi_directive_decl] = STATE(1991), [sym_preproc_line] = STATE(1991), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_DASH_GT] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_DOT_DOT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_AT_GT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_done] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [1992] = { [sym_xml_doc] = STATE(1992), @@ -266323,93 +270829,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1992), [sym_fsi_directive_decl] = STATE(1992), [sym_preproc_line] = STATE(1992), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [anon_sym_POUNDendif] = ACTIONS(3471), - [anon_sym_POUNDelse] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_DOT_DOT2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), + [sym__dedent] = ACTIONS(3861), }, [1993] = { [sym_xml_doc] = STATE(1993), @@ -266418,93 +270923,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1993), [sym_fsi_directive_decl] = STATE(1993), [sym_preproc_line] = STATE(1993), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_as] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), + [sym__dedent] = ACTIONS(3658), }, [1994] = { [sym_xml_doc] = STATE(1994), @@ -266513,93 +271017,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1994), [sym_fsi_directive_decl] = STATE(1994), [sym_preproc_line] = STATE(1994), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_DASH_GT] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [aux_sym_rules_repeat1] = STATE(1949), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_AT_GT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4730), }, [1995] = { [sym_xml_doc] = STATE(1995), @@ -266608,93 +271111,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1995), [sym_fsi_directive_decl] = STATE(1995), [sym_preproc_line] = STATE(1995), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_DASH_GT] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_DOT_DOT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_as] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), + [sym__dedent] = ACTIONS(3677), }, [1996] = { [sym_xml_doc] = STATE(1996), @@ -266703,93 +271205,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1996), [sym_fsi_directive_decl] = STATE(1996), [sym_preproc_line] = STATE(1996), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_DASH_GT] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [aux_sym_rules_repeat1] = STATE(1955), + [sym_identifier] = ACTIONS(3442), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym_COLON] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_let_BANG] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_null] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_COLON_QMARK] = ACTIONS(3442), + [anon_sym_COLON_COLON] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACK_PIPE] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_LT_AT] = ACTIONS(3442), + [anon_sym_AT_GT] = ACTIONS(3442), + [anon_sym_LT_AT_AT] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_LBRACE_PIPE] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_return_BANG] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_yield_BANG] = ACTIONS(3444), + [anon_sym_lazy] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_upcast] = ACTIONS(3442), + [anon_sym_downcast] = ACTIONS(3442), + [anon_sym_COLON_GT] = ACTIONS(3444), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_fun] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_match_BANG] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_DOT_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_use] = ACTIONS(3442), + [anon_sym_use_BANG] = ACTIONS(3444), + [anon_sym_do_BANG] = ACTIONS(3444), + [anon_sym_begin] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3442), + [aux_sym_char_token1] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_AT_DQUOTE] = ACTIONS(3444), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), + [sym_bool] = ACTIONS(3442), + [sym_unit] = ACTIONS(3442), + [anon_sym_LPAREN_PIPE] = ACTIONS(3442), + [sym_op_identifier] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_PLUS_DOT] = ACTIONS(3442), + [anon_sym_DASH_DOT] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [aux_sym_prefix_op_token1] = ACTIONS(3442), + [aux_sym_infix_op_token1] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3442), + [sym_int] = ACTIONS(3442), + [sym_xint] = ACTIONS(3444), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3444), + [sym__newline] = ACTIONS(4730), }, [1997] = { [sym_xml_doc] = STATE(1997), @@ -266798,93 +271299,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1997), [sym_fsi_directive_decl] = STATE(1997), [sym_preproc_line] = STATE(1997), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_DASH_GT] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [1998] = { [sym_xml_doc] = STATE(1998), @@ -266893,93 +271393,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1998), [sym_fsi_directive_decl] = STATE(1998), [sym_preproc_line] = STATE(1998), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_as] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_DASH_GT] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_DOT_DOT] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [1999] = { [sym_xml_doc] = STATE(1999), @@ -266988,93 +271487,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(1999), [sym_fsi_directive_decl] = STATE(1999), [sym_preproc_line] = STATE(1999), - [aux_sym_long_identifier_repeat1] = STATE(1907), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_DOT_DOT] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_with] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_DOT_DOT2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), + [sym__dedent] = ACTIONS(3764), }, [2000] = { [sym_xml_doc] = STATE(2000), @@ -267083,93 +271581,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2000), [sym_fsi_directive_decl] = STATE(2000), [sym_preproc_line] = STATE(2000), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_DASH_GT] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [aux_sym_rules_repeat1] = STATE(1952), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [anon_sym_POUNDendif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4733), }, [2001] = { [sym_xml_doc] = STATE(2001), @@ -267178,93 +271675,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2001), [sym_fsi_directive_decl] = STATE(2001), [sym_preproc_line] = STATE(2001), - [aux_sym_long_identifier_repeat1] = STATE(1999), - [sym_identifier] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_let_BANG] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_null] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2953), - [anon_sym_COLON_QMARK] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_LBRACE_PIPE] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_return_BANG] = ACTIONS(2956), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_yield_BANG] = ACTIONS(2956), - [anon_sym_lazy] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_upcast] = ACTIONS(2953), - [anon_sym_downcast] = ACTIONS(2953), - [anon_sym_LT_AT] = ACTIONS(2953), - [anon_sym_AT_GT] = ACTIONS(2953), - [anon_sym_LT_AT_AT] = ACTIONS(2953), - [anon_sym_AT_AT_GT] = ACTIONS(2953), - [anon_sym_COLON_GT] = ACTIONS(2956), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2956), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_fun] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_match_BANG] = ACTIONS(2956), - [anon_sym_function] = ACTIONS(2953), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_DOT_LBRACK] = ACTIONS(2956), - [anon_sym_DOT] = ACTIONS(4204), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_use_BANG] = ACTIONS(2956), - [anon_sym_do_BANG] = ACTIONS(2956), - [anon_sym_DOT_DOT] = ACTIONS(2956), - [anon_sym_begin] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2953), - [aux_sym_char_token1] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_AT_DQUOTE] = ACTIONS(2956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2956), - [sym_bool] = ACTIONS(2953), - [sym_unit] = ACTIONS(2953), - [anon_sym_LPAREN_PIPE] = ACTIONS(2953), - [sym_op_identifier] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2953), - [anon_sym_DASH_DOT] = ACTIONS(2953), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2956), - [aux_sym_prefix_op_token1] = ACTIONS(2953), - [aux_sym_infix_op_token1] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_COLON_EQ] = ACTIONS(2956), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2953), - [sym_int] = ACTIONS(2953), - [sym_xint] = ACTIONS(2956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2956), - [sym__newline] = ACTIONS(2956), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_with] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_DOT_DOT2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), + [sym__dedent] = ACTIONS(3720), }, [2002] = { [sym_xml_doc] = STATE(2002), @@ -267273,93 +271769,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2002), [sym_fsi_directive_decl] = STATE(2002), [sym_preproc_line] = STATE(2002), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_DASH_GT] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [aux_sym_long_identifier_repeat1] = STATE(1872), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4736), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [anon_sym_POUNDendif] = ACTIONS(3204), + [anon_sym_POUNDelse] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2003] = { [sym_xml_doc] = STATE(2003), @@ -267368,93 +271863,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2003), [sym_fsi_directive_decl] = STATE(2003), [sym_preproc_line] = STATE(2003), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3350), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_as] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), + [sym__dedent] = ACTIONS(3648), }, [2004] = { [sym_xml_doc] = STATE(2004), @@ -267463,188 +271957,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2004), [sym_fsi_directive_decl] = STATE(2004), [sym_preproc_line] = STATE(2004), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), + [sym__dedent] = ACTIONS(3640), }, [2005] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5510), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2094), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2005), [sym_block_comment] = STATE(2005), [sym_line_comment] = STATE(2005), [sym_compiler_directive_decl] = STATE(2005), [sym_fsi_directive_decl] = STATE(2005), [sym_preproc_line] = STATE(2005), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4645), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2006] = { [sym_xml_doc] = STATE(2006), @@ -267653,93 +272145,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2006), [sym_fsi_directive_decl] = STATE(2006), [sym_preproc_line] = STATE(2006), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), + [sym__dedent] = ACTIONS(3626), }, [2007] = { [sym_xml_doc] = STATE(2007), @@ -267748,93 +272239,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2007), [sym_fsi_directive_decl] = STATE(2007), [sym_preproc_line] = STATE(2007), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3455), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_COLON] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_let_BANG] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_QMARK] = ACTIONS(3455), + [anon_sym_COLON_QMARK] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LBRACK_PIPE] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_LT_AT] = ACTIONS(3455), + [anon_sym_LT_AT_AT] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3455), + [anon_sym_LBRACE_PIPE] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_return_BANG] = ACTIONS(3457), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_yield_BANG] = ACTIONS(3457), + [anon_sym_lazy] = ACTIONS(3455), + [anon_sym_assert] = ACTIONS(3455), + [anon_sym_upcast] = ACTIONS(3455), + [anon_sym_downcast] = ACTIONS(3455), + [anon_sym_COLON_GT] = ACTIONS(3457), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_elif] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_fun] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_match_BANG] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_LT_DASH] = ACTIONS(3455), + [anon_sym_DOT_LBRACK] = ACTIONS(3457), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_use] = ACTIONS(3455), + [anon_sym_use_BANG] = ACTIONS(3457), + [anon_sym_do_BANG] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_or] = ACTIONS(3455), + [aux_sym_char_token1] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_AT_DQUOTE] = ACTIONS(3457), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3457), + [sym_bool] = ACTIONS(3455), + [sym_unit] = ACTIONS(3455), + [anon_sym_LPAREN_PIPE] = ACTIONS(3455), + [sym_op_identifier] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS_DOT] = ACTIONS(3455), + [anon_sym_DASH_DOT] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3457), + [aux_sym_prefix_op_token1] = ACTIONS(3455), + [aux_sym_infix_op_token1] = ACTIONS(3455), + [anon_sym_PIPE_PIPE] = ACTIONS(3455), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_COLON_EQ] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3455), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3455), + [sym_int] = ACTIONS(3455), + [sym_xint] = ACTIONS(3457), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3457), + [anon_sym_POUNDendif] = ACTIONS(3457), + [sym__newline] = ACTIONS(3457), }, [2008] = { [sym_xml_doc] = STATE(2008), @@ -267843,93 +272333,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2008), [sym_fsi_directive_decl] = STATE(2008), [sym_preproc_line] = STATE(2008), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_with] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_DOT_DOT2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), + [sym__dedent] = ACTIONS(3714), }, [2009] = { [sym_xml_doc] = STATE(2009), @@ -267938,93 +272427,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2009), [sym_fsi_directive_decl] = STATE(2009), [sym_preproc_line] = STATE(2009), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_as] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), + [sym__dedent] = ACTIONS(3622), }, [2010] = { [sym_xml_doc] = STATE(2010), @@ -268033,93 +272521,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2010), [sym_fsi_directive_decl] = STATE(2010), [sym_preproc_line] = STATE(2010), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_as] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), + [sym__dedent] = ACTIONS(3861), }, [2011] = { [sym_xml_doc] = STATE(2011), @@ -268128,93 +272615,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2011), [sym_fsi_directive_decl] = STATE(2011), [sym_preproc_line] = STATE(2011), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_as] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), + [sym__dedent] = ACTIONS(3618), }, [2012] = { [sym_xml_doc] = STATE(2012), @@ -268223,93 +272709,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2012), [sym_fsi_directive_decl] = STATE(2012), [sym_preproc_line] = STATE(2012), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_as] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), + [sym__dedent] = ACTIONS(3604), }, [2013] = { [sym_xml_doc] = STATE(2013), @@ -268318,93 +272803,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2013), [sym_fsi_directive_decl] = STATE(2013), [sym_preproc_line] = STATE(2013), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_DOT_DOT2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), + [sym__dedent] = ACTIONS(3677), }, [2014] = { [sym_xml_doc] = STATE(2014), @@ -268413,93 +272897,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2014), [sym_fsi_directive_decl] = STATE(2014), [sym_preproc_line] = STATE(2014), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_as] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [aux_sym_rules_repeat1] = STATE(1994), + [sym_identifier] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_do] = ACTIONS(3404), + [anon_sym_let] = ACTIONS(3404), + [anon_sym_let_BANG] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_COLON_QMARK] = ACTIONS(3404), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LBRACK_PIPE] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_LT_AT] = ACTIONS(3404), + [anon_sym_AT_GT] = ACTIONS(3404), + [anon_sym_LT_AT_AT] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_LBRACE_PIPE] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3404), + [anon_sym_return_BANG] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_yield_BANG] = ACTIONS(3406), + [anon_sym_lazy] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_upcast] = ACTIONS(3404), + [anon_sym_downcast] = ACTIONS(3404), + [anon_sym_COLON_GT] = ACTIONS(3406), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_fun] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_match_BANG] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_DOT_LBRACK] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_use] = ACTIONS(3404), + [anon_sym_use_BANG] = ACTIONS(3406), + [anon_sym_do_BANG] = ACTIONS(3406), + [anon_sym_begin] = ACTIONS(3404), + [anon_sym_LPAREN2] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3404), + [aux_sym_char_token1] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_AT_DQUOTE] = ACTIONS(3406), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3406), + [sym_bool] = ACTIONS(3404), + [sym_unit] = ACTIONS(3404), + [anon_sym_LPAREN_PIPE] = ACTIONS(3404), + [sym_op_identifier] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_PLUS_DOT] = ACTIONS(3404), + [anon_sym_DASH_DOT] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3406), + [aux_sym_prefix_op_token1] = ACTIONS(3404), + [aux_sym_infix_op_token1] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_DOLLAR] = ACTIONS(3404), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3404), + [sym_int] = ACTIONS(3404), + [sym_xint] = ACTIONS(3406), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3406), + [sym__newline] = ACTIONS(4742), }, [2015] = { [sym_xml_doc] = STATE(2015), @@ -268508,93 +272991,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2015), [sym_fsi_directive_decl] = STATE(2015), [sym_preproc_line] = STATE(2015), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_DOT_DOT2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), + [sym__dedent] = ACTIONS(3699), }, [2016] = { [sym_xml_doc] = STATE(2016), @@ -268603,93 +273085,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2016), [sym_fsi_directive_decl] = STATE(2016), [sym_preproc_line] = STATE(2016), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_as] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3689), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_DOT_DOT2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), + [sym__dedent] = ACTIONS(3691), }, [2017] = { [sym_xml_doc] = STATE(2017), @@ -268698,93 +273179,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2017), [sym_fsi_directive_decl] = STATE(2017), [sym_preproc_line] = STATE(2017), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_as] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_DOT_DOT2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), + [sym__dedent] = ACTIONS(3648), }, [2018] = { [sym_xml_doc] = STATE(2018), @@ -268793,93 +273273,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2018), [sym_fsi_directive_decl] = STATE(2018), [sym_preproc_line] = STATE(2018), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [anon_sym_POUNDendif] = ACTIONS(3286), - [anon_sym_POUNDelse] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_DOT_DOT2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), + [sym__dedent] = ACTIONS(3546), }, [2019] = { [sym_xml_doc] = STATE(2019), @@ -268888,93 +273367,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2019), [sym_fsi_directive_decl] = STATE(2019), [sym_preproc_line] = STATE(2019), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_DOT_DOT2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), + [sym__dedent] = ACTIONS(3640), }, [2020] = { [sym_xml_doc] = STATE(2020), @@ -268983,93 +273461,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2020), [sym_fsi_directive_decl] = STATE(2020), [sym_preproc_line] = STATE(2020), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_DOT_DOT2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), + [sym__dedent] = ACTIONS(3626), }, [2021] = { [sym_xml_doc] = STATE(2021), @@ -269078,93 +273555,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2021), [sym_fsi_directive_decl] = STATE(2021), [sym_preproc_line] = STATE(2021), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_DOT_DOT2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), + [sym__dedent] = ACTIONS(3622), }, [2022] = { [sym_xml_doc] = STATE(2022), @@ -269173,93 +273649,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2022), [sym_fsi_directive_decl] = STATE(2022), [sym_preproc_line] = STATE(2022), - [aux_sym_long_identifier_repeat1] = STATE(2109), - [sym_identifier] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_COLON_QMARK] = ACTIONS(2966), - [anon_sym_COLON_COLON] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_AT_GT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2966), - [anon_sym_AT_AT_GT] = ACTIONS(2966), - [anon_sym_COLON_GT] = ACTIONS(2968), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_DOT_LBRACK] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_LPAREN2] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2966), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2966), - [anon_sym_DASH_DOT] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2966), - [aux_sym_infix_op_token1] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2968), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2966), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_as] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), + [sym__dedent] = ACTIONS(3776), }, [2023] = { [sym_xml_doc] = STATE(2023), @@ -269268,93 +273743,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2023), [sym_fsi_directive_decl] = STATE(2023), [sym_preproc_line] = STATE(2023), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3697), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), + [sym__dedent] = ACTIONS(3699), }, [2024] = { [sym_xml_doc] = STATE(2024), @@ -269363,93 +273837,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2024), [sym_fsi_directive_decl] = STATE(2024), [sym_preproc_line] = STATE(2024), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_DASH_GT] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_as] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), + [sym__dedent] = ACTIONS(3583), }, [2025] = { [sym_xml_doc] = STATE(2025), @@ -269458,93 +273931,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2025), [sym_fsi_directive_decl] = STATE(2025), [sym_preproc_line] = STATE(2025), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_as] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), + [sym__dedent] = ACTIONS(3546), }, [2026] = { [sym_xml_doc] = STATE(2026), @@ -269553,93 +274025,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2026), [sym_fsi_directive_decl] = STATE(2026), [sym_preproc_line] = STATE(2026), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_DASH_GT] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3689), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3689), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), + [sym__dedent] = ACTIONS(3691), }, [2027] = { [sym_xml_doc] = STATE(2027), @@ -269648,93 +274119,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2027), [sym_fsi_directive_decl] = STATE(2027), [sym_preproc_line] = STATE(2027), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_DOT_DOT] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_QMARK] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3387), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_AT_GT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3387), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_COLON_GT] = ACTIONS(3389), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_LT_DASH] = ACTIONS(3387), + [anon_sym_DOT_LBRACK] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_or] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3387), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3387), + [anon_sym_DASH_DOT] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3387), + [aux_sym_infix_op_token1] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_COLON_EQ] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3387), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + [sym__newline] = ACTIONS(3389), }, [2028] = { [sym_xml_doc] = STATE(2028), @@ -269743,93 +274213,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2028), [sym_fsi_directive_decl] = STATE(2028), [sym_preproc_line] = STATE(2028), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_DASH_GT] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_DOT_DOT] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [aux_sym_sequential_expression_repeat1] = STATE(1873), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), + [sym__dedent] = ACTIONS(3614), }, [2029] = { [sym_xml_doc] = STATE(2029), @@ -269838,93 +274307,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2029), [sym_fsi_directive_decl] = STATE(2029), [sym_preproc_line] = STATE(2029), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_DASH_GT] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3585), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), + [sym__dedent] = ACTIONS(3587), }, [2030] = { [sym_xml_doc] = STATE(2030), @@ -269933,93 +274401,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2030), [sym_fsi_directive_decl] = STATE(2030), [sym_preproc_line] = STATE(2030), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_DASH_GT] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_DOT_DOT] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_DOT_DOT] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [2031] = { [sym_xml_doc] = STATE(2031), @@ -270028,93 +274494,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2031), [sym_fsi_directive_decl] = STATE(2031), [sym_preproc_line] = STATE(2031), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_DASH_GT] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_DASH_GT] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2032] = { [sym_xml_doc] = STATE(2032), @@ -270123,93 +274587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2032), [sym_fsi_directive_decl] = STATE(2032), [sym_preproc_line] = STATE(2032), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_DASH_GT] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_as] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_with] = ACTIONS(3859), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2033] = { [sym_xml_doc] = STATE(2033), @@ -270218,93 +274680,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2033), [sym_fsi_directive_decl] = STATE(2033), [sym_preproc_line] = STATE(2033), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [anon_sym_POUNDendif] = ACTIONS(3264), - [anon_sym_POUNDelse] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4745), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_GT] = ACTIONS(3554), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [2034] = { [sym_xml_doc] = STATE(2034), @@ -270313,93 +274773,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2034), [sym_fsi_directive_decl] = STATE(2034), [sym_preproc_line] = STATE(2034), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_DASH_GT] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2035] = { [sym_xml_doc] = STATE(2035), @@ -270408,93 +274866,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2035), [sym_fsi_directive_decl] = STATE(2035), [sym_preproc_line] = STATE(2035), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_DASH_GT] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_DOT_DOT] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4711), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_GT] = ACTIONS(3507), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2036] = { [sym_xml_doc] = STATE(2036), @@ -270503,93 +274959,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2036), [sym_fsi_directive_decl] = STATE(2036), [sym_preproc_line] = STATE(2036), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [anon_sym_POUNDendif] = ACTIONS(3195), - [anon_sym_POUNDelse] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [anon_sym_POUNDendif] = ACTIONS(4173), + [anon_sym_POUNDelse] = ACTIONS(4173), + [sym__newline] = ACTIONS(3546), }, [2037] = { [sym_xml_doc] = STATE(2037), @@ -270598,93 +275052,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2037), [sym_fsi_directive_decl] = STATE(2037), [sym_preproc_line] = STATE(2037), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [anon_sym_POUNDendif] = ACTIONS(3526), - [anon_sym_POUNDelse] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_as] = ACTIONS(3840), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_with] = ACTIONS(3840), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2038] = { [sym_xml_doc] = STATE(2038), @@ -270693,93 +275145,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2038), [sym_fsi_directive_decl] = STATE(2038), [sym_preproc_line] = STATE(2038), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_as] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2039] = { [sym_xml_doc] = STATE(2039), @@ -270788,93 +275238,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2039), [sym_fsi_directive_decl] = STATE(2039), [sym_preproc_line] = STATE(2039), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [anon_sym_POUNDendif] = ACTIONS(3522), - [anon_sym_POUNDelse] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [aux_sym_sequential_expression_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_AT_AT_GT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4747), }, [2040] = { [sym_xml_doc] = STATE(2040), @@ -270883,93 +275331,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2040), [sym_fsi_directive_decl] = STATE(2040), [sym_preproc_line] = STATE(2040), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_as] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_as] = ACTIONS(3836), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_with] = ACTIONS(3836), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2041] = { [sym_xml_doc] = STATE(2041), @@ -270978,93 +275424,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2041), [sym_fsi_directive_decl] = STATE(2041), [sym_preproc_line] = STATE(2041), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_DASH_GT] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_DOT_DOT] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2042] = { [sym_xml_doc] = STATE(2042), @@ -271073,93 +275517,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2042), [sym_fsi_directive_decl] = STATE(2042), [sym_preproc_line] = STATE(2042), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_as] = ACTIONS(3825), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_with] = ACTIONS(3825), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2043] = { [sym_xml_doc] = STATE(2043), @@ -271168,93 +275610,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2043), [sym_fsi_directive_decl] = STATE(2043), [sym_preproc_line] = STATE(2043), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_DASH_GT] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_DOT_DOT] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_as] = ACTIONS(3697), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_with] = ACTIONS(3697), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2044] = { [sym_xml_doc] = STATE(2044), @@ -271263,93 +275703,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2044), [sym_fsi_directive_decl] = STATE(2044), [sym_preproc_line] = STATE(2044), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_as] = ACTIONS(3689), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_with] = ACTIONS(3689), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2045] = { [sym_xml_doc] = STATE(2045), @@ -271358,93 +275796,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2045), [sym_fsi_directive_decl] = STATE(2045), [sym_preproc_line] = STATE(2045), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_as] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_as] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3679), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2046] = { [sym_xml_doc] = STATE(2046), @@ -271453,93 +275889,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2046), [sym_fsi_directive_decl] = STATE(2046), [sym_preproc_line] = STATE(2046), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_DASH_GT] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_DASH_GT] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2047] = { [sym_xml_doc] = STATE(2047), @@ -271548,93 +275982,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2047), [sym_fsi_directive_decl] = STATE(2047), [sym_preproc_line] = STATE(2047), - [sym_identifier] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_let_BANG] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_COLON_QMARK] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_LBRACE_PIPE] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_return_BANG] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3197), - [anon_sym_yield_BANG] = ACTIONS(3199), - [anon_sym_lazy] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_upcast] = ACTIONS(3197), - [anon_sym_downcast] = ACTIONS(3197), - [anon_sym_LT_AT] = ACTIONS(3197), - [anon_sym_AT_GT] = ACTIONS(3197), - [anon_sym_LT_AT_AT] = ACTIONS(3197), - [anon_sym_AT_AT_GT] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_while] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_fun] = ACTIONS(3197), - [anon_sym_try] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_match_BANG] = ACTIONS(3199), - [anon_sym_function] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_DOT_LBRACK] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_use] = ACTIONS(3197), - [anon_sym_use_BANG] = ACTIONS(3199), - [anon_sym_do_BANG] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [anon_sym_LPAREN2] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3197), - [aux_sym_char_token1] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [anon_sym_AT_DQUOTE] = ACTIONS(3199), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3199), - [sym_bool] = ACTIONS(3197), - [sym_unit] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3197), - [sym_op_identifier] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3199), - [aux_sym_prefix_op_token1] = ACTIONS(3197), - [aux_sym_infix_op_token1] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3197), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3197), - [sym_int] = ACTIONS(3197), - [sym_xint] = ACTIONS(3199), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3199), - [anon_sym_POUNDendif] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4750), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_GT] = ACTIONS(3527), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [2048] = { [sym_xml_doc] = STATE(2048), @@ -271643,93 +276075,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2048), [sym_fsi_directive_decl] = STATE(2048), [sym_preproc_line] = STATE(2048), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_DASH_GT] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_DOT_DOT] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_DASH_GT] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_DOT_DOT] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2049] = { [sym_xml_doc] = STATE(2049), @@ -271738,93 +276168,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2049), [sym_fsi_directive_decl] = STATE(2049), [sym_preproc_line] = STATE(2049), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [anon_sym_POUNDendif] = ACTIONS(3282), - [anon_sym_POUNDelse] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3314), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3316), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [anon_sym_EQ2] = ACTIONS(4483), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2050] = { [sym_xml_doc] = STATE(2050), @@ -271833,93 +276261,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2050), [sym_fsi_directive_decl] = STATE(2050), [sym_preproc_line] = STATE(2050), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_DASH_GT] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_DASH_GT] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2051] = { [sym_xml_doc] = STATE(2051), @@ -271928,188 +276354,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2051), [sym_fsi_directive_decl] = STATE(2051), [sym_preproc_line] = STATE(2051), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [anon_sym_POUNDendif] = ACTIONS(3479), - [anon_sym_POUNDelse] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_as] = ACTIONS(3802), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_with] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2052] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2052), [sym_block_comment] = STATE(2052), [sym_line_comment] = STATE(2052), [sym_compiler_directive_decl] = STATE(2052), [sym_fsi_directive_decl] = STATE(2052), [sym_preproc_line] = STATE(2052), - [aux_sym_sequential_expression_repeat1] = STATE(1972), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_GT] = ACTIONS(3602), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_module] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_LBRACK_LT] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_and] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [aux_sym_access_modifier_token1] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_member] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_val] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3022), + [anon_sym_POUNDload] = ACTIONS(3022), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), }, [2053] = { [sym_xml_doc] = STATE(2053), @@ -272118,93 +276540,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2053), [sym_fsi_directive_decl] = STATE(2053), [sym_preproc_line] = STATE(2053), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4179), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_as] = ACTIONS(3798), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_with] = ACTIONS(3798), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2054] = { [sym_xml_doc] = STATE(2054), @@ -272213,93 +276633,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2054), [sym_fsi_directive_decl] = STATE(2054), [sym_preproc_line] = STATE(2054), - [aux_sym_sequential_expression_repeat1] = STATE(2084), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [anon_sym_POUNDendif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_as] = ACTIONS(3790), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_with] = ACTIONS(3790), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2055] = { [sym_xml_doc] = STATE(2055), @@ -272308,93 +276726,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2055), [sym_fsi_directive_decl] = STATE(2055), [sym_preproc_line] = STATE(2055), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_as] = ACTIONS(3786), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_with] = ACTIONS(3786), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2056] = { [sym_xml_doc] = STATE(2056), @@ -272403,188 +276819,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2056), [sym_fsi_directive_decl] = STATE(2056), [sym_preproc_line] = STATE(2056), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [anon_sym_POUNDendif] = ACTIONS(3270), - [anon_sym_POUNDelse] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_as] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2057] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5444), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2057), [sym_block_comment] = STATE(2057), [sym_line_comment] = STATE(2057), [sym_compiler_directive_decl] = STATE(2057), [sym_fsi_directive_decl] = STATE(2057), [sym_preproc_line] = STATE(2057), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [anon_sym_POUNDendif] = ACTIONS(3445), - [anon_sym_POUNDelse] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [anon_sym_LT2] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2058] = { [sym_xml_doc] = STATE(2058), @@ -272593,93 +277005,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2058), [sym_fsi_directive_decl] = STATE(2058), [sym_preproc_line] = STATE(2058), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_DASH_GT] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_as] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2059] = { [sym_xml_doc] = STATE(2059), @@ -272688,93 +277098,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2059), [sym_fsi_directive_decl] = STATE(2059), [sym_preproc_line] = STATE(2059), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [anon_sym_POUNDelse] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_as] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_with] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2060] = { [sym_xml_doc] = STATE(2060), @@ -272783,93 +277191,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2060), [sym_fsi_directive_decl] = STATE(2060), [sym_preproc_line] = STATE(2060), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_as] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2061] = { [sym_xml_doc] = STATE(2061), @@ -272878,93 +277284,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2061), [sym_fsi_directive_decl] = STATE(2061), [sym_preproc_line] = STATE(2061), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_as] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2062] = { [sym_xml_doc] = STATE(2062), @@ -272973,93 +277377,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2062), [sym_fsi_directive_decl] = STATE(2062), [sym_preproc_line] = STATE(2062), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4214), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [anon_sym_POUNDendif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [aux_sym_sequential_expression_repeat1] = STATE(2167), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_AT_GT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2063] = { [sym_xml_doc] = STATE(2063), @@ -273068,93 +277470,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2063), [sym_fsi_directive_decl] = STATE(2063), [sym_preproc_line] = STATE(2063), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [anon_sym_POUNDendif] = ACTIONS(3449), - [anon_sym_POUNDelse] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_DASH_GT] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2064] = { [sym_xml_doc] = STATE(2064), @@ -273163,93 +277563,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2064), [sym_fsi_directive_decl] = STATE(2064), [sym_preproc_line] = STATE(2064), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_DASH_GT] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_DOT_DOT] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_as] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_with] = ACTIONS(3675), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2065] = { [sym_xml_doc] = STATE(2065), @@ -273258,93 +277656,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2065), [sym_fsi_directive_decl] = STATE(2065), [sym_preproc_line] = STATE(2065), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [anon_sym_POUNDendif] = ACTIONS(3514), - [anon_sym_POUNDelse] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_as] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_with] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2066] = { [sym_xml_doc] = STATE(2066), @@ -273353,93 +277749,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2066), [sym_fsi_directive_decl] = STATE(2066), [sym_preproc_line] = STATE(2066), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_DASH_GT] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_as] = ACTIONS(3577), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_with] = ACTIONS(3577), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2067] = { [sym_xml_doc] = STATE(2067), @@ -273448,93 +277842,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2067), [sym_fsi_directive_decl] = STATE(2067), [sym_preproc_line] = STATE(2067), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [anon_sym_POUNDendif] = ACTIONS(3278), - [anon_sym_POUNDelse] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_as] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_with] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2068] = { [sym_xml_doc] = STATE(2068), @@ -273543,93 +277935,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2068), [sym_fsi_directive_decl] = STATE(2068), [sym_preproc_line] = STATE(2068), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [anon_sym_POUNDendif] = ACTIONS(3453), - [anon_sym_POUNDelse] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_as] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_with] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2069] = { [sym_xml_doc] = STATE(2069), @@ -273638,93 +278028,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2069), [sym_fsi_directive_decl] = STATE(2069), [sym_preproc_line] = STATE(2069), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [anon_sym_POUNDendif] = ACTIONS(3348), - [anon_sym_POUNDelse] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_as] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_with] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2070] = { [sym_xml_doc] = STATE(2070), @@ -273733,93 +278121,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2070), [sym_fsi_directive_decl] = STATE(2070), [sym_preproc_line] = STATE(2070), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_DASH_GT] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_DOT_DOT] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2071] = { [sym_xml_doc] = STATE(2071), @@ -273828,93 +278214,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2071), [sym_fsi_directive_decl] = STATE(2071), [sym_preproc_line] = STATE(2071), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_as] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_with] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2072] = { [sym_xml_doc] = STATE(2072), @@ -273923,93 +278307,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2072), [sym_fsi_directive_decl] = STATE(2072), [sym_preproc_line] = STATE(2072), - [sym_identifier] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym_COLON] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_let_BANG] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_COLON_QMARK] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_LBRACE_PIPE] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_return_BANG] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3189), - [anon_sym_yield_BANG] = ACTIONS(3191), - [anon_sym_lazy] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_upcast] = ACTIONS(3189), - [anon_sym_downcast] = ACTIONS(3189), - [anon_sym_LT_AT] = ACTIONS(3189), - [anon_sym_AT_GT] = ACTIONS(3189), - [anon_sym_LT_AT_AT] = ACTIONS(3189), - [anon_sym_AT_AT_GT] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_done] = ACTIONS(4114), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_match_BANG] = ACTIONS(3191), - [anon_sym_function] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_DOT_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_use] = ACTIONS(3189), - [anon_sym_use_BANG] = ACTIONS(3191), - [anon_sym_do_BANG] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3189), - [aux_sym_char_token1] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [anon_sym_AT_DQUOTE] = ACTIONS(3191), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3191), - [sym_bool] = ACTIONS(3189), - [sym_unit] = ACTIONS(3189), - [anon_sym_LPAREN_PIPE] = ACTIONS(3189), - [sym_op_identifier] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3191), - [aux_sym_prefix_op_token1] = ACTIONS(3189), - [aux_sym_infix_op_token1] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_DOLLAR] = ACTIONS(3189), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3189), - [sym_int] = ACTIONS(3189), - [sym_xint] = ACTIONS(3191), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3191), - [anon_sym_POUNDendif] = ACTIONS(3191), - [sym__newline] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_as] = ACTIONS(3726), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_with] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2073] = { [sym_xml_doc] = STATE(2073), @@ -274018,93 +278400,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2073), [sym_fsi_directive_decl] = STATE(2073), [sym_preproc_line] = STATE(2073), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_DOT_DOT] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_as] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_with] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2074] = { [sym_xml_doc] = STATE(2074), @@ -274113,93 +278493,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2074), [sym_fsi_directive_decl] = STATE(2074), [sym_preproc_line] = STATE(2074), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3391), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_as] = ACTIONS(3693), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_with] = ACTIONS(3693), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2075] = { [sym_xml_doc] = STATE(2075), @@ -274208,93 +278586,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2075), [sym_fsi_directive_decl] = STATE(2075), [sym_preproc_line] = STATE(2075), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [anon_sym_POUNDendif] = ACTIONS(3274), - [anon_sym_POUNDelse] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_as] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2076] = { [sym_xml_doc] = STATE(2076), @@ -274303,93 +278679,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2076), [sym_fsi_directive_decl] = STATE(2076), [sym_preproc_line] = STATE(2076), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_as] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2077] = { [sym_xml_doc] = STATE(2077), @@ -274398,93 +278772,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2077), [sym_fsi_directive_decl] = STATE(2077), [sym_preproc_line] = STATE(2077), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [anon_sym_POUNDendif] = ACTIONS(3399), - [anon_sym_POUNDelse] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_as] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_with] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2078] = { [sym_xml_doc] = STATE(2078), @@ -274493,93 +278865,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2078), [sym_fsi_directive_decl] = STATE(2078), [sym_preproc_line] = STATE(2078), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_as] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_with] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2079] = { [sym_xml_doc] = STATE(2079), @@ -274588,93 +278958,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2079), [sym_fsi_directive_decl] = STATE(2079), [sym_preproc_line] = STATE(2079), - [sym_identifier] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_let_BANG] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_null] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_COLON_QMARK] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LBRACK_PIPE] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_LBRACE_PIPE] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_return_BANG] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_yield_BANG] = ACTIONS(3241), - [anon_sym_lazy] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_upcast] = ACTIONS(3239), - [anon_sym_downcast] = ACTIONS(3239), - [anon_sym_LT_AT] = ACTIONS(3239), - [anon_sym_AT_GT] = ACTIONS(3239), - [anon_sym_LT_AT_AT] = ACTIONS(3239), - [anon_sym_AT_AT_GT] = ACTIONS(3239), - [anon_sym_COLON_GT] = ACTIONS(3241), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_done] = ACTIONS(4216), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_fun] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_match_BANG] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_DOT_LBRACK] = ACTIONS(3241), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_use] = ACTIONS(3239), - [anon_sym_use_BANG] = ACTIONS(3241), - [anon_sym_do_BANG] = ACTIONS(3241), - [anon_sym_begin] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3239), - [aux_sym_char_token1] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_AT_DQUOTE] = ACTIONS(3241), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3241), - [sym_bool] = ACTIONS(3239), - [sym_unit] = ACTIONS(3239), - [anon_sym_LPAREN_PIPE] = ACTIONS(3239), - [sym_op_identifier] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS_DOT] = ACTIONS(3239), - [anon_sym_DASH_DOT] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3241), - [aux_sym_prefix_op_token1] = ACTIONS(3239), - [aux_sym_infix_op_token1] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3241), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3239), - [sym_int] = ACTIONS(3239), - [sym_xint] = ACTIONS(3241), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3241), - [anon_sym_POUNDendif] = ACTIONS(3241), - [sym__newline] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_as] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_with] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2080] = { [sym_xml_doc] = STATE(2080), @@ -274683,188 +279051,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2080), [sym_fsi_directive_decl] = STATE(2080), [sym_preproc_line] = STATE(2080), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [aux_sym_sequential_expression_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_GT] = ACTIONS(3612), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2081] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5754), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2573), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(3944), + [sym_format_string] = STATE(3972), + [sym__string_literal] = STATE(3972), + [sym_string] = STATE(3944), + [sym_verbatim_string] = STATE(3944), + [sym_bytearray] = STATE(3944), + [sym_verbatim_bytearray] = STATE(3944), + [sym_format_triple_quoted_string] = STATE(3973), + [sym_triple_quoted_string] = STATE(3944), + [sym_const] = STATE(3956), + [sym_long_identifier] = STATE(3911), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(3944), + [sym_byte] = STATE(3944), + [sym_int16] = STATE(3944), + [sym_uint16] = STATE(3944), + [sym_int32] = STATE(3944), + [sym_uint32] = STATE(3944), + [sym_nativeint] = STATE(3944), + [sym_unativeint] = STATE(3944), + [sym_int64] = STATE(3944), + [sym_uint64] = STATE(3944), + [sym_ieee32] = STATE(3944), + [sym_ieee64] = STATE(3944), + [sym_bignum] = STATE(3944), + [sym_decimal] = STATE(3944), + [sym_float] = STATE(3759), [sym_xml_doc] = STATE(2081), [sym_block_comment] = STATE(2081), [sym_line_comment] = STATE(2081), [sym_compiler_directive_decl] = STATE(2081), [sym_fsi_directive_decl] = STATE(2081), [sym_preproc_line] = STATE(2081), - [sym_identifier] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_let_BANG] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_COLON_QMARK] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LBRACK_PIPE] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_LBRACE_PIPE] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_return_BANG] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_yield_BANG] = ACTIONS(3233), - [anon_sym_lazy] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_upcast] = ACTIONS(3231), - [anon_sym_downcast] = ACTIONS(3231), - [anon_sym_LT_AT] = ACTIONS(3231), - [anon_sym_AT_GT] = ACTIONS(3231), - [anon_sym_LT_AT_AT] = ACTIONS(3231), - [anon_sym_AT_AT_GT] = ACTIONS(3231), - [anon_sym_COLON_GT] = ACTIONS(3233), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_done] = ACTIONS(4218), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_fun] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_match_BANG] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_DOT_LBRACK] = ACTIONS(3233), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_use] = ACTIONS(3231), - [anon_sym_use_BANG] = ACTIONS(3233), - [anon_sym_do_BANG] = ACTIONS(3233), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3231), - [aux_sym_char_token1] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_AT_DQUOTE] = ACTIONS(3233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3233), - [sym_bool] = ACTIONS(3231), - [sym_unit] = ACTIONS(3231), - [anon_sym_LPAREN_PIPE] = ACTIONS(3231), - [sym_op_identifier] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS_DOT] = ACTIONS(3231), - [anon_sym_DASH_DOT] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3233), - [aux_sym_prefix_op_token1] = ACTIONS(3231), - [aux_sym_infix_op_token1] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3233), - [anon_sym_DOLLAR] = ACTIONS(3231), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3231), - [sym_int] = ACTIONS(3231), - [sym_xint] = ACTIONS(3233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3233), - [sym__newline] = ACTIONS(3233), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4790), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4519), + [aux_sym_char_token1] = ACTIONS(4798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4800), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_AT_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4808), + [sym_bool] = ACTIONS(4810), + [sym_unit] = ACTIONS(4812), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4818), + [sym_xint] = ACTIONS(4820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2082] = { [sym_xml_doc] = STATE(2082), @@ -274873,93 +279237,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2082), [sym_fsi_directive_decl] = STATE(2082), [sym_preproc_line] = STATE(2082), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_DASH_GT] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_as] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_with] = ACTIONS(3910), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2083] = { [sym_xml_doc] = STATE(2083), @@ -274968,93 +279330,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2083), [sym_fsi_directive_decl] = STATE(2083), [sym_preproc_line] = STATE(2083), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_as] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_with] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2084] = { [sym_xml_doc] = STATE(2084), @@ -275063,93 +279423,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2084), [sym_fsi_directive_decl] = STATE(2084), [sym_preproc_line] = STATE(2084), - [aux_sym_sequential_expression_repeat1] = STATE(2084), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [anon_sym_POUNDendif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4220), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_DOT_DOT] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [2085] = { [sym_xml_doc] = STATE(2085), @@ -275158,93 +279516,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2085), [sym_fsi_directive_decl] = STATE(2085), [sym_preproc_line] = STATE(2085), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [anon_sym_POUNDendif] = ACTIONS(3430), - [anon_sym_POUNDelse] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2086] = { [sym_xml_doc] = STATE(2086), @@ -275253,82 +279609,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2086), [sym_fsi_directive_decl] = STATE(2086), [sym_preproc_line] = STATE(2086), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -275336,10 +279692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [anon_sym_POUNDendif] = ACTIONS(3423), - [anon_sym_POUNDelse] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2087] = { [sym_xml_doc] = STATE(2087), @@ -275348,93 +279702,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2087), [sym_fsi_directive_decl] = STATE(2087), [sym_preproc_line] = STATE(2087), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_DASH_GT] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_DOT_DOT] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_as] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2088] = { [sym_xml_doc] = STATE(2088), @@ -275443,93 +279795,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2088), [sym_fsi_directive_decl] = STATE(2088), [sym_preproc_line] = STATE(2088), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_DOT_DOT] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [anon_sym_POUNDendif] = ACTIONS(3587), + [anon_sym_POUNDelse] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2089] = { [sym_xml_doc] = STATE(2089), @@ -275538,93 +279888,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2089), [sym_fsi_directive_decl] = STATE(2089), [sym_preproc_line] = STATE(2089), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [anon_sym_POUNDendif] = ACTIONS(3297), - [anon_sym_POUNDelse] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_as] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_with] = ACTIONS(3581), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2090] = { [sym_xml_doc] = STATE(2090), @@ -275633,93 +279981,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2090), [sym_fsi_directive_decl] = STATE(2090), [sym_preproc_line] = STATE(2090), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4824), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [anon_sym_POUNDendif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [2091] = { [sym_xml_doc] = STATE(2091), @@ -275728,93 +280074,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2091), [sym_fsi_directive_decl] = STATE(2091), [sym_preproc_line] = STATE(2091), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [anon_sym_POUNDendif] = ACTIONS(3389), - [anon_sym_POUNDelse] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_as] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_with] = ACTIONS(3585), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2092] = { [sym_xml_doc] = STATE(2092), @@ -275823,93 +280167,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2092), [sym_fsi_directive_decl] = STATE(2092), [sym_preproc_line] = STATE(2092), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [anon_sym_POUNDendif] = ACTIONS(3419), - [anon_sym_POUNDelse] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [aux_sym_sequential_expression_repeat1] = STATE(2201), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_DOT_DOT] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2093] = { [sym_xml_doc] = STATE(2093), @@ -275918,188 +280260,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2093), [sym_fsi_directive_decl] = STATE(2093), [sym_preproc_line] = STATE(2093), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [anon_sym_POUNDendif] = ACTIONS(3411), - [anon_sym_POUNDelse] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [aux_sym_type_argument_repeat1] = STATE(2276), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_and] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [aux_sym_access_modifier_token1] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_member] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_val] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), }, [2094] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5543), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2094), [sym_block_comment] = STATE(2094), [sym_line_comment] = STATE(2094), [sym_compiler_directive_decl] = STATE(2094), [sym_fsi_directive_decl] = STATE(2094), [sym_preproc_line] = STATE(2094), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_DASH_GT] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_DOT_DOT] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2095] = { [sym_xml_doc] = STATE(2095), @@ -276108,93 +280446,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2095), [sym_fsi_directive_decl] = STATE(2095), [sym_preproc_line] = STATE(2095), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [anon_sym_POUNDendif] = ACTIONS(3255), - [anon_sym_POUNDelse] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_AT_AT_GT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4828), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [2096] = { [sym_xml_doc] = STATE(2096), @@ -276203,93 +280539,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2096), [sym_fsi_directive_decl] = STATE(2096), [sym_preproc_line] = STATE(2096), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [anon_sym_POUNDendif] = ACTIONS(3373), - [anon_sym_POUNDelse] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_as] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_with] = ACTIONS(3929), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2097] = { [sym_xml_doc] = STATE(2097), @@ -276298,93 +280632,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2097), [sym_fsi_directive_decl] = STATE(2097), [sym_preproc_line] = STATE(2097), - [aux_sym_sequential_expression_repeat1] = STATE(2097), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4223), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_as] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_with] = ACTIONS(3937), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2098] = { [sym_xml_doc] = STATE(2098), @@ -276393,93 +280725,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2098), [sym_fsi_directive_decl] = STATE(2098), [sym_preproc_line] = STATE(2098), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_DASH_GT] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_as] = ACTIONS(3977), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_with] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2099] = { [sym_xml_doc] = STATE(2099), @@ -276488,93 +280818,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2099), [sym_fsi_directive_decl] = STATE(2099), [sym_preproc_line] = STATE(2099), - [aux_sym_sequential_expression_repeat1] = STATE(2099), - [sym_identifier] = ACTIONS(3501), - [anon_sym_EQ] = ACTIONS(3503), - [anon_sym_COLON] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_let_BANG] = ACTIONS(3503), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_null] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_COLON_QMARK] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_LBRACE_PIPE] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_return_BANG] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3501), - [anon_sym_yield_BANG] = ACTIONS(3503), - [anon_sym_lazy] = ACTIONS(3501), - [anon_sym_assert] = ACTIONS(3501), - [anon_sym_upcast] = ACTIONS(3501), - [anon_sym_downcast] = ACTIONS(3501), - [anon_sym_LT_AT] = ACTIONS(3501), - [anon_sym_AT_GT] = ACTIONS(3501), - [anon_sym_LT_AT_AT] = ACTIONS(3501), - [anon_sym_AT_AT_GT] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_fun] = ACTIONS(3501), - [anon_sym_DASH_GT] = ACTIONS(3501), - [anon_sym_try] = ACTIONS(3501), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_match_BANG] = ACTIONS(3503), - [anon_sym_function] = ACTIONS(3501), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_DOT_LBRACK] = ACTIONS(3503), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LT] = ACTIONS(3503), - [anon_sym_use] = ACTIONS(3501), - [anon_sym_use_BANG] = ACTIONS(3503), - [anon_sym_do_BANG] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3501), - [aux_sym_char_token1] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [anon_sym_AT_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3503), - [sym_bool] = ACTIONS(3501), - [sym_unit] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(3501), - [sym_op_identifier] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [anon_sym_PERCENT] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3503), - [aux_sym_prefix_op_token1] = ACTIONS(3501), - [aux_sym_infix_op_token1] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [anon_sym_BANG_EQ] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(3501), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3501), - [sym_int] = ACTIONS(3501), - [sym_xint] = ACTIONS(3503), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3503), - [sym__newline] = ACTIONS(4226), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_as] = ACTIONS(3973), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_with] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2100] = { [sym_xml_doc] = STATE(2100), @@ -276583,283 +280911,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2100), [sym_fsi_directive_decl] = STATE(2100), [sym_preproc_line] = STATE(2100), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [anon_sym_POUNDendif] = ACTIONS(3358), - [anon_sym_POUNDelse] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [anon_sym_POUNDendif] = ACTIONS(3820), + [anon_sym_POUNDelse] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2101] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2101), [sym_block_comment] = STATE(2101), [sym_line_comment] = STATE(2101), [sym_compiler_directive_decl] = STATE(2101), [sym_fsi_directive_decl] = STATE(2101), [sym_preproc_line] = STATE(2101), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [anon_sym_POUNDendif] = ACTIONS(3352), - [anon_sym_POUNDelse] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_LBRACK_LT] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [aux_sym_access_modifier_token1] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_member] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_val] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3090), + [anon_sym_POUNDload] = ACTIONS(3090), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), }, [2102] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2102), [sym_block_comment] = STATE(2102), [sym_line_comment] = STATE(2102), [sym_compiler_directive_decl] = STATE(2102), [sym_fsi_directive_decl] = STATE(2102), [sym_preproc_line] = STATE(2102), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [anon_sym_POUNDendif] = ACTIONS(3341), - [anon_sym_POUNDelse] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_and] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [aux_sym_access_modifier_token1] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_member] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_override] = ACTIONS(3032), + [anon_sym_val] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), }, [2103] = { [sym_xml_doc] = STATE(2103), @@ -276868,93 +281190,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2103), [sym_fsi_directive_decl] = STATE(2103), [sym_preproc_line] = STATE(2103), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_DASH_GT] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2104] = { [sym_xml_doc] = STATE(2104), @@ -276963,93 +281283,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2104), [sym_fsi_directive_decl] = STATE(2104), [sym_preproc_line] = STATE(2104), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [anon_sym_POUNDendif] = ACTIONS(3785), - [anon_sym_POUNDelse] = ACTIONS(3785), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_as] = ACTIONS(3965), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_with] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2105] = { [sym_xml_doc] = STATE(2105), @@ -277058,188 +281376,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2105), [sym_fsi_directive_decl] = STATE(2105), [sym_preproc_line] = STATE(2105), - [aux_sym_sequential_expression_repeat1] = STATE(2097), - [sym_identifier] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3604), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_let_BANG] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_COLON_QMARK] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3604), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LBRACK_PIPE] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACE_PIPE] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_return_BANG] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_yield_BANG] = ACTIONS(3604), - [anon_sym_lazy] = ACTIONS(3602), - [anon_sym_assert] = ACTIONS(3602), - [anon_sym_upcast] = ACTIONS(3602), - [anon_sym_downcast] = ACTIONS(3602), - [anon_sym_LT_AT] = ACTIONS(3602), - [anon_sym_AT_GT] = ACTIONS(3602), - [anon_sym_LT_AT_AT] = ACTIONS(3602), - [anon_sym_AT_AT_GT] = ACTIONS(3602), - [anon_sym_COLON_GT] = ACTIONS(3604), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_fun] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_match_BANG] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_LT_DASH] = ACTIONS(3602), - [anon_sym_DOT_LBRACK] = ACTIONS(3604), - [anon_sym_DOT] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_use] = ACTIONS(3602), - [anon_sym_use_BANG] = ACTIONS(3604), - [anon_sym_do_BANG] = ACTIONS(3604), - [anon_sym_DOT_DOT] = ACTIONS(3604), - [anon_sym_begin] = ACTIONS(3602), - [anon_sym_LPAREN2] = ACTIONS(3604), - [anon_sym_or] = ACTIONS(3602), - [aux_sym_char_token1] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_AT_DQUOTE] = ACTIONS(3604), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), - [sym_bool] = ACTIONS(3602), - [sym_unit] = ACTIONS(3602), - [anon_sym_LPAREN_PIPE] = ACTIONS(3602), - [sym_op_identifier] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_PLUS_DOT] = ACTIONS(3602), - [anon_sym_DASH_DOT] = ACTIONS(3602), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3604), - [aux_sym_prefix_op_token1] = ACTIONS(3602), - [aux_sym_infix_op_token1] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_COLON_EQ] = ACTIONS(3604), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), - [sym_int] = ACTIONS(3602), - [sym_xint] = ACTIONS(3604), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3604), - [sym__newline] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_as] = ACTIONS(3961), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3961), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2106] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2106), [sym_block_comment] = STATE(2106), [sym_line_comment] = STATE(2106), [sym_compiler_directive_decl] = STATE(2106), [sym_fsi_directive_decl] = STATE(2106), [sym_preproc_line] = STATE(2106), - [sym_identifier] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym_COLON] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_COLON_QMARK] = ACTIONS(3167), - [anon_sym_COLON_COLON] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_AT_GT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3167), - [anon_sym_AT_AT_GT] = ACTIONS(3167), - [anon_sym_COLON_GT] = ACTIONS(3169), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_DOT_LBRACK] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_LPAREN2] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3167), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3167), - [anon_sym_DASH_DOT] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3167), - [aux_sym_infix_op_token1] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3167), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3167), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [sym__newline] = ACTIONS(3169), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_open] = ACTIONS(3012), + [anon_sym_LBRACK_LT] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_and] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [aux_sym_access_modifier_token1] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_member] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_val] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3010), + [anon_sym_POUNDload] = ACTIONS(3010), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), }, [2107] = { [sym_xml_doc] = STATE(2107), @@ -277248,93 +281562,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2107), [sym_fsi_directive_decl] = STATE(2107), [sym_preproc_line] = STATE(2107), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [anon_sym_POUNDendif] = ACTIONS(3328), - [anon_sym_POUNDelse] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [anon_sym_POUNDendif] = ACTIONS(3658), + [anon_sym_POUNDelse] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2108] = { [sym_xml_doc] = STATE(2108), @@ -277343,93 +281655,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2108), [sym_fsi_directive_decl] = STATE(2108), [sym_preproc_line] = STATE(2108), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_DASH_GT] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [anon_sym_POUNDendif] = ACTIONS(3662), + [anon_sym_POUNDelse] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2109] = { [sym_xml_doc] = STATE(2109), @@ -277438,93 +281748,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2109), [sym_fsi_directive_decl] = STATE(2109), [sym_preproc_line] = STATE(2109), - [aux_sym_long_identifier_repeat1] = STATE(2109), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(4229), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4448), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [anon_sym_POUNDendif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2110] = { [sym_xml_doc] = STATE(2110), @@ -277533,93 +281841,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2110), [sym_fsi_directive_decl] = STATE(2110), [sym_preproc_line] = STATE(2110), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_DASH_GT] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_DOT_DOT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_as] = ACTIONS(3957), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_with] = ACTIONS(3957), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2111] = { [sym_xml_doc] = STATE(2111), @@ -277628,93 +281934,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2111), [sym_fsi_directive_decl] = STATE(2111), [sym_preproc_line] = STATE(2111), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_DASH_GT] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_DOT_DOT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_as] = ACTIONS(3953), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_with] = ACTIONS(3953), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2112] = { [sym_xml_doc] = STATE(2112), @@ -277723,93 +282027,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2112), [sym_fsi_directive_decl] = STATE(2112), [sym_preproc_line] = STATE(2112), - [sym_identifier] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_let_BANG] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3245), - [anon_sym_COLON_QMARK] = ACTIONS(3245), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LBRACK_PIPE] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_LBRACE_PIPE] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_return_BANG] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_yield_BANG] = ACTIONS(3247), - [anon_sym_lazy] = ACTIONS(3245), - [anon_sym_assert] = ACTIONS(3245), - [anon_sym_upcast] = ACTIONS(3245), - [anon_sym_downcast] = ACTIONS(3245), - [anon_sym_LT_AT] = ACTIONS(3245), - [anon_sym_AT_GT] = ACTIONS(3245), - [anon_sym_LT_AT_AT] = ACTIONS(3245), - [anon_sym_AT_AT_GT] = ACTIONS(3245), - [anon_sym_COLON_GT] = ACTIONS(3247), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_fun] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_match_BANG] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_DOT_LBRACK] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_use] = ACTIONS(3245), - [anon_sym_use_BANG] = ACTIONS(3247), - [anon_sym_do_BANG] = ACTIONS(3247), - [anon_sym_begin] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3245), - [aux_sym_char_token1] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_AT_DQUOTE] = ACTIONS(3247), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3247), - [sym_bool] = ACTIONS(3245), - [sym_unit] = ACTIONS(3245), - [anon_sym_LPAREN_PIPE] = ACTIONS(3245), - [sym_op_identifier] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_PLUS_DOT] = ACTIONS(3245), - [anon_sym_DASH_DOT] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3247), - [aux_sym_prefix_op_token1] = ACTIONS(3245), - [aux_sym_infix_op_token1] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_DOLLAR] = ACTIONS(3245), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3245), - [sym_int] = ACTIONS(3245), - [sym_xint] = ACTIONS(3247), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3247), - [anon_sym_POUNDendif] = ACTIONS(3247), - [sym__newline] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_as] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_with] = ACTIONS(3949), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2113] = { [sym_xml_doc] = STATE(2113), @@ -277818,93 +282120,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2113), [sym_fsi_directive_decl] = STATE(2113), [sym_preproc_line] = STATE(2113), - [sym_identifier] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_let_BANG] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_null] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_COLON_QMARK] = ACTIONS(3131), - [anon_sym_COLON_COLON] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_LBRACK_PIPE] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_LBRACE_PIPE] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_return_BANG] = ACTIONS(3133), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_yield_BANG] = ACTIONS(3133), - [anon_sym_lazy] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_upcast] = ACTIONS(3131), - [anon_sym_downcast] = ACTIONS(3131), - [anon_sym_LT_AT] = ACTIONS(3131), - [anon_sym_AT_GT] = ACTIONS(3131), - [anon_sym_LT_AT_AT] = ACTIONS(3131), - [anon_sym_AT_AT_GT] = ACTIONS(3131), - [anon_sym_COLON_GT] = ACTIONS(3133), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_fun] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_match_BANG] = ACTIONS(3133), - [anon_sym_function] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_DOT_LBRACK] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_use] = ACTIONS(3131), - [anon_sym_use_BANG] = ACTIONS(3133), - [anon_sym_do_BANG] = ACTIONS(3133), - [anon_sym_begin] = ACTIONS(3131), - [anon_sym_LPAREN2] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3131), - [aux_sym_char_token1] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3131), - [anon_sym_DQUOTE] = ACTIONS(3131), - [anon_sym_AT_DQUOTE] = ACTIONS(3133), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3133), - [sym_bool] = ACTIONS(3131), - [sym_unit] = ACTIONS(3131), - [anon_sym_LPAREN_PIPE] = ACTIONS(3131), - [sym_op_identifier] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_PLUS_DOT] = ACTIONS(3131), - [anon_sym_DASH_DOT] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3133), - [aux_sym_prefix_op_token1] = ACTIONS(3131), - [aux_sym_infix_op_token1] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_DOLLAR] = ACTIONS(3131), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3131), - [sym_int] = ACTIONS(3131), - [sym_xint] = ACTIONS(3133), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3133), - [anon_sym_POUNDendif] = ACTIONS(3133), - [sym__newline] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_as] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_with] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2114] = { [sym_xml_doc] = STATE(2114), @@ -277913,93 +282213,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2114), [sym_fsi_directive_decl] = STATE(2114), [sym_preproc_line] = STATE(2114), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [anon_sym_POUNDendif] = ACTIONS(3314), - [anon_sym_POUNDelse] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [anon_sym_POUNDendif] = ACTIONS(3695), + [anon_sym_POUNDelse] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2115] = { [sym_xml_doc] = STATE(2115), @@ -278008,93 +282306,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2115), [sym_fsi_directive_decl] = STATE(2115), [sym_preproc_line] = STATE(2115), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_DASH_GT] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_DOT_DOT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_as] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_with] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2116] = { [sym_xml_doc] = STATE(2116), @@ -278103,93 +282399,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2116), [sym_fsi_directive_decl] = STATE(2116), [sym_preproc_line] = STATE(2116), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [anon_sym_POUNDendif] = ACTIONS(3724), + [anon_sym_POUNDelse] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2117] = { [sym_xml_doc] = STATE(2117), @@ -278198,93 +282492,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2117), [sym_fsi_directive_decl] = STATE(2117), [sym_preproc_line] = STATE(2117), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_DASH_GT] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_DOT_DOT] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [aux_sym_sequential_expression_repeat1] = STATE(2117), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [anon_sym_POUNDendif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4830), }, [2118] = { [sym_xml_doc] = STATE(2118), @@ -278293,93 +282585,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2118), [sym_fsi_directive_decl] = STATE(2118), [sym_preproc_line] = STATE(2118), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_DASH_GT] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_as] = ACTIONS(3941), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_with] = ACTIONS(3941), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2119] = { [sym_xml_doc] = STATE(2119), @@ -278388,93 +282678,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2119), [sym_fsi_directive_decl] = STATE(2119), [sym_preproc_line] = STATE(2119), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_DASH_GT] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_DOT_DOT] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [anon_sym_POUNDendif] = ACTIONS(3728), + [anon_sym_POUNDelse] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2120] = { [sym_xml_doc] = STATE(2120), @@ -278483,93 +282771,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2120), [sym_fsi_directive_decl] = STATE(2120), [sym_preproc_line] = STATE(2120), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_DASH_GT] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_GT] = ACTIONS(3542), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [2121] = { [sym_xml_doc] = STATE(2121), @@ -278578,93 +282864,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2121), [sym_fsi_directive_decl] = STATE(2121), [sym_preproc_line] = STATE(2121), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_DOT_DOT] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3483), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2122] = { [sym_xml_doc] = STATE(2122), @@ -278673,92 +282957,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2122), [sym_fsi_directive_decl] = STATE(2122), [sym_preproc_line] = STATE(2122), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_GT] = ACTIONS(3493), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [anon_sym_POUNDendif] = ACTIONS(3736), + [anon_sym_POUNDelse] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2123] = { [sym_xml_doc] = STATE(2123), @@ -278767,92 +283050,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2123), [sym_fsi_directive_decl] = STATE(2123), [sym_preproc_line] = STATE(2123), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [aux_sym_long_identifier_repeat1] = STATE(2176), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4833), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [2124] = { [sym_xml_doc] = STATE(2124), @@ -278861,92 +283143,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2124), [sym_fsi_directive_decl] = STATE(2124), [sym_preproc_line] = STATE(2124), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_GT] = ACTIONS(3326), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [anon_sym_POUNDendif] = ACTIONS(3740), + [anon_sym_POUNDelse] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2125] = { [sym_xml_doc] = STATE(2125), @@ -278955,92 +283236,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2125), [sym_fsi_directive_decl] = STATE(2125), [sym_preproc_line] = STATE(2125), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [anon_sym_POUNDendif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [aux_sym_long_identifier_repeat1] = STATE(2128), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4837), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [anon_sym_POUNDendif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2126] = { [sym_xml_doc] = STATE(2126), @@ -279049,92 +283329,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2126), [sym_fsi_directive_decl] = STATE(2126), [sym_preproc_line] = STATE(2126), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_as] = ACTIONS(3933), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_with] = ACTIONS(3933), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2127] = { [sym_xml_doc] = STATE(2127), @@ -279143,92 +283422,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2127), [sym_fsi_directive_decl] = STATE(2127), [sym_preproc_line] = STATE(2127), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [anon_sym_POUNDendif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_as] = ACTIONS(3925), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_with] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2128] = { [sym_xml_doc] = STATE(2128), @@ -279237,92 +283515,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2128), [sym_fsi_directive_decl] = STATE(2128), [sym_preproc_line] = STATE(2128), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [aux_sym_long_identifier_repeat1] = STATE(2128), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2129] = { [sym_xml_doc] = STATE(2129), @@ -279331,92 +283608,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2129), [sym_fsi_directive_decl] = STATE(2129), [sym_preproc_line] = STATE(2129), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [anon_sym_POUNDendif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_as] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2130] = { [sym_xml_doc] = STATE(2130), @@ -279425,92 +283701,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2130), [sym_fsi_directive_decl] = STATE(2130), [sym_preproc_line] = STATE(2130), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [aux_sym_sequential_expression_repeat1] = STATE(2130), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_DASH_GT] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4842), }, [2131] = { [sym_xml_doc] = STATE(2131), @@ -279519,92 +283794,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2131), [sym_fsi_directive_decl] = STATE(2131), [sym_preproc_line] = STATE(2131), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_DOT_DOT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_as] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_with] = ACTIONS(3794), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2132] = { [sym_xml_doc] = STATE(2132), @@ -279613,92 +283887,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2132), [sym_fsi_directive_decl] = STATE(2132), [sym_preproc_line] = STATE(2132), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [anon_sym_POUNDendif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_as] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_with] = ACTIONS(3914), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2133] = { [sym_xml_doc] = STATE(2133), @@ -279707,92 +283980,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2133), [sym_fsi_directive_decl] = STATE(2133), [sym_preproc_line] = STATE(2133), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [anon_sym_POUNDendif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [anon_sym_POUNDendif] = ACTIONS(3748), + [anon_sym_POUNDelse] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2134] = { [sym_xml_doc] = STATE(2134), @@ -279801,92 +284073,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2134), [sym_fsi_directive_decl] = STATE(2134), [sym_preproc_line] = STATE(2134), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [aux_sym_long_identifier_repeat1] = STATE(2125), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4845), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [anon_sym_POUNDendif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [2135] = { [sym_xml_doc] = STATE(2135), @@ -279895,92 +284166,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2135), [sym_fsi_directive_decl] = STATE(2135), [sym_preproc_line] = STATE(2135), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [anon_sym_POUNDendif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [anon_sym_POUNDendif] = ACTIONS(3816), + [anon_sym_POUNDelse] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2136] = { [sym_xml_doc] = STATE(2136), @@ -279989,92 +284259,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2136), [sym_fsi_directive_decl] = STATE(2136), [sym_preproc_line] = STATE(2136), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_as] = ACTIONS(3906), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_with] = ACTIONS(3906), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2137] = { [sym_xml_doc] = STATE(2137), @@ -280083,92 +284352,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2137), [sym_fsi_directive_decl] = STATE(2137), [sym_preproc_line] = STATE(2137), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [anon_sym_POUNDendif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4849), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2138] = { [sym_xml_doc] = STATE(2138), @@ -280177,92 +284445,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2138), [sym_fsi_directive_decl] = STATE(2138), [sym_preproc_line] = STATE(2138), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [anon_sym_POUNDendif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [anon_sym_POUNDendif] = ACTIONS(3768), + [anon_sym_POUNDelse] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2139] = { [sym_xml_doc] = STATE(2139), @@ -280271,92 +284538,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2139), [sym_fsi_directive_decl] = STATE(2139), [sym_preproc_line] = STATE(2139), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_as] = ACTIONS(3899), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_with] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2140] = { [sym_xml_doc] = STATE(2140), @@ -280365,92 +284631,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2140), [sym_fsi_directive_decl] = STATE(2140), [sym_preproc_line] = STATE(2140), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_as] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3895), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2141] = { [sym_xml_doc] = STATE(2141), @@ -280459,92 +284724,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2141), [sym_fsi_directive_decl] = STATE(2141), [sym_preproc_line] = STATE(2141), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_GT] = ACTIONS(3356), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_as] = ACTIONS(3701), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_with] = ACTIONS(3701), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2142] = { [sym_xml_doc] = STATE(2142), @@ -280553,92 +284817,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2142), [sym_fsi_directive_decl] = STATE(2142), [sym_preproc_line] = STATE(2142), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_as] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3598), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2143] = { [sym_xml_doc] = STATE(2143), @@ -280647,92 +284910,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2143), [sym_fsi_directive_decl] = STATE(2143), [sym_preproc_line] = STATE(2143), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_DOT_DOT] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [anon_sym_POUNDendif] = ACTIONS(3772), + [anon_sym_POUNDelse] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2144] = { [sym_xml_doc] = STATE(2144), @@ -280741,92 +285003,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2144), [sym_fsi_directive_decl] = STATE(2144), [sym_preproc_line] = STATE(2144), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_GT] = ACTIONS(3523), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [2145] = { [sym_xml_doc] = STATE(2145), @@ -280835,92 +285096,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2145), [sym_fsi_directive_decl] = STATE(2145), [sym_preproc_line] = STATE(2145), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_as] = ACTIONS(3888), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_with] = ACTIONS(3888), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2146] = { [sym_xml_doc] = STATE(2146), @@ -280929,186 +285189,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2146), [sym_fsi_directive_decl] = STATE(2146), [sym_preproc_line] = STATE(2146), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_as] = ACTIONS(3884), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_with] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2147] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3841), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym__pattern_param] = STATE(2615), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2147), [sym_block_comment] = STATE(2147), [sym_line_comment] = STATE(2147), [sym_compiler_directive_decl] = STATE(2147), [sym_fsi_directive_decl] = STATE(2147), [sym_preproc_line] = STATE(2147), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_GT] = ACTIONS(3451), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4519), + [anon_sym__] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_COLON_QMARK] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_PIPE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_AT_DQUOTE] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [sym_bool] = ACTIONS(4519), + [sym_unit] = ACTIONS(4523), + [anon_sym_LPAREN_PIPE] = ACTIONS(4519), + [sym_op_identifier] = ACTIONS(4523), + [sym_int] = ACTIONS(4519), + [sym_xint] = ACTIONS(4523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), }, [2148] = { [sym_xml_doc] = STATE(2148), @@ -281117,92 +285375,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2148), [sym_fsi_directive_decl] = STATE(2148), [sym_preproc_line] = STATE(2148), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_DOT_DOT] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [anon_sym_POUNDendif] = ACTIONS(3579), + [anon_sym_POUNDelse] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2149] = { [sym_xml_doc] = STATE(2149), @@ -281211,92 +285468,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2149), [sym_fsi_directive_decl] = STATE(2149), [sym_preproc_line] = STATE(2149), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_DOT_DOT] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [anon_sym_POUNDendif] = ACTIONS(3780), + [anon_sym_POUNDelse] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2150] = { [sym_xml_doc] = STATE(2150), @@ -281305,92 +285561,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2150), [sym_fsi_directive_decl] = STATE(2150), [sym_preproc_line] = STATE(2150), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_GT] = ACTIONS(3469), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_AT_AT_GT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [2151] = { [sym_xml_doc] = STATE(2151), @@ -281399,92 +285654,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2151), [sym_fsi_directive_decl] = STATE(2151), [sym_preproc_line] = STATE(2151), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_as] = ACTIONS(3878), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_with] = ACTIONS(3878), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2152] = { [sym_xml_doc] = STATE(2152), @@ -281493,92 +285747,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2152), [sym_fsi_directive_decl] = STATE(2152), [sym_preproc_line] = STATE(2152), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_as] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_with] = ACTIONS(3863), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2153] = { [sym_xml_doc] = STATE(2153), @@ -281587,186 +285840,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2153), [sym_fsi_directive_decl] = STATE(2153), [sym_preproc_line] = STATE(2153), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_AT_GT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [2154] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5780), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2681), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(3884), + [sym_format_string] = STATE(3883), + [sym__string_literal] = STATE(3883), + [sym_string] = STATE(3884), + [sym_verbatim_string] = STATE(3884), + [sym_bytearray] = STATE(3884), + [sym_verbatim_bytearray] = STATE(3884), + [sym_format_triple_quoted_string] = STATE(3882), + [sym_triple_quoted_string] = STATE(3884), + [sym_const] = STATE(3923), + [sym_long_identifier] = STATE(3753), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(3884), + [sym_byte] = STATE(3884), + [sym_int16] = STATE(3884), + [sym_uint16] = STATE(3884), + [sym_int32] = STATE(3884), + [sym_uint32] = STATE(3884), + [sym_nativeint] = STATE(3884), + [sym_unativeint] = STATE(3884), + [sym_int64] = STATE(3884), + [sym_uint64] = STATE(3884), + [sym_ieee32] = STATE(3884), + [sym_ieee64] = STATE(3884), + [sym_bignum] = STATE(3884), + [sym_decimal] = STATE(3884), + [sym_float] = STATE(3697), [sym_xml_doc] = STATE(2154), [sym_block_comment] = STATE(2154), [sym_line_comment] = STATE(2154), [sym_compiler_directive_decl] = STATE(2154), [sym_fsi_directive_decl] = STATE(2154), [sym_preproc_line] = STATE(2154), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_GT] = ACTIONS(3284), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_DASH_GT] = ACTIONS(4523), + [anon_sym_when] = ACTIONS(4519), + [aux_sym_char_token1] = ACTIONS(4539), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [anon_sym_AT_DQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4549), + [sym_bool] = ACTIONS(4551), + [sym_unit] = ACTIONS(4553), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4559), + [sym_xint] = ACTIONS(4561), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2155] = { [sym_xml_doc] = STATE(2155), @@ -281775,92 +286026,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2155), [sym_fsi_directive_decl] = STATE(2155), [sym_preproc_line] = STATE(2155), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_GT] = ACTIONS(3280), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_AT_GT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2156] = { [sym_xml_doc] = STATE(2156), @@ -281869,92 +286119,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2156), [sym_fsi_directive_decl] = STATE(2156), [sym_preproc_line] = STATE(2156), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4849), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2157] = { [sym_xml_doc] = STATE(2157), @@ -281963,92 +286212,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2157), [sym_fsi_directive_decl] = STATE(2157), [sym_preproc_line] = STATE(2157), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_GT] = ACTIONS(3272), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_GT] = ACTIONS(3533), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [2158] = { [sym_xml_doc] = STATE(2158), @@ -282057,92 +286305,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2158), [sym_fsi_directive_decl] = STATE(2158), [sym_preproc_line] = STATE(2158), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [anon_sym_POUNDendif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_as] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_with] = ACTIONS(3847), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2159] = { [sym_xml_doc] = STATE(2159), @@ -282151,92 +286398,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2159), [sym_fsi_directive_decl] = STATE(2159), [sym_preproc_line] = STATE(2159), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [anon_sym_POUNDendif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_DOT_DOT] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2160] = { [sym_xml_doc] = STATE(2160), @@ -282245,92 +286491,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2160), [sym_fsi_directive_decl] = STATE(2160), [sym_preproc_line] = STATE(2160), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_DOT_DOT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [anon_sym_POUNDendif] = ACTIONS(3312), + [anon_sym_POUNDelse] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2161] = { [sym_xml_doc] = STATE(2161), @@ -282339,92 +286584,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2161), [sym_fsi_directive_decl] = STATE(2161), [sym_preproc_line] = STATE(2161), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_GT] = ACTIONS(3268), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [anon_sym_POUNDendif] = ACTIONS(3312), + [anon_sym_POUNDelse] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2162] = { [sym_xml_doc] = STATE(2162), @@ -282433,92 +286677,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2162), [sym_fsi_directive_decl] = STATE(2162), [sym_preproc_line] = STATE(2162), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_GT] = ACTIONS(3262), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_AT_AT_GT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [2163] = { [sym_xml_doc] = STATE(2163), @@ -282527,186 +286770,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2163), [sym_fsi_directive_decl] = STATE(2163), [sym_preproc_line] = STATE(2163), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [anon_sym_POUNDendif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4080), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2164] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5546), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(2164), [sym_block_comment] = STATE(2164), [sym_line_comment] = STATE(2164), [sym_compiler_directive_decl] = STATE(2164), [sym_fsi_directive_decl] = STATE(2164), [sym_preproc_line] = STATE(2164), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_GT] = ACTIONS(3461), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym__newline] = ACTIONS(4762), + [sym__dedent] = ACTIONS(4762), }, [2165] = { [sym_xml_doc] = STATE(2165), @@ -282715,92 +286956,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2165), [sym_fsi_directive_decl] = STATE(2165), [sym_preproc_line] = STATE(2165), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_DOT_DOT] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [anon_sym_POUNDendif] = ACTIONS(3784), + [anon_sym_POUNDelse] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2166] = { [sym_xml_doc] = STATE(2166), @@ -282809,92 +287049,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2166), [sym_fsi_directive_decl] = STATE(2166), [sym_preproc_line] = STATE(2166), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_DOT_DOT] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [aux_sym_sequential_expression_repeat1] = STATE(2039), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_AT_AT_GT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2167] = { [sym_xml_doc] = STATE(2167), @@ -282903,92 +287142,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2167), [sym_fsi_directive_decl] = STATE(2167), [sym_preproc_line] = STATE(2167), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [anon_sym_POUNDendif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [aux_sym_sequential_expression_repeat1] = STATE(2167), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_AT_GT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4877), }, [2168] = { [sym_xml_doc] = STATE(2168), @@ -282997,92 +287235,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2168), [sym_fsi_directive_decl] = STATE(2168), [sym_preproc_line] = STATE(2168), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_GT] = ACTIONS(3465), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_DASH_GT] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2169] = { [sym_xml_doc] = STATE(2169), @@ -283091,92 +287328,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2169), [sym_fsi_directive_decl] = STATE(2169), [sym_preproc_line] = STATE(2169), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [anon_sym_POUNDendif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_DASH_GT] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2170] = { [sym_xml_doc] = STATE(2170), @@ -283185,92 +287421,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2170), [sym_fsi_directive_decl] = STATE(2170), [sym_preproc_line] = STATE(2170), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [anon_sym_POUNDendif] = ACTIONS(3744), + [anon_sym_POUNDelse] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2171] = { [sym_xml_doc] = STATE(2171), @@ -283279,92 +287514,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2171), [sym_fsi_directive_decl] = STATE(2171), [sym_preproc_line] = STATE(2171), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [anon_sym_POUNDendif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_DASH_GT] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2172] = { [sym_xml_doc] = STATE(2172), @@ -283373,92 +287607,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2172), [sym_fsi_directive_decl] = STATE(2172), [sym_preproc_line] = STATE(2172), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_DOT_DOT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2173] = { [sym_xml_doc] = STATE(2173), @@ -283467,92 +287700,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2173), [sym_fsi_directive_decl] = STATE(2173), [sym_preproc_line] = STATE(2173), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [anon_sym_POUNDendif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_DASH_GT] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_DOT_DOT] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2174] = { [sym_xml_doc] = STATE(2174), @@ -283561,92 +287793,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2174), [sym_fsi_directive_decl] = STATE(2174), [sym_preproc_line] = STATE(2174), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [anon_sym_POUNDendif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_as] = ACTIONS(3818), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_with] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2175] = { [sym_xml_doc] = STATE(2175), @@ -283655,92 +287886,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2175), [sym_fsi_directive_decl] = STATE(2175), [sym_preproc_line] = STATE(2175), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_GT] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [2176] = { [sym_xml_doc] = STATE(2176), @@ -283749,92 +287979,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2176), [sym_fsi_directive_decl] = STATE(2176), [sym_preproc_line] = STATE(2176), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_DOT_DOT] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [aux_sym_long_identifier_repeat1] = STATE(2279), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2177] = { [sym_xml_doc] = STATE(2177), @@ -283843,92 +288072,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2177), [sym_fsi_directive_decl] = STATE(2177), [sym_preproc_line] = STATE(2177), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [anon_sym_POUNDendif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_as] = ACTIONS(3814), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_with] = ACTIONS(3814), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2178] = { [sym_xml_doc] = STATE(2178), @@ -283937,92 +288165,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2178), [sym_fsi_directive_decl] = STATE(2178), [sym_preproc_line] = STATE(2178), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_DASH_GT] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_DOT_DOT] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2179] = { [sym_xml_doc] = STATE(2179), @@ -284031,92 +288258,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2179), [sym_fsi_directive_decl] = STATE(2179), [sym_preproc_line] = STATE(2179), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2180] = { [sym_xml_doc] = STATE(2180), @@ -284125,92 +288351,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2180), [sym_fsi_directive_decl] = STATE(2180), [sym_preproc_line] = STATE(2180), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3253), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2181] = { [sym_xml_doc] = STATE(2181), @@ -284219,92 +288444,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2181), [sym_fsi_directive_decl] = STATE(2181), [sym_preproc_line] = STATE(2181), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [anon_sym_POUNDendif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_DASH_GT] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2182] = { [sym_xml_doc] = STATE(2182), @@ -284313,92 +288537,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2182), [sym_fsi_directive_decl] = STATE(2182), [sym_preproc_line] = STATE(2182), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3409), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [anon_sym_POUNDendif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [2183] = { [sym_xml_doc] = STATE(2183), @@ -284407,92 +288630,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2183), [sym_fsi_directive_decl] = STATE(2183), [sym_preproc_line] = STATE(2183), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_DOT_DOT] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_DASH_GT] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2184] = { [sym_xml_doc] = STATE(2184), @@ -284501,92 +288723,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2184), [sym_fsi_directive_decl] = STATE(2184), [sym_preproc_line] = STATE(2184), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_DOT_DOT] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [anon_sym_POUNDendif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [2185] = { [sym_xml_doc] = STATE(2185), @@ -284595,92 +288816,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2185), [sym_fsi_directive_decl] = STATE(2185), [sym_preproc_line] = STATE(2185), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [aux_sym_sequential_expression_repeat1] = STATE(2130), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_DASH_GT] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2186] = { [sym_xml_doc] = STATE(2186), @@ -284689,92 +288909,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2186), [sym_fsi_directive_decl] = STATE(2186), [sym_preproc_line] = STATE(2186), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4882), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [anon_sym_POUNDendif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [2187] = { [sym_xml_doc] = STATE(2187), @@ -284783,92 +289002,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2187), [sym_fsi_directive_decl] = STATE(2187), [sym_preproc_line] = STATE(2187), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_DOT_DOT] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [anon_sym_POUNDendif] = ACTIONS(3618), + [anon_sym_POUNDelse] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2188] = { [sym_xml_doc] = STATE(2188), @@ -284877,92 +289095,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2188), [sym_fsi_directive_decl] = STATE(2188), [sym_preproc_line] = STATE(2188), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [anon_sym_POUNDendif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3529), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_do] = ACTIONS(3527), + [anon_sym_let] = ACTIONS(3527), + [anon_sym_let_BANG] = ACTIONS(3529), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3529), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_COLON_QMARK] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LBRACK_PIPE] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_LT_AT] = ACTIONS(3527), + [anon_sym_AT_GT] = ACTIONS(3527), + [anon_sym_LT_AT_AT] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3527), + [anon_sym_LBRACE_PIPE] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3527), + [anon_sym_return_BANG] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_yield_BANG] = ACTIONS(3529), + [anon_sym_lazy] = ACTIONS(3527), + [anon_sym_assert] = ACTIONS(3527), + [anon_sym_upcast] = ACTIONS(3527), + [anon_sym_downcast] = ACTIONS(3527), + [anon_sym_COLON_GT] = ACTIONS(3529), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_done] = ACTIONS(4884), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_fun] = ACTIONS(3527), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_match_BANG] = ACTIONS(3529), + [anon_sym_function] = ACTIONS(3527), + [anon_sym_LT_DASH] = ACTIONS(3527), + [anon_sym_DOT_LBRACK] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(3529), + [anon_sym_use] = ACTIONS(3527), + [anon_sym_use_BANG] = ACTIONS(3529), + [anon_sym_do_BANG] = ACTIONS(3529), + [anon_sym_begin] = ACTIONS(3527), + [anon_sym_LPAREN2] = ACTIONS(3529), + [anon_sym_or] = ACTIONS(3527), + [aux_sym_char_token1] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_AT_DQUOTE] = ACTIONS(3529), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3529), + [sym_bool] = ACTIONS(3527), + [sym_unit] = ACTIONS(3527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3527), + [sym_op_identifier] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3527), + [anon_sym_PLUS_DOT] = ACTIONS(3527), + [anon_sym_DASH_DOT] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3529), + [aux_sym_prefix_op_token1] = ACTIONS(3527), + [aux_sym_infix_op_token1] = ACTIONS(3527), + [anon_sym_PIPE_PIPE] = ACTIONS(3527), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_COLON_EQ] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3527), + [sym_int] = ACTIONS(3527), + [sym_xint] = ACTIONS(3529), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3529), + [sym__newline] = ACTIONS(3529), }, [2189] = { [sym_xml_doc] = STATE(2189), @@ -284971,92 +289188,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2189), [sym_fsi_directive_decl] = STATE(2189), [sym_preproc_line] = STATE(2189), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_DOT_DOT] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [2190] = { [sym_xml_doc] = STATE(2190), @@ -285065,92 +289281,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2190), [sym_fsi_directive_decl] = STATE(2190), [sym_preproc_line] = STATE(2190), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [anon_sym_POUNDendif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2191] = { [sym_xml_doc] = STATE(2191), @@ -285159,92 +289374,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2191), [sym_fsi_directive_decl] = STATE(2191), [sym_preproc_line] = STATE(2191), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [anon_sym_POUNDendif] = ACTIONS(3583), + [anon_sym_POUNDelse] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2192] = { [sym_xml_doc] = STATE(2192), @@ -285253,92 +289467,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2192), [sym_fsi_directive_decl] = STATE(2192), [sym_preproc_line] = STATE(2192), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [anon_sym_POUNDendif] = ACTIONS(3776), + [anon_sym_POUNDelse] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2193] = { [sym_xml_doc] = STATE(2193), @@ -285347,92 +289560,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2193), [sym_fsi_directive_decl] = STATE(2193), [sym_preproc_line] = STATE(2193), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_DOT_DOT] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_as] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_with] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2194] = { [sym_xml_doc] = STATE(2194), @@ -285441,92 +289653,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2194), [sym_fsi_directive_decl] = STATE(2194), [sym_preproc_line] = STATE(2194), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [anon_sym_POUNDendif] = ACTIONS(3785), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_DASH_GT] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_DOT_DOT] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2195] = { [sym_xml_doc] = STATE(2195), @@ -285535,92 +289746,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2195), [sym_fsi_directive_decl] = STATE(2195), [sym_preproc_line] = STATE(2195), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_DOT_DOT] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_AT_AT_GT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4693), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2196] = { [sym_xml_doc] = STATE(2196), @@ -285629,92 +289839,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2196), [sym_fsi_directive_decl] = STATE(2196), [sym_preproc_line] = STATE(2196), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_DOT_DOT] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_DASH_GT] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2197] = { [sym_xml_doc] = STATE(2197), @@ -285723,92 +289932,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2197), [sym_fsi_directive_decl] = STATE(2197), [sym_preproc_line] = STATE(2197), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_DASH_GT] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_DOT_DOT] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2198] = { [sym_xml_doc] = STATE(2198), @@ -285817,92 +290025,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2198), [sym_fsi_directive_decl] = STATE(2198), [sym_preproc_line] = STATE(2198), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [anon_sym_POUNDendif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_DASH_GT] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_DOT_DOT] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2199] = { [sym_xml_doc] = STATE(2199), @@ -285911,92 +290118,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2199), [sym_fsi_directive_decl] = STATE(2199), [sym_preproc_line] = STATE(2199), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_GT] = ACTIONS(3428), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_DASH_GT] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_DOT_DOT] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2200] = { [sym_xml_doc] = STATE(2200), @@ -286005,92 +290211,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2200), [sym_fsi_directive_decl] = STATE(2200), [sym_preproc_line] = STATE(2200), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_DOT_DOT] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_DASH_GT] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_DOT_DOT] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2201] = { [sym_xml_doc] = STATE(2201), @@ -286099,92 +290304,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2201), [sym_fsi_directive_decl] = STATE(2201), [sym_preproc_line] = STATE(2201), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [anon_sym_POUNDendif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [aux_sym_sequential_expression_repeat1] = STATE(2201), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_DOT_DOT] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4886), }, [2202] = { [sym_xml_doc] = STATE(2202), @@ -286193,92 +290397,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2202), [sym_fsi_directive_decl] = STATE(2202), [sym_preproc_line] = STATE(2202), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_GT] = ACTIONS(3477), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4889), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [2203] = { [sym_xml_doc] = STATE(2203), @@ -286287,92 +290490,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2203), [sym_fsi_directive_decl] = STATE(2203), [sym_preproc_line] = STATE(2203), - [sym_identifier] = ACTIONS(3469), - [anon_sym_EQ] = ACTIONS(3471), - [anon_sym_COLON] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_COLON_QMARK] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_AT_GT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3469), - [anon_sym_AT_AT_GT] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_LT_DASH] = ACTIONS(3469), - [anon_sym_DOT_LBRACK] = ACTIONS(3471), - [anon_sym_DOT] = ACTIONS(3469), - [anon_sym_LT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3471), - [anon_sym_or] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3469), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [anon_sym_PERCENT] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3469), - [aux_sym_infix_op_token1] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [anon_sym_BANG_EQ] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_DOLLAR] = ACTIONS(3469), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3469), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), - [anon_sym_POUNDendif] = ACTIONS(3471), - [sym__newline] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_DASH_GT] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2204] = { [sym_xml_doc] = STATE(2204), @@ -286381,92 +290583,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2204), [sym_fsi_directive_decl] = STATE(2204), [sym_preproc_line] = STATE(2204), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [anon_sym_POUNDendif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [aux_sym_long_identifier_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_AT_AT_GT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2205] = { [sym_xml_doc] = STATE(2205), @@ -286475,92 +290676,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2205), [sym_fsi_directive_decl] = STATE(2205), [sym_preproc_line] = STATE(2205), - [sym_identifier] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3453), - [anon_sym_COLON] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_QMARK] = ACTIONS(3451), - [anon_sym_COLON_QMARK] = ACTIONS(3451), - [anon_sym_COLON_COLON] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_AT_GT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3451), - [anon_sym_AT_AT_GT] = ACTIONS(3451), - [anon_sym_COLON_GT] = ACTIONS(3453), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_LT_DASH] = ACTIONS(3451), - [anon_sym_DOT_LBRACK] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3451), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3451), - [anon_sym_DASH_DOT] = ACTIONS(3451), - [anon_sym_PERCENT] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3451), - [aux_sym_infix_op_token1] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BANG_EQ] = ACTIONS(3451), - [anon_sym_COLON_EQ] = ACTIONS(3453), - [anon_sym_DOLLAR] = ACTIONS(3451), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3451), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), - [sym__newline] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_DASH_GT] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2206] = { [sym_xml_doc] = STATE(2206), @@ -286569,92 +290769,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2206), [sym_fsi_directive_decl] = STATE(2206), [sym_preproc_line] = STATE(2206), - [sym_identifier] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3297), - [anon_sym_COLON] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_COLON_QMARK] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_AT_GT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3295), - [anon_sym_AT_AT_GT] = ACTIONS(3295), - [anon_sym_COLON_GT] = ACTIONS(3297), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_DOT_LBRACK] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [anon_sym_LPAREN2] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3295), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3295), - [anon_sym_DASH_DOT] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3295), - [aux_sym_infix_op_token1] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3297), - [anon_sym_DOLLAR] = ACTIONS(3295), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3295), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), - [anon_sym_POUNDendif] = ACTIONS(3297), - [sym__newline] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_DASH_GT] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2207] = { [sym_xml_doc] = STATE(2207), @@ -286663,92 +290862,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2207), [sym_fsi_directive_decl] = STATE(2207), [sym_preproc_line] = STATE(2207), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_DOT_DOT] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2208] = { [sym_xml_doc] = STATE(2208), @@ -286757,92 +290955,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2208), [sym_fsi_directive_decl] = STATE(2208), [sym_preproc_line] = STATE(2208), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [anon_sym_POUNDendif] = ACTIONS(3788), + [anon_sym_POUNDelse] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2209] = { [sym_xml_doc] = STATE(2209), @@ -286851,186 +291048,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2209), [sym_fsi_directive_decl] = STATE(2209), [sym_preproc_line] = STATE(2209), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [anon_sym_POUNDendif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_as] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2210] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5013), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym__pattern_param] = STATE(2372), - [sym_char] = STATE(3454), - [sym_format_string] = STATE(3459), - [sym__string_literal] = STATE(3459), - [sym_string] = STATE(3454), - [sym_verbatim_string] = STATE(3454), - [sym_bytearray] = STATE(3454), - [sym_verbatim_bytearray] = STATE(3454), - [sym_format_triple_quoted_string] = STATE(3460), - [sym_triple_quoted_string] = STATE(3454), - [sym_const] = STATE(3446), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3371), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(3454), - [sym_byte] = STATE(3454), - [sym_int16] = STATE(3454), - [sym_uint16] = STATE(3454), - [sym_int32] = STATE(3454), - [sym_uint32] = STATE(3454), - [sym_nativeint] = STATE(3454), - [sym_unativeint] = STATE(3454), - [sym_int64] = STATE(3454), - [sym_uint64] = STATE(3454), - [sym_ieee32] = STATE(3454), - [sym_ieee64] = STATE(3454), - [sym_bignum] = STATE(3454), - [sym_decimal] = STATE(3454), - [sym_float] = STATE(3338), [sym_xml_doc] = STATE(2210), [sym_block_comment] = STATE(2210), [sym_line_comment] = STATE(2210), [sym_compiler_directive_decl] = STATE(2210), [sym_fsi_directive_decl] = STATE(2210), [sym_preproc_line] = STATE(2210), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4242), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4256), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4258), - [anon_sym_DQUOTE] = ACTIONS(4260), - [anon_sym_AT_DQUOTE] = ACTIONS(4262), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4266), - [sym_bool] = ACTIONS(4268), - [sym_unit] = ACTIONS(4270), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4276), - [sym_xint] = ACTIONS(4278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [sym__newline] = ACTIONS(4240), - [sym__dedent] = ACTIONS(4240), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_AT_GT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [2211] = { [sym_xml_doc] = STATE(2211), @@ -287039,92 +291234,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2211), [sym_fsi_directive_decl] = STATE(2211), [sym_preproc_line] = STATE(2211), - [sym_identifier] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3290), - [anon_sym_COLON] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_QMARK] = ACTIONS(3288), - [anon_sym_COLON_QMARK] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_AT_GT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3288), - [anon_sym_AT_AT_GT] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(3290), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_LT_DASH] = ACTIONS(3288), - [anon_sym_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_or] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3288), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3288), - [anon_sym_DASH_DOT] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_AMP_AMP] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3288), - [aux_sym_infix_op_token1] = ACTIONS(3288), - [anon_sym_PIPE_PIPE] = ACTIONS(3288), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_COLON_EQ] = ACTIONS(3290), - [anon_sym_DOLLAR] = ACTIONS(3288), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3288), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), - [anon_sym_POUNDendif] = ACTIONS(3290), - [sym__newline] = ACTIONS(3290), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [anon_sym_POUNDendif] = ACTIONS(3707), + [anon_sym_POUNDelse] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2212] = { [sym_xml_doc] = STATE(2212), @@ -287133,92 +291327,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2212), [sym_fsi_directive_decl] = STATE(2212), [sym_preproc_line] = STATE(2212), - [sym_identifier] = ACTIONS(3284), - [anon_sym_EQ] = ACTIONS(3286), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(3284), - [anon_sym_COLON_QMARK] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_AT_GT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3284), - [anon_sym_AT_AT_GT] = ACTIONS(3284), - [anon_sym_COLON_GT] = ACTIONS(3286), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_LT_DASH] = ACTIONS(3284), - [anon_sym_DOT_LBRACK] = ACTIONS(3286), - [anon_sym_DOT] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_or] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3284), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3284), - [anon_sym_DASH_DOT] = ACTIONS(3284), - [anon_sym_PERCENT] = ACTIONS(3284), - [anon_sym_AMP_AMP] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3284), - [aux_sym_infix_op_token1] = ACTIONS(3284), - [anon_sym_PIPE_PIPE] = ACTIONS(3284), - [anon_sym_BANG_EQ] = ACTIONS(3284), - [anon_sym_COLON_EQ] = ACTIONS(3286), - [anon_sym_DOLLAR] = ACTIONS(3284), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3284), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), - [anon_sym_POUNDendif] = ACTIONS(3286), - [sym__newline] = ACTIONS(3286), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_DASH_GT] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2213] = { [sym_xml_doc] = STATE(2213), @@ -287227,92 +291420,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2213), [sym_fsi_directive_decl] = STATE(2213), [sym_preproc_line] = STATE(2213), - [sym_identifier] = ACTIONS(3280), - [anon_sym_EQ] = ACTIONS(3282), - [anon_sym_COLON] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_QMARK] = ACTIONS(3280), - [anon_sym_COLON_QMARK] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_AT_GT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3280), - [anon_sym_AT_AT_GT] = ACTIONS(3280), - [anon_sym_COLON_GT] = ACTIONS(3282), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_LT_DASH] = ACTIONS(3280), - [anon_sym_DOT_LBRACK] = ACTIONS(3282), - [anon_sym_DOT] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_or] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3280), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3280), - [anon_sym_DASH_DOT] = ACTIONS(3280), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3280), - [aux_sym_infix_op_token1] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3280), - [anon_sym_COLON_EQ] = ACTIONS(3282), - [anon_sym_DOLLAR] = ACTIONS(3280), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3280), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), - [anon_sym_POUNDendif] = ACTIONS(3282), - [sym__newline] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_DASH_GT] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2214] = { [sym_xml_doc] = STATE(2214), @@ -287321,92 +291513,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2214), [sym_fsi_directive_decl] = STATE(2214), [sym_preproc_line] = STATE(2214), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [anon_sym_POUNDendif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [anon_sym_POUNDendif] = ACTIONS(3792), + [anon_sym_POUNDelse] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2215] = { [sym_xml_doc] = STATE(2215), @@ -287415,92 +291606,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2215), [sym_fsi_directive_decl] = STATE(2215), [sym_preproc_line] = STATE(2215), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_DOT_DOT] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [anon_sym_POUNDendif] = ACTIONS(3861), + [anon_sym_POUNDelse] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2216] = { [sym_xml_doc] = STATE(2216), @@ -287509,92 +291699,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2216), [sym_fsi_directive_decl] = STATE(2216), [sym_preproc_line] = STATE(2216), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_DASH_GT] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2217] = { [sym_xml_doc] = STATE(2217), @@ -287603,92 +291792,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2217), [sym_fsi_directive_decl] = STATE(2217), [sym_preproc_line] = STATE(2217), - [sym_identifier] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3278), - [anon_sym_COLON] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_QMARK] = ACTIONS(3276), - [anon_sym_COLON_QMARK] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_AT_GT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3276), - [anon_sym_AT_AT_GT] = ACTIONS(3276), - [anon_sym_COLON_GT] = ACTIONS(3278), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_LT_DASH] = ACTIONS(3276), - [anon_sym_DOT_LBRACK] = ACTIONS(3278), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_DOT_DOT] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(3278), - [anon_sym_or] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3276), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3276), - [anon_sym_DASH_DOT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3276), - [aux_sym_infix_op_token1] = ACTIONS(3276), - [anon_sym_PIPE_PIPE] = ACTIONS(3276), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_COLON_EQ] = ACTIONS(3278), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3276), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), - [sym__newline] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_DASH_GT] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_DOT_DOT] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2218] = { [sym_xml_doc] = STATE(2218), @@ -287697,92 +291885,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2218), [sym_fsi_directive_decl] = STATE(2218), [sym_preproc_line] = STATE(2218), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_DOT_DOT] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_DASH_GT] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_DOT_DOT] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2219] = { [sym_xml_doc] = STATE(2219), @@ -287791,92 +291978,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2219), [sym_fsi_directive_decl] = STATE(2219), [sym_preproc_line] = STATE(2219), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [anon_sym_POUNDendif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_DASH_GT] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_DOT_DOT] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2220] = { [sym_xml_doc] = STATE(2220), @@ -287885,92 +292071,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2220), [sym_fsi_directive_decl] = STATE(2220), [sym_preproc_line] = STATE(2220), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_DASH_GT] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2221] = { [sym_xml_doc] = STATE(2221), @@ -287979,92 +292164,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2221), [sym_fsi_directive_decl] = STATE(2221), [sym_preproc_line] = STATE(2221), - [sym_identifier] = ACTIONS(3447), - [anon_sym_EQ] = ACTIONS(3449), - [anon_sym_COLON] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_let_BANG] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3449), - [anon_sym_null] = ACTIONS(3447), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_COLON_QMARK] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_LBRACE_PIPE] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_return_BANG] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_yield_BANG] = ACTIONS(3449), - [anon_sym_lazy] = ACTIONS(3447), - [anon_sym_assert] = ACTIONS(3447), - [anon_sym_upcast] = ACTIONS(3447), - [anon_sym_downcast] = ACTIONS(3447), - [anon_sym_LT_AT] = ACTIONS(3447), - [anon_sym_AT_GT] = ACTIONS(3447), - [anon_sym_LT_AT_AT] = ACTIONS(3447), - [anon_sym_AT_AT_GT] = ACTIONS(3447), - [anon_sym_COLON_GT] = ACTIONS(3449), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_fun] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3447), - [anon_sym_match_BANG] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_LT_DASH] = ACTIONS(3447), - [anon_sym_DOT_LBRACK] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_use] = ACTIONS(3447), - [anon_sym_use_BANG] = ACTIONS(3449), - [anon_sym_do_BANG] = ACTIONS(3449), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [anon_sym_begin] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3447), - [aux_sym_char_token1] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_AT_DQUOTE] = ACTIONS(3449), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3449), - [sym_bool] = ACTIONS(3447), - [sym_unit] = ACTIONS(3447), - [anon_sym_LPAREN_PIPE] = ACTIONS(3447), - [sym_op_identifier] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3447), - [anon_sym_DASH_DOT] = ACTIONS(3447), - [anon_sym_PERCENT] = ACTIONS(3447), - [anon_sym_AMP_AMP] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3449), - [aux_sym_prefix_op_token1] = ACTIONS(3447), - [aux_sym_infix_op_token1] = ACTIONS(3447), - [anon_sym_PIPE_PIPE] = ACTIONS(3447), - [anon_sym_BANG_EQ] = ACTIONS(3447), - [anon_sym_COLON_EQ] = ACTIONS(3449), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3447), - [sym_int] = ACTIONS(3447), - [sym_xint] = ACTIONS(3449), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3449), - [sym__newline] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_DASH_GT] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_DOT_DOT] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2222] = { [sym_xml_doc] = STATE(2222), @@ -288073,92 +292257,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2222), [sym_fsi_directive_decl] = STATE(2222), [sym_preproc_line] = STATE(2222), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [anon_sym_POUNDendif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_DASH_GT] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_DOT_DOT] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2223] = { [sym_xml_doc] = STATE(2223), @@ -288167,92 +292350,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2223), [sym_fsi_directive_decl] = STATE(2223), [sym_preproc_line] = STATE(2223), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_DOT_DOT] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_DASH_GT] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_DOT_DOT] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2224] = { [sym_xml_doc] = STATE(2224), @@ -288261,92 +292443,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2224), [sym_fsi_directive_decl] = STATE(2224), [sym_preproc_line] = STATE(2224), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [anon_sym_POUNDendif] = ACTIONS(3800), + [anon_sym_POUNDelse] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2225] = { [sym_xml_doc] = STATE(2225), @@ -288355,92 +292536,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2225), [sym_fsi_directive_decl] = STATE(2225), [sym_preproc_line] = STATE(2225), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_DASH_GT] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_DOT_DOT] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2226] = { [sym_xml_doc] = STATE(2226), @@ -288449,92 +292629,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2226), [sym_fsi_directive_decl] = STATE(2226), [sym_preproc_line] = STATE(2226), - [sym_identifier] = ACTIONS(3272), - [anon_sym_EQ] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_QMARK] = ACTIONS(3272), - [anon_sym_COLON_QMARK] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_AT_GT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3272), - [anon_sym_AT_AT_GT] = ACTIONS(3272), - [anon_sym_COLON_GT] = ACTIONS(3274), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_LT_DASH] = ACTIONS(3272), - [anon_sym_DOT_LBRACK] = ACTIONS(3274), - [anon_sym_DOT] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LPAREN2] = ACTIONS(3274), - [anon_sym_or] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3272), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3272), - [anon_sym_DASH_DOT] = ACTIONS(3272), - [anon_sym_PERCENT] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3272), - [aux_sym_infix_op_token1] = ACTIONS(3272), - [anon_sym_PIPE_PIPE] = ACTIONS(3272), - [anon_sym_BANG_EQ] = ACTIONS(3272), - [anon_sym_COLON_EQ] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3272), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3272), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), - [anon_sym_POUNDendif] = ACTIONS(3274), - [sym__newline] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_DASH_GT] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2227] = { [sym_xml_doc] = STATE(2227), @@ -288543,92 +292722,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2227), [sym_fsi_directive_decl] = STATE(2227), [sym_preproc_line] = STATE(2227), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_DASH_GT] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_DOT_DOT] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2228] = { [sym_xml_doc] = STATE(2228), @@ -288637,92 +292815,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2228), [sym_fsi_directive_decl] = STATE(2228), [sym_preproc_line] = STATE(2228), - [sym_identifier] = ACTIONS(3268), - [anon_sym_EQ] = ACTIONS(3270), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_QMARK] = ACTIONS(3268), - [anon_sym_COLON_QMARK] = ACTIONS(3268), - [anon_sym_COLON_COLON] = ACTIONS(3270), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_AT_GT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3268), - [anon_sym_AT_AT_GT] = ACTIONS(3268), - [anon_sym_COLON_GT] = ACTIONS(3270), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_LT_DASH] = ACTIONS(3268), - [anon_sym_DOT_LBRACK] = ACTIONS(3270), - [anon_sym_DOT] = ACTIONS(3268), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(3270), - [anon_sym_or] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3268), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3268), - [anon_sym_DASH_DOT] = ACTIONS(3268), - [anon_sym_PERCENT] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3268), - [aux_sym_infix_op_token1] = ACTIONS(3268), - [anon_sym_PIPE_PIPE] = ACTIONS(3268), - [anon_sym_BANG_EQ] = ACTIONS(3268), - [anon_sym_COLON_EQ] = ACTIONS(3270), - [anon_sym_DOLLAR] = ACTIONS(3268), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3268), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), - [anon_sym_POUNDendif] = ACTIONS(3270), - [sym__newline] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_DASH_GT] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2229] = { [sym_xml_doc] = STATE(2229), @@ -288731,92 +292908,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2229), [sym_fsi_directive_decl] = STATE(2229), [sym_preproc_line] = STATE(2229), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [anon_sym_POUNDendif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_DASH_GT] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2230] = { [sym_xml_doc] = STATE(2230), @@ -288825,92 +293001,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2230), [sym_fsi_directive_decl] = STATE(2230), [sym_preproc_line] = STATE(2230), - [sym_identifier] = ACTIONS(3262), - [anon_sym_EQ] = ACTIONS(3264), - [anon_sym_COLON] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(3262), - [anon_sym_COLON_QMARK] = ACTIONS(3262), - [anon_sym_COLON_COLON] = ACTIONS(3264), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_AT_GT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3262), - [anon_sym_AT_AT_GT] = ACTIONS(3262), - [anon_sym_COLON_GT] = ACTIONS(3264), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_LT_DASH] = ACTIONS(3262), - [anon_sym_DOT_LBRACK] = ACTIONS(3264), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(3264), - [anon_sym_or] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3262), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3262), - [anon_sym_DASH_DOT] = ACTIONS(3262), - [anon_sym_PERCENT] = ACTIONS(3262), - [anon_sym_AMP_AMP] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3262), - [aux_sym_infix_op_token1] = ACTIONS(3262), - [anon_sym_PIPE_PIPE] = ACTIONS(3262), - [anon_sym_BANG_EQ] = ACTIONS(3262), - [anon_sym_COLON_EQ] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3262), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3262), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), - [anon_sym_POUNDendif] = ACTIONS(3264), - [sym__newline] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_COLON] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_let] = ACTIONS(3483), + [anon_sym_let_BANG] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3483), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_null] = ACTIONS(3483), + [anon_sym_QMARK] = ACTIONS(3483), + [anon_sym_COLON_QMARK] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_LBRACK_PIPE] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3483), + [anon_sym_LT_AT] = ACTIONS(3483), + [anon_sym_LT_AT_AT] = ACTIONS(3483), + [anon_sym_AT_AT_GT] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_LBRACE_PIPE] = ACTIONS(3485), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_return_BANG] = ACTIONS(3485), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_yield_BANG] = ACTIONS(3485), + [anon_sym_lazy] = ACTIONS(3483), + [anon_sym_assert] = ACTIONS(3483), + [anon_sym_upcast] = ACTIONS(3483), + [anon_sym_downcast] = ACTIONS(3483), + [anon_sym_COLON_GT] = ACTIONS(3485), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_fun] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_match_BANG] = ACTIONS(3485), + [anon_sym_function] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3483), + [anon_sym_DOT_LBRACK] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_use] = ACTIONS(3483), + [anon_sym_use_BANG] = ACTIONS(3485), + [anon_sym_do_BANG] = ACTIONS(3485), + [anon_sym_begin] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3483), + [aux_sym_char_token1] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_DQUOTE] = ACTIONS(3483), + [anon_sym_AT_DQUOTE] = ACTIONS(3485), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3485), + [sym_bool] = ACTIONS(3483), + [sym_unit] = ACTIONS(3483), + [anon_sym_LPAREN_PIPE] = ACTIONS(3483), + [sym_op_identifier] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS_DOT] = ACTIONS(3483), + [anon_sym_DASH_DOT] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3483), + [anon_sym_TILDE] = ACTIONS(3485), + [aux_sym_prefix_op_token1] = ACTIONS(3483), + [aux_sym_infix_op_token1] = ACTIONS(3483), + [anon_sym_PIPE_PIPE] = ACTIONS(3483), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_COLON_EQ] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3483), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3483), + [sym_int] = ACTIONS(3483), + [sym_xint] = ACTIONS(3485), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), }, [2231] = { [sym_xml_doc] = STATE(2231), @@ -288919,92 +293094,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2231), [sym_fsi_directive_decl] = STATE(2231), [sym_preproc_line] = STATE(2231), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3544), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_let_BANG] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_COMMA] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3542), + [anon_sym_COLON_QMARK] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LBRACK_PIPE] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_LT_AT] = ACTIONS(3542), + [anon_sym_LT_AT_AT] = ACTIONS(3542), + [anon_sym_AT_AT_GT] = ACTIONS(3542), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE_PIPE] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_return_BANG] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_yield_BANG] = ACTIONS(3544), + [anon_sym_lazy] = ACTIONS(3542), + [anon_sym_assert] = ACTIONS(3542), + [anon_sym_upcast] = ACTIONS(3542), + [anon_sym_downcast] = ACTIONS(3542), + [anon_sym_COLON_GT] = ACTIONS(3544), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_fun] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(3542), + [anon_sym_match_BANG] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_LT_DASH] = ACTIONS(3542), + [anon_sym_DOT_LBRACK] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_use] = ACTIONS(3542), + [anon_sym_use_BANG] = ACTIONS(3544), + [anon_sym_do_BANG] = ACTIONS(3544), + [anon_sym_begin] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_or] = ACTIONS(3542), + [aux_sym_char_token1] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_AT_DQUOTE] = ACTIONS(3544), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3544), + [sym_bool] = ACTIONS(3542), + [sym_unit] = ACTIONS(3542), + [anon_sym_LPAREN_PIPE] = ACTIONS(3542), + [sym_op_identifier] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS_DOT] = ACTIONS(3542), + [anon_sym_DASH_DOT] = ACTIONS(3542), + [anon_sym_PERCENT] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3544), + [aux_sym_prefix_op_token1] = ACTIONS(3542), + [aux_sym_infix_op_token1] = ACTIONS(3542), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_BANG_EQ] = ACTIONS(3542), + [anon_sym_COLON_EQ] = ACTIONS(3544), + [anon_sym_DOLLAR] = ACTIONS(3542), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3542), + [sym_int] = ACTIONS(3542), + [sym_xint] = ACTIONS(3544), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3544), + [sym__newline] = ACTIONS(3544), }, [2232] = { [sym_xml_doc] = STATE(2232), @@ -289013,92 +293187,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2232), [sym_fsi_directive_decl] = STATE(2232), [sym_preproc_line] = STATE(2232), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_DASH_GT] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2233] = { [sym_xml_doc] = STATE(2233), @@ -289107,92 +293280,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2233), [sym_fsi_directive_decl] = STATE(2233), [sym_preproc_line] = STATE(2233), - [sym_identifier] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_QMARK] = ACTIONS(3312), - [anon_sym_COLON_QMARK] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3314), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_AT_GT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3312), - [anon_sym_AT_AT_GT] = ACTIONS(3312), - [anon_sym_COLON_GT] = ACTIONS(3314), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_LT_DASH] = ACTIONS(3312), - [anon_sym_DOT_LBRACK] = ACTIONS(3314), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_DOT_DOT] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [anon_sym_LPAREN2] = ACTIONS(3314), - [anon_sym_or] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3312), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3312), - [anon_sym_DASH_DOT] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3312), - [aux_sym_infix_op_token1] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_COLON_EQ] = ACTIONS(3314), - [anon_sym_DOLLAR] = ACTIONS(3312), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3312), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), - [sym__newline] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_DASH_GT] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2234] = { [sym_xml_doc] = STATE(2234), @@ -289201,92 +293373,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2234), [sym_fsi_directive_decl] = STATE(2234), [sym_preproc_line] = STATE(2234), - [sym_identifier] = ACTIONS(3326), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_QMARK] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_COLON] = ACTIONS(3328), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_AT_GT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3326), - [anon_sym_AT_AT_GT] = ACTIONS(3326), - [anon_sym_COLON_GT] = ACTIONS(3328), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_LT_DASH] = ACTIONS(3326), - [anon_sym_DOT_LBRACK] = ACTIONS(3328), - [anon_sym_DOT] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_DOT_DOT] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [anon_sym_LPAREN2] = ACTIONS(3328), - [anon_sym_or] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3326), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3326), - [anon_sym_DASH_DOT] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_AMP_AMP] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3326), - [aux_sym_infix_op_token1] = ACTIONS(3326), - [anon_sym_PIPE_PIPE] = ACTIONS(3326), - [anon_sym_BANG_EQ] = ACTIONS(3326), - [anon_sym_COLON_EQ] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3326), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), - [sym__newline] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_DASH_GT] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_DOT_DOT] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2235] = { [sym_xml_doc] = STATE(2235), @@ -289295,186 +293466,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2235), [sym_fsi_directive_decl] = STATE(2235), [sym_preproc_line] = STATE(2235), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [anon_sym_POUNDendif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [aux_sym_long_identifier_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_AT_AT_GT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2236] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4132), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym__pattern_param] = STATE(2400), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2236), [sym_block_comment] = STATE(2236), [sym_line_comment] = STATE(2236), [sym_compiler_directive_decl] = STATE(2236), [sym_fsi_directive_decl] = STATE(2236), [sym_preproc_line] = STATE(2236), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4519), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4519), + [anon_sym__] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_PIPE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_AT_DQUOTE] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [sym_bool] = ACTIONS(4519), + [sym_unit] = ACTIONS(4523), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4519), + [sym_xint] = ACTIONS(4523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2237] = { [sym_xml_doc] = STATE(2237), @@ -289483,92 +293652,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2237), [sym_fsi_directive_decl] = STATE(2237), [sym_preproc_line] = STATE(2237), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [anon_sym_POUNDendif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [anon_sym_POUNDendif] = ACTIONS(3699), + [anon_sym_POUNDelse] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2238] = { [sym_xml_doc] = STATE(2238), @@ -289577,92 +293745,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2238), [sym_fsi_directive_decl] = STATE(2238), [sym_preproc_line] = STATE(2238), - [sym_identifier] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_let_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_COMMA] = ACTIONS(3522), - [anon_sym_null] = ACTIONS(3520), - [anon_sym_QMARK] = ACTIONS(3520), - [anon_sym_COLON_QMARK] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LBRACK_PIPE] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_LBRACE_PIPE] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_return_BANG] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_yield_BANG] = ACTIONS(3522), - [anon_sym_lazy] = ACTIONS(3520), - [anon_sym_assert] = ACTIONS(3520), - [anon_sym_upcast] = ACTIONS(3520), - [anon_sym_downcast] = ACTIONS(3520), - [anon_sym_LT_AT] = ACTIONS(3520), - [anon_sym_AT_GT] = ACTIONS(3520), - [anon_sym_LT_AT_AT] = ACTIONS(3520), - [anon_sym_AT_AT_GT] = ACTIONS(3520), - [anon_sym_COLON_GT] = ACTIONS(3522), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_fun] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3520), - [anon_sym_match_BANG] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_LT_DASH] = ACTIONS(3520), - [anon_sym_DOT_LBRACK] = ACTIONS(3522), - [anon_sym_DOT] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_GT] = ACTIONS(3520), - [anon_sym_use] = ACTIONS(3520), - [anon_sym_use_BANG] = ACTIONS(3522), - [anon_sym_do_BANG] = ACTIONS(3522), - [anon_sym_begin] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_or] = ACTIONS(3520), - [aux_sym_char_token1] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_AT_DQUOTE] = ACTIONS(3522), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3522), - [sym_bool] = ACTIONS(3520), - [sym_unit] = ACTIONS(3520), - [anon_sym_LPAREN_PIPE] = ACTIONS(3520), - [sym_op_identifier] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS_DOT] = ACTIONS(3520), - [anon_sym_DASH_DOT] = ACTIONS(3520), - [anon_sym_PERCENT] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3522), - [aux_sym_prefix_op_token1] = ACTIONS(3520), - [aux_sym_infix_op_token1] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BANG_EQ] = ACTIONS(3520), - [anon_sym_COLON_EQ] = ACTIONS(3522), - [anon_sym_DOLLAR] = ACTIONS(3520), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3520), - [sym_int] = ACTIONS(3520), - [sym_xint] = ACTIONS(3522), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3522), - [sym__newline] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [anon_sym_POUNDendif] = ACTIONS(3691), + [anon_sym_POUNDelse] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2239] = { [sym_xml_doc] = STATE(2239), @@ -289671,92 +293838,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2239), [sym_fsi_directive_decl] = STATE(2239), [sym_preproc_line] = STATE(2239), - [sym_identifier] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_let_BANG] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_COMMA] = ACTIONS(3526), - [anon_sym_null] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_COLON_QMARK] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LBRACK_PIPE] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_LBRACE_PIPE] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_return_BANG] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_yield_BANG] = ACTIONS(3526), - [anon_sym_lazy] = ACTIONS(3524), - [anon_sym_assert] = ACTIONS(3524), - [anon_sym_upcast] = ACTIONS(3524), - [anon_sym_downcast] = ACTIONS(3524), - [anon_sym_LT_AT] = ACTIONS(3524), - [anon_sym_AT_GT] = ACTIONS(3524), - [anon_sym_LT_AT_AT] = ACTIONS(3524), - [anon_sym_AT_AT_GT] = ACTIONS(3524), - [anon_sym_COLON_GT] = ACTIONS(3526), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_fun] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_match] = ACTIONS(3524), - [anon_sym_match_BANG] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_LT_DASH] = ACTIONS(3524), - [anon_sym_DOT_LBRACK] = ACTIONS(3526), - [anon_sym_DOT] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3524), - [anon_sym_use] = ACTIONS(3524), - [anon_sym_use_BANG] = ACTIONS(3526), - [anon_sym_do_BANG] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_or] = ACTIONS(3524), - [aux_sym_char_token1] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_AT_DQUOTE] = ACTIONS(3526), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3526), - [sym_bool] = ACTIONS(3524), - [sym_unit] = ACTIONS(3524), - [anon_sym_LPAREN_PIPE] = ACTIONS(3524), - [sym_op_identifier] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS_DOT] = ACTIONS(3524), - [anon_sym_DASH_DOT] = ACTIONS(3524), - [anon_sym_PERCENT] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3526), - [aux_sym_prefix_op_token1] = ACTIONS(3524), - [aux_sym_infix_op_token1] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BANG_EQ] = ACTIONS(3524), - [anon_sym_COLON_EQ] = ACTIONS(3526), - [anon_sym_DOLLAR] = ACTIONS(3524), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3524), - [sym_int] = ACTIONS(3524), - [sym_xint] = ACTIONS(3526), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3526), - [sym__newline] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [anon_sym_POUNDendif] = ACTIONS(3804), + [anon_sym_POUNDelse] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2240] = { [sym_xml_doc] = STATE(2240), @@ -289765,92 +293931,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2240), [sym_fsi_directive_decl] = STATE(2240), [sym_preproc_line] = STATE(2240), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_DOT_DOT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [anon_sym_POUNDendif] = ACTIONS(3546), + [anon_sym_POUNDelse] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2241] = { [sym_xml_doc] = STATE(2241), @@ -289859,186 +294024,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2241), [sym_fsi_directive_decl] = STATE(2241), [sym_preproc_line] = STATE(2241), - [sym_identifier] = ACTIONS(3532), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_let_BANG] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3532), - [anon_sym_QMARK] = ACTIONS(3532), - [anon_sym_COLON_QMARK] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_LBRACE_PIPE] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_return_BANG] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_yield_BANG] = ACTIONS(3195), - [anon_sym_lazy] = ACTIONS(3532), - [anon_sym_assert] = ACTIONS(3532), - [anon_sym_upcast] = ACTIONS(3532), - [anon_sym_downcast] = ACTIONS(3532), - [anon_sym_LT_AT] = ACTIONS(3532), - [anon_sym_AT_GT] = ACTIONS(3532), - [anon_sym_LT_AT_AT] = ACTIONS(3532), - [anon_sym_AT_AT_GT] = ACTIONS(3532), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_fun] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_match] = ACTIONS(3532), - [anon_sym_match_BANG] = ACTIONS(3195), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_LT_DASH] = ACTIONS(3532), - [anon_sym_DOT_LBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3532), - [anon_sym_use] = ACTIONS(3532), - [anon_sym_use_BANG] = ACTIONS(3195), - [anon_sym_do_BANG] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3532), - [aux_sym_char_token1] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_AT_DQUOTE] = ACTIONS(3195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3195), - [sym_bool] = ACTIONS(3532), - [sym_unit] = ACTIONS(3532), - [anon_sym_LPAREN_PIPE] = ACTIONS(3532), - [sym_op_identifier] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS_DOT] = ACTIONS(3532), - [anon_sym_DASH_DOT] = ACTIONS(3532), - [anon_sym_PERCENT] = ACTIONS(3532), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3195), - [aux_sym_prefix_op_token1] = ACTIONS(3532), - [aux_sym_infix_op_token1] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_BANG_EQ] = ACTIONS(3532), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_DOLLAR] = ACTIONS(3532), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3532), - [sym_int] = ACTIONS(3532), - [sym_xint] = ACTIONS(3195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3195), - [sym__newline] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_DASH_GT] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_DOT_DOT] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2242] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5560), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2242), [sym_block_comment] = STATE(2242), [sym_line_comment] = STATE(2242), [sym_compiler_directive_decl] = STATE(2242), [sym_fsi_directive_decl] = STATE(2242), [sym_preproc_line] = STATE(2242), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_DOT_DOT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_DASH_GT] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4764), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), }, [2243] = { [sym_xml_doc] = STATE(2243), @@ -290047,92 +294210,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2243), [sym_fsi_directive_decl] = STATE(2243), [sym_preproc_line] = STATE(2243), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_GT] = ACTIONS(3508), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_AT_GT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [2244] = { [sym_xml_doc] = STATE(2244), @@ -290141,83 +294303,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2244), [sym_fsi_directive_decl] = STATE(2244), [sym_preproc_line] = STATE(2244), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), + [aux_sym_long_identifier_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_AT_AT_GT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), @@ -290225,8 +294386,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [2245] = { [sym_xml_doc] = STATE(2245), @@ -290235,92 +294396,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2245), [sym_fsi_directive_decl] = STATE(2245), [sym_preproc_line] = STATE(2245), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [anon_sym_POUNDendif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [anon_sym_EQ2] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2246] = { [sym_xml_doc] = STATE(2246), @@ -290329,92 +294489,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2246), [sym_fsi_directive_decl] = STATE(2246), [sym_preproc_line] = STATE(2246), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_DOT_DOT] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_DASH_GT] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_DOT_DOT] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2247] = { [sym_xml_doc] = STATE(2247), @@ -290423,92 +294582,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2247), [sym_fsi_directive_decl] = STATE(2247), [sym_preproc_line] = STATE(2247), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_DASH_GT] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_DOT_DOT] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2248] = { [sym_xml_doc] = STATE(2248), @@ -290517,92 +294675,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2248), [sym_fsi_directive_decl] = STATE(2248), [sym_preproc_line] = STATE(2248), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_DOT_DOT] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_DOT_DOT] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2249] = { [sym_xml_doc] = STATE(2249), @@ -290611,92 +294768,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2249), [sym_fsi_directive_decl] = STATE(2249), [sym_preproc_line] = STATE(2249), - [sym_identifier] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3253), - [anon_sym_COLON_QMARK] = ACTIONS(3253), - [anon_sym_COLON_COLON] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_AT_GT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3253), - [anon_sym_AT_AT_GT] = ACTIONS(3253), - [anon_sym_COLON_GT] = ACTIONS(3255), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_DOT_LBRACK] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3253), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3253), - [anon_sym_DASH_DOT] = ACTIONS(3253), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3253), - [aux_sym_infix_op_token1] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_DOLLAR] = ACTIONS(3253), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3253), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), - [anon_sym_POUNDendif] = ACTIONS(3255), - [sym__newline] = ACTIONS(3255), + [aux_sym_sequential_expression_repeat1] = STATE(2117), + [sym_identifier] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_let_BANG] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3614), + [anon_sym_null] = ACTIONS(3612), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_COLON_QMARK] = ACTIONS(3612), + [anon_sym_COLON_COLON] = ACTIONS(3614), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LBRACK_PIPE] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_LT_AT] = ACTIONS(3612), + [anon_sym_LT_AT_AT] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_LBRACE_PIPE] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_return_BANG] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_yield_BANG] = ACTIONS(3614), + [anon_sym_lazy] = ACTIONS(3612), + [anon_sym_assert] = ACTIONS(3612), + [anon_sym_upcast] = ACTIONS(3612), + [anon_sym_downcast] = ACTIONS(3612), + [anon_sym_COLON_GT] = ACTIONS(3614), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_fun] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_match] = ACTIONS(3612), + [anon_sym_match_BANG] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_LT_DASH] = ACTIONS(3612), + [anon_sym_DOT_LBRACK] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_use] = ACTIONS(3612), + [anon_sym_use_BANG] = ACTIONS(3614), + [anon_sym_do_BANG] = ACTIONS(3614), + [anon_sym_begin] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(3614), + [anon_sym_or] = ACTIONS(3612), + [aux_sym_char_token1] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_AT_DQUOTE] = ACTIONS(3614), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3614), + [sym_bool] = ACTIONS(3612), + [sym_unit] = ACTIONS(3612), + [anon_sym_LPAREN_PIPE] = ACTIONS(3612), + [sym_op_identifier] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_PLUS_DOT] = ACTIONS(3612), + [anon_sym_DASH_DOT] = ACTIONS(3612), + [anon_sym_PERCENT] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3614), + [aux_sym_prefix_op_token1] = ACTIONS(3612), + [aux_sym_infix_op_token1] = ACTIONS(3612), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_COLON_EQ] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3612), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3612), + [sym_int] = ACTIONS(3612), + [sym_xint] = ACTIONS(3614), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3614), + [anon_sym_POUNDendif] = ACTIONS(3614), + [sym__newline] = ACTIONS(3614), }, [2250] = { [sym_xml_doc] = STATE(2250), @@ -290705,92 +294861,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2250), [sym_fsi_directive_decl] = STATE(2250), [sym_preproc_line] = STATE(2250), - [sym_identifier] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_COLON_QMARK] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_AT_GT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3409), - [anon_sym_AT_AT_GT] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_DOT_LBRACK] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3409), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3409), - [aux_sym_infix_op_token1] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3409), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), - [anon_sym_POUNDendif] = ACTIONS(3411), - [sym__newline] = ACTIONS(3411), + [aux_sym_sequential_expression_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3829), + [anon_sym_EQ] = ACTIONS(3831), + [anon_sym_COLON] = ACTIONS(3829), + [anon_sym_return] = ACTIONS(3829), + [anon_sym_do] = ACTIONS(3829), + [anon_sym_let] = ACTIONS(3829), + [anon_sym_let_BANG] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_COMMA] = ACTIONS(3831), + [anon_sym_null] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3829), + [anon_sym_COLON_QMARK] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_LBRACK_PIPE] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_LT_AT] = ACTIONS(3829), + [anon_sym_LT_AT_AT] = ACTIONS(3829), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_LBRACE_PIPE] = ACTIONS(3831), + [anon_sym_new] = ACTIONS(3829), + [anon_sym_return_BANG] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3829), + [anon_sym_yield_BANG] = ACTIONS(3831), + [anon_sym_lazy] = ACTIONS(3829), + [anon_sym_assert] = ACTIONS(3829), + [anon_sym_upcast] = ACTIONS(3829), + [anon_sym_downcast] = ACTIONS(3829), + [anon_sym_COLON_GT] = ACTIONS(3831), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3829), + [anon_sym_while] = ACTIONS(3829), + [anon_sym_if] = ACTIONS(3829), + [anon_sym_fun] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3829), + [anon_sym_match] = ACTIONS(3829), + [anon_sym_match_BANG] = ACTIONS(3831), + [anon_sym_function] = ACTIONS(3829), + [anon_sym_LT_DASH] = ACTIONS(3829), + [anon_sym_DOT_LBRACK] = ACTIONS(3831), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3829), + [anon_sym_use] = ACTIONS(3829), + [anon_sym_use_BANG] = ACTIONS(3831), + [anon_sym_do_BANG] = ACTIONS(3831), + [anon_sym_begin] = ACTIONS(3829), + [anon_sym_LPAREN2] = ACTIONS(3831), + [anon_sym_or] = ACTIONS(3829), + [aux_sym_char_token1] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [anon_sym_AT_DQUOTE] = ACTIONS(3831), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3831), + [sym_bool] = ACTIONS(3829), + [sym_unit] = ACTIONS(3829), + [anon_sym_LPAREN_PIPE] = ACTIONS(3829), + [sym_op_identifier] = ACTIONS(3829), + [anon_sym_PLUS] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_PLUS_DOT] = ACTIONS(3829), + [anon_sym_DASH_DOT] = ACTIONS(3829), + [anon_sym_PERCENT] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3831), + [aux_sym_prefix_op_token1] = ACTIONS(3829), + [aux_sym_infix_op_token1] = ACTIONS(3829), + [anon_sym_PIPE_PIPE] = ACTIONS(3829), + [anon_sym_BANG_EQ] = ACTIONS(3829), + [anon_sym_COLON_EQ] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3829), + [sym_int] = ACTIONS(3829), + [sym_xint] = ACTIONS(3831), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3831), + [sym__newline] = ACTIONS(4904), }, [2251] = { [sym_xml_doc] = STATE(2251), @@ -290799,92 +294954,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2251), [sym_fsi_directive_decl] = STATE(2251), [sym_preproc_line] = STATE(2251), - [sym_identifier] = ACTIONS(3477), - [anon_sym_EQ] = ACTIONS(3479), - [anon_sym_COLON] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_let_BANG] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_COLON_QMARK] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_LBRACE_PIPE] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_return_BANG] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3477), - [anon_sym_yield_BANG] = ACTIONS(3479), - [anon_sym_lazy] = ACTIONS(3477), - [anon_sym_assert] = ACTIONS(3477), - [anon_sym_upcast] = ACTIONS(3477), - [anon_sym_downcast] = ACTIONS(3477), - [anon_sym_LT_AT] = ACTIONS(3477), - [anon_sym_AT_GT] = ACTIONS(3477), - [anon_sym_LT_AT_AT] = ACTIONS(3477), - [anon_sym_AT_AT_GT] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3477), - [anon_sym_while] = ACTIONS(3477), - [anon_sym_if] = ACTIONS(3477), - [anon_sym_fun] = ACTIONS(3477), - [anon_sym_try] = ACTIONS(3477), - [anon_sym_match] = ACTIONS(3477), - [anon_sym_match_BANG] = ACTIONS(3479), - [anon_sym_function] = ACTIONS(3477), - [anon_sym_LT_DASH] = ACTIONS(3477), - [anon_sym_DOT_LBRACK] = ACTIONS(3479), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_LT] = ACTIONS(3479), - [anon_sym_use] = ACTIONS(3477), - [anon_sym_use_BANG] = ACTIONS(3479), - [anon_sym_do_BANG] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(3479), - [anon_sym_or] = ACTIONS(3477), - [aux_sym_char_token1] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [anon_sym_AT_DQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3479), - [sym_bool] = ACTIONS(3477), - [sym_unit] = ACTIONS(3477), - [anon_sym_LPAREN_PIPE] = ACTIONS(3477), - [sym_op_identifier] = ACTIONS(3477), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [anon_sym_PERCENT] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3479), - [aux_sym_prefix_op_token1] = ACTIONS(3477), - [aux_sym_infix_op_token1] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [anon_sym_BANG_EQ] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3477), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3477), - [sym_int] = ACTIONS(3477), - [sym_xint] = ACTIONS(3479), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3479), - [sym__newline] = ACTIONS(3479), + [aux_sym_long_identifier_repeat1] = STATE(2281), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4907), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_DOT_DOT] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [2252] = { [sym_xml_doc] = STATE(2252), @@ -290893,186 +295047,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2252), [sym_fsi_directive_decl] = STATE(2252), [sym_preproc_line] = STATE(2252), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [anon_sym_POUNDendif] = ACTIONS(3732), + [anon_sym_POUNDelse] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2253] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5039), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2369), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2253), [sym_block_comment] = STATE(2253), [sym_line_comment] = STATE(2253), [sym_compiler_directive_decl] = STATE(2253), [sym_fsi_directive_decl] = STATE(2253), [sym_preproc_line] = STATE(2253), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4284), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_LT2] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_as] = ACTIONS(3705), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_with] = ACTIONS(3705), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2254] = { [sym_xml_doc] = STATE(2254), @@ -291081,92 +295233,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2254), [sym_fsi_directive_decl] = STATE(2254), [sym_preproc_line] = STATE(2254), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_do] = ACTIONS(3507), + [anon_sym_let] = ACTIONS(3507), + [anon_sym_let_BANG] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_COLON_QMARK] = ACTIONS(3507), + [anon_sym_COLON_COLON] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LBRACK_PIPE] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LT_AT] = ACTIONS(3507), + [anon_sym_AT_GT] = ACTIONS(3507), + [anon_sym_LT_AT_AT] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_LBRACE_PIPE] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3507), + [anon_sym_return_BANG] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_yield_BANG] = ACTIONS(3509), + [anon_sym_lazy] = ACTIONS(3507), + [anon_sym_assert] = ACTIONS(3507), + [anon_sym_upcast] = ACTIONS(3507), + [anon_sym_downcast] = ACTIONS(3507), + [anon_sym_COLON_GT] = ACTIONS(3509), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_done] = ACTIONS(4612), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_fun] = ACTIONS(3507), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_match_BANG] = ACTIONS(3509), + [anon_sym_function] = ACTIONS(3507), + [anon_sym_LT_DASH] = ACTIONS(3507), + [anon_sym_DOT_LBRACK] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_use] = ACTIONS(3507), + [anon_sym_use_BANG] = ACTIONS(3509), + [anon_sym_do_BANG] = ACTIONS(3509), + [anon_sym_begin] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3507), + [aux_sym_char_token1] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [anon_sym_AT_DQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3509), + [sym_bool] = ACTIONS(3507), + [sym_unit] = ACTIONS(3507), + [anon_sym_LPAREN_PIPE] = ACTIONS(3507), + [sym_op_identifier] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3507), + [anon_sym_PLUS_DOT] = ACTIONS(3507), + [anon_sym_DASH_DOT] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3509), + [aux_sym_prefix_op_token1] = ACTIONS(3507), + [aux_sym_infix_op_token1] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_COLON_EQ] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3507), + [sym_int] = ACTIONS(3507), + [sym_xint] = ACTIONS(3509), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3509), + [sym__newline] = ACTIONS(3509), }, [2255] = { [sym_xml_doc] = STATE(2255), @@ -291175,92 +295326,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2255), [sym_fsi_directive_decl] = STATE(2255), [sym_preproc_line] = STATE(2255), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_DASH_GT] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2256] = { [sym_xml_doc] = STATE(2256), @@ -291269,92 +295419,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2256), [sym_fsi_directive_decl] = STATE(2256), [sym_preproc_line] = STATE(2256), - [sym_identifier] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_COLON_QMARK] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_AT_GT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3417), - [anon_sym_AT_AT_GT] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_DOT_LBRACK] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3417), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3417), - [aux_sym_infix_op_token1] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3417), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), - [anon_sym_POUNDendif] = ACTIONS(3419), - [sym__newline] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_DASH_GT] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_DOT_DOT] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2257] = { [sym_xml_doc] = STATE(2257), @@ -291363,186 +295512,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2257), [sym_fsi_directive_decl] = STATE(2257), [sym_preproc_line] = STATE(2257), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_GT] = ACTIONS(3541), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [anon_sym_POUNDendif] = ACTIONS(3849), + [anon_sym_POUNDelse] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2258] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5124), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2362), - [sym_char] = STATE(3432), - [sym_format_string] = STATE(3434), - [sym__string_literal] = STATE(3434), - [sym_string] = STATE(3432), - [sym_verbatim_string] = STATE(3432), - [sym_bytearray] = STATE(3432), - [sym_verbatim_bytearray] = STATE(3432), - [sym_format_triple_quoted_string] = STATE(3435), - [sym_triple_quoted_string] = STATE(3432), - [sym_const] = STATE(3510), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3395), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(3432), - [sym_byte] = STATE(3432), - [sym_int16] = STATE(3432), - [sym_uint16] = STATE(3432), - [sym_int32] = STATE(3432), - [sym_uint32] = STATE(3432), - [sym_nativeint] = STATE(3432), - [sym_unativeint] = STATE(3432), - [sym_int64] = STATE(3432), - [sym_uint64] = STATE(3432), - [sym_ieee32] = STATE(3432), - [sym_ieee64] = STATE(3432), - [sym_bignum] = STATE(3432), - [sym_decimal] = STATE(3432), - [sym_float] = STATE(3295), [sym_xml_doc] = STATE(2258), [sym_block_comment] = STATE(2258), [sym_line_comment] = STATE(2258), [sym_compiler_directive_decl] = STATE(2258), [sym_fsi_directive_decl] = STATE(2258), [sym_preproc_line] = STATE(2258), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4324), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [anon_sym_DASH_GT] = ACTIONS(4240), - [anon_sym_when] = ACTIONS(4236), - [aux_sym_char_token1] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), - [anon_sym_DQUOTE] = ACTIONS(4336), - [anon_sym_AT_DQUOTE] = ACTIONS(4338), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [sym_bool] = ACTIONS(4344), - [sym_unit] = ACTIONS(4346), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4352), - [sym_xint] = ACTIONS(4354), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [anon_sym_POUNDendif] = ACTIONS(3604), + [anon_sym_POUNDelse] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2259] = { [sym_xml_doc] = STATE(2259), @@ -291551,92 +295698,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2259), [sym_fsi_directive_decl] = STATE(2259), [sym_preproc_line] = STATE(2259), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [anon_sym_POUNDendif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [anon_sym_POUNDendif] = ACTIONS(3644), + [anon_sym_POUNDelse] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2260] = { [sym_xml_doc] = STATE(2260), @@ -291645,92 +295791,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2260), [sym_fsi_directive_decl] = STATE(2260), [sym_preproc_line] = STATE(2260), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [anon_sym_POUNDendif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [anon_sym_POUNDendif] = ACTIONS(3796), + [anon_sym_POUNDelse] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2261] = { [sym_xml_doc] = STATE(2261), @@ -291739,92 +295884,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2261), [sym_fsi_directive_decl] = STATE(2261), [sym_preproc_line] = STATE(2261), - [sym_identifier] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_COLON_QMARK] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_AT_GT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3421), - [anon_sym_AT_AT_GT] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_DOT_LBRACK] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3421), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3421), - [aux_sym_infix_op_token1] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3421), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), - [anon_sym_POUNDendif] = ACTIONS(3423), - [sym__newline] = ACTIONS(3423), + [aux_sym_long_identifier_repeat1] = STATE(2304), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_AT_GT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4911), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2262] = { [sym_xml_doc] = STATE(2262), @@ -291833,92 +295977,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2262), [sym_fsi_directive_decl] = STATE(2262), [sym_preproc_line] = STATE(2262), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [anon_sym_POUNDendif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_AT_AT_GT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [2263] = { [sym_xml_doc] = STATE(2263), @@ -291927,92 +296070,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2263), [sym_fsi_directive_decl] = STATE(2263), [sym_preproc_line] = STATE(2263), - [sym_identifier] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3430), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_COLON_QMARK] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3430), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_AT_GT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3428), - [anon_sym_AT_AT_GT] = ACTIONS(3428), - [anon_sym_COLON_GT] = ACTIONS(3430), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_LT_DASH] = ACTIONS(3428), - [anon_sym_DOT_LBRACK] = ACTIONS(3430), - [anon_sym_DOT] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [anon_sym_LPAREN2] = ACTIONS(3430), - [anon_sym_or] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3428), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3428), - [anon_sym_DASH_DOT] = ACTIONS(3428), - [anon_sym_PERCENT] = ACTIONS(3428), - [anon_sym_AMP_AMP] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3428), - [aux_sym_infix_op_token1] = ACTIONS(3428), - [anon_sym_PIPE_PIPE] = ACTIONS(3428), - [anon_sym_BANG_EQ] = ACTIONS(3428), - [anon_sym_COLON_EQ] = ACTIONS(3430), - [anon_sym_DOLLAR] = ACTIONS(3428), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3428), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), - [anon_sym_POUNDendif] = ACTIONS(3430), - [sym__newline] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [anon_sym_POUNDendif] = ACTIONS(3600), + [anon_sym_POUNDelse] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2264] = { [sym_xml_doc] = STATE(2264), @@ -292021,92 +296163,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2264), [sym_fsi_directive_decl] = STATE(2264), [sym_preproc_line] = STATE(2264), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [anon_sym_POUNDendif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_DASH_GT] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2265] = { [sym_xml_doc] = STATE(2265), @@ -292115,92 +296256,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2265), [sym_fsi_directive_decl] = STATE(2265), [sym_preproc_line] = STATE(2265), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [anon_sym_POUNDendif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_DASH_GT] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2266] = { [sym_xml_doc] = STATE(2266), @@ -292209,92 +296349,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2266), [sym_fsi_directive_decl] = STATE(2266), [sym_preproc_line] = STATE(2266), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [anon_sym_POUNDendif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_DASH_GT] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2267] = { [sym_xml_doc] = STATE(2267), @@ -292303,186 +296442,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2267), [sym_fsi_directive_decl] = STATE(2267), [sym_preproc_line] = STATE(2267), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [anon_sym_POUNDendif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3525), + [anon_sym_COLON] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_do] = ACTIONS(3523), + [anon_sym_let] = ACTIONS(3523), + [anon_sym_let_BANG] = ACTIONS(3525), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3523), + [anon_sym_COLON_QMARK] = ACTIONS(3523), + [anon_sym_COLON_COLON] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LBRACK_PIPE] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_LT_AT] = ACTIONS(3523), + [anon_sym_LT_AT_AT] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3523), + [anon_sym_LBRACE_PIPE] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3523), + [anon_sym_return_BANG] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_yield_BANG] = ACTIONS(3525), + [anon_sym_lazy] = ACTIONS(3523), + [anon_sym_assert] = ACTIONS(3523), + [anon_sym_upcast] = ACTIONS(3523), + [anon_sym_downcast] = ACTIONS(3523), + [anon_sym_COLON_GT] = ACTIONS(3525), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_fun] = ACTIONS(3523), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_match_BANG] = ACTIONS(3525), + [anon_sym_function] = ACTIONS(3523), + [anon_sym_LT_DASH] = ACTIONS(3523), + [anon_sym_DOT_LBRACK] = ACTIONS(3525), + [anon_sym_LT] = ACTIONS(3525), + [anon_sym_use] = ACTIONS(3523), + [anon_sym_use_BANG] = ACTIONS(3525), + [anon_sym_do_BANG] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3525), + [anon_sym_or] = ACTIONS(3523), + [aux_sym_char_token1] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [anon_sym_AT_DQUOTE] = ACTIONS(3525), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3525), + [sym_bool] = ACTIONS(3523), + [sym_unit] = ACTIONS(3523), + [anon_sym_LPAREN_PIPE] = ACTIONS(3523), + [sym_op_identifier] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3523), + [anon_sym_PLUS_DOT] = ACTIONS(3523), + [anon_sym_DASH_DOT] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3525), + [aux_sym_prefix_op_token1] = ACTIONS(3523), + [aux_sym_infix_op_token1] = ACTIONS(3523), + [anon_sym_PIPE_PIPE] = ACTIONS(3523), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [anon_sym_COLON_EQ] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3523), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3523), + [sym_int] = ACTIONS(3523), + [sym_xint] = ACTIONS(3525), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3525), + [anon_sym_POUNDendif] = ACTIONS(3525), + [sym__newline] = ACTIONS(3525), }, [2268] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4115), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym__pattern_param] = STATE(2541), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2268), [sym_block_comment] = STATE(2268), [sym_line_comment] = STATE(2268), [sym_compiler_directive_decl] = STATE(2268), [sym_fsi_directive_decl] = STATE(2268), [sym_preproc_line] = STATE(2268), - [sym_identifier] = ACTIONS(3534), - [anon_sym_EQ] = ACTIONS(3536), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_QMARK] = ACTIONS(3534), - [anon_sym_COLON_QMARK] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_AT_GT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3534), - [anon_sym_AT_AT_GT] = ACTIONS(3534), - [anon_sym_COLON_GT] = ACTIONS(3536), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_LT_DASH] = ACTIONS(3534), - [anon_sym_DOT_LBRACK] = ACTIONS(3536), - [anon_sym_DOT] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_GT] = ACTIONS(3534), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_or] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3534), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3534), - [anon_sym_DASH_DOT] = ACTIONS(3534), - [anon_sym_PERCENT] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3534), - [aux_sym_infix_op_token1] = ACTIONS(3534), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_BANG_EQ] = ACTIONS(3534), - [anon_sym_COLON_EQ] = ACTIONS(3536), - [anon_sym_DOLLAR] = ACTIONS(3534), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3534), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), - [sym__newline] = ACTIONS(3536), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4519), + [anon_sym__] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_PIPE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_AT_DQUOTE] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [sym_bool] = ACTIONS(4519), + [sym_unit] = ACTIONS(4523), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4519), + [sym_xint] = ACTIONS(4523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2269] = { [sym_xml_doc] = STATE(2269), @@ -292491,92 +296628,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2269), [sym_fsi_directive_decl] = STATE(2269), [sym_preproc_line] = STATE(2269), - [sym_identifier] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_COLON_QMARK] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_AT_GT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3413), - [anon_sym_AT_AT_GT] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_DOT_LBRACK] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [anon_sym_LPAREN2] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3413), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3413), - [aux_sym_infix_op_token1] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3413), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), - [sym__newline] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [2270] = { [sym_xml_doc] = STATE(2270), @@ -292585,92 +296721,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2270), [sym_fsi_directive_decl] = STATE(2270), [sym_preproc_line] = STATE(2270), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [anon_sym_POUNDendif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_DASH_GT] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2271] = { [sym_xml_doc] = STATE(2271), @@ -292679,92 +296814,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2271), [sym_fsi_directive_decl] = STATE(2271), [sym_preproc_line] = STATE(2271), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [anon_sym_POUNDendif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_DASH_GT] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_DOT_DOT] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2272] = { [sym_xml_doc] = STATE(2272), @@ -292773,92 +296907,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2272), [sym_fsi_directive_decl] = STATE(2272), [sym_preproc_line] = STATE(2272), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_DASH_GT] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_DOT_DOT] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2273] = { [sym_xml_doc] = STATE(2273), @@ -292867,92 +297000,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2273), [sym_fsi_directive_decl] = STATE(2273), [sym_preproc_line] = STATE(2273), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_DASH_GT] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2274] = { [sym_xml_doc] = STATE(2274), @@ -292961,92 +297093,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2274), [sym_fsi_directive_decl] = STATE(2274), [sym_preproc_line] = STATE(2274), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [anon_sym_POUNDendif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_DASH_GT] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2275] = { [sym_xml_doc] = STATE(2275), @@ -293055,92 +297186,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2275), [sym_fsi_directive_decl] = STATE(2275), [sym_preproc_line] = STATE(2275), - [sym_identifier] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_QMARK] = ACTIONS(2518), - [anon_sym_COLON_QMARK] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_AT_GT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2518), - [anon_sym_AT_AT_GT] = ACTIONS(2518), - [anon_sym_COLON_GT] = ACTIONS(2520), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_LT_DASH] = ACTIONS(2518), - [anon_sym_DOT_LBRACK] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2518), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2518), - [anon_sym_DASH_DOT] = ACTIONS(2518), - [anon_sym_PERCENT] = ACTIONS(2518), - [anon_sym_AMP_AMP] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2518), - [aux_sym_infix_op_token1] = ACTIONS(2518), - [anon_sym_PIPE_PIPE] = ACTIONS(2518), - [anon_sym_BANG_EQ] = ACTIONS(2518), - [anon_sym_COLON_EQ] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2518), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), - [anon_sym_POUNDendif] = ACTIONS(2520), - [sym__newline] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [anon_sym_POUNDendif] = ACTIONS(3865), + [anon_sym_POUNDelse] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2276] = { [sym_xml_doc] = STATE(2276), @@ -293149,92 +297279,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2276), [sym_fsi_directive_decl] = STATE(2276), [sym_preproc_line] = STATE(2276), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_DOT_DOT] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [aux_sym_type_argument_repeat1] = STATE(2313), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_open] = ACTIONS(3230), + [anon_sym_LBRACK_LT] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_and] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [aux_sym_access_modifier_token1] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(4826), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_member] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_val] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3232), + [anon_sym_POUNDload] = ACTIONS(3232), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), }, [2277] = { [sym_xml_doc] = STATE(2277), @@ -293243,92 +297372,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2277), [sym_fsi_directive_decl] = STATE(2277), [sym_preproc_line] = STATE(2277), - [sym_identifier] = ACTIONS(3443), - [anon_sym_EQ] = ACTIONS(3445), - [anon_sym_COLON] = ACTIONS(3443), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_let_BANG] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3445), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_QMARK] = ACTIONS(3443), - [anon_sym_COLON_QMARK] = ACTIONS(3443), - [anon_sym_COLON_COLON] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3443), - [anon_sym_LBRACE_PIPE] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_return_BANG] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_yield_BANG] = ACTIONS(3445), - [anon_sym_lazy] = ACTIONS(3443), - [anon_sym_assert] = ACTIONS(3443), - [anon_sym_upcast] = ACTIONS(3443), - [anon_sym_downcast] = ACTIONS(3443), - [anon_sym_LT_AT] = ACTIONS(3443), - [anon_sym_AT_GT] = ACTIONS(3443), - [anon_sym_LT_AT_AT] = ACTIONS(3443), - [anon_sym_AT_AT_GT] = ACTIONS(3443), - [anon_sym_COLON_GT] = ACTIONS(3445), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_fun] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_match] = ACTIONS(3443), - [anon_sym_match_BANG] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3443), - [anon_sym_LT_DASH] = ACTIONS(3443), - [anon_sym_DOT_LBRACK] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3443), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_GT] = ACTIONS(3443), - [anon_sym_use] = ACTIONS(3443), - [anon_sym_use_BANG] = ACTIONS(3445), - [anon_sym_do_BANG] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3443), - [aux_sym_char_token1] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [anon_sym_AT_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3445), - [sym_bool] = ACTIONS(3443), - [sym_unit] = ACTIONS(3443), - [anon_sym_LPAREN_PIPE] = ACTIONS(3443), - [sym_op_identifier] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3443), - [anon_sym_DASH_DOT] = ACTIONS(3443), - [anon_sym_PERCENT] = ACTIONS(3443), - [anon_sym_AMP_AMP] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3445), - [aux_sym_prefix_op_token1] = ACTIONS(3443), - [aux_sym_infix_op_token1] = ACTIONS(3443), - [anon_sym_PIPE_PIPE] = ACTIONS(3443), - [anon_sym_BANG_EQ] = ACTIONS(3443), - [anon_sym_COLON_EQ] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3443), - [sym_int] = ACTIONS(3443), - [sym_xint] = ACTIONS(3445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3445), - [sym__newline] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [anon_sym_POUNDendif] = ACTIONS(3610), + [anon_sym_POUNDelse] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2278] = { [sym_xml_doc] = STATE(2278), @@ -293337,92 +297465,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2278), [sym_fsi_directive_decl] = STATE(2278), [sym_preproc_line] = STATE(2278), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [aux_sym_long_identifier_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4915), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2279] = { [sym_xml_doc] = STATE(2279), @@ -293431,92 +297558,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2279), [sym_fsi_directive_decl] = STATE(2279), [sym_preproc_line] = STATE(2279), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [anon_sym_POUNDendif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [aux_sym_long_identifier_repeat1] = STATE(2279), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4918), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2280] = { [sym_xml_doc] = STATE(2280), @@ -293525,92 +297651,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2280), [sym_fsi_directive_decl] = STATE(2280), [sym_preproc_line] = STATE(2280), - [sym_identifier] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_let_BANG] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_null] = ACTIONS(3508), - [anon_sym_QMARK] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_COLON] = ACTIONS(3510), - [anon_sym_AMP] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LBRACK_PIPE] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_LBRACE_PIPE] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_return_BANG] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_yield_BANG] = ACTIONS(3510), - [anon_sym_lazy] = ACTIONS(3508), - [anon_sym_assert] = ACTIONS(3508), - [anon_sym_upcast] = ACTIONS(3508), - [anon_sym_downcast] = ACTIONS(3508), - [anon_sym_LT_AT] = ACTIONS(3508), - [anon_sym_AT_GT] = ACTIONS(3508), - [anon_sym_LT_AT_AT] = ACTIONS(3508), - [anon_sym_AT_AT_GT] = ACTIONS(3508), - [anon_sym_COLON_GT] = ACTIONS(3510), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_fun] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_match] = ACTIONS(3508), - [anon_sym_match_BANG] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_LT_DASH] = ACTIONS(3508), - [anon_sym_DOT_LBRACK] = ACTIONS(3510), - [anon_sym_DOT] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_use] = ACTIONS(3508), - [anon_sym_use_BANG] = ACTIONS(3510), - [anon_sym_do_BANG] = ACTIONS(3510), - [anon_sym_DOT_DOT] = ACTIONS(3510), - [anon_sym_begin] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(3510), - [anon_sym_or] = ACTIONS(3508), - [aux_sym_char_token1] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_AT_DQUOTE] = ACTIONS(3510), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3510), - [sym_bool] = ACTIONS(3508), - [sym_unit] = ACTIONS(3508), - [anon_sym_LPAREN_PIPE] = ACTIONS(3508), - [sym_op_identifier] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_PLUS_DOT] = ACTIONS(3508), - [anon_sym_DASH_DOT] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_AMP_AMP] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3510), - [aux_sym_prefix_op_token1] = ACTIONS(3508), - [aux_sym_infix_op_token1] = ACTIONS(3508), - [anon_sym_PIPE_PIPE] = ACTIONS(3508), - [anon_sym_BANG_EQ] = ACTIONS(3508), - [anon_sym_COLON_EQ] = ACTIONS(3510), - [anon_sym_DOLLAR] = ACTIONS(3508), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3508), - [sym_int] = ACTIONS(3508), - [sym_xint] = ACTIONS(3510), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3510), - [sym__newline] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [anon_sym_POUNDendif] = ACTIONS(3880), + [anon_sym_POUNDelse] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2281] = { [sym_xml_doc] = STATE(2281), @@ -293619,92 +297744,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2281), [sym_fsi_directive_decl] = STATE(2281), [sym_preproc_line] = STATE(2281), - [sym_identifier] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3377), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_AT_GT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3375), - [anon_sym_AT_AT_GT] = ACTIONS(3375), - [anon_sym_COLON_GT] = ACTIONS(3377), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_DOT_LBRACK] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3375), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3375), - [anon_sym_DASH_DOT] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3375), - [aux_sym_infix_op_token1] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3377), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3375), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), - [anon_sym_POUNDendif] = ACTIONS(3377), - [sym__newline] = ACTIONS(3377), + [aux_sym_long_identifier_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3204), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_COLON] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(4921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_COLON_GT] = ACTIONS(3204), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_DOT_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_DOT_DOT] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3202), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3202), + [anon_sym_DASH_DOT] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3202), + [aux_sym_infix_op_token1] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3204), + [anon_sym_DOLLAR] = ACTIONS(3202), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3202), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), }, [2282] = { [sym_xml_doc] = STATE(2282), @@ -293713,92 +297837,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2282), [sym_fsi_directive_decl] = STATE(2282), [sym_preproc_line] = STATE(2282), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [anon_sym_POUNDendif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_DASH_GT] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_DOT_DOT] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2283] = { [sym_xml_doc] = STATE(2283), @@ -293807,186 +297930,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2283), [sym_fsi_directive_decl] = STATE(2283), [sym_preproc_line] = STATE(2283), - [sym_identifier] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_COLON_QMARK] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_AT_GT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2900), - [anon_sym_AT_AT_GT] = ACTIONS(2900), - [anon_sym_COLON_GT] = ACTIONS(2902), - [anon_sym_COLON_QMARK_GT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_DOT_LBRACK] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2900), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2900), - [anon_sym_DASH_DOT] = ACTIONS(2900), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2900), - [aux_sym_infix_op_token1] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2900), - [anon_sym_QMARK_LT_DASH] = ACTIONS(2900), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_DOT_DOT] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [2284] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5769), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2356), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2284), [sym_block_comment] = STATE(2284), [sym_line_comment] = STATE(2284), [sym_compiler_directive_decl] = STATE(2284), [sym_fsi_directive_decl] = STATE(2284), [sym_preproc_line] = STATE(2284), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [anon_sym_POUNDendif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4645), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [anon_sym_LT2] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2285] = { [sym_xml_doc] = STATE(2285), @@ -293995,92 +298116,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2285), [sym_fsi_directive_decl] = STATE(2285), [sym_preproc_line] = STATE(2285), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [anon_sym_POUNDendif] = ACTIONS(3886), + [anon_sym_POUNDelse] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2286] = { [sym_xml_doc] = STATE(2286), @@ -294089,92 +298209,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2286), [sym_fsi_directive_decl] = STATE(2286), [sym_preproc_line] = STATE(2286), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_GT] = ACTIONS(3570), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [anon_sym_POUNDendif] = ACTIONS(3622), + [anon_sym_POUNDelse] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2287] = { [sym_xml_doc] = STATE(2287), @@ -294183,92 +298302,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2287), [sym_fsi_directive_decl] = STATE(2287), [sym_preproc_line] = STATE(2287), - [sym_identifier] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_let_BANG] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_COLON_QMARK] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_LBRACE_PIPE] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_return_BANG] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_yield_BANG] = ACTIONS(3407), - [anon_sym_lazy] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_upcast] = ACTIONS(3405), - [anon_sym_downcast] = ACTIONS(3405), - [anon_sym_LT_AT] = ACTIONS(3405), - [anon_sym_AT_GT] = ACTIONS(3405), - [anon_sym_LT_AT_AT] = ACTIONS(3405), - [anon_sym_AT_AT_GT] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_fun] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_match_BANG] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_DOT_LBRACK] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3405), - [anon_sym_use] = ACTIONS(3405), - [anon_sym_use_BANG] = ACTIONS(3407), - [anon_sym_do_BANG] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [anon_sym_LPAREN2] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3405), - [aux_sym_char_token1] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_AT_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3407), - [sym_bool] = ACTIONS(3405), - [sym_unit] = ACTIONS(3405), - [anon_sym_LPAREN_PIPE] = ACTIONS(3405), - [sym_op_identifier] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3407), - [aux_sym_prefix_op_token1] = ACTIONS(3405), - [aux_sym_infix_op_token1] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(3405), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3405), - [sym_int] = ACTIONS(3405), - [sym_xint] = ACTIONS(3407), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3407), - [sym__newline] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [anon_sym_POUNDendif] = ACTIONS(3626), + [anon_sym_POUNDelse] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2288] = { [sym_xml_doc] = STATE(2288), @@ -294277,92 +298395,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2288), [sym_fsi_directive_decl] = STATE(2288), [sym_preproc_line] = STATE(2288), - [sym_identifier] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_let_BANG] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_null] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_COLON_QMARK] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_LBRACE_PIPE] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_return_BANG] = ACTIONS(3385), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_yield_BANG] = ACTIONS(3385), - [anon_sym_lazy] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_upcast] = ACTIONS(3383), - [anon_sym_downcast] = ACTIONS(3383), - [anon_sym_LT_AT] = ACTIONS(3383), - [anon_sym_AT_GT] = ACTIONS(3383), - [anon_sym_LT_AT_AT] = ACTIONS(3383), - [anon_sym_AT_AT_GT] = ACTIONS(3383), - [anon_sym_COLON_GT] = ACTIONS(3385), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_fun] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_match_BANG] = ACTIONS(3385), - [anon_sym_function] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_DOT_LBRACK] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_use] = ACTIONS(3383), - [anon_sym_use_BANG] = ACTIONS(3385), - [anon_sym_do_BANG] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3383), - [anon_sym_LPAREN2] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3383), - [aux_sym_char_token1] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [anon_sym_AT_DQUOTE] = ACTIONS(3385), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3385), - [sym_bool] = ACTIONS(3383), - [sym_unit] = ACTIONS(3383), - [anon_sym_LPAREN_PIPE] = ACTIONS(3383), - [sym_op_identifier] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3383), - [anon_sym_DASH_DOT] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3385), - [aux_sym_prefix_op_token1] = ACTIONS(3383), - [aux_sym_infix_op_token1] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3385), - [anon_sym_DOLLAR] = ACTIONS(3383), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3383), - [sym_int] = ACTIONS(3383), - [sym_xint] = ACTIONS(3385), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3385), - [sym__newline] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [anon_sym_POUNDendif] = ACTIONS(3640), + [anon_sym_POUNDelse] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2289] = { [sym_xml_doc] = STATE(2289), @@ -294371,92 +298488,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2289), [sym_fsi_directive_decl] = STATE(2289), [sym_preproc_line] = STATE(2289), - [sym_identifier] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_let_BANG] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_null] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_COLON_QMARK] = ACTIONS(3379), - [anon_sym_COLON_COLON] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_LBRACE_PIPE] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_return_BANG] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_yield_BANG] = ACTIONS(3381), - [anon_sym_lazy] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_upcast] = ACTIONS(3379), - [anon_sym_downcast] = ACTIONS(3379), - [anon_sym_LT_AT] = ACTIONS(3379), - [anon_sym_AT_GT] = ACTIONS(3379), - [anon_sym_LT_AT_AT] = ACTIONS(3379), - [anon_sym_AT_AT_GT] = ACTIONS(3379), - [anon_sym_COLON_GT] = ACTIONS(3381), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_fun] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_match_BANG] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_DOT_LBRACK] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_use] = ACTIONS(3379), - [anon_sym_use_BANG] = ACTIONS(3381), - [anon_sym_do_BANG] = ACTIONS(3381), - [anon_sym_begin] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [aux_sym_char_token1] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_AT_DQUOTE] = ACTIONS(3381), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), - [sym_bool] = ACTIONS(3379), - [sym_unit] = ACTIONS(3379), - [anon_sym_LPAREN_PIPE] = ACTIONS(3379), - [sym_op_identifier] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3379), - [anon_sym_DASH_DOT] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [aux_sym_prefix_op_token1] = ACTIONS(3379), - [aux_sym_infix_op_token1] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3381), - [anon_sym_DOLLAR] = ACTIONS(3379), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3379), - [sym_int] = ACTIONS(3379), - [sym_xint] = ACTIONS(3381), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3381), - [sym__newline] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [anon_sym_POUNDendif] = ACTIONS(3648), + [anon_sym_POUNDelse] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2290] = { [sym_xml_doc] = STATE(2290), @@ -294465,92 +298581,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2290), [sym_fsi_directive_decl] = STATE(2290), [sym_preproc_line] = STATE(2290), - [sym_identifier] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_COLON_QMARK] = ACTIONS(3391), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_AT_GT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3391), - [anon_sym_AT_AT_GT] = ACTIONS(3391), - [anon_sym_COLON_GT] = ACTIONS(3393), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_DOT_LBRACK] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3391), - [anon_sym_DASH_DOT] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3391), - [aux_sym_infix_op_token1] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3393), - [anon_sym_DOLLAR] = ACTIONS(3391), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3391), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), - [anon_sym_POUNDendif] = ACTIONS(3393), - [sym__newline] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [anon_sym_POUNDendif] = ACTIONS(3890), + [anon_sym_POUNDelse] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2291] = { [sym_xml_doc] = STATE(2291), @@ -294559,92 +298674,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2291), [sym_fsi_directive_decl] = STATE(2291), [sym_preproc_line] = STATE(2291), - [sym_identifier] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_COLON] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_let_BANG] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_null] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_COLON_QMARK] = ACTIONS(3367), - [anon_sym_COLON_COLON] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_LBRACE_PIPE] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_return_BANG] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_yield_BANG] = ACTIONS(3369), - [anon_sym_lazy] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_upcast] = ACTIONS(3367), - [anon_sym_downcast] = ACTIONS(3367), - [anon_sym_LT_AT] = ACTIONS(3367), - [anon_sym_AT_GT] = ACTIONS(3367), - [anon_sym_LT_AT_AT] = ACTIONS(3367), - [anon_sym_AT_AT_GT] = ACTIONS(3367), - [anon_sym_COLON_GT] = ACTIONS(3369), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_fun] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_match_BANG] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_DOT_LBRACK] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_use] = ACTIONS(3367), - [anon_sym_use_BANG] = ACTIONS(3369), - [anon_sym_do_BANG] = ACTIONS(3369), - [anon_sym_begin] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3367), - [aux_sym_char_token1] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_AT_DQUOTE] = ACTIONS(3369), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3369), - [sym_bool] = ACTIONS(3367), - [sym_unit] = ACTIONS(3367), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [sym_op_identifier] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3367), - [anon_sym_DASH_DOT] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3369), - [aux_sym_prefix_op_token1] = ACTIONS(3367), - [aux_sym_infix_op_token1] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3369), - [anon_sym_DOLLAR] = ACTIONS(3367), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3367), - [sym_int] = ACTIONS(3367), - [sym_xint] = ACTIONS(3369), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3369), - [sym__newline] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_DASH_GT] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_DOT_DOT] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2292] = { [sym_xml_doc] = STATE(2292), @@ -294653,92 +298767,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2292), [sym_fsi_directive_decl] = STATE(2292), [sym_preproc_line] = STATE(2292), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [anon_sym_POUNDendif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [anon_sym_POUNDendif] = ACTIONS(3677), + [anon_sym_POUNDelse] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2293] = { [sym_xml_doc] = STATE(2293), @@ -294747,92 +298860,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2293), [sym_fsi_directive_decl] = STATE(2293), [sym_preproc_line] = STATE(2293), - [sym_identifier] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3362), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_let_BANG] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3362), - [anon_sym_null] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_COLON_QMARK] = ACTIONS(3360), - [anon_sym_COLON_COLON] = ACTIONS(3362), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LBRACK_PIPE] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_LBRACE_PIPE] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_return_BANG] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_yield_BANG] = ACTIONS(3362), - [anon_sym_lazy] = ACTIONS(3360), - [anon_sym_assert] = ACTIONS(3360), - [anon_sym_upcast] = ACTIONS(3360), - [anon_sym_downcast] = ACTIONS(3360), - [anon_sym_LT_AT] = ACTIONS(3360), - [anon_sym_AT_GT] = ACTIONS(3360), - [anon_sym_LT_AT_AT] = ACTIONS(3360), - [anon_sym_AT_AT_GT] = ACTIONS(3360), - [anon_sym_COLON_GT] = ACTIONS(3362), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_fun] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_match_BANG] = ACTIONS(3362), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_LT_DASH] = ACTIONS(3360), - [anon_sym_DOT_LBRACK] = ACTIONS(3362), - [anon_sym_DOT] = ACTIONS(3360), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_GT] = ACTIONS(3360), - [anon_sym_use] = ACTIONS(3360), - [anon_sym_use_BANG] = ACTIONS(3362), - [anon_sym_do_BANG] = ACTIONS(3362), - [anon_sym_begin] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(3362), - [anon_sym_or] = ACTIONS(3360), - [aux_sym_char_token1] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [anon_sym_AT_DQUOTE] = ACTIONS(3362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), - [sym_bool] = ACTIONS(3360), - [sym_unit] = ACTIONS(3360), - [anon_sym_LPAREN_PIPE] = ACTIONS(3360), - [sym_op_identifier] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_PLUS_DOT] = ACTIONS(3360), - [anon_sym_DASH_DOT] = ACTIONS(3360), - [anon_sym_PERCENT] = ACTIONS(3360), - [anon_sym_AMP_AMP] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3362), - [aux_sym_prefix_op_token1] = ACTIONS(3360), - [aux_sym_infix_op_token1] = ACTIONS(3360), - [anon_sym_PIPE_PIPE] = ACTIONS(3360), - [anon_sym_BANG_EQ] = ACTIONS(3360), - [anon_sym_COLON_EQ] = ACTIONS(3362), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3360), - [sym_int] = ACTIONS(3360), - [sym_xint] = ACTIONS(3362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3362), - [sym__newline] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [anon_sym_POUNDendif] = ACTIONS(3703), + [anon_sym_POUNDelse] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2294] = { [sym_xml_doc] = STATE(2294), @@ -294841,92 +298953,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2294), [sym_fsi_directive_decl] = STATE(2294), [sym_preproc_line] = STATE(2294), - [sym_identifier] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_COLON_QMARK] = ACTIONS(3387), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_AT_GT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3387), - [anon_sym_AT_AT_GT] = ACTIONS(3387), - [anon_sym_COLON_GT] = ACTIONS(3389), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_DOT_LBRACK] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3387), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3387), - [anon_sym_DASH_DOT] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3387), - [aux_sym_infix_op_token1] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3389), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3387), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), - [sym__newline] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [anon_sym_POUNDendif] = ACTIONS(3897), + [anon_sym_POUNDelse] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2295] = { [sym_xml_doc] = STATE(2295), @@ -294935,92 +299046,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2295), [sym_fsi_directive_decl] = STATE(2295), [sym_preproc_line] = STATE(2295), - [sym_identifier] = ACTIONS(3346), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_let_BANG] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3346), - [anon_sym_QMARK] = ACTIONS(3346), - [anon_sym_COLON_QMARK] = ACTIONS(3346), - [anon_sym_COLON_COLON] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LBRACK_PIPE] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_LBRACE_PIPE] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_return_BANG] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_yield_BANG] = ACTIONS(3348), - [anon_sym_lazy] = ACTIONS(3346), - [anon_sym_assert] = ACTIONS(3346), - [anon_sym_upcast] = ACTIONS(3346), - [anon_sym_downcast] = ACTIONS(3346), - [anon_sym_LT_AT] = ACTIONS(3346), - [anon_sym_AT_GT] = ACTIONS(3346), - [anon_sym_LT_AT_AT] = ACTIONS(3346), - [anon_sym_AT_AT_GT] = ACTIONS(3346), - [anon_sym_COLON_GT] = ACTIONS(3348), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_fun] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_match] = ACTIONS(3346), - [anon_sym_match_BANG] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_LT_DASH] = ACTIONS(3346), - [anon_sym_DOT_LBRACK] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_use] = ACTIONS(3346), - [anon_sym_use_BANG] = ACTIONS(3348), - [anon_sym_do_BANG] = ACTIONS(3348), - [anon_sym_begin] = ACTIONS(3346), - [anon_sym_LPAREN2] = ACTIONS(3348), - [anon_sym_or] = ACTIONS(3346), - [aux_sym_char_token1] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_AT_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3348), - [sym_bool] = ACTIONS(3346), - [sym_unit] = ACTIONS(3346), - [anon_sym_LPAREN_PIPE] = ACTIONS(3346), - [sym_op_identifier] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_PLUS_DOT] = ACTIONS(3346), - [anon_sym_DASH_DOT] = ACTIONS(3346), - [anon_sym_PERCENT] = ACTIONS(3346), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3348), - [aux_sym_prefix_op_token1] = ACTIONS(3346), - [aux_sym_infix_op_token1] = ACTIONS(3346), - [anon_sym_PIPE_PIPE] = ACTIONS(3346), - [anon_sym_BANG_EQ] = ACTIONS(3346), - [anon_sym_COLON_EQ] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3346), - [sym_int] = ACTIONS(3346), - [sym_xint] = ACTIONS(3348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3348), - [anon_sym_POUNDendif] = ACTIONS(3348), - [sym__newline] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_DASH_GT] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2296] = { [sym_xml_doc] = STATE(2296), @@ -295029,92 +299139,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2296), [sym_fsi_directive_decl] = STATE(2296), [sym_preproc_line] = STATE(2296), - [sym_identifier] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_COLON_QMARK] = ACTIONS(3371), - [anon_sym_COLON_COLON] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_AT_GT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3371), - [anon_sym_AT_AT_GT] = ACTIONS(3371), - [anon_sym_COLON_GT] = ACTIONS(3373), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_DOT_LBRACK] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [anon_sym_LPAREN2] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3371), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3371), - [anon_sym_DASH_DOT] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3371), - [aux_sym_infix_op_token1] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3371), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3371), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_DASH_GT] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2297] = { [sym_xml_doc] = STATE(2297), @@ -295123,92 +299232,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2297), [sym_fsi_directive_decl] = STATE(2297), [sym_preproc_line] = STATE(2297), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [anon_sym_POUNDendif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3533), + [anon_sym_EQ] = ACTIONS(3535), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_let_BANG] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_COMMA] = ACTIONS(3535), + [anon_sym_null] = ACTIONS(3533), + [anon_sym_QMARK] = ACTIONS(3533), + [anon_sym_COLON_QMARK] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(3535), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_LBRACK_PIPE] = ACTIONS(3535), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_LT_AT] = ACTIONS(3533), + [anon_sym_AT_GT] = ACTIONS(3533), + [anon_sym_LT_AT_AT] = ACTIONS(3533), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_LBRACE_PIPE] = ACTIONS(3535), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_return_BANG] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_yield_BANG] = ACTIONS(3535), + [anon_sym_lazy] = ACTIONS(3533), + [anon_sym_assert] = ACTIONS(3533), + [anon_sym_upcast] = ACTIONS(3533), + [anon_sym_downcast] = ACTIONS(3533), + [anon_sym_COLON_GT] = ACTIONS(3535), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_fun] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_match] = ACTIONS(3533), + [anon_sym_match_BANG] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(3533), + [anon_sym_LT_DASH] = ACTIONS(3533), + [anon_sym_DOT_LBRACK] = ACTIONS(3535), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_use] = ACTIONS(3533), + [anon_sym_use_BANG] = ACTIONS(3535), + [anon_sym_do_BANG] = ACTIONS(3535), + [anon_sym_begin] = ACTIONS(3533), + [anon_sym_LPAREN2] = ACTIONS(3535), + [anon_sym_or] = ACTIONS(3533), + [aux_sym_char_token1] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [anon_sym_AT_DQUOTE] = ACTIONS(3535), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3535), + [sym_bool] = ACTIONS(3533), + [sym_unit] = ACTIONS(3533), + [anon_sym_LPAREN_PIPE] = ACTIONS(3533), + [sym_op_identifier] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_PLUS_DOT] = ACTIONS(3533), + [anon_sym_DASH_DOT] = ACTIONS(3533), + [anon_sym_PERCENT] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3535), + [aux_sym_prefix_op_token1] = ACTIONS(3533), + [aux_sym_infix_op_token1] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BANG_EQ] = ACTIONS(3533), + [anon_sym_COLON_EQ] = ACTIONS(3535), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3533), + [sym_int] = ACTIONS(3533), + [sym_xint] = ACTIONS(3535), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3535), + [sym__newline] = ACTIONS(3535), }, [2298] = { [sym_xml_doc] = STATE(2298), @@ -295217,92 +299325,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2298), [sym_fsi_directive_decl] = STATE(2298), [sym_preproc_line] = STATE(2298), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [anon_sym_POUNDendif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_DASH_GT] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2299] = { [sym_xml_doc] = STATE(2299), @@ -295311,92 +299418,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2299), [sym_fsi_directive_decl] = STATE(2299), [sym_preproc_line] = STATE(2299), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_GT] = ACTIONS(3574), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_DASH_GT] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_DOT_DOT] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2300] = { [sym_xml_doc] = STATE(2300), @@ -295405,92 +299511,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2300), [sym_fsi_directive_decl] = STATE(2300), [sym_preproc_line] = STATE(2300), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_GT] = ACTIONS(3582), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [anon_sym_POUNDendif] = ACTIONS(3901), + [anon_sym_POUNDelse] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2301] = { [sym_xml_doc] = STATE(2301), @@ -295499,92 +299604,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2301), [sym_fsi_directive_decl] = STATE(2301), [sym_preproc_line] = STATE(2301), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_GT] = ACTIONS(3586), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2302] = { [sym_xml_doc] = STATE(2302), @@ -295593,92 +299697,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2302), [sym_fsi_directive_decl] = STATE(2302), [sym_preproc_line] = STATE(2302), - [sym_identifier] = ACTIONS(3493), - [anon_sym_EQ] = ACTIONS(3495), - [anon_sym_COLON] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_let_BANG] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_null] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_COLON_QMARK] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_LBRACE_PIPE] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_return_BANG] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3493), - [anon_sym_yield_BANG] = ACTIONS(3495), - [anon_sym_lazy] = ACTIONS(3493), - [anon_sym_assert] = ACTIONS(3493), - [anon_sym_upcast] = ACTIONS(3493), - [anon_sym_downcast] = ACTIONS(3493), - [anon_sym_LT_AT] = ACTIONS(3493), - [anon_sym_AT_GT] = ACTIONS(3493), - [anon_sym_LT_AT_AT] = ACTIONS(3493), - [anon_sym_AT_AT_GT] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3493), - [anon_sym_while] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3493), - [anon_sym_fun] = ACTIONS(3493), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3493), - [anon_sym_match_BANG] = ACTIONS(3495), - [anon_sym_function] = ACTIONS(3493), - [anon_sym_LT_DASH] = ACTIONS(3493), - [anon_sym_DOT_LBRACK] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3493), - [anon_sym_LT] = ACTIONS(3495), - [anon_sym_use] = ACTIONS(3493), - [anon_sym_use_BANG] = ACTIONS(3495), - [anon_sym_do_BANG] = ACTIONS(3495), - [anon_sym_DOT_DOT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(3495), - [anon_sym_or] = ACTIONS(3493), - [aux_sym_char_token1] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_AT_DQUOTE] = ACTIONS(3495), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym_bool] = ACTIONS(3493), - [sym_unit] = ACTIONS(3493), - [anon_sym_LPAREN_PIPE] = ACTIONS(3493), - [sym_op_identifier] = ACTIONS(3493), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3495), - [aux_sym_prefix_op_token1] = ACTIONS(3493), - [aux_sym_infix_op_token1] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_DOLLAR] = ACTIONS(3493), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3493), - [sym_int] = ACTIONS(3493), - [sym_xint] = ACTIONS(3495), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3495), - [sym__newline] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [anon_sym_POUNDendif] = ACTIONS(3842), + [anon_sym_POUNDelse] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2303] = { [sym_xml_doc] = STATE(2303), @@ -295687,92 +299790,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2303), [sym_fsi_directive_decl] = STATE(2303), [sym_preproc_line] = STATE(2303), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_GT] = ACTIONS(3590), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2304] = { [sym_xml_doc] = STATE(2304), @@ -295781,92 +299883,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2304), [sym_fsi_directive_decl] = STATE(2304), [sym_preproc_line] = STATE(2304), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [anon_sym_POUNDendif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [aux_sym_long_identifier_repeat1] = STATE(2304), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_AT_GT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(4927), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2305] = { [sym_xml_doc] = STATE(2305), @@ -295875,92 +299976,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2305), [sym_fsi_directive_decl] = STATE(2305), [sym_preproc_line] = STATE(2305), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [anon_sym_POUNDendif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_DASH_GT] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2306] = { [sym_xml_doc] = STATE(2306), @@ -295969,92 +300069,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2306), [sym_fsi_directive_decl] = STATE(2306), [sym_preproc_line] = STATE(2306), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [anon_sym_POUNDendif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [anon_sym_POUNDelse] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2307] = { [sym_xml_doc] = STATE(2307), @@ -296063,92 +300162,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2307), [sym_fsi_directive_decl] = STATE(2307), [sym_preproc_line] = STATE(2307), - [sym_identifier] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(3530), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(3528), - [anon_sym_COLON_QMARK] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_AT_GT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3528), - [anon_sym_AT_AT_GT] = ACTIONS(3528), - [anon_sym_COLON_GT] = ACTIONS(3530), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_DOT_LBRACK] = ACTIONS(3530), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_or] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3528), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3528), - [anon_sym_DASH_DOT] = ACTIONS(3528), - [anon_sym_PERCENT] = ACTIONS(3528), - [anon_sym_AMP_AMP] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3528), - [aux_sym_infix_op_token1] = ACTIONS(3528), - [anon_sym_PIPE_PIPE] = ACTIONS(3528), - [anon_sym_BANG_EQ] = ACTIONS(3528), - [anon_sym_COLON_EQ] = ACTIONS(3530), - [anon_sym_DOLLAR] = ACTIONS(3528), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3528), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), - [anon_sym_POUNDendif] = ACTIONS(3530), - [sym__newline] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [anon_sym_POUNDendif] = ACTIONS(3714), + [anon_sym_POUNDelse] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2308] = { [sym_xml_doc] = STATE(2308), @@ -296157,92 +300255,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2308), [sym_fsi_directive_decl] = STATE(2308), [sym_preproc_line] = STATE(2308), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [anon_sym_POUNDendif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [anon_sym_POUNDendif] = ACTIONS(3720), + [anon_sym_POUNDelse] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2309] = { [sym_xml_doc] = STATE(2309), @@ -296251,92 +300348,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2309), [sym_fsi_directive_decl] = STATE(2309), [sym_preproc_line] = STATE(2309), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_DOT_DOT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [anon_sym_POUNDendif] = ACTIONS(3764), + [anon_sym_POUNDelse] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2310] = { [sym_xml_doc] = STATE(2310), @@ -296345,92 +300441,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2310), [sym_fsi_directive_decl] = STATE(2310), [sym_preproc_line] = STATE(2310), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_DASH_GT] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_DOT_DOT] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2311] = { [sym_xml_doc] = STATE(2311), @@ -296439,92 +300534,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2311), [sym_fsi_directive_decl] = STATE(2311), [sym_preproc_line] = STATE(2311), - [sym_identifier] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3341), - [anon_sym_COLON] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_COLON_QMARK] = ACTIONS(3339), - [anon_sym_COLON_COLON] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_AT_GT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3339), - [anon_sym_AT_AT_GT] = ACTIONS(3339), - [anon_sym_COLON_GT] = ACTIONS(3341), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_DOT_LBRACK] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3341), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [anon_sym_LPAREN2] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3339), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3339), - [anon_sym_DASH_DOT] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3339), - [aux_sym_infix_op_token1] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3341), - [anon_sym_DOLLAR] = ACTIONS(3339), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3339), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), - [sym__newline] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_DASH_GT] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2312] = { [sym_xml_doc] = STATE(2312), @@ -296533,92 +300627,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2312), [sym_fsi_directive_decl] = STATE(2312), [sym_preproc_line] = STATE(2312), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_GT] = ACTIONS(3545), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_DASH_GT] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2313] = { [sym_xml_doc] = STATE(2313), @@ -296627,92 +300720,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2313), [sym_fsi_directive_decl] = STATE(2313), [sym_preproc_line] = STATE(2313), - [sym_identifier] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_let_BANG] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_COLON_QMARK] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_LBRACE_PIPE] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_return_BANG] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_yield_BANG] = ACTIONS(3399), - [anon_sym_lazy] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_upcast] = ACTIONS(3397), - [anon_sym_downcast] = ACTIONS(3397), - [anon_sym_LT_AT] = ACTIONS(3397), - [anon_sym_AT_GT] = ACTIONS(3397), - [anon_sym_LT_AT_AT] = ACTIONS(3397), - [anon_sym_AT_AT_GT] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_fun] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_match_BANG] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_DOT_LBRACK] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_use] = ACTIONS(3397), - [anon_sym_use_BANG] = ACTIONS(3399), - [anon_sym_do_BANG] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [anon_sym_LPAREN2] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3397), - [aux_sym_char_token1] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_AT_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3399), - [sym_bool] = ACTIONS(3397), - [sym_unit] = ACTIONS(3397), - [anon_sym_LPAREN_PIPE] = ACTIONS(3397), - [sym_op_identifier] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3399), - [aux_sym_prefix_op_token1] = ACTIONS(3397), - [aux_sym_infix_op_token1] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3397), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3397), - [sym_int] = ACTIONS(3397), - [sym_xint] = ACTIONS(3399), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3399), - [anon_sym_POUNDendif] = ACTIONS(3399), - [sym__newline] = ACTIONS(3399), + [aux_sym_type_argument_repeat1] = STATE(2313), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_and] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [aux_sym_access_modifier_token1] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_member] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_val] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), }, [2314] = { [sym_xml_doc] = STATE(2314), @@ -296721,280 +300813,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2314), [sym_fsi_directive_decl] = STATE(2314), [sym_preproc_line] = STATE(2314), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_DOT_DOT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [anon_sym_POUNDelse] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2315] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5095), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2355), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2315), [sym_block_comment] = STATE(2315), [sym_line_comment] = STATE(2315), [sym_compiler_directive_decl] = STATE(2315), [sym_fsi_directive_decl] = STATE(2315), [sym_preproc_line] = STATE(2315), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4284), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_DASH_GT] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2316] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5793), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2679), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2316), [sym_block_comment] = STATE(2316), [sym_line_comment] = STATE(2316), [sym_compiler_directive_decl] = STATE(2316), [sym_fsi_directive_decl] = STATE(2316), [sym_preproc_line] = STATE(2316), - [sym_identifier] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(3592), - [anon_sym_COLON] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_let_BANG] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_COMMA] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3590), - [anon_sym_QMARK] = ACTIONS(3590), - [anon_sym_COLON_QMARK] = ACTIONS(3590), - [anon_sym_COLON_COLON] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LBRACK_PIPE] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_LBRACE_PIPE] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_return_BANG] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_yield_BANG] = ACTIONS(3592), - [anon_sym_lazy] = ACTIONS(3590), - [anon_sym_assert] = ACTIONS(3590), - [anon_sym_upcast] = ACTIONS(3590), - [anon_sym_downcast] = ACTIONS(3590), - [anon_sym_LT_AT] = ACTIONS(3590), - [anon_sym_AT_GT] = ACTIONS(3590), - [anon_sym_LT_AT_AT] = ACTIONS(3590), - [anon_sym_AT_AT_GT] = ACTIONS(3590), - [anon_sym_COLON_GT] = ACTIONS(3592), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_fun] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3590), - [anon_sym_match_BANG] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_LT_DASH] = ACTIONS(3590), - [anon_sym_DOT_LBRACK] = ACTIONS(3592), - [anon_sym_DOT] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_use] = ACTIONS(3590), - [anon_sym_use_BANG] = ACTIONS(3592), - [anon_sym_do_BANG] = ACTIONS(3592), - [anon_sym_begin] = ACTIONS(3590), - [anon_sym_LPAREN2] = ACTIONS(3592), - [anon_sym_or] = ACTIONS(3590), - [aux_sym_char_token1] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_AT_DQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3592), - [sym_bool] = ACTIONS(3590), - [sym_unit] = ACTIONS(3590), - [anon_sym_LPAREN_PIPE] = ACTIONS(3590), - [sym_op_identifier] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_PLUS_DOT] = ACTIONS(3590), - [anon_sym_DASH_DOT] = ACTIONS(3590), - [anon_sym_PERCENT] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3592), - [aux_sym_prefix_op_token1] = ACTIONS(3590), - [aux_sym_infix_op_token1] = ACTIONS(3590), - [anon_sym_PIPE_PIPE] = ACTIONS(3590), - [anon_sym_BANG_EQ] = ACTIONS(3590), - [anon_sym_COLON_EQ] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3590), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3590), - [sym_int] = ACTIONS(3590), - [sym_xint] = ACTIONS(3592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3592), - [anon_sym_POUNDendif] = ACTIONS(3592), - [sym__newline] = ACTIONS(3592), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4645), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2317] = { [sym_xml_doc] = STATE(2317), @@ -297003,92 +301092,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2317), [sym_fsi_directive_decl] = STATE(2317), [sym_preproc_line] = STATE(2317), - [sym_identifier] = ACTIONS(3586), - [anon_sym_EQ] = ACTIONS(3588), - [anon_sym_COLON] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_let_BANG] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_COMMA] = ACTIONS(3588), - [anon_sym_null] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_COLON_QMARK] = ACTIONS(3586), - [anon_sym_COLON_COLON] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LBRACK_PIPE] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_LBRACE_PIPE] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_return_BANG] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_yield_BANG] = ACTIONS(3588), - [anon_sym_lazy] = ACTIONS(3586), - [anon_sym_assert] = ACTIONS(3586), - [anon_sym_upcast] = ACTIONS(3586), - [anon_sym_downcast] = ACTIONS(3586), - [anon_sym_LT_AT] = ACTIONS(3586), - [anon_sym_AT_GT] = ACTIONS(3586), - [anon_sym_LT_AT_AT] = ACTIONS(3586), - [anon_sym_AT_AT_GT] = ACTIONS(3586), - [anon_sym_COLON_GT] = ACTIONS(3588), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_fun] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_match] = ACTIONS(3586), - [anon_sym_match_BANG] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_DOT_LBRACK] = ACTIONS(3588), - [anon_sym_DOT] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_use] = ACTIONS(3586), - [anon_sym_use_BANG] = ACTIONS(3588), - [anon_sym_do_BANG] = ACTIONS(3588), - [anon_sym_begin] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_or] = ACTIONS(3586), - [aux_sym_char_token1] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_AT_DQUOTE] = ACTIONS(3588), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3588), - [sym_bool] = ACTIONS(3586), - [sym_unit] = ACTIONS(3586), - [anon_sym_LPAREN_PIPE] = ACTIONS(3586), - [sym_op_identifier] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_PLUS_DOT] = ACTIONS(3586), - [anon_sym_DASH_DOT] = ACTIONS(3586), - [anon_sym_PERCENT] = ACTIONS(3586), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3588), - [aux_sym_prefix_op_token1] = ACTIONS(3586), - [aux_sym_infix_op_token1] = ACTIONS(3586), - [anon_sym_PIPE_PIPE] = ACTIONS(3586), - [anon_sym_BANG_EQ] = ACTIONS(3586), - [anon_sym_COLON_EQ] = ACTIONS(3588), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3586), - [sym_int] = ACTIONS(3586), - [sym_xint] = ACTIONS(3588), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3588), - [anon_sym_POUNDendif] = ACTIONS(3588), - [sym__newline] = ACTIONS(3588), + [aux_sym_long_identifier_repeat1] = STATE(2261), + [sym_identifier] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3264), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_do] = ACTIONS(3261), + [anon_sym_let] = ACTIONS(3261), + [anon_sym_let_BANG] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_null] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACK_PIPE] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_LT_AT] = ACTIONS(3261), + [anon_sym_AT_GT] = ACTIONS(3261), + [anon_sym_LT_AT_AT] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(4937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3261), + [anon_sym_return_BANG] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3261), + [anon_sym_yield_BANG] = ACTIONS(3264), + [anon_sym_lazy] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_upcast] = ACTIONS(3261), + [anon_sym_downcast] = ACTIONS(3261), + [anon_sym_COLON_GT] = ACTIONS(3264), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_while] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_fun] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_match_BANG] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_DOT_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_use] = ACTIONS(3261), + [anon_sym_use_BANG] = ACTIONS(3264), + [anon_sym_do_BANG] = ACTIONS(3264), + [anon_sym_begin] = ACTIONS(3261), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3261), + [aux_sym_char_token1] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3261), + [anon_sym_DQUOTE] = ACTIONS(3261), + [anon_sym_AT_DQUOTE] = ACTIONS(3264), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), + [sym_bool] = ACTIONS(3261), + [sym_unit] = ACTIONS(3261), + [anon_sym_LPAREN_PIPE] = ACTIONS(3261), + [sym_op_identifier] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_PLUS_DOT] = ACTIONS(3261), + [anon_sym_DASH_DOT] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3264), + [aux_sym_prefix_op_token1] = ACTIONS(3261), + [aux_sym_infix_op_token1] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3264), + [anon_sym_DOLLAR] = ACTIONS(3261), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3261), + [sym_int] = ACTIONS(3261), + [sym_xint] = ACTIONS(3264), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3264), + [sym__newline] = ACTIONS(3264), }, [2318] = { [sym_xml_doc] = STATE(2318), @@ -297097,92 +301185,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2318), [sym_fsi_directive_decl] = STATE(2318), [sym_preproc_line] = STATE(2318), - [sym_identifier] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3621), - [anon_sym_return] = ACTIONS(3621), - [anon_sym_do] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_let_BANG] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3621), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_COLON_QMARK] = ACTIONS(3621), - [anon_sym_COLON_COLON] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3621), - [anon_sym_LBRACK_PIPE] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3621), - [anon_sym_LBRACE_PIPE] = ACTIONS(3623), - [anon_sym_new] = ACTIONS(3621), - [anon_sym_return_BANG] = ACTIONS(3623), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_yield_BANG] = ACTIONS(3623), - [anon_sym_lazy] = ACTIONS(3621), - [anon_sym_assert] = ACTIONS(3621), - [anon_sym_upcast] = ACTIONS(3621), - [anon_sym_downcast] = ACTIONS(3621), - [anon_sym_LT_AT] = ACTIONS(3621), - [anon_sym_AT_GT] = ACTIONS(3621), - [anon_sym_LT_AT_AT] = ACTIONS(3621), - [anon_sym_AT_AT_GT] = ACTIONS(3621), - [anon_sym_COLON_GT] = ACTIONS(3623), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3623), - [anon_sym_for] = ACTIONS(3621), - [anon_sym_while] = ACTIONS(3621), - [anon_sym_if] = ACTIONS(3621), - [anon_sym_fun] = ACTIONS(3621), - [anon_sym_try] = ACTIONS(3621), - [anon_sym_match] = ACTIONS(3621), - [anon_sym_match_BANG] = ACTIONS(3623), - [anon_sym_function] = ACTIONS(3621), - [anon_sym_LT_DASH] = ACTIONS(3621), - [anon_sym_DOT_LBRACK] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3623), - [anon_sym_use] = ACTIONS(3621), - [anon_sym_use_BANG] = ACTIONS(3623), - [anon_sym_do_BANG] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_begin] = ACTIONS(3621), - [anon_sym_LPAREN2] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [aux_sym_char_token1] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3621), - [anon_sym_DQUOTE] = ACTIONS(3621), - [anon_sym_AT_DQUOTE] = ACTIONS(3623), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3623), - [sym_bool] = ACTIONS(3621), - [sym_unit] = ACTIONS(3621), - [anon_sym_LPAREN_PIPE] = ACTIONS(3621), - [sym_op_identifier] = ACTIONS(3621), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_PLUS_DOT] = ACTIONS(3621), - [anon_sym_DASH_DOT] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3623), - [aux_sym_prefix_op_token1] = ACTIONS(3621), - [aux_sym_infix_op_token1] = ACTIONS(3621), - [anon_sym_PIPE_PIPE] = ACTIONS(3621), - [anon_sym_BANG_EQ] = ACTIONS(3621), - [anon_sym_COLON_EQ] = ACTIONS(3623), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3621), - [sym_int] = ACTIONS(3621), - [sym_xint] = ACTIONS(3623), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3623), - [sym__newline] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_DASH_GT] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_DOT_DOT] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2319] = { [sym_xml_doc] = STATE(2319), @@ -297191,92 +301278,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2319), [sym_fsi_directive_decl] = STATE(2319), [sym_preproc_line] = STATE(2319), - [sym_identifier] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3467), - [anon_sym_COLON] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_COLON_QMARK] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_AT_GT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3465), - [anon_sym_AT_AT_GT] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_LT_DASH] = ACTIONS(3465), - [anon_sym_DOT_LBRACK] = ACTIONS(3467), - [anon_sym_DOT] = ACTIONS(3465), - [anon_sym_LT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_DOT_DOT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [anon_sym_LPAREN2] = ACTIONS(3467), - [anon_sym_or] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3465), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3465), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [anon_sym_PERCENT] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3465), - [aux_sym_infix_op_token1] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [anon_sym_BANG_EQ] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_DOLLAR] = ACTIONS(3465), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3465), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), - [sym__newline] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_DASH_GT] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2320] = { [sym_xml_doc] = STATE(2320), @@ -297285,92 +301371,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2320), [sym_fsi_directive_decl] = STATE(2320), [sym_preproc_line] = STATE(2320), - [sym_identifier] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_let_BANG] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_null] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_COLON_QMARK] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_LBRACE_PIPE] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_return_BANG] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_yield_BANG] = ACTIONS(3403), - [anon_sym_lazy] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_upcast] = ACTIONS(3401), - [anon_sym_downcast] = ACTIONS(3401), - [anon_sym_LT_AT] = ACTIONS(3401), - [anon_sym_AT_GT] = ACTIONS(3401), - [anon_sym_LT_AT_AT] = ACTIONS(3401), - [anon_sym_AT_AT_GT] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_fun] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_match_BANG] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_DOT_LBRACK] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_use] = ACTIONS(3401), - [anon_sym_use_BANG] = ACTIONS(3403), - [anon_sym_do_BANG] = ACTIONS(3403), - [anon_sym_DOT_DOT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [anon_sym_LPAREN2] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3401), - [aux_sym_char_token1] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_AT_DQUOTE] = ACTIONS(3403), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3403), - [sym_bool] = ACTIONS(3401), - [sym_unit] = ACTIONS(3401), - [anon_sym_LPAREN_PIPE] = ACTIONS(3401), - [sym_op_identifier] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3403), - [aux_sym_prefix_op_token1] = ACTIONS(3401), - [aux_sym_infix_op_token1] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3401), - [sym_int] = ACTIONS(3401), - [sym_xint] = ACTIONS(3403), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3403), - [sym__newline] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [anon_sym_POUNDendif] = ACTIONS(3838), + [anon_sym_POUNDelse] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2321] = { [sym_xml_doc] = STATE(2321), @@ -297379,92 +301464,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2321), [sym_fsi_directive_decl] = STATE(2321), [sym_preproc_line] = STATE(2321), - [sym_identifier] = ACTIONS(3582), - [anon_sym_EQ] = ACTIONS(3584), - [anon_sym_COLON] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_let_BANG] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_COMMA] = ACTIONS(3584), - [anon_sym_null] = ACTIONS(3582), - [anon_sym_QMARK] = ACTIONS(3582), - [anon_sym_COLON_QMARK] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(3584), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LBRACK_PIPE] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_LBRACE_PIPE] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_return_BANG] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_yield_BANG] = ACTIONS(3584), - [anon_sym_lazy] = ACTIONS(3582), - [anon_sym_assert] = ACTIONS(3582), - [anon_sym_upcast] = ACTIONS(3582), - [anon_sym_downcast] = ACTIONS(3582), - [anon_sym_LT_AT] = ACTIONS(3582), - [anon_sym_AT_GT] = ACTIONS(3582), - [anon_sym_LT_AT_AT] = ACTIONS(3582), - [anon_sym_AT_AT_GT] = ACTIONS(3582), - [anon_sym_COLON_GT] = ACTIONS(3584), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_fun] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_match] = ACTIONS(3582), - [anon_sym_match_BANG] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_DOT_LBRACK] = ACTIONS(3584), - [anon_sym_DOT] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_use] = ACTIONS(3582), - [anon_sym_use_BANG] = ACTIONS(3584), - [anon_sym_do_BANG] = ACTIONS(3584), - [anon_sym_begin] = ACTIONS(3582), - [anon_sym_LPAREN2] = ACTIONS(3584), - [anon_sym_or] = ACTIONS(3582), - [aux_sym_char_token1] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_AT_DQUOTE] = ACTIONS(3584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3584), - [sym_bool] = ACTIONS(3582), - [sym_unit] = ACTIONS(3582), - [anon_sym_LPAREN_PIPE] = ACTIONS(3582), - [sym_op_identifier] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_PLUS_DOT] = ACTIONS(3582), - [anon_sym_DASH_DOT] = ACTIONS(3582), - [anon_sym_PERCENT] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3584), - [aux_sym_prefix_op_token1] = ACTIONS(3582), - [aux_sym_infix_op_token1] = ACTIONS(3582), - [anon_sym_PIPE_PIPE] = ACTIONS(3582), - [anon_sym_BANG_EQ] = ACTIONS(3582), - [anon_sym_COLON_EQ] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3582), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3582), - [sym_int] = ACTIONS(3582), - [sym_xint] = ACTIONS(3584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3584), - [anon_sym_POUNDendif] = ACTIONS(3584), - [sym__newline] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [anon_sym_POUNDendif] = ACTIONS(3912), + [anon_sym_POUNDelse] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2322] = { [sym_xml_doc] = STATE(2322), @@ -297473,92 +301557,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2322), [sym_fsi_directive_decl] = STATE(2322), [sym_preproc_line] = STATE(2322), - [sym_identifier] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3645), - [anon_sym_COLON] = ACTIONS(3643), - [anon_sym_return] = ACTIONS(3643), - [anon_sym_do] = ACTIONS(3643), - [anon_sym_let] = ACTIONS(3643), - [anon_sym_let_BANG] = ACTIONS(3645), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_COMMA] = ACTIONS(3645), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_QMARK] = ACTIONS(3643), - [anon_sym_COLON_QMARK] = ACTIONS(3643), - [anon_sym_COLON_COLON] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LBRACK_PIPE] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LBRACE_PIPE] = ACTIONS(3645), - [anon_sym_new] = ACTIONS(3643), - [anon_sym_return_BANG] = ACTIONS(3645), - [anon_sym_yield] = ACTIONS(3643), - [anon_sym_yield_BANG] = ACTIONS(3645), - [anon_sym_lazy] = ACTIONS(3643), - [anon_sym_assert] = ACTIONS(3643), - [anon_sym_upcast] = ACTIONS(3643), - [anon_sym_downcast] = ACTIONS(3643), - [anon_sym_LT_AT] = ACTIONS(3643), - [anon_sym_AT_GT] = ACTIONS(3643), - [anon_sym_LT_AT_AT] = ACTIONS(3643), - [anon_sym_AT_AT_GT] = ACTIONS(3643), - [anon_sym_COLON_GT] = ACTIONS(3645), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3643), - [anon_sym_while] = ACTIONS(3643), - [anon_sym_if] = ACTIONS(3643), - [anon_sym_fun] = ACTIONS(3643), - [anon_sym_try] = ACTIONS(3643), - [anon_sym_match] = ACTIONS(3643), - [anon_sym_match_BANG] = ACTIONS(3645), - [anon_sym_function] = ACTIONS(3643), - [anon_sym_LT_DASH] = ACTIONS(3643), - [anon_sym_DOT_LBRACK] = ACTIONS(3645), - [anon_sym_DOT] = ACTIONS(3643), - [anon_sym_LT] = ACTIONS(3645), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_use] = ACTIONS(3643), - [anon_sym_use_BANG] = ACTIONS(3645), - [anon_sym_do_BANG] = ACTIONS(3645), - [anon_sym_begin] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_or] = ACTIONS(3643), - [aux_sym_char_token1] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [anon_sym_AT_DQUOTE] = ACTIONS(3645), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3645), - [sym_bool] = ACTIONS(3643), - [sym_unit] = ACTIONS(3643), - [anon_sym_LPAREN_PIPE] = ACTIONS(3643), - [sym_op_identifier] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3643), - [anon_sym_DASH] = ACTIONS(3643), - [anon_sym_PLUS_DOT] = ACTIONS(3643), - [anon_sym_DASH_DOT] = ACTIONS(3643), - [anon_sym_PERCENT] = ACTIONS(3643), - [anon_sym_AMP_AMP] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3645), - [aux_sym_prefix_op_token1] = ACTIONS(3643), - [aux_sym_infix_op_token1] = ACTIONS(3643), - [anon_sym_PIPE_PIPE] = ACTIONS(3643), - [anon_sym_BANG_EQ] = ACTIONS(3643), - [anon_sym_COLON_EQ] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3643), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3643), - [sym_int] = ACTIONS(3643), - [sym_xint] = ACTIONS(3645), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3645), - [sym__newline] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [anon_sym_POUNDendif] = ACTIONS(3923), + [anon_sym_POUNDelse] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2323] = { [sym_xml_doc] = STATE(2323), @@ -297567,92 +301650,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2323), [sym_fsi_directive_decl] = STATE(2323), [sym_preproc_line] = STATE(2323), - [sym_identifier] = ACTIONS(3639), - [anon_sym_EQ] = ACTIONS(3641), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_return] = ACTIONS(3639), - [anon_sym_do] = ACTIONS(3639), - [anon_sym_let] = ACTIONS(3639), - [anon_sym_let_BANG] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3639), - [anon_sym_QMARK] = ACTIONS(3639), - [anon_sym_COLON_QMARK] = ACTIONS(3639), - [anon_sym_COLON_COLON] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), - [anon_sym_LBRACK_PIPE] = ACTIONS(3641), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACE_PIPE] = ACTIONS(3641), - [anon_sym_new] = ACTIONS(3639), - [anon_sym_return_BANG] = ACTIONS(3641), - [anon_sym_yield] = ACTIONS(3639), - [anon_sym_yield_BANG] = ACTIONS(3641), - [anon_sym_lazy] = ACTIONS(3639), - [anon_sym_assert] = ACTIONS(3639), - [anon_sym_upcast] = ACTIONS(3639), - [anon_sym_downcast] = ACTIONS(3639), - [anon_sym_LT_AT] = ACTIONS(3639), - [anon_sym_AT_GT] = ACTIONS(3639), - [anon_sym_LT_AT_AT] = ACTIONS(3639), - [anon_sym_AT_AT_GT] = ACTIONS(3639), - [anon_sym_COLON_GT] = ACTIONS(3641), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3641), - [anon_sym_for] = ACTIONS(3639), - [anon_sym_while] = ACTIONS(3639), - [anon_sym_if] = ACTIONS(3639), - [anon_sym_fun] = ACTIONS(3639), - [anon_sym_try] = ACTIONS(3639), - [anon_sym_match] = ACTIONS(3639), - [anon_sym_match_BANG] = ACTIONS(3641), - [anon_sym_function] = ACTIONS(3639), - [anon_sym_LT_DASH] = ACTIONS(3639), - [anon_sym_DOT_LBRACK] = ACTIONS(3641), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_LT] = ACTIONS(3641), - [anon_sym_GT] = ACTIONS(3639), - [anon_sym_use] = ACTIONS(3639), - [anon_sym_use_BANG] = ACTIONS(3641), - [anon_sym_do_BANG] = ACTIONS(3641), - [anon_sym_begin] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(3641), - [anon_sym_or] = ACTIONS(3639), - [aux_sym_char_token1] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(3639), - [anon_sym_AT_DQUOTE] = ACTIONS(3641), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3641), - [sym_bool] = ACTIONS(3639), - [sym_unit] = ACTIONS(3639), - [anon_sym_LPAREN_PIPE] = ACTIONS(3639), - [sym_op_identifier] = ACTIONS(3639), - [anon_sym_PLUS] = ACTIONS(3639), - [anon_sym_DASH] = ACTIONS(3639), - [anon_sym_PLUS_DOT] = ACTIONS(3639), - [anon_sym_DASH_DOT] = ACTIONS(3639), - [anon_sym_PERCENT] = ACTIONS(3639), - [anon_sym_AMP_AMP] = ACTIONS(3639), - [anon_sym_TILDE] = ACTIONS(3641), - [aux_sym_prefix_op_token1] = ACTIONS(3639), - [aux_sym_infix_op_token1] = ACTIONS(3639), - [anon_sym_PIPE_PIPE] = ACTIONS(3639), - [anon_sym_BANG_EQ] = ACTIONS(3639), - [anon_sym_COLON_EQ] = ACTIONS(3641), - [anon_sym_DOLLAR] = ACTIONS(3639), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3639), - [sym_int] = ACTIONS(3639), - [sym_xint] = ACTIONS(3641), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3641), - [sym__newline] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [anon_sym_POUNDendif] = ACTIONS(3931), + [anon_sym_POUNDelse] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2324] = { [sym_xml_doc] = STATE(2324), @@ -297661,92 +301743,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2324), [sym_fsi_directive_decl] = STATE(2324), [sym_preproc_line] = STATE(2324), - [sym_identifier] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [anon_sym_COLON] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_let_BANG] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_COMMA] = ACTIONS(3576), - [anon_sym_null] = ACTIONS(3574), - [anon_sym_QMARK] = ACTIONS(3574), - [anon_sym_COLON_QMARK] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(3576), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LBRACK_PIPE] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_LBRACE_PIPE] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_return_BANG] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_yield_BANG] = ACTIONS(3576), - [anon_sym_lazy] = ACTIONS(3574), - [anon_sym_assert] = ACTIONS(3574), - [anon_sym_upcast] = ACTIONS(3574), - [anon_sym_downcast] = ACTIONS(3574), - [anon_sym_LT_AT] = ACTIONS(3574), - [anon_sym_AT_GT] = ACTIONS(3574), - [anon_sym_LT_AT_AT] = ACTIONS(3574), - [anon_sym_AT_AT_GT] = ACTIONS(3574), - [anon_sym_COLON_GT] = ACTIONS(3576), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_fun] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3574), - [anon_sym_match_BANG] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_LT_DASH] = ACTIONS(3574), - [anon_sym_DOT_LBRACK] = ACTIONS(3576), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_use] = ACTIONS(3574), - [anon_sym_use_BANG] = ACTIONS(3576), - [anon_sym_do_BANG] = ACTIONS(3576), - [anon_sym_begin] = ACTIONS(3574), - [anon_sym_LPAREN2] = ACTIONS(3576), - [anon_sym_or] = ACTIONS(3574), - [aux_sym_char_token1] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_AT_DQUOTE] = ACTIONS(3576), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3576), - [sym_bool] = ACTIONS(3574), - [sym_unit] = ACTIONS(3574), - [anon_sym_LPAREN_PIPE] = ACTIONS(3574), - [sym_op_identifier] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_PLUS_DOT] = ACTIONS(3574), - [anon_sym_DASH_DOT] = ACTIONS(3574), - [anon_sym_PERCENT] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3576), - [aux_sym_prefix_op_token1] = ACTIONS(3574), - [aux_sym_infix_op_token1] = ACTIONS(3574), - [anon_sym_PIPE_PIPE] = ACTIONS(3574), - [anon_sym_BANG_EQ] = ACTIONS(3574), - [anon_sym_COLON_EQ] = ACTIONS(3576), - [anon_sym_DOLLAR] = ACTIONS(3574), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3574), - [sym_int] = ACTIONS(3574), - [sym_xint] = ACTIONS(3576), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3576), - [anon_sym_POUNDendif] = ACTIONS(3576), - [sym__newline] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [anon_sym_POUNDendif] = ACTIONS(3939), + [anon_sym_POUNDelse] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2325] = { [sym_xml_doc] = STATE(2325), @@ -297755,92 +301836,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2325), [sym_fsi_directive_decl] = STATE(2325), [sym_preproc_line] = STATE(2325), - [sym_identifier] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3637), - [anon_sym_COLON] = ACTIONS(3635), - [anon_sym_return] = ACTIONS(3635), - [anon_sym_do] = ACTIONS(3635), - [anon_sym_let] = ACTIONS(3635), - [anon_sym_let_BANG] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_COMMA] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3635), - [anon_sym_QMARK] = ACTIONS(3635), - [anon_sym_COLON_QMARK] = ACTIONS(3635), - [anon_sym_COLON_COLON] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3635), - [anon_sym_LBRACK_PIPE] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3635), - [anon_sym_LBRACE_PIPE] = ACTIONS(3637), - [anon_sym_new] = ACTIONS(3635), - [anon_sym_return_BANG] = ACTIONS(3637), - [anon_sym_yield] = ACTIONS(3635), - [anon_sym_yield_BANG] = ACTIONS(3637), - [anon_sym_lazy] = ACTIONS(3635), - [anon_sym_assert] = ACTIONS(3635), - [anon_sym_upcast] = ACTIONS(3635), - [anon_sym_downcast] = ACTIONS(3635), - [anon_sym_LT_AT] = ACTIONS(3635), - [anon_sym_AT_GT] = ACTIONS(3635), - [anon_sym_LT_AT_AT] = ACTIONS(3635), - [anon_sym_AT_AT_GT] = ACTIONS(3635), - [anon_sym_COLON_GT] = ACTIONS(3637), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3637), - [anon_sym_for] = ACTIONS(3635), - [anon_sym_while] = ACTIONS(3635), - [anon_sym_if] = ACTIONS(3635), - [anon_sym_fun] = ACTIONS(3635), - [anon_sym_try] = ACTIONS(3635), - [anon_sym_match] = ACTIONS(3635), - [anon_sym_match_BANG] = ACTIONS(3637), - [anon_sym_function] = ACTIONS(3635), - [anon_sym_LT_DASH] = ACTIONS(3635), - [anon_sym_DOT_LBRACK] = ACTIONS(3637), - [anon_sym_DOT] = ACTIONS(3635), - [anon_sym_LT] = ACTIONS(3637), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_use] = ACTIONS(3635), - [anon_sym_use_BANG] = ACTIONS(3637), - [anon_sym_do_BANG] = ACTIONS(3637), - [anon_sym_begin] = ACTIONS(3635), - [anon_sym_LPAREN2] = ACTIONS(3637), - [anon_sym_or] = ACTIONS(3635), - [aux_sym_char_token1] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3635), - [anon_sym_DQUOTE] = ACTIONS(3635), - [anon_sym_AT_DQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3637), - [sym_bool] = ACTIONS(3635), - [sym_unit] = ACTIONS(3635), - [anon_sym_LPAREN_PIPE] = ACTIONS(3635), - [sym_op_identifier] = ACTIONS(3635), - [anon_sym_PLUS] = ACTIONS(3635), - [anon_sym_DASH] = ACTIONS(3635), - [anon_sym_PLUS_DOT] = ACTIONS(3635), - [anon_sym_DASH_DOT] = ACTIONS(3635), - [anon_sym_PERCENT] = ACTIONS(3635), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3637), - [aux_sym_prefix_op_token1] = ACTIONS(3635), - [aux_sym_infix_op_token1] = ACTIONS(3635), - [anon_sym_PIPE_PIPE] = ACTIONS(3635), - [anon_sym_BANG_EQ] = ACTIONS(3635), - [anon_sym_COLON_EQ] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3635), - [sym_int] = ACTIONS(3635), - [sym_xint] = ACTIONS(3637), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3637), - [sym__newline] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [anon_sym_POUNDendif] = ACTIONS(3979), + [anon_sym_POUNDelse] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2326] = { [sym_xml_doc] = STATE(2326), @@ -297849,92 +301929,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2326), [sym_fsi_directive_decl] = STATE(2326), [sym_preproc_line] = STATE(2326), - [sym_identifier] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_COLON] = ACTIONS(3631), - [anon_sym_return] = ACTIONS(3631), - [anon_sym_do] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_let_BANG] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_COLON_QMARK] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(3633), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LBRACK_PIPE] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_LBRACE_PIPE] = ACTIONS(3633), - [anon_sym_new] = ACTIONS(3631), - [anon_sym_return_BANG] = ACTIONS(3633), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_yield_BANG] = ACTIONS(3633), - [anon_sym_lazy] = ACTIONS(3631), - [anon_sym_assert] = ACTIONS(3631), - [anon_sym_upcast] = ACTIONS(3631), - [anon_sym_downcast] = ACTIONS(3631), - [anon_sym_LT_AT] = ACTIONS(3631), - [anon_sym_AT_GT] = ACTIONS(3631), - [anon_sym_LT_AT_AT] = ACTIONS(3631), - [anon_sym_AT_AT_GT] = ACTIONS(3631), - [anon_sym_COLON_GT] = ACTIONS(3633), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3633), - [anon_sym_for] = ACTIONS(3631), - [anon_sym_while] = ACTIONS(3631), - [anon_sym_if] = ACTIONS(3631), - [anon_sym_fun] = ACTIONS(3631), - [anon_sym_try] = ACTIONS(3631), - [anon_sym_match] = ACTIONS(3631), - [anon_sym_match_BANG] = ACTIONS(3633), - [anon_sym_function] = ACTIONS(3631), - [anon_sym_LT_DASH] = ACTIONS(3631), - [anon_sym_DOT_LBRACK] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_use] = ACTIONS(3631), - [anon_sym_use_BANG] = ACTIONS(3633), - [anon_sym_do_BANG] = ACTIONS(3633), - [anon_sym_begin] = ACTIONS(3631), - [anon_sym_LPAREN2] = ACTIONS(3633), - [anon_sym_or] = ACTIONS(3631), - [aux_sym_char_token1] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3631), - [anon_sym_DQUOTE] = ACTIONS(3631), - [anon_sym_AT_DQUOTE] = ACTIONS(3633), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3633), - [sym_bool] = ACTIONS(3631), - [sym_unit] = ACTIONS(3631), - [anon_sym_LPAREN_PIPE] = ACTIONS(3631), - [sym_op_identifier] = ACTIONS(3631), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_PLUS_DOT] = ACTIONS(3631), - [anon_sym_DASH_DOT] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3631), - [anon_sym_TILDE] = ACTIONS(3633), - [aux_sym_prefix_op_token1] = ACTIONS(3631), - [aux_sym_infix_op_token1] = ACTIONS(3631), - [anon_sym_PIPE_PIPE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3631), - [anon_sym_COLON_EQ] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3631), - [sym_int] = ACTIONS(3631), - [sym_xint] = ACTIONS(3633), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3633), - [sym__newline] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [anon_sym_POUNDendif] = ACTIONS(3975), + [anon_sym_POUNDelse] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2327] = { [sym_xml_doc] = STATE(2327), @@ -297943,92 +302022,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2327), [sym_fsi_directive_decl] = STATE(2327), [sym_preproc_line] = STATE(2327), - [sym_identifier] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3547), - [anon_sym_COLON] = ACTIONS(3545), - [anon_sym_return] = ACTIONS(3545), - [anon_sym_do] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3545), - [anon_sym_let_BANG] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3547), - [anon_sym_null] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3545), - [anon_sym_COLON_QMARK] = ACTIONS(3545), - [anon_sym_COLON_COLON] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3545), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3545), - [anon_sym_LBRACE_PIPE] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3545), - [anon_sym_return_BANG] = ACTIONS(3547), - [anon_sym_yield] = ACTIONS(3545), - [anon_sym_yield_BANG] = ACTIONS(3547), - [anon_sym_lazy] = ACTIONS(3545), - [anon_sym_assert] = ACTIONS(3545), - [anon_sym_upcast] = ACTIONS(3545), - [anon_sym_downcast] = ACTIONS(3545), - [anon_sym_LT_AT] = ACTIONS(3545), - [anon_sym_AT_GT] = ACTIONS(3545), - [anon_sym_LT_AT_AT] = ACTIONS(3545), - [anon_sym_AT_AT_GT] = ACTIONS(3545), - [anon_sym_COLON_GT] = ACTIONS(3547), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3547), - [anon_sym_for] = ACTIONS(3545), - [anon_sym_while] = ACTIONS(3545), - [anon_sym_if] = ACTIONS(3545), - [anon_sym_fun] = ACTIONS(3545), - [anon_sym_try] = ACTIONS(3545), - [anon_sym_match] = ACTIONS(3545), - [anon_sym_match_BANG] = ACTIONS(3547), - [anon_sym_function] = ACTIONS(3545), - [anon_sym_LT_DASH] = ACTIONS(3545), - [anon_sym_DOT_LBRACK] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LT] = ACTIONS(3547), - [anon_sym_use] = ACTIONS(3545), - [anon_sym_use_BANG] = ACTIONS(3547), - [anon_sym_do_BANG] = ACTIONS(3547), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [anon_sym_begin] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3545), - [aux_sym_char_token1] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [anon_sym_AT_DQUOTE] = ACTIONS(3547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3547), - [sym_bool] = ACTIONS(3545), - [sym_unit] = ACTIONS(3545), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [sym_op_identifier] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3545), - [anon_sym_DASH] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3545), - [anon_sym_DASH_DOT] = ACTIONS(3545), - [anon_sym_PERCENT] = ACTIONS(3545), - [anon_sym_AMP_AMP] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3547), - [aux_sym_prefix_op_token1] = ACTIONS(3545), - [aux_sym_infix_op_token1] = ACTIONS(3545), - [anon_sym_PIPE_PIPE] = ACTIONS(3545), - [anon_sym_BANG_EQ] = ACTIONS(3545), - [anon_sym_COLON_EQ] = ACTIONS(3547), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3545), - [sym_int] = ACTIONS(3545), - [sym_xint] = ACTIONS(3547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3547), - [sym__newline] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [anon_sym_POUNDendif] = ACTIONS(3971), + [anon_sym_POUNDelse] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2328] = { [sym_xml_doc] = STATE(2328), @@ -298037,92 +302115,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2328), [sym_fsi_directive_decl] = STATE(2328), [sym_preproc_line] = STATE(2328), - [sym_identifier] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(3572), - [anon_sym_COLON] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_let_BANG] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_COMMA] = ACTIONS(3572), - [anon_sym_null] = ACTIONS(3570), - [anon_sym_QMARK] = ACTIONS(3570), - [anon_sym_COLON_QMARK] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3572), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LBRACK_PIPE] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_LBRACE_PIPE] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_return_BANG] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_yield_BANG] = ACTIONS(3572), - [anon_sym_lazy] = ACTIONS(3570), - [anon_sym_assert] = ACTIONS(3570), - [anon_sym_upcast] = ACTIONS(3570), - [anon_sym_downcast] = ACTIONS(3570), - [anon_sym_LT_AT] = ACTIONS(3570), - [anon_sym_AT_GT] = ACTIONS(3570), - [anon_sym_LT_AT_AT] = ACTIONS(3570), - [anon_sym_AT_AT_GT] = ACTIONS(3570), - [anon_sym_COLON_GT] = ACTIONS(3572), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_fun] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_match] = ACTIONS(3570), - [anon_sym_match_BANG] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_LT_DASH] = ACTIONS(3570), - [anon_sym_DOT_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_use] = ACTIONS(3570), - [anon_sym_use_BANG] = ACTIONS(3572), - [anon_sym_do_BANG] = ACTIONS(3572), - [anon_sym_begin] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_or] = ACTIONS(3570), - [aux_sym_char_token1] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_AT_DQUOTE] = ACTIONS(3572), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3572), - [sym_bool] = ACTIONS(3570), - [sym_unit] = ACTIONS(3570), - [anon_sym_LPAREN_PIPE] = ACTIONS(3570), - [sym_op_identifier] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_PLUS_DOT] = ACTIONS(3570), - [anon_sym_DASH_DOT] = ACTIONS(3570), - [anon_sym_PERCENT] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3572), - [aux_sym_prefix_op_token1] = ACTIONS(3570), - [aux_sym_infix_op_token1] = ACTIONS(3570), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_BANG_EQ] = ACTIONS(3570), - [anon_sym_COLON_EQ] = ACTIONS(3572), - [anon_sym_DOLLAR] = ACTIONS(3570), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3570), - [sym_int] = ACTIONS(3570), - [sym_xint] = ACTIONS(3572), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3572), - [anon_sym_POUNDendif] = ACTIONS(3572), - [sym__newline] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [anon_sym_POUNDendif] = ACTIONS(3967), + [anon_sym_POUNDelse] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2329] = { [sym_xml_doc] = STATE(2329), @@ -298131,92 +302208,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2329), [sym_fsi_directive_decl] = STATE(2329), [sym_preproc_line] = STATE(2329), - [sym_identifier] = ACTIONS(3614), - [anon_sym_EQ] = ACTIONS(3616), - [anon_sym_COLON] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_let_BANG] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_COMMA] = ACTIONS(3616), - [anon_sym_null] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_COLON_QMARK] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LBRACK_PIPE] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_LBRACE_PIPE] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_return_BANG] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_yield_BANG] = ACTIONS(3616), - [anon_sym_lazy] = ACTIONS(3614), - [anon_sym_assert] = ACTIONS(3614), - [anon_sym_upcast] = ACTIONS(3614), - [anon_sym_downcast] = ACTIONS(3614), - [anon_sym_LT_AT] = ACTIONS(3614), - [anon_sym_AT_GT] = ACTIONS(3614), - [anon_sym_LT_AT_AT] = ACTIONS(3614), - [anon_sym_AT_AT_GT] = ACTIONS(3614), - [anon_sym_COLON_GT] = ACTIONS(3616), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_fun] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_match] = ACTIONS(3614), - [anon_sym_match_BANG] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_LT_DASH] = ACTIONS(3614), - [anon_sym_DOT_LBRACK] = ACTIONS(3616), - [anon_sym_DOT] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_GT] = ACTIONS(3614), - [anon_sym_use] = ACTIONS(3614), - [anon_sym_use_BANG] = ACTIONS(3616), - [anon_sym_do_BANG] = ACTIONS(3616), - [anon_sym_begin] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_or] = ACTIONS(3614), - [aux_sym_char_token1] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_AT_DQUOTE] = ACTIONS(3616), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3616), - [sym_bool] = ACTIONS(3614), - [sym_unit] = ACTIONS(3614), - [anon_sym_LPAREN_PIPE] = ACTIONS(3614), - [sym_op_identifier] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS_DOT] = ACTIONS(3614), - [anon_sym_DASH_DOT] = ACTIONS(3614), - [anon_sym_PERCENT] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3616), - [aux_sym_prefix_op_token1] = ACTIONS(3614), - [aux_sym_infix_op_token1] = ACTIONS(3614), - [anon_sym_PIPE_PIPE] = ACTIONS(3614), - [anon_sym_BANG_EQ] = ACTIONS(3614), - [anon_sym_COLON_EQ] = ACTIONS(3616), - [anon_sym_DOLLAR] = ACTIONS(3614), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3614), - [sym_int] = ACTIONS(3614), - [sym_xint] = ACTIONS(3616), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3616), - [sym__newline] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [anon_sym_POUNDendif] = ACTIONS(3963), + [anon_sym_POUNDelse] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2330] = { [sym_xml_doc] = STATE(2330), @@ -298225,92 +302301,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2330), [sym_fsi_directive_decl] = STATE(2330), [sym_preproc_line] = STATE(2330), - [sym_identifier] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_let_BANG] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_null] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_COLON_QMARK] = ACTIONS(3610), - [anon_sym_COLON_COLON] = ACTIONS(3612), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_PIPE] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_LBRACE_PIPE] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_return_BANG] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_yield_BANG] = ACTIONS(3612), - [anon_sym_lazy] = ACTIONS(3610), - [anon_sym_assert] = ACTIONS(3610), - [anon_sym_upcast] = ACTIONS(3610), - [anon_sym_downcast] = ACTIONS(3610), - [anon_sym_LT_AT] = ACTIONS(3610), - [anon_sym_AT_GT] = ACTIONS(3610), - [anon_sym_LT_AT_AT] = ACTIONS(3610), - [anon_sym_AT_AT_GT] = ACTIONS(3610), - [anon_sym_COLON_GT] = ACTIONS(3612), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_fun] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_match] = ACTIONS(3610), - [anon_sym_match_BANG] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_LT_DASH] = ACTIONS(3610), - [anon_sym_DOT_LBRACK] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_use] = ACTIONS(3610), - [anon_sym_use_BANG] = ACTIONS(3612), - [anon_sym_do_BANG] = ACTIONS(3612), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [aux_sym_char_token1] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_AT_DQUOTE] = ACTIONS(3612), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3612), - [sym_bool] = ACTIONS(3610), - [sym_unit] = ACTIONS(3610), - [anon_sym_LPAREN_PIPE] = ACTIONS(3610), - [sym_op_identifier] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_PLUS_DOT] = ACTIONS(3610), - [anon_sym_DASH_DOT] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3612), - [aux_sym_prefix_op_token1] = ACTIONS(3610), - [aux_sym_infix_op_token1] = ACTIONS(3610), - [anon_sym_PIPE_PIPE] = ACTIONS(3610), - [anon_sym_BANG_EQ] = ACTIONS(3610), - [anon_sym_COLON_EQ] = ACTIONS(3612), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3610), - [sym_int] = ACTIONS(3610), - [sym_xint] = ACTIONS(3612), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3612), - [sym__newline] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_DASH_GT] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2331] = { [sym_xml_doc] = STATE(2331), @@ -298319,92 +302394,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2331), [sym_fsi_directive_decl] = STATE(2331), [sym_preproc_line] = STATE(2331), - [sym_identifier] = ACTIONS(3566), - [anon_sym_EQ] = ACTIONS(3568), - [anon_sym_COLON] = ACTIONS(3566), - [anon_sym_return] = ACTIONS(3566), - [anon_sym_do] = ACTIONS(3566), - [anon_sym_let] = ACTIONS(3566), - [anon_sym_let_BANG] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_COMMA] = ACTIONS(3568), - [anon_sym_null] = ACTIONS(3566), - [anon_sym_QMARK] = ACTIONS(3566), - [anon_sym_COLON_QMARK] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3566), - [anon_sym_LBRACK_PIPE] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_LBRACE_PIPE] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3566), - [anon_sym_return_BANG] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3566), - [anon_sym_yield_BANG] = ACTIONS(3568), - [anon_sym_lazy] = ACTIONS(3566), - [anon_sym_assert] = ACTIONS(3566), - [anon_sym_upcast] = ACTIONS(3566), - [anon_sym_downcast] = ACTIONS(3566), - [anon_sym_LT_AT] = ACTIONS(3566), - [anon_sym_AT_GT] = ACTIONS(3566), - [anon_sym_LT_AT_AT] = ACTIONS(3566), - [anon_sym_AT_AT_GT] = ACTIONS(3566), - [anon_sym_COLON_GT] = ACTIONS(3568), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3566), - [anon_sym_while] = ACTIONS(3566), - [anon_sym_if] = ACTIONS(3566), - [anon_sym_fun] = ACTIONS(3566), - [anon_sym_try] = ACTIONS(3566), - [anon_sym_match] = ACTIONS(3566), - [anon_sym_match_BANG] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3566), - [anon_sym_LT_DASH] = ACTIONS(3566), - [anon_sym_DOT_LBRACK] = ACTIONS(3568), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_use] = ACTIONS(3566), - [anon_sym_use_BANG] = ACTIONS(3568), - [anon_sym_do_BANG] = ACTIONS(3568), - [anon_sym_begin] = ACTIONS(3566), - [anon_sym_LPAREN2] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3566), - [aux_sym_char_token1] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [anon_sym_AT_DQUOTE] = ACTIONS(3568), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3568), - [sym_bool] = ACTIONS(3566), - [sym_unit] = ACTIONS(3566), - [anon_sym_LPAREN_PIPE] = ACTIONS(3566), - [sym_op_identifier] = ACTIONS(3566), - [anon_sym_PLUS] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3566), - [anon_sym_PLUS_DOT] = ACTIONS(3566), - [anon_sym_DASH_DOT] = ACTIONS(3566), - [anon_sym_PERCENT] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3568), - [aux_sym_prefix_op_token1] = ACTIONS(3566), - [aux_sym_infix_op_token1] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_COLON_EQ] = ACTIONS(3568), - [anon_sym_DOLLAR] = ACTIONS(3566), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3566), - [sym_int] = ACTIONS(3566), - [sym_xint] = ACTIONS(3568), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3568), - [anon_sym_POUNDendif] = ACTIONS(3568), - [sym__newline] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_DASH_GT] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_DOT_DOT] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2332] = { [sym_xml_doc] = STATE(2332), @@ -298413,92 +302487,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2332), [sym_fsi_directive_decl] = STATE(2332), [sym_preproc_line] = STATE(2332), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_DOT_DOT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_AT_AT_GT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4941), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [2333] = { [sym_xml_doc] = STATE(2333), @@ -298507,92 +302580,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2333), [sym_fsi_directive_decl] = STATE(2333), [sym_preproc_line] = STATE(2333), - [sym_identifier] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_let_BANG] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_COLON_QMARK] = ACTIONS(3606), - [anon_sym_COLON_COLON] = ACTIONS(3608), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LBRACK_PIPE] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_LBRACE_PIPE] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_return_BANG] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_yield_BANG] = ACTIONS(3608), - [anon_sym_lazy] = ACTIONS(3606), - [anon_sym_assert] = ACTIONS(3606), - [anon_sym_upcast] = ACTIONS(3606), - [anon_sym_downcast] = ACTIONS(3606), - [anon_sym_LT_AT] = ACTIONS(3606), - [anon_sym_AT_GT] = ACTIONS(3606), - [anon_sym_LT_AT_AT] = ACTIONS(3606), - [anon_sym_AT_AT_GT] = ACTIONS(3606), - [anon_sym_COLON_GT] = ACTIONS(3608), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_fun] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_match] = ACTIONS(3606), - [anon_sym_match_BANG] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(3606), - [anon_sym_DOT_LBRACK] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_use] = ACTIONS(3606), - [anon_sym_use_BANG] = ACTIONS(3608), - [anon_sym_do_BANG] = ACTIONS(3608), - [anon_sym_begin] = ACTIONS(3606), - [anon_sym_LPAREN2] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [aux_sym_char_token1] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_AT_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3608), - [sym_bool] = ACTIONS(3606), - [sym_unit] = ACTIONS(3606), - [anon_sym_LPAREN_PIPE] = ACTIONS(3606), - [sym_op_identifier] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_PLUS_DOT] = ACTIONS(3606), - [anon_sym_DASH_DOT] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3608), - [aux_sym_prefix_op_token1] = ACTIONS(3606), - [aux_sym_infix_op_token1] = ACTIONS(3606), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_COLON_EQ] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3606), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3606), - [sym_int] = ACTIONS(3606), - [sym_xint] = ACTIONS(3608), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [anon_sym_POUNDendif] = ACTIONS(3827), + [anon_sym_POUNDelse] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2334] = { [sym_xml_doc] = STATE(2334), @@ -298601,92 +302673,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2334), [sym_fsi_directive_decl] = STATE(2334), [sym_preproc_line] = STATE(2334), - [sym_identifier] = ACTIONS(3356), - [anon_sym_EQ] = ACTIONS(3358), - [anon_sym_COLON] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_QMARK] = ACTIONS(3356), - [anon_sym_COLON_QMARK] = ACTIONS(3356), - [anon_sym_COLON_COLON] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_AT_GT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3356), - [anon_sym_AT_AT_GT] = ACTIONS(3356), - [anon_sym_COLON_GT] = ACTIONS(3358), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_LT_DASH] = ACTIONS(3356), - [anon_sym_DOT_LBRACK] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_DOT_DOT] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(3358), - [anon_sym_or] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3356), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3356), - [anon_sym_DASH_DOT] = ACTIONS(3356), - [anon_sym_PERCENT] = ACTIONS(3356), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3356), - [aux_sym_infix_op_token1] = ACTIONS(3356), - [anon_sym_PIPE_PIPE] = ACTIONS(3356), - [anon_sym_BANG_EQ] = ACTIONS(3356), - [anon_sym_COLON_EQ] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3356), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), - [sym__newline] = ACTIONS(3358), + [sym_identifier] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_COLON_QMARK] = ACTIONS(3438), + [anon_sym_COLON_COLON] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_COLON_GT] = ACTIONS(3440), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_DOT_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3438), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3438), + [anon_sym_DASH_DOT] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3438), + [aux_sym_infix_op_token1] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3438), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3438), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [sym__newline] = ACTIONS(3440), }, [2335] = { [sym_xml_doc] = STATE(2335), @@ -298695,92 +302766,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2335), [sym_fsi_directive_decl] = STATE(2335), [sym_preproc_line] = STATE(2335), - [sym_identifier] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_let_BANG] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3600), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_COLON_QMARK] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LBRACK_PIPE] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACE_PIPE] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_return_BANG] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_yield_BANG] = ACTIONS(3600), - [anon_sym_lazy] = ACTIONS(3598), - [anon_sym_assert] = ACTIONS(3598), - [anon_sym_upcast] = ACTIONS(3598), - [anon_sym_downcast] = ACTIONS(3598), - [anon_sym_LT_AT] = ACTIONS(3598), - [anon_sym_AT_GT] = ACTIONS(3598), - [anon_sym_LT_AT_AT] = ACTIONS(3598), - [anon_sym_AT_AT_GT] = ACTIONS(3598), - [anon_sym_COLON_GT] = ACTIONS(3600), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_fun] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_match] = ACTIONS(3598), - [anon_sym_match_BANG] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_LT_DASH] = ACTIONS(3598), - [anon_sym_DOT_LBRACK] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3598), - [anon_sym_use] = ACTIONS(3598), - [anon_sym_use_BANG] = ACTIONS(3600), - [anon_sym_do_BANG] = ACTIONS(3600), - [anon_sym_begin] = ACTIONS(3598), - [anon_sym_LPAREN2] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3598), - [aux_sym_char_token1] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_AT_DQUOTE] = ACTIONS(3600), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), - [sym_bool] = ACTIONS(3598), - [sym_unit] = ACTIONS(3598), - [anon_sym_LPAREN_PIPE] = ACTIONS(3598), - [sym_op_identifier] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_PLUS_DOT] = ACTIONS(3598), - [anon_sym_DASH_DOT] = ACTIONS(3598), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3600), - [aux_sym_prefix_op_token1] = ACTIONS(3598), - [aux_sym_infix_op_token1] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_COLON_EQ] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), - [sym_int] = ACTIONS(3598), - [sym_xint] = ACTIONS(3600), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3600), - [sym__newline] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [anon_sym_POUNDendif] = ACTIONS(3959), + [anon_sym_POUNDelse] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2336] = { [sym_xml_doc] = STATE(2336), @@ -298789,92 +302859,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2336), [sym_fsi_directive_decl] = STATE(2336), [sym_preproc_line] = STATE(2336), - [sym_identifier] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_QMARK] = ACTIONS(3350), - [anon_sym_COLON_QMARK] = ACTIONS(3350), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_AT_GT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3350), - [anon_sym_AT_AT_GT] = ACTIONS(3350), - [anon_sym_COLON_GT] = ACTIONS(3352), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_LT_DASH] = ACTIONS(3350), - [anon_sym_DOT_LBRACK] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_DOT_DOT] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(3352), - [anon_sym_or] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3350), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3350), - [anon_sym_DASH_DOT] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3350), - [aux_sym_infix_op_token1] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3350), - [anon_sym_COLON_EQ] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3350), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), - [sym__newline] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [anon_sym_POUNDendif] = ACTIONS(3955), + [anon_sym_POUNDelse] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2337] = { [sym_xml_doc] = STATE(2337), @@ -298883,92 +302952,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2337), [sym_fsi_directive_decl] = STATE(2337), [sym_preproc_line] = STATE(2337), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [anon_sym_POUNDendif] = ACTIONS(3951), + [anon_sym_POUNDelse] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2338] = { [sym_xml_doc] = STATE(2338), @@ -298977,92 +303045,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2338), [sym_fsi_directive_decl] = STATE(2338), [sym_preproc_line] = STATE(2338), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_GT] = ACTIONS(3439), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [anon_sym_POUNDendif] = ACTIONS(3947), + [anon_sym_POUNDelse] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2339] = { [sym_xml_doc] = STATE(2339), @@ -299071,92 +303138,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2339), [sym_fsi_directive_decl] = STATE(2339), [sym_preproc_line] = STATE(2339), - [sym_identifier] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_let_BANG] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym_COMMA] = ACTIONS(3514), - [anon_sym_null] = ACTIONS(3512), - [anon_sym_QMARK] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_COLON] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LBRACK_PIPE] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3512), - [anon_sym_LBRACE_PIPE] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_return_BANG] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_yield_BANG] = ACTIONS(3514), - [anon_sym_lazy] = ACTIONS(3512), - [anon_sym_assert] = ACTIONS(3512), - [anon_sym_upcast] = ACTIONS(3512), - [anon_sym_downcast] = ACTIONS(3512), - [anon_sym_LT_AT] = ACTIONS(3512), - [anon_sym_AT_GT] = ACTIONS(3512), - [anon_sym_LT_AT_AT] = ACTIONS(3512), - [anon_sym_AT_AT_GT] = ACTIONS(3512), - [anon_sym_COLON_GT] = ACTIONS(3514), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_fun] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_match] = ACTIONS(3512), - [anon_sym_match_BANG] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_LT_DASH] = ACTIONS(3512), - [anon_sym_DOT_LBRACK] = ACTIONS(3514), - [anon_sym_DOT] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_GT] = ACTIONS(3512), - [anon_sym_use] = ACTIONS(3512), - [anon_sym_use_BANG] = ACTIONS(3514), - [anon_sym_do_BANG] = ACTIONS(3514), - [anon_sym_begin] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3512), - [aux_sym_char_token1] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3512), - [anon_sym_DQUOTE] = ACTIONS(3512), - [anon_sym_AT_DQUOTE] = ACTIONS(3514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3514), - [sym_bool] = ACTIONS(3512), - [sym_unit] = ACTIONS(3512), - [anon_sym_LPAREN_PIPE] = ACTIONS(3512), - [sym_op_identifier] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_PLUS_DOT] = ACTIONS(3512), - [anon_sym_DASH_DOT] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3514), - [aux_sym_prefix_op_token1] = ACTIONS(3512), - [aux_sym_infix_op_token1] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3512), - [anon_sym_BANG_EQ] = ACTIONS(3512), - [anon_sym_COLON_EQ] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3512), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3512), - [sym_int] = ACTIONS(3512), - [sym_xint] = ACTIONS(3514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3514), - [sym__newline] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [anon_sym_POUNDendif] = ACTIONS(3943), + [anon_sym_POUNDelse] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2340] = { [sym_xml_doc] = STATE(2340), @@ -299165,92 +303231,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2340), [sym_fsi_directive_decl] = STATE(2340), [sym_preproc_line] = STATE(2340), - [sym_identifier] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(3463), - [anon_sym_COLON] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_COLON_QMARK] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_AT_GT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3461), - [anon_sym_AT_AT_GT] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_LT_DASH] = ACTIONS(3461), - [anon_sym_DOT_LBRACK] = ACTIONS(3463), - [anon_sym_DOT] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_DOT_DOT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [anon_sym_LPAREN2] = ACTIONS(3463), - [anon_sym_or] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3461), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [anon_sym_PERCENT] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3461), - [aux_sym_infix_op_token1] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [anon_sym_BANG_EQ] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_DOLLAR] = ACTIONS(3461), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3461), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), - [sym__newline] = ACTIONS(3463), + [sym_identifier] = ACTIONS(3554), + [anon_sym_EQ] = ACTIONS(3556), + [anon_sym_COLON] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_let_BANG] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_COMMA] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3554), + [anon_sym_QMARK] = ACTIONS(3554), + [anon_sym_COLON_QMARK] = ACTIONS(3554), + [anon_sym_COLON_COLON] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_PIPE] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_LT_AT] = ACTIONS(3554), + [anon_sym_AT_GT] = ACTIONS(3554), + [anon_sym_LT_AT_AT] = ACTIONS(3554), + [anon_sym_DOT] = ACTIONS(3554), + [anon_sym_LBRACE_PIPE] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_return_BANG] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_yield_BANG] = ACTIONS(3556), + [anon_sym_lazy] = ACTIONS(3554), + [anon_sym_assert] = ACTIONS(3554), + [anon_sym_upcast] = ACTIONS(3554), + [anon_sym_downcast] = ACTIONS(3554), + [anon_sym_COLON_GT] = ACTIONS(3556), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_done] = ACTIONS(4943), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_fun] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_match] = ACTIONS(3554), + [anon_sym_match_BANG] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_LT_DASH] = ACTIONS(3554), + [anon_sym_DOT_LBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_use] = ACTIONS(3554), + [anon_sym_use_BANG] = ACTIONS(3556), + [anon_sym_do_BANG] = ACTIONS(3556), + [anon_sym_begin] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(3556), + [anon_sym_or] = ACTIONS(3554), + [aux_sym_char_token1] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_AT_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3556), + [sym_bool] = ACTIONS(3554), + [sym_unit] = ACTIONS(3554), + [anon_sym_LPAREN_PIPE] = ACTIONS(3554), + [sym_op_identifier] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_PLUS_DOT] = ACTIONS(3554), + [anon_sym_DASH_DOT] = ACTIONS(3554), + [anon_sym_PERCENT] = ACTIONS(3554), + [anon_sym_AMP_AMP] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3556), + [aux_sym_prefix_op_token1] = ACTIONS(3554), + [aux_sym_infix_op_token1] = ACTIONS(3554), + [anon_sym_PIPE_PIPE] = ACTIONS(3554), + [anon_sym_BANG_EQ] = ACTIONS(3554), + [anon_sym_COLON_EQ] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3554), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3554), + [sym_int] = ACTIONS(3554), + [sym_xint] = ACTIONS(3556), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3556), + [sym__newline] = ACTIONS(3556), }, [2341] = { [sym_xml_doc] = STATE(2341), @@ -299259,92 +303324,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2341), [sym_fsi_directive_decl] = STATE(2341), [sym_preproc_line] = STATE(2341), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_GT] = ACTIONS(3457), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_DASH_GT] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2342] = { [sym_xml_doc] = STATE(2342), @@ -299353,92 +303417,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2342), [sym_fsi_directive_decl] = STATE(2342), [sym_preproc_line] = STATE(2342), - [sym_identifier] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3543), - [anon_sym_COLON] = ACTIONS(3541), - [anon_sym_return] = ACTIONS(3541), - [anon_sym_do] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_let_BANG] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3541), - [anon_sym_COLON_QMARK] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3541), - [anon_sym_LBRACE_PIPE] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3541), - [anon_sym_return_BANG] = ACTIONS(3543), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_yield_BANG] = ACTIONS(3543), - [anon_sym_lazy] = ACTIONS(3541), - [anon_sym_assert] = ACTIONS(3541), - [anon_sym_upcast] = ACTIONS(3541), - [anon_sym_downcast] = ACTIONS(3541), - [anon_sym_LT_AT] = ACTIONS(3541), - [anon_sym_AT_GT] = ACTIONS(3541), - [anon_sym_LT_AT_AT] = ACTIONS(3541), - [anon_sym_AT_AT_GT] = ACTIONS(3541), - [anon_sym_COLON_GT] = ACTIONS(3543), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3543), - [anon_sym_for] = ACTIONS(3541), - [anon_sym_while] = ACTIONS(3541), - [anon_sym_if] = ACTIONS(3541), - [anon_sym_fun] = ACTIONS(3541), - [anon_sym_try] = ACTIONS(3541), - [anon_sym_match] = ACTIONS(3541), - [anon_sym_match_BANG] = ACTIONS(3543), - [anon_sym_function] = ACTIONS(3541), - [anon_sym_LT_DASH] = ACTIONS(3541), - [anon_sym_DOT_LBRACK] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3543), - [anon_sym_use] = ACTIONS(3541), - [anon_sym_use_BANG] = ACTIONS(3543), - [anon_sym_do_BANG] = ACTIONS(3543), - [anon_sym_begin] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3541), - [aux_sym_char_token1] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [anon_sym_AT_DQUOTE] = ACTIONS(3543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3543), - [sym_bool] = ACTIONS(3541), - [sym_unit] = ACTIONS(3541), - [anon_sym_LPAREN_PIPE] = ACTIONS(3541), - [sym_op_identifier] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3541), - [anon_sym_DASH] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3541), - [anon_sym_DASH_DOT] = ACTIONS(3541), - [anon_sym_PERCENT] = ACTIONS(3541), - [anon_sym_AMP_AMP] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3543), - [aux_sym_prefix_op_token1] = ACTIONS(3541), - [aux_sym_infix_op_token1] = ACTIONS(3541), - [anon_sym_PIPE_PIPE] = ACTIONS(3541), - [anon_sym_BANG_EQ] = ACTIONS(3541), - [anon_sym_COLON_EQ] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3541), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3541), - [sym_int] = ACTIONS(3541), - [sym_xint] = ACTIONS(3543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3543), - [anon_sym_POUNDendif] = ACTIONS(3543), - [sym__newline] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [anon_sym_POUNDendif] = ACTIONS(3935), + [anon_sym_POUNDelse] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2343] = { [sym_xml_doc] = STATE(2343), @@ -299447,92 +303510,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2343), [sym_fsi_directive_decl] = STATE(2343), [sym_preproc_line] = STATE(2343), - [sym_identifier] = ACTIONS(3594), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_let_BANG] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_COMMA] = ACTIONS(3596), - [anon_sym_null] = ACTIONS(3594), - [anon_sym_QMARK] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LBRACK_PIPE] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_LBRACE_PIPE] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_return_BANG] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_yield_BANG] = ACTIONS(3596), - [anon_sym_lazy] = ACTIONS(3594), - [anon_sym_assert] = ACTIONS(3594), - [anon_sym_upcast] = ACTIONS(3594), - [anon_sym_downcast] = ACTIONS(3594), - [anon_sym_LT_AT] = ACTIONS(3594), - [anon_sym_AT_GT] = ACTIONS(3594), - [anon_sym_LT_AT_AT] = ACTIONS(3594), - [anon_sym_AT_AT_GT] = ACTIONS(3594), - [anon_sym_COLON_GT] = ACTIONS(3596), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_fun] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_match] = ACTIONS(3594), - [anon_sym_match_BANG] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_LT_DASH] = ACTIONS(3594), - [anon_sym_DOT_LBRACK] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3594), - [anon_sym_use] = ACTIONS(3594), - [anon_sym_use_BANG] = ACTIONS(3596), - [anon_sym_do_BANG] = ACTIONS(3596), - [anon_sym_begin] = ACTIONS(3594), - [anon_sym_LPAREN2] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3594), - [aux_sym_char_token1] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_AT_DQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3596), - [sym_bool] = ACTIONS(3594), - [sym_unit] = ACTIONS(3594), - [anon_sym_LPAREN_PIPE] = ACTIONS(3594), - [sym_op_identifier] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_PLUS_DOT] = ACTIONS(3594), - [anon_sym_DASH_DOT] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3596), - [aux_sym_prefix_op_token1] = ACTIONS(3594), - [aux_sym_infix_op_token1] = ACTIONS(3594), - [anon_sym_PIPE_PIPE] = ACTIONS(3594), - [anon_sym_BANG_EQ] = ACTIONS(3594), - [anon_sym_COLON_EQ] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3594), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3594), - [sym_int] = ACTIONS(3594), - [sym_xint] = ACTIONS(3596), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3596), - [sym__newline] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [anon_sym_POUNDendif] = ACTIONS(3927), + [anon_sym_POUNDelse] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2344] = { [sym_xml_doc] = STATE(2344), @@ -299541,92 +303603,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2344), [sym_fsi_directive_decl] = STATE(2344), [sym_preproc_line] = STATE(2344), - [sym_identifier] = ACTIONS(3473), - [anon_sym_EQ] = ACTIONS(3475), - [anon_sym_COLON] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_let_BANG] = ACTIONS(3475), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_COLON_QMARK] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_LBRACE_PIPE] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_return_BANG] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3473), - [anon_sym_yield_BANG] = ACTIONS(3475), - [anon_sym_lazy] = ACTIONS(3473), - [anon_sym_assert] = ACTIONS(3473), - [anon_sym_upcast] = ACTIONS(3473), - [anon_sym_downcast] = ACTIONS(3473), - [anon_sym_LT_AT] = ACTIONS(3473), - [anon_sym_AT_GT] = ACTIONS(3473), - [anon_sym_LT_AT_AT] = ACTIONS(3473), - [anon_sym_AT_AT_GT] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3473), - [anon_sym_while] = ACTIONS(3473), - [anon_sym_if] = ACTIONS(3473), - [anon_sym_fun] = ACTIONS(3473), - [anon_sym_try] = ACTIONS(3473), - [anon_sym_match] = ACTIONS(3473), - [anon_sym_match_BANG] = ACTIONS(3475), - [anon_sym_function] = ACTIONS(3473), - [anon_sym_LT_DASH] = ACTIONS(3473), - [anon_sym_DOT_LBRACK] = ACTIONS(3475), - [anon_sym_DOT] = ACTIONS(3473), - [anon_sym_LT] = ACTIONS(3475), - [anon_sym_GT] = ACTIONS(3473), - [anon_sym_use] = ACTIONS(3473), - [anon_sym_use_BANG] = ACTIONS(3475), - [anon_sym_do_BANG] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(3475), - [anon_sym_or] = ACTIONS(3473), - [aux_sym_char_token1] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_AT_DQUOTE] = ACTIONS(3475), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3475), - [sym_bool] = ACTIONS(3473), - [sym_unit] = ACTIONS(3473), - [anon_sym_LPAREN_PIPE] = ACTIONS(3473), - [sym_op_identifier] = ACTIONS(3473), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [anon_sym_PERCENT] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3475), - [aux_sym_prefix_op_token1] = ACTIONS(3473), - [aux_sym_infix_op_token1] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [anon_sym_BANG_EQ] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3473), - [sym_int] = ACTIONS(3473), - [sym_xint] = ACTIONS(3475), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3475), - [sym__newline] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [anon_sym_POUNDendif] = ACTIONS(3916), + [anon_sym_POUNDelse] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2345] = { [sym_xml_doc] = STATE(2345), @@ -299635,92 +303696,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2345), [sym_fsi_directive_decl] = STATE(2345), [sym_preproc_line] = STATE(2345), - [sym_identifier] = ACTIONS(3485), - [anon_sym_EQ] = ACTIONS(3487), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_let_BANG] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_COLON_QMARK] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_LBRACE_PIPE] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_return_BANG] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3485), - [anon_sym_yield_BANG] = ACTIONS(3487), - [anon_sym_lazy] = ACTIONS(3485), - [anon_sym_assert] = ACTIONS(3485), - [anon_sym_upcast] = ACTIONS(3485), - [anon_sym_downcast] = ACTIONS(3485), - [anon_sym_LT_AT] = ACTIONS(3485), - [anon_sym_AT_GT] = ACTIONS(3485), - [anon_sym_LT_AT_AT] = ACTIONS(3485), - [anon_sym_AT_AT_GT] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3485), - [anon_sym_while] = ACTIONS(3485), - [anon_sym_if] = ACTIONS(3485), - [anon_sym_fun] = ACTIONS(3485), - [anon_sym_try] = ACTIONS(3485), - [anon_sym_match] = ACTIONS(3485), - [anon_sym_match_BANG] = ACTIONS(3487), - [anon_sym_function] = ACTIONS(3485), - [anon_sym_LT_DASH] = ACTIONS(3485), - [anon_sym_DOT_LBRACK] = ACTIONS(3487), - [anon_sym_DOT] = ACTIONS(3485), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_use] = ACTIONS(3485), - [anon_sym_use_BANG] = ACTIONS(3487), - [anon_sym_do_BANG] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3487), - [anon_sym_or] = ACTIONS(3485), - [aux_sym_char_token1] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [anon_sym_AT_DQUOTE] = ACTIONS(3487), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3487), - [sym_bool] = ACTIONS(3485), - [sym_unit] = ACTIONS(3485), - [anon_sym_LPAREN_PIPE] = ACTIONS(3485), - [sym_op_identifier] = ACTIONS(3485), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [anon_sym_PERCENT] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3487), - [aux_sym_prefix_op_token1] = ACTIONS(3485), - [aux_sym_infix_op_token1] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(3485), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3485), - [sym_int] = ACTIONS(3485), - [sym_xint] = ACTIONS(3487), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3487), - [sym__newline] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [anon_sym_POUNDendif] = ACTIONS(3908), + [anon_sym_POUNDelse] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2346] = { [sym_xml_doc] = STATE(2346), @@ -299729,92 +303789,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2346), [sym_fsi_directive_decl] = STATE(2346), [sym_preproc_line] = STATE(2346), - [sym_identifier] = ACTIONS(3489), - [anon_sym_EQ] = ACTIONS(3491), - [anon_sym_COLON] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_let_BANG] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_COLON_QMARK] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_LBRACE_PIPE] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_return_BANG] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3489), - [anon_sym_yield_BANG] = ACTIONS(3491), - [anon_sym_lazy] = ACTIONS(3489), - [anon_sym_assert] = ACTIONS(3489), - [anon_sym_upcast] = ACTIONS(3489), - [anon_sym_downcast] = ACTIONS(3489), - [anon_sym_LT_AT] = ACTIONS(3489), - [anon_sym_AT_GT] = ACTIONS(3489), - [anon_sym_LT_AT_AT] = ACTIONS(3489), - [anon_sym_AT_AT_GT] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3489), - [anon_sym_while] = ACTIONS(3489), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_fun] = ACTIONS(3489), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3489), - [anon_sym_match_BANG] = ACTIONS(3491), - [anon_sym_function] = ACTIONS(3489), - [anon_sym_LT_DASH] = ACTIONS(3489), - [anon_sym_DOT_LBRACK] = ACTIONS(3491), - [anon_sym_DOT] = ACTIONS(3489), - [anon_sym_LT] = ACTIONS(3491), - [anon_sym_GT] = ACTIONS(3489), - [anon_sym_use] = ACTIONS(3489), - [anon_sym_use_BANG] = ACTIONS(3491), - [anon_sym_do_BANG] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [anon_sym_LPAREN2] = ACTIONS(3491), - [anon_sym_or] = ACTIONS(3489), - [aux_sym_char_token1] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_AT_DQUOTE] = ACTIONS(3491), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym_bool] = ACTIONS(3489), - [sym_unit] = ACTIONS(3489), - [anon_sym_LPAREN_PIPE] = ACTIONS(3489), - [sym_op_identifier] = ACTIONS(3489), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3491), - [aux_sym_prefix_op_token1] = ACTIONS(3489), - [aux_sym_infix_op_token1] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_DOLLAR] = ACTIONS(3489), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3489), - [sym_int] = ACTIONS(3489), - [sym_xint] = ACTIONS(3491), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3491), - [sym__newline] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_DASH_GT] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2347] = { [sym_xml_doc] = STATE(2347), @@ -299823,92 +303882,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2347), [sym_fsi_directive_decl] = STATE(2347), [sym_preproc_line] = STATE(2347), - [sym_identifier] = ACTIONS(3457), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_COLON] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_let_BANG] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_COLON_QMARK] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_LBRACE_PIPE] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_return_BANG] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_yield_BANG] = ACTIONS(3459), - [anon_sym_lazy] = ACTIONS(3457), - [anon_sym_assert] = ACTIONS(3457), - [anon_sym_upcast] = ACTIONS(3457), - [anon_sym_downcast] = ACTIONS(3457), - [anon_sym_LT_AT] = ACTIONS(3457), - [anon_sym_AT_GT] = ACTIONS(3457), - [anon_sym_LT_AT_AT] = ACTIONS(3457), - [anon_sym_AT_AT_GT] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_fun] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_match] = ACTIONS(3457), - [anon_sym_match_BANG] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_LT_DASH] = ACTIONS(3457), - [anon_sym_DOT_LBRACK] = ACTIONS(3459), - [anon_sym_DOT] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_use] = ACTIONS(3457), - [anon_sym_use_BANG] = ACTIONS(3459), - [anon_sym_do_BANG] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(3459), - [anon_sym_or] = ACTIONS(3457), - [aux_sym_char_token1] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_AT_DQUOTE] = ACTIONS(3459), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3459), - [sym_bool] = ACTIONS(3457), - [sym_unit] = ACTIONS(3457), - [anon_sym_LPAREN_PIPE] = ACTIONS(3457), - [sym_op_identifier] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [anon_sym_PERCENT] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3459), - [aux_sym_prefix_op_token1] = ACTIONS(3457), - [aux_sym_infix_op_token1] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [anon_sym_BANG_EQ] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_DOLLAR] = ACTIONS(3457), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3457), - [sym_int] = ACTIONS(3457), - [sym_xint] = ACTIONS(3459), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3459), - [sym__newline] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [anon_sym_POUNDendif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2348] = { [sym_xml_doc] = STATE(2348), @@ -299917,92 +303974,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2348), [sym_fsi_directive_decl] = STATE(2348), [sym_preproc_line] = STATE(2348), - [sym_identifier] = ACTIONS(3497), - [anon_sym_EQ] = ACTIONS(3499), - [anon_sym_COLON] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_let_BANG] = ACTIONS(3499), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_null] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_COLON_QMARK] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_LBRACE_PIPE] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_return_BANG] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3497), - [anon_sym_yield_BANG] = ACTIONS(3499), - [anon_sym_lazy] = ACTIONS(3497), - [anon_sym_assert] = ACTIONS(3497), - [anon_sym_upcast] = ACTIONS(3497), - [anon_sym_downcast] = ACTIONS(3497), - [anon_sym_LT_AT] = ACTIONS(3497), - [anon_sym_AT_GT] = ACTIONS(3497), - [anon_sym_LT_AT_AT] = ACTIONS(3497), - [anon_sym_AT_AT_GT] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_fun] = ACTIONS(3497), - [anon_sym_try] = ACTIONS(3497), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_match_BANG] = ACTIONS(3499), - [anon_sym_function] = ACTIONS(3497), - [anon_sym_LT_DASH] = ACTIONS(3497), - [anon_sym_DOT_LBRACK] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3497), - [anon_sym_LT] = ACTIONS(3499), - [anon_sym_GT] = ACTIONS(3497), - [anon_sym_use] = ACTIONS(3497), - [anon_sym_use_BANG] = ACTIONS(3499), - [anon_sym_do_BANG] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [anon_sym_LPAREN2] = ACTIONS(3499), - [anon_sym_or] = ACTIONS(3497), - [aux_sym_char_token1] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [anon_sym_AT_DQUOTE] = ACTIONS(3499), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3499), - [sym_bool] = ACTIONS(3497), - [sym_unit] = ACTIONS(3497), - [anon_sym_LPAREN_PIPE] = ACTIONS(3497), - [sym_op_identifier] = ACTIONS(3497), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [anon_sym_PERCENT] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3499), - [aux_sym_prefix_op_token1] = ACTIONS(3497), - [aux_sym_infix_op_token1] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [anon_sym_BANG_EQ] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_DOLLAR] = ACTIONS(3497), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3497), - [sym_int] = ACTIONS(3497), - [sym_xint] = ACTIONS(3499), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3499), - [sym__newline] = ACTIONS(3499), + [aux_sym_type_argument_repeat1] = STATE(2439), + [sym_identifier] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_and] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [aux_sym_access_modifier_token1] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_member] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_val] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [2349] = { [sym_xml_doc] = STATE(2349), @@ -300011,92 +304066,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2349), [sym_fsi_directive_decl] = STATE(2349), [sym_preproc_line] = STATE(2349), - [sym_identifier] = ACTIONS(3516), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_COLON] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_let_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_null] = ACTIONS(3516), - [anon_sym_QMARK] = ACTIONS(3516), - [anon_sym_COLON_QMARK] = ACTIONS(3516), - [anon_sym_COLON_COLON] = ACTIONS(3518), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LBRACK_PIPE] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_LBRACE_PIPE] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_return_BANG] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_yield_BANG] = ACTIONS(3518), - [anon_sym_lazy] = ACTIONS(3516), - [anon_sym_assert] = ACTIONS(3516), - [anon_sym_upcast] = ACTIONS(3516), - [anon_sym_downcast] = ACTIONS(3516), - [anon_sym_LT_AT] = ACTIONS(3516), - [anon_sym_AT_GT] = ACTIONS(3516), - [anon_sym_LT_AT_AT] = ACTIONS(3516), - [anon_sym_AT_AT_GT] = ACTIONS(3516), - [anon_sym_COLON_GT] = ACTIONS(3518), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_fun] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_match] = ACTIONS(3516), - [anon_sym_match_BANG] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3516), - [anon_sym_DOT_LBRACK] = ACTIONS(3518), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3516), - [anon_sym_use] = ACTIONS(3516), - [anon_sym_use_BANG] = ACTIONS(3518), - [anon_sym_do_BANG] = ACTIONS(3518), - [anon_sym_begin] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(3518), - [anon_sym_or] = ACTIONS(3516), - [aux_sym_char_token1] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_AT_DQUOTE] = ACTIONS(3518), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3518), - [sym_bool] = ACTIONS(3516), - [sym_unit] = ACTIONS(3516), - [anon_sym_LPAREN_PIPE] = ACTIONS(3516), - [sym_op_identifier] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_PLUS_DOT] = ACTIONS(3516), - [anon_sym_DASH_DOT] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3518), - [aux_sym_prefix_op_token1] = ACTIONS(3516), - [aux_sym_infix_op_token1] = ACTIONS(3516), - [anon_sym_PIPE_PIPE] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_COLON_EQ] = ACTIONS(3518), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3516), - [sym_int] = ACTIONS(3516), - [sym_xint] = ACTIONS(3518), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3518), - [sym__newline] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_DOT_DOT] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2350] = { [sym_xml_doc] = STATE(2350), @@ -300105,92 +304158,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2350), [sym_fsi_directive_decl] = STATE(2350), [sym_preproc_line] = STATE(2350), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3856), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2351] = { [sym_xml_doc] = STATE(2351), @@ -300199,92 +304250,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2351), [sym_fsi_directive_decl] = STATE(2351), [sym_preproc_line] = STATE(2351), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [anon_sym_POUNDendif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2352] = { [sym_xml_doc] = STATE(2352), @@ -300293,92 +304342,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2352), [sym_fsi_directive_decl] = STATE(2352), [sym_preproc_line] = STATE(2352), - [sym_identifier] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3439), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_let_BANG] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3441), - [anon_sym_null] = ACTIONS(3439), - [anon_sym_QMARK] = ACTIONS(3439), - [anon_sym_COLON_QMARK] = ACTIONS(3439), - [anon_sym_COLON_COLON] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3439), - [anon_sym_LBRACE_PIPE] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_return_BANG] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_yield_BANG] = ACTIONS(3441), - [anon_sym_lazy] = ACTIONS(3439), - [anon_sym_assert] = ACTIONS(3439), - [anon_sym_upcast] = ACTIONS(3439), - [anon_sym_downcast] = ACTIONS(3439), - [anon_sym_LT_AT] = ACTIONS(3439), - [anon_sym_AT_GT] = ACTIONS(3439), - [anon_sym_LT_AT_AT] = ACTIONS(3439), - [anon_sym_AT_AT_GT] = ACTIONS(3439), - [anon_sym_COLON_GT] = ACTIONS(3441), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_fun] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_match] = ACTIONS(3439), - [anon_sym_match_BANG] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3439), - [anon_sym_LT_DASH] = ACTIONS(3439), - [anon_sym_DOT_LBRACK] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_use] = ACTIONS(3439), - [anon_sym_use_BANG] = ACTIONS(3441), - [anon_sym_do_BANG] = ACTIONS(3441), - [anon_sym_DOT_DOT] = ACTIONS(3441), - [anon_sym_begin] = ACTIONS(3439), - [anon_sym_LPAREN2] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3439), - [aux_sym_char_token1] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [anon_sym_AT_DQUOTE] = ACTIONS(3441), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3441), - [sym_bool] = ACTIONS(3439), - [sym_unit] = ACTIONS(3439), - [anon_sym_LPAREN_PIPE] = ACTIONS(3439), - [sym_op_identifier] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3439), - [anon_sym_DASH_DOT] = ACTIONS(3439), - [anon_sym_PERCENT] = ACTIONS(3439), - [anon_sym_AMP_AMP] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3441), - [aux_sym_prefix_op_token1] = ACTIONS(3439), - [aux_sym_infix_op_token1] = ACTIONS(3439), - [anon_sym_PIPE_PIPE] = ACTIONS(3439), - [anon_sym_BANG_EQ] = ACTIONS(3439), - [anon_sym_COLON_EQ] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3439), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3439), - [sym_int] = ACTIONS(3439), - [sym_xint] = ACTIONS(3441), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3441), - [sym__newline] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [anon_sym_POUNDendif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2353] = { [sym_xml_doc] = STATE(2353), @@ -300387,92 +304434,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2353), [sym_fsi_directive_decl] = STATE(2353), [sym_preproc_line] = STATE(2353), - [sym_identifier] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_let_BANG] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_COLON_QMARK] = ACTIONS(3435), - [anon_sym_COLON_COLON] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_LBRACE_PIPE] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_return_BANG] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_yield_BANG] = ACTIONS(3437), - [anon_sym_lazy] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_upcast] = ACTIONS(3435), - [anon_sym_downcast] = ACTIONS(3435), - [anon_sym_LT_AT] = ACTIONS(3435), - [anon_sym_AT_GT] = ACTIONS(3435), - [anon_sym_LT_AT_AT] = ACTIONS(3435), - [anon_sym_AT_AT_GT] = ACTIONS(3435), - [anon_sym_COLON_GT] = ACTIONS(3437), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_fun] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_match_BANG] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_DOT_LBRACK] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_use] = ACTIONS(3435), - [anon_sym_use_BANG] = ACTIONS(3437), - [anon_sym_do_BANG] = ACTIONS(3437), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [anon_sym_begin] = ACTIONS(3435), - [anon_sym_LPAREN2] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3435), - [aux_sym_char_token1] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_AT_DQUOTE] = ACTIONS(3437), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3437), - [sym_bool] = ACTIONS(3435), - [sym_unit] = ACTIONS(3435), - [anon_sym_LPAREN_PIPE] = ACTIONS(3435), - [sym_op_identifier] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3435), - [anon_sym_DASH_DOT] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3437), - [aux_sym_prefix_op_token1] = ACTIONS(3435), - [aux_sym_infix_op_token1] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_DOLLAR] = ACTIONS(3435), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3435), - [sym_int] = ACTIONS(3435), - [sym_xint] = ACTIONS(3437), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3437), - [sym__newline] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_AT_GT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2354] = { [sym_xml_doc] = STATE(2354), @@ -300481,929 +304526,918 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2354), [sym_fsi_directive_decl] = STATE(2354), [sym_preproc_line] = STATE(2354), - [sym_identifier] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_do] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_let_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_COLON_QMARK] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_LBRACK_PIPE] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(3035), - [anon_sym_new] = ACTIONS(3037), - [anon_sym_return_BANG] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_yield_BANG] = ACTIONS(3035), - [anon_sym_lazy] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_upcast] = ACTIONS(3037), - [anon_sym_downcast] = ACTIONS(3037), - [anon_sym_LT_AT] = ACTIONS(3037), - [anon_sym_AT_GT] = ACTIONS(3037), - [anon_sym_LT_AT_AT] = ACTIONS(3037), - [anon_sym_AT_AT_GT] = ACTIONS(3037), - [anon_sym_COLON_GT] = ACTIONS(3035), - [anon_sym_COLON_QMARK_GT] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_fun] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_match_BANG] = ACTIONS(3035), - [anon_sym_function] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_DOT_LBRACK] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_use_BANG] = ACTIONS(3035), - [anon_sym_do_BANG] = ACTIONS(3035), - [anon_sym_begin] = ACTIONS(3037), - [anon_sym_LPAREN2] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [aux_sym_char_token1] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [anon_sym_AT_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3035), - [sym_bool] = ACTIONS(3037), - [sym_unit] = ACTIONS(3037), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_PLUS_DOT] = ACTIONS(3037), - [anon_sym_DASH_DOT] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [aux_sym_prefix_op_token1] = ACTIONS(3037), - [aux_sym_infix_op_token1] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_QMARK_LT_DASH] = ACTIONS(3037), - [sym_int] = ACTIONS(3037), - [sym_xint] = ACTIONS(3035), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3035), - [sym__newline] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_AT_GT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2355] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5087), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2355), [sym_block_comment] = STATE(2355), [sym_line_comment] = STATE(2355), [sym_compiler_directive_decl] = STATE(2355), [sym_fsi_directive_decl] = STATE(2355), [sym_preproc_line] = STATE(2355), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_AT_AT_GT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2356] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5642), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2356), [sym_block_comment] = STATE(2356), [sym_line_comment] = STATE(2356), [sym_compiler_directive_decl] = STATE(2356), [sym_fsi_directive_decl] = STATE(2356), [sym_preproc_line] = STATE(2356), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_and] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [aux_sym_access_modifier_token1] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_member] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_abstract] = ACTIONS(2814), - [anon_sym_override] = ACTIONS(2814), - [anon_sym_val] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [anon_sym_LT2] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2357] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2357), [sym_block_comment] = STATE(2357), [sym_line_comment] = STATE(2357), [sym_compiler_directive_decl] = STATE(2357), [sym_fsi_directive_decl] = STATE(2357), [sym_preproc_line] = STATE(2357), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_and] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [aux_sym_access_modifier_token1] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_member] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_val] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2358] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5267), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2379), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2358), [sym_block_comment] = STATE(2358), [sym_line_comment] = STATE(2358), [sym_compiler_directive_decl] = STATE(2358), [sym_fsi_directive_decl] = STATE(2358), [sym_preproc_line] = STATE(2358), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4284), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [anon_sym_LT2] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [anon_sym_POUNDendif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2359] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2359), [sym_block_comment] = STATE(2359), [sym_line_comment] = STATE(2359), [sym_compiler_directive_decl] = STATE(2359), [sym_fsi_directive_decl] = STATE(2359), [sym_preproc_line] = STATE(2359), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_and] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [aux_sym_access_modifier_token1] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_member] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_abstract] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_val] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [anon_sym_POUNDendif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2360] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3509), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym__pattern_param] = STATE(2416), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2360), [sym_block_comment] = STATE(2360), [sym_line_comment] = STATE(2360), [sym_compiler_directive_decl] = STATE(2360), [sym_fsi_directive_decl] = STATE(2360), [sym_preproc_line] = STATE(2360), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4240), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4236), - [anon_sym__] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_COLON_QMARK] = ACTIONS(4240), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [anon_sym_AT_DQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [sym_bool] = ACTIONS(4236), - [sym_unit] = ACTIONS(4240), - [anon_sym_LPAREN_PIPE] = ACTIONS(4236), - [sym_op_identifier] = ACTIONS(4240), - [sym_int] = ACTIONS(4236), - [sym_xint] = ACTIONS(4240), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_AT_GT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2361] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3687), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym__pattern_param] = STATE(2408), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2361), [sym_block_comment] = STATE(2361), [sym_line_comment] = STATE(2361), [sym_compiler_directive_decl] = STATE(2361), [sym_fsi_directive_decl] = STATE(2361), [sym_preproc_line] = STATE(2361), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4236), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4236), - [anon_sym__] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_DASH_GT] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [anon_sym_AT_DQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [sym_bool] = ACTIONS(4236), - [sym_unit] = ACTIONS(4240), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4236), - [sym_xint] = ACTIONS(4240), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_and] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [aux_sym_access_modifier_token1] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_member] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_val] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), }, [2362] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5107), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2362), [sym_block_comment] = STATE(2362), [sym_line_comment] = STATE(2362), [sym_compiler_directive_decl] = STATE(2362), [sym_fsi_directive_decl] = STATE(2362), [sym_preproc_line] = STATE(2362), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [anon_sym_DASH_GT] = ACTIONS(4360), - [anon_sym_when] = ACTIONS(4362), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_DOT_DOT] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2363] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5353), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2397), - [sym_char] = STATE(3432), - [sym_format_string] = STATE(3434), - [sym__string_literal] = STATE(3434), - [sym_string] = STATE(3432), - [sym_verbatim_string] = STATE(3432), - [sym_bytearray] = STATE(3432), - [sym_verbatim_bytearray] = STATE(3432), - [sym_format_triple_quoted_string] = STATE(3435), - [sym_triple_quoted_string] = STATE(3432), - [sym_const] = STATE(3510), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3395), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(3432), - [sym_byte] = STATE(3432), - [sym_int16] = STATE(3432), - [sym_uint16] = STATE(3432), - [sym_int32] = STATE(3432), - [sym_uint32] = STATE(3432), - [sym_nativeint] = STATE(3432), - [sym_unativeint] = STATE(3432), - [sym_int64] = STATE(3432), - [sym_uint64] = STATE(3432), - [sym_ieee32] = STATE(3432), - [sym_ieee64] = STATE(3432), - [sym_bignum] = STATE(3432), - [sym_decimal] = STATE(3432), - [sym_float] = STATE(3295), [sym_xml_doc] = STATE(2363), [sym_block_comment] = STATE(2363), [sym_line_comment] = STATE(2363), [sym_compiler_directive_decl] = STATE(2363), [sym_fsi_directive_decl] = STATE(2363), [sym_preproc_line] = STATE(2363), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4324), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_DASH_GT] = ACTIONS(4240), - [anon_sym_when] = ACTIONS(4236), - [aux_sym_char_token1] = ACTIONS(4332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), - [anon_sym_DQUOTE] = ACTIONS(4336), - [anon_sym_AT_DQUOTE] = ACTIONS(4338), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4342), - [sym_bool] = ACTIONS(4344), - [sym_unit] = ACTIONS(4346), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4352), - [sym_xint] = ACTIONS(4354), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_AT_GT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2364] = { [sym_xml_doc] = STATE(2364), @@ -301412,91 +305446,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2364), [sym_fsi_directive_decl] = STATE(2364), [sym_preproc_line] = STATE(2364), - [aux_sym_type_argument_repeat1] = STATE(2366), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_and] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [aux_sym_access_modifier_token1] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(4408), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_member] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_val] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_AT_GT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2365] = { [sym_xml_doc] = STATE(2365), @@ -301505,91 +305538,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2365), [sym_fsi_directive_decl] = STATE(2365), [sym_preproc_line] = STATE(2365), - [aux_sym_type_argument_repeat1] = STATE(2365), - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_and] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [aux_sym_access_modifier_token1] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(4410), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_member] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_val] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_DOT_DOT] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2366] = { [sym_xml_doc] = STATE(2366), @@ -301598,925 +305630,918 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2366), [sym_fsi_directive_decl] = STATE(2366), [sym_preproc_line] = STATE(2366), - [aux_sym_type_argument_repeat1] = STATE(2365), - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(2941), - [anon_sym_open] = ACTIONS(2941), - [anon_sym_LBRACK_LT] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_and] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [aux_sym_access_modifier_token1] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(4408), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_member] = ACTIONS(2941), - [anon_sym_interface] = ACTIONS(2941), - [anon_sym_abstract] = ACTIONS(2941), - [anon_sym_override] = ACTIONS(2941), - [anon_sym_val] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2943), - [anon_sym_POUNDload] = ACTIONS(2943), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [anon_sym_POUNDendif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2367] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5234), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2388), - [sym_char] = STATE(3585), - [sym_format_string] = STATE(3590), - [sym__string_literal] = STATE(3590), - [sym_string] = STATE(3585), - [sym_verbatim_string] = STATE(3585), - [sym_bytearray] = STATE(3585), - [sym_verbatim_bytearray] = STATE(3585), - [sym_format_triple_quoted_string] = STATE(3593), - [sym_triple_quoted_string] = STATE(3585), - [sym_const] = STATE(3568), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3428), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(3585), - [sym_byte] = STATE(3585), - [sym_int16] = STATE(3585), - [sym_uint16] = STATE(3585), - [sym_int32] = STATE(3585), - [sym_uint32] = STATE(3585), - [sym_nativeint] = STATE(3585), - [sym_unativeint] = STATE(3585), - [sym_int64] = STATE(3585), - [sym_uint64] = STATE(3585), - [sym_ieee32] = STATE(3585), - [sym_ieee64] = STATE(3585), - [sym_bignum] = STATE(3585), - [sym_decimal] = STATE(3585), - [sym_float] = STATE(3400), [sym_xml_doc] = STATE(2367), [sym_block_comment] = STATE(2367), [sym_line_comment] = STATE(2367), [sym_compiler_directive_decl] = STATE(2367), [sym_fsi_directive_decl] = STATE(2367), [sym_preproc_line] = STATE(2367), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4236), - [aux_sym_char_token1] = ACTIONS(4423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [anon_sym_AT_DQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4431), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4433), - [sym_bool] = ACTIONS(4435), - [sym_unit] = ACTIONS(4437), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4443), - [sym_xint] = ACTIONS(4445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [anon_sym_POUNDendif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2368] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3699), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym__pattern_param] = STATE(2387), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2368), [sym_block_comment] = STATE(2368), [sym_line_comment] = STATE(2368), [sym_compiler_directive_decl] = STATE(2368), [sym_fsi_directive_decl] = STATE(2368), [sym_preproc_line] = STATE(2368), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4236), - [anon_sym__] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [anon_sym_AT_DQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [sym_bool] = ACTIONS(4236), - [sym_unit] = ACTIONS(4240), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4236), - [sym_xint] = ACTIONS(4240), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [anon_sym_POUNDendif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2369] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5072), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2369), [sym_block_comment] = STATE(2369), [sym_line_comment] = STATE(2369), [sym_compiler_directive_decl] = STATE(2369), [sym_fsi_directive_decl] = STATE(2369), [sym_preproc_line] = STATE(2369), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_LT2] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [anon_sym_POUNDendif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2370] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5349), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2377), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2370), [sym_block_comment] = STATE(2370), [sym_line_comment] = STATE(2370), [sym_compiler_directive_decl] = STATE(2370), [sym_fsi_directive_decl] = STATE(2370), [sym_preproc_line] = STATE(2370), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4284), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_AT_GT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2371] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2371), [sym_block_comment] = STATE(2371), [sym_line_comment] = STATE(2371), [sym_compiler_directive_decl] = STATE(2371), [sym_fsi_directive_decl] = STATE(2371), [sym_preproc_line] = STATE(2371), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_and] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [aux_sym_access_modifier_token1] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_member] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_override] = ACTIONS(2850), - [anon_sym_val] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [anon_sym_POUNDendif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2372] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5029), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), [sym_xml_doc] = STATE(2372), [sym_block_comment] = STATE(2372), [sym_line_comment] = STATE(2372), [sym_compiler_directive_decl] = STATE(2372), [sym_fsi_directive_decl] = STATE(2372), [sym_preproc_line] = STATE(2372), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [sym__newline] = ACTIONS(4360), - [sym__dedent] = ACTIONS(4360), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_AT_AT_GT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2373] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(3063), - [sym__function_or_value_defn_body] = STATE(2937), - [sym_function_declaration_left] = STATE(6614), - [sym_value_declaration_left] = STATE(6614), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2373), [sym_block_comment] = STATE(2373), [sym_line_comment] = STATE(2373), [sym_compiler_directive_decl] = STATE(2373), [sym_fsi_directive_decl] = STATE(2373), [sym_preproc_line] = STATE(2373), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_AT_GT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2374] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3156), - [sym_function_declaration_left] = STATE(6532), - [sym_value_declaration_left] = STATE(6532), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2374), [sym_block_comment] = STATE(2374), [sym_line_comment] = STATE(2374), [sym_compiler_directive_decl] = STATE(2374), [sym_fsi_directive_decl] = STATE(2374), [sym_preproc_line] = STATE(2374), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4481), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_AT_AT_GT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2375] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6991), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2375), [sym_block_comment] = STATE(2375), [sym_line_comment] = STATE(2375), [sym_compiler_directive_decl] = STATE(2375), [sym_fsi_directive_decl] = STATE(2375), [sym_preproc_line] = STATE(2375), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [anon_sym_POUNDendif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2376] = { [sym_xml_doc] = STATE(2376), @@ -302525,734 +306550,734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2376), [sym_fsi_directive_decl] = STATE(2376), [sym_preproc_line] = STATE(2376), - [aux_sym_long_identifier_repeat1] = STATE(2418), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_and] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [aux_sym_access_modifier_token1] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_member] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_abstract] = ACTIONS(2935), - [anon_sym_override] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [anon_sym_POUNDendif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2377] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5321), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2377), [sym_block_comment] = STATE(2377), [sym_line_comment] = STATE(2377), [sym_compiler_directive_decl] = STATE(2377), [sym_fsi_directive_decl] = STATE(2377), [sym_preproc_line] = STATE(2377), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4360), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [anon_sym_POUNDendif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2378] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6348), - [sym__function_or_value_defn_body] = STATE(5800), - [sym_function_declaration_left] = STATE(6508), - [sym_value_declaration_left] = STATE(6508), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2378), [sym_block_comment] = STATE(2378), [sym_line_comment] = STATE(2378), [sym_compiler_directive_decl] = STATE(2378), [sym_fsi_directive_decl] = STATE(2378), [sym_preproc_line] = STATE(2378), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_AT_AT_GT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2379] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5227), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2379), [sym_block_comment] = STATE(2379), [sym_line_comment] = STATE(2379), [sym_compiler_directive_decl] = STATE(2379), [sym_fsi_directive_decl] = STATE(2379), [sym_preproc_line] = STATE(2379), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [anon_sym_LT2] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [anon_sym_POUNDendif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2380] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(4556), - [sym_function_declaration_left] = STATE(6390), - [sym_value_declaration_left] = STATE(6390), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2380), [sym_block_comment] = STATE(2380), [sym_line_comment] = STATE(2380), [sym_compiler_directive_decl] = STATE(2380), [sym_fsi_directive_decl] = STATE(2380), [sym_preproc_line] = STATE(2380), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4485), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [anon_sym_POUNDendif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2381] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(6365), - [sym_function_declaration_left] = STATE(6508), - [sym_value_declaration_left] = STATE(6508), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2381), [sym_block_comment] = STATE(2381), [sym_line_comment] = STATE(2381), [sym_compiler_directive_decl] = STATE(2381), [sym_fsi_directive_decl] = STATE(2381), [sym_preproc_line] = STATE(2381), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4487), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_GT] = ACTIONS(3642), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2382] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6336), - [sym__function_or_value_defn_body] = STATE(5781), - [sym_function_declaration_left] = STATE(6551), - [sym_value_declaration_left] = STATE(6551), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2382), [sym_block_comment] = STATE(2382), [sym_line_comment] = STATE(2382), [sym_compiler_directive_decl] = STATE(2382), [sym_fsi_directive_decl] = STATE(2382), [sym_preproc_line] = STATE(2382), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [anon_sym_POUNDendif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2383] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(6323), - [sym_function_declaration_left] = STATE(6551), - [sym_value_declaration_left] = STATE(6551), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2383), [sym_block_comment] = STATE(2383), [sym_line_comment] = STATE(2383), [sym_compiler_directive_decl] = STATE(2383), [sym_fsi_directive_decl] = STATE(2383), [sym_preproc_line] = STATE(2383), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4489), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_DOT_DOT] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2384] = { [sym_xml_doc] = STATE(2384), @@ -303261,1010 +307286,1010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2384), [sym_fsi_directive_decl] = STATE(2384), [sym_preproc_line] = STATE(2384), - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_and] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [aux_sym_access_modifier_token1] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_member] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_val] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [anon_sym_POUNDendif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2385] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3561), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym__pattern_param] = STATE(2426), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3343), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3283), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2385), [sym_block_comment] = STATE(2385), [sym_line_comment] = STATE(2385), [sym_compiler_directive_decl] = STATE(2385), [sym_fsi_directive_decl] = STATE(2385), [sym_preproc_line] = STATE(2385), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_LBRACK_LT] = ACTIONS(4240), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4236), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4236), - [anon_sym__] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_COLON_QMARK] = ACTIONS(4240), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4236), - [anon_sym_LBRACK_PIPE] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [aux_sym_char_token1] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4236), - [anon_sym_AT_DQUOTE] = ACTIONS(4240), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4240), - [sym_bool] = ACTIONS(4236), - [sym_unit] = ACTIONS(4240), - [anon_sym_LPAREN_PIPE] = ACTIONS(4236), - [sym_op_identifier] = ACTIONS(4240), - [sym_int] = ACTIONS(4236), - [sym_xint] = ACTIONS(4240), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [anon_sym_POUNDendif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2386] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6786), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2386), [sym_block_comment] = STATE(2386), [sym_line_comment] = STATE(2386), [sym_compiler_directive_decl] = STATE(2386), [sym_fsi_directive_decl] = STATE(2386), [sym_preproc_line] = STATE(2386), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_DOT_DOT] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2387] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3753), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2387), [sym_block_comment] = STATE(2387), [sym_line_comment] = STATE(2387), [sym_compiler_directive_decl] = STATE(2387), [sym_fsi_directive_decl] = STATE(2387), [sym_preproc_line] = STATE(2387), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4362), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym__] = ACTIONS(4362), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_AT_GT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2388] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5265), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2388), [sym_block_comment] = STATE(2388), [sym_line_comment] = STATE(2388), [sym_compiler_directive_decl] = STATE(2388), [sym_fsi_directive_decl] = STATE(2388), [sym_preproc_line] = STATE(2388), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4362), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_DOT_DOT] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2389] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6830), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2389), [sym_block_comment] = STATE(2389), [sym_line_comment] = STATE(2389), [sym_compiler_directive_decl] = STATE(2389), [sym_fsi_directive_decl] = STATE(2389), [sym_preproc_line] = STATE(2389), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2390] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(6883), - [sym_function_declaration_left] = STATE(6430), - [sym_value_declaration_left] = STATE(6430), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2390), [sym_block_comment] = STATE(2390), [sym_line_comment] = STATE(2390), [sym_compiler_directive_decl] = STATE(2390), [sym_fsi_directive_decl] = STATE(2390), [sym_preproc_line] = STATE(2390), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4491), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_GT] = ACTIONS(3608), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2391] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(3158), - [sym__function_or_value_defn_body] = STATE(3137), - [sym_function_declaration_left] = STATE(6532), - [sym_value_declaration_left] = STATE(6532), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2391), [sym_block_comment] = STATE(2391), [sym_line_comment] = STATE(2391), [sym_compiler_directive_decl] = STATE(2391), [sym_fsi_directive_decl] = STATE(2391), [sym_preproc_line] = STATE(2391), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_AT_GT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2392] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6858), - [sym__function_or_value_defn_body] = STATE(6068), - [sym_function_declaration_left] = STATE(6430), - [sym_value_declaration_left] = STATE(6430), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2392), [sym_block_comment] = STATE(2392), [sym_line_comment] = STATE(2392), [sym_compiler_directive_decl] = STATE(2392), [sym_fsi_directive_decl] = STATE(2392), [sym_preproc_line] = STATE(2392), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_AT_AT_GT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2393] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3538), + [sym_function_declaration_left] = STATE(6986), + [sym_value_declaration_left] = STATE(6986), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2393), [sym_block_comment] = STATE(2393), [sym_line_comment] = STATE(2393), [sym_compiler_directive_decl] = STATE(2393), [sym_fsi_directive_decl] = STATE(2393), [sym_preproc_line] = STATE(2393), - [aux_sym_long_identifier_repeat1] = STATE(2418), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_and] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [aux_sym_access_modifier_token1] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_member] = ACTIONS(2935), - [anon_sym_abstract] = ACTIONS(2935), - [anon_sym_override] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4947), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2394] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2394), [sym_block_comment] = STATE(2394), [sym_line_comment] = STATE(2394), [sym_compiler_directive_decl] = STATE(2394), [sym_fsi_directive_decl] = STATE(2394), [sym_preproc_line] = STATE(2394), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_open] = ACTIONS(2814), - [anon_sym_LBRACK_LT] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_and] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [aux_sym_access_modifier_token1] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_member] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_abstract] = ACTIONS(2814), - [anon_sym_override] = ACTIONS(2814), - [anon_sym_val] = ACTIONS(2814), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2812), - [anon_sym_POUNDload] = ACTIONS(2812), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [anon_sym_POUNDendif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2395] = { [sym_xml_doc] = STATE(2395), @@ -304273,544 +308298,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2395), [sym_fsi_directive_decl] = STATE(2395), [sym_preproc_line] = STATE(2395), - [aux_sym_type_argument_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_and] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [aux_sym_access_modifier_token1] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(4505), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_member] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_val] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [anon_sym_POUNDendif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2396] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2396), [sym_block_comment] = STATE(2396), [sym_line_comment] = STATE(2396), [sym_compiler_directive_decl] = STATE(2396), [sym_fsi_directive_decl] = STATE(2396), [sym_preproc_line] = STATE(2396), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_and] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [aux_sym_access_modifier_token1] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_member] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_val] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [anon_sym_POUNDendif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2397] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5355), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2397), [sym_block_comment] = STATE(2397), [sym_line_comment] = STATE(2397), [sym_compiler_directive_decl] = STATE(2397), [sym_fsi_directive_decl] = STATE(2397), [sym_preproc_line] = STATE(2397), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [anon_sym_DASH_GT] = ACTIONS(4360), - [anon_sym_when] = ACTIONS(4362), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [anon_sym_POUNDendif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2398] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2398), [sym_block_comment] = STATE(2398), [sym_line_comment] = STATE(2398), [sym_compiler_directive_decl] = STATE(2398), [sym_fsi_directive_decl] = STATE(2398), [sym_preproc_line] = STATE(2398), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4508), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4510), - [anon_sym_module] = ACTIONS(4510), - [anon_sym_open] = ACTIONS(4510), - [anon_sym_LBRACK_LT] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4510), - [anon_sym_type] = ACTIONS(4510), - [anon_sym_do] = ACTIONS(4510), - [anon_sym_and] = ACTIONS(4510), - [anon_sym_let] = ACTIONS(4510), - [anon_sym_let_BANG] = ACTIONS(4508), - [aux_sym_access_modifier_token1] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_LBRACK_PIPE] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_LBRACE_PIPE] = ACTIONS(4508), - [anon_sym_with] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4510), - [anon_sym_return_BANG] = ACTIONS(4508), - [anon_sym_yield] = ACTIONS(4510), - [anon_sym_yield_BANG] = ACTIONS(4508), - [anon_sym_lazy] = ACTIONS(4510), - [anon_sym_assert] = ACTIONS(4510), - [anon_sym_upcast] = ACTIONS(4510), - [anon_sym_downcast] = ACTIONS(4510), - [anon_sym_LT_AT] = ACTIONS(4510), - [anon_sym_LT_AT_AT] = ACTIONS(4508), - [anon_sym_for] = ACTIONS(4510), - [anon_sym_while] = ACTIONS(4510), - [anon_sym_if] = ACTIONS(4510), - [anon_sym_fun] = ACTIONS(4510), - [anon_sym_DASH_GT] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4510), - [anon_sym_match] = ACTIONS(4510), - [anon_sym_match_BANG] = ACTIONS(4508), - [anon_sym_function] = ACTIONS(4510), - [anon_sym_use] = ACTIONS(4510), - [anon_sym_use_BANG] = ACTIONS(4508), - [anon_sym_do_BANG] = ACTIONS(4508), - [anon_sym_begin] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4510), - [anon_sym_static] = ACTIONS(4510), - [anon_sym_member] = ACTIONS(4510), - [anon_sym_abstract] = ACTIONS(4510), - [anon_sym_override] = ACTIONS(4510), - [anon_sym_val] = ACTIONS(4510), - [aux_sym_char_token1] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_DQUOTE] = ACTIONS(4510), - [anon_sym_AT_DQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4508), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4508), - [sym_bool] = ACTIONS(4510), - [sym_unit] = ACTIONS(4508), - [anon_sym_LPAREN_PIPE] = ACTIONS(4510), - [sym_op_identifier] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4510), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_PLUS_DOT] = ACTIONS(4508), - [anon_sym_DASH_DOT] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_TILDE] = ACTIONS(4508), - [aux_sym_prefix_op_token1] = ACTIONS(4508), - [sym_int] = ACTIONS(4510), - [sym_xint] = ACTIONS(4508), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4508), - [anon_sym_POUNDload] = ACTIONS(4508), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4508), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [anon_sym_POUNDendif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2399] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2399), [sym_block_comment] = STATE(2399), [sym_line_comment] = STATE(2399), [sym_compiler_directive_decl] = STATE(2399), [sym_fsi_directive_decl] = STATE(2399), [sym_preproc_line] = STATE(2399), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4514), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4516), - [anon_sym_module] = ACTIONS(4516), - [anon_sym_open] = ACTIONS(4516), - [anon_sym_LBRACK_LT] = ACTIONS(4514), - [anon_sym_return] = ACTIONS(4516), - [anon_sym_type] = ACTIONS(4516), - [anon_sym_do] = ACTIONS(4516), - [anon_sym_and] = ACTIONS(4516), - [anon_sym_let] = ACTIONS(4516), - [anon_sym_let_BANG] = ACTIONS(4514), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4516), - [anon_sym_null] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4516), - [anon_sym_LBRACK] = ACTIONS(4516), - [anon_sym_LBRACK_PIPE] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4516), - [anon_sym_LBRACE_PIPE] = ACTIONS(4514), - [anon_sym_with] = ACTIONS(4516), - [anon_sym_new] = ACTIONS(4516), - [anon_sym_return_BANG] = ACTIONS(4514), - [anon_sym_yield] = ACTIONS(4516), - [anon_sym_yield_BANG] = ACTIONS(4514), - [anon_sym_lazy] = ACTIONS(4516), - [anon_sym_assert] = ACTIONS(4516), - [anon_sym_upcast] = ACTIONS(4516), - [anon_sym_downcast] = ACTIONS(4516), - [anon_sym_LT_AT] = ACTIONS(4516), - [anon_sym_LT_AT_AT] = ACTIONS(4514), - [anon_sym_for] = ACTIONS(4516), - [anon_sym_while] = ACTIONS(4516), - [anon_sym_if] = ACTIONS(4516), - [anon_sym_fun] = ACTIONS(4516), - [anon_sym_DASH_GT] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4516), - [anon_sym_match] = ACTIONS(4516), - [anon_sym_match_BANG] = ACTIONS(4514), - [anon_sym_function] = ACTIONS(4516), - [anon_sym_use] = ACTIONS(4516), - [anon_sym_use_BANG] = ACTIONS(4514), - [anon_sym_do_BANG] = ACTIONS(4514), - [anon_sym_begin] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_static] = ACTIONS(4516), - [anon_sym_member] = ACTIONS(4516), - [anon_sym_abstract] = ACTIONS(4516), - [anon_sym_override] = ACTIONS(4516), - [anon_sym_val] = ACTIONS(4516), - [aux_sym_char_token1] = ACTIONS(4514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4516), - [anon_sym_DQUOTE] = ACTIONS(4516), - [anon_sym_AT_DQUOTE] = ACTIONS(4514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), - [sym_bool] = ACTIONS(4516), - [sym_unit] = ACTIONS(4514), - [anon_sym_LPAREN_PIPE] = ACTIONS(4516), - [sym_op_identifier] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4516), - [anon_sym_DASH] = ACTIONS(4516), - [anon_sym_PLUS_DOT] = ACTIONS(4514), - [anon_sym_DASH_DOT] = ACTIONS(4514), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_TILDE] = ACTIONS(4514), - [aux_sym_prefix_op_token1] = ACTIONS(4514), - [sym_int] = ACTIONS(4516), - [sym_xint] = ACTIONS(4514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4514), - [anon_sym_POUNDload] = ACTIONS(4514), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4514), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_DOT_DOT] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2400] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(7497), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4081), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(2400), [sym_block_comment] = STATE(2400), [sym_line_comment] = STATE(2400), [sym_compiler_directive_decl] = STATE(2400), [sym_fsi_directive_decl] = STATE(2400), [sym_preproc_line] = STATE(2400), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4764), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4764), + [anon_sym__] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_LBRACK_PIPE] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_AT_DQUOTE] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [sym_bool] = ACTIONS(4764), + [sym_unit] = ACTIONS(4762), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4764), + [sym_xint] = ACTIONS(4762), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -304819,832 +308844,832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2401] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(3154), - [sym__function_or_value_defn_body] = STATE(3105), - [sym_function_declaration_left] = STATE(6455), - [sym_value_declaration_left] = STATE(6455), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2401), [sym_block_comment] = STATE(2401), [sym_line_comment] = STATE(2401), [sym_compiler_directive_decl] = STATE(2401), [sym_fsi_directive_decl] = STATE(2401), [sym_preproc_line] = STATE(2401), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_GT] = ACTIONS(3794), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2402] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(2997), - [sym_function_declaration_left] = STATE(6165), - [sym_value_declaration_left] = STATE(6165), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2402), [sym_block_comment] = STATE(2402), [sym_line_comment] = STATE(2402), [sym_compiler_directive_decl] = STATE(2402), [sym_fsi_directive_decl] = STATE(2402), [sym_preproc_line] = STATE(2402), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4518), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_DOT_DOT] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2403] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(3130), - [sym__function_or_value_defn_body] = STATE(3085), - [sym_function_declaration_left] = STATE(6658), - [sym_value_declaration_left] = STATE(6658), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2403), [sym_block_comment] = STATE(2403), [sym_line_comment] = STATE(2403), [sym_compiler_directive_decl] = STATE(2403), [sym_fsi_directive_decl] = STATE(2403), [sym_preproc_line] = STATE(2403), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_AT_GT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2404] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5445), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym__pattern_param] = STATE(2431), - [sym_char] = STATE(3585), - [sym_format_string] = STATE(3590), - [sym__string_literal] = STATE(3590), - [sym_string] = STATE(3585), - [sym_verbatim_string] = STATE(3585), - [sym_bytearray] = STATE(3585), - [sym_verbatim_bytearray] = STATE(3585), - [sym_format_triple_quoted_string] = STATE(3593), - [sym_triple_quoted_string] = STATE(3585), - [sym_const] = STATE(3568), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3428), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(3585), - [sym_byte] = STATE(3585), - [sym_int16] = STATE(3585), - [sym_uint16] = STATE(3585), - [sym_int32] = STATE(3585), - [sym_uint32] = STATE(3585), - [sym_nativeint] = STATE(3585), - [sym_unativeint] = STATE(3585), - [sym_int64] = STATE(3585), - [sym_uint64] = STATE(3585), - [sym_ieee32] = STATE(3585), - [sym_ieee64] = STATE(3585), - [sym_bignum] = STATE(3585), - [sym_decimal] = STATE(3585), - [sym_float] = STATE(3400), [sym_xml_doc] = STATE(2404), [sym_block_comment] = STATE(2404), [sym_line_comment] = STATE(2404), [sym_compiler_directive_decl] = STATE(2404), [sym_fsi_directive_decl] = STATE(2404), [sym_preproc_line] = STATE(2404), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4236), - [anon_sym_as] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4415), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4236), - [aux_sym_char_token1] = ACTIONS(4423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4425), - [anon_sym_DQUOTE] = ACTIONS(4427), - [anon_sym_AT_DQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4431), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4433), - [sym_bool] = ACTIONS(4435), - [sym_unit] = ACTIONS(4437), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4443), - [sym_xint] = ACTIONS(4445), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [anon_sym_POUNDendif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2405] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3062), - [sym_function_declaration_left] = STATE(6614), - [sym_value_declaration_left] = STATE(6614), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2405), [sym_block_comment] = STATE(2405), [sym_line_comment] = STATE(2405), [sym_compiler_directive_decl] = STATE(2405), [sym_fsi_directive_decl] = STATE(2405), [sym_preproc_line] = STATE(2405), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4524), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_DOT_DOT] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2406] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(7139), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2406), [sym_block_comment] = STATE(2406), [sym_line_comment] = STATE(2406), [sym_compiler_directive_decl] = STATE(2406), [sym_fsi_directive_decl] = STATE(2406), [sym_preproc_line] = STATE(2406), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [anon_sym_POUNDendif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2407] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2407), [sym_block_comment] = STATE(2407), [sym_line_comment] = STATE(2407), [sym_compiler_directive_decl] = STATE(2407), [sym_fsi_directive_decl] = STATE(2407), [sym_preproc_line] = STATE(2407), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_LBRACK_LT] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_and] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [aux_sym_access_modifier_token1] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_member] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_abstract] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_val] = ACTIONS(2806), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2804), - [anon_sym_POUNDload] = ACTIONS(2804), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_AT_AT_GT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2408] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3725), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2408), [sym_block_comment] = STATE(2408), [sym_line_comment] = STATE(2408), [sym_compiler_directive_decl] = STATE(2408), [sym_fsi_directive_decl] = STATE(2408), [sym_preproc_line] = STATE(2408), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4362), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym__] = ACTIONS(4362), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4360), - [anon_sym_DASH_GT] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4268), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2409] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(7722), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2409), [sym_block_comment] = STATE(2409), [sym_line_comment] = STATE(2409), [sym_compiler_directive_decl] = STATE(2409), [sym_fsi_directive_decl] = STATE(2409), [sym_preproc_line] = STATE(2409), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_GT] = ACTIONS(3701), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2410] = { [sym_xml_doc] = STATE(2410), @@ -305653,274 +309678,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2410), [sym_fsi_directive_decl] = STATE(2410), [sym_preproc_line] = STATE(2410), - [aux_sym_type_argument_repeat1] = STATE(2421), - [sym_identifier] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_and] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [aux_sym_access_modifier_token1] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(4526), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_member] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_val] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_open] = ACTIONS(3361), + [anon_sym_LBRACK_LT] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_and] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [aux_sym_access_modifier_token1] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_or] = ACTIONS(3361), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_member] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_abstract] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_val] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3363), + [anon_sym_POUNDload] = ACTIONS(3363), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), }, [2411] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(7390), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2411), [sym_block_comment] = STATE(2411), [sym_line_comment] = STATE(2411), [sym_compiler_directive_decl] = STATE(2411), [sym_fsi_directive_decl] = STATE(2411), [sym_preproc_line] = STATE(2411), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_GT] = ACTIONS(3598), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2412] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2412), [sym_block_comment] = STATE(2412), [sym_line_comment] = STATE(2412), [sym_compiler_directive_decl] = STATE(2412), [sym_fsi_directive_decl] = STATE(2412), [sym_preproc_line] = STATE(2412), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_open] = ACTIONS(2850), - [anon_sym_LBRACK_LT] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_and] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [aux_sym_access_modifier_token1] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_member] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_override] = ACTIONS(2850), - [anon_sym_val] = ACTIONS(2850), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2848), - [anon_sym_POUNDload] = ACTIONS(2848), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3847), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2413] = { [sym_xml_doc] = STATE(2413), @@ -305929,90 +309954,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2413), [sym_fsi_directive_decl] = STATE(2413), [sym_preproc_line] = STATE(2413), - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3029), - [anon_sym_namespace] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_LBRACK_LT] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_and] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [aux_sym_access_modifier_token1] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [anon_sym_static] = ACTIONS(3029), - [anon_sym_member] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_val] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3031), - [anon_sym_POUNDload] = ACTIONS(3031), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [anon_sym_POUNDendif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2414] = { [sym_xml_doc] = STATE(2414), @@ -306021,366 +310046,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2414), [sym_fsi_directive_decl] = STATE(2414), [sym_preproc_line] = STATE(2414), - [aux_sym_long_identifier_repeat1] = STATE(2414), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [aux_sym_access_modifier_token1] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_member] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_abstract] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_val] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_DOT_DOT] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2415] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(3015), - [sym__function_or_value_defn_body] = STATE(2866), - [sym_function_declaration_left] = STATE(6165), - [sym_value_declaration_left] = STATE(6165), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2415), [sym_block_comment] = STATE(2415), [sym_line_comment] = STATE(2415), [sym_compiler_directive_decl] = STATE(2415), [sym_fsi_directive_decl] = STATE(2415), [sym_preproc_line] = STATE(2415), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_DOT_DOT] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2416] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3538), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2416), [sym_block_comment] = STATE(2416), [sym_line_comment] = STATE(2416), [sym_compiler_directive_decl] = STATE(2416), [sym_fsi_directive_decl] = STATE(2416), [sym_preproc_line] = STATE(2416), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4362), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4360), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym__] = ACTIONS(4362), - [anon_sym_QMARK] = ACTIONS(4360), - [anon_sym_COLON_QMARK] = ACTIONS(4360), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [anon_sym_LPAREN_PIPE] = ACTIONS(4362), - [sym_op_identifier] = ACTIONS(4360), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [anon_sym_POUNDendif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2417] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(4569), - [sym__function_or_value_defn_body] = STATE(4342), - [sym_function_declaration_left] = STATE(6390), - [sym_value_declaration_left] = STATE(6390), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2417), [sym_block_comment] = STATE(2417), [sym_line_comment] = STATE(2417), [sym_compiler_directive_decl] = STATE(2417), [sym_fsi_directive_decl] = STATE(2417), [sym_preproc_line] = STATE(2417), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [anon_sym_POUNDendif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2418] = { [sym_xml_doc] = STATE(2418), @@ -306389,824 +310414,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2418), [sym_fsi_directive_decl] = STATE(2418), [sym_preproc_line] = STATE(2418), - [aux_sym_long_identifier_repeat1] = STATE(2414), - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_and] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [aux_sym_access_modifier_token1] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_member] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_val] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [anon_sym_POUNDendif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2419] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(4425), - [sym_function_declaration_left] = STATE(6404), - [sym_value_declaration_left] = STATE(6404), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2419), [sym_block_comment] = STATE(2419), [sym_line_comment] = STATE(2419), [sym_compiler_directive_decl] = STATE(2419), [sym_fsi_directive_decl] = STATE(2419), [sym_preproc_line] = STATE(2419), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4531), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [anon_sym_POUNDendif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2420] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(4432), - [sym__function_or_value_defn_body] = STATE(4117), - [sym_function_declaration_left] = STATE(6404), - [sym_value_declaration_left] = STATE(6404), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2420), [sym_block_comment] = STATE(2420), [sym_line_comment] = STATE(2420), [sym_compiler_directive_decl] = STATE(2420), [sym_fsi_directive_decl] = STATE(2420), [sym_preproc_line] = STATE(2420), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [anon_sym_POUNDendif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2421] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2421), [sym_block_comment] = STATE(2421), [sym_line_comment] = STATE(2421), [sym_compiler_directive_decl] = STATE(2421), [sym_fsi_directive_decl] = STATE(2421), [sym_preproc_line] = STATE(2421), - [aux_sym_type_argument_repeat1] = STATE(2395), - [sym_identifier] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(2941), - [anon_sym_open] = ACTIONS(2941), - [anon_sym_LBRACK_LT] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_and] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [aux_sym_access_modifier_token1] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(4526), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_member] = ACTIONS(2941), - [anon_sym_interface] = ACTIONS(2941), - [anon_sym_abstract] = ACTIONS(2941), - [anon_sym_override] = ACTIONS(2941), - [anon_sym_val] = ACTIONS(2941), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2943), - [anon_sym_POUNDload] = ACTIONS(2943), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__dedent] = ACTIONS(2943), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(4955), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(4957), + [anon_sym_module] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_LBRACK_LT] = ACTIONS(4955), + [anon_sym_return] = ACTIONS(4957), + [anon_sym_type] = ACTIONS(4957), + [anon_sym_do] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_let] = ACTIONS(4957), + [anon_sym_let_BANG] = ACTIONS(4955), + [aux_sym_access_modifier_token1] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_null] = ACTIONS(4957), + [anon_sym_AMP] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_LBRACK_PIPE] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_LT_AT] = ACTIONS(4957), + [anon_sym_LT_AT_AT] = ACTIONS(4955), + [anon_sym_LBRACE_PIPE] = ACTIONS(4955), + [anon_sym_with] = ACTIONS(4957), + [anon_sym_new] = ACTIONS(4957), + [anon_sym_return_BANG] = ACTIONS(4955), + [anon_sym_yield] = ACTIONS(4957), + [anon_sym_yield_BANG] = ACTIONS(4955), + [anon_sym_lazy] = ACTIONS(4957), + [anon_sym_assert] = ACTIONS(4957), + [anon_sym_upcast] = ACTIONS(4957), + [anon_sym_downcast] = ACTIONS(4957), + [anon_sym_for] = ACTIONS(4957), + [anon_sym_while] = ACTIONS(4957), + [anon_sym_if] = ACTIONS(4957), + [anon_sym_fun] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4957), + [anon_sym_match] = ACTIONS(4957), + [anon_sym_match_BANG] = ACTIONS(4955), + [anon_sym_function] = ACTIONS(4957), + [anon_sym_use] = ACTIONS(4957), + [anon_sym_use_BANG] = ACTIONS(4955), + [anon_sym_do_BANG] = ACTIONS(4955), + [anon_sym_begin] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(4957), + [anon_sym_static] = ACTIONS(4957), + [anon_sym_member] = ACTIONS(4957), + [anon_sym_abstract] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_val] = ACTIONS(4957), + [aux_sym_char_token1] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4957), + [anon_sym_DQUOTE] = ACTIONS(4957), + [anon_sym_AT_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4955), + [sym_bool] = ACTIONS(4957), + [sym_unit] = ACTIONS(4955), + [anon_sym_LPAREN_PIPE] = ACTIONS(4957), + [sym_op_identifier] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_PLUS_DOT] = ACTIONS(4955), + [anon_sym_DASH_DOT] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_TILDE] = ACTIONS(4955), + [aux_sym_prefix_op_token1] = ACTIONS(4955), + [sym_int] = ACTIONS(4957), + [sym_xint] = ACTIONS(4955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4955), + [anon_sym_POUNDload] = ACTIONS(4955), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4955), }, [2422] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3147), - [sym_function_declaration_left] = STATE(6658), - [sym_value_declaration_left] = STATE(6658), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2422), [sym_block_comment] = STATE(2422), [sym_line_comment] = STATE(2422), [sym_compiler_directive_decl] = STATE(2422), [sym_fsi_directive_decl] = STATE(2422), [sym_preproc_line] = STATE(2422), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4533), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_AT_AT_GT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2423] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3148), - [sym_function_declaration_left] = STATE(6455), - [sym_value_declaration_left] = STATE(6455), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2423), [sym_block_comment] = STATE(2423), [sym_line_comment] = STATE(2423), [sym_compiler_directive_decl] = STATE(2423), [sym_fsi_directive_decl] = STATE(2423), [sym_preproc_line] = STATE(2423), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_rec] = ACTIONS(4535), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_DOT_DOT] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2424] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defns] = STATE(6769), - [sym__function_or_value_defn_body] = STATE(5855), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2424), [sym_block_comment] = STATE(2424), [sym_line_comment] = STATE(2424), [sym_compiler_directive_decl] = STATE(2424), [sym_fsi_directive_decl] = STATE(2424), [sym_preproc_line] = STATE(2424), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_AT_GT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2425] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2617), - [sym__method_defn] = STATE(2773), - [sym__property_defn] = STATE(2726), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2425), [sym_block_comment] = STATE(2425), [sym_line_comment] = STATE(2425), [sym_compiler_directive_decl] = STATE(2425), [sym_fsi_directive_decl] = STATE(2425), [sym_preproc_line] = STATE(2425), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2590), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4537), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4555), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_AT_GT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2426] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3569), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2426), [sym_block_comment] = STATE(2426), [sym_line_comment] = STATE(2426), [sym_compiler_directive_decl] = STATE(2426), [sym_fsi_directive_decl] = STATE(2426), [sym_preproc_line] = STATE(2426), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4362), - [anon_sym_EQ] = ACTIONS(4360), - [anon_sym_LBRACK_LT] = ACTIONS(4360), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4362), - [anon_sym__] = ACTIONS(4362), - [anon_sym_QMARK] = ACTIONS(4360), - [anon_sym_COLON_QMARK] = ACTIONS(4360), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LBRACK_PIPE] = ACTIONS(4360), - [anon_sym_LBRACE] = ACTIONS(4360), - [aux_sym_char_token1] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4362), - [anon_sym_DQUOTE] = ACTIONS(4362), - [anon_sym_AT_DQUOTE] = ACTIONS(4360), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4360), - [sym_bool] = ACTIONS(4362), - [sym_unit] = ACTIONS(4360), - [anon_sym_LPAREN_PIPE] = ACTIONS(4362), - [sym_op_identifier] = ACTIONS(4360), - [sym_int] = ACTIONS(4362), - [sym_xint] = ACTIONS(4360), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_DOT_DOT] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2427] = { [sym_xml_doc] = STATE(2427), @@ -307215,453 +311242,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2427), [sym_fsi_directive_decl] = STATE(2427), [sym_preproc_line] = STATE(2427), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_and] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [aux_sym_access_modifier_token1] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(4559), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_member] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_val] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2428] = { - [sym_attributes] = STATE(5197), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7291), - [sym_member_defn] = STATE(2674), - [sym_additional_constr_defn] = STATE(2745), [sym_xml_doc] = STATE(2428), [sym_block_comment] = STATE(2428), [sym_line_comment] = STATE(2428), [sym_compiler_directive_decl] = STATE(2428), [sym_fsi_directive_decl] = STATE(2428), [sym_preproc_line] = STATE(2428), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2440), - [ts_builtin_sym_end] = ACTIONS(4561), - [sym_identifier] = ACTIONS(4563), - [anon_sym_namespace] = ACTIONS(4563), - [anon_sym_module] = ACTIONS(4563), - [anon_sym_open] = ACTIONS(4563), - [anon_sym_LBRACK_LT] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4563), - [anon_sym_type] = ACTIONS(4563), - [anon_sym_do] = ACTIONS(4563), - [anon_sym_and] = ACTIONS(4563), - [anon_sym_let] = ACTIONS(4563), - [anon_sym_let_BANG] = ACTIONS(4561), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_LBRACK_PIPE] = ACTIONS(4561), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_LBRACE_PIPE] = ACTIONS(4561), - [anon_sym_new] = ACTIONS(4563), - [anon_sym_return_BANG] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4563), - [anon_sym_yield_BANG] = ACTIONS(4561), - [anon_sym_lazy] = ACTIONS(4563), - [anon_sym_assert] = ACTIONS(4563), - [anon_sym_upcast] = ACTIONS(4563), - [anon_sym_downcast] = ACTIONS(4563), - [anon_sym_LT_AT] = ACTIONS(4563), - [anon_sym_LT_AT_AT] = ACTIONS(4561), - [anon_sym_for] = ACTIONS(4563), - [anon_sym_while] = ACTIONS(4563), - [anon_sym_if] = ACTIONS(4563), - [anon_sym_fun] = ACTIONS(4563), - [anon_sym_try] = ACTIONS(4563), - [anon_sym_match] = ACTIONS(4563), - [anon_sym_match_BANG] = ACTIONS(4561), - [anon_sym_function] = ACTIONS(4563), - [anon_sym_use] = ACTIONS(4563), - [anon_sym_use_BANG] = ACTIONS(4561), - [anon_sym_do_BANG] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4563), - [anon_sym_default] = ACTIONS(4565), - [anon_sym_static] = ACTIONS(4567), - [anon_sym_member] = ACTIONS(4569), - [anon_sym_abstract] = ACTIONS(4571), - [anon_sym_override] = ACTIONS(4565), - [anon_sym_val] = ACTIONS(4573), - [aux_sym_char_token1] = ACTIONS(4561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4563), - [anon_sym_DQUOTE] = ACTIONS(4563), - [anon_sym_AT_DQUOTE] = ACTIONS(4561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4561), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4561), - [sym_bool] = ACTIONS(4563), - [sym_unit] = ACTIONS(4561), - [anon_sym_LPAREN_PIPE] = ACTIONS(4563), - [sym_op_identifier] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4563), - [anon_sym_PLUS_DOT] = ACTIONS(4561), - [anon_sym_DASH_DOT] = ACTIONS(4561), - [anon_sym_PERCENT] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_TILDE] = ACTIONS(4561), - [aux_sym_prefix_op_token1] = ACTIONS(4561), - [sym_int] = ACTIONS(4563), - [sym_xint] = ACTIONS(4561), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4561), - [anon_sym_POUNDload] = ACTIONS(4561), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4561), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2429] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(5836), - [sym_function_declaration_left] = STATE(6508), - [sym_value_declaration_left] = STATE(6508), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2429), [sym_block_comment] = STATE(2429), [sym_line_comment] = STATE(2429), [sym_compiler_directive_decl] = STATE(2429), [sym_fsi_directive_decl] = STATE(2429), [sym_preproc_line] = STATE(2429), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [anon_sym_POUNDendif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2430] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(4489), - [sym_function_declaration_left] = STATE(6390), - [sym_value_declaration_left] = STATE(6390), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2430), [sym_block_comment] = STATE(2430), [sym_line_comment] = STATE(2430), [sym_compiler_directive_decl] = STATE(2430), [sym_fsi_directive_decl] = STATE(2430), [sym_preproc_line] = STATE(2430), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_AT_GT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2431] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5416), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2431), [sym_block_comment] = STATE(2431), [sym_line_comment] = STATE(2431), [sym_compiler_directive_decl] = STATE(2431), [sym_fsi_directive_decl] = STATE(2431), [sym_preproc_line] = STATE(2431), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_COLON] = ACTIONS(4362), - [anon_sym_as] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_COMMA] = ACTIONS(4360), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4360), - [anon_sym_PIPE] = ACTIONS(4360), - [anon_sym_AMP] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [anon_sym_in] = ACTIONS(4362), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_AT_GT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2432] = { [sym_xml_doc] = STATE(2432), @@ -307670,180 +311702,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2432), [sym_fsi_directive_decl] = STATE(2432), [sym_preproc_line] = STATE(2432), - [aux_sym_long_identifier_repeat1] = STATE(2464), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_and] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [aux_sym_access_modifier_token1] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_member] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_abstract] = ACTIONS(2935), - [anon_sym_override] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_AT_AT_GT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2433] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3132), - [sym_function_declaration_left] = STATE(6455), - [sym_value_declaration_left] = STATE(6455), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2433), [sym_block_comment] = STATE(2433), [sym_line_comment] = STATE(2433), [sym_compiler_directive_decl] = STATE(2433), [sym_fsi_directive_decl] = STATE(2433), [sym_preproc_line] = STATE(2433), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2434] = { [sym_xml_doc] = STATE(2434), @@ -307852,89 +311886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2434), [sym_fsi_directive_decl] = STATE(2434), [sym_preproc_line] = STATE(2434), - [aux_sym__compound_type_repeat1] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_and] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [aux_sym_access_modifier_token1] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(4577), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_member] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_val] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2435] = { [sym_xml_doc] = STATE(2435), @@ -307943,544 +311978,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2435), [sym_fsi_directive_decl] = STATE(2435), [sym_preproc_line] = STATE(2435), - [aux_sym__compound_type_repeat1] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_open] = ACTIONS(2970), - [anon_sym_LBRACK_LT] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_and] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [aux_sym_access_modifier_token1] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_member] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_val] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2972), - [anon_sym_POUNDload] = ACTIONS(2972), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [anon_sym_POUNDendif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2436] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2642), - [sym__method_defn] = STATE(4407), - [sym__property_defn] = STATE(4415), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2436), [sym_block_comment] = STATE(2436), [sym_line_comment] = STATE(2436), [sym_compiler_directive_decl] = STATE(2436), [sym_fsi_directive_decl] = STATE(2436), [sym_preproc_line] = STATE(2436), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2588), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4580), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4582), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [anon_sym_POUNDendif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2437] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(2926), - [sym_function_declaration_left] = STATE(6165), - [sym_value_declaration_left] = STATE(6165), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2437), [sym_block_comment] = STATE(2437), [sym_line_comment] = STATE(2437), [sym_compiler_directive_decl] = STATE(2437), [sym_fsi_directive_decl] = STATE(2437), [sym_preproc_line] = STATE(2437), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_DOT_DOT] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2438] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2438), [sym_block_comment] = STATE(2438), [sym_line_comment] = STATE(2438), [sym_compiler_directive_decl] = STATE(2438), [sym_fsi_directive_decl] = STATE(2438), [sym_preproc_line] = STATE(2438), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4584), - [sym_identifier] = ACTIONS(4586), - [anon_sym_namespace] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_open] = ACTIONS(4586), - [anon_sym_LBRACK_LT] = ACTIONS(4584), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_type] = ACTIONS(4586), - [anon_sym_do] = ACTIONS(4586), - [anon_sym_and] = ACTIONS(4586), - [anon_sym_let] = ACTIONS(4586), - [anon_sym_let_BANG] = ACTIONS(4584), - [aux_sym_access_modifier_token1] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4586), - [anon_sym_null] = ACTIONS(4586), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4586), - [anon_sym_LBRACK_PIPE] = ACTIONS(4584), - [anon_sym_LBRACE] = ACTIONS(4586), - [anon_sym_LBRACE_PIPE] = ACTIONS(4584), - [anon_sym_new] = ACTIONS(4586), - [anon_sym_return_BANG] = ACTIONS(4584), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_yield_BANG] = ACTIONS(4584), - [anon_sym_lazy] = ACTIONS(4586), - [anon_sym_assert] = ACTIONS(4586), - [anon_sym_upcast] = ACTIONS(4586), - [anon_sym_downcast] = ACTIONS(4586), - [anon_sym_LT_AT] = ACTIONS(4586), - [anon_sym_LT_AT_AT] = ACTIONS(4584), - [anon_sym_for] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_if] = ACTIONS(4586), - [anon_sym_fun] = ACTIONS(4586), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4586), - [anon_sym_match] = ACTIONS(4586), - [anon_sym_match_BANG] = ACTIONS(4584), - [anon_sym_function] = ACTIONS(4586), - [anon_sym_use] = ACTIONS(4586), - [anon_sym_use_BANG] = ACTIONS(4584), - [anon_sym_do_BANG] = ACTIONS(4584), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4586), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_member] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_override] = ACTIONS(4586), - [anon_sym_val] = ACTIONS(4586), - [aux_sym_char_token1] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4586), - [anon_sym_DQUOTE] = ACTIONS(4586), - [anon_sym_AT_DQUOTE] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [sym_bool] = ACTIONS(4586), - [sym_unit] = ACTIONS(4584), - [anon_sym_LPAREN_PIPE] = ACTIONS(4586), - [sym_op_identifier] = ACTIONS(4584), - [anon_sym_PLUS] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_PLUS_DOT] = ACTIONS(4584), - [anon_sym_DASH_DOT] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_AMP_AMP] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [aux_sym_prefix_op_token1] = ACTIONS(4584), - [sym_int] = ACTIONS(4586), - [sym_xint] = ACTIONS(4584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4584), - [anon_sym_POUNDload] = ACTIONS(4584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4584), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_AT_AT_GT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2439] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2602), - [sym__method_defn] = STATE(4510), - [sym__property_defn] = STATE(4511), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2439), [sym_block_comment] = STATE(2439), [sym_line_comment] = STATE(2439), [sym_compiler_directive_decl] = STATE(2439), [sym_fsi_directive_decl] = STATE(2439), [sym_preproc_line] = STATE(2439), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2589), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4588), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4590), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_type_argument_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_open] = ACTIONS(3230), + [anon_sym_LBRACK_LT] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_and] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [aux_sym_access_modifier_token1] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(4945), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_member] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_val] = ACTIONS(3230), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3232), + [anon_sym_POUNDload] = ACTIONS(3232), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__dedent] = ACTIONS(3232), }, [2440] = { - [sym_attributes] = STATE(5197), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7291), - [sym_member_defn] = STATE(2674), - [sym_additional_constr_defn] = STATE(2745), [sym_xml_doc] = STATE(2440), [sym_block_comment] = STATE(2440), [sym_line_comment] = STATE(2440), [sym_compiler_directive_decl] = STATE(2440), [sym_fsi_directive_decl] = STATE(2440), [sym_preproc_line] = STATE(2440), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2440), - [ts_builtin_sym_end] = ACTIONS(4592), - [sym_identifier] = ACTIONS(4594), - [anon_sym_namespace] = ACTIONS(4594), - [anon_sym_module] = ACTIONS(4594), - [anon_sym_open] = ACTIONS(4594), - [anon_sym_LBRACK_LT] = ACTIONS(4596), - [anon_sym_return] = ACTIONS(4594), - [anon_sym_type] = ACTIONS(4594), - [anon_sym_do] = ACTIONS(4594), - [anon_sym_and] = ACTIONS(4594), - [anon_sym_let] = ACTIONS(4594), - [anon_sym_let_BANG] = ACTIONS(4592), - [aux_sym_access_modifier_token1] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4594), - [anon_sym_null] = ACTIONS(4594), - [anon_sym_AMP] = ACTIONS(4594), - [anon_sym_LBRACK] = ACTIONS(4594), - [anon_sym_LBRACK_PIPE] = ACTIONS(4592), - [anon_sym_LBRACE] = ACTIONS(4594), - [anon_sym_LBRACE_PIPE] = ACTIONS(4592), - [anon_sym_new] = ACTIONS(4602), - [anon_sym_return_BANG] = ACTIONS(4592), - [anon_sym_yield] = ACTIONS(4594), - [anon_sym_yield_BANG] = ACTIONS(4592), - [anon_sym_lazy] = ACTIONS(4594), - [anon_sym_assert] = ACTIONS(4594), - [anon_sym_upcast] = ACTIONS(4594), - [anon_sym_downcast] = ACTIONS(4594), - [anon_sym_LT_AT] = ACTIONS(4594), - [anon_sym_LT_AT_AT] = ACTIONS(4592), - [anon_sym_for] = ACTIONS(4594), - [anon_sym_while] = ACTIONS(4594), - [anon_sym_if] = ACTIONS(4594), - [anon_sym_fun] = ACTIONS(4594), - [anon_sym_try] = ACTIONS(4594), - [anon_sym_match] = ACTIONS(4594), - [anon_sym_match_BANG] = ACTIONS(4592), - [anon_sym_function] = ACTIONS(4594), - [anon_sym_use] = ACTIONS(4594), - [anon_sym_use_BANG] = ACTIONS(4592), - [anon_sym_do_BANG] = ACTIONS(4592), - [anon_sym_begin] = ACTIONS(4594), - [anon_sym_default] = ACTIONS(4605), - [anon_sym_static] = ACTIONS(4608), - [anon_sym_member] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4614), - [anon_sym_override] = ACTIONS(4605), - [anon_sym_val] = ACTIONS(4617), - [aux_sym_char_token1] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE] = ACTIONS(4594), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4592), - [sym_bool] = ACTIONS(4594), - [sym_unit] = ACTIONS(4592), - [anon_sym_LPAREN_PIPE] = ACTIONS(4594), - [sym_op_identifier] = ACTIONS(4592), - [anon_sym_PLUS] = ACTIONS(4594), - [anon_sym_DASH] = ACTIONS(4594), - [anon_sym_PLUS_DOT] = ACTIONS(4592), - [anon_sym_DASH_DOT] = ACTIONS(4592), - [anon_sym_PERCENT] = ACTIONS(4592), - [anon_sym_AMP_AMP] = ACTIONS(4592), - [anon_sym_TILDE] = ACTIONS(4592), - [aux_sym_prefix_op_token1] = ACTIONS(4592), - [sym_int] = ACTIONS(4594), - [sym_xint] = ACTIONS(4592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4592), - [anon_sym_POUNDload] = ACTIONS(4592), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4592), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [anon_sym_POUNDendif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2441] = { [sym_xml_doc] = STATE(2441), @@ -308489,447 +312530,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2441), [sym_fsi_directive_decl] = STATE(2441), [sym_preproc_line] = STATE(2441), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym_identifier] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_and] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [aux_sym_access_modifier_token1] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_member] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_val] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_AT_AT_GT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2442] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(4328), - [sym_function_declaration_left] = STATE(6404), - [sym_value_declaration_left] = STATE(6404), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2442), [sym_block_comment] = STATE(2442), [sym_line_comment] = STATE(2442), [sym_compiler_directive_decl] = STATE(2442), [sym_fsi_directive_decl] = STATE(2442), [sym_preproc_line] = STATE(2442), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_DOT_DOT] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2443] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2626), - [sym__method_defn] = STATE(2824), - [sym__property_defn] = STATE(2816), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2443), [sym_block_comment] = STATE(2443), [sym_line_comment] = STATE(2443), [sym_compiler_directive_decl] = STATE(2443), [sym_fsi_directive_decl] = STATE(2443), [sym_preproc_line] = STATE(2443), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2597), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4620), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4622), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_AT_AT_GT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2444] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(6750), + [sym__function_or_value_defn_body] = STATE(6156), + [sym_function_declaration_left] = STATE(7044), + [sym_value_declaration_left] = STATE(7044), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2444), [sym_block_comment] = STATE(2444), [sym_line_comment] = STATE(2444), [sym_compiler_directive_decl] = STATE(2444), [sym_fsi_directive_decl] = STATE(2444), [sym_preproc_line] = STATE(2444), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4624), - [sym_identifier] = ACTIONS(4626), - [anon_sym_namespace] = ACTIONS(4626), - [anon_sym_module] = ACTIONS(4626), - [anon_sym_open] = ACTIONS(4626), - [anon_sym_LBRACK_LT] = ACTIONS(4624), - [anon_sym_return] = ACTIONS(4626), - [anon_sym_type] = ACTIONS(4626), - [anon_sym_do] = ACTIONS(4626), - [anon_sym_and] = ACTIONS(4626), - [anon_sym_let] = ACTIONS(4626), - [anon_sym_let_BANG] = ACTIONS(4624), - [aux_sym_access_modifier_token1] = ACTIONS(4624), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_null] = ACTIONS(4626), - [anon_sym_AMP] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4626), - [anon_sym_LBRACK_PIPE] = ACTIONS(4624), - [anon_sym_LBRACE] = ACTIONS(4626), - [anon_sym_LBRACE_PIPE] = ACTIONS(4624), - [anon_sym_new] = ACTIONS(4626), - [anon_sym_return_BANG] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4626), - [anon_sym_yield_BANG] = ACTIONS(4624), - [anon_sym_lazy] = ACTIONS(4626), - [anon_sym_assert] = ACTIONS(4626), - [anon_sym_upcast] = ACTIONS(4626), - [anon_sym_downcast] = ACTIONS(4626), - [anon_sym_LT_AT] = ACTIONS(4626), - [anon_sym_LT_AT_AT] = ACTIONS(4624), - [anon_sym_for] = ACTIONS(4626), - [anon_sym_while] = ACTIONS(4626), - [anon_sym_if] = ACTIONS(4626), - [anon_sym_fun] = ACTIONS(4626), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4626), - [anon_sym_match] = ACTIONS(4626), - [anon_sym_match_BANG] = ACTIONS(4624), - [anon_sym_function] = ACTIONS(4626), - [anon_sym_use] = ACTIONS(4626), - [anon_sym_use_BANG] = ACTIONS(4624), - [anon_sym_do_BANG] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4626), - [anon_sym_static] = ACTIONS(4626), - [anon_sym_member] = ACTIONS(4626), - [anon_sym_abstract] = ACTIONS(4626), - [anon_sym_override] = ACTIONS(4626), - [anon_sym_val] = ACTIONS(4626), - [aux_sym_char_token1] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE] = ACTIONS(4626), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4624), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4624), - [sym_bool] = ACTIONS(4626), - [sym_unit] = ACTIONS(4624), - [anon_sym_LPAREN_PIPE] = ACTIONS(4626), - [sym_op_identifier] = ACTIONS(4624), - [anon_sym_PLUS] = ACTIONS(4626), - [anon_sym_DASH] = ACTIONS(4626), - [anon_sym_PLUS_DOT] = ACTIONS(4624), - [anon_sym_DASH_DOT] = ACTIONS(4624), - [anon_sym_PERCENT] = ACTIONS(4624), - [anon_sym_AMP_AMP] = ACTIONS(4624), - [anon_sym_TILDE] = ACTIONS(4624), - [aux_sym_prefix_op_token1] = ACTIONS(4624), - [sym_int] = ACTIONS(4626), - [sym_xint] = ACTIONS(4624), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4624), - [anon_sym_POUNDload] = ACTIONS(4624), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4624), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2445] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3149), - [sym_function_declaration_left] = STATE(6532), - [sym_value_declaration_left] = STATE(6532), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(3537), + [sym__function_or_value_defn_body] = STATE(3502), + [sym_function_declaration_left] = STATE(6986), + [sym_value_declaration_left] = STATE(6986), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2445), [sym_block_comment] = STATE(2445), [sym_line_comment] = STATE(2445), [sym_compiler_directive_decl] = STATE(2445), [sym_fsi_directive_decl] = STATE(2445), [sym_preproc_line] = STATE(2445), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -308944,265 +312990,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2446), [sym_fsi_directive_decl] = STATE(2446), [sym_preproc_line] = STATE(2446), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [aux_sym_access_modifier_token1] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_member] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_abstract] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_val] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_AT_AT_GT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2447] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2632), - [sym__method_defn] = STATE(4945), - [sym__property_defn] = STATE(4968), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2447), [sym_block_comment] = STATE(2447), [sym_line_comment] = STATE(2447), [sym_compiler_directive_decl] = STATE(2447), [sym_fsi_directive_decl] = STATE(2447), [sym_preproc_line] = STATE(2447), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2584), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4628), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4630), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_AT_AT_GT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2448] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3108), - [sym_function_declaration_left] = STATE(6658), - [sym_value_declaration_left] = STATE(6658), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6751), + [sym_function_declaration_left] = STATE(7044), + [sym_value_declaration_left] = STATE(7044), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2448), [sym_block_comment] = STATE(2448), [sym_line_comment] = STATE(2448), [sym_compiler_directive_decl] = STATE(2448), [sym_fsi_directive_decl] = STATE(2448), [sym_preproc_line] = STATE(2448), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4961), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -309211,89 +313260,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2449] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(6568), - [sym_function_declaration_left] = STATE(6430), - [sym_value_declaration_left] = STATE(6430), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(6749), + [sym__function_or_value_defn_body] = STATE(6163), + [sym_function_declaration_left] = STATE(7085), + [sym_value_declaration_left] = STATE(7085), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2449), [sym_block_comment] = STATE(2449), [sym_line_comment] = STATE(2449), [sym_compiler_directive_decl] = STATE(2449), [sym_fsi_directive_decl] = STATE(2449), [sym_preproc_line] = STATE(2449), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -309308,89 +313358,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2450), [sym_fsi_directive_decl] = STATE(2450), [sym_preproc_line] = STATE(2450), - [sym_identifier] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_open] = ACTIONS(2917), - [anon_sym_LBRACK_LT] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_and] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [aux_sym_access_modifier_token1] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_member] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_val] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2919), - [anon_sym_POUNDload] = ACTIONS(2919), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_DOT_DOT] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2451] = { [sym_xml_doc] = STATE(2451), @@ -309399,362 +313450,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2451), [sym_fsi_directive_decl] = STATE(2451), [sym_preproc_line] = STATE(2451), - [aux_sym_long_identifier_repeat1] = STATE(2464), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_and] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [aux_sym_access_modifier_token1] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_member] = ACTIONS(2935), - [anon_sym_abstract] = ACTIONS(2935), - [anon_sym_override] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_AT_AT_GT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2452] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2452), [sym_block_comment] = STATE(2452), [sym_line_comment] = STATE(2452), [sym_compiler_directive_decl] = STATE(2452), [sym_fsi_directive_decl] = STATE(2452), [sym_preproc_line] = STATE(2452), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(4510), - [anon_sym_open] = ACTIONS(4510), - [anon_sym_LBRACK_LT] = ACTIONS(4508), - [anon_sym_return] = ACTIONS(4510), - [anon_sym_type] = ACTIONS(4510), - [anon_sym_do] = ACTIONS(4510), - [anon_sym_and] = ACTIONS(4510), - [anon_sym_let] = ACTIONS(4510), - [anon_sym_let_BANG] = ACTIONS(4508), - [aux_sym_access_modifier_token1] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4510), - [anon_sym_null] = ACTIONS(4510), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_LBRACK_PIPE] = ACTIONS(4508), - [anon_sym_LBRACE] = ACTIONS(4510), - [anon_sym_LBRACE_PIPE] = ACTIONS(4508), - [anon_sym_with] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4510), - [anon_sym_return_BANG] = ACTIONS(4508), - [anon_sym_yield] = ACTIONS(4510), - [anon_sym_yield_BANG] = ACTIONS(4508), - [anon_sym_lazy] = ACTIONS(4510), - [anon_sym_assert] = ACTIONS(4510), - [anon_sym_upcast] = ACTIONS(4510), - [anon_sym_downcast] = ACTIONS(4510), - [anon_sym_LT_AT] = ACTIONS(4510), - [anon_sym_LT_AT_AT] = ACTIONS(4508), - [anon_sym_for] = ACTIONS(4510), - [anon_sym_while] = ACTIONS(4510), - [anon_sym_if] = ACTIONS(4510), - [anon_sym_fun] = ACTIONS(4510), - [anon_sym_DASH_GT] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4510), - [anon_sym_match] = ACTIONS(4510), - [anon_sym_match_BANG] = ACTIONS(4508), - [anon_sym_function] = ACTIONS(4510), - [anon_sym_use] = ACTIONS(4510), - [anon_sym_use_BANG] = ACTIONS(4508), - [anon_sym_do_BANG] = ACTIONS(4508), - [anon_sym_begin] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4510), - [anon_sym_static] = ACTIONS(4510), - [anon_sym_member] = ACTIONS(4510), - [anon_sym_abstract] = ACTIONS(4510), - [anon_sym_override] = ACTIONS(4510), - [anon_sym_val] = ACTIONS(4510), - [aux_sym_char_token1] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4510), - [anon_sym_DQUOTE] = ACTIONS(4510), - [anon_sym_AT_DQUOTE] = ACTIONS(4508), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4508), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4508), - [sym_bool] = ACTIONS(4510), - [sym_unit] = ACTIONS(4508), - [anon_sym_LPAREN_PIPE] = ACTIONS(4510), - [sym_op_identifier] = ACTIONS(4508), - [anon_sym_PLUS] = ACTIONS(4510), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_PLUS_DOT] = ACTIONS(4508), - [anon_sym_DASH_DOT] = ACTIONS(4508), - [anon_sym_PERCENT] = ACTIONS(4508), - [anon_sym_AMP_AMP] = ACTIONS(4508), - [anon_sym_TILDE] = ACTIONS(4508), - [aux_sym_prefix_op_token1] = ACTIONS(4508), - [sym_int] = ACTIONS(4510), - [sym_xint] = ACTIONS(4508), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4508), - [anon_sym_POUNDload] = ACTIONS(4508), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4508), - [sym__dedent] = ACTIONS(4508), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2453] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(6375), - [sym_function_declaration_left] = STATE(6479), - [sym_value_declaration_left] = STATE(6479), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2453), [sym_block_comment] = STATE(2453), [sym_line_comment] = STATE(2453), [sym_compiler_directive_decl] = STATE(2453), [sym_fsi_directive_decl] = STATE(2453), [sym_preproc_line] = STATE(2453), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_DOT_DOT] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2454] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2454), [sym_block_comment] = STATE(2454), [sym_line_comment] = STATE(2454), [sym_compiler_directive_decl] = STATE(2454), [sym_fsi_directive_decl] = STATE(2454), [sym_preproc_line] = STATE(2454), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4632), - [sym_identifier] = ACTIONS(4634), - [anon_sym_namespace] = ACTIONS(4634), - [anon_sym_module] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_LBRACK_LT] = ACTIONS(4632), - [anon_sym_return] = ACTIONS(4634), - [anon_sym_type] = ACTIONS(4634), - [anon_sym_do] = ACTIONS(4634), - [anon_sym_and] = ACTIONS(4634), - [anon_sym_let] = ACTIONS(4634), - [anon_sym_let_BANG] = ACTIONS(4632), - [aux_sym_access_modifier_token1] = ACTIONS(4632), - [anon_sym_LPAREN] = ACTIONS(4634), - [anon_sym_null] = ACTIONS(4634), - [anon_sym_AMP] = ACTIONS(4634), - [anon_sym_LBRACK] = ACTIONS(4634), - [anon_sym_LBRACK_PIPE] = ACTIONS(4632), - [anon_sym_LBRACE] = ACTIONS(4634), - [anon_sym_LBRACE_PIPE] = ACTIONS(4632), - [anon_sym_new] = ACTIONS(4634), - [anon_sym_return_BANG] = ACTIONS(4632), - [anon_sym_yield] = ACTIONS(4634), - [anon_sym_yield_BANG] = ACTIONS(4632), - [anon_sym_lazy] = ACTIONS(4634), - [anon_sym_assert] = ACTIONS(4634), - [anon_sym_upcast] = ACTIONS(4634), - [anon_sym_downcast] = ACTIONS(4634), - [anon_sym_LT_AT] = ACTIONS(4634), - [anon_sym_LT_AT_AT] = ACTIONS(4632), - [anon_sym_for] = ACTIONS(4634), - [anon_sym_while] = ACTIONS(4634), - [anon_sym_if] = ACTIONS(4634), - [anon_sym_fun] = ACTIONS(4634), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4634), - [anon_sym_match] = ACTIONS(4634), - [anon_sym_match_BANG] = ACTIONS(4632), - [anon_sym_function] = ACTIONS(4634), - [anon_sym_use] = ACTIONS(4634), - [anon_sym_use_BANG] = ACTIONS(4632), - [anon_sym_do_BANG] = ACTIONS(4632), - [anon_sym_begin] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4634), - [anon_sym_static] = ACTIONS(4634), - [anon_sym_member] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_val] = ACTIONS(4634), - [aux_sym_char_token1] = ACTIONS(4632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(4634), - [anon_sym_AT_DQUOTE] = ACTIONS(4632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4632), - [sym_bool] = ACTIONS(4634), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4634), - [sym_op_identifier] = ACTIONS(4632), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_PLUS_DOT] = ACTIONS(4632), - [anon_sym_DASH_DOT] = ACTIONS(4632), - [anon_sym_PERCENT] = ACTIONS(4632), - [anon_sym_AMP_AMP] = ACTIONS(4632), - [anon_sym_TILDE] = ACTIONS(4632), - [aux_sym_prefix_op_token1] = ACTIONS(4632), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4632), - [anon_sym_POUNDload] = ACTIONS(4632), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4632), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_DOT_DOT] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2455] = { [sym_xml_doc] = STATE(2455), @@ -309763,635 +313818,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2455), [sym_fsi_directive_decl] = STATE(2455), [sym_preproc_line] = STATE(2455), - [aux_sym_long_identifier_repeat1] = STATE(2455), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [aux_sym_access_modifier_token1] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(4636), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_member] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_abstract] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_val] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_AT_AT_GT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2456] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2600), - [sym__method_defn] = STATE(4863), - [sym__property_defn] = STATE(4867), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2456), [sym_block_comment] = STATE(2456), [sym_line_comment] = STATE(2456), [sym_compiler_directive_decl] = STATE(2456), [sym_fsi_directive_decl] = STATE(2456), [sym_preproc_line] = STATE(2456), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2593), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4641), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_AT_AT_GT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2457] = { - [sym_attributes] = STATE(5197), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7291), - [sym_member_defn] = STATE(2674), - [sym_additional_constr_defn] = STATE(2745), [sym_xml_doc] = STATE(2457), [sym_block_comment] = STATE(2457), [sym_line_comment] = STATE(2457), [sym_compiler_directive_decl] = STATE(2457), [sym_fsi_directive_decl] = STATE(2457), [sym_preproc_line] = STATE(2457), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2428), - [ts_builtin_sym_end] = ACTIONS(4643), - [sym_identifier] = ACTIONS(4645), - [anon_sym_namespace] = ACTIONS(4645), - [anon_sym_module] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_LBRACK_LT] = ACTIONS(4643), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_type] = ACTIONS(4645), - [anon_sym_do] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_let] = ACTIONS(4645), - [anon_sym_let_BANG] = ACTIONS(4643), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4645), - [anon_sym_null] = ACTIONS(4645), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_LBRACK_PIPE] = ACTIONS(4643), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_LBRACE_PIPE] = ACTIONS(4643), - [anon_sym_new] = ACTIONS(4645), - [anon_sym_return_BANG] = ACTIONS(4643), - [anon_sym_yield] = ACTIONS(4645), - [anon_sym_yield_BANG] = ACTIONS(4643), - [anon_sym_lazy] = ACTIONS(4645), - [anon_sym_assert] = ACTIONS(4645), - [anon_sym_upcast] = ACTIONS(4645), - [anon_sym_downcast] = ACTIONS(4645), - [anon_sym_LT_AT] = ACTIONS(4645), - [anon_sym_LT_AT_AT] = ACTIONS(4643), - [anon_sym_for] = ACTIONS(4645), - [anon_sym_while] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_fun] = ACTIONS(4645), - [anon_sym_try] = ACTIONS(4645), - [anon_sym_match] = ACTIONS(4645), - [anon_sym_match_BANG] = ACTIONS(4643), - [anon_sym_function] = ACTIONS(4645), - [anon_sym_use] = ACTIONS(4645), - [anon_sym_use_BANG] = ACTIONS(4643), - [anon_sym_do_BANG] = ACTIONS(4643), - [anon_sym_begin] = ACTIONS(4645), - [anon_sym_default] = ACTIONS(4565), - [anon_sym_static] = ACTIONS(4567), - [anon_sym_member] = ACTIONS(4569), - [anon_sym_abstract] = ACTIONS(4571), - [anon_sym_override] = ACTIONS(4565), - [anon_sym_val] = ACTIONS(4573), - [aux_sym_char_token1] = ACTIONS(4643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4645), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_AT_DQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4643), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4643), - [sym_bool] = ACTIONS(4645), - [sym_unit] = ACTIONS(4643), - [anon_sym_LPAREN_PIPE] = ACTIONS(4645), - [sym_op_identifier] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_PLUS_DOT] = ACTIONS(4643), - [anon_sym_DASH_DOT] = ACTIONS(4643), - [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_TILDE] = ACTIONS(4643), - [aux_sym_prefix_op_token1] = ACTIONS(4643), - [sym_int] = ACTIONS(4645), - [sym_xint] = ACTIONS(4643), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4643), - [anon_sym_POUNDload] = ACTIONS(4643), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4643), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_AT_AT_GT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2458] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(3012), - [sym_function_declaration_left] = STATE(6614), - [sym_value_declaration_left] = STATE(6614), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2458), [sym_block_comment] = STATE(2458), [sym_line_comment] = STATE(2458), [sym_compiler_directive_decl] = STATE(2458), [sym_fsi_directive_decl] = STATE(2458), [sym_preproc_line] = STATE(2458), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_AT_GT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2459] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2618), - [sym__method_defn] = STATE(4973), - [sym__property_defn] = STATE(4970), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2459), [sym_block_comment] = STATE(2459), [sym_line_comment] = STATE(2459), [sym_compiler_directive_decl] = STATE(2459), [sym_fsi_directive_decl] = STATE(2459), [sym_preproc_line] = STATE(2459), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2582), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4647), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4649), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_AT_AT_GT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2460] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym__function_or_value_defn_body] = STATE(5865), - [sym_function_declaration_left] = STATE(6551), - [sym_value_declaration_left] = STATE(6551), - [sym_access_modifier] = STATE(2668), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5138), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2884), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2460), [sym_block_comment] = STATE(2460), [sym_line_comment] = STATE(2460), [sym_compiler_directive_decl] = STATE(2460), [sym_fsi_directive_decl] = STATE(2460), [sym_preproc_line] = STATE(2460), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4475), - [anon_sym_mutable] = ACTIONS(4477), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_AT_AT_GT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2461] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_type_arguments] = STATE(2610), - [sym__method_defn] = STATE(5021), - [sym__property_defn] = STATE(5004), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2461), [sym_block_comment] = STATE(2461), [sym_line_comment] = STATE(2461), [sym_compiler_directive_decl] = STATE(2461), [sym_fsi_directive_decl] = STATE(2461), [sym_preproc_line] = STATE(2461), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2591), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4653), - [anon_sym_LT2] = ACTIONS(4557), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_AT_AT_GT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2462] = { [sym_xml_doc] = STATE(2462), @@ -310400,180 +314462,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2462), [sym_fsi_directive_decl] = STATE(2462), [sym_preproc_line] = STATE(2462), - [sym_identifier] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_open] = ACTIONS(3029), - [anon_sym_LBRACK_LT] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_and] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [aux_sym_access_modifier_token1] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_default] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [anon_sym_static] = ACTIONS(3029), - [anon_sym_member] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_abstract] = ACTIONS(3029), - [anon_sym_override] = ACTIONS(3029), - [anon_sym_val] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3031), - [anon_sym_POUNDload] = ACTIONS(3031), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__dedent] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_AT_AT_GT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2463] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2463), [sym_block_comment] = STATE(2463), [sym_line_comment] = STATE(2463), [sym_compiler_directive_decl] = STATE(2463), [sym_fsi_directive_decl] = STATE(2463), [sym_preproc_line] = STATE(2463), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4655), - [sym_identifier] = ACTIONS(4657), - [anon_sym_namespace] = ACTIONS(4657), - [anon_sym_module] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_LBRACK_LT] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_type] = ACTIONS(4657), - [anon_sym_do] = ACTIONS(4657), - [anon_sym_and] = ACTIONS(4657), - [anon_sym_let] = ACTIONS(4657), - [anon_sym_let_BANG] = ACTIONS(4655), - [aux_sym_access_modifier_token1] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_PIPE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_LBRACE_PIPE] = ACTIONS(4655), - [anon_sym_new] = ACTIONS(4657), - [anon_sym_return_BANG] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4657), - [anon_sym_yield_BANG] = ACTIONS(4655), - [anon_sym_lazy] = ACTIONS(4657), - [anon_sym_assert] = ACTIONS(4657), - [anon_sym_upcast] = ACTIONS(4657), - [anon_sym_downcast] = ACTIONS(4657), - [anon_sym_LT_AT] = ACTIONS(4657), - [anon_sym_LT_AT_AT] = ACTIONS(4655), - [anon_sym_for] = ACTIONS(4657), - [anon_sym_while] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_match] = ACTIONS(4657), - [anon_sym_match_BANG] = ACTIONS(4655), - [anon_sym_function] = ACTIONS(4657), - [anon_sym_use] = ACTIONS(4657), - [anon_sym_use_BANG] = ACTIONS(4655), - [anon_sym_do_BANG] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4657), - [anon_sym_static] = ACTIONS(4657), - [anon_sym_member] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_val] = ACTIONS(4657), - [aux_sym_char_token1] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_AT_DQUOTE] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [sym_bool] = ACTIONS(4657), - [sym_unit] = ACTIONS(4655), - [anon_sym_LPAREN_PIPE] = ACTIONS(4657), - [sym_op_identifier] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_PLUS_DOT] = ACTIONS(4655), - [anon_sym_DASH_DOT] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [aux_sym_prefix_op_token1] = ACTIONS(4655), - [sym_int] = ACTIONS(4657), - [sym_xint] = ACTIONS(4655), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4655), - [anon_sym_POUNDload] = ACTIONS(4655), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4655), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_DOT_DOT] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2464] = { [sym_xml_doc] = STATE(2464), @@ -310582,271 +314646,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2464), [sym_fsi_directive_decl] = STATE(2464), [sym_preproc_line] = STATE(2464), - [aux_sym_long_identifier_repeat1] = STATE(2455), - [sym_identifier] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_and] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [aux_sym_access_modifier_token1] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(4575), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_member] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_val] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_DOT_DOT] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2465] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2465), [sym_block_comment] = STATE(2465), [sym_line_comment] = STATE(2465), [sym_compiler_directive_decl] = STATE(2465), [sym_fsi_directive_decl] = STATE(2465), [sym_preproc_line] = STATE(2465), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(4516), - [anon_sym_open] = ACTIONS(4516), - [anon_sym_LBRACK_LT] = ACTIONS(4514), - [anon_sym_return] = ACTIONS(4516), - [anon_sym_type] = ACTIONS(4516), - [anon_sym_do] = ACTIONS(4516), - [anon_sym_and] = ACTIONS(4516), - [anon_sym_let] = ACTIONS(4516), - [anon_sym_let_BANG] = ACTIONS(4514), - [aux_sym_access_modifier_token1] = ACTIONS(4514), - [anon_sym_LPAREN] = ACTIONS(4516), - [anon_sym_null] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4516), - [anon_sym_LBRACK] = ACTIONS(4516), - [anon_sym_LBRACK_PIPE] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4516), - [anon_sym_LBRACE_PIPE] = ACTIONS(4514), - [anon_sym_with] = ACTIONS(4516), - [anon_sym_new] = ACTIONS(4516), - [anon_sym_return_BANG] = ACTIONS(4514), - [anon_sym_yield] = ACTIONS(4516), - [anon_sym_yield_BANG] = ACTIONS(4514), - [anon_sym_lazy] = ACTIONS(4516), - [anon_sym_assert] = ACTIONS(4516), - [anon_sym_upcast] = ACTIONS(4516), - [anon_sym_downcast] = ACTIONS(4516), - [anon_sym_LT_AT] = ACTIONS(4516), - [anon_sym_LT_AT_AT] = ACTIONS(4514), - [anon_sym_for] = ACTIONS(4516), - [anon_sym_while] = ACTIONS(4516), - [anon_sym_if] = ACTIONS(4516), - [anon_sym_fun] = ACTIONS(4516), - [anon_sym_DASH_GT] = ACTIONS(4512), - [anon_sym_try] = ACTIONS(4516), - [anon_sym_match] = ACTIONS(4516), - [anon_sym_match_BANG] = ACTIONS(4514), - [anon_sym_function] = ACTIONS(4516), - [anon_sym_use] = ACTIONS(4516), - [anon_sym_use_BANG] = ACTIONS(4514), - [anon_sym_do_BANG] = ACTIONS(4514), - [anon_sym_begin] = ACTIONS(4516), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4516), - [anon_sym_static] = ACTIONS(4516), - [anon_sym_member] = ACTIONS(4516), - [anon_sym_abstract] = ACTIONS(4516), - [anon_sym_override] = ACTIONS(4516), - [anon_sym_val] = ACTIONS(4516), - [aux_sym_char_token1] = ACTIONS(4514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4516), - [anon_sym_DQUOTE] = ACTIONS(4516), - [anon_sym_AT_DQUOTE] = ACTIONS(4514), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4514), - [sym_bool] = ACTIONS(4516), - [sym_unit] = ACTIONS(4514), - [anon_sym_LPAREN_PIPE] = ACTIONS(4516), - [sym_op_identifier] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4516), - [anon_sym_DASH] = ACTIONS(4516), - [anon_sym_PLUS_DOT] = ACTIONS(4514), - [anon_sym_DASH_DOT] = ACTIONS(4514), - [anon_sym_PERCENT] = ACTIONS(4514), - [anon_sym_AMP_AMP] = ACTIONS(4514), - [anon_sym_TILDE] = ACTIONS(4514), - [aux_sym_prefix_op_token1] = ACTIONS(4514), - [sym_int] = ACTIONS(4516), - [sym_xint] = ACTIONS(4514), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4514), - [anon_sym_POUNDload] = ACTIONS(4514), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4514), - [sym__dedent] = ACTIONS(4514), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_AT_GT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2466] = { - [sym_type_arguments] = STATE(2467), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2466), [sym_block_comment] = STATE(2466), [sym_line_comment] = STATE(2466), [sym_compiler_directive_decl] = STATE(2466), [sym_fsi_directive_decl] = STATE(2466), [sym_preproc_line] = STATE(2466), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4659), - [sym_identifier] = ACTIONS(4661), - [anon_sym_namespace] = ACTIONS(4661), - [anon_sym_module] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_LBRACK_LT] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_type] = ACTIONS(4661), - [anon_sym_do] = ACTIONS(4661), - [anon_sym_and] = ACTIONS(4661), - [anon_sym_let] = ACTIONS(4661), - [anon_sym_let_BANG] = ACTIONS(4659), - [aux_sym_access_modifier_token1] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_PIPE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_LBRACE_PIPE] = ACTIONS(4659), - [anon_sym_new] = ACTIONS(4661), - [anon_sym_return_BANG] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4661), - [anon_sym_yield_BANG] = ACTIONS(4659), - [anon_sym_lazy] = ACTIONS(4661), - [anon_sym_assert] = ACTIONS(4661), - [anon_sym_upcast] = ACTIONS(4661), - [anon_sym_downcast] = ACTIONS(4661), - [anon_sym_LT_AT] = ACTIONS(4661), - [anon_sym_LT_AT_AT] = ACTIONS(4659), - [anon_sym_for] = ACTIONS(4661), - [anon_sym_while] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_match] = ACTIONS(4661), - [anon_sym_match_BANG] = ACTIONS(4659), - [anon_sym_function] = ACTIONS(4661), - [anon_sym_use] = ACTIONS(4661), - [anon_sym_use_BANG] = ACTIONS(4659), - [anon_sym_do_BANG] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4661), - [anon_sym_static] = ACTIONS(4661), - [anon_sym_member] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_val] = ACTIONS(4661), - [aux_sym_char_token1] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_AT_DQUOTE] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [sym_bool] = ACTIONS(4661), - [sym_unit] = ACTIONS(4659), - [anon_sym_LPAREN_PIPE] = ACTIONS(4661), - [sym_op_identifier] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_PLUS_DOT] = ACTIONS(4659), - [anon_sym_DASH_DOT] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [aux_sym_prefix_op_token1] = ACTIONS(4659), - [sym_int] = ACTIONS(4661), - [sym_xint] = ACTIONS(4659), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4659), - [anon_sym_POUNDload] = ACTIONS(4659), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4659), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [anon_sym_POUNDendif] = ACTIONS(4173), + [sym__newline] = ACTIONS(3546), }, [2467] = { [sym_xml_doc] = STATE(2467), @@ -310855,88 +314922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2467), [sym_fsi_directive_decl] = STATE(2467), [sym_preproc_line] = STATE(2467), - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3025), - [anon_sym_namespace] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_open] = ACTIONS(3025), - [anon_sym_LBRACK_LT] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_and] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [aux_sym_access_modifier_token1] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3025), - [anon_sym_static] = ACTIONS(3025), - [anon_sym_member] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3025), - [anon_sym_override] = ACTIONS(3025), - [anon_sym_val] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3027), - [anon_sym_POUNDload] = ACTIONS(3027), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_AT_GT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2468] = { [sym_xml_doc] = STATE(2468), @@ -310945,178 +315014,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2468), [sym_fsi_directive_decl] = STATE(2468), [sym_preproc_line] = STATE(2468), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [aux_sym_access_modifier_token1] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_member] = ACTIONS(2900), - [anon_sym_interface] = ACTIONS(2900), - [anon_sym_abstract] = ACTIONS(2900), - [anon_sym_override] = ACTIONS(2900), - [anon_sym_val] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2469] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2469), [sym_block_comment] = STATE(2469), [sym_line_comment] = STATE(2469), [sym_compiler_directive_decl] = STATE(2469), [sym_fsi_directive_decl] = STATE(2469), [sym_preproc_line] = STATE(2469), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4657), - [anon_sym_module] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_LBRACK_LT] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_type] = ACTIONS(4657), - [anon_sym_do] = ACTIONS(4657), - [anon_sym_and] = ACTIONS(4657), - [anon_sym_let] = ACTIONS(4657), - [anon_sym_let_BANG] = ACTIONS(4655), - [aux_sym_access_modifier_token1] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_PIPE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_LBRACE_PIPE] = ACTIONS(4655), - [anon_sym_new] = ACTIONS(4657), - [anon_sym_return_BANG] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4657), - [anon_sym_yield_BANG] = ACTIONS(4655), - [anon_sym_lazy] = ACTIONS(4657), - [anon_sym_assert] = ACTIONS(4657), - [anon_sym_upcast] = ACTIONS(4657), - [anon_sym_downcast] = ACTIONS(4657), - [anon_sym_LT_AT] = ACTIONS(4657), - [anon_sym_LT_AT_AT] = ACTIONS(4655), - [anon_sym_for] = ACTIONS(4657), - [anon_sym_while] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_match] = ACTIONS(4657), - [anon_sym_match_BANG] = ACTIONS(4655), - [anon_sym_function] = ACTIONS(4657), - [anon_sym_use] = ACTIONS(4657), - [anon_sym_use_BANG] = ACTIONS(4655), - [anon_sym_do_BANG] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4657), - [anon_sym_static] = ACTIONS(4657), - [anon_sym_member] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_val] = ACTIONS(4657), - [aux_sym_char_token1] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_AT_DQUOTE] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [sym_bool] = ACTIONS(4657), - [sym_unit] = ACTIONS(4655), - [anon_sym_LPAREN_PIPE] = ACTIONS(4657), - [sym_op_identifier] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_PLUS_DOT] = ACTIONS(4655), - [anon_sym_DASH_DOT] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [aux_sym_prefix_op_token1] = ACTIONS(4655), - [sym_int] = ACTIONS(4657), - [sym_xint] = ACTIONS(4655), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4655), - [anon_sym_POUNDload] = ACTIONS(4655), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4655), - [sym__dedent] = ACTIONS(4655), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_AT_GT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2470] = { [sym_xml_doc] = STATE(2470), @@ -311125,178 +315198,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2470), [sym_fsi_directive_decl] = STATE(2470), [sym_preproc_line] = STATE(2470), - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3033), - [anon_sym_namespace] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_open] = ACTIONS(3033), - [anon_sym_LBRACK_LT] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_and] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [aux_sym_access_modifier_token1] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_default] = ACTIONS(3033), - [anon_sym_static] = ACTIONS(3033), - [anon_sym_member] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_override] = ACTIONS(3033), - [anon_sym_val] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3039), - [anon_sym_POUNDload] = ACTIONS(3039), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_AT_GT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2471] = { - [sym_attributes] = STATE(5185), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7470), - [sym_member_defn] = STATE(2822), - [sym_additional_constr_defn] = STATE(2826), [sym_xml_doc] = STATE(2471), [sym_block_comment] = STATE(2471), [sym_line_comment] = STATE(2471), [sym_compiler_directive_decl] = STATE(2471), [sym_fsi_directive_decl] = STATE(2471), [sym_preproc_line] = STATE(2471), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(4645), - [anon_sym_module] = ACTIONS(4645), - [anon_sym_open] = ACTIONS(4645), - [anon_sym_LBRACK_LT] = ACTIONS(4643), - [anon_sym_return] = ACTIONS(4645), - [anon_sym_type] = ACTIONS(4645), - [anon_sym_do] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_let] = ACTIONS(4645), - [anon_sym_let_BANG] = ACTIONS(4643), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4645), - [anon_sym_null] = ACTIONS(4645), - [anon_sym_AMP] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_LBRACK_PIPE] = ACTIONS(4643), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_LBRACE_PIPE] = ACTIONS(4643), - [anon_sym_new] = ACTIONS(4645), - [anon_sym_return_BANG] = ACTIONS(4643), - [anon_sym_yield] = ACTIONS(4645), - [anon_sym_yield_BANG] = ACTIONS(4643), - [anon_sym_lazy] = ACTIONS(4645), - [anon_sym_assert] = ACTIONS(4645), - [anon_sym_upcast] = ACTIONS(4645), - [anon_sym_downcast] = ACTIONS(4645), - [anon_sym_LT_AT] = ACTIONS(4645), - [anon_sym_LT_AT_AT] = ACTIONS(4643), - [anon_sym_for] = ACTIONS(4645), - [anon_sym_while] = ACTIONS(4645), - [anon_sym_if] = ACTIONS(4645), - [anon_sym_fun] = ACTIONS(4645), - [anon_sym_try] = ACTIONS(4645), - [anon_sym_match] = ACTIONS(4645), - [anon_sym_match_BANG] = ACTIONS(4643), - [anon_sym_function] = ACTIONS(4645), - [anon_sym_use] = ACTIONS(4645), - [anon_sym_use_BANG] = ACTIONS(4643), - [anon_sym_do_BANG] = ACTIONS(4643), - [anon_sym_begin] = ACTIONS(4645), - [anon_sym_default] = ACTIONS(4663), - [anon_sym_static] = ACTIONS(4665), - [anon_sym_member] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4669), - [anon_sym_override] = ACTIONS(4663), - [anon_sym_val] = ACTIONS(4671), - [aux_sym_char_token1] = ACTIONS(4643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4645), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_AT_DQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4643), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4643), - [sym_bool] = ACTIONS(4645), - [sym_unit] = ACTIONS(4643), - [anon_sym_LPAREN_PIPE] = ACTIONS(4645), - [sym_op_identifier] = ACTIONS(4643), - [anon_sym_PLUS] = ACTIONS(4645), - [anon_sym_DASH] = ACTIONS(4645), - [anon_sym_PLUS_DOT] = ACTIONS(4643), - [anon_sym_DASH_DOT] = ACTIONS(4643), - [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_AMP_AMP] = ACTIONS(4643), - [anon_sym_TILDE] = ACTIONS(4643), - [aux_sym_prefix_op_token1] = ACTIONS(4643), - [sym_int] = ACTIONS(4645), - [sym_xint] = ACTIONS(4643), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4643), - [anon_sym_POUNDload] = ACTIONS(4643), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4643), - [sym__dedent] = ACTIONS(4643), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_AT_GT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2472] = { [sym_xml_doc] = STATE(2472), @@ -311305,268 +315382,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2472), [sym_fsi_directive_decl] = STATE(2472), [sym_preproc_line] = STATE(2472), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3047), - [anon_sym_namespace] = ACTIONS(3047), - [anon_sym_module] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_LBRACK_LT] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_and] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [aux_sym_access_modifier_token1] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3047), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_member] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_val] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3049), - [anon_sym_POUNDload] = ACTIONS(3049), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_AT_GT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2473] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2473), [sym_block_comment] = STATE(2473), [sym_line_comment] = STATE(2473), [sym_compiler_directive_decl] = STATE(2473), [sym_fsi_directive_decl] = STATE(2473), [sym_preproc_line] = STATE(2473), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_open] = ACTIONS(4586), - [anon_sym_LBRACK_LT] = ACTIONS(4584), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_type] = ACTIONS(4586), - [anon_sym_do] = ACTIONS(4586), - [anon_sym_and] = ACTIONS(4586), - [anon_sym_let] = ACTIONS(4586), - [anon_sym_let_BANG] = ACTIONS(4584), - [aux_sym_access_modifier_token1] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4586), - [anon_sym_null] = ACTIONS(4586), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4586), - [anon_sym_LBRACK_PIPE] = ACTIONS(4584), - [anon_sym_LBRACE] = ACTIONS(4586), - [anon_sym_LBRACE_PIPE] = ACTIONS(4584), - [anon_sym_new] = ACTIONS(4586), - [anon_sym_return_BANG] = ACTIONS(4584), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_yield_BANG] = ACTIONS(4584), - [anon_sym_lazy] = ACTIONS(4586), - [anon_sym_assert] = ACTIONS(4586), - [anon_sym_upcast] = ACTIONS(4586), - [anon_sym_downcast] = ACTIONS(4586), - [anon_sym_LT_AT] = ACTIONS(4586), - [anon_sym_LT_AT_AT] = ACTIONS(4584), - [anon_sym_for] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_if] = ACTIONS(4586), - [anon_sym_fun] = ACTIONS(4586), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4586), - [anon_sym_match] = ACTIONS(4586), - [anon_sym_match_BANG] = ACTIONS(4584), - [anon_sym_function] = ACTIONS(4586), - [anon_sym_use] = ACTIONS(4586), - [anon_sym_use_BANG] = ACTIONS(4584), - [anon_sym_do_BANG] = ACTIONS(4584), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4586), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_member] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_override] = ACTIONS(4586), - [anon_sym_val] = ACTIONS(4586), - [aux_sym_char_token1] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4586), - [anon_sym_DQUOTE] = ACTIONS(4586), - [anon_sym_AT_DQUOTE] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [sym_bool] = ACTIONS(4586), - [sym_unit] = ACTIONS(4584), - [anon_sym_LPAREN_PIPE] = ACTIONS(4586), - [sym_op_identifier] = ACTIONS(4584), - [anon_sym_PLUS] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_PLUS_DOT] = ACTIONS(4584), - [anon_sym_DASH_DOT] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_AMP_AMP] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [aux_sym_prefix_op_token1] = ACTIONS(4584), - [sym_int] = ACTIONS(4586), - [sym_xint] = ACTIONS(4584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4584), - [anon_sym_POUNDload] = ACTIONS(4584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4584), - [sym__dedent] = ACTIONS(4584), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_AT_GT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2474] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2474), [sym_block_comment] = STATE(2474), [sym_line_comment] = STATE(2474), [sym_compiler_directive_decl] = STATE(2474), [sym_fsi_directive_decl] = STATE(2474), [sym_preproc_line] = STATE(2474), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4661), - [anon_sym_module] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_LBRACK_LT] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_type] = ACTIONS(4661), - [anon_sym_do] = ACTIONS(4661), - [anon_sym_and] = ACTIONS(4661), - [anon_sym_let] = ACTIONS(4661), - [anon_sym_let_BANG] = ACTIONS(4659), - [aux_sym_access_modifier_token1] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_PIPE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_LBRACE_PIPE] = ACTIONS(4659), - [anon_sym_new] = ACTIONS(4661), - [anon_sym_return_BANG] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4661), - [anon_sym_yield_BANG] = ACTIONS(4659), - [anon_sym_lazy] = ACTIONS(4661), - [anon_sym_assert] = ACTIONS(4661), - [anon_sym_upcast] = ACTIONS(4661), - [anon_sym_downcast] = ACTIONS(4661), - [anon_sym_LT_AT] = ACTIONS(4661), - [anon_sym_LT_AT_AT] = ACTIONS(4659), - [anon_sym_for] = ACTIONS(4661), - [anon_sym_while] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_match] = ACTIONS(4661), - [anon_sym_match_BANG] = ACTIONS(4659), - [anon_sym_function] = ACTIONS(4661), - [anon_sym_use] = ACTIONS(4661), - [anon_sym_use_BANG] = ACTIONS(4659), - [anon_sym_do_BANG] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4661), - [anon_sym_static] = ACTIONS(4661), - [anon_sym_member] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_val] = ACTIONS(4661), - [aux_sym_char_token1] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_AT_DQUOTE] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [sym_bool] = ACTIONS(4661), - [sym_unit] = ACTIONS(4659), - [anon_sym_LPAREN_PIPE] = ACTIONS(4661), - [sym_op_identifier] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_PLUS_DOT] = ACTIONS(4659), - [anon_sym_DASH_DOT] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [aux_sym_prefix_op_token1] = ACTIONS(4659), - [sym_int] = ACTIONS(4661), - [sym_xint] = ACTIONS(4659), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4659), - [anon_sym_POUNDload] = ACTIONS(4659), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4659), - [sym__dedent] = ACTIONS(4659), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_AT_GT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2475] = { [sym_xml_doc] = STATE(2475), @@ -311575,88 +315658,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2475), [sym_fsi_directive_decl] = STATE(2475), [sym_preproc_line] = STATE(2475), - [aux_sym__compound_type_repeat1] = STATE(2475), - [sym_identifier] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_open] = ACTIONS(2810), - [anon_sym_LBRACK_LT] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_and] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [aux_sym_access_modifier_token1] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_member] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_val] = ACTIONS(2810), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2808), - [anon_sym_POUNDload] = ACTIONS(2808), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_AT_GT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2476] = { [sym_xml_doc] = STATE(2476), @@ -311665,88 +315750,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2476), [sym_fsi_directive_decl] = STATE(2476), [sym_preproc_line] = STATE(2476), - [sym_identifier] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_and] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [aux_sym_access_modifier_token1] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(4676), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_member] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_val] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_AT_GT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2477] = { [sym_xml_doc] = STATE(2477), @@ -311755,88 +315842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2477), [sym_fsi_directive_decl] = STATE(2477), [sym_preproc_line] = STATE(2477), - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3003), - [anon_sym_namespace] = ACTIONS(3003), - [anon_sym_module] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_LBRACK_LT] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_type] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_and] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [aux_sym_access_modifier_token1] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_member] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_val] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3005), - [anon_sym_POUNDload] = ACTIONS(3005), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_AT_GT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2478] = { [sym_xml_doc] = STATE(2478), @@ -311845,448 +315934,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2478), [sym_fsi_directive_decl] = STATE(2478), [sym_preproc_line] = STATE(2478), - [ts_builtin_sym_end] = ACTIONS(3045), - [sym_identifier] = ACTIONS(3043), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_LBRACK_LT] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_and] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [aux_sym_access_modifier_token1] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_member] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_val] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3045), - [anon_sym_POUNDload] = ACTIONS(3045), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_AT_GT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2479] = { - [sym_attributes] = STATE(5185), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7470), - [sym_member_defn] = STATE(2822), - [sym_additional_constr_defn] = STATE(2826), [sym_xml_doc] = STATE(2479), [sym_block_comment] = STATE(2479), [sym_line_comment] = STATE(2479), [sym_compiler_directive_decl] = STATE(2479), [sym_fsi_directive_decl] = STATE(2479), [sym_preproc_line] = STATE(2479), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4563), - [anon_sym_module] = ACTIONS(4563), - [anon_sym_open] = ACTIONS(4563), - [anon_sym_LBRACK_LT] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4563), - [anon_sym_type] = ACTIONS(4563), - [anon_sym_do] = ACTIONS(4563), - [anon_sym_and] = ACTIONS(4563), - [anon_sym_let] = ACTIONS(4563), - [anon_sym_let_BANG] = ACTIONS(4561), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_null] = ACTIONS(4563), - [anon_sym_AMP] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_LBRACK_PIPE] = ACTIONS(4561), - [anon_sym_LBRACE] = ACTIONS(4563), - [anon_sym_LBRACE_PIPE] = ACTIONS(4561), - [anon_sym_new] = ACTIONS(4563), - [anon_sym_return_BANG] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4563), - [anon_sym_yield_BANG] = ACTIONS(4561), - [anon_sym_lazy] = ACTIONS(4563), - [anon_sym_assert] = ACTIONS(4563), - [anon_sym_upcast] = ACTIONS(4563), - [anon_sym_downcast] = ACTIONS(4563), - [anon_sym_LT_AT] = ACTIONS(4563), - [anon_sym_LT_AT_AT] = ACTIONS(4561), - [anon_sym_for] = ACTIONS(4563), - [anon_sym_while] = ACTIONS(4563), - [anon_sym_if] = ACTIONS(4563), - [anon_sym_fun] = ACTIONS(4563), - [anon_sym_try] = ACTIONS(4563), - [anon_sym_match] = ACTIONS(4563), - [anon_sym_match_BANG] = ACTIONS(4561), - [anon_sym_function] = ACTIONS(4563), - [anon_sym_use] = ACTIONS(4563), - [anon_sym_use_BANG] = ACTIONS(4561), - [anon_sym_do_BANG] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4563), - [anon_sym_default] = ACTIONS(4663), - [anon_sym_static] = ACTIONS(4665), - [anon_sym_member] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4669), - [anon_sym_override] = ACTIONS(4663), - [anon_sym_val] = ACTIONS(4671), - [aux_sym_char_token1] = ACTIONS(4561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4563), - [anon_sym_DQUOTE] = ACTIONS(4563), - [anon_sym_AT_DQUOTE] = ACTIONS(4561), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4561), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4561), - [sym_bool] = ACTIONS(4563), - [sym_unit] = ACTIONS(4561), - [anon_sym_LPAREN_PIPE] = ACTIONS(4563), - [sym_op_identifier] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4563), - [anon_sym_DASH] = ACTIONS(4563), - [anon_sym_PLUS_DOT] = ACTIONS(4561), - [anon_sym_DASH_DOT] = ACTIONS(4561), - [anon_sym_PERCENT] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_TILDE] = ACTIONS(4561), - [aux_sym_prefix_op_token1] = ACTIONS(4561), - [sym_int] = ACTIONS(4563), - [sym_xint] = ACTIONS(4561), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4561), - [anon_sym_POUNDload] = ACTIONS(4561), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4561), - [sym__dedent] = ACTIONS(4561), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_AT_GT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2480] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2480), [sym_block_comment] = STATE(2480), [sym_line_comment] = STATE(2480), [sym_compiler_directive_decl] = STATE(2480), [sym_fsi_directive_decl] = STATE(2480), [sym_preproc_line] = STATE(2480), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4626), - [anon_sym_module] = ACTIONS(4626), - [anon_sym_open] = ACTIONS(4626), - [anon_sym_LBRACK_LT] = ACTIONS(4624), - [anon_sym_return] = ACTIONS(4626), - [anon_sym_type] = ACTIONS(4626), - [anon_sym_do] = ACTIONS(4626), - [anon_sym_and] = ACTIONS(4626), - [anon_sym_let] = ACTIONS(4626), - [anon_sym_let_BANG] = ACTIONS(4624), - [aux_sym_access_modifier_token1] = ACTIONS(4624), - [anon_sym_LPAREN] = ACTIONS(4626), - [anon_sym_null] = ACTIONS(4626), - [anon_sym_AMP] = ACTIONS(4626), - [anon_sym_LBRACK] = ACTIONS(4626), - [anon_sym_LBRACK_PIPE] = ACTIONS(4624), - [anon_sym_LBRACE] = ACTIONS(4626), - [anon_sym_LBRACE_PIPE] = ACTIONS(4624), - [anon_sym_new] = ACTIONS(4626), - [anon_sym_return_BANG] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4626), - [anon_sym_yield_BANG] = ACTIONS(4624), - [anon_sym_lazy] = ACTIONS(4626), - [anon_sym_assert] = ACTIONS(4626), - [anon_sym_upcast] = ACTIONS(4626), - [anon_sym_downcast] = ACTIONS(4626), - [anon_sym_LT_AT] = ACTIONS(4626), - [anon_sym_LT_AT_AT] = ACTIONS(4624), - [anon_sym_for] = ACTIONS(4626), - [anon_sym_while] = ACTIONS(4626), - [anon_sym_if] = ACTIONS(4626), - [anon_sym_fun] = ACTIONS(4626), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4626), - [anon_sym_match] = ACTIONS(4626), - [anon_sym_match_BANG] = ACTIONS(4624), - [anon_sym_function] = ACTIONS(4626), - [anon_sym_use] = ACTIONS(4626), - [anon_sym_use_BANG] = ACTIONS(4624), - [anon_sym_do_BANG] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4626), - [anon_sym_static] = ACTIONS(4626), - [anon_sym_member] = ACTIONS(4626), - [anon_sym_abstract] = ACTIONS(4626), - [anon_sym_override] = ACTIONS(4626), - [anon_sym_val] = ACTIONS(4626), - [aux_sym_char_token1] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4626), - [anon_sym_DQUOTE] = ACTIONS(4626), - [anon_sym_AT_DQUOTE] = ACTIONS(4624), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4624), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4624), - [sym_bool] = ACTIONS(4626), - [sym_unit] = ACTIONS(4624), - [anon_sym_LPAREN_PIPE] = ACTIONS(4626), - [sym_op_identifier] = ACTIONS(4624), - [anon_sym_PLUS] = ACTIONS(4626), - [anon_sym_DASH] = ACTIONS(4626), - [anon_sym_PLUS_DOT] = ACTIONS(4624), - [anon_sym_DASH_DOT] = ACTIONS(4624), - [anon_sym_PERCENT] = ACTIONS(4624), - [anon_sym_AMP_AMP] = ACTIONS(4624), - [anon_sym_TILDE] = ACTIONS(4624), - [aux_sym_prefix_op_token1] = ACTIONS(4624), - [sym_int] = ACTIONS(4626), - [sym_xint] = ACTIONS(4624), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4624), - [anon_sym_POUNDload] = ACTIONS(4624), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4624), - [sym__dedent] = ACTIONS(4624), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_AT_AT_GT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2481] = { - [sym_attributes] = STATE(5185), - [sym_attribute_set] = STATE(4327), - [sym_access_modifier] = STATE(7470), - [sym_member_defn] = STATE(2822), - [sym_additional_constr_defn] = STATE(2826), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(3495), + [sym__function_or_value_defn_body] = STATE(3467), + [sym_function_declaration_left] = STATE(7112), + [sym_value_declaration_left] = STATE(7112), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2481), [sym_block_comment] = STATE(2481), [sym_line_comment] = STATE(2481), [sym_compiler_directive_decl] = STATE(2481), [sym_fsi_directive_decl] = STATE(2481), [sym_preproc_line] = STATE(2481), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym__member_defns_repeat1] = STATE(2481), - [sym_identifier] = ACTIONS(4594), - [anon_sym_module] = ACTIONS(4594), - [anon_sym_open] = ACTIONS(4594), - [anon_sym_LBRACK_LT] = ACTIONS(4596), - [anon_sym_return] = ACTIONS(4594), - [anon_sym_type] = ACTIONS(4594), - [anon_sym_do] = ACTIONS(4594), - [anon_sym_and] = ACTIONS(4594), - [anon_sym_let] = ACTIONS(4594), - [anon_sym_let_BANG] = ACTIONS(4592), - [aux_sym_access_modifier_token1] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4594), - [anon_sym_null] = ACTIONS(4594), - [anon_sym_AMP] = ACTIONS(4594), - [anon_sym_LBRACK] = ACTIONS(4594), - [anon_sym_LBRACK_PIPE] = ACTIONS(4592), - [anon_sym_LBRACE] = ACTIONS(4594), - [anon_sym_LBRACE_PIPE] = ACTIONS(4592), - [anon_sym_new] = ACTIONS(4678), - [anon_sym_return_BANG] = ACTIONS(4592), - [anon_sym_yield] = ACTIONS(4594), - [anon_sym_yield_BANG] = ACTIONS(4592), - [anon_sym_lazy] = ACTIONS(4594), - [anon_sym_assert] = ACTIONS(4594), - [anon_sym_upcast] = ACTIONS(4594), - [anon_sym_downcast] = ACTIONS(4594), - [anon_sym_LT_AT] = ACTIONS(4594), - [anon_sym_LT_AT_AT] = ACTIONS(4592), - [anon_sym_for] = ACTIONS(4594), - [anon_sym_while] = ACTIONS(4594), - [anon_sym_if] = ACTIONS(4594), - [anon_sym_fun] = ACTIONS(4594), - [anon_sym_try] = ACTIONS(4594), - [anon_sym_match] = ACTIONS(4594), - [anon_sym_match_BANG] = ACTIONS(4592), - [anon_sym_function] = ACTIONS(4594), - [anon_sym_use] = ACTIONS(4594), - [anon_sym_use_BANG] = ACTIONS(4592), - [anon_sym_do_BANG] = ACTIONS(4592), - [anon_sym_begin] = ACTIONS(4594), - [anon_sym_default] = ACTIONS(4681), - [anon_sym_static] = ACTIONS(4684), - [anon_sym_member] = ACTIONS(4687), - [anon_sym_abstract] = ACTIONS(4690), - [anon_sym_override] = ACTIONS(4681), - [anon_sym_val] = ACTIONS(4693), - [aux_sym_char_token1] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4594), - [anon_sym_DQUOTE] = ACTIONS(4594), - [anon_sym_AT_DQUOTE] = ACTIONS(4592), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4592), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4592), - [sym_bool] = ACTIONS(4594), - [sym_unit] = ACTIONS(4592), - [anon_sym_LPAREN_PIPE] = ACTIONS(4594), - [sym_op_identifier] = ACTIONS(4592), - [anon_sym_PLUS] = ACTIONS(4594), - [anon_sym_DASH] = ACTIONS(4594), - [anon_sym_PLUS_DOT] = ACTIONS(4592), - [anon_sym_DASH_DOT] = ACTIONS(4592), - [anon_sym_PERCENT] = ACTIONS(4592), - [anon_sym_AMP_AMP] = ACTIONS(4592), - [anon_sym_TILDE] = ACTIONS(4592), - [aux_sym_prefix_op_token1] = ACTIONS(4592), - [sym_int] = ACTIONS(4594), - [sym_xint] = ACTIONS(4592), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4592), - [anon_sym_POUNDload] = ACTIONS(4592), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4592), - [sym__dedent] = ACTIONS(4592), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2482] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(4877), + [sym_function_declaration_left] = STATE(6935), + [sym_value_declaration_left] = STATE(6935), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2482), [sym_block_comment] = STATE(2482), [sym_line_comment] = STATE(2482), [sym_compiler_directive_decl] = STATE(2482), [sym_fsi_directive_decl] = STATE(2482), [sym_preproc_line] = STATE(2482), - [aux_sym__compound_type_repeat1] = STATE(2475), - [sym_identifier] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_open] = ACTIONS(2970), - [anon_sym_LBRACK_LT] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_and] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [aux_sym_access_modifier_token1] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_member] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_val] = ACTIONS(2970), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2972), - [anon_sym_POUNDload] = ACTIONS(2972), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__dedent] = ACTIONS(2972), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4963), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2483] = { [sym_xml_doc] = STATE(2483), @@ -312295,88 +316394,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2483), [sym_fsi_directive_decl] = STATE(2483), [sym_preproc_line] = STATE(2483), - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2990), - [anon_sym_namespace] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_LBRACK_LT] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_and] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [aux_sym_access_modifier_token1] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(4696), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_member] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_val] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2992), - [anon_sym_POUNDload] = ACTIONS(2992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_AT_GT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2484] = { [sym_xml_doc] = STATE(2484), @@ -312385,178 +316486,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2484), [sym_fsi_directive_decl] = STATE(2484), [sym_preproc_line] = STATE(2484), - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3007), - [anon_sym_namespace] = ACTIONS(3007), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_LBRACK_LT] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_and] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [aux_sym_access_modifier_token1] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_member] = ACTIONS(3007), - [anon_sym_interface] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_val] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3009), - [anon_sym_POUNDload] = ACTIONS(3009), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_AT_GT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2485] = { - [sym_type_arguments] = STATE(2495), - [sym_long_identifier] = STATE(2499), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(3353), + [sym__function_or_value_defn_body] = STATE(3249), + [sym_function_declaration_left] = STATE(6579), + [sym_value_declaration_left] = STATE(6579), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2485), [sym_block_comment] = STATE(2485), [sym_line_comment] = STATE(2485), [sym_compiler_directive_decl] = STATE(2485), [sym_fsi_directive_decl] = STATE(2485), [sym_preproc_line] = STATE(2485), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4634), - [anon_sym_module] = ACTIONS(4634), - [anon_sym_open] = ACTIONS(4634), - [anon_sym_LBRACK_LT] = ACTIONS(4632), - [anon_sym_return] = ACTIONS(4634), - [anon_sym_type] = ACTIONS(4634), - [anon_sym_do] = ACTIONS(4634), - [anon_sym_and] = ACTIONS(4634), - [anon_sym_let] = ACTIONS(4634), - [anon_sym_let_BANG] = ACTIONS(4632), - [aux_sym_access_modifier_token1] = ACTIONS(4632), - [anon_sym_LPAREN] = ACTIONS(4634), - [anon_sym_null] = ACTIONS(4634), - [anon_sym_AMP] = ACTIONS(4634), - [anon_sym_LBRACK] = ACTIONS(4634), - [anon_sym_LBRACK_PIPE] = ACTIONS(4632), - [anon_sym_LBRACE] = ACTIONS(4634), - [anon_sym_LBRACE_PIPE] = ACTIONS(4632), - [anon_sym_new] = ACTIONS(4634), - [anon_sym_return_BANG] = ACTIONS(4632), - [anon_sym_yield] = ACTIONS(4634), - [anon_sym_yield_BANG] = ACTIONS(4632), - [anon_sym_lazy] = ACTIONS(4634), - [anon_sym_assert] = ACTIONS(4634), - [anon_sym_upcast] = ACTIONS(4634), - [anon_sym_downcast] = ACTIONS(4634), - [anon_sym_LT_AT] = ACTIONS(4634), - [anon_sym_LT_AT_AT] = ACTIONS(4632), - [anon_sym_for] = ACTIONS(4634), - [anon_sym_while] = ACTIONS(4634), - [anon_sym_if] = ACTIONS(4634), - [anon_sym_fun] = ACTIONS(4634), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4634), - [anon_sym_match] = ACTIONS(4634), - [anon_sym_match_BANG] = ACTIONS(4632), - [anon_sym_function] = ACTIONS(4634), - [anon_sym_use] = ACTIONS(4634), - [anon_sym_use_BANG] = ACTIONS(4632), - [anon_sym_do_BANG] = ACTIONS(4632), - [anon_sym_begin] = ACTIONS(4634), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_default] = ACTIONS(4634), - [anon_sym_static] = ACTIONS(4634), - [anon_sym_member] = ACTIONS(4634), - [anon_sym_abstract] = ACTIONS(4634), - [anon_sym_override] = ACTIONS(4634), - [anon_sym_val] = ACTIONS(4634), - [aux_sym_char_token1] = ACTIONS(4632), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(4634), - [anon_sym_AT_DQUOTE] = ACTIONS(4632), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4632), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4632), - [sym_bool] = ACTIONS(4634), - [sym_unit] = ACTIONS(4632), - [anon_sym_LPAREN_PIPE] = ACTIONS(4634), - [sym_op_identifier] = ACTIONS(4632), - [anon_sym_PLUS] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_PLUS_DOT] = ACTIONS(4632), - [anon_sym_DASH_DOT] = ACTIONS(4632), - [anon_sym_PERCENT] = ACTIONS(4632), - [anon_sym_AMP_AMP] = ACTIONS(4632), - [anon_sym_TILDE] = ACTIONS(4632), - [aux_sym_prefix_op_token1] = ACTIONS(4632), - [sym_int] = ACTIONS(4634), - [sym_xint] = ACTIONS(4632), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4632), - [anon_sym_POUNDload] = ACTIONS(4632), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4632), - [sym__dedent] = ACTIONS(4632), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2486] = { [sym_xml_doc] = STATE(2486), @@ -312565,88 +316670,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2486), [sym_fsi_directive_decl] = STATE(2486), [sym_preproc_line] = STATE(2486), - [sym_identifier] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_LBRACK_LT] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_and] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [aux_sym_access_modifier_token1] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_member] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_val] = ACTIONS(2924), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2926), - [anon_sym_POUNDload] = ACTIONS(2926), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [anon_sym_POUNDendif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2487] = { [sym_xml_doc] = STATE(2487), @@ -312655,88 +316762,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2487), [sym_fsi_directive_decl] = STATE(2487), [sym_preproc_line] = STATE(2487), - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3021), - [anon_sym_namespace] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_LBRACK_LT] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [aux_sym_access_modifier_token1] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_member] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_abstract] = ACTIONS(3021), - [anon_sym_override] = ACTIONS(3021), - [anon_sym_val] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3023), - [anon_sym_POUNDload] = ACTIONS(3023), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_AT_GT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2488] = { [sym_xml_doc] = STATE(2488), @@ -312745,88 +316854,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2488), [sym_fsi_directive_decl] = STATE(2488), [sym_preproc_line] = STATE(2488), - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3013), - [anon_sym_namespace] = ACTIONS(3013), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_open] = ACTIONS(3013), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_and] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [aux_sym_access_modifier_token1] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3013), - [anon_sym_static] = ACTIONS(3013), - [anon_sym_member] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_override] = ACTIONS(3013), - [anon_sym_val] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_AT_GT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2489] = { [sym_xml_doc] = STATE(2489), @@ -312835,88 +316946,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2489), [sym_fsi_directive_decl] = STATE(2489), [sym_preproc_line] = STATE(2489), - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3017), - [anon_sym_namespace] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [aux_sym_access_modifier_token1] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3017), - [anon_sym_static] = ACTIONS(3017), - [anon_sym_member] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_abstract] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3017), - [anon_sym_val] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3019), - [anon_sym_POUNDload] = ACTIONS(3019), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_AT_GT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2490] = { [sym_xml_doc] = STATE(2490), @@ -312925,88 +317038,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2490), [sym_fsi_directive_decl] = STATE(2490), [sym_preproc_line] = STATE(2490), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2986), - [anon_sym_namespace] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_and] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [aux_sym_access_modifier_token1] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_member] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_val] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_AT_GT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2491] = { [sym_xml_doc] = STATE(2491), @@ -313015,87 +317130,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2491), [sym_fsi_directive_decl] = STATE(2491), [sym_preproc_line] = STATE(2491), - [sym_identifier] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_LBRACK_LT] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_and] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [aux_sym_access_modifier_token1] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_member] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3043), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_val] = ACTIONS(3043), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3045), - [anon_sym_POUNDload] = ACTIONS(3045), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__dedent] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_AT_GT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2492] = { [sym_xml_doc] = STATE(2492), @@ -313104,87 +317222,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2492), [sym_fsi_directive_decl] = STATE(2492), [sym_preproc_line] = STATE(2492), - [sym_identifier] = ACTIONS(3003), - [anon_sym_module] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_LBRACK_LT] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_type] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_and] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [aux_sym_access_modifier_token1] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [anon_sym_default] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_member] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(3003), - [anon_sym_abstract] = ACTIONS(3003), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_val] = ACTIONS(3003), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3005), - [anon_sym_POUNDload] = ACTIONS(3005), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [anon_sym_POUNDendif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2493] = { [sym_xml_doc] = STATE(2493), @@ -313193,87 +317314,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2493), [sym_fsi_directive_decl] = STATE(2493), [sym_preproc_line] = STATE(2493), - [sym_identifier] = ACTIONS(2986), - [anon_sym_module] = ACTIONS(2986), - [anon_sym_open] = ACTIONS(2986), - [anon_sym_LBRACK_LT] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_type] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_and] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [aux_sym_access_modifier_token1] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [anon_sym_default] = ACTIONS(2986), - [anon_sym_static] = ACTIONS(2986), - [anon_sym_member] = ACTIONS(2986), - [anon_sym_interface] = ACTIONS(2986), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_override] = ACTIONS(2986), - [anon_sym_val] = ACTIONS(2986), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2988), - [anon_sym_POUNDload] = ACTIONS(2988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_AT_GT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2494] = { [sym_xml_doc] = STATE(2494), @@ -313282,87 +317406,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2494), [sym_fsi_directive_decl] = STATE(2494), [sym_preproc_line] = STATE(2494), - [sym_identifier] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_LBRACK_LT] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_and] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [aux_sym_access_modifier_token1] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(4698), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [anon_sym_default] = ACTIONS(2990), - [anon_sym_static] = ACTIONS(2990), - [anon_sym_member] = ACTIONS(2990), - [anon_sym_interface] = ACTIONS(2990), - [anon_sym_abstract] = ACTIONS(2990), - [anon_sym_override] = ACTIONS(2990), - [anon_sym_val] = ACTIONS(2990), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2992), - [anon_sym_POUNDload] = ACTIONS(2992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__dedent] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_AT_GT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2495] = { [sym_xml_doc] = STATE(2495), @@ -313371,176 +317498,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2495), [sym_fsi_directive_decl] = STATE(2495), [sym_preproc_line] = STATE(2495), - [sym_identifier] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_open] = ACTIONS(3025), - [anon_sym_LBRACK_LT] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_and] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [aux_sym_access_modifier_token1] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [anon_sym_default] = ACTIONS(3025), - [anon_sym_static] = ACTIONS(3025), - [anon_sym_member] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3025), - [anon_sym_override] = ACTIONS(3025), - [anon_sym_val] = ACTIONS(3025), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3027), - [anon_sym_POUNDload] = ACTIONS(3027), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__dedent] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [anon_sym_POUNDendif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2496] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3455), + [sym_function_declaration_left] = STATE(7155), + [sym_value_declaration_left] = STATE(7155), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2496), [sym_block_comment] = STATE(2496), [sym_line_comment] = STATE(2496), [sym_compiler_directive_decl] = STATE(2496), [sym_fsi_directive_decl] = STATE(2496), [sym_preproc_line] = STATE(2496), - [sym_identifier] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_open] = ACTIONS(3021), - [anon_sym_LBRACK_LT] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_and] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [aux_sym_access_modifier_token1] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_member] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_abstract] = ACTIONS(3021), - [anon_sym_override] = ACTIONS(3021), - [anon_sym_val] = ACTIONS(3021), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3023), - [anon_sym_POUNDload] = ACTIONS(3023), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__dedent] = ACTIONS(3023), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4965), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2497] = { [sym_xml_doc] = STATE(2497), @@ -313549,87 +317682,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2497), [sym_fsi_directive_decl] = STATE(2497), [sym_preproc_line] = STATE(2497), - [sym_identifier] = ACTIONS(3047), - [anon_sym_module] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_LBRACK_LT] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_type] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_and] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [aux_sym_access_modifier_token1] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3047), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_member] = ACTIONS(3047), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_val] = ACTIONS(3047), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3049), - [anon_sym_POUNDload] = ACTIONS(3049), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__dedent] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_AT_AT_GT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2498] = { [sym_xml_doc] = STATE(2498), @@ -313638,87 +317774,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2498), [sym_fsi_directive_decl] = STATE(2498), [sym_preproc_line] = STATE(2498), - [sym_identifier] = ACTIONS(3017), - [anon_sym_module] = ACTIONS(3017), - [anon_sym_open] = ACTIONS(3017), - [anon_sym_LBRACK_LT] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [aux_sym_access_modifier_token1] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [anon_sym_default] = ACTIONS(3017), - [anon_sym_static] = ACTIONS(3017), - [anon_sym_member] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_abstract] = ACTIONS(3017), - [anon_sym_override] = ACTIONS(3017), - [anon_sym_val] = ACTIONS(3017), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3019), - [anon_sym_POUNDload] = ACTIONS(3019), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_AT_GT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2499] = { [sym_xml_doc] = STATE(2499), @@ -313727,176 +317866,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2499), [sym_fsi_directive_decl] = STATE(2499), [sym_preproc_line] = STATE(2499), - [sym_identifier] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_open] = ACTIONS(3033), - [anon_sym_LBRACK_LT] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_and] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [aux_sym_access_modifier_token1] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [anon_sym_default] = ACTIONS(3033), - [anon_sym_static] = ACTIONS(3033), - [anon_sym_member] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_abstract] = ACTIONS(3033), - [anon_sym_override] = ACTIONS(3033), - [anon_sym_val] = ACTIONS(3033), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3039), - [anon_sym_POUNDload] = ACTIONS(3039), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__dedent] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_AT_GT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2500] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(3439), + [sym__function_or_value_defn_body] = STATE(3306), + [sym_function_declaration_left] = STATE(7155), + [sym_value_declaration_left] = STATE(7155), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2500), [sym_block_comment] = STATE(2500), [sym_line_comment] = STATE(2500), [sym_compiler_directive_decl] = STATE(2500), [sym_fsi_directive_decl] = STATE(2500), [sym_preproc_line] = STATE(2500), - [sym_identifier] = ACTIONS(3013), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_open] = ACTIONS(3013), - [anon_sym_LBRACK_LT] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_and] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [aux_sym_access_modifier_token1] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [anon_sym_default] = ACTIONS(3013), - [anon_sym_static] = ACTIONS(3013), - [anon_sym_member] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_override] = ACTIONS(3013), - [anon_sym_val] = ACTIONS(3013), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3015), - [anon_sym_POUNDload] = ACTIONS(3015), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2501] = { [sym_xml_doc] = STATE(2501), @@ -313905,255 +318050,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2501), [sym_fsi_directive_decl] = STATE(2501), [sym_preproc_line] = STATE(2501), - [sym_identifier] = ACTIONS(3007), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_LBRACK_LT] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_and] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [aux_sym_access_modifier_token1] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_default] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_member] = ACTIONS(3007), - [anon_sym_interface] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(3007), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_val] = ACTIONS(3007), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3009), - [anon_sym_POUNDload] = ACTIONS(3009), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__dedent] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [anon_sym_POUNDendif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2502] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(913), - [sym_rules] = STATE(1083), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2502), [sym_block_comment] = STATE(2502), [sym_line_comment] = STATE(2502), [sym_compiler_directive_decl] = STATE(2502), [sym_fsi_directive_decl] = STATE(2502), [sym_preproc_line] = STATE(2502), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [anon_sym_POUNDendif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2503] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1571), - [sym_rules] = STATE(1857), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7569), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2503), [sym_block_comment] = STATE(2503), [sym_line_comment] = STATE(2503), [sym_compiler_directive_decl] = STATE(2503), [sym_fsi_directive_decl] = STATE(2503), [sym_preproc_line] = STATE(2503), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -314162,3304 +318320,3494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2504] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7029), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2504), [sym_block_comment] = STATE(2504), [sym_line_comment] = STATE(2504), [sym_compiler_directive_decl] = STATE(2504), [sym_fsi_directive_decl] = STATE(2504), [sym_preproc_line] = STATE(2504), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [anon_sym_POUNDendif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2505] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1587), - [sym_rules] = STATE(1866), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2505), [sym_block_comment] = STATE(2505), [sym_line_comment] = STATE(2505), [sym_compiler_directive_decl] = STATE(2505), [sym_fsi_directive_decl] = STATE(2505), [sym_preproc_line] = STATE(2505), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2506] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1540), - [sym_rules] = STATE(1904), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2506), [sym_block_comment] = STATE(2506), [sym_line_comment] = STATE(2506), [sym_compiler_directive_decl] = STATE(2506), [sym_fsi_directive_decl] = STATE(2506), [sym_preproc_line] = STATE(2506), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2507] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7456), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2507), [sym_block_comment] = STATE(2507), [sym_line_comment] = STATE(2507), [sym_compiler_directive_decl] = STATE(2507), [sym_fsi_directive_decl] = STATE(2507), [sym_preproc_line] = STATE(2507), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_AT_AT_GT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2508] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1587), - [sym_rules] = STATE(2023), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2508), [sym_block_comment] = STATE(2508), [sym_line_comment] = STATE(2508), [sym_compiler_directive_decl] = STATE(2508), [sym_fsi_directive_decl] = STATE(2508), [sym_preproc_line] = STATE(2508), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_AT_AT_GT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2509] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6976), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2509), [sym_block_comment] = STATE(2509), [sym_line_comment] = STATE(2509), [sym_compiler_directive_decl] = STATE(2509), [sym_fsi_directive_decl] = STATE(2509), [sym_preproc_line] = STATE(2509), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [anon_sym_POUNDendif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2510] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7339), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2510), [sym_block_comment] = STATE(2510), [sym_line_comment] = STATE(2510), [sym_compiler_directive_decl] = STATE(2510), [sym_fsi_directive_decl] = STATE(2510), [sym_preproc_line] = STATE(2510), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [anon_sym_POUNDendif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2511] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1587), - [sym_rules] = STATE(2030), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2511), [sym_block_comment] = STATE(2511), [sym_line_comment] = STATE(2511), [sym_compiler_directive_decl] = STATE(2511), [sym_fsi_directive_decl] = STATE(2511), [sym_preproc_line] = STATE(2511), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_AT_AT_GT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2512] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7752), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2512), [sym_block_comment] = STATE(2512), [sym_line_comment] = STATE(2512), [sym_compiler_directive_decl] = STATE(2512), [sym_fsi_directive_decl] = STATE(2512), [sym_preproc_line] = STATE(2512), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_AT_GT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2513] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1540), - [sym_rules] = STATE(1869), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2513), [sym_block_comment] = STATE(2513), [sym_line_comment] = STATE(2513), [sym_compiler_directive_decl] = STATE(2513), [sym_fsi_directive_decl] = STATE(2513), [sym_preproc_line] = STATE(2513), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_AT_AT_GT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2514] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(998), - [sym_rules] = STATE(1235), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2514), [sym_block_comment] = STATE(2514), [sym_line_comment] = STATE(2514), [sym_compiler_directive_decl] = STATE(2514), [sym_fsi_directive_decl] = STATE(2514), [sym_preproc_line] = STATE(2514), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_AT_AT_GT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2515] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1654), - [sym_rules] = STATE(2260), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2515), [sym_block_comment] = STATE(2515), [sym_line_comment] = STATE(2515), [sym_compiler_directive_decl] = STATE(2515), [sym_fsi_directive_decl] = STATE(2515), [sym_preproc_line] = STATE(2515), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_AT_AT_GT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2516] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1149), - [sym_rules] = STATE(1402), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2516), [sym_block_comment] = STATE(2516), [sym_line_comment] = STATE(2516), [sym_compiler_directive_decl] = STATE(2516), [sym_fsi_directive_decl] = STATE(2516), [sym_preproc_line] = STATE(2516), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_AT_GT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2517] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6852), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2517), [sym_block_comment] = STATE(2517), [sym_line_comment] = STATE(2517), [sym_compiler_directive_decl] = STATE(2517), [sym_fsi_directive_decl] = STATE(2517), [sym_preproc_line] = STATE(2517), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_AT_GT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2518] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1824), - [sym_rules] = STATE(2352), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2518), [sym_block_comment] = STATE(2518), [sym_line_comment] = STATE(2518), [sym_compiler_directive_decl] = STATE(2518), [sym_fsi_directive_decl] = STATE(2518), [sym_preproc_line] = STATE(2518), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_AT_GT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2519] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1822), - [sym_rules] = STATE(2303), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2519), [sym_block_comment] = STATE(2519), [sym_line_comment] = STATE(2519), [sym_compiler_directive_decl] = STATE(2519), [sym_fsi_directive_decl] = STATE(2519), [sym_preproc_line] = STATE(2519), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_AT_GT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2520] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(998), - [sym_rules] = STATE(1219), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2520), [sym_block_comment] = STATE(2520), [sym_line_comment] = STATE(2520), [sym_compiler_directive_decl] = STATE(2520), [sym_fsi_directive_decl] = STATE(2520), [sym_preproc_line] = STATE(2520), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_AT_GT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2521] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1149), - [sym_rules] = STATE(1397), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2521), [sym_block_comment] = STATE(2521), [sym_line_comment] = STATE(2521), [sym_compiler_directive_decl] = STATE(2521), [sym_fsi_directive_decl] = STATE(2521), [sym_preproc_line] = STATE(2521), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_DOT_DOT] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2522] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1587), - [sym_rules] = STATE(2024), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2522), [sym_block_comment] = STATE(2522), [sym_line_comment] = STATE(2522), [sym_compiler_directive_decl] = STATE(2522), [sym_fsi_directive_decl] = STATE(2522), [sym_preproc_line] = STATE(2522), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_AT_AT_GT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2523] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1540), - [sym_rules] = STATE(1939), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2523), [sym_block_comment] = STATE(2523), [sym_line_comment] = STATE(2523), [sym_compiler_directive_decl] = STATE(2523), [sym_fsi_directive_decl] = STATE(2523), [sym_preproc_line] = STATE(2523), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_AT_AT_GT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2524] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7103), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2524), [sym_block_comment] = STATE(2524), [sym_line_comment] = STATE(2524), [sym_compiler_directive_decl] = STATE(2524), [sym_fsi_directive_decl] = STATE(2524), [sym_preproc_line] = STATE(2524), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_AT_AT_GT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2525] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1540), - [sym_rules] = STATE(1903), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2525), [sym_block_comment] = STATE(2525), [sym_line_comment] = STATE(2525), [sym_compiler_directive_decl] = STATE(2525), [sym_fsi_directive_decl] = STATE(2525), [sym_preproc_line] = STATE(2525), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_DOT_DOT] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2526] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1383), - [sym_rules] = STATE(1633), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2526), [sym_block_comment] = STATE(2526), [sym_line_comment] = STATE(2526), [sym_compiler_directive_decl] = STATE(2526), [sym_fsi_directive_decl] = STATE(2526), [sym_preproc_line] = STATE(2526), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_DOT_DOT] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2527] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6841), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2527), [sym_block_comment] = STATE(2527), [sym_line_comment] = STATE(2527), [sym_compiler_directive_decl] = STATE(2527), [sym_fsi_directive_decl] = STATE(2527), [sym_preproc_line] = STATE(2527), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [anon_sym_POUNDendif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2528] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1383), - [sym_rules] = STATE(1693), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2528), [sym_block_comment] = STATE(2528), [sym_line_comment] = STATE(2528), [sym_compiler_directive_decl] = STATE(2528), [sym_fsi_directive_decl] = STATE(2528), [sym_preproc_line] = STATE(2528), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2529] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1571), - [sym_rules] = STATE(1883), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2529), [sym_block_comment] = STATE(2529), [sym_line_comment] = STATE(2529), [sym_compiler_directive_decl] = STATE(2529), [sym_fsi_directive_decl] = STATE(2529), [sym_preproc_line] = STATE(2529), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_DOT_DOT] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2530] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7563), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2530), [sym_block_comment] = STATE(2530), [sym_line_comment] = STATE(2530), [sym_compiler_directive_decl] = STATE(2530), [sym_fsi_directive_decl] = STATE(2530), [sym_preproc_line] = STATE(2530), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_AT_GT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2531] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7398), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2531), [sym_block_comment] = STATE(2531), [sym_line_comment] = STATE(2531), [sym_compiler_directive_decl] = STATE(2531), [sym_fsi_directive_decl] = STATE(2531), [sym_preproc_line] = STATE(2531), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(3024), + [anon_sym_open] = ACTIONS(3024), + [anon_sym_LBRACK_LT] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_and] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [aux_sym_access_modifier_token1] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_member] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_abstract] = ACTIONS(3024), + [anon_sym_override] = ACTIONS(3024), + [anon_sym_val] = ACTIONS(3024), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3022), + [anon_sym_POUNDload] = ACTIONS(3022), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__dedent] = ACTIONS(3022), }, [2532] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1571), - [sym_rules] = STATE(1876), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2532), [sym_block_comment] = STATE(2532), [sym_line_comment] = STATE(2532), [sym_compiler_directive_decl] = STATE(2532), [sym_fsi_directive_decl] = STATE(2532), [sym_preproc_line] = STATE(2532), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_AT_GT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2533] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(913), - [sym_rules] = STATE(1077), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2533), [sym_block_comment] = STATE(2533), [sym_line_comment] = STATE(2533), [sym_compiler_directive_decl] = STATE(2533), [sym_fsi_directive_decl] = STATE(2533), [sym_preproc_line] = STATE(2533), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_AT_GT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2534] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1383), - [sym_rules] = STATE(1689), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2534), [sym_block_comment] = STATE(2534), [sym_line_comment] = STATE(2534), [sym_compiler_directive_decl] = STATE(2534), [sym_fsi_directive_decl] = STATE(2534), [sym_preproc_line] = STATE(2534), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_AT_GT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2535] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7434), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2535), [sym_block_comment] = STATE(2535), [sym_line_comment] = STATE(2535), [sym_compiler_directive_decl] = STATE(2535), [sym_fsi_directive_decl] = STATE(2535), [sym_preproc_line] = STATE(2535), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_AT_GT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2536] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6948), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2536), [sym_block_comment] = STATE(2536), [sym_line_comment] = STATE(2536), [sym_compiler_directive_decl] = STATE(2536), [sym_fsi_directive_decl] = STATE(2536), [sym_preproc_line] = STATE(2536), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_AT_GT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2537] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7363), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2537), [sym_block_comment] = STATE(2537), [sym_line_comment] = STATE(2537), [sym_compiler_directive_decl] = STATE(2537), [sym_fsi_directive_decl] = STATE(2537), [sym_preproc_line] = STATE(2537), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_AT_GT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2538] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6871), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2538), [sym_block_comment] = STATE(2538), [sym_line_comment] = STATE(2538), [sym_compiler_directive_decl] = STATE(2538), [sym_fsi_directive_decl] = STATE(2538), [sym_preproc_line] = STATE(2538), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_GT] = ACTIONS(3818), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2539] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7407), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2539), [sym_block_comment] = STATE(2539), [sym_line_comment] = STATE(2539), [sym_compiler_directive_decl] = STATE(2539), [sym_fsi_directive_decl] = STATE(2539), [sym_preproc_line] = STATE(2539), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_AT_AT_GT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2540] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6838), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2540), [sym_block_comment] = STATE(2540), [sym_line_comment] = STATE(2540), [sym_compiler_directive_decl] = STATE(2540), [sym_fsi_directive_decl] = STATE(2540), [sym_preproc_line] = STATE(2540), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [anon_sym_POUNDendif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2541] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(998), - [sym_rules] = STATE(1283), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4086), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(2541), [sym_block_comment] = STATE(2541), [sym_line_comment] = STATE(2541), [sym_compiler_directive_decl] = STATE(2541), [sym_fsi_directive_decl] = STATE(2541), [sym_preproc_line] = STATE(2541), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4764), + [anon_sym__] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_LBRACK_PIPE] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_AT_DQUOTE] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [sym_bool] = ACTIONS(4764), + [sym_unit] = ACTIONS(4762), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4764), + [sym_xint] = ACTIONS(4762), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -317468,85 +321816,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2542] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(913), - [sym_rules] = STATE(1084), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6748), + [sym_function_declaration_left] = STATE(7085), + [sym_value_declaration_left] = STATE(7085), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2542), [sym_block_comment] = STATE(2542), [sym_line_comment] = STATE(2542), [sym_compiler_directive_decl] = STATE(2542), [sym_fsi_directive_decl] = STATE(2542), [sym_preproc_line] = STATE(2542), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4977), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -317555,1477 +321908,1562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2543] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1824), - [sym_rules] = STATE(2165), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2543), [sym_block_comment] = STATE(2543), [sym_line_comment] = STATE(2543), [sym_compiler_directive_decl] = STATE(2543), [sym_fsi_directive_decl] = STATE(2543), [sym_preproc_line] = STATE(2543), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_GT] = ACTIONS(3863), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2544] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6957), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2544), [sym_block_comment] = STATE(2544), [sym_line_comment] = STATE(2544), [sym_compiler_directive_decl] = STATE(2544), [sym_fsi_directive_decl] = STATE(2544), [sym_preproc_line] = STATE(2544), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [anon_sym_POUNDendif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2545] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7474), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2545), [sym_block_comment] = STATE(2545), [sym_line_comment] = STATE(2545), [sym_compiler_directive_decl] = STATE(2545), [sym_fsi_directive_decl] = STATE(2545), [sym_preproc_line] = STATE(2545), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_AT_GT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2546] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1654), - [sym_rules] = STATE(2297), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2546), [sym_block_comment] = STATE(2546), [sym_line_comment] = STATE(2546), [sym_compiler_directive_decl] = STATE(2546), [sym_fsi_directive_decl] = STATE(2546), [sym_preproc_line] = STATE(2546), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_AT_AT_GT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2547] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1654), - [sym_rules] = STATE(2298), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2547), [sym_block_comment] = STATE(2547), [sym_line_comment] = STATE(2547), [sym_compiler_directive_decl] = STATE(2547), [sym_fsi_directive_decl] = STATE(2547), [sym_preproc_line] = STATE(2547), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_AT_AT_GT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2548] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1824), - [sym_rules] = STATE(2186), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2548), [sym_block_comment] = STATE(2548), [sym_line_comment] = STATE(2548), [sym_compiler_directive_decl] = STATE(2548), [sym_fsi_directive_decl] = STATE(2548), [sym_preproc_line] = STATE(2548), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_GT] = ACTIONS(3705), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2549] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1571), - [sym_rules] = STATE(1912), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2549), [sym_block_comment] = STATE(2549), [sym_line_comment] = STATE(2549), [sym_compiler_directive_decl] = STATE(2549), [sym_fsi_directive_decl] = STATE(2549), [sym_preproc_line] = STATE(2549), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_AT_AT_GT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2550] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1447), - [sym_rules] = STATE(1718), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2550), [sym_block_comment] = STATE(2550), [sym_line_comment] = STATE(2550), [sym_compiler_directive_decl] = STATE(2550), [sym_fsi_directive_decl] = STATE(2550), [sym_preproc_line] = STATE(2550), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_DOT_DOT] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2551] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1149), - [sym_rules] = STATE(1423), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2551), [sym_block_comment] = STATE(2551), [sym_line_comment] = STATE(2551), [sym_compiler_directive_decl] = STATE(2551), [sym_fsi_directive_decl] = STATE(2551), [sym_preproc_line] = STATE(2551), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_AT_AT_GT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2552] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7732), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2552), [sym_block_comment] = STATE(2552), [sym_line_comment] = STATE(2552), [sym_compiler_directive_decl] = STATE(2552), [sym_fsi_directive_decl] = STATE(2552), [sym_preproc_line] = STATE(2552), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_AT_GT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2553] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1822), - [sym_rules] = STATE(2329), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2553), [sym_block_comment] = STATE(2553), [sym_line_comment] = STATE(2553), [sym_compiler_directive_decl] = STATE(2553), [sym_fsi_directive_decl] = STATE(2553), [sym_preproc_line] = STATE(2553), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [anon_sym_POUNDendif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2554] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7166), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2554), [sym_block_comment] = STATE(2554), [sym_line_comment] = STATE(2554), [sym_compiler_directive_decl] = STATE(2554), [sym_fsi_directive_decl] = STATE(2554), [sym_preproc_line] = STATE(2554), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_DOT_DOT] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2555] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1822), - [sym_rules] = STATE(2330), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2555), [sym_block_comment] = STATE(2555), [sym_line_comment] = STATE(2555), [sym_compiler_directive_decl] = STATE(2555), [sym_fsi_directive_decl] = STATE(2555), [sym_preproc_line] = STATE(2555), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_AT_GT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2556] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1822), - [sym_rules] = STATE(2338), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2556), [sym_block_comment] = STATE(2556), [sym_line_comment] = STATE(2556), [sym_compiler_directive_decl] = STATE(2556), [sym_fsi_directive_decl] = STATE(2556), [sym_preproc_line] = STATE(2556), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3840), + [anon_sym_EQ] = ACTIONS(3842), + [anon_sym_COLON] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_QMARK] = ACTIONS(3840), + [anon_sym_COLON_QMARK] = ACTIONS(3840), + [anon_sym_COLON_COLON] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3840), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_COLON_GT] = ACTIONS(3842), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_LT_DASH] = ACTIONS(3840), + [anon_sym_DOT_LBRACK] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3842), + [anon_sym_GT] = ACTIONS(3840), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3840), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3840), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3840), + [anon_sym_DASH_DOT] = ACTIONS(3840), + [anon_sym_PERCENT] = ACTIONS(3840), + [anon_sym_AMP_AMP] = ACTIONS(3840), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3840), + [aux_sym_infix_op_token1] = ACTIONS(3840), + [anon_sym_PIPE_PIPE] = ACTIONS(3840), + [anon_sym_BANG_EQ] = ACTIONS(3840), + [anon_sym_COLON_EQ] = ACTIONS(3842), + [anon_sym_DOLLAR] = ACTIONS(3840), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3840), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + [sym__newline] = ACTIONS(3842), }, [2557] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7197), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2557), [sym_block_comment] = STATE(2557), [sym_line_comment] = STATE(2557), [sym_compiler_directive_decl] = STATE(2557), [sym_fsi_directive_decl] = STATE(2557), [sym_preproc_line] = STATE(2557), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(2768), + [anon_sym_EQ] = ACTIONS(2770), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_QMARK] = ACTIONS(2768), + [anon_sym_COLON_QMARK] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2768), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_COLON_GT] = ACTIONS(2770), + [anon_sym_COLON_QMARK_GT] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_LT_DASH] = ACTIONS(2768), + [anon_sym_DOT_LBRACK] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [anon_sym_LPAREN2] = ACTIONS(2770), + [anon_sym_or] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2768), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2768), + [anon_sym_DASH_DOT] = ACTIONS(2768), + [anon_sym_PERCENT] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2768), + [aux_sym_infix_op_token1] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_BANG_EQ] = ACTIONS(2768), + [anon_sym_COLON_EQ] = ACTIONS(2770), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_QMARK_LT_DASH] = ACTIONS(2768), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + [sym__newline] = ACTIONS(2770), }, [2558] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1447), - [sym_rules] = STATE(1618), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2558), [sym_block_comment] = STATE(2558), [sym_line_comment] = STATE(2558), [sym_compiler_directive_decl] = STATE(2558), [sym_fsi_directive_decl] = STATE(2558), [sym_preproc_line] = STATE(2558), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_DOT_DOT] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2559] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7256), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(4809), + [sym__function_or_value_defn_body] = STATE(4581), + [sym_function_declaration_left] = STATE(6935), + [sym_value_declaration_left] = STATE(6935), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2559), [sym_block_comment] = STATE(2559), [sym_line_comment] = STATE(2559), [sym_compiler_directive_decl] = STATE(2559), [sym_fsi_directive_decl] = STATE(2559), [sym_preproc_line] = STATE(2559), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -319034,1042 +323472,1102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2560] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7072), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2560), [sym_block_comment] = STATE(2560), [sym_line_comment] = STATE(2560), [sym_compiler_directive_decl] = STATE(2560), [sym_fsi_directive_decl] = STATE(2560), [sym_preproc_line] = STATE(2560), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2561] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6683), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2561), [sym_block_comment] = STATE(2561), [sym_line_comment] = STATE(2561), [sym_compiler_directive_decl] = STATE(2561), [sym_fsi_directive_decl] = STATE(2561), [sym_preproc_line] = STATE(2561), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_AT_AT_GT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2562] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1447), - [sym_rules] = STATE(1619), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2562), [sym_block_comment] = STATE(2562), [sym_line_comment] = STATE(2562), [sym_compiler_directive_decl] = STATE(2562), [sym_fsi_directive_decl] = STATE(2562), [sym_preproc_line] = STATE(2562), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [anon_sym_POUNDendif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2563] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1824), - [sym_rules] = STATE(2170), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2563), [sym_block_comment] = STATE(2563), [sym_line_comment] = STATE(2563), [sym_compiler_directive_decl] = STATE(2563), [sym_fsi_directive_decl] = STATE(2563), [sym_preproc_line] = STATE(2563), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_AT_AT_GT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2564] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1447), - [sym_rules] = STATE(1640), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2564), [sym_block_comment] = STATE(2564), [sym_line_comment] = STATE(2564), [sym_compiler_directive_decl] = STATE(2564), [sym_fsi_directive_decl] = STATE(2564), [sym_preproc_line] = STATE(2564), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4722), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_AT_AT_GT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2565] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(913), - [sym_rules] = STATE(1024), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2565), [sym_block_comment] = STATE(2565), [sym_line_comment] = STATE(2565), [sym_compiler_directive_decl] = STATE(2565), [sym_fsi_directive_decl] = STATE(2565), [sym_preproc_line] = STATE(2565), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4700), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_COLON] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_QMARK] = ACTIONS(3836), + [anon_sym_COLON_QMARK] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3838), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3836), + [anon_sym_DOT] = ACTIONS(3836), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_COLON_GT] = ACTIONS(3838), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3838), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_LT_DASH] = ACTIONS(3836), + [anon_sym_DOT_LBRACK] = ACTIONS(3838), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_GT] = ACTIONS(3836), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(3838), + [anon_sym_or] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3836), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3836), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3836), + [anon_sym_DASH_DOT] = ACTIONS(3836), + [anon_sym_PERCENT] = ACTIONS(3836), + [anon_sym_AMP_AMP] = ACTIONS(3836), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3836), + [aux_sym_infix_op_token1] = ACTIONS(3836), + [anon_sym_PIPE_PIPE] = ACTIONS(3836), + [anon_sym_BANG_EQ] = ACTIONS(3836), + [anon_sym_COLON_EQ] = ACTIONS(3838), + [anon_sym_DOLLAR] = ACTIONS(3836), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3836), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + [sym__newline] = ACTIONS(3838), }, [2566] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7161), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2566), [sym_block_comment] = STATE(2566), [sym_line_comment] = STATE(2566), [sym_compiler_directive_decl] = STATE(2566), [sym_fsi_directive_decl] = STATE(2566), [sym_preproc_line] = STATE(2566), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_DOT_DOT] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2567] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1149), - [sym_rules] = STATE(1454), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2567), [sym_block_comment] = STATE(2567), [sym_line_comment] = STATE(2567), [sym_compiler_directive_decl] = STATE(2567), [sym_fsi_directive_decl] = STATE(2567), [sym_preproc_line] = STATE(2567), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_GT] = ACTIONS(3878), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2568] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7254), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2568), [sym_block_comment] = STATE(2568), [sym_line_comment] = STATE(2568), [sym_compiler_directive_decl] = STATE(2568), [sym_fsi_directive_decl] = STATE(2568), [sym_preproc_line] = STATE(2568), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_AT_AT_GT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2569] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7191), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2569), [sym_block_comment] = STATE(2569), [sym_line_comment] = STATE(2569), [sym_compiler_directive_decl] = STATE(2569), [sym_fsi_directive_decl] = STATE(2569), [sym_preproc_line] = STATE(2569), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [anon_sym_POUNDendif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2570] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(998), - [sym_rules] = STATE(1237), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2570), [sym_block_comment] = STATE(2570), [sym_line_comment] = STATE(2570), [sym_compiler_directive_decl] = STATE(2570), [sym_fsi_directive_decl] = STATE(2570), [sym_preproc_line] = STATE(2570), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3825), + [anon_sym_EQ] = ACTIONS(3827), + [anon_sym_COLON] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_QMARK] = ACTIONS(3825), + [anon_sym_COLON_QMARK] = ACTIONS(3825), + [anon_sym_COLON_COLON] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3825), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_COLON_GT] = ACTIONS(3827), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_LT_DASH] = ACTIONS(3825), + [anon_sym_DOT_LBRACK] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_GT] = ACTIONS(3825), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_or] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3825), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3825), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3825), + [anon_sym_DASH_DOT] = ACTIONS(3825), + [anon_sym_PERCENT] = ACTIONS(3825), + [anon_sym_AMP_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3825), + [aux_sym_infix_op_token1] = ACTIONS(3825), + [anon_sym_PIPE_PIPE] = ACTIONS(3825), + [anon_sym_BANG_EQ] = ACTIONS(3825), + [anon_sym_COLON_EQ] = ACTIONS(3827), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3825), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + [sym__newline] = ACTIONS(3827), }, [2571] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6751), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7391), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2571), [sym_block_comment] = STATE(2571), [sym_line_comment] = STATE(2571), [sym_compiler_directive_decl] = STATE(2571), [sym_fsi_directive_decl] = STATE(2571), [sym_preproc_line] = STATE(2571), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -320078,172 +324576,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2572] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7726), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2572), [sym_block_comment] = STATE(2572), [sym_line_comment] = STATE(2572), [sym_compiler_directive_decl] = STATE(2572), [sym_fsi_directive_decl] = STATE(2572), [sym_preproc_line] = STATE(2572), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [anon_sym_POUNDendif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2573] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1383), - [sym_rules] = STATE(1808), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5795), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2573), [sym_block_comment] = STATE(2573), [sym_line_comment] = STATE(2573), [sym_compiler_directive_decl] = STATE(2573), [sym_fsi_directive_decl] = STATE(2573), [sym_preproc_line] = STATE(2573), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [anon_sym_in] = ACTIONS(4764), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -320252,612 +324760,648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2574] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7751), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2574), [sym_block_comment] = STATE(2574), [sym_line_comment] = STATE(2574), [sym_compiler_directive_decl] = STATE(2574), [sym_fsi_directive_decl] = STATE(2574), [sym_preproc_line] = STATE(2574), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [anon_sym_POUNDendif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2575] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(6767), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2575), [sym_block_comment] = STATE(2575), [sym_line_comment] = STATE(2575), [sym_compiler_directive_decl] = STATE(2575), [sym_fsi_directive_decl] = STATE(2575), [sym_preproc_line] = STATE(2575), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_AT_GT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2576] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1654), - [sym_rules] = STATE(2316), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2576), [sym_block_comment] = STATE(2576), [sym_line_comment] = STATE(2576), [sym_compiler_directive_decl] = STATE(2576), [sym_fsi_directive_decl] = STATE(2576), [sym_preproc_line] = STATE(2576), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_AT_GT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2577] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7584), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2577), [sym_block_comment] = STATE(2577), [sym_line_comment] = STATE(2577), [sym_compiler_directive_decl] = STATE(2577), [sym_fsi_directive_decl] = STATE(2577), [sym_preproc_line] = STATE(2577), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [anon_sym_POUNDendif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2578] = { - [sym_type_arguments] = STATE(2467), - [sym__object_members] = STATE(2888), - [sym_long_identifier] = STATE(2470), [sym_xml_doc] = STATE(2578), [sym_block_comment] = STATE(2578), [sym_line_comment] = STATE(2578), [sym_compiler_directive_decl] = STATE(2578), [sym_fsi_directive_decl] = STATE(2578), [sym_preproc_line] = STATE(2578), - [aux_sym__compound_type_repeat1] = STATE(2435), - [ts_builtin_sym_end] = ACTIONS(4724), - [sym_identifier] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4726), - [anon_sym_module] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_LBRACK_LT] = ACTIONS(4724), - [anon_sym_return] = ACTIONS(4726), - [anon_sym_type] = ACTIONS(4726), - [anon_sym_do] = ACTIONS(4726), - [anon_sym_and] = ACTIONS(4726), - [anon_sym_let] = ACTIONS(4726), - [anon_sym_let_BANG] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_null] = ACTIONS(4726), - [anon_sym_AMP] = ACTIONS(4726), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_LBRACK_PIPE] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_LBRACE_PIPE] = ACTIONS(4724), - [anon_sym_with] = ACTIONS(4728), - [anon_sym_new] = ACTIONS(4726), - [anon_sym_return_BANG] = ACTIONS(4724), - [anon_sym_yield] = ACTIONS(4726), - [anon_sym_yield_BANG] = ACTIONS(4724), - [anon_sym_lazy] = ACTIONS(4726), - [anon_sym_assert] = ACTIONS(4726), - [anon_sym_upcast] = ACTIONS(4726), - [anon_sym_downcast] = ACTIONS(4726), - [anon_sym_LT_AT] = ACTIONS(4726), - [anon_sym_LT_AT_AT] = ACTIONS(4724), - [anon_sym_for] = ACTIONS(4726), - [anon_sym_while] = ACTIONS(4726), - [anon_sym_if] = ACTIONS(4726), - [anon_sym_fun] = ACTIONS(4726), - [anon_sym_DASH_GT] = ACTIONS(4388), - [anon_sym_try] = ACTIONS(4726), - [anon_sym_match] = ACTIONS(4726), - [anon_sym_match_BANG] = ACTIONS(4724), - [anon_sym_function] = ACTIONS(4726), - [anon_sym_use] = ACTIONS(4726), - [anon_sym_use_BANG] = ACTIONS(4724), - [anon_sym_do_BANG] = ACTIONS(4724), - [anon_sym_begin] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4390), - [anon_sym_LT2] = ACTIONS(4392), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4394), - [anon_sym_interface] = ACTIONS(4726), - [aux_sym_char_token1] = ACTIONS(4724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_AT_DQUOTE] = ACTIONS(4724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4724), - [sym_bool] = ACTIONS(4726), - [sym_unit] = ACTIONS(4724), - [anon_sym_LPAREN_PIPE] = ACTIONS(4726), - [sym_op_identifier] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_PLUS_DOT] = ACTIONS(4724), - [anon_sym_DASH_DOT] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_TILDE] = ACTIONS(4724), - [aux_sym_prefix_op_token1] = ACTIONS(4724), - [sym_int] = ACTIONS(4726), - [sym_xint] = ACTIONS(4724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4724), - [anon_sym_POUNDload] = ACTIONS(4724), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4724), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_AT_GT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2579] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5746), - [sym_rules] = STATE(7603), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2579), [sym_block_comment] = STATE(2579), [sym_line_comment] = STATE(2579), [sym_compiler_directive_decl] = STATE(2579), [sym_fsi_directive_decl] = STATE(2579), [sym_preproc_line] = STATE(2579), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_AT_AT_GT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2580] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2580), [sym_block_comment] = STATE(2580), [sym_line_comment] = STATE(2580), [sym_compiler_directive_decl] = STATE(2580), [sym_fsi_directive_decl] = STATE(2580), [sym_preproc_line] = STATE(2580), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [anon_sym_POUNDendif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2581] = { [sym_xml_doc] = STATE(2581), @@ -320866,594 +325410,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2581), [sym_fsi_directive_decl] = STATE(2581), [sym_preproc_line] = STATE(2581), - [sym_identifier] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2520), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2520), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(4732), - [anon_sym_uy] = ACTIONS(4734), - [anon_sym_s] = ACTIONS(4736), - [anon_sym_us] = ACTIONS(4738), - [anon_sym_l] = ACTIONS(4740), - [aux_sym_uint32_token1] = ACTIONS(4742), - [anon_sym_n] = ACTIONS(4744), - [anon_sym_un] = ACTIONS(4746), - [anon_sym_L] = ACTIONS(4748), - [aux_sym_uint64_token1] = ACTIONS(4750), - [aux_sym_bignum_token1] = ACTIONS(4752), - [aux_sym_decimal_token1] = ACTIONS(4754), - [anon_sym_DOT2] = ACTIONS(4756), - [aux_sym_float_token1] = ACTIONS(4758), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_AT_AT_GT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2582] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2582), [sym_block_comment] = STATE(2582), [sym_line_comment] = STATE(2582), [sym_compiler_directive_decl] = STATE(2582), [sym_fsi_directive_decl] = STATE(2582), [sym_preproc_line] = STATE(2582), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4760), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [anon_sym_POUNDendif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2583] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2583), [sym_block_comment] = STATE(2583), [sym_line_comment] = STATE(2583), [sym_compiler_directive_decl] = STATE(2583), [sym_fsi_directive_decl] = STATE(2583), [sym_preproc_line] = STATE(2583), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2584] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2584), [sym_block_comment] = STATE(2584), [sym_line_comment] = STATE(2584), [sym_compiler_directive_decl] = STATE(2584), [sym_fsi_directive_decl] = STATE(2584), [sym_preproc_line] = STATE(2584), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4764), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2585] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2585), [sym_block_comment] = STATE(2585), [sym_line_comment] = STATE(2585), [sym_compiler_directive_decl] = STATE(2585), [sym_fsi_directive_decl] = STATE(2585), [sym_preproc_line] = STATE(2585), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_AT_AT_GT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2586] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2586), [sym_block_comment] = STATE(2586), [sym_line_comment] = STATE(2586), [sym_compiler_directive_decl] = STATE(2586), [sym_fsi_directive_decl] = STATE(2586), [sym_preproc_line] = STATE(2586), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_LBRACK_LT] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4776), - [anon_sym_null] = ACTIONS(4779), - [anon_sym__] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(4785), - [anon_sym_COLON_QMARK] = ACTIONS(4788), - [anon_sym_LBRACK] = ACTIONS(4791), - [anon_sym_LBRACK_PIPE] = ACTIONS(4794), - [anon_sym_LBRACE] = ACTIONS(4797), - [aux_sym_char_token1] = ACTIONS(4800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4806), - [anon_sym_AT_DQUOTE] = ACTIONS(4809), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4815), - [sym_bool] = ACTIONS(4818), - [sym_unit] = ACTIONS(4821), - [anon_sym_LPAREN_PIPE] = ACTIONS(4824), - [sym_op_identifier] = ACTIONS(4827), - [sym_int] = ACTIONS(4830), - [sym_xint] = ACTIONS(4833), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_AT_AT_GT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2587] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7465), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2587), [sym_block_comment] = STATE(2587), [sym_line_comment] = STATE(2587), [sym_compiler_directive_decl] = STATE(2587), [sym_fsi_directive_decl] = STATE(2587), [sym_preproc_line] = STATE(2587), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4836), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -321462,1710 +326048,1838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2588] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2588), [sym_block_comment] = STATE(2588), [sym_line_comment] = STATE(2588), [sym_compiler_directive_decl] = STATE(2588), [sym_fsi_directive_decl] = STATE(2588), [sym_preproc_line] = STATE(2588), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4838), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3802), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_QMARK] = ACTIONS(3802), + [anon_sym_COLON_QMARK] = ACTIONS(3802), + [anon_sym_COLON_COLON] = ACTIONS(3804), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3802), + [anon_sym_DOT] = ACTIONS(3802), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_COLON_GT] = ACTIONS(3804), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3804), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(3802), + [anon_sym_DOT_LBRACK] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3804), + [anon_sym_GT] = ACTIONS(3802), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [anon_sym_LPAREN2] = ACTIONS(3804), + [anon_sym_or] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3802), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3802), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3802), + [anon_sym_DASH_DOT] = ACTIONS(3802), + [anon_sym_PERCENT] = ACTIONS(3802), + [anon_sym_AMP_AMP] = ACTIONS(3802), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3802), + [aux_sym_infix_op_token1] = ACTIONS(3802), + [anon_sym_PIPE_PIPE] = ACTIONS(3802), + [anon_sym_BANG_EQ] = ACTIONS(3802), + [anon_sym_COLON_EQ] = ACTIONS(3804), + [anon_sym_DOLLAR] = ACTIONS(3802), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3802), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + [sym__newline] = ACTIONS(3804), }, [2589] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2589), [sym_block_comment] = STATE(2589), [sym_line_comment] = STATE(2589), [sym_compiler_directive_decl] = STATE(2589), [sym_fsi_directive_decl] = STATE(2589), [sym_preproc_line] = STATE(2589), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4840), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_DOT_DOT] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2590] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2590), [sym_block_comment] = STATE(2590), [sym_line_comment] = STATE(2590), [sym_compiler_directive_decl] = STATE(2590), [sym_fsi_directive_decl] = STATE(2590), [sym_preproc_line] = STATE(2590), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4842), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_AT_GT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2591] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2591), [sym_block_comment] = STATE(2591), [sym_line_comment] = STATE(2591), [sym_compiler_directive_decl] = STATE(2591), [sym_fsi_directive_decl] = STATE(2591), [sym_preproc_line] = STATE(2591), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_DOT_DOT] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2592] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2592), [sym_block_comment] = STATE(2592), [sym_line_comment] = STATE(2592), [sym_compiler_directive_decl] = STATE(2592), [sym_fsi_directive_decl] = STATE(2592), [sym_preproc_line] = STATE(2592), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4846), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(4979), + [sym_identifier] = ACTIONS(4752), + [anon_sym_namespace] = ACTIONS(4981), + [anon_sym_module] = ACTIONS(4981), + [anon_sym_open] = ACTIONS(4981), + [anon_sym_LBRACK_LT] = ACTIONS(4979), + [anon_sym_return] = ACTIONS(4981), + [anon_sym_type] = ACTIONS(4981), + [anon_sym_do] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_let] = ACTIONS(4981), + [anon_sym_let_BANG] = ACTIONS(4979), + [aux_sym_access_modifier_token1] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_LBRACK_PIPE] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4981), + [anon_sym_LT_AT] = ACTIONS(4981), + [anon_sym_LT_AT_AT] = ACTIONS(4979), + [anon_sym_LBRACE_PIPE] = ACTIONS(4979), + [anon_sym_with] = ACTIONS(4981), + [anon_sym_new] = ACTIONS(4981), + [anon_sym_return_BANG] = ACTIONS(4979), + [anon_sym_yield] = ACTIONS(4981), + [anon_sym_yield_BANG] = ACTIONS(4979), + [anon_sym_lazy] = ACTIONS(4981), + [anon_sym_assert] = ACTIONS(4981), + [anon_sym_upcast] = ACTIONS(4981), + [anon_sym_downcast] = ACTIONS(4981), + [anon_sym_for] = ACTIONS(4981), + [anon_sym_while] = ACTIONS(4981), + [anon_sym_if] = ACTIONS(4981), + [anon_sym_fun] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4981), + [anon_sym_match] = ACTIONS(4981), + [anon_sym_match_BANG] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4981), + [anon_sym_use] = ACTIONS(4981), + [anon_sym_use_BANG] = ACTIONS(4979), + [anon_sym_do_BANG] = ACTIONS(4979), + [anon_sym_begin] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(4981), + [anon_sym_static] = ACTIONS(4981), + [anon_sym_member] = ACTIONS(4981), + [anon_sym_abstract] = ACTIONS(4981), + [anon_sym_override] = ACTIONS(4981), + [anon_sym_val] = ACTIONS(4981), + [aux_sym_char_token1] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4981), + [anon_sym_DQUOTE] = ACTIONS(4981), + [anon_sym_AT_DQUOTE] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4979), + [sym_bool] = ACTIONS(4981), + [sym_unit] = ACTIONS(4979), + [anon_sym_LPAREN_PIPE] = ACTIONS(4981), + [sym_op_identifier] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_PLUS_DOT] = ACTIONS(4979), + [anon_sym_DASH_DOT] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_TILDE] = ACTIONS(4979), + [aux_sym_prefix_op_token1] = ACTIONS(4979), + [sym_int] = ACTIONS(4981), + [sym_xint] = ACTIONS(4979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4979), + [anon_sym_POUNDload] = ACTIONS(4979), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4979), }, [2593] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2593), [sym_block_comment] = STATE(2593), [sym_line_comment] = STATE(2593), [sym_compiler_directive_decl] = STATE(2593), [sym_fsi_directive_decl] = STATE(2593), [sym_preproc_line] = STATE(2593), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_AT_AT_GT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2594] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2594), [sym_block_comment] = STATE(2594), [sym_line_comment] = STATE(2594), [sym_compiler_directive_decl] = STATE(2594), [sym_fsi_directive_decl] = STATE(2594), [sym_preproc_line] = STATE(2594), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4850), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_AT_GT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2595] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_access_modifier] = STATE(2718), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5042), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2595), [sym_block_comment] = STATE(2595), [sym_line_comment] = STATE(2595), [sym_compiler_directive_decl] = STATE(2595), [sym_fsi_directive_decl] = STATE(2595), [sym_preproc_line] = STATE(2595), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_DOT_DOT] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2596] = { - [sym_type_arguments] = STATE(2495), - [sym__object_members] = STATE(2897), - [sym_long_identifier] = STATE(2499), [sym_xml_doc] = STATE(2596), [sym_block_comment] = STATE(2596), [sym_line_comment] = STATE(2596), [sym_compiler_directive_decl] = STATE(2596), [sym_fsi_directive_decl] = STATE(2596), [sym_preproc_line] = STATE(2596), - [aux_sym__compound_type_repeat1] = STATE(2482), - [sym_identifier] = ACTIONS(4495), - [anon_sym_module] = ACTIONS(4726), - [anon_sym_open] = ACTIONS(4726), - [anon_sym_LBRACK_LT] = ACTIONS(4724), - [anon_sym_return] = ACTIONS(4726), - [anon_sym_type] = ACTIONS(4726), - [anon_sym_do] = ACTIONS(4726), - [anon_sym_and] = ACTIONS(4726), - [anon_sym_let] = ACTIONS(4726), - [anon_sym_let_BANG] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_null] = ACTIONS(4726), - [anon_sym_AMP] = ACTIONS(4726), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_LBRACK_PIPE] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_LBRACE_PIPE] = ACTIONS(4724), - [anon_sym_with] = ACTIONS(4852), - [anon_sym_new] = ACTIONS(4726), - [anon_sym_return_BANG] = ACTIONS(4724), - [anon_sym_yield] = ACTIONS(4726), - [anon_sym_yield_BANG] = ACTIONS(4724), - [anon_sym_lazy] = ACTIONS(4726), - [anon_sym_assert] = ACTIONS(4726), - [anon_sym_upcast] = ACTIONS(4726), - [anon_sym_downcast] = ACTIONS(4726), - [anon_sym_LT_AT] = ACTIONS(4726), - [anon_sym_LT_AT_AT] = ACTIONS(4724), - [anon_sym_for] = ACTIONS(4726), - [anon_sym_while] = ACTIONS(4726), - [anon_sym_if] = ACTIONS(4726), - [anon_sym_fun] = ACTIONS(4726), - [anon_sym_DASH_GT] = ACTIONS(4497), - [anon_sym_try] = ACTIONS(4726), - [anon_sym_match] = ACTIONS(4726), - [anon_sym_match_BANG] = ACTIONS(4724), - [anon_sym_function] = ACTIONS(4726), - [anon_sym_use] = ACTIONS(4726), - [anon_sym_use_BANG] = ACTIONS(4724), - [anon_sym_do_BANG] = ACTIONS(4724), - [anon_sym_begin] = ACTIONS(4726), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_LT2] = ACTIONS(4501), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4503), - [anon_sym_interface] = ACTIONS(4726), - [aux_sym_char_token1] = ACTIONS(4724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4726), - [anon_sym_DQUOTE] = ACTIONS(4726), - [anon_sym_AT_DQUOTE] = ACTIONS(4724), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4724), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4724), - [sym_bool] = ACTIONS(4726), - [sym_unit] = ACTIONS(4724), - [anon_sym_LPAREN_PIPE] = ACTIONS(4726), - [sym_op_identifier] = ACTIONS(4724), - [anon_sym_PLUS] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_PLUS_DOT] = ACTIONS(4724), - [anon_sym_DASH_DOT] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_AMP_AMP] = ACTIONS(4724), - [anon_sym_TILDE] = ACTIONS(4724), - [aux_sym_prefix_op_token1] = ACTIONS(4724), - [sym_int] = ACTIONS(4726), - [sym_xint] = ACTIONS(4724), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4724), - [anon_sym_POUNDload] = ACTIONS(4724), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4724), - [sym__dedent] = ACTIONS(4724), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_AT_GT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2597] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2597), [sym_block_comment] = STATE(2597), [sym_line_comment] = STATE(2597), [sym_compiler_directive_decl] = STATE(2597), [sym_fsi_directive_decl] = STATE(2597), [sym_preproc_line] = STATE(2597), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4854), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_AT_AT_GT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2598] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2598), [sym_block_comment] = STATE(2598), [sym_line_comment] = STATE(2598), [sym_compiler_directive_decl] = STATE(2598), [sym_fsi_directive_decl] = STATE(2598), [sym_preproc_line] = STATE(2598), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4856), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_AT_AT_GT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2599] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2599), [sym_block_comment] = STATE(2599), [sym_line_comment] = STATE(2599), [sym_compiler_directive_decl] = STATE(2599), [sym_fsi_directive_decl] = STATE(2599), [sym_preproc_line] = STATE(2599), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2586), - [sym_identifier] = ACTIONS(4280), - [anon_sym_EQ] = ACTIONS(4858), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_AT_GT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2600] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2600), [sym_block_comment] = STATE(2600), [sym_line_comment] = STATE(2600), [sym_compiler_directive_decl] = STATE(2600), [sym_fsi_directive_decl] = STATE(2600), [sym_preproc_line] = STATE(2600), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2599), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2601] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1150), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2601), [sym_block_comment] = STATE(2601), [sym_line_comment] = STATE(2601), [sym_compiler_directive_decl] = STATE(2601), [sym_fsi_directive_decl] = STATE(2601), [sym_preproc_line] = STATE(2601), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_AT_AT_GT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2602] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2602), [sym_block_comment] = STATE(2602), [sym_line_comment] = STATE(2602), [sym_compiler_directive_decl] = STATE(2602), [sym_fsi_directive_decl] = STATE(2602), [sym_preproc_line] = STATE(2602), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2583), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_AT_AT_GT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2603] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1572), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2603), [sym_block_comment] = STATE(2603), [sym_line_comment] = STATE(2603), [sym_compiler_directive_decl] = STATE(2603), [sym_fsi_directive_decl] = STATE(2603), [sym_preproc_line] = STATE(2603), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_AT_GT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2604] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(2113), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2604), [sym_block_comment] = STATE(2604), [sym_line_comment] = STATE(2604), [sym_compiler_directive_decl] = STATE(2604), [sym_fsi_directive_decl] = STATE(2604), [sym_preproc_line] = STATE(2604), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_long_identifier_repeat1] = STATE(2604), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_and] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [aux_sym_access_modifier_token1] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_member] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_val] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), }, [2605] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1153), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2605), [sym_block_comment] = STATE(2605), [sym_line_comment] = STATE(2605), [sym_compiler_directive_decl] = STATE(2605), [sym_fsi_directive_decl] = STATE(2605), [sym_preproc_line] = STATE(2605), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_GT] = ACTIONS(3888), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2606] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1827), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2606), [sym_block_comment] = STATE(2606), [sym_line_comment] = STATE(2606), [sym_compiler_directive_decl] = STATE(2606), [sym_fsi_directive_decl] = STATE(2606), [sym_preproc_line] = STATE(2606), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3798), + [anon_sym_EQ] = ACTIONS(3800), + [anon_sym_COLON] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3798), + [anon_sym_COLON_QMARK] = ACTIONS(3798), + [anon_sym_COLON_COLON] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3798), + [anon_sym_DOT] = ACTIONS(3798), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_COLON_GT] = ACTIONS(3800), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3800), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_LT_DASH] = ACTIONS(3798), + [anon_sym_DOT_LBRACK] = ACTIONS(3800), + [anon_sym_LT] = ACTIONS(3800), + [anon_sym_GT] = ACTIONS(3798), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(3800), + [anon_sym_or] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3798), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3798), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3798), + [anon_sym_DASH_DOT] = ACTIONS(3798), + [anon_sym_PERCENT] = ACTIONS(3798), + [anon_sym_AMP_AMP] = ACTIONS(3798), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3798), + [aux_sym_infix_op_token1] = ACTIONS(3798), + [anon_sym_PIPE_PIPE] = ACTIONS(3798), + [anon_sym_BANG_EQ] = ACTIONS(3798), + [anon_sym_COLON_EQ] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(3798), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3798), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + [sym__newline] = ACTIONS(3800), }, [2607] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1919), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7752), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2607), [sym_block_comment] = STATE(2607), [sym_line_comment] = STATE(2607), [sym_compiler_directive_decl] = STATE(2607), [sym_fsi_directive_decl] = STATE(2607), [sym_preproc_line] = STATE(2607), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -323174,89 +327888,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2608] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(929), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2608), [sym_block_comment] = STATE(2608), [sym_line_comment] = STATE(2608), [sym_compiler_directive_decl] = STATE(2608), [sym_fsi_directive_decl] = STATE(2608), [sym_preproc_line] = STATE(2608), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2609] = { [sym_xml_doc] = STATE(2609), @@ -323265,423 +327986,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2609), [sym_fsi_directive_decl] = STATE(2609), [sym_preproc_line] = STATE(2609), - [ts_builtin_sym_end] = ACTIONS(4860), - [sym_identifier] = ACTIONS(4862), - [anon_sym_namespace] = ACTIONS(4862), - [anon_sym_module] = ACTIONS(4862), - [anon_sym_open] = ACTIONS(4862), - [anon_sym_LBRACK_LT] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4862), - [anon_sym_type] = ACTIONS(4862), - [anon_sym_do] = ACTIONS(4862), - [anon_sym_and] = ACTIONS(4862), - [anon_sym_let] = ACTIONS(4862), - [anon_sym_let_BANG] = ACTIONS(4860), - [aux_sym_access_modifier_token1] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LBRACK_PIPE] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_LBRACE_PIPE] = ACTIONS(4860), - [anon_sym_new] = ACTIONS(4862), - [anon_sym_return_BANG] = ACTIONS(4860), - [anon_sym_yield] = ACTIONS(4862), - [anon_sym_yield_BANG] = ACTIONS(4860), - [anon_sym_lazy] = ACTIONS(4862), - [anon_sym_assert] = ACTIONS(4862), - [anon_sym_upcast] = ACTIONS(4862), - [anon_sym_downcast] = ACTIONS(4862), - [anon_sym_LT_AT] = ACTIONS(4862), - [anon_sym_LT_AT_AT] = ACTIONS(4860), - [anon_sym_for] = ACTIONS(4862), - [anon_sym_while] = ACTIONS(4862), - [anon_sym_if] = ACTIONS(4862), - [anon_sym_fun] = ACTIONS(4862), - [anon_sym_try] = ACTIONS(4862), - [anon_sym_match] = ACTIONS(4862), - [anon_sym_match_BANG] = ACTIONS(4860), - [anon_sym_function] = ACTIONS(4862), - [anon_sym_use] = ACTIONS(4862), - [anon_sym_use_BANG] = ACTIONS(4860), - [anon_sym_do_BANG] = ACTIONS(4860), - [anon_sym_begin] = ACTIONS(4862), - [anon_sym_default] = ACTIONS(4862), - [anon_sym_static] = ACTIONS(4862), - [anon_sym_member] = ACTIONS(4862), - [anon_sym_abstract] = ACTIONS(4862), - [anon_sym_override] = ACTIONS(4862), - [anon_sym_val] = ACTIONS(4862), - [aux_sym_char_token1] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4862), - [anon_sym_AT_DQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [sym_bool] = ACTIONS(4862), - [sym_unit] = ACTIONS(4860), - [anon_sym_LPAREN_PIPE] = ACTIONS(4862), - [sym_op_identifier] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_PLUS_DOT] = ACTIONS(4860), - [anon_sym_DASH_DOT] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_TILDE] = ACTIONS(4860), - [aux_sym_prefix_op_token1] = ACTIONS(4860), - [sym_int] = ACTIONS(4862), - [sym_xint] = ACTIONS(4860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4860), - [anon_sym_POUNDload] = ACTIONS(4860), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4860), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_DOT_DOT] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2610] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2610), [sym_block_comment] = STATE(2610), [sym_line_comment] = STATE(2610), [sym_compiler_directive_decl] = STATE(2610), [sym_fsi_directive_decl] = STATE(2610), [sym_preproc_line] = STATE(2610), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2598), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [anon_sym_POUNDendif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2611] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(2047), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2611), [sym_block_comment] = STATE(2611), [sym_line_comment] = STATE(2611), [sym_compiler_directive_decl] = STATE(2611), [sym_fsi_directive_decl] = STATE(2611), [sym_preproc_line] = STATE(2611), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [anon_sym_POUNDendif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2612] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1029), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2612), [sym_block_comment] = STATE(2612), [sym_line_comment] = STATE(2612), [sym_compiler_directive_decl] = STATE(2612), [sym_fsi_directive_decl] = STATE(2612), [sym_preproc_line] = STATE(2612), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [anon_sym_POUNDendif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2613] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1746), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2613), [sym_block_comment] = STATE(2613), [sym_line_comment] = STATE(2613), [sym_compiler_directive_decl] = STATE(2613), [sym_fsi_directive_decl] = STATE(2613), [sym_preproc_line] = STATE(2613), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [anon_sym_POUNDendif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2614] = { [sym_xml_doc] = STATE(2614), @@ -323690,162 +328446,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2614), [sym_fsi_directive_decl] = STATE(2614), [sym_preproc_line] = STATE(2614), - [ts_builtin_sym_end] = ACTIONS(4866), - [sym_identifier] = ACTIONS(4868), - [anon_sym_namespace] = ACTIONS(4868), - [anon_sym_module] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_LBRACK_LT] = ACTIONS(4866), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_type] = ACTIONS(4868), - [anon_sym_do] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_let_BANG] = ACTIONS(4866), - [aux_sym_access_modifier_token1] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_LBRACK_PIPE] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(4868), - [anon_sym_LBRACE_PIPE] = ACTIONS(4866), - [anon_sym_new] = ACTIONS(4868), - [anon_sym_return_BANG] = ACTIONS(4866), - [anon_sym_yield] = ACTIONS(4868), - [anon_sym_yield_BANG] = ACTIONS(4866), - [anon_sym_lazy] = ACTIONS(4868), - [anon_sym_assert] = ACTIONS(4868), - [anon_sym_upcast] = ACTIONS(4868), - [anon_sym_downcast] = ACTIONS(4868), - [anon_sym_LT_AT] = ACTIONS(4868), - [anon_sym_LT_AT_AT] = ACTIONS(4866), - [anon_sym_for] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_match] = ACTIONS(4868), - [anon_sym_match_BANG] = ACTIONS(4866), - [anon_sym_function] = ACTIONS(4868), - [anon_sym_use] = ACTIONS(4868), - [anon_sym_use_BANG] = ACTIONS(4866), - [anon_sym_do_BANG] = ACTIONS(4866), - [anon_sym_begin] = ACTIONS(4868), - [anon_sym_default] = ACTIONS(4868), - [anon_sym_static] = ACTIONS(4868), - [anon_sym_member] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_val] = ACTIONS(4868), - [aux_sym_char_token1] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4868), - [anon_sym_DQUOTE] = ACTIONS(4868), - [anon_sym_AT_DQUOTE] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [sym_bool] = ACTIONS(4868), - [sym_unit] = ACTIONS(4866), - [anon_sym_LPAREN_PIPE] = ACTIONS(4868), - [sym_op_identifier] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_PLUS_DOT] = ACTIONS(4866), - [anon_sym_DASH_DOT] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [aux_sym_prefix_op_token1] = ACTIONS(4866), - [sym_int] = ACTIONS(4868), - [sym_xint] = ACTIONS(4866), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4866), - [anon_sym_POUNDload] = ACTIONS(4866), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4866), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [anon_sym_POUNDendif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2615] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1645), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3907), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2615), [sym_block_comment] = STATE(2615), [sym_line_comment] = STATE(2615), [sym_compiler_directive_decl] = STATE(2615), [sym_fsi_directive_decl] = STATE(2615), [sym_preproc_line] = STATE(2615), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4762), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4764), + [anon_sym__] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_COLON_QMARK] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_LBRACK_PIPE] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_AT_DQUOTE] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [sym_bool] = ACTIONS(4764), + [sym_unit] = ACTIONS(4762), + [anon_sym_LPAREN_PIPE] = ACTIONS(4764), + [sym_op_identifier] = ACTIONS(4762), + [sym_int] = ACTIONS(4764), + [sym_xint] = ACTIONS(4762), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -323860,508 +328630,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2616), [sym_fsi_directive_decl] = STATE(2616), [sym_preproc_line] = STATE(2616), - [ts_builtin_sym_end] = ACTIONS(4860), - [sym_identifier] = ACTIONS(4862), - [anon_sym_namespace] = ACTIONS(4862), - [anon_sym_module] = ACTIONS(4862), - [anon_sym_open] = ACTIONS(4862), - [anon_sym_LBRACK_LT] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4862), - [anon_sym_type] = ACTIONS(4862), - [anon_sym_do] = ACTIONS(4862), - [anon_sym_and] = ACTIONS(4862), - [anon_sym_let] = ACTIONS(4862), - [anon_sym_let_BANG] = ACTIONS(4860), - [aux_sym_access_modifier_token1] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LBRACK_PIPE] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_LBRACE_PIPE] = ACTIONS(4860), - [anon_sym_new] = ACTIONS(4862), - [anon_sym_return_BANG] = ACTIONS(4860), - [anon_sym_yield] = ACTIONS(4862), - [anon_sym_yield_BANG] = ACTIONS(4860), - [anon_sym_lazy] = ACTIONS(4862), - [anon_sym_assert] = ACTIONS(4862), - [anon_sym_upcast] = ACTIONS(4862), - [anon_sym_downcast] = ACTIONS(4862), - [anon_sym_LT_AT] = ACTIONS(4862), - [anon_sym_LT_AT_AT] = ACTIONS(4860), - [anon_sym_for] = ACTIONS(4862), - [anon_sym_while] = ACTIONS(4862), - [anon_sym_if] = ACTIONS(4862), - [anon_sym_fun] = ACTIONS(4862), - [anon_sym_try] = ACTIONS(4862), - [anon_sym_match] = ACTIONS(4862), - [anon_sym_match_BANG] = ACTIONS(4860), - [anon_sym_function] = ACTIONS(4862), - [anon_sym_use] = ACTIONS(4862), - [anon_sym_use_BANG] = ACTIONS(4860), - [anon_sym_do_BANG] = ACTIONS(4860), - [anon_sym_begin] = ACTIONS(4862), - [anon_sym_default] = ACTIONS(4862), - [anon_sym_static] = ACTIONS(4862), - [anon_sym_member] = ACTIONS(4862), - [anon_sym_abstract] = ACTIONS(4862), - [anon_sym_override] = ACTIONS(4862), - [anon_sym_val] = ACTIONS(4862), - [aux_sym_char_token1] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4862), - [anon_sym_AT_DQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [sym_bool] = ACTIONS(4862), - [sym_unit] = ACTIONS(4860), - [anon_sym_LPAREN_PIPE] = ACTIONS(4862), - [sym_op_identifier] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_PLUS_DOT] = ACTIONS(4860), - [anon_sym_DASH_DOT] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_TILDE] = ACTIONS(4860), - [aux_sym_prefix_op_token1] = ACTIONS(4860), - [sym_int] = ACTIONS(4862), - [sym_xint] = ACTIONS(4860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4860), - [anon_sym_POUNDload] = ACTIONS(4860), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4860), + [aux_sym_long_identifier_repeat1] = STATE(2604), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_and] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [aux_sym_access_modifier_token1] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_member] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_val] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), }, [2617] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2617), [sym_block_comment] = STATE(2617), [sym_line_comment] = STATE(2617), [sym_compiler_directive_decl] = STATE(2617), [sym_fsi_directive_decl] = STATE(2617), [sym_preproc_line] = STATE(2617), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2585), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2618] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2618), [sym_block_comment] = STATE(2618), [sym_line_comment] = STATE(2618), [sym_compiler_directive_decl] = STATE(2618), [sym_fsi_directive_decl] = STATE(2618), [sym_preproc_line] = STATE(2618), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2592), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_GT] = ACTIONS(3899), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2619] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1855), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2619), [sym_block_comment] = STATE(2619), [sym_line_comment] = STATE(2619), [sym_compiler_directive_decl] = STATE(2619), [sym_fsi_directive_decl] = STATE(2619), [sym_preproc_line] = STATE(2619), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3792), + [anon_sym_COLON] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_QMARK] = ACTIONS(3790), + [anon_sym_COLON_QMARK] = ACTIONS(3790), + [anon_sym_COLON_COLON] = ACTIONS(3792), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3790), + [anon_sym_DOT] = ACTIONS(3790), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_COLON_GT] = ACTIONS(3792), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3792), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_LT_DASH] = ACTIONS(3790), + [anon_sym_DOT_LBRACK] = ACTIONS(3792), + [anon_sym_LT] = ACTIONS(3792), + [anon_sym_GT] = ACTIONS(3790), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(3792), + [anon_sym_or] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3790), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3790), + [anon_sym_DASH_DOT] = ACTIONS(3790), + [anon_sym_PERCENT] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3790), + [aux_sym_infix_op_token1] = ACTIONS(3790), + [anon_sym_PIPE_PIPE] = ACTIONS(3790), + [anon_sym_BANG_EQ] = ACTIONS(3790), + [anon_sym_COLON_EQ] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3790), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3790), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + [sym__newline] = ACTIONS(3792), }, [2620] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5400), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2620), [sym_block_comment] = STATE(2620), [sym_line_comment] = STATE(2620), [sym_compiler_directive_decl] = STATE(2620), [sym_fsi_directive_decl] = STATE(2620), [sym_preproc_line] = STATE(2620), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4874), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_long_identifier_repeat1] = STATE(2616), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_and] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [aux_sym_access_modifier_token1] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_member] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_val] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), }, [2621] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1250), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2621), [sym_block_comment] = STATE(2621), [sym_line_comment] = STATE(2621), [sym_compiler_directive_decl] = STATE(2621), [sym_fsi_directive_decl] = STATE(2621), [sym_preproc_line] = STATE(2621), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_DOT_DOT] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2622] = { [sym_xml_doc] = STATE(2622), @@ -324370,423 +329182,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2622), [sym_fsi_directive_decl] = STATE(2622), [sym_preproc_line] = STATE(2622), - [ts_builtin_sym_end] = ACTIONS(4866), - [sym_identifier] = ACTIONS(4868), - [anon_sym_namespace] = ACTIONS(4868), - [anon_sym_module] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_LBRACK_LT] = ACTIONS(4866), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_type] = ACTIONS(4868), - [anon_sym_do] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_let_BANG] = ACTIONS(4866), - [aux_sym_access_modifier_token1] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_LBRACK_PIPE] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(4868), - [anon_sym_LBRACE_PIPE] = ACTIONS(4866), - [anon_sym_new] = ACTIONS(4868), - [anon_sym_return_BANG] = ACTIONS(4866), - [anon_sym_yield] = ACTIONS(4868), - [anon_sym_yield_BANG] = ACTIONS(4866), - [anon_sym_lazy] = ACTIONS(4868), - [anon_sym_assert] = ACTIONS(4868), - [anon_sym_upcast] = ACTIONS(4868), - [anon_sym_downcast] = ACTIONS(4868), - [anon_sym_LT_AT] = ACTIONS(4868), - [anon_sym_LT_AT_AT] = ACTIONS(4866), - [anon_sym_for] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_match] = ACTIONS(4868), - [anon_sym_match_BANG] = ACTIONS(4866), - [anon_sym_function] = ACTIONS(4868), - [anon_sym_use] = ACTIONS(4868), - [anon_sym_use_BANG] = ACTIONS(4866), - [anon_sym_do_BANG] = ACTIONS(4866), - [anon_sym_begin] = ACTIONS(4868), - [anon_sym_default] = ACTIONS(4868), - [anon_sym_static] = ACTIONS(4868), - [anon_sym_member] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_val] = ACTIONS(4868), - [aux_sym_char_token1] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4868), - [anon_sym_DQUOTE] = ACTIONS(4868), - [anon_sym_AT_DQUOTE] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [sym_bool] = ACTIONS(4868), - [sym_unit] = ACTIONS(4866), - [anon_sym_LPAREN_PIPE] = ACTIONS(4868), - [sym_op_identifier] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_PLUS_DOT] = ACTIONS(4866), - [anon_sym_DASH_DOT] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [aux_sym_prefix_op_token1] = ACTIONS(4866), - [sym_int] = ACTIONS(4868), - [sym_xint] = ACTIONS(4866), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4866), - [anon_sym_POUNDload] = ACTIONS(4866), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4866), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_DOT_DOT] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2623] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1559), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2623), [sym_block_comment] = STATE(2623), [sym_line_comment] = STATE(2623), [sym_compiler_directive_decl] = STATE(2623), [sym_fsi_directive_decl] = STATE(2623), [sym_preproc_line] = STATE(2623), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_DOT_DOT] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2624] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1562), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2624), [sym_block_comment] = STATE(2624), [sym_line_comment] = STATE(2624), [sym_compiler_directive_decl] = STATE(2624), [sym_fsi_directive_decl] = STATE(2624), [sym_preproc_line] = STATE(2624), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3730), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2625] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5313), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1637), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2625), [sym_block_comment] = STATE(2625), [sym_line_comment] = STATE(2625), [sym_compiler_directive_decl] = STATE(2625), [sym_fsi_directive_decl] = STATE(2625), [sym_preproc_line] = STATE(2625), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(3820), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_return] = ACTIONS(3818), + [anon_sym_do] = ACTIONS(3818), + [anon_sym_let] = ACTIONS(3818), + [anon_sym_let_BANG] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3818), + [anon_sym_COMMA] = ACTIONS(3820), + [anon_sym_null] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_COLON] = ACTIONS(3820), + [anon_sym_AMP] = ACTIONS(3818), + [anon_sym_LBRACK] = ACTIONS(3818), + [anon_sym_LBRACK_PIPE] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3818), + [anon_sym_LT_AT] = ACTIONS(3818), + [anon_sym_LT_AT_AT] = ACTIONS(3818), + [anon_sym_DOT] = ACTIONS(3818), + [anon_sym_LBRACE_PIPE] = ACTIONS(3820), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_return_BANG] = ACTIONS(3820), + [anon_sym_yield] = ACTIONS(3818), + [anon_sym_yield_BANG] = ACTIONS(3820), + [anon_sym_lazy] = ACTIONS(3818), + [anon_sym_assert] = ACTIONS(3818), + [anon_sym_upcast] = ACTIONS(3818), + [anon_sym_downcast] = ACTIONS(3818), + [anon_sym_COLON_GT] = ACTIONS(3820), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3820), + [anon_sym_for] = ACTIONS(3818), + [anon_sym_while] = ACTIONS(3818), + [anon_sym_if] = ACTIONS(3818), + [anon_sym_fun] = ACTIONS(3818), + [anon_sym_try] = ACTIONS(3818), + [anon_sym_match] = ACTIONS(3818), + [anon_sym_match_BANG] = ACTIONS(3820), + [anon_sym_function] = ACTIONS(3818), + [anon_sym_LT_DASH] = ACTIONS(3818), + [anon_sym_DOT_LBRACK] = ACTIONS(3820), + [anon_sym_LT] = ACTIONS(3820), + [anon_sym_use] = ACTIONS(3818), + [anon_sym_use_BANG] = ACTIONS(3820), + [anon_sym_do_BANG] = ACTIONS(3820), + [anon_sym_begin] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(3820), + [anon_sym_or] = ACTIONS(3818), + [aux_sym_char_token1] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_AT_DQUOTE] = ACTIONS(3820), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3820), + [sym_bool] = ACTIONS(3818), + [sym_unit] = ACTIONS(3818), + [anon_sym_LPAREN_PIPE] = ACTIONS(3818), + [sym_op_identifier] = ACTIONS(3818), + [anon_sym_PLUS] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [anon_sym_PLUS_DOT] = ACTIONS(3818), + [anon_sym_DASH_DOT] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_AMP_AMP] = ACTIONS(3818), + [anon_sym_TILDE] = ACTIONS(3820), + [aux_sym_prefix_op_token1] = ACTIONS(3818), + [aux_sym_infix_op_token1] = ACTIONS(3818), + [anon_sym_PIPE_PIPE] = ACTIONS(3818), + [anon_sym_BANG_EQ] = ACTIONS(3818), + [anon_sym_COLON_EQ] = ACTIONS(3820), + [anon_sym_DOLLAR] = ACTIONS(3818), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3818), + [sym_int] = ACTIONS(3818), + [sym_xint] = ACTIONS(3820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3820), + [anon_sym_POUNDendif] = ACTIONS(3820), + [sym__newline] = ACTIONS(3820), }, [2626] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2626), [sym_block_comment] = STATE(2626), [sym_line_comment] = STATE(2626), [sym_compiler_directive_decl] = STATE(2626), [sym_fsi_directive_decl] = STATE(2626), [sym_preproc_line] = STATE(2626), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2594), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_COLON_QMARK] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_COLON_GT] = ACTIONS(3287), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_DOT_LBRACK] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_LPAREN2] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3285), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3285), + [anon_sym_DASH_DOT] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3285), + [aux_sym_infix_op_token1] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_DOLLAR] = ACTIONS(3285), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3285), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [anon_sym_POUNDendif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), }, [2627] = { [sym_xml_doc] = STATE(2627), @@ -324795,678 +329642,734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2627), [sym_fsi_directive_decl] = STATE(2627), [sym_preproc_line] = STATE(2627), - [ts_builtin_sym_end] = ACTIONS(4878), - [sym_identifier] = ACTIONS(4880), - [anon_sym_namespace] = ACTIONS(4880), - [anon_sym_module] = ACTIONS(4880), - [anon_sym_open] = ACTIONS(4880), - [anon_sym_LBRACK_LT] = ACTIONS(4878), - [anon_sym_return] = ACTIONS(4880), - [anon_sym_type] = ACTIONS(4880), - [anon_sym_do] = ACTIONS(4880), - [anon_sym_and] = ACTIONS(4880), - [anon_sym_let] = ACTIONS(4880), - [anon_sym_let_BANG] = ACTIONS(4878), - [aux_sym_access_modifier_token1] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_LBRACK_PIPE] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_LBRACE_PIPE] = ACTIONS(4878), - [anon_sym_with] = ACTIONS(4882), - [anon_sym_new] = ACTIONS(4880), - [anon_sym_return_BANG] = ACTIONS(4878), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_yield_BANG] = ACTIONS(4878), - [anon_sym_lazy] = ACTIONS(4880), - [anon_sym_assert] = ACTIONS(4880), - [anon_sym_upcast] = ACTIONS(4880), - [anon_sym_downcast] = ACTIONS(4880), - [anon_sym_LT_AT] = ACTIONS(4880), - [anon_sym_LT_AT_AT] = ACTIONS(4878), - [anon_sym_for] = ACTIONS(4880), - [anon_sym_while] = ACTIONS(4880), - [anon_sym_if] = ACTIONS(4880), - [anon_sym_fun] = ACTIONS(4880), - [anon_sym_try] = ACTIONS(4880), - [anon_sym_match] = ACTIONS(4880), - [anon_sym_match_BANG] = ACTIONS(4878), - [anon_sym_function] = ACTIONS(4880), - [anon_sym_use] = ACTIONS(4880), - [anon_sym_use_BANG] = ACTIONS(4878), - [anon_sym_do_BANG] = ACTIONS(4878), - [anon_sym_begin] = ACTIONS(4880), - [anon_sym_default] = ACTIONS(4880), - [anon_sym_static] = ACTIONS(4880), - [anon_sym_member] = ACTIONS(4880), - [anon_sym_abstract] = ACTIONS(4880), - [anon_sym_override] = ACTIONS(4880), - [anon_sym_val] = ACTIONS(4880), - [aux_sym_char_token1] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4880), - [anon_sym_DQUOTE] = ACTIONS(4880), - [anon_sym_AT_DQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4878), - [sym_bool] = ACTIONS(4880), - [sym_unit] = ACTIONS(4878), - [anon_sym_LPAREN_PIPE] = ACTIONS(4880), - [sym_op_identifier] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_PLUS_DOT] = ACTIONS(4878), - [anon_sym_DASH_DOT] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_TILDE] = ACTIONS(4878), - [aux_sym_prefix_op_token1] = ACTIONS(4878), - [sym_int] = ACTIONS(4880), - [sym_xint] = ACTIONS(4878), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4878), - [anon_sym_POUNDload] = ACTIONS(4878), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4878), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_AT_AT_GT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2628] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5376), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1871), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2628), [sym_block_comment] = STATE(2628), [sym_line_comment] = STATE(2628), [sym_compiler_directive_decl] = STATE(2628), [sym_fsi_directive_decl] = STATE(2628), [sym_preproc_line] = STATE(2628), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_AT_AT_GT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2629] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1535), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2629), [sym_block_comment] = STATE(2629), [sym_line_comment] = STATE(2629), [sym_compiler_directive_decl] = STATE(2629), [sym_fsi_directive_decl] = STATE(2629), [sym_preproc_line] = STATE(2629), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_AT_AT_GT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2630] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1684), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2630), [sym_block_comment] = STATE(2630), [sym_line_comment] = STATE(2630), [sym_compiler_directive_decl] = STATE(2630), [sym_fsi_directive_decl] = STATE(2630), [sym_preproc_line] = STATE(2630), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3786), + [anon_sym_EQ] = ACTIONS(3788), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_QMARK] = ACTIONS(3786), + [anon_sym_COLON_QMARK] = ACTIONS(3786), + [anon_sym_COLON_COLON] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3786), + [anon_sym_DOT] = ACTIONS(3786), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_COLON_GT] = ACTIONS(3788), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_LT_DASH] = ACTIONS(3786), + [anon_sym_DOT_LBRACK] = ACTIONS(3788), + [anon_sym_LT] = ACTIONS(3788), + [anon_sym_GT] = ACTIONS(3786), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3786), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3786), + [anon_sym_DASH_DOT] = ACTIONS(3786), + [anon_sym_PERCENT] = ACTIONS(3786), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3786), + [aux_sym_infix_op_token1] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3786), + [anon_sym_BANG_EQ] = ACTIONS(3786), + [anon_sym_COLON_EQ] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3786), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3786), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + [sym__newline] = ACTIONS(3788), }, [2631] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5854), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2631), [sym_block_comment] = STATE(2631), [sym_line_comment] = STATE(2631), [sym_compiler_directive_decl] = STATE(2631), [sym_fsi_directive_decl] = STATE(2631), [sym_preproc_line] = STATE(2631), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_AT_AT_GT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2632] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2632), [sym_block_comment] = STATE(2632), [sym_line_comment] = STATE(2632), [sym_compiler_directive_decl] = STATE(2632), [sym_fsi_directive_decl] = STATE(2632), [sym_preproc_line] = STATE(2632), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2580), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_GT] = ACTIONS(3859), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2633] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5450), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2633), [sym_block_comment] = STATE(2633), [sym_line_comment] = STATE(2633), [sym_compiler_directive_decl] = STATE(2633), [sym_fsi_directive_decl] = STATE(2633), [sym_preproc_line] = STATE(2633), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_GT] = ACTIONS(3782), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2634] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5770), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2634), [sym_block_comment] = STATE(2634), [sym_line_comment] = STATE(2634), [sym_compiler_directive_decl] = STATE(2634), [sym_fsi_directive_decl] = STATE(2634), [sym_preproc_line] = STATE(2634), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_DOT_DOT] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2635] = { [sym_xml_doc] = STATE(2635), @@ -325475,332 +330378,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2635), [sym_fsi_directive_decl] = STATE(2635), [sym_preproc_line] = STATE(2635), - [ts_builtin_sym_end] = ACTIONS(4886), - [sym_identifier] = ACTIONS(4888), - [anon_sym_namespace] = ACTIONS(4888), - [anon_sym_module] = ACTIONS(4888), - [anon_sym_open] = ACTIONS(4888), - [anon_sym_LBRACK_LT] = ACTIONS(4886), - [anon_sym_return] = ACTIONS(4888), - [anon_sym_type] = ACTIONS(4888), - [anon_sym_do] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_let] = ACTIONS(4888), - [anon_sym_let_BANG] = ACTIONS(4886), - [aux_sym_access_modifier_token1] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_LBRACK_PIPE] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_LBRACE_PIPE] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4890), - [anon_sym_new] = ACTIONS(4888), - [anon_sym_return_BANG] = ACTIONS(4886), - [anon_sym_yield] = ACTIONS(4888), - [anon_sym_yield_BANG] = ACTIONS(4886), - [anon_sym_lazy] = ACTIONS(4888), - [anon_sym_assert] = ACTIONS(4888), - [anon_sym_upcast] = ACTIONS(4888), - [anon_sym_downcast] = ACTIONS(4888), - [anon_sym_LT_AT] = ACTIONS(4888), - [anon_sym_LT_AT_AT] = ACTIONS(4886), - [anon_sym_for] = ACTIONS(4888), - [anon_sym_while] = ACTIONS(4888), - [anon_sym_if] = ACTIONS(4888), - [anon_sym_fun] = ACTIONS(4888), - [anon_sym_try] = ACTIONS(4888), - [anon_sym_match] = ACTIONS(4888), - [anon_sym_match_BANG] = ACTIONS(4886), - [anon_sym_function] = ACTIONS(4888), - [anon_sym_use] = ACTIONS(4888), - [anon_sym_use_BANG] = ACTIONS(4886), - [anon_sym_do_BANG] = ACTIONS(4886), - [anon_sym_begin] = ACTIONS(4888), - [anon_sym_default] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_member] = ACTIONS(4888), - [anon_sym_abstract] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_val] = ACTIONS(4888), - [aux_sym_char_token1] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_AT_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4886), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4886), - [sym_bool] = ACTIONS(4888), - [sym_unit] = ACTIONS(4886), - [anon_sym_LPAREN_PIPE] = ACTIONS(4888), - [sym_op_identifier] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS_DOT] = ACTIONS(4886), - [anon_sym_DASH_DOT] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [aux_sym_prefix_op_token1] = ACTIONS(4886), - [sym_int] = ACTIONS(4888), - [sym_xint] = ACTIONS(4886), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4886), - [anon_sym_POUNDload] = ACTIONS(4886), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4886), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_AT_AT_GT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2636] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5398), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1258), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2636), [sym_block_comment] = STATE(2636), [sym_line_comment] = STATE(2636), [sym_compiler_directive_decl] = STATE(2636), [sym_fsi_directive_decl] = STATE(2636), [sym_preproc_line] = STATE(2636), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_AT_AT_GT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2637] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1438), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2637), [sym_block_comment] = STATE(2637), [sym_line_comment] = STATE(2637), [sym_compiler_directive_decl] = STATE(2637), [sym_fsi_directive_decl] = STATE(2637), [sym_preproc_line] = STATE(2637), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_DOT_DOT] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2638] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5268), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1433), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3357), + [sym_function_declaration_left] = STATE(6579), + [sym_value_declaration_left] = STATE(6579), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2638), [sym_block_comment] = STATE(2638), [sym_line_comment] = STATE(2638), [sym_compiler_directive_decl] = STATE(2638), [sym_fsi_directive_decl] = STATE(2638), [sym_preproc_line] = STATE(2638), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4990), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -325809,599 +330740,648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2639] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5340), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1766), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2639), [sym_block_comment] = STATE(2639), [sym_line_comment] = STATE(2639), [sym_compiler_directive_decl] = STATE(2639), [sym_fsi_directive_decl] = STATE(2639), [sym_preproc_line] = STATE(2639), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_DOT_DOT] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2640] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1590), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2640), [sym_block_comment] = STATE(2640), [sym_line_comment] = STATE(2640), [sym_compiler_directive_decl] = STATE(2640), [sym_fsi_directive_decl] = STATE(2640), [sym_preproc_line] = STATE(2640), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_DOT_DOT] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2641] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1687), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2641), [sym_block_comment] = STATE(2641), [sym_line_comment] = STATE(2641), [sym_compiler_directive_decl] = STATE(2641), [sym_fsi_directive_decl] = STATE(2641), [sym_preproc_line] = STATE(2641), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_AT_GT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2642] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3562), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2642), [sym_block_comment] = STATE(2642), [sym_line_comment] = STATE(2642), [sym_compiler_directive_decl] = STATE(2642), [sym_fsi_directive_decl] = STATE(2642), [sym_preproc_line] = STATE(2642), - [aux_sym_attributes_repeat1] = STATE(3806), - [aux_sym__method_defn_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_DOT_DOT] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2643] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5296), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1160), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2643), [sym_block_comment] = STATE(2643), [sym_line_comment] = STATE(2643), [sym_compiler_directive_decl] = STATE(2643), [sym_fsi_directive_decl] = STATE(2643), [sym_preproc_line] = STATE(2643), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [anon_sym_POUNDendif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2644] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1890), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2644), [sym_block_comment] = STATE(2644), [sym_line_comment] = STATE(2644), [sym_compiler_directive_decl] = STATE(2644), [sym_fsi_directive_decl] = STATE(2644), [sym_preproc_line] = STATE(2644), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_long_identifier_repeat1] = STATE(2616), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_and] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [aux_sym_access_modifier_token1] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(4986), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_member] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_val] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), }, [2645] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5324), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1593), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2645), [sym_block_comment] = STATE(2645), [sym_line_comment] = STATE(2645), [sym_compiler_directive_decl] = STATE(2645), [sym_fsi_directive_decl] = STATE(2645), [sym_preproc_line] = STATE(2645), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [anon_sym_POUNDendif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2646] = { [sym_xml_doc] = STATE(2646), @@ -326410,338 +331390,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2646), [sym_fsi_directive_decl] = STATE(2646), [sym_preproc_line] = STATE(2646), - [ts_builtin_sym_end] = ACTIONS(4892), - [sym_identifier] = ACTIONS(4894), - [anon_sym_namespace] = ACTIONS(4894), - [anon_sym_module] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_LBRACK_LT] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_type] = ACTIONS(4894), - [anon_sym_do] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_let_BANG] = ACTIONS(4892), - [aux_sym_access_modifier_token1] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_LBRACK_PIPE] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4894), - [anon_sym_LBRACE_PIPE] = ACTIONS(4892), - [anon_sym_new] = ACTIONS(4894), - [anon_sym_return_BANG] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4894), - [anon_sym_yield_BANG] = ACTIONS(4892), - [anon_sym_lazy] = ACTIONS(4894), - [anon_sym_assert] = ACTIONS(4894), - [anon_sym_upcast] = ACTIONS(4894), - [anon_sym_downcast] = ACTIONS(4894), - [anon_sym_LT_AT] = ACTIONS(4894), - [anon_sym_LT_AT_AT] = ACTIONS(4892), - [anon_sym_for] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_match] = ACTIONS(4894), - [anon_sym_match_BANG] = ACTIONS(4892), - [anon_sym_function] = ACTIONS(4894), - [anon_sym_use] = ACTIONS(4894), - [anon_sym_use_BANG] = ACTIONS(4892), - [anon_sym_do_BANG] = ACTIONS(4892), - [anon_sym_begin] = ACTIONS(4894), - [anon_sym_default] = ACTIONS(4894), - [anon_sym_static] = ACTIONS(4894), - [anon_sym_member] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_val] = ACTIONS(4894), - [aux_sym_char_token1] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_AT_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [sym_bool] = ACTIONS(4894), - [sym_unit] = ACTIONS(4892), - [anon_sym_LPAREN_PIPE] = ACTIONS(4894), - [sym_op_identifier] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_PLUS_DOT] = ACTIONS(4892), - [anon_sym_DASH_DOT] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_TILDE] = ACTIONS(4892), - [aux_sym_prefix_op_token1] = ACTIONS(4892), - [sym_int] = ACTIONS(4894), - [sym_xint] = ACTIONS(4892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4892), - [anon_sym_POUNDload] = ACTIONS(4892), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4892), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_AT_AT_GT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2647] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5293), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(5851), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2647), [sym_block_comment] = STATE(2647), [sym_line_comment] = STATE(2647), [sym_compiler_directive_decl] = STATE(2647), [sym_fsi_directive_decl] = STATE(2647), [sym_preproc_line] = STATE(2647), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [anon_sym_POUNDendif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2648] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5456), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2648), [sym_block_comment] = STATE(2648), [sym_line_comment] = STATE(2648), [sym_compiler_directive_decl] = STATE(2648), [sym_fsi_directive_decl] = STATE(2648), [sym_preproc_line] = STATE(2648), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [anon_sym_POUNDendif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2649] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5248), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1605), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2649), [sym_block_comment] = STATE(2649), [sym_line_comment] = STATE(2649), [sym_compiler_directive_decl] = STATE(2649), [sym_fsi_directive_decl] = STATE(2649), [sym_preproc_line] = STATE(2649), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3778), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2650] = { [sym_xml_doc] = STATE(2650), @@ -326750,162 +331758,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2650), [sym_fsi_directive_decl] = STATE(2650), [sym_preproc_line] = STATE(2650), - [ts_builtin_sym_end] = ACTIONS(4892), - [sym_identifier] = ACTIONS(4894), - [anon_sym_namespace] = ACTIONS(4894), - [anon_sym_module] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_LBRACK_LT] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_type] = ACTIONS(4894), - [anon_sym_do] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_let_BANG] = ACTIONS(4892), - [aux_sym_access_modifier_token1] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4900), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_LBRACK_PIPE] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4894), - [anon_sym_LBRACE_PIPE] = ACTIONS(4892), - [anon_sym_new] = ACTIONS(4894), - [anon_sym_return_BANG] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4894), - [anon_sym_yield_BANG] = ACTIONS(4892), - [anon_sym_lazy] = ACTIONS(4894), - [anon_sym_assert] = ACTIONS(4894), - [anon_sym_upcast] = ACTIONS(4894), - [anon_sym_downcast] = ACTIONS(4894), - [anon_sym_LT_AT] = ACTIONS(4894), - [anon_sym_LT_AT_AT] = ACTIONS(4892), - [anon_sym_for] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_match] = ACTIONS(4894), - [anon_sym_match_BANG] = ACTIONS(4892), - [anon_sym_function] = ACTIONS(4894), - [anon_sym_use] = ACTIONS(4894), - [anon_sym_use_BANG] = ACTIONS(4892), - [anon_sym_do_BANG] = ACTIONS(4892), - [anon_sym_begin] = ACTIONS(4894), - [anon_sym_default] = ACTIONS(4894), - [anon_sym_static] = ACTIONS(4894), - [anon_sym_member] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_val] = ACTIONS(4894), - [aux_sym_char_token1] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_AT_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [sym_bool] = ACTIONS(4894), - [sym_unit] = ACTIONS(4892), - [anon_sym_LPAREN_PIPE] = ACTIONS(4894), - [sym_op_identifier] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_PLUS_DOT] = ACTIONS(4892), - [anon_sym_DASH_DOT] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_TILDE] = ACTIONS(4892), - [aux_sym_prefix_op_token1] = ACTIONS(4892), - [sym_int] = ACTIONS(4894), - [sym_xint] = ACTIONS(4892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4892), - [anon_sym_POUNDload] = ACTIONS(4892), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4892), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_AT_GT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2651] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(911), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(8087), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2651), [sym_block_comment] = STATE(2651), [sym_line_comment] = STATE(2651), [sym_compiler_directive_decl] = STATE(2651), [sym_fsi_directive_decl] = STATE(2651), [sym_preproc_line] = STATE(2651), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -326920,83 +331942,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2652), [sym_fsi_directive_decl] = STATE(2652), [sym_preproc_line] = STATE(2652), - [ts_builtin_sym_end] = ACTIONS(4902), - [sym_identifier] = ACTIONS(4904), - [anon_sym_namespace] = ACTIONS(4904), - [anon_sym_module] = ACTIONS(4904), - [anon_sym_open] = ACTIONS(4904), - [anon_sym_LBRACK_LT] = ACTIONS(4902), - [anon_sym_return] = ACTIONS(4904), - [anon_sym_type] = ACTIONS(4904), - [anon_sym_do] = ACTIONS(4904), - [anon_sym_and] = ACTIONS(4904), - [anon_sym_let] = ACTIONS(4904), - [anon_sym_let_BANG] = ACTIONS(4902), - [aux_sym_access_modifier_token1] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_null] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_LBRACK_PIPE] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4904), - [anon_sym_LBRACE_PIPE] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(4906), - [anon_sym_new] = ACTIONS(4904), - [anon_sym_return_BANG] = ACTIONS(4902), - [anon_sym_yield] = ACTIONS(4904), - [anon_sym_yield_BANG] = ACTIONS(4902), - [anon_sym_lazy] = ACTIONS(4904), - [anon_sym_assert] = ACTIONS(4904), - [anon_sym_upcast] = ACTIONS(4904), - [anon_sym_downcast] = ACTIONS(4904), - [anon_sym_LT_AT] = ACTIONS(4904), - [anon_sym_LT_AT_AT] = ACTIONS(4902), - [anon_sym_for] = ACTIONS(4904), - [anon_sym_while] = ACTIONS(4904), - [anon_sym_if] = ACTIONS(4904), - [anon_sym_fun] = ACTIONS(4904), - [anon_sym_try] = ACTIONS(4904), - [anon_sym_match] = ACTIONS(4904), - [anon_sym_match_BANG] = ACTIONS(4902), - [anon_sym_function] = ACTIONS(4904), - [anon_sym_use] = ACTIONS(4904), - [anon_sym_use_BANG] = ACTIONS(4902), - [anon_sym_do_BANG] = ACTIONS(4902), - [anon_sym_begin] = ACTIONS(4904), - [anon_sym_default] = ACTIONS(4904), - [anon_sym_static] = ACTIONS(4904), - [anon_sym_member] = ACTIONS(4904), - [anon_sym_abstract] = ACTIONS(4904), - [anon_sym_override] = ACTIONS(4904), - [anon_sym_val] = ACTIONS(4904), - [aux_sym_char_token1] = ACTIONS(4902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_AT_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4902), - [sym_bool] = ACTIONS(4904), - [sym_unit] = ACTIONS(4902), - [anon_sym_LPAREN_PIPE] = ACTIONS(4904), - [sym_op_identifier] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_PLUS_DOT] = ACTIONS(4902), - [anon_sym_DASH_DOT] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_TILDE] = ACTIONS(4902), - [aux_sym_prefix_op_token1] = ACTIONS(4902), - [sym_int] = ACTIONS(4904), - [sym_xint] = ACTIONS(4902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4902), - [anon_sym_POUNDload] = ACTIONS(4902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4902), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_GT] = ACTIONS(3577), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2653] = { [sym_xml_doc] = STATE(2653), @@ -327005,507 +332034,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2653), [sym_fsi_directive_decl] = STATE(2653), [sym_preproc_line] = STATE(2653), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_and] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [aux_sym_access_modifier_token1] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_member] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_val] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3169), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3169), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_GT] = ACTIONS(3697), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2654] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5308), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1585), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2654), [sym_block_comment] = STATE(2654), [sym_line_comment] = STATE(2654), [sym_compiler_directive_decl] = STATE(2654), [sym_fsi_directive_decl] = STATE(2654), [sym_preproc_line] = STATE(2654), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3689), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2655] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(4949), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), [sym_xml_doc] = STATE(2655), [sym_block_comment] = STATE(2655), [sym_line_comment] = STATE(2655), [sym_compiler_directive_decl] = STATE(2655), [sym_fsi_directive_decl] = STATE(2655), [sym_preproc_line] = STATE(2655), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [sym__newline] = ACTIONS(4908), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_GT] = ACTIONS(3770), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2656] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5310), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(926), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2656), [sym_block_comment] = STATE(2656), [sym_line_comment] = STATE(2656), [sym_compiler_directive_decl] = STATE(2656), [sym_fsi_directive_decl] = STATE(2656), [sym_preproc_line] = STATE(2656), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3679), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2657] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5338), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_rule] = STATE(1609), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2657), [sym_block_comment] = STATE(2657), [sym_line_comment] = STATE(2657), [sym_compiler_directive_decl] = STATE(2657), [sym_fsi_directive_decl] = STATE(2657), [sym_preproc_line] = STATE(2657), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_GT] = ACTIONS(3766), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2658] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5420), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2658), [sym_block_comment] = STATE(2658), [sym_line_comment] = STATE(2658), [sym_compiler_directive_decl] = STATE(2658), [sym_fsi_directive_decl] = STATE(2658), [sym_preproc_line] = STATE(2658), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3901), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_do] = ACTIONS(3899), + [anon_sym_let] = ACTIONS(3899), + [anon_sym_let_BANG] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3899), + [anon_sym_COMMA] = ACTIONS(3901), + [anon_sym_null] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(3899), + [anon_sym_COLON_QMARK] = ACTIONS(3899), + [anon_sym_COLON_COLON] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(3899), + [anon_sym_LBRACK_PIPE] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3899), + [anon_sym_LT_AT] = ACTIONS(3899), + [anon_sym_LT_AT_AT] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_LBRACE_PIPE] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3899), + [anon_sym_return_BANG] = ACTIONS(3901), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_yield_BANG] = ACTIONS(3901), + [anon_sym_lazy] = ACTIONS(3899), + [anon_sym_assert] = ACTIONS(3899), + [anon_sym_upcast] = ACTIONS(3899), + [anon_sym_downcast] = ACTIONS(3899), + [anon_sym_COLON_GT] = ACTIONS(3901), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_fun] = ACTIONS(3899), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_match_BANG] = ACTIONS(3901), + [anon_sym_function] = ACTIONS(3899), + [anon_sym_LT_DASH] = ACTIONS(3899), + [anon_sym_DOT_LBRACK] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3901), + [anon_sym_use] = ACTIONS(3899), + [anon_sym_use_BANG] = ACTIONS(3901), + [anon_sym_do_BANG] = ACTIONS(3901), + [anon_sym_begin] = ACTIONS(3899), + [anon_sym_LPAREN2] = ACTIONS(3901), + [anon_sym_or] = ACTIONS(3899), + [aux_sym_char_token1] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3899), + [anon_sym_AT_DQUOTE] = ACTIONS(3901), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3901), + [sym_bool] = ACTIONS(3899), + [sym_unit] = ACTIONS(3899), + [anon_sym_LPAREN_PIPE] = ACTIONS(3899), + [sym_op_identifier] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS_DOT] = ACTIONS(3899), + [anon_sym_DASH_DOT] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_TILDE] = ACTIONS(3901), + [aux_sym_prefix_op_token1] = ACTIONS(3899), + [aux_sym_infix_op_token1] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_COLON_EQ] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3899), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3899), + [sym_int] = ACTIONS(3899), + [sym_xint] = ACTIONS(3901), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3901), + [anon_sym_POUNDendif] = ACTIONS(3901), + [sym__newline] = ACTIONS(3901), }, [2659] = { [sym_xml_doc] = STATE(2659), @@ -327514,1090 +332586,1194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2659), [sym_fsi_directive_decl] = STATE(2659), [sym_preproc_line] = STATE(2659), - [sym_identifier] = ACTIONS(4868), - [anon_sym_module] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_LBRACK_LT] = ACTIONS(4866), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_type] = ACTIONS(4868), - [anon_sym_do] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_let_BANG] = ACTIONS(4866), - [aux_sym_access_modifier_token1] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_LBRACK_PIPE] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(4868), - [anon_sym_LBRACE_PIPE] = ACTIONS(4866), - [anon_sym_new] = ACTIONS(4868), - [anon_sym_return_BANG] = ACTIONS(4866), - [anon_sym_yield] = ACTIONS(4868), - [anon_sym_yield_BANG] = ACTIONS(4866), - [anon_sym_lazy] = ACTIONS(4868), - [anon_sym_assert] = ACTIONS(4868), - [anon_sym_upcast] = ACTIONS(4868), - [anon_sym_downcast] = ACTIONS(4868), - [anon_sym_LT_AT] = ACTIONS(4868), - [anon_sym_LT_AT_AT] = ACTIONS(4866), - [anon_sym_for] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_match] = ACTIONS(4868), - [anon_sym_match_BANG] = ACTIONS(4866), - [anon_sym_function] = ACTIONS(4868), - [anon_sym_use] = ACTIONS(4868), - [anon_sym_use_BANG] = ACTIONS(4866), - [anon_sym_do_BANG] = ACTIONS(4866), - [anon_sym_begin] = ACTIONS(4868), - [anon_sym_default] = ACTIONS(4868), - [anon_sym_static] = ACTIONS(4868), - [anon_sym_member] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_val] = ACTIONS(4868), - [aux_sym_char_token1] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4868), - [anon_sym_DQUOTE] = ACTIONS(4868), - [anon_sym_AT_DQUOTE] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [sym_bool] = ACTIONS(4868), - [sym_unit] = ACTIONS(4866), - [anon_sym_LPAREN_PIPE] = ACTIONS(4868), - [sym_op_identifier] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_PLUS_DOT] = ACTIONS(4866), - [anon_sym_DASH_DOT] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [aux_sym_prefix_op_token1] = ACTIONS(4866), - [sym_int] = ACTIONS(4868), - [sym_xint] = ACTIONS(4866), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4866), - [anon_sym_POUNDload] = ACTIONS(4866), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4866), - [sym__dedent] = ACTIONS(4866), + [sym_identifier] = ACTIONS(3895), + [anon_sym_EQ] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3895), + [anon_sym_let_BANG] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3895), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_null] = ACTIONS(3895), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_COLON_QMARK] = ACTIONS(3895), + [anon_sym_COLON_COLON] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_LBRACK_PIPE] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3895), + [anon_sym_LT_AT] = ACTIONS(3895), + [anon_sym_LT_AT_AT] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3895), + [anon_sym_LBRACE_PIPE] = ACTIONS(3897), + [anon_sym_new] = ACTIONS(3895), + [anon_sym_return_BANG] = ACTIONS(3897), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_yield_BANG] = ACTIONS(3897), + [anon_sym_lazy] = ACTIONS(3895), + [anon_sym_assert] = ACTIONS(3895), + [anon_sym_upcast] = ACTIONS(3895), + [anon_sym_downcast] = ACTIONS(3895), + [anon_sym_COLON_GT] = ACTIONS(3897), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_fun] = ACTIONS(3895), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_match_BANG] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(3895), + [anon_sym_LT_DASH] = ACTIONS(3895), + [anon_sym_DOT_LBRACK] = ACTIONS(3897), + [anon_sym_LT] = ACTIONS(3897), + [anon_sym_use] = ACTIONS(3895), + [anon_sym_use_BANG] = ACTIONS(3897), + [anon_sym_do_BANG] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3895), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3895), + [aux_sym_char_token1] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(3895), + [anon_sym_AT_DQUOTE] = ACTIONS(3897), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3897), + [sym_bool] = ACTIONS(3895), + [sym_unit] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3895), + [sym_op_identifier] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3895), + [anon_sym_PLUS_DOT] = ACTIONS(3895), + [anon_sym_DASH_DOT] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_AMP_AMP] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3897), + [aux_sym_prefix_op_token1] = ACTIONS(3895), + [aux_sym_infix_op_token1] = ACTIONS(3895), + [anon_sym_PIPE_PIPE] = ACTIONS(3895), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_COLON_EQ] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3895), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3895), + [sym_int] = ACTIONS(3895), + [sym_xint] = ACTIONS(3897), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3897), + [anon_sym_POUNDendif] = ACTIONS(3897), + [sym__newline] = ACTIONS(3897), }, [2660] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3425), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2660), [sym_block_comment] = STATE(2660), [sym_line_comment] = STATE(2660), [sym_compiler_directive_decl] = STATE(2660), [sym_fsi_directive_decl] = STATE(2660), [sym_preproc_line] = STATE(2660), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3782), + [anon_sym_COLON_QMARK] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3782), + [anon_sym_AT_AT_GT] = ACTIONS(3782), + [anon_sym_DOT] = ACTIONS(3782), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_COLON_GT] = ACTIONS(3784), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3784), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_DOT_LBRACK] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_or] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3782), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3782), + [anon_sym_DASH_DOT] = ACTIONS(3782), + [anon_sym_PERCENT] = ACTIONS(3782), + [anon_sym_AMP_AMP] = ACTIONS(3782), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3782), + [aux_sym_infix_op_token1] = ACTIONS(3782), + [anon_sym_PIPE_PIPE] = ACTIONS(3782), + [anon_sym_BANG_EQ] = ACTIONS(3782), + [anon_sym_COLON_EQ] = ACTIONS(3784), + [anon_sym_DOLLAR] = ACTIONS(3782), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3782), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + [sym__newline] = ACTIONS(3784), }, [2661] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5314), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2661), [sym_block_comment] = STATE(2661), [sym_line_comment] = STATE(2661), [sym_compiler_directive_decl] = STATE(2661), [sym_fsi_directive_decl] = STATE(2661), [sym_preproc_line] = STATE(2661), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2662] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5453), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2662), [sym_block_comment] = STATE(2662), [sym_line_comment] = STATE(2662), [sym_compiler_directive_decl] = STATE(2662), [sym_fsi_directive_decl] = STATE(2662), [sym_preproc_line] = STATE(2662), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_AT_AT_GT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2663] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5070), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2663), [sym_block_comment] = STATE(2663), [sym_line_comment] = STATE(2663), [sym_compiler_directive_decl] = STATE(2663), [sym_fsi_directive_decl] = STATE(2663), [sym_preproc_line] = STATE(2663), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_AT_AT_GT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2664] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5339), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2664), [sym_block_comment] = STATE(2664), [sym_line_comment] = STATE(2664), [sym_compiler_directive_decl] = STATE(2664), [sym_fsi_directive_decl] = STATE(2664), [sym_preproc_line] = STATE(2664), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_AT_AT_GT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2665] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5403), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2665), [sym_block_comment] = STATE(2665), [sym_line_comment] = STATE(2665), [sym_compiler_directive_decl] = STATE(2665), [sym_fsi_directive_decl] = STATE(2665), [sym_preproc_line] = STATE(2665), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3888), + [anon_sym_return] = ACTIONS(3888), + [anon_sym_do] = ACTIONS(3888), + [anon_sym_let] = ACTIONS(3888), + [anon_sym_let_BANG] = ACTIONS(3890), + [anon_sym_LPAREN] = ACTIONS(3888), + [anon_sym_COMMA] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(3888), + [anon_sym_COLON_QMARK] = ACTIONS(3888), + [anon_sym_COLON_COLON] = ACTIONS(3890), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3888), + [anon_sym_LBRACK_PIPE] = ACTIONS(3890), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_LT_AT] = ACTIONS(3888), + [anon_sym_LT_AT_AT] = ACTIONS(3888), + [anon_sym_DOT] = ACTIONS(3888), + [anon_sym_LBRACE_PIPE] = ACTIONS(3890), + [anon_sym_new] = ACTIONS(3888), + [anon_sym_return_BANG] = ACTIONS(3890), + [anon_sym_yield] = ACTIONS(3888), + [anon_sym_yield_BANG] = ACTIONS(3890), + [anon_sym_lazy] = ACTIONS(3888), + [anon_sym_assert] = ACTIONS(3888), + [anon_sym_upcast] = ACTIONS(3888), + [anon_sym_downcast] = ACTIONS(3888), + [anon_sym_COLON_GT] = ACTIONS(3890), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3890), + [anon_sym_for] = ACTIONS(3888), + [anon_sym_while] = ACTIONS(3888), + [anon_sym_if] = ACTIONS(3888), + [anon_sym_fun] = ACTIONS(3888), + [anon_sym_try] = ACTIONS(3888), + [anon_sym_match] = ACTIONS(3888), + [anon_sym_match_BANG] = ACTIONS(3890), + [anon_sym_function] = ACTIONS(3888), + [anon_sym_LT_DASH] = ACTIONS(3888), + [anon_sym_DOT_LBRACK] = ACTIONS(3890), + [anon_sym_LT] = ACTIONS(3890), + [anon_sym_use] = ACTIONS(3888), + [anon_sym_use_BANG] = ACTIONS(3890), + [anon_sym_do_BANG] = ACTIONS(3890), + [anon_sym_begin] = ACTIONS(3888), + [anon_sym_LPAREN2] = ACTIONS(3890), + [anon_sym_or] = ACTIONS(3888), + [aux_sym_char_token1] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [anon_sym_AT_DQUOTE] = ACTIONS(3890), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3890), + [sym_bool] = ACTIONS(3888), + [sym_unit] = ACTIONS(3888), + [anon_sym_LPAREN_PIPE] = ACTIONS(3888), + [sym_op_identifier] = ACTIONS(3888), + [anon_sym_PLUS] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3888), + [anon_sym_PLUS_DOT] = ACTIONS(3888), + [anon_sym_DASH_DOT] = ACTIONS(3888), + [anon_sym_PERCENT] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3890), + [aux_sym_prefix_op_token1] = ACTIONS(3888), + [aux_sym_infix_op_token1] = ACTIONS(3888), + [anon_sym_PIPE_PIPE] = ACTIONS(3888), + [anon_sym_BANG_EQ] = ACTIONS(3888), + [anon_sym_COLON_EQ] = ACTIONS(3890), + [anon_sym_DOLLAR] = ACTIONS(3888), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3888), + [sym_int] = ACTIONS(3888), + [sym_xint] = ACTIONS(3890), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3890), + [anon_sym_POUNDendif] = ACTIONS(3890), + [sym__newline] = ACTIONS(3890), }, [2666] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5255), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2666), [sym_block_comment] = STATE(2666), [sym_line_comment] = STATE(2666), [sym_compiler_directive_decl] = STATE(2666), [sym_fsi_directive_decl] = STATE(2666), [sym_preproc_line] = STATE(2666), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_COLON] = ACTIONS(3884), + [anon_sym_return] = ACTIONS(3884), + [anon_sym_do] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3884), + [anon_sym_let_BANG] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3884), + [anon_sym_COMMA] = ACTIONS(3886), + [anon_sym_null] = ACTIONS(3884), + [anon_sym_QMARK] = ACTIONS(3884), + [anon_sym_COLON_QMARK] = ACTIONS(3884), + [anon_sym_COLON_COLON] = ACTIONS(3886), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3884), + [anon_sym_LBRACK_PIPE] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3884), + [anon_sym_LT_AT] = ACTIONS(3884), + [anon_sym_LT_AT_AT] = ACTIONS(3884), + [anon_sym_DOT] = ACTIONS(3884), + [anon_sym_LBRACE_PIPE] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3884), + [anon_sym_return_BANG] = ACTIONS(3886), + [anon_sym_yield] = ACTIONS(3884), + [anon_sym_yield_BANG] = ACTIONS(3886), + [anon_sym_lazy] = ACTIONS(3884), + [anon_sym_assert] = ACTIONS(3884), + [anon_sym_upcast] = ACTIONS(3884), + [anon_sym_downcast] = ACTIONS(3884), + [anon_sym_COLON_GT] = ACTIONS(3886), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3884), + [anon_sym_while] = ACTIONS(3884), + [anon_sym_if] = ACTIONS(3884), + [anon_sym_fun] = ACTIONS(3884), + [anon_sym_try] = ACTIONS(3884), + [anon_sym_match] = ACTIONS(3884), + [anon_sym_match_BANG] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(3884), + [anon_sym_LT_DASH] = ACTIONS(3884), + [anon_sym_DOT_LBRACK] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_use] = ACTIONS(3884), + [anon_sym_use_BANG] = ACTIONS(3886), + [anon_sym_do_BANG] = ACTIONS(3886), + [anon_sym_begin] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3886), + [anon_sym_or] = ACTIONS(3884), + [aux_sym_char_token1] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_AT_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3886), + [sym_bool] = ACTIONS(3884), + [sym_unit] = ACTIONS(3884), + [anon_sym_LPAREN_PIPE] = ACTIONS(3884), + [sym_op_identifier] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_PLUS_DOT] = ACTIONS(3884), + [anon_sym_DASH_DOT] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_TILDE] = ACTIONS(3886), + [aux_sym_prefix_op_token1] = ACTIONS(3884), + [aux_sym_infix_op_token1] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), + [anon_sym_COLON_EQ] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3884), + [sym_int] = ACTIONS(3884), + [sym_xint] = ACTIONS(3886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3886), + [anon_sym_POUNDendif] = ACTIONS(3886), + [sym__newline] = ACTIONS(3886), }, [2667] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5424), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2667), [sym_block_comment] = STATE(2667), [sym_line_comment] = STATE(2667), [sym_compiler_directive_decl] = STATE(2667), [sym_fsi_directive_decl] = STATE(2667), [sym_preproc_line] = STATE(2667), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3746), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2668] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5042), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(2872), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2668), [sym_block_comment] = STATE(2668), [sym_line_comment] = STATE(2668), [sym_compiler_directive_decl] = STATE(2668), [sym_fsi_directive_decl] = STATE(2668), [sym_preproc_line] = STATE(2668), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2669] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5449), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2669), [sym_block_comment] = STATE(2669), [sym_line_comment] = STATE(2669), [sym_compiler_directive_decl] = STATE(2669), [sym_fsi_directive_decl] = STATE(2669), [sym_preproc_line] = STATE(2669), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [anon_sym_COLON] = ACTIONS(3878), + [anon_sym_return] = ACTIONS(3878), + [anon_sym_do] = ACTIONS(3878), + [anon_sym_let] = ACTIONS(3878), + [anon_sym_let_BANG] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3878), + [anon_sym_COMMA] = ACTIONS(3880), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_QMARK] = ACTIONS(3878), + [anon_sym_COLON_QMARK] = ACTIONS(3878), + [anon_sym_COLON_COLON] = ACTIONS(3880), + [anon_sym_AMP] = ACTIONS(3878), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_LBRACK_PIPE] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3878), + [anon_sym_LT_AT] = ACTIONS(3878), + [anon_sym_LT_AT_AT] = ACTIONS(3878), + [anon_sym_DOT] = ACTIONS(3878), + [anon_sym_LBRACE_PIPE] = ACTIONS(3880), + [anon_sym_new] = ACTIONS(3878), + [anon_sym_return_BANG] = ACTIONS(3880), + [anon_sym_yield] = ACTIONS(3878), + [anon_sym_yield_BANG] = ACTIONS(3880), + [anon_sym_lazy] = ACTIONS(3878), + [anon_sym_assert] = ACTIONS(3878), + [anon_sym_upcast] = ACTIONS(3878), + [anon_sym_downcast] = ACTIONS(3878), + [anon_sym_COLON_GT] = ACTIONS(3880), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3880), + [anon_sym_for] = ACTIONS(3878), + [anon_sym_while] = ACTIONS(3878), + [anon_sym_if] = ACTIONS(3878), + [anon_sym_fun] = ACTIONS(3878), + [anon_sym_try] = ACTIONS(3878), + [anon_sym_match] = ACTIONS(3878), + [anon_sym_match_BANG] = ACTIONS(3880), + [anon_sym_function] = ACTIONS(3878), + [anon_sym_LT_DASH] = ACTIONS(3878), + [anon_sym_DOT_LBRACK] = ACTIONS(3880), + [anon_sym_LT] = ACTIONS(3880), + [anon_sym_use] = ACTIONS(3878), + [anon_sym_use_BANG] = ACTIONS(3880), + [anon_sym_do_BANG] = ACTIONS(3880), + [anon_sym_begin] = ACTIONS(3878), + [anon_sym_LPAREN2] = ACTIONS(3880), + [anon_sym_or] = ACTIONS(3878), + [aux_sym_char_token1] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(3878), + [anon_sym_AT_DQUOTE] = ACTIONS(3880), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3880), + [sym_bool] = ACTIONS(3878), + [sym_unit] = ACTIONS(3878), + [anon_sym_LPAREN_PIPE] = ACTIONS(3878), + [sym_op_identifier] = ACTIONS(3878), + [anon_sym_PLUS] = ACTIONS(3878), + [anon_sym_DASH] = ACTIONS(3878), + [anon_sym_PLUS_DOT] = ACTIONS(3878), + [anon_sym_DASH_DOT] = ACTIONS(3878), + [anon_sym_PERCENT] = ACTIONS(3878), + [anon_sym_AMP_AMP] = ACTIONS(3878), + [anon_sym_TILDE] = ACTIONS(3880), + [aux_sym_prefix_op_token1] = ACTIONS(3878), + [aux_sym_infix_op_token1] = ACTIONS(3878), + [anon_sym_PIPE_PIPE] = ACTIONS(3878), + [anon_sym_BANG_EQ] = ACTIONS(3878), + [anon_sym_COLON_EQ] = ACTIONS(3880), + [anon_sym_DOLLAR] = ACTIONS(3878), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3878), + [sym_int] = ACTIONS(3878), + [sym_xint] = ACTIONS(3880), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3880), + [anon_sym_POUNDendif] = ACTIONS(3880), + [sym__newline] = ACTIONS(3880), }, [2670] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5326), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2670), [sym_block_comment] = STATE(2670), [sym_line_comment] = STATE(2670), [sym_compiler_directive_decl] = STATE(2670), [sym_fsi_directive_decl] = STATE(2670), [sym_preproc_line] = STATE(2670), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3778), + [anon_sym_EQ] = ACTIONS(3780), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3778), + [anon_sym_AT_AT_GT] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3778), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_COLON_GT] = ACTIONS(3780), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3780), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_LT_DASH] = ACTIONS(3778), + [anon_sym_DOT_LBRACK] = ACTIONS(3780), + [anon_sym_LT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_or] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3778), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3778), + [anon_sym_DASH_DOT] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3778), + [aux_sym_infix_op_token1] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_COLON_EQ] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3778), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3778), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + [sym__newline] = ACTIONS(3780), }, [2671] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5081), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2671), [sym_block_comment] = STATE(2671), [sym_line_comment] = STATE(2671), [sym_compiler_directive_decl] = STATE(2671), [sym_fsi_directive_decl] = STATE(2671), [sym_preproc_line] = STATE(2671), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3863), + [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COLON] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_do] = ACTIONS(3863), + [anon_sym_let] = ACTIONS(3863), + [anon_sym_let_BANG] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_COMMA] = ACTIONS(3865), + [anon_sym_null] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3863), + [anon_sym_COLON_QMARK] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3863), + [anon_sym_LBRACK] = ACTIONS(3863), + [anon_sym_LBRACK_PIPE] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3863), + [anon_sym_LT_AT] = ACTIONS(3863), + [anon_sym_LT_AT_AT] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_LBRACE_PIPE] = ACTIONS(3865), + [anon_sym_new] = ACTIONS(3863), + [anon_sym_return_BANG] = ACTIONS(3865), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_yield_BANG] = ACTIONS(3865), + [anon_sym_lazy] = ACTIONS(3863), + [anon_sym_assert] = ACTIONS(3863), + [anon_sym_upcast] = ACTIONS(3863), + [anon_sym_downcast] = ACTIONS(3863), + [anon_sym_COLON_GT] = ACTIONS(3865), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_fun] = ACTIONS(3863), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_match_BANG] = ACTIONS(3865), + [anon_sym_function] = ACTIONS(3863), + [anon_sym_LT_DASH] = ACTIONS(3863), + [anon_sym_DOT_LBRACK] = ACTIONS(3865), + [anon_sym_LT] = ACTIONS(3865), + [anon_sym_use] = ACTIONS(3863), + [anon_sym_use_BANG] = ACTIONS(3865), + [anon_sym_do_BANG] = ACTIONS(3865), + [anon_sym_begin] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(3865), + [anon_sym_or] = ACTIONS(3863), + [aux_sym_char_token1] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3863), + [anon_sym_DQUOTE] = ACTIONS(3863), + [anon_sym_AT_DQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3865), + [sym_bool] = ACTIONS(3863), + [sym_unit] = ACTIONS(3863), + [anon_sym_LPAREN_PIPE] = ACTIONS(3863), + [sym_op_identifier] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(3863), + [anon_sym_DASH] = ACTIONS(3863), + [anon_sym_PLUS_DOT] = ACTIONS(3863), + [anon_sym_DASH_DOT] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_AMP_AMP] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(3865), + [aux_sym_prefix_op_token1] = ACTIONS(3863), + [aux_sym_infix_op_token1] = ACTIONS(3863), + [anon_sym_PIPE_PIPE] = ACTIONS(3863), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_COLON_EQ] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3863), + [sym_int] = ACTIONS(3863), + [sym_xint] = ACTIONS(3865), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3865), + [anon_sym_POUNDendif] = ACTIONS(3865), + [sym__newline] = ACTIONS(3865), }, [2672] = { [sym_xml_doc] = STATE(2672), @@ -328606,166 +333782,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2672), [sym_fsi_directive_decl] = STATE(2672), [sym_preproc_line] = STATE(2672), - [ts_builtin_sym_end] = ACTIONS(4659), - [sym_identifier] = ACTIONS(4661), - [anon_sym_namespace] = ACTIONS(4661), - [anon_sym_module] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_LBRACK_LT] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_type] = ACTIONS(4661), - [anon_sym_do] = ACTIONS(4661), - [anon_sym_and] = ACTIONS(4661), - [anon_sym_let] = ACTIONS(4661), - [anon_sym_let_BANG] = ACTIONS(4659), - [aux_sym_access_modifier_token1] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_PIPE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_LBRACE_PIPE] = ACTIONS(4659), - [anon_sym_new] = ACTIONS(4661), - [anon_sym_return_BANG] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4661), - [anon_sym_yield_BANG] = ACTIONS(4659), - [anon_sym_lazy] = ACTIONS(4661), - [anon_sym_assert] = ACTIONS(4661), - [anon_sym_upcast] = ACTIONS(4661), - [anon_sym_downcast] = ACTIONS(4661), - [anon_sym_LT_AT] = ACTIONS(4661), - [anon_sym_LT_AT_AT] = ACTIONS(4659), - [anon_sym_for] = ACTIONS(4661), - [anon_sym_while] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_match] = ACTIONS(4661), - [anon_sym_match_BANG] = ACTIONS(4659), - [anon_sym_function] = ACTIONS(4661), - [anon_sym_use] = ACTIONS(4661), - [anon_sym_use_BANG] = ACTIONS(4659), - [anon_sym_do_BANG] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4661), - [anon_sym_default] = ACTIONS(4661), - [anon_sym_static] = ACTIONS(4661), - [anon_sym_member] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_val] = ACTIONS(4661), - [aux_sym_char_token1] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_AT_DQUOTE] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [sym_bool] = ACTIONS(4661), - [sym_unit] = ACTIONS(4659), - [anon_sym_LPAREN_PIPE] = ACTIONS(4661), - [sym_op_identifier] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_PLUS_DOT] = ACTIONS(4659), - [anon_sym_DASH_DOT] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [aux_sym_prefix_op_token1] = ACTIONS(4659), - [sym_int] = ACTIONS(4661), - [sym_xint] = ACTIONS(4659), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4659), - [anon_sym_POUNDload] = ACTIONS(4659), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4659), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2673] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3689), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2673), [sym_block_comment] = STATE(2673), [sym_line_comment] = STATE(2673), [sym_compiler_directive_decl] = STATE(2673), [sym_fsi_directive_decl] = STATE(2673), [sym_preproc_line] = STATE(2673), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_open] = ACTIONS(3092), + [anon_sym_LBRACK_LT] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_and] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [aux_sym_access_modifier_token1] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_member] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_override] = ACTIONS(3092), + [anon_sym_val] = ACTIONS(3092), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3090), + [anon_sym_POUNDload] = ACTIONS(3090), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), }, [2674] = { [sym_xml_doc] = STATE(2674), @@ -328774,166 +333966,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2674), [sym_fsi_directive_decl] = STATE(2674), [sym_preproc_line] = STATE(2674), - [ts_builtin_sym_end] = ACTIONS(4950), - [sym_identifier] = ACTIONS(4952), - [anon_sym_namespace] = ACTIONS(4952), - [anon_sym_module] = ACTIONS(4952), - [anon_sym_open] = ACTIONS(4952), - [anon_sym_LBRACK_LT] = ACTIONS(4950), - [anon_sym_return] = ACTIONS(4952), - [anon_sym_type] = ACTIONS(4952), - [anon_sym_do] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4952), - [anon_sym_let] = ACTIONS(4952), - [anon_sym_let_BANG] = ACTIONS(4950), - [aux_sym_access_modifier_token1] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4952), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4952), - [anon_sym_LBRACK_PIPE] = ACTIONS(4950), - [anon_sym_LBRACE] = ACTIONS(4952), - [anon_sym_LBRACE_PIPE] = ACTIONS(4950), - [anon_sym_new] = ACTIONS(4952), - [anon_sym_return_BANG] = ACTIONS(4950), - [anon_sym_yield] = ACTIONS(4952), - [anon_sym_yield_BANG] = ACTIONS(4950), - [anon_sym_lazy] = ACTIONS(4952), - [anon_sym_assert] = ACTIONS(4952), - [anon_sym_upcast] = ACTIONS(4952), - [anon_sym_downcast] = ACTIONS(4952), - [anon_sym_LT_AT] = ACTIONS(4952), - [anon_sym_LT_AT_AT] = ACTIONS(4950), - [anon_sym_for] = ACTIONS(4952), - [anon_sym_while] = ACTIONS(4952), - [anon_sym_if] = ACTIONS(4952), - [anon_sym_fun] = ACTIONS(4952), - [anon_sym_try] = ACTIONS(4952), - [anon_sym_match] = ACTIONS(4952), - [anon_sym_match_BANG] = ACTIONS(4950), - [anon_sym_function] = ACTIONS(4952), - [anon_sym_use] = ACTIONS(4952), - [anon_sym_use_BANG] = ACTIONS(4950), - [anon_sym_do_BANG] = ACTIONS(4950), - [anon_sym_begin] = ACTIONS(4952), - [anon_sym_default] = ACTIONS(4952), - [anon_sym_static] = ACTIONS(4952), - [anon_sym_member] = ACTIONS(4952), - [anon_sym_abstract] = ACTIONS(4952), - [anon_sym_override] = ACTIONS(4952), - [anon_sym_val] = ACTIONS(4952), - [aux_sym_char_token1] = ACTIONS(4950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4952), - [anon_sym_AT_DQUOTE] = ACTIONS(4950), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4950), - [sym_bool] = ACTIONS(4952), - [sym_unit] = ACTIONS(4950), - [anon_sym_LPAREN_PIPE] = ACTIONS(4952), - [sym_op_identifier] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_PLUS_DOT] = ACTIONS(4950), - [anon_sym_DASH_DOT] = ACTIONS(4950), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_TILDE] = ACTIONS(4950), - [aux_sym_prefix_op_token1] = ACTIONS(4950), - [sym_int] = ACTIONS(4952), - [sym_xint] = ACTIONS(4950), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4950), - [anon_sym_POUNDload] = ACTIONS(4950), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4950), + [sym_identifier] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_do] = ACTIONS(3847), + [anon_sym_let] = ACTIONS(3847), + [anon_sym_let_BANG] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3849), + [anon_sym_null] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_COLON_QMARK] = ACTIONS(3847), + [anon_sym_COLON_COLON] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_LBRACK_PIPE] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_LT_AT] = ACTIONS(3847), + [anon_sym_LT_AT_AT] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3847), + [anon_sym_LBRACE_PIPE] = ACTIONS(3849), + [anon_sym_new] = ACTIONS(3847), + [anon_sym_return_BANG] = ACTIONS(3849), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_yield_BANG] = ACTIONS(3849), + [anon_sym_lazy] = ACTIONS(3847), + [anon_sym_assert] = ACTIONS(3847), + [anon_sym_upcast] = ACTIONS(3847), + [anon_sym_downcast] = ACTIONS(3847), + [anon_sym_COLON_GT] = ACTIONS(3849), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_fun] = ACTIONS(3847), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_match_BANG] = ACTIONS(3849), + [anon_sym_function] = ACTIONS(3847), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_DOT_LBRACK] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_use] = ACTIONS(3847), + [anon_sym_use_BANG] = ACTIONS(3849), + [anon_sym_do_BANG] = ACTIONS(3849), + [anon_sym_begin] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3849), + [anon_sym_or] = ACTIONS(3847), + [aux_sym_char_token1] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_AT_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3849), + [sym_bool] = ACTIONS(3847), + [sym_unit] = ACTIONS(3847), + [anon_sym_LPAREN_PIPE] = ACTIONS(3847), + [sym_op_identifier] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3847), + [anon_sym_PLUS_DOT] = ACTIONS(3847), + [anon_sym_DASH_DOT] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_TILDE] = ACTIONS(3849), + [aux_sym_prefix_op_token1] = ACTIONS(3847), + [aux_sym_infix_op_token1] = ACTIONS(3847), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_COLON_EQ] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3847), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3847), + [sym_int] = ACTIONS(3847), + [sym_xint] = ACTIONS(3849), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3849), + [anon_sym_POUNDendif] = ACTIONS(3849), + [sym__newline] = ACTIONS(3849), }, [2675] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3758), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2675), [sym_block_comment] = STATE(2675), [sym_line_comment] = STATE(2675), [sym_compiler_directive_decl] = STATE(2675), [sym_fsi_directive_decl] = STATE(2675), [sym_preproc_line] = STATE(2675), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_DOT_DOT] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2676] = { [sym_xml_doc] = STATE(2676), @@ -328942,922 +334150,1010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2676), [sym_fsi_directive_decl] = STATE(2676), [sym_preproc_line] = STATE(2676), - [ts_builtin_sym_end] = ACTIONS(4956), - [sym_identifier] = ACTIONS(4958), - [anon_sym_namespace] = ACTIONS(4958), - [anon_sym_module] = ACTIONS(4958), - [anon_sym_open] = ACTIONS(4958), - [anon_sym_LBRACK_LT] = ACTIONS(4956), - [anon_sym_return] = ACTIONS(4958), - [anon_sym_type] = ACTIONS(4958), - [anon_sym_do] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_let] = ACTIONS(4958), - [anon_sym_let_BANG] = ACTIONS(4956), - [aux_sym_access_modifier_token1] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4958), - [anon_sym_AMP] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_LBRACK_PIPE] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_LBRACE_PIPE] = ACTIONS(4956), - [anon_sym_new] = ACTIONS(4958), - [anon_sym_return_BANG] = ACTIONS(4956), - [anon_sym_yield] = ACTIONS(4958), - [anon_sym_yield_BANG] = ACTIONS(4956), - [anon_sym_lazy] = ACTIONS(4958), - [anon_sym_assert] = ACTIONS(4958), - [anon_sym_upcast] = ACTIONS(4958), - [anon_sym_downcast] = ACTIONS(4958), - [anon_sym_LT_AT] = ACTIONS(4958), - [anon_sym_LT_AT_AT] = ACTIONS(4956), - [anon_sym_for] = ACTIONS(4958), - [anon_sym_while] = ACTIONS(4958), - [anon_sym_if] = ACTIONS(4958), - [anon_sym_fun] = ACTIONS(4958), - [anon_sym_try] = ACTIONS(4958), - [anon_sym_match] = ACTIONS(4958), - [anon_sym_match_BANG] = ACTIONS(4956), - [anon_sym_function] = ACTIONS(4958), - [anon_sym_use] = ACTIONS(4958), - [anon_sym_use_BANG] = ACTIONS(4956), - [anon_sym_do_BANG] = ACTIONS(4956), - [anon_sym_begin] = ACTIONS(4958), - [anon_sym_default] = ACTIONS(4958), - [anon_sym_static] = ACTIONS(4958), - [anon_sym_member] = ACTIONS(4958), - [anon_sym_abstract] = ACTIONS(4958), - [anon_sym_override] = ACTIONS(4958), - [anon_sym_val] = ACTIONS(4958), - [aux_sym_char_token1] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4958), - [anon_sym_DQUOTE] = ACTIONS(4958), - [anon_sym_AT_DQUOTE] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4956), - [sym_bool] = ACTIONS(4958), - [sym_unit] = ACTIONS(4956), - [anon_sym_LPAREN_PIPE] = ACTIONS(4958), - [sym_op_identifier] = ACTIONS(4956), - [anon_sym_PLUS] = ACTIONS(4958), - [anon_sym_DASH] = ACTIONS(4958), - [anon_sym_PLUS_DOT] = ACTIONS(4956), - [anon_sym_DASH_DOT] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_AMP_AMP] = ACTIONS(4956), - [anon_sym_TILDE] = ACTIONS(4956), - [aux_sym_prefix_op_token1] = ACTIONS(4956), - [sym_int] = ACTIONS(4958), - [sym_xint] = ACTIONS(4956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4956), - [anon_sym_POUNDload] = ACTIONS(4956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4956), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_DOT_DOT] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2677] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5429), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2677), [sym_block_comment] = STATE(2677), [sym_line_comment] = STATE(2677), [sym_compiler_directive_decl] = STATE(2677), [sym_fsi_directive_decl] = STATE(2677), [sym_preproc_line] = STATE(2677), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3577), + [anon_sym_EQ] = ACTIONS(3579), + [anon_sym_COLON] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_QMARK] = ACTIONS(3577), + [anon_sym_COLON_QMARK] = ACTIONS(3577), + [anon_sym_COLON_COLON] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3577), + [anon_sym_AT_AT_GT] = ACTIONS(3577), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_COLON_GT] = ACTIONS(3579), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_LT_DASH] = ACTIONS(3577), + [anon_sym_DOT_LBRACK] = ACTIONS(3579), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_or] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3577), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3577), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3577), + [anon_sym_DASH_DOT] = ACTIONS(3577), + [anon_sym_PERCENT] = ACTIONS(3577), + [anon_sym_AMP_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3577), + [aux_sym_infix_op_token1] = ACTIONS(3577), + [anon_sym_PIPE_PIPE] = ACTIONS(3577), + [anon_sym_BANG_EQ] = ACTIONS(3577), + [anon_sym_COLON_EQ] = ACTIONS(3579), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3577), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + [sym__newline] = ACTIONS(3579), }, [2678] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5263), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2678), [sym_block_comment] = STATE(2678), [sym_line_comment] = STATE(2678), [sym_compiler_directive_decl] = STATE(2678), [sym_fsi_directive_decl] = STATE(2678), [sym_preproc_line] = STATE(2678), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(3906), + [anon_sym_return] = ACTIONS(3906), + [anon_sym_do] = ACTIONS(3906), + [anon_sym_let] = ACTIONS(3906), + [anon_sym_let_BANG] = ACTIONS(3908), + [anon_sym_LPAREN] = ACTIONS(3906), + [anon_sym_COMMA] = ACTIONS(3908), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_QMARK] = ACTIONS(3906), + [anon_sym_COLON_QMARK] = ACTIONS(3906), + [anon_sym_COLON_COLON] = ACTIONS(3908), + [anon_sym_AMP] = ACTIONS(3906), + [anon_sym_LBRACK] = ACTIONS(3906), + [anon_sym_LBRACK_PIPE] = ACTIONS(3908), + [anon_sym_LBRACE] = ACTIONS(3906), + [anon_sym_LT_AT] = ACTIONS(3906), + [anon_sym_LT_AT_AT] = ACTIONS(3906), + [anon_sym_DOT] = ACTIONS(3906), + [anon_sym_LBRACE_PIPE] = ACTIONS(3908), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_return_BANG] = ACTIONS(3908), + [anon_sym_yield] = ACTIONS(3906), + [anon_sym_yield_BANG] = ACTIONS(3908), + [anon_sym_lazy] = ACTIONS(3906), + [anon_sym_assert] = ACTIONS(3906), + [anon_sym_upcast] = ACTIONS(3906), + [anon_sym_downcast] = ACTIONS(3906), + [anon_sym_COLON_GT] = ACTIONS(3908), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3908), + [anon_sym_for] = ACTIONS(3906), + [anon_sym_while] = ACTIONS(3906), + [anon_sym_if] = ACTIONS(3906), + [anon_sym_fun] = ACTIONS(3906), + [anon_sym_try] = ACTIONS(3906), + [anon_sym_match] = ACTIONS(3906), + [anon_sym_match_BANG] = ACTIONS(3908), + [anon_sym_function] = ACTIONS(3906), + [anon_sym_LT_DASH] = ACTIONS(3906), + [anon_sym_DOT_LBRACK] = ACTIONS(3908), + [anon_sym_LT] = ACTIONS(3908), + [anon_sym_GT] = ACTIONS(3906), + [anon_sym_use] = ACTIONS(3906), + [anon_sym_use_BANG] = ACTIONS(3908), + [anon_sym_do_BANG] = ACTIONS(3908), + [anon_sym_begin] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(3908), + [anon_sym_or] = ACTIONS(3906), + [aux_sym_char_token1] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(3906), + [anon_sym_AT_DQUOTE] = ACTIONS(3908), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3908), + [sym_bool] = ACTIONS(3906), + [sym_unit] = ACTIONS(3906), + [anon_sym_LPAREN_PIPE] = ACTIONS(3906), + [sym_op_identifier] = ACTIONS(3906), + [anon_sym_PLUS] = ACTIONS(3906), + [anon_sym_DASH] = ACTIONS(3906), + [anon_sym_PLUS_DOT] = ACTIONS(3906), + [anon_sym_DASH_DOT] = ACTIONS(3906), + [anon_sym_PERCENT] = ACTIONS(3906), + [anon_sym_AMP_AMP] = ACTIONS(3906), + [anon_sym_TILDE] = ACTIONS(3908), + [aux_sym_prefix_op_token1] = ACTIONS(3906), + [aux_sym_infix_op_token1] = ACTIONS(3906), + [anon_sym_PIPE_PIPE] = ACTIONS(3906), + [anon_sym_BANG_EQ] = ACTIONS(3906), + [anon_sym_COLON_EQ] = ACTIONS(3908), + [anon_sym_DOLLAR] = ACTIONS(3906), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3906), + [sym_int] = ACTIONS(3906), + [sym_xint] = ACTIONS(3908), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3908), + [sym__newline] = ACTIONS(3908), }, [2679] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5803), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2679), [sym_block_comment] = STATE(2679), [sym_line_comment] = STATE(2679), [sym_compiler_directive_decl] = STATE(2679), [sym_fsi_directive_decl] = STATE(2679), [sym_preproc_line] = STATE(2679), - [ts_builtin_sym_end] = ACTIONS(4960), - [sym_identifier] = ACTIONS(4962), - [anon_sym_namespace] = ACTIONS(4962), - [anon_sym_module] = ACTIONS(4962), - [anon_sym_open] = ACTIONS(4962), - [anon_sym_LBRACK_LT] = ACTIONS(4960), - [anon_sym_return] = ACTIONS(4962), - [anon_sym_type] = ACTIONS(4962), - [anon_sym_do] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_let_BANG] = ACTIONS(4960), - [aux_sym_access_modifier_token1] = ACTIONS(4960), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4962), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_LBRACK_PIPE] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_LBRACE_PIPE] = ACTIONS(4960), - [anon_sym_new] = ACTIONS(4962), - [anon_sym_return_BANG] = ACTIONS(4960), - [anon_sym_yield] = ACTIONS(4962), - [anon_sym_yield_BANG] = ACTIONS(4960), - [anon_sym_lazy] = ACTIONS(4962), - [anon_sym_assert] = ACTIONS(4962), - [anon_sym_upcast] = ACTIONS(4962), - [anon_sym_downcast] = ACTIONS(4962), - [anon_sym_LT_AT] = ACTIONS(4962), - [anon_sym_LT_AT_AT] = ACTIONS(4960), - [anon_sym_for] = ACTIONS(4962), - [anon_sym_while] = ACTIONS(4962), - [anon_sym_if] = ACTIONS(4962), - [anon_sym_fun] = ACTIONS(4962), - [anon_sym_try] = ACTIONS(4962), - [anon_sym_match] = ACTIONS(4962), - [anon_sym_match_BANG] = ACTIONS(4960), - [anon_sym_function] = ACTIONS(4962), - [anon_sym_use] = ACTIONS(4962), - [anon_sym_use_BANG] = ACTIONS(4960), - [anon_sym_do_BANG] = ACTIONS(4960), - [anon_sym_begin] = ACTIONS(4962), - [anon_sym_default] = ACTIONS(4962), - [anon_sym_static] = ACTIONS(4962), - [anon_sym_member] = ACTIONS(4962), - [anon_sym_abstract] = ACTIONS(4962), - [anon_sym_override] = ACTIONS(4962), - [anon_sym_val] = ACTIONS(4962), - [aux_sym_char_token1] = ACTIONS(4960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [anon_sym_AT_DQUOTE] = ACTIONS(4960), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4960), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4960), - [sym_bool] = ACTIONS(4962), - [sym_unit] = ACTIONS(4960), - [anon_sym_LPAREN_PIPE] = ACTIONS(4962), - [sym_op_identifier] = ACTIONS(4960), - [anon_sym_PLUS] = ACTIONS(4962), - [anon_sym_DASH] = ACTIONS(4962), - [anon_sym_PLUS_DOT] = ACTIONS(4960), - [anon_sym_DASH_DOT] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_TILDE] = ACTIONS(4960), - [aux_sym_prefix_op_token1] = ACTIONS(4960), - [sym_int] = ACTIONS(4962), - [sym_xint] = ACTIONS(4960), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4960), - [anon_sym_POUNDload] = ACTIONS(4960), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4960), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2680] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5460), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2680), [sym_block_comment] = STATE(2680), [sym_line_comment] = STATE(2680), [sym_compiler_directive_decl] = STATE(2680), [sym_fsi_directive_decl] = STATE(2680), [sym_preproc_line] = STATE(2680), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [anon_sym_POUNDendif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2681] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5772), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2681), [sym_block_comment] = STATE(2681), [sym_line_comment] = STATE(2681), [sym_compiler_directive_decl] = STATE(2681), [sym_fsi_directive_decl] = STATE(2681), [sym_preproc_line] = STATE(2681), - [ts_builtin_sym_end] = ACTIONS(4964), - [sym_identifier] = ACTIONS(4966), - [anon_sym_namespace] = ACTIONS(4966), - [anon_sym_module] = ACTIONS(4966), - [anon_sym_open] = ACTIONS(4966), - [anon_sym_LBRACK_LT] = ACTIONS(4964), - [anon_sym_return] = ACTIONS(4966), - [anon_sym_type] = ACTIONS(4966), - [anon_sym_do] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_let] = ACTIONS(4966), - [anon_sym_let_BANG] = ACTIONS(4964), - [aux_sym_access_modifier_token1] = ACTIONS(4964), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4966), - [anon_sym_AMP] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_LBRACK_PIPE] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACE_PIPE] = ACTIONS(4964), - [anon_sym_new] = ACTIONS(4966), - [anon_sym_return_BANG] = ACTIONS(4964), - [anon_sym_yield] = ACTIONS(4966), - [anon_sym_yield_BANG] = ACTIONS(4964), - [anon_sym_lazy] = ACTIONS(4966), - [anon_sym_assert] = ACTIONS(4966), - [anon_sym_upcast] = ACTIONS(4966), - [anon_sym_downcast] = ACTIONS(4966), - [anon_sym_LT_AT] = ACTIONS(4966), - [anon_sym_LT_AT_AT] = ACTIONS(4964), - [anon_sym_for] = ACTIONS(4966), - [anon_sym_while] = ACTIONS(4966), - [anon_sym_if] = ACTIONS(4966), - [anon_sym_fun] = ACTIONS(4966), - [anon_sym_try] = ACTIONS(4966), - [anon_sym_match] = ACTIONS(4966), - [anon_sym_match_BANG] = ACTIONS(4964), - [anon_sym_function] = ACTIONS(4966), - [anon_sym_use] = ACTIONS(4966), - [anon_sym_use_BANG] = ACTIONS(4964), - [anon_sym_do_BANG] = ACTIONS(4964), - [anon_sym_begin] = ACTIONS(4966), - [anon_sym_default] = ACTIONS(4966), - [anon_sym_static] = ACTIONS(4966), - [anon_sym_member] = ACTIONS(4966), - [anon_sym_abstract] = ACTIONS(4966), - [anon_sym_override] = ACTIONS(4966), - [anon_sym_val] = ACTIONS(4966), - [aux_sym_char_token1] = ACTIONS(4964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4966), - [anon_sym_DQUOTE] = ACTIONS(4966), - [anon_sym_AT_DQUOTE] = ACTIONS(4964), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4964), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4964), - [sym_bool] = ACTIONS(4966), - [sym_unit] = ACTIONS(4964), - [anon_sym_LPAREN_PIPE] = ACTIONS(4966), - [sym_op_identifier] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4966), - [anon_sym_PLUS_DOT] = ACTIONS(4964), - [anon_sym_DASH_DOT] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_AMP_AMP] = ACTIONS(4964), - [anon_sym_TILDE] = ACTIONS(4964), - [aux_sym_prefix_op_token1] = ACTIONS(4964), - [sym_int] = ACTIONS(4966), - [sym_xint] = ACTIONS(4964), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4964), - [anon_sym_POUNDload] = ACTIONS(4964), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4964), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_DASH_GT] = ACTIONS(4762), + [anon_sym_when] = ACTIONS(4764), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2682] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5329), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2682), [sym_block_comment] = STATE(2682), [sym_line_comment] = STATE(2682), [sym_compiler_directive_decl] = STATE(2682), [sym_fsi_directive_decl] = STATE(2682), [sym_preproc_line] = STATE(2682), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_type_argument_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_and] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [aux_sym_access_modifier_token1] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(4992), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_member] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_val] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [2683] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5305), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2683), [sym_block_comment] = STATE(2683), [sym_line_comment] = STATE(2683), [sym_compiler_directive_decl] = STATE(2683), [sym_fsi_directive_decl] = STATE(2683), [sym_preproc_line] = STATE(2683), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_GT] = ACTIONS(3738), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2684] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5069), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2684), [sym_block_comment] = STATE(2684), [sym_line_comment] = STATE(2684), [sym_compiler_directive_decl] = STATE(2684), [sym_fsi_directive_decl] = STATE(2684), [sym_preproc_line] = STATE(2684), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_DOT_DOT] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2685] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5436), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2685), [sym_block_comment] = STATE(2685), [sym_line_comment] = STATE(2685), [sym_compiler_directive_decl] = STATE(2685), [sym_fsi_directive_decl] = STATE(2685), [sym_preproc_line] = STATE(2685), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3734), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_QMARK] = ACTIONS(3734), + [anon_sym_COLON_QMARK] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3734), + [anon_sym_DOT] = ACTIONS(3734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_COLON_GT] = ACTIONS(3736), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3736), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_LT_DASH] = ACTIONS(3734), + [anon_sym_DOT_LBRACK] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_GT] = ACTIONS(3734), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_or] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3734), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3734), + [anon_sym_DASH_DOT] = ACTIONS(3734), + [anon_sym_PERCENT] = ACTIONS(3734), + [anon_sym_AMP_AMP] = ACTIONS(3734), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3734), + [aux_sym_infix_op_token1] = ACTIONS(3734), + [anon_sym_PIPE_PIPE] = ACTIONS(3734), + [anon_sym_BANG_EQ] = ACTIONS(3734), + [anon_sym_COLON_EQ] = ACTIONS(3736), + [anon_sym_DOLLAR] = ACTIONS(3734), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3734), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + [sym__newline] = ACTIONS(3736), }, [2686] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5105), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2686), [sym_block_comment] = STATE(2686), [sym_line_comment] = STATE(2686), [sym_compiler_directive_decl] = STATE(2686), [sym_fsi_directive_decl] = STATE(2686), [sym_preproc_line] = STATE(2686), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_GT] = ACTIONS(3726), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2687] = { [sym_xml_doc] = STATE(2687), @@ -329866,754 +335162,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2687), [sym_fsi_directive_decl] = STATE(2687), [sym_preproc_line] = STATE(2687), - [ts_builtin_sym_end] = ACTIONS(4968), - [sym_identifier] = ACTIONS(4970), - [anon_sym_namespace] = ACTIONS(4970), - [anon_sym_module] = ACTIONS(4970), - [anon_sym_open] = ACTIONS(4970), - [anon_sym_LBRACK_LT] = ACTIONS(4968), - [anon_sym_return] = ACTIONS(4970), - [anon_sym_type] = ACTIONS(4970), - [anon_sym_do] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_let] = ACTIONS(4970), - [anon_sym_let_BANG] = ACTIONS(4968), - [aux_sym_access_modifier_token1] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_AMP] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_LBRACK_PIPE] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACE_PIPE] = ACTIONS(4968), - [anon_sym_new] = ACTIONS(4970), - [anon_sym_return_BANG] = ACTIONS(4968), - [anon_sym_yield] = ACTIONS(4970), - [anon_sym_yield_BANG] = ACTIONS(4968), - [anon_sym_lazy] = ACTIONS(4970), - [anon_sym_assert] = ACTIONS(4970), - [anon_sym_upcast] = ACTIONS(4970), - [anon_sym_downcast] = ACTIONS(4970), - [anon_sym_LT_AT] = ACTIONS(4970), - [anon_sym_LT_AT_AT] = ACTIONS(4968), - [anon_sym_for] = ACTIONS(4970), - [anon_sym_while] = ACTIONS(4970), - [anon_sym_if] = ACTIONS(4970), - [anon_sym_fun] = ACTIONS(4970), - [anon_sym_try] = ACTIONS(4970), - [anon_sym_match] = ACTIONS(4970), - [anon_sym_match_BANG] = ACTIONS(4968), - [anon_sym_function] = ACTIONS(4970), - [anon_sym_use] = ACTIONS(4970), - [anon_sym_use_BANG] = ACTIONS(4968), - [anon_sym_do_BANG] = ACTIONS(4968), - [anon_sym_begin] = ACTIONS(4970), - [anon_sym_default] = ACTIONS(4970), - [anon_sym_static] = ACTIONS(4970), - [anon_sym_member] = ACTIONS(4970), - [anon_sym_abstract] = ACTIONS(4970), - [anon_sym_override] = ACTIONS(4970), - [anon_sym_val] = ACTIONS(4970), - [aux_sym_char_token1] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4970), - [anon_sym_AT_DQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4968), - [sym_bool] = ACTIONS(4970), - [sym_unit] = ACTIONS(4968), - [anon_sym_LPAREN_PIPE] = ACTIONS(4970), - [sym_op_identifier] = ACTIONS(4968), - [anon_sym_PLUS] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4970), - [anon_sym_PLUS_DOT] = ACTIONS(4968), - [anon_sym_DASH_DOT] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4968), - [anon_sym_TILDE] = ACTIONS(4968), - [aux_sym_prefix_op_token1] = ACTIONS(4968), - [sym_int] = ACTIONS(4970), - [sym_xint] = ACTIONS(4968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4968), - [anon_sym_POUNDload] = ACTIONS(4968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4968), + [sym_identifier] = ACTIONS(3722), + [anon_sym_EQ] = ACTIONS(3724), + [anon_sym_COLON] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3722), + [anon_sym_COLON_QMARK] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3722), + [anon_sym_DOT] = ACTIONS(3722), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_COLON_GT] = ACTIONS(3724), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3724), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_LT_DASH] = ACTIONS(3722), + [anon_sym_DOT_LBRACK] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3722), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_or] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3722), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3722), + [anon_sym_DASH_DOT] = ACTIONS(3722), + [anon_sym_PERCENT] = ACTIONS(3722), + [anon_sym_AMP_AMP] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3722), + [aux_sym_infix_op_token1] = ACTIONS(3722), + [anon_sym_PIPE_PIPE] = ACTIONS(3722), + [anon_sym_BANG_EQ] = ACTIONS(3722), + [anon_sym_COLON_EQ] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3722), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3722), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + [sym__newline] = ACTIONS(3724), }, [2688] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5428), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2688), [sym_block_comment] = STATE(2688), [sym_line_comment] = STATE(2688), [sym_compiler_directive_decl] = STATE(2688), [sym_fsi_directive_decl] = STATE(2688), [sym_preproc_line] = STATE(2688), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4972), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3914), + [anon_sym_EQ] = ACTIONS(3916), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_return] = ACTIONS(3914), + [anon_sym_do] = ACTIONS(3914), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_let_BANG] = ACTIONS(3916), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_COMMA] = ACTIONS(3916), + [anon_sym_null] = ACTIONS(3914), + [anon_sym_QMARK] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_COLON] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(3914), + [anon_sym_LBRACK] = ACTIONS(3914), + [anon_sym_LBRACK_PIPE] = ACTIONS(3916), + [anon_sym_LBRACE] = ACTIONS(3914), + [anon_sym_LT_AT] = ACTIONS(3914), + [anon_sym_LT_AT_AT] = ACTIONS(3914), + [anon_sym_DOT] = ACTIONS(3914), + [anon_sym_LBRACE_PIPE] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3914), + [anon_sym_return_BANG] = ACTIONS(3916), + [anon_sym_yield] = ACTIONS(3914), + [anon_sym_yield_BANG] = ACTIONS(3916), + [anon_sym_lazy] = ACTIONS(3914), + [anon_sym_assert] = ACTIONS(3914), + [anon_sym_upcast] = ACTIONS(3914), + [anon_sym_downcast] = ACTIONS(3914), + [anon_sym_COLON_GT] = ACTIONS(3916), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3916), + [anon_sym_for] = ACTIONS(3914), + [anon_sym_while] = ACTIONS(3914), + [anon_sym_if] = ACTIONS(3914), + [anon_sym_fun] = ACTIONS(3914), + [anon_sym_try] = ACTIONS(3914), + [anon_sym_match] = ACTIONS(3914), + [anon_sym_match_BANG] = ACTIONS(3916), + [anon_sym_function] = ACTIONS(3914), + [anon_sym_LT_DASH] = ACTIONS(3914), + [anon_sym_DOT_LBRACK] = ACTIONS(3916), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_GT] = ACTIONS(3914), + [anon_sym_use] = ACTIONS(3914), + [anon_sym_use_BANG] = ACTIONS(3916), + [anon_sym_do_BANG] = ACTIONS(3916), + [anon_sym_begin] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(3916), + [anon_sym_or] = ACTIONS(3914), + [aux_sym_char_token1] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_AT_DQUOTE] = ACTIONS(3916), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3916), + [sym_bool] = ACTIONS(3914), + [sym_unit] = ACTIONS(3914), + [anon_sym_LPAREN_PIPE] = ACTIONS(3914), + [sym_op_identifier] = ACTIONS(3914), + [anon_sym_PLUS] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [anon_sym_PLUS_DOT] = ACTIONS(3914), + [anon_sym_DASH_DOT] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_AMP_AMP] = ACTIONS(3914), + [anon_sym_TILDE] = ACTIONS(3916), + [aux_sym_prefix_op_token1] = ACTIONS(3914), + [aux_sym_infix_op_token1] = ACTIONS(3914), + [anon_sym_PIPE_PIPE] = ACTIONS(3914), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_COLON_EQ] = ACTIONS(3916), + [anon_sym_DOLLAR] = ACTIONS(3914), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3914), + [sym_int] = ACTIONS(3914), + [sym_xint] = ACTIONS(3916), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3916), + [sym__newline] = ACTIONS(3916), }, [2689] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5455), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2689), [sym_block_comment] = STATE(2689), [sym_line_comment] = STATE(2689), [sym_compiler_directive_decl] = STATE(2689), [sym_fsi_directive_decl] = STATE(2689), [sym_preproc_line] = STATE(2689), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_QMARK] = ACTIONS(3693), + [anon_sym_COLON_QMARK] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3693), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_COLON_GT] = ACTIONS(3695), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_LT_DASH] = ACTIONS(3693), + [anon_sym_DOT_LBRACK] = ACTIONS(3695), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_GT] = ACTIONS(3693), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [anon_sym_LPAREN2] = ACTIONS(3695), + [anon_sym_or] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3693), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3693), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3693), + [anon_sym_DASH_DOT] = ACTIONS(3693), + [anon_sym_PERCENT] = ACTIONS(3693), + [anon_sym_AMP_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3693), + [aux_sym_infix_op_token1] = ACTIONS(3693), + [anon_sym_PIPE_PIPE] = ACTIONS(3693), + [anon_sym_BANG_EQ] = ACTIONS(3693), + [anon_sym_COLON_EQ] = ACTIONS(3695), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3693), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + [sym__newline] = ACTIONS(3695), }, [2690] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7292), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2690), [sym_block_comment] = STATE(2690), [sym_line_comment] = STATE(2690), [sym_compiler_directive_decl] = STATE(2690), [sym_fsi_directive_decl] = STATE(2690), [sym_preproc_line] = STATE(2690), - [ts_builtin_sym_end] = ACTIONS(4584), - [sym_identifier] = ACTIONS(4586), - [anon_sym_namespace] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_open] = ACTIONS(4586), - [anon_sym_LBRACK_LT] = ACTIONS(4584), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_type] = ACTIONS(4586), - [anon_sym_do] = ACTIONS(4586), - [anon_sym_and] = ACTIONS(4586), - [anon_sym_let] = ACTIONS(4586), - [anon_sym_let_BANG] = ACTIONS(4584), - [aux_sym_access_modifier_token1] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4586), - [anon_sym_null] = ACTIONS(4586), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4586), - [anon_sym_LBRACK_PIPE] = ACTIONS(4584), - [anon_sym_LBRACE] = ACTIONS(4586), - [anon_sym_LBRACE_PIPE] = ACTIONS(4584), - [anon_sym_new] = ACTIONS(4586), - [anon_sym_return_BANG] = ACTIONS(4584), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_yield_BANG] = ACTIONS(4584), - [anon_sym_lazy] = ACTIONS(4586), - [anon_sym_assert] = ACTIONS(4586), - [anon_sym_upcast] = ACTIONS(4586), - [anon_sym_downcast] = ACTIONS(4586), - [anon_sym_LT_AT] = ACTIONS(4586), - [anon_sym_LT_AT_AT] = ACTIONS(4584), - [anon_sym_for] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_if] = ACTIONS(4586), - [anon_sym_fun] = ACTIONS(4586), - [anon_sym_try] = ACTIONS(4586), - [anon_sym_match] = ACTIONS(4586), - [anon_sym_match_BANG] = ACTIONS(4584), - [anon_sym_function] = ACTIONS(4586), - [anon_sym_use] = ACTIONS(4586), - [anon_sym_use_BANG] = ACTIONS(4584), - [anon_sym_do_BANG] = ACTIONS(4584), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_default] = ACTIONS(4586), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_member] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_override] = ACTIONS(4586), - [anon_sym_val] = ACTIONS(4586), - [aux_sym_char_token1] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4586), - [anon_sym_DQUOTE] = ACTIONS(4586), - [anon_sym_AT_DQUOTE] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [sym_bool] = ACTIONS(4586), - [sym_unit] = ACTIONS(4584), - [anon_sym_LPAREN_PIPE] = ACTIONS(4586), - [sym_op_identifier] = ACTIONS(4584), - [anon_sym_PLUS] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_PLUS_DOT] = ACTIONS(4584), - [anon_sym_DASH_DOT] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_AMP_AMP] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [aux_sym_prefix_op_token1] = ACTIONS(4584), - [sym_int] = ACTIONS(4586), - [sym_xint] = ACTIONS(4584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4584), - [anon_sym_POUNDload] = ACTIONS(4584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4584), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2691] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5090), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2691), [sym_block_comment] = STATE(2691), [sym_line_comment] = STATE(2691), [sym_compiler_directive_decl] = STATE(2691), [sym_fsi_directive_decl] = STATE(2691), [sym_preproc_line] = STATE(2691), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_DOT_DOT] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2692] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5262), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2692), [sym_block_comment] = STATE(2692), [sym_line_comment] = STATE(2692), [sym_compiler_directive_decl] = STATE(2692), [sym_fsi_directive_decl] = STATE(2692), [sym_preproc_line] = STATE(2692), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_AT_AT_GT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2693] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5446), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2693), [sym_block_comment] = STATE(2693), [sym_line_comment] = STATE(2693), [sym_compiler_directive_decl] = STATE(2693), [sym_fsi_directive_decl] = STATE(2693), [sym_preproc_line] = STATE(2693), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_AT_AT_GT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2694] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5431), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2694), [sym_block_comment] = STATE(2694), [sym_line_comment] = STATE(2694), [sym_compiler_directive_decl] = STATE(2694), [sym_fsi_directive_decl] = STATE(2694), [sym_preproc_line] = STATE(2694), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4974), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_let] = ACTIONS(3925), + [anon_sym_let_BANG] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3927), + [anon_sym_null] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_COLON_QMARK] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_LBRACK_PIPE] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_LT_AT] = ACTIONS(3925), + [anon_sym_LT_AT_AT] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_return_BANG] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3925), + [anon_sym_yield_BANG] = ACTIONS(3927), + [anon_sym_lazy] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_upcast] = ACTIONS(3925), + [anon_sym_downcast] = ACTIONS(3925), + [anon_sym_COLON_GT] = ACTIONS(3927), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_fun] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_match_BANG] = ACTIONS(3927), + [anon_sym_function] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [anon_sym_DOT_LBRACK] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_GT] = ACTIONS(3925), + [anon_sym_use] = ACTIONS(3925), + [anon_sym_use_BANG] = ACTIONS(3927), + [anon_sym_do_BANG] = ACTIONS(3927), + [anon_sym_begin] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3925), + [aux_sym_char_token1] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_AT_DQUOTE] = ACTIONS(3927), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3927), + [sym_bool] = ACTIONS(3925), + [sym_unit] = ACTIONS(3925), + [anon_sym_LPAREN_PIPE] = ACTIONS(3925), + [sym_op_identifier] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS_DOT] = ACTIONS(3925), + [anon_sym_DASH_DOT] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3927), + [aux_sym_prefix_op_token1] = ACTIONS(3925), + [aux_sym_infix_op_token1] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_COLON_EQ] = ACTIONS(3927), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3925), + [sym_int] = ACTIONS(3925), + [sym_xint] = ACTIONS(3927), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3927), + [sym__newline] = ACTIONS(3927), }, [2695] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5452), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2695), [sym_block_comment] = STATE(2695), [sym_line_comment] = STATE(2695), [sym_compiler_directive_decl] = STATE(2695), [sym_fsi_directive_decl] = STATE(2695), [sym_preproc_line] = STATE(2695), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4976), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_COLON] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_QMARK] = ACTIONS(3701), + [anon_sym_COLON_QMARK] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3701), + [anon_sym_AT_AT_GT] = ACTIONS(3701), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_COLON_GT] = ACTIONS(3703), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_LT_DASH] = ACTIONS(3701), + [anon_sym_DOT_LBRACK] = ACTIONS(3703), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [anon_sym_LPAREN2] = ACTIONS(3703), + [anon_sym_or] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3701), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3701), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3701), + [anon_sym_DASH_DOT] = ACTIONS(3701), + [anon_sym_PERCENT] = ACTIONS(3701), + [anon_sym_AMP_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3701), + [aux_sym_infix_op_token1] = ACTIONS(3701), + [anon_sym_PIPE_PIPE] = ACTIONS(3701), + [anon_sym_BANG_EQ] = ACTIONS(3701), + [anon_sym_COLON_EQ] = ACTIONS(3703), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3701), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + [sym__newline] = ACTIONS(3703), }, [2696] = { [sym_xml_doc] = STATE(2696), @@ -330622,244 +335990,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2696), [sym_fsi_directive_decl] = STATE(2696), [sym_preproc_line] = STATE(2696), - [ts_builtin_sym_end] = ACTIONS(4978), - [sym_identifier] = ACTIONS(4980), - [anon_sym_namespace] = ACTIONS(4980), - [anon_sym_module] = ACTIONS(4980), - [anon_sym_open] = ACTIONS(4980), - [anon_sym_LBRACK_LT] = ACTIONS(4978), - [anon_sym_return] = ACTIONS(4980), - [anon_sym_type] = ACTIONS(4980), - [anon_sym_do] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [anon_sym_let] = ACTIONS(4980), - [anon_sym_let_BANG] = ACTIONS(4978), - [aux_sym_access_modifier_token1] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4980), - [anon_sym_null] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_LBRACK_PIPE] = ACTIONS(4978), - [anon_sym_LBRACE] = ACTIONS(4980), - [anon_sym_LBRACE_PIPE] = ACTIONS(4978), - [anon_sym_new] = ACTIONS(4980), - [anon_sym_return_BANG] = ACTIONS(4978), - [anon_sym_yield] = ACTIONS(4980), - [anon_sym_yield_BANG] = ACTIONS(4978), - [anon_sym_lazy] = ACTIONS(4980), - [anon_sym_assert] = ACTIONS(4980), - [anon_sym_upcast] = ACTIONS(4980), - [anon_sym_downcast] = ACTIONS(4980), - [anon_sym_LT_AT] = ACTIONS(4980), - [anon_sym_LT_AT_AT] = ACTIONS(4978), - [anon_sym_for] = ACTIONS(4980), - [anon_sym_while] = ACTIONS(4980), - [anon_sym_if] = ACTIONS(4980), - [anon_sym_fun] = ACTIONS(4980), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_match] = ACTIONS(4980), - [anon_sym_match_BANG] = ACTIONS(4978), - [anon_sym_function] = ACTIONS(4980), - [anon_sym_use] = ACTIONS(4980), - [anon_sym_use_BANG] = ACTIONS(4978), - [anon_sym_do_BANG] = ACTIONS(4978), - [anon_sym_begin] = ACTIONS(4980), - [anon_sym_default] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [anon_sym_member] = ACTIONS(4980), - [anon_sym_abstract] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_val] = ACTIONS(4980), - [aux_sym_char_token1] = ACTIONS(4978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4980), - [anon_sym_DQUOTE] = ACTIONS(4980), - [anon_sym_AT_DQUOTE] = ACTIONS(4978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4978), - [sym_bool] = ACTIONS(4980), - [sym_unit] = ACTIONS(4978), - [anon_sym_LPAREN_PIPE] = ACTIONS(4980), - [sym_op_identifier] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_PLUS_DOT] = ACTIONS(4978), - [anon_sym_DASH_DOT] = ACTIONS(4978), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_TILDE] = ACTIONS(4978), - [aux_sym_prefix_op_token1] = ACTIONS(4978), - [sym_int] = ACTIONS(4980), - [sym_xint] = ACTIONS(4978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4978), - [anon_sym_POUNDload] = ACTIONS(4978), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4978), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_AT_AT_GT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2697] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5243), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2697), [sym_block_comment] = STATE(2697), [sym_line_comment] = STATE(2697), [sym_compiler_directive_decl] = STATE(2697), [sym_fsi_directive_decl] = STATE(2697), [sym_preproc_line] = STATE(2697), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3933), + [anon_sym_EQ] = ACTIONS(3935), + [anon_sym_COLON] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_do] = ACTIONS(3933), + [anon_sym_let] = ACTIONS(3933), + [anon_sym_let_BANG] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_null] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_COLON_QMARK] = ACTIONS(3933), + [anon_sym_COLON_COLON] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_LBRACK_PIPE] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_LT_AT] = ACTIONS(3933), + [anon_sym_LT_AT_AT] = ACTIONS(3933), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE_PIPE] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3933), + [anon_sym_return_BANG] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3933), + [anon_sym_yield_BANG] = ACTIONS(3935), + [anon_sym_lazy] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_upcast] = ACTIONS(3933), + [anon_sym_downcast] = ACTIONS(3933), + [anon_sym_COLON_GT] = ACTIONS(3935), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_while] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_fun] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_match_BANG] = ACTIONS(3935), + [anon_sym_function] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [anon_sym_DOT_LBRACK] = ACTIONS(3935), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_GT] = ACTIONS(3933), + [anon_sym_use] = ACTIONS(3933), + [anon_sym_use_BANG] = ACTIONS(3935), + [anon_sym_do_BANG] = ACTIONS(3935), + [anon_sym_begin] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3935), + [anon_sym_or] = ACTIONS(3933), + [aux_sym_char_token1] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [anon_sym_AT_DQUOTE] = ACTIONS(3935), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3935), + [sym_bool] = ACTIONS(3933), + [sym_unit] = ACTIONS(3933), + [anon_sym_LPAREN_PIPE] = ACTIONS(3933), + [sym_op_identifier] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_PLUS_DOT] = ACTIONS(3933), + [anon_sym_DASH_DOT] = ACTIONS(3933), + [anon_sym_PERCENT] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3935), + [aux_sym_prefix_op_token1] = ACTIONS(3933), + [aux_sym_infix_op_token1] = ACTIONS(3933), + [anon_sym_PIPE_PIPE] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_COLON_EQ] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3933), + [sym_int] = ACTIONS(3933), + [sym_xint] = ACTIONS(3935), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3935), + [sym__newline] = ACTIONS(3935), }, [2698] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5328), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3929), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym__pattern_param] = STATE(2783), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3713), + [sym_long_identifier] = STATE(3663), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2698), [sym_block_comment] = STATE(2698), [sym_line_comment] = STATE(2698), [sym_compiler_directive_decl] = STATE(2698), [sym_fsi_directive_decl] = STATE(2698), [sym_preproc_line] = STATE(2698), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_LBRACK_LT] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4519), + [anon_sym__] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_COLON_QMARK] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_PIPE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [aux_sym_char_token1] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_AT_DQUOTE] = ACTIONS(4523), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4523), + [sym_bool] = ACTIONS(4519), + [sym_unit] = ACTIONS(4523), + [anon_sym_LPAREN_PIPE] = ACTIONS(4519), + [sym_op_identifier] = ACTIONS(4523), + [sym_int] = ACTIONS(4519), + [sym_xint] = ACTIONS(4523), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -330868,1174 +336260,1286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2699] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5116), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2699), [sym_block_comment] = STATE(2699), [sym_line_comment] = STATE(2699), [sym_compiler_directive_decl] = STATE(2699), [sym_fsi_directive_decl] = STATE(2699), [sym_preproc_line] = STATE(2699), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3726), + [anon_sym_EQ] = ACTIONS(3728), + [anon_sym_COLON] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_COLON_QMARK] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3726), + [anon_sym_AT_AT_GT] = ACTIONS(3726), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_COLON_GT] = ACTIONS(3728), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3728), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_LT_DASH] = ACTIONS(3726), + [anon_sym_DOT_LBRACK] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_or] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3726), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3726), + [anon_sym_DASH_DOT] = ACTIONS(3726), + [anon_sym_PERCENT] = ACTIONS(3726), + [anon_sym_AMP_AMP] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3726), + [aux_sym_infix_op_token1] = ACTIONS(3726), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_BANG_EQ] = ACTIONS(3726), + [anon_sym_COLON_EQ] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3726), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + [sym__newline] = ACTIONS(3728), }, [2700] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5089), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2700), [sym_block_comment] = STATE(2700), [sym_line_comment] = STATE(2700), [sym_compiler_directive_decl] = STATE(2700), [sym_fsi_directive_decl] = STATE(2700), [sym_preproc_line] = STATE(2700), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2701] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3693), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2701), [sym_block_comment] = STATE(2701), [sym_line_comment] = STATE(2701), [sym_compiler_directive_decl] = STATE(2701), [sym_fsi_directive_decl] = STATE(2701), [sym_preproc_line] = STATE(2701), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_GT] = ACTIONS(3624), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2702] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5261), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2702), [sym_block_comment] = STATE(2702), [sym_line_comment] = STATE(2702), [sym_compiler_directive_decl] = STATE(2702), [sym_fsi_directive_decl] = STATE(2702), [sym_preproc_line] = STATE(2702), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_GT] = ACTIONS(3638), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2703] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3748), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2703), [sym_block_comment] = STATE(2703), [sym_line_comment] = STATE(2703), [sym_compiler_directive_decl] = STATE(2703), [sym_fsi_directive_decl] = STATE(2703), [sym_preproc_line] = STATE(2703), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3646), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2704] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5099), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2704), [sym_block_comment] = STATE(2704), [sym_line_comment] = STATE(2704), [sym_compiler_directive_decl] = STATE(2704), [sym_fsi_directive_decl] = STATE(2704), [sym_preproc_line] = STATE(2704), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(3662), + [anon_sym_COLON] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_COLON_QMARK] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3660), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_COLON_GT] = ACTIONS(3662), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3660), + [anon_sym_DOT_LBRACK] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_GT] = ACTIONS(3660), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_or] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3660), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3660), + [anon_sym_DASH_DOT] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3660), + [aux_sym_infix_op_token1] = ACTIONS(3660), + [anon_sym_PIPE_PIPE] = ACTIONS(3660), + [anon_sym_BANG_EQ] = ACTIONS(3660), + [anon_sym_COLON_EQ] = ACTIONS(3662), + [anon_sym_DOLLAR] = ACTIONS(3660), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3660), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + [sym__newline] = ACTIONS(3662), }, [2705] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5088), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2705), [sym_block_comment] = STATE(2705), [sym_line_comment] = STATE(2705), [sym_compiler_directive_decl] = STATE(2705), [sym_fsi_directive_decl] = STATE(2705), [sym_preproc_line] = STATE(2705), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3656), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_COLON] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_QMARK] = ACTIONS(3656), + [anon_sym_COLON_QMARK] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(3656), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_COLON_GT] = ACTIONS(3658), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_LT_DASH] = ACTIONS(3656), + [anon_sym_DOT_LBRACK] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3656), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3656), + [anon_sym_DASH_DOT] = ACTIONS(3656), + [anon_sym_PERCENT] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3656), + [aux_sym_infix_op_token1] = ACTIONS(3656), + [anon_sym_PIPE_PIPE] = ACTIONS(3656), + [anon_sym_BANG_EQ] = ACTIONS(3656), + [anon_sym_COLON_EQ] = ACTIONS(3658), + [anon_sym_DOLLAR] = ACTIONS(3656), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3656), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + [sym__newline] = ACTIONS(3658), }, [2706] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5068), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2706), [sym_block_comment] = STATE(2706), [sym_line_comment] = STATE(2706), [sym_compiler_directive_decl] = STATE(2706), [sym_fsi_directive_decl] = STATE(2706), [sym_preproc_line] = STATE(2706), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_GT] = ACTIONS(3675), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2707] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3709), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2707), [sym_block_comment] = STATE(2707), [sym_line_comment] = STATE(2707), [sym_compiler_directive_decl] = STATE(2707), [sym_fsi_directive_decl] = STATE(2707), [sym_preproc_line] = STATE(2707), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_DOT_DOT] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2708] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5412), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2708), [sym_block_comment] = STATE(2708), [sym_line_comment] = STATE(2708), [sym_compiler_directive_decl] = STATE(2708), [sym_fsi_directive_decl] = STATE(2708), [sym_preproc_line] = STATE(2708), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_QMARK] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3770), + [anon_sym_AT_AT_GT] = ACTIONS(3770), + [anon_sym_DOT] = ACTIONS(3770), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_COLON_GT] = ACTIONS(3772), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3772), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_LT_DASH] = ACTIONS(3770), + [anon_sym_DOT_LBRACK] = ACTIONS(3772), + [anon_sym_LT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_or] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3770), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3770), + [anon_sym_DASH_DOT] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3770), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3770), + [aux_sym_infix_op_token1] = ACTIONS(3770), + [anon_sym_PIPE_PIPE] = ACTIONS(3770), + [anon_sym_BANG_EQ] = ACTIONS(3770), + [anon_sym_COLON_EQ] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3770), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3770), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), }, [2709] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3534), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2709), [sym_block_comment] = STATE(2709), [sym_line_comment] = STATE(2709), [sym_compiler_directive_decl] = STATE(2709), [sym_fsi_directive_decl] = STATE(2709), [sym_preproc_line] = STATE(2709), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3677), + [anon_sym_COLON] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_do] = ACTIONS(3675), + [anon_sym_let] = ACTIONS(3675), + [anon_sym_let_BANG] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_COMMA] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3675), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_COLON_QMARK] = ACTIONS(3675), + [anon_sym_COLON_COLON] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3675), + [anon_sym_LBRACK] = ACTIONS(3675), + [anon_sym_LBRACK_PIPE] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3675), + [anon_sym_LT_AT] = ACTIONS(3675), + [anon_sym_LT_AT_AT] = ACTIONS(3675), + [anon_sym_AT_AT_GT] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3675), + [anon_sym_LBRACE_PIPE] = ACTIONS(3677), + [anon_sym_new] = ACTIONS(3675), + [anon_sym_return_BANG] = ACTIONS(3677), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_yield_BANG] = ACTIONS(3677), + [anon_sym_lazy] = ACTIONS(3675), + [anon_sym_assert] = ACTIONS(3675), + [anon_sym_upcast] = ACTIONS(3675), + [anon_sym_downcast] = ACTIONS(3675), + [anon_sym_COLON_GT] = ACTIONS(3677), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3677), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_fun] = ACTIONS(3675), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_match_BANG] = ACTIONS(3677), + [anon_sym_function] = ACTIONS(3675), + [anon_sym_LT_DASH] = ACTIONS(3675), + [anon_sym_DOT_LBRACK] = ACTIONS(3677), + [anon_sym_LT] = ACTIONS(3677), + [anon_sym_use] = ACTIONS(3675), + [anon_sym_use_BANG] = ACTIONS(3677), + [anon_sym_do_BANG] = ACTIONS(3677), + [anon_sym_begin] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(3677), + [anon_sym_or] = ACTIONS(3675), + [aux_sym_char_token1] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3675), + [anon_sym_AT_DQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3677), + [sym_bool] = ACTIONS(3675), + [sym_unit] = ACTIONS(3675), + [anon_sym_LPAREN_PIPE] = ACTIONS(3675), + [sym_op_identifier] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(3675), + [anon_sym_DASH] = ACTIONS(3675), + [anon_sym_PLUS_DOT] = ACTIONS(3675), + [anon_sym_DASH_DOT] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_AMP_AMP] = ACTIONS(3675), + [anon_sym_TILDE] = ACTIONS(3677), + [aux_sym_prefix_op_token1] = ACTIONS(3675), + [aux_sym_infix_op_token1] = ACTIONS(3675), + [anon_sym_PIPE_PIPE] = ACTIONS(3675), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_COLON_EQ] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3675), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3675), + [sym_int] = ACTIONS(3675), + [sym_xint] = ACTIONS(3677), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3677), + [sym__newline] = ACTIONS(3677), }, [2710] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5459), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2710), [sym_block_comment] = STATE(2710), [sym_line_comment] = STATE(2710), [sym_compiler_directive_decl] = STATE(2710), [sym_fsi_directive_decl] = STATE(2710), [sym_preproc_line] = STATE(2710), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3766), + [anon_sym_EQ] = ACTIONS(3768), + [anon_sym_COLON] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3766), + [anon_sym_COLON_QMARK] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3766), + [anon_sym_AT_AT_GT] = ACTIONS(3766), + [anon_sym_DOT] = ACTIONS(3766), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_COLON_GT] = ACTIONS(3768), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3768), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_DOT_LBRACK] = ACTIONS(3768), + [anon_sym_LT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_or] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3766), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3766), + [anon_sym_DASH_DOT] = ACTIONS(3766), + [anon_sym_PERCENT] = ACTIONS(3766), + [anon_sym_AMP_AMP] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3766), + [aux_sym_infix_op_token1] = ACTIONS(3766), + [anon_sym_PIPE_PIPE] = ACTIONS(3766), + [anon_sym_BANG_EQ] = ACTIONS(3766), + [anon_sym_COLON_EQ] = ACTIONS(3768), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3766), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + [sym__newline] = ACTIONS(3768), }, [2711] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5463), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2711), [sym_block_comment] = STATE(2711), [sym_line_comment] = STATE(2711), [sym_compiler_directive_decl] = STATE(2711), [sym_fsi_directive_decl] = STATE(2711), [sym_preproc_line] = STATE(2711), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2712] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5457), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3491), + [sym_function_declaration_left] = STATE(7112), + [sym_value_declaration_left] = STATE(7112), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2712), [sym_block_comment] = STATE(2712), [sym_line_comment] = STATE(2712), [sym_compiler_directive_decl] = STATE(2712), [sym_fsi_directive_decl] = STATE(2712), [sym_preproc_line] = STATE(2712), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4995), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -332044,250 +337548,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2713] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5409), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2713), [sym_block_comment] = STATE(2713), [sym_line_comment] = STATE(2713), [sym_compiler_directive_decl] = STATE(2713), [sym_fsi_directive_decl] = STATE(2713), [sym_preproc_line] = STATE(2713), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3642), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_QMARK] = ACTIONS(3642), + [anon_sym_COLON_QMARK] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3642), + [anon_sym_AT_AT_GT] = ACTIONS(3642), + [anon_sym_DOT] = ACTIONS(3642), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_COLON_GT] = ACTIONS(3644), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_LT_DASH] = ACTIONS(3642), + [anon_sym_DOT_LBRACK] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3642), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3642), + [anon_sym_DASH_DOT] = ACTIONS(3642), + [anon_sym_PERCENT] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3642), + [aux_sym_infix_op_token1] = ACTIONS(3642), + [anon_sym_PIPE_PIPE] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3642), + [anon_sym_COLON_EQ] = ACTIONS(3644), + [anon_sym_DOLLAR] = ACTIONS(3642), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3642), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + [sym__newline] = ACTIONS(3644), }, [2714] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3519), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2714), [sym_block_comment] = STATE(2714), [sym_line_comment] = STATE(2714), [sym_compiler_directive_decl] = STATE(2714), [sym_fsi_directive_decl] = STATE(2714), [sym_preproc_line] = STATE(2714), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_let_BANG] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), + [anon_sym_null] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_COLON_QMARK] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LBRACK_PIPE] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LT_AT] = ACTIONS(3742), + [anon_sym_LT_AT_AT] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE_PIPE] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_return_BANG] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_yield_BANG] = ACTIONS(3744), + [anon_sym_lazy] = ACTIONS(3742), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_upcast] = ACTIONS(3742), + [anon_sym_downcast] = ACTIONS(3742), + [anon_sym_COLON_GT] = ACTIONS(3744), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_fun] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_match] = ACTIONS(3742), + [anon_sym_match_BANG] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [anon_sym_DOT_LBRACK] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_GT] = ACTIONS(3742), + [anon_sym_use] = ACTIONS(3742), + [anon_sym_use_BANG] = ACTIONS(3744), + [anon_sym_do_BANG] = ACTIONS(3744), + [anon_sym_begin] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_or] = ACTIONS(3742), + [aux_sym_char_token1] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_AT_DQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3744), + [sym_bool] = ACTIONS(3742), + [sym_unit] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(3742), + [sym_op_identifier] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS_DOT] = ACTIONS(3742), + [anon_sym_DASH_DOT] = ACTIONS(3742), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3744), + [aux_sym_prefix_op_token1] = ACTIONS(3742), + [aux_sym_infix_op_token1] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_COLON_EQ] = ACTIONS(3744), + [anon_sym_DOLLAR] = ACTIONS(3742), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3742), + [sym_int] = ACTIONS(3742), + [sym_xint] = ACTIONS(3744), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3744), + [sym__newline] = ACTIONS(3744), }, [2715] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3438), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(4930), + [sym__function_or_value_defn_body] = STATE(4762), + [sym_function_declaration_left] = STATE(6920), + [sym_value_declaration_left] = STATE(6920), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2715), [sym_block_comment] = STATE(2715), [sym_line_comment] = STATE(2715), [sym_compiler_directive_decl] = STATE(2715), [sym_fsi_directive_decl] = STATE(2715), [sym_preproc_line] = STATE(2715), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -332296,82 +337824,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2716] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5115), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7892), + [sym__function_or_value_defn_body] = STATE(6447), + [sym_function_declaration_left] = STATE(6949), + [sym_value_declaration_left] = STATE(6949), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2716), [sym_block_comment] = STATE(2716), [sym_line_comment] = STATE(2716), [sym_compiler_directive_decl] = STATE(2716), [sym_fsi_directive_decl] = STATE(2716), [sym_preproc_line] = STATE(2716), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -332380,256 +337916,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2717] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3421), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2717), [sym_block_comment] = STATE(2717), [sym_line_comment] = STATE(2717), [sym_compiler_directive_decl] = STATE(2717), [sym_fsi_directive_decl] = STATE(2717), [sym_preproc_line] = STATE(2717), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3608), + [anon_sym_EQ] = ACTIONS(3610), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_let_BANG] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_QMARK] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LBRACK_PIPE] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LT_AT] = ACTIONS(3608), + [anon_sym_LT_AT_AT] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(3608), + [anon_sym_LBRACE_PIPE] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_return_BANG] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_yield_BANG] = ACTIONS(3610), + [anon_sym_lazy] = ACTIONS(3608), + [anon_sym_assert] = ACTIONS(3608), + [anon_sym_upcast] = ACTIONS(3608), + [anon_sym_downcast] = ACTIONS(3608), + [anon_sym_COLON_GT] = ACTIONS(3610), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_fun] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_match] = ACTIONS(3608), + [anon_sym_match_BANG] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_LT_DASH] = ACTIONS(3608), + [anon_sym_DOT_LBRACK] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_use] = ACTIONS(3608), + [anon_sym_use_BANG] = ACTIONS(3610), + [anon_sym_do_BANG] = ACTIONS(3610), + [anon_sym_begin] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_or] = ACTIONS(3608), + [aux_sym_char_token1] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_AT_DQUOTE] = ACTIONS(3610), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3610), + [sym_bool] = ACTIONS(3608), + [sym_unit] = ACTIONS(3608), + [anon_sym_LPAREN_PIPE] = ACTIONS(3608), + [sym_op_identifier] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS_DOT] = ACTIONS(3608), + [anon_sym_DASH_DOT] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_AMP_AMP] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [aux_sym_prefix_op_token1] = ACTIONS(3608), + [aux_sym_infix_op_token1] = ACTIONS(3608), + [anon_sym_PIPE_PIPE] = ACTIONS(3608), + [anon_sym_BANG_EQ] = ACTIONS(3608), + [anon_sym_COLON_EQ] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3608), + [sym_int] = ACTIONS(3608), + [sym_xint] = ACTIONS(3610), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3610), + [anon_sym_POUNDendif] = ACTIONS(3610), + [sym__newline] = ACTIONS(3610), }, [2718] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5205), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2718), [sym_block_comment] = STATE(2718), [sym_line_comment] = STATE(2718), [sym_compiler_directive_decl] = STATE(2718), [sym_fsi_directive_decl] = STATE(2718), [sym_preproc_line] = STATE(2718), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_GT] = ACTIONS(3616), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2719] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5086), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2719), [sym_block_comment] = STATE(2719), [sym_line_comment] = STATE(2719), [sym_compiler_directive_decl] = STATE(2719), [sym_fsi_directive_decl] = STATE(2719), [sym_preproc_line] = STATE(2719), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [anon_sym_POUNDendif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2720] = { [sym_xml_doc] = STATE(2720), @@ -332638,82 +338198,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2720), [sym_fsi_directive_decl] = STATE(2720), [sym_preproc_line] = STATE(2720), - [ts_builtin_sym_end] = ACTIONS(4655), - [sym_identifier] = ACTIONS(4657), - [anon_sym_namespace] = ACTIONS(4657), - [anon_sym_module] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_LBRACK_LT] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_type] = ACTIONS(4657), - [anon_sym_do] = ACTIONS(4657), - [anon_sym_and] = ACTIONS(4657), - [anon_sym_let] = ACTIONS(4657), - [anon_sym_let_BANG] = ACTIONS(4655), - [aux_sym_access_modifier_token1] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_PIPE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_LBRACE_PIPE] = ACTIONS(4655), - [anon_sym_new] = ACTIONS(4657), - [anon_sym_return_BANG] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4657), - [anon_sym_yield_BANG] = ACTIONS(4655), - [anon_sym_lazy] = ACTIONS(4657), - [anon_sym_assert] = ACTIONS(4657), - [anon_sym_upcast] = ACTIONS(4657), - [anon_sym_downcast] = ACTIONS(4657), - [anon_sym_LT_AT] = ACTIONS(4657), - [anon_sym_LT_AT_AT] = ACTIONS(4655), - [anon_sym_for] = ACTIONS(4657), - [anon_sym_while] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_match] = ACTIONS(4657), - [anon_sym_match_BANG] = ACTIONS(4655), - [anon_sym_function] = ACTIONS(4657), - [anon_sym_use] = ACTIONS(4657), - [anon_sym_use_BANG] = ACTIONS(4655), - [anon_sym_do_BANG] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4657), - [anon_sym_default] = ACTIONS(4657), - [anon_sym_static] = ACTIONS(4657), - [anon_sym_member] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_val] = ACTIONS(4657), - [aux_sym_char_token1] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_AT_DQUOTE] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [sym_bool] = ACTIONS(4657), - [sym_unit] = ACTIONS(4655), - [anon_sym_LPAREN_PIPE] = ACTIONS(4657), - [sym_op_identifier] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_PLUS_DOT] = ACTIONS(4655), - [anon_sym_DASH_DOT] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [aux_sym_prefix_op_token1] = ACTIONS(4655), - [sym_int] = ACTIONS(4657), - [sym_xint] = ACTIONS(4655), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4655), - [anon_sym_POUNDload] = ACTIONS(4655), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4655), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2721] = { [sym_xml_doc] = STATE(2721), @@ -332722,418 +338290,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2721), [sym_fsi_directive_decl] = STATE(2721), [sym_preproc_line] = STATE(2721), - [ts_builtin_sym_end] = ACTIONS(4982), - [sym_identifier] = ACTIONS(4984), - [anon_sym_namespace] = ACTIONS(4984), - [anon_sym_module] = ACTIONS(4984), - [anon_sym_open] = ACTIONS(4984), - [anon_sym_LBRACK_LT] = ACTIONS(4982), - [anon_sym_return] = ACTIONS(4984), - [anon_sym_type] = ACTIONS(4984), - [anon_sym_do] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_let] = ACTIONS(4984), - [anon_sym_let_BANG] = ACTIONS(4982), - [aux_sym_access_modifier_token1] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_LBRACK_PIPE] = ACTIONS(4982), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACE_PIPE] = ACTIONS(4982), - [anon_sym_new] = ACTIONS(4984), - [anon_sym_return_BANG] = ACTIONS(4982), - [anon_sym_yield] = ACTIONS(4984), - [anon_sym_yield_BANG] = ACTIONS(4982), - [anon_sym_lazy] = ACTIONS(4984), - [anon_sym_assert] = ACTIONS(4984), - [anon_sym_upcast] = ACTIONS(4984), - [anon_sym_downcast] = ACTIONS(4984), - [anon_sym_LT_AT] = ACTIONS(4984), - [anon_sym_LT_AT_AT] = ACTIONS(4982), - [anon_sym_for] = ACTIONS(4984), - [anon_sym_while] = ACTIONS(4984), - [anon_sym_if] = ACTIONS(4984), - [anon_sym_fun] = ACTIONS(4984), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_match] = ACTIONS(4984), - [anon_sym_match_BANG] = ACTIONS(4982), - [anon_sym_function] = ACTIONS(4984), - [anon_sym_use] = ACTIONS(4984), - [anon_sym_use_BANG] = ACTIONS(4982), - [anon_sym_do_BANG] = ACTIONS(4982), - [anon_sym_begin] = ACTIONS(4984), - [anon_sym_default] = ACTIONS(4984), - [anon_sym_static] = ACTIONS(4984), - [anon_sym_member] = ACTIONS(4984), - [anon_sym_abstract] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_val] = ACTIONS(4984), - [aux_sym_char_token1] = ACTIONS(4982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4984), - [anon_sym_DQUOTE] = ACTIONS(4984), - [anon_sym_AT_DQUOTE] = ACTIONS(4982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4982), - [sym_bool] = ACTIONS(4984), - [sym_unit] = ACTIONS(4982), - [anon_sym_LPAREN_PIPE] = ACTIONS(4984), - [sym_op_identifier] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS_DOT] = ACTIONS(4982), - [anon_sym_DASH_DOT] = ACTIONS(4982), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_TILDE] = ACTIONS(4982), - [aux_sym_prefix_op_token1] = ACTIONS(4982), - [sym_int] = ACTIONS(4984), - [sym_xint] = ACTIONS(4982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4982), - [anon_sym_POUNDload] = ACTIONS(4982), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4982), + [sym_identifier] = ACTIONS(3814), + [anon_sym_EQ] = ACTIONS(3816), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_return] = ACTIONS(3814), + [anon_sym_do] = ACTIONS(3814), + [anon_sym_let] = ACTIONS(3814), + [anon_sym_let_BANG] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3814), + [anon_sym_COMMA] = ACTIONS(3816), + [anon_sym_null] = ACTIONS(3814), + [anon_sym_QMARK] = ACTIONS(3814), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_COLON] = ACTIONS(3816), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_LBRACK] = ACTIONS(3814), + [anon_sym_LBRACK_PIPE] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_LT_AT] = ACTIONS(3814), + [anon_sym_LT_AT_AT] = ACTIONS(3814), + [anon_sym_DOT] = ACTIONS(3814), + [anon_sym_LBRACE_PIPE] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3814), + [anon_sym_return_BANG] = ACTIONS(3816), + [anon_sym_yield] = ACTIONS(3814), + [anon_sym_yield_BANG] = ACTIONS(3816), + [anon_sym_lazy] = ACTIONS(3814), + [anon_sym_assert] = ACTIONS(3814), + [anon_sym_upcast] = ACTIONS(3814), + [anon_sym_downcast] = ACTIONS(3814), + [anon_sym_COLON_GT] = ACTIONS(3816), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3816), + [anon_sym_for] = ACTIONS(3814), + [anon_sym_while] = ACTIONS(3814), + [anon_sym_if] = ACTIONS(3814), + [anon_sym_fun] = ACTIONS(3814), + [anon_sym_try] = ACTIONS(3814), + [anon_sym_match] = ACTIONS(3814), + [anon_sym_match_BANG] = ACTIONS(3816), + [anon_sym_function] = ACTIONS(3814), + [anon_sym_LT_DASH] = ACTIONS(3814), + [anon_sym_DOT_LBRACK] = ACTIONS(3816), + [anon_sym_LT] = ACTIONS(3816), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_use] = ACTIONS(3814), + [anon_sym_use_BANG] = ACTIONS(3816), + [anon_sym_do_BANG] = ACTIONS(3816), + [anon_sym_begin] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(3816), + [anon_sym_or] = ACTIONS(3814), + [aux_sym_char_token1] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3814), + [anon_sym_DQUOTE] = ACTIONS(3814), + [anon_sym_AT_DQUOTE] = ACTIONS(3816), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3816), + [sym_bool] = ACTIONS(3814), + [sym_unit] = ACTIONS(3814), + [anon_sym_LPAREN_PIPE] = ACTIONS(3814), + [sym_op_identifier] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [anon_sym_PLUS_DOT] = ACTIONS(3814), + [anon_sym_DASH_DOT] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_AMP_AMP] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3816), + [aux_sym_prefix_op_token1] = ACTIONS(3814), + [aux_sym_infix_op_token1] = ACTIONS(3814), + [anon_sym_PIPE_PIPE] = ACTIONS(3814), + [anon_sym_BANG_EQ] = ACTIONS(3814), + [anon_sym_COLON_EQ] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3814), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3814), + [sym_int] = ACTIONS(3814), + [sym_xint] = ACTIONS(3816), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3816), + [sym__newline] = ACTIONS(3816), }, [2722] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3676), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2722), [sym_block_comment] = STATE(2722), [sym_line_comment] = STATE(2722), [sym_compiler_directive_decl] = STATE(2722), [sym_fsi_directive_decl] = STATE(2722), [sym_preproc_line] = STATE(2722), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_GT] = ACTIONS(3712), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2723] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5401), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2723), [sym_block_comment] = STATE(2723), [sym_line_comment] = STATE(2723), [sym_compiler_directive_decl] = STATE(2723), [sym_fsi_directive_decl] = STATE(2723), [sym_preproc_line] = STATE(2723), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3748), + [anon_sym_COLON] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_COLON_QMARK] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3746), + [anon_sym_AT_AT_GT] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3746), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_COLON_GT] = ACTIONS(3748), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3748), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_LT_DASH] = ACTIONS(3746), + [anon_sym_DOT_LBRACK] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_or] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3746), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3746), + [anon_sym_DASH_DOT] = ACTIONS(3746), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3746), + [aux_sym_infix_op_token1] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_COLON_EQ] = ACTIONS(3748), + [anon_sym_DOLLAR] = ACTIONS(3746), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3746), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + [sym__newline] = ACTIONS(3748), }, [2724] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3578), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2724), [sym_block_comment] = STATE(2724), [sym_line_comment] = STATE(2724), [sym_compiler_directive_decl] = STATE(2724), [sym_fsi_directive_decl] = STATE(2724), [sym_preproc_line] = STATE(2724), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_GT] = ACTIONS(3718), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2725] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5439), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2725), [sym_block_comment] = STATE(2725), [sym_line_comment] = STATE(2725), [sym_compiler_directive_decl] = STATE(2725), [sym_fsi_directive_decl] = STATE(2725), [sym_preproc_line] = STATE(2725), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4986), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_let_BANG] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3762), + [anon_sym_COLON_QMARK] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_LBRACK_PIPE] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LT_AT] = ACTIONS(3762), + [anon_sym_LT_AT_AT] = ACTIONS(3762), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_LBRACE_PIPE] = ACTIONS(3764), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_return_BANG] = ACTIONS(3764), + [anon_sym_yield] = ACTIONS(3762), + [anon_sym_yield_BANG] = ACTIONS(3764), + [anon_sym_lazy] = ACTIONS(3762), + [anon_sym_assert] = ACTIONS(3762), + [anon_sym_upcast] = ACTIONS(3762), + [anon_sym_downcast] = ACTIONS(3762), + [anon_sym_COLON_GT] = ACTIONS(3764), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3764), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_fun] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_match_BANG] = ACTIONS(3764), + [anon_sym_function] = ACTIONS(3762), + [anon_sym_LT_DASH] = ACTIONS(3762), + [anon_sym_DOT_LBRACK] = ACTIONS(3764), + [anon_sym_LT] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_use] = ACTIONS(3762), + [anon_sym_use_BANG] = ACTIONS(3764), + [anon_sym_do_BANG] = ACTIONS(3764), + [anon_sym_begin] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [aux_sym_char_token1] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), + [anon_sym_DQUOTE] = ACTIONS(3762), + [anon_sym_AT_DQUOTE] = ACTIONS(3764), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3764), + [sym_bool] = ACTIONS(3762), + [sym_unit] = ACTIONS(3762), + [anon_sym_LPAREN_PIPE] = ACTIONS(3762), + [sym_op_identifier] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS_DOT] = ACTIONS(3762), + [anon_sym_DASH_DOT] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_AMP_AMP] = ACTIONS(3762), + [anon_sym_TILDE] = ACTIONS(3764), + [aux_sym_prefix_op_token1] = ACTIONS(3762), + [aux_sym_infix_op_token1] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3762), + [anon_sym_BANG_EQ] = ACTIONS(3762), + [anon_sym_COLON_EQ] = ACTIONS(3764), + [anon_sym_DOLLAR] = ACTIONS(3762), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3762), + [sym_int] = ACTIONS(3762), + [sym_xint] = ACTIONS(3764), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3764), + [sym__newline] = ACTIONS(3764), }, [2726] = { [sym_xml_doc] = STATE(2726), @@ -333142,244 +338750,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2726), [sym_fsi_directive_decl] = STATE(2726), [sym_preproc_line] = STATE(2726), - [ts_builtin_sym_end] = ACTIONS(4988), - [sym_identifier] = ACTIONS(4990), - [anon_sym_namespace] = ACTIONS(4990), - [anon_sym_module] = ACTIONS(4990), - [anon_sym_open] = ACTIONS(4990), - [anon_sym_LBRACK_LT] = ACTIONS(4988), - [anon_sym_return] = ACTIONS(4990), - [anon_sym_type] = ACTIONS(4990), - [anon_sym_do] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_let] = ACTIONS(4990), - [anon_sym_let_BANG] = ACTIONS(4988), - [aux_sym_access_modifier_token1] = ACTIONS(4988), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_LBRACK_PIPE] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACE_PIPE] = ACTIONS(4988), - [anon_sym_new] = ACTIONS(4990), - [anon_sym_return_BANG] = ACTIONS(4988), - [anon_sym_yield] = ACTIONS(4990), - [anon_sym_yield_BANG] = ACTIONS(4988), - [anon_sym_lazy] = ACTIONS(4990), - [anon_sym_assert] = ACTIONS(4990), - [anon_sym_upcast] = ACTIONS(4990), - [anon_sym_downcast] = ACTIONS(4990), - [anon_sym_LT_AT] = ACTIONS(4990), - [anon_sym_LT_AT_AT] = ACTIONS(4988), - [anon_sym_for] = ACTIONS(4990), - [anon_sym_while] = ACTIONS(4990), - [anon_sym_if] = ACTIONS(4990), - [anon_sym_fun] = ACTIONS(4990), - [anon_sym_try] = ACTIONS(4990), - [anon_sym_match] = ACTIONS(4990), - [anon_sym_match_BANG] = ACTIONS(4988), - [anon_sym_function] = ACTIONS(4990), - [anon_sym_use] = ACTIONS(4990), - [anon_sym_use_BANG] = ACTIONS(4988), - [anon_sym_do_BANG] = ACTIONS(4988), - [anon_sym_begin] = ACTIONS(4990), - [anon_sym_default] = ACTIONS(4990), - [anon_sym_static] = ACTIONS(4990), - [anon_sym_member] = ACTIONS(4990), - [anon_sym_abstract] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_val] = ACTIONS(4990), - [aux_sym_char_token1] = ACTIONS(4988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4990), - [anon_sym_DQUOTE] = ACTIONS(4990), - [anon_sym_AT_DQUOTE] = ACTIONS(4988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4988), - [sym_bool] = ACTIONS(4990), - [sym_unit] = ACTIONS(4988), - [anon_sym_LPAREN_PIPE] = ACTIONS(4990), - [sym_op_identifier] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4990), - [anon_sym_PLUS_DOT] = ACTIONS(4988), - [anon_sym_DASH_DOT] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_AMP_AMP] = ACTIONS(4988), - [anon_sym_TILDE] = ACTIONS(4988), - [aux_sym_prefix_op_token1] = ACTIONS(4988), - [sym_int] = ACTIONS(4990), - [sym_xint] = ACTIONS(4988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4988), - [anon_sym_POUNDload] = ACTIONS(4988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4988), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2727] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5451), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2727), [sym_block_comment] = STATE(2727), [sym_line_comment] = STATE(2727), [sym_compiler_directive_decl] = STATE(2727), [sym_fsi_directive_decl] = STATE(2727), [sym_preproc_line] = STATE(2727), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_COLON_QMARK] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3738), + [anon_sym_AT_AT_GT] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_COLON_GT] = ACTIONS(3740), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_DOT_LBRACK] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_or] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3738), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3738), + [anon_sym_DASH_DOT] = ACTIONS(3738), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3738), + [aux_sym_infix_op_token1] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_COLON_EQ] = ACTIONS(3740), + [anon_sym_DOLLAR] = ACTIONS(3738), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3738), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + [sym__newline] = ACTIONS(3740), }, [2728] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5435), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(7896), + [sym_function_declaration_left] = STATE(6949), + [sym_value_declaration_left] = STATE(6949), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2728), [sym_block_comment] = STATE(2728), [sym_line_comment] = STATE(2728), [sym_compiler_directive_decl] = STATE(2728), [sym_fsi_directive_decl] = STATE(2728), [sym_preproc_line] = STATE(2728), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4997), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -333388,82 +339020,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2729] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(4930), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3528), + [sym_function_declaration_left] = STATE(6979), + [sym_value_declaration_left] = STATE(6979), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2729), [sym_block_comment] = STATE(2729), [sym_line_comment] = STATE(2729), [sym_compiler_directive_decl] = STATE(2729), [sym_fsi_directive_decl] = STATE(2729), [sym_preproc_line] = STATE(2729), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(4999), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -333472,82 +339112,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2730] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5443), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(3533), + [sym__function_or_value_defn_body] = STATE(3486), + [sym_function_declaration_left] = STATE(6979), + [sym_value_declaration_left] = STATE(6979), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2730), [sym_block_comment] = STATE(2730), [sym_line_comment] = STATE(2730), [sym_compiler_directive_decl] = STATE(2730), [sym_fsi_directive_decl] = STATE(2730), [sym_preproc_line] = STATE(2730), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -333556,502 +339204,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2731] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5012), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), [sym_xml_doc] = STATE(2731), [sym_block_comment] = STATE(2731), [sym_line_comment] = STATE(2731), [sym_compiler_directive_decl] = STATE(2731), [sym_fsi_directive_decl] = STATE(2731), [sym_preproc_line] = STATE(2731), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2732] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5442), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2732), [sym_block_comment] = STATE(2732), [sym_line_comment] = STATE(2732), [sym_compiler_directive_decl] = STATE(2732), [sym_fsi_directive_decl] = STATE(2732), [sym_preproc_line] = STATE(2732), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_GT] = ACTIONS(3602), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2733] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5441), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2733), [sym_block_comment] = STATE(2733), [sym_line_comment] = STATE(2733), [sym_compiler_directive_decl] = STATE(2733), [sym_fsi_directive_decl] = STATE(2733), [sym_preproc_line] = STATE(2733), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_let_BANG] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_null] = ACTIONS(3620), + [anon_sym_QMARK] = ACTIONS(3620), + [anon_sym_COLON_QMARK] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LBRACK_PIPE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_LT_AT] = ACTIONS(3620), + [anon_sym_LT_AT_AT] = ACTIONS(3620), + [anon_sym_DOT] = ACTIONS(3620), + [anon_sym_LBRACE_PIPE] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_return_BANG] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_yield_BANG] = ACTIONS(3622), + [anon_sym_lazy] = ACTIONS(3620), + [anon_sym_assert] = ACTIONS(3620), + [anon_sym_upcast] = ACTIONS(3620), + [anon_sym_downcast] = ACTIONS(3620), + [anon_sym_COLON_GT] = ACTIONS(3622), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_fun] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_match] = ACTIONS(3620), + [anon_sym_match_BANG] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_LT_DASH] = ACTIONS(3620), + [anon_sym_DOT_LBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_use] = ACTIONS(3620), + [anon_sym_use_BANG] = ACTIONS(3622), + [anon_sym_do_BANG] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3622), + [anon_sym_begin] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_or] = ACTIONS(3620), + [aux_sym_char_token1] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_AT_DQUOTE] = ACTIONS(3622), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3622), + [sym_bool] = ACTIONS(3620), + [sym_unit] = ACTIONS(3620), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_op_identifier] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS_DOT] = ACTIONS(3620), + [anon_sym_DASH_DOT] = ACTIONS(3620), + [anon_sym_PERCENT] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3622), + [aux_sym_prefix_op_token1] = ACTIONS(3620), + [aux_sym_infix_op_token1] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3620), + [anon_sym_COLON_EQ] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3620), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3620), + [sym_int] = ACTIONS(3620), + [sym_xint] = ACTIONS(3622), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3622), + [sym__newline] = ACTIONS(3622), }, [2734] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5320), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2734), [sym_block_comment] = STATE(2734), [sym_line_comment] = STATE(2734), [sym_compiler_directive_decl] = STATE(2734), [sym_fsi_directive_decl] = STATE(2734), [sym_preproc_line] = STATE(2734), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3718), + [anon_sym_EQ] = ACTIONS(3720), + [anon_sym_COLON] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_let_BANG] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_COMMA] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_COLON_QMARK] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LBRACK_PIPE] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_LT_AT] = ACTIONS(3718), + [anon_sym_LT_AT_AT] = ACTIONS(3718), + [anon_sym_AT_AT_GT] = ACTIONS(3718), + [anon_sym_DOT] = ACTIONS(3718), + [anon_sym_LBRACE_PIPE] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_return_BANG] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_yield_BANG] = ACTIONS(3720), + [anon_sym_lazy] = ACTIONS(3718), + [anon_sym_assert] = ACTIONS(3718), + [anon_sym_upcast] = ACTIONS(3718), + [anon_sym_downcast] = ACTIONS(3718), + [anon_sym_COLON_GT] = ACTIONS(3720), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_fun] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_match] = ACTIONS(3718), + [anon_sym_match_BANG] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_LT_DASH] = ACTIONS(3718), + [anon_sym_DOT_LBRACK] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_use] = ACTIONS(3718), + [anon_sym_use_BANG] = ACTIONS(3720), + [anon_sym_do_BANG] = ACTIONS(3720), + [anon_sym_begin] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_or] = ACTIONS(3718), + [aux_sym_char_token1] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_AT_DQUOTE] = ACTIONS(3720), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3720), + [sym_bool] = ACTIONS(3718), + [sym_unit] = ACTIONS(3718), + [anon_sym_LPAREN_PIPE] = ACTIONS(3718), + [sym_op_identifier] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS_DOT] = ACTIONS(3718), + [anon_sym_DASH_DOT] = ACTIONS(3718), + [anon_sym_PERCENT] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3720), + [aux_sym_prefix_op_token1] = ACTIONS(3718), + [aux_sym_infix_op_token1] = ACTIONS(3718), + [anon_sym_PIPE_PIPE] = ACTIONS(3718), + [anon_sym_BANG_EQ] = ACTIONS(3718), + [anon_sym_COLON_EQ] = ACTIONS(3720), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3718), + [sym_int] = ACTIONS(3718), + [sym_xint] = ACTIONS(3720), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3720), + [sym__newline] = ACTIONS(3720), }, [2735] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3743), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2735), [sym_block_comment] = STATE(2735), [sym_line_comment] = STATE(2735), [sym_compiler_directive_decl] = STATE(2735), [sym_fsi_directive_decl] = STATE(2735), [sym_preproc_line] = STATE(2735), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3618), + [anon_sym_COLON] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_COLON_QMARK] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_AT_GT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3616), + [anon_sym_DOT] = ACTIONS(3616), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_COLON_GT] = ACTIONS(3618), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(3616), + [anon_sym_DOT_LBRACK] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_or] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3616), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3616), + [anon_sym_DASH_DOT] = ACTIONS(3616), + [anon_sym_PERCENT] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3616), + [aux_sym_infix_op_token1] = ACTIONS(3616), + [anon_sym_PIPE_PIPE] = ACTIONS(3616), + [anon_sym_BANG_EQ] = ACTIONS(3616), + [anon_sym_COLON_EQ] = ACTIONS(3618), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3616), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + [sym__newline] = ACTIONS(3618), }, [2736] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5018), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5821), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym__pattern_param] = STATE(2797), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(3944), + [sym_format_string] = STATE(3972), + [sym__string_literal] = STATE(3972), + [sym_string] = STATE(3944), + [sym_verbatim_string] = STATE(3944), + [sym_bytearray] = STATE(3944), + [sym_verbatim_bytearray] = STATE(3944), + [sym_format_triple_quoted_string] = STATE(3973), + [sym_triple_quoted_string] = STATE(3944), + [sym_const] = STATE(3956), + [sym_long_identifier] = STATE(3911), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(3944), + [sym_byte] = STATE(3944), + [sym_int16] = STATE(3944), + [sym_uint16] = STATE(3944), + [sym_int32] = STATE(3944), + [sym_uint32] = STATE(3944), + [sym_nativeint] = STATE(3944), + [sym_unativeint] = STATE(3944), + [sym_int64] = STATE(3944), + [sym_uint64] = STATE(3944), + [sym_ieee32] = STATE(3944), + [sym_ieee64] = STATE(3944), + [sym_bignum] = STATE(3944), + [sym_decimal] = STATE(3944), + [sym_float] = STATE(3759), [sym_xml_doc] = STATE(2736), [sym_block_comment] = STATE(2736), [sym_line_comment] = STATE(2736), [sym_compiler_directive_decl] = STATE(2736), [sym_fsi_directive_decl] = STATE(2736), [sym_preproc_line] = STATE(2736), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_as] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_null] = ACTIONS(4790), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_in] = ACTIONS(4519), + [aux_sym_char_token1] = ACTIONS(4798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4800), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_AT_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4808), + [sym_bool] = ACTIONS(4810), + [sym_unit] = ACTIONS(4812), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4818), + [sym_xint] = ACTIONS(4820), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -334060,88 +339756,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2737] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3740), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2737), [sym_block_comment] = STATE(2737), [sym_line_comment] = STATE(2737), [sym_compiler_directive_decl] = STATE(2737), [sym_fsi_directive_decl] = STATE(2737), [sym_preproc_line] = STATE(2737), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2738] = { [sym_xml_doc] = STATE(2738), @@ -334150,418 +339854,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2738), [sym_fsi_directive_decl] = STATE(2738), [sym_preproc_line] = STATE(2738), - [ts_builtin_sym_end] = ACTIONS(4992), - [sym_identifier] = ACTIONS(4994), - [anon_sym_namespace] = ACTIONS(4994), - [anon_sym_module] = ACTIONS(4994), - [anon_sym_open] = ACTIONS(4994), - [anon_sym_LBRACK_LT] = ACTIONS(4992), - [anon_sym_return] = ACTIONS(4994), - [anon_sym_type] = ACTIONS(4994), - [anon_sym_do] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_let] = ACTIONS(4994), - [anon_sym_let_BANG] = ACTIONS(4992), - [aux_sym_access_modifier_token1] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_LBRACK_PIPE] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACE_PIPE] = ACTIONS(4992), - [anon_sym_new] = ACTIONS(4994), - [anon_sym_return_BANG] = ACTIONS(4992), - [anon_sym_yield] = ACTIONS(4994), - [anon_sym_yield_BANG] = ACTIONS(4992), - [anon_sym_lazy] = ACTIONS(4994), - [anon_sym_assert] = ACTIONS(4994), - [anon_sym_upcast] = ACTIONS(4994), - [anon_sym_downcast] = ACTIONS(4994), - [anon_sym_LT_AT] = ACTIONS(4994), - [anon_sym_LT_AT_AT] = ACTIONS(4992), - [anon_sym_for] = ACTIONS(4994), - [anon_sym_while] = ACTIONS(4994), - [anon_sym_if] = ACTIONS(4994), - [anon_sym_fun] = ACTIONS(4994), - [anon_sym_try] = ACTIONS(4994), - [anon_sym_match] = ACTIONS(4994), - [anon_sym_match_BANG] = ACTIONS(4992), - [anon_sym_function] = ACTIONS(4994), - [anon_sym_use] = ACTIONS(4994), - [anon_sym_use_BANG] = ACTIONS(4992), - [anon_sym_do_BANG] = ACTIONS(4992), - [anon_sym_begin] = ACTIONS(4994), - [anon_sym_default] = ACTIONS(4994), - [anon_sym_static] = ACTIONS(4994), - [anon_sym_member] = ACTIONS(4994), - [anon_sym_abstract] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_val] = ACTIONS(4994), - [aux_sym_char_token1] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(4994), - [anon_sym_AT_DQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4992), - [sym_bool] = ACTIONS(4994), - [sym_unit] = ACTIONS(4992), - [anon_sym_LPAREN_PIPE] = ACTIONS(4994), - [sym_op_identifier] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4994), - [anon_sym_PLUS_DOT] = ACTIONS(4992), - [anon_sym_DASH_DOT] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_AMP_AMP] = ACTIONS(4992), - [anon_sym_TILDE] = ACTIONS(4992), - [aux_sym_prefix_op_token1] = ACTIONS(4992), - [sym_int] = ACTIONS(4994), - [sym_xint] = ACTIONS(4992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4992), - [anon_sym_POUNDload] = ACTIONS(4992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4992), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_GT] = ACTIONS(3581), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2739] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3708), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2739), [sym_block_comment] = STATE(2739), [sym_line_comment] = STATE(2739), [sym_compiler_directive_decl] = STATE(2739), [sym_fsi_directive_decl] = STATE(2739), [sym_preproc_line] = STATE(2739), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_and] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [aux_sym_access_modifier_token1] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_member] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_override] = ACTIONS(3032), + [anon_sym_val] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [2740] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3739), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2740), [sym_block_comment] = STATE(2740), [sym_line_comment] = STATE(2740), [sym_compiler_directive_decl] = STATE(2740), [sym_fsi_directive_decl] = STATE(2740), [sym_preproc_line] = STATE(2740), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3604), + [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(3602), + [anon_sym_COLON_QMARK] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3604), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_AT_GT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3602), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_COLON_GT] = ACTIONS(3604), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_LT_DASH] = ACTIONS(3602), + [anon_sym_DOT_LBRACK] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [anon_sym_LPAREN2] = ACTIONS(3604), + [anon_sym_or] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3602), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3602), + [anon_sym_DASH_DOT] = ACTIONS(3602), + [anon_sym_PERCENT] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3602), + [aux_sym_infix_op_token1] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_BANG_EQ] = ACTIONS(3602), + [anon_sym_COLON_EQ] = ACTIONS(3604), + [anon_sym_DOLLAR] = ACTIONS(3602), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3602), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + [sym__newline] = ACTIONS(3604), }, [2741] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3738), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2741), [sym_block_comment] = STATE(2741), [sym_line_comment] = STATE(2741), [sym_compiler_directive_decl] = STATE(2741), [sym_fsi_directive_decl] = STATE(2741), [sym_preproc_line] = STATE(2741), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_GT] = ACTIONS(3585), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2742] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5389), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2742), [sym_block_comment] = STATE(2742), [sym_line_comment] = STATE(2742), [sym_compiler_directive_decl] = STATE(2742), [sym_fsi_directive_decl] = STATE(2742), [sym_preproc_line] = STATE(2742), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(3600), + [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_COLON_QMARK] = ACTIONS(3598), + [anon_sym_COLON_COLON] = ACTIONS(3600), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_AT_GT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3598), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_COLON_GT] = ACTIONS(3600), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_LT_DASH] = ACTIONS(3598), + [anon_sym_DOT_LBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(3600), + [anon_sym_or] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3598), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3598), + [anon_sym_DASH_DOT] = ACTIONS(3598), + [anon_sym_PERCENT] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3598), + [aux_sym_infix_op_token1] = ACTIONS(3598), + [anon_sym_PIPE_PIPE] = ACTIONS(3598), + [anon_sym_BANG_EQ] = ACTIONS(3598), + [anon_sym_COLON_EQ] = ACTIONS(3600), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3598), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + [sym__newline] = ACTIONS(3600), }, [2743] = { [sym_xml_doc] = STATE(2743), @@ -334570,166 +340314,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2743), [sym_fsi_directive_decl] = STATE(2743), [sym_preproc_line] = STATE(2743), - [ts_builtin_sym_end] = ACTIONS(4996), - [sym_identifier] = ACTIONS(4998), - [anon_sym_namespace] = ACTIONS(4998), - [anon_sym_module] = ACTIONS(4998), - [anon_sym_open] = ACTIONS(4998), - [anon_sym_LBRACK_LT] = ACTIONS(4996), - [anon_sym_return] = ACTIONS(4998), - [anon_sym_type] = ACTIONS(4998), - [anon_sym_do] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_let] = ACTIONS(4998), - [anon_sym_let_BANG] = ACTIONS(4996), - [aux_sym_access_modifier_token1] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_null] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACE_PIPE] = ACTIONS(4996), - [anon_sym_new] = ACTIONS(4998), - [anon_sym_return_BANG] = ACTIONS(4996), - [anon_sym_yield] = ACTIONS(4998), - [anon_sym_yield_BANG] = ACTIONS(4996), - [anon_sym_lazy] = ACTIONS(4998), - [anon_sym_assert] = ACTIONS(4998), - [anon_sym_upcast] = ACTIONS(4998), - [anon_sym_downcast] = ACTIONS(4998), - [anon_sym_LT_AT] = ACTIONS(4998), - [anon_sym_LT_AT_AT] = ACTIONS(4996), - [anon_sym_for] = ACTIONS(4998), - [anon_sym_while] = ACTIONS(4998), - [anon_sym_if] = ACTIONS(4998), - [anon_sym_fun] = ACTIONS(4998), - [anon_sym_try] = ACTIONS(4998), - [anon_sym_match] = ACTIONS(4998), - [anon_sym_match_BANG] = ACTIONS(4996), - [anon_sym_function] = ACTIONS(4998), - [anon_sym_use] = ACTIONS(4998), - [anon_sym_use_BANG] = ACTIONS(4996), - [anon_sym_do_BANG] = ACTIONS(4996), - [anon_sym_begin] = ACTIONS(4998), - [anon_sym_default] = ACTIONS(4998), - [anon_sym_static] = ACTIONS(4998), - [anon_sym_member] = ACTIONS(4998), - [anon_sym_abstract] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_val] = ACTIONS(4998), - [aux_sym_char_token1] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4998), - [anon_sym_DQUOTE] = ACTIONS(4998), - [anon_sym_AT_DQUOTE] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4996), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4996), - [sym_bool] = ACTIONS(4998), - [sym_unit] = ACTIONS(4996), - [anon_sym_LPAREN_PIPE] = ACTIONS(4998), - [sym_op_identifier] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_PLUS_DOT] = ACTIONS(4996), - [anon_sym_DASH_DOT] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_AMP_AMP] = ACTIONS(4996), - [anon_sym_TILDE] = ACTIONS(4996), - [aux_sym_prefix_op_token1] = ACTIONS(4996), - [sym_int] = ACTIONS(4998), - [sym_xint] = ACTIONS(4996), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4996), - [anon_sym_POUNDload] = ACTIONS(4996), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4996), + [sym_identifier] = ACTIONS(3794), + [anon_sym_EQ] = ACTIONS(3796), + [anon_sym_COLON] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_COLON_QMARK] = ACTIONS(3794), + [anon_sym_COLON_COLON] = ACTIONS(3796), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3794), + [anon_sym_DOT] = ACTIONS(3794), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_COLON_GT] = ACTIONS(3796), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3796), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_LT_DASH] = ACTIONS(3794), + [anon_sym_DOT_LBRACK] = ACTIONS(3796), + [anon_sym_LT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_DOT_DOT] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [anon_sym_LPAREN2] = ACTIONS(3796), + [anon_sym_or] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3794), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3794), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3794), + [anon_sym_DASH_DOT] = ACTIONS(3794), + [anon_sym_PERCENT] = ACTIONS(3794), + [anon_sym_AMP_AMP] = ACTIONS(3794), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3794), + [aux_sym_infix_op_token1] = ACTIONS(3794), + [anon_sym_PIPE_PIPE] = ACTIONS(3794), + [anon_sym_BANG_EQ] = ACTIONS(3794), + [anon_sym_COLON_EQ] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3794), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + [sym__newline] = ACTIONS(3796), }, [2744] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5432), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2744), [sym_block_comment] = STATE(2744), [sym_line_comment] = STATE(2744), [sym_compiler_directive_decl] = STATE(2744), [sym_fsi_directive_decl] = STATE(2744), [sym_preproc_line] = STATE(2744), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5000), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3730), + [anon_sym_EQ] = ACTIONS(3732), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_let] = ACTIONS(3730), + [anon_sym_let_BANG] = ACTIONS(3732), + [anon_sym_LPAREN] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(3732), + [anon_sym_null] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_LBRACK_PIPE] = ACTIONS(3732), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_LT_AT] = ACTIONS(3730), + [anon_sym_LT_AT_AT] = ACTIONS(3730), + [anon_sym_DOT] = ACTIONS(3730), + [anon_sym_LBRACE_PIPE] = ACTIONS(3732), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_return_BANG] = ACTIONS(3732), + [anon_sym_yield] = ACTIONS(3730), + [anon_sym_yield_BANG] = ACTIONS(3732), + [anon_sym_lazy] = ACTIONS(3730), + [anon_sym_assert] = ACTIONS(3730), + [anon_sym_upcast] = ACTIONS(3730), + [anon_sym_downcast] = ACTIONS(3730), + [anon_sym_COLON_GT] = ACTIONS(3732), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3732), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_fun] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_match] = ACTIONS(3730), + [anon_sym_match_BANG] = ACTIONS(3732), + [anon_sym_function] = ACTIONS(3730), + [anon_sym_LT_DASH] = ACTIONS(3730), + [anon_sym_DOT_LBRACK] = ACTIONS(3732), + [anon_sym_LT] = ACTIONS(3732), + [anon_sym_use] = ACTIONS(3730), + [anon_sym_use_BANG] = ACTIONS(3732), + [anon_sym_do_BANG] = ACTIONS(3732), + [anon_sym_begin] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_or] = ACTIONS(3730), + [aux_sym_char_token1] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_AT_DQUOTE] = ACTIONS(3732), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3732), + [sym_bool] = ACTIONS(3730), + [sym_unit] = ACTIONS(3730), + [anon_sym_LPAREN_PIPE] = ACTIONS(3730), + [sym_op_identifier] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS_DOT] = ACTIONS(3730), + [anon_sym_DASH_DOT] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_AMP_AMP] = ACTIONS(3730), + [anon_sym_TILDE] = ACTIONS(3732), + [aux_sym_prefix_op_token1] = ACTIONS(3730), + [aux_sym_infix_op_token1] = ACTIONS(3730), + [anon_sym_PIPE_PIPE] = ACTIONS(3730), + [anon_sym_BANG_EQ] = ACTIONS(3730), + [anon_sym_COLON_EQ] = ACTIONS(3732), + [anon_sym_DOLLAR] = ACTIONS(3730), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3730), + [sym_int] = ACTIONS(3730), + [sym_xint] = ACTIONS(3732), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3732), + [anon_sym_POUNDendif] = ACTIONS(3732), + [sym__newline] = ACTIONS(3732), }, [2745] = { [sym_xml_doc] = STATE(2745), @@ -334738,82 +340498,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2745), [sym_fsi_directive_decl] = STATE(2745), [sym_preproc_line] = STATE(2745), - [ts_builtin_sym_end] = ACTIONS(5002), - [sym_identifier] = ACTIONS(5004), - [anon_sym_namespace] = ACTIONS(5004), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_LBRACK_LT] = ACTIONS(5002), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_type] = ACTIONS(5004), - [anon_sym_do] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_let] = ACTIONS(5004), - [anon_sym_let_BANG] = ACTIONS(5002), - [aux_sym_access_modifier_token1] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_LBRACK_PIPE] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5004), - [anon_sym_LBRACE_PIPE] = ACTIONS(5002), - [anon_sym_new] = ACTIONS(5004), - [anon_sym_return_BANG] = ACTIONS(5002), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_yield_BANG] = ACTIONS(5002), - [anon_sym_lazy] = ACTIONS(5004), - [anon_sym_assert] = ACTIONS(5004), - [anon_sym_upcast] = ACTIONS(5004), - [anon_sym_downcast] = ACTIONS(5004), - [anon_sym_LT_AT] = ACTIONS(5004), - [anon_sym_LT_AT_AT] = ACTIONS(5002), - [anon_sym_for] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_match] = ACTIONS(5004), - [anon_sym_match_BANG] = ACTIONS(5002), - [anon_sym_function] = ACTIONS(5004), - [anon_sym_use] = ACTIONS(5004), - [anon_sym_use_BANG] = ACTIONS(5002), - [anon_sym_do_BANG] = ACTIONS(5002), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_default] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_member] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_val] = ACTIONS(5004), - [aux_sym_char_token1] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), - [anon_sym_DQUOTE] = ACTIONS(5004), - [anon_sym_AT_DQUOTE] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5002), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5002), - [sym_bool] = ACTIONS(5004), - [sym_unit] = ACTIONS(5002), - [anon_sym_LPAREN_PIPE] = ACTIONS(5004), - [sym_op_identifier] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS_DOT] = ACTIONS(5002), - [anon_sym_DASH_DOT] = ACTIONS(5002), - [anon_sym_PERCENT] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [aux_sym_prefix_op_token1] = ACTIONS(5002), - [sym_int] = ACTIONS(5004), - [sym_xint] = ACTIONS(5002), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5002), - [anon_sym_POUNDload] = ACTIONS(5002), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5002), + [sym_identifier] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_QMARK] = ACTIONS(3774), + [anon_sym_COLON_QMARK] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_AT_GT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_COLON_GT] = ACTIONS(3776), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3776), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_LT_DASH] = ACTIONS(3774), + [anon_sym_DOT_LBRACK] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_or] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3774), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3774), + [anon_sym_DASH_DOT] = ACTIONS(3774), + [anon_sym_PERCENT] = ACTIONS(3774), + [anon_sym_AMP_AMP] = ACTIONS(3774), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3774), + [aux_sym_infix_op_token1] = ACTIONS(3774), + [anon_sym_PIPE_PIPE] = ACTIONS(3774), + [anon_sym_BANG_EQ] = ACTIONS(3774), + [anon_sym_COLON_EQ] = ACTIONS(3776), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3774), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + [sym__newline] = ACTIONS(3776), }, [2746] = { [sym_xml_doc] = STATE(2746), @@ -334822,502 +340590,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2746), [sym_fsi_directive_decl] = STATE(2746), [sym_preproc_line] = STATE(2746), - [sym_identifier] = ACTIONS(4904), - [anon_sym_module] = ACTIONS(4904), - [anon_sym_open] = ACTIONS(4904), - [anon_sym_LBRACK_LT] = ACTIONS(4902), - [anon_sym_return] = ACTIONS(4904), - [anon_sym_type] = ACTIONS(4904), - [anon_sym_do] = ACTIONS(4904), - [anon_sym_and] = ACTIONS(4904), - [anon_sym_let] = ACTIONS(4904), - [anon_sym_let_BANG] = ACTIONS(4902), - [aux_sym_access_modifier_token1] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4904), - [anon_sym_null] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(4904), - [anon_sym_LBRACK_PIPE] = ACTIONS(4902), - [anon_sym_LBRACE] = ACTIONS(4904), - [anon_sym_LBRACE_PIPE] = ACTIONS(4902), - [anon_sym_with] = ACTIONS(5006), - [anon_sym_new] = ACTIONS(4904), - [anon_sym_return_BANG] = ACTIONS(4902), - [anon_sym_yield] = ACTIONS(4904), - [anon_sym_yield_BANG] = ACTIONS(4902), - [anon_sym_lazy] = ACTIONS(4904), - [anon_sym_assert] = ACTIONS(4904), - [anon_sym_upcast] = ACTIONS(4904), - [anon_sym_downcast] = ACTIONS(4904), - [anon_sym_LT_AT] = ACTIONS(4904), - [anon_sym_LT_AT_AT] = ACTIONS(4902), - [anon_sym_for] = ACTIONS(4904), - [anon_sym_while] = ACTIONS(4904), - [anon_sym_if] = ACTIONS(4904), - [anon_sym_fun] = ACTIONS(4904), - [anon_sym_try] = ACTIONS(4904), - [anon_sym_match] = ACTIONS(4904), - [anon_sym_match_BANG] = ACTIONS(4902), - [anon_sym_function] = ACTIONS(4904), - [anon_sym_use] = ACTIONS(4904), - [anon_sym_use_BANG] = ACTIONS(4902), - [anon_sym_do_BANG] = ACTIONS(4902), - [anon_sym_begin] = ACTIONS(4904), - [anon_sym_default] = ACTIONS(4904), - [anon_sym_static] = ACTIONS(4904), - [anon_sym_member] = ACTIONS(4904), - [anon_sym_abstract] = ACTIONS(4904), - [anon_sym_override] = ACTIONS(4904), - [anon_sym_val] = ACTIONS(4904), - [aux_sym_char_token1] = ACTIONS(4902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4904), - [anon_sym_DQUOTE] = ACTIONS(4904), - [anon_sym_AT_DQUOTE] = ACTIONS(4902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4902), - [sym_bool] = ACTIONS(4904), - [sym_unit] = ACTIONS(4902), - [anon_sym_LPAREN_PIPE] = ACTIONS(4904), - [sym_op_identifier] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_PLUS_DOT] = ACTIONS(4902), - [anon_sym_DASH_DOT] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_TILDE] = ACTIONS(4902), - [aux_sym_prefix_op_token1] = ACTIONS(4902), - [sym_int] = ACTIONS(4904), - [sym_xint] = ACTIONS(4902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4902), - [anon_sym_POUNDload] = ACTIONS(4902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4902), - [sym__dedent] = ACTIONS(4902), + [sym_identifier] = ACTIONS(3581), + [anon_sym_EQ] = ACTIONS(3583), + [anon_sym_COLON] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_QMARK] = ACTIONS(3581), + [anon_sym_COLON_QMARK] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_AT_GT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3581), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_COLON_GT] = ACTIONS(3583), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(3581), + [anon_sym_DOT_LBRACK] = ACTIONS(3583), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(3583), + [anon_sym_or] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3581), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3581), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3581), + [anon_sym_DASH_DOT] = ACTIONS(3581), + [anon_sym_PERCENT] = ACTIONS(3581), + [anon_sym_AMP_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3581), + [aux_sym_infix_op_token1] = ACTIONS(3581), + [anon_sym_PIPE_PIPE] = ACTIONS(3581), + [anon_sym_BANG_EQ] = ACTIONS(3581), + [anon_sym_COLON_EQ] = ACTIONS(3583), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3581), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + [sym__newline] = ACTIONS(3583), }, [2747] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5427), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2747), [sym_block_comment] = STATE(2747), [sym_line_comment] = STATE(2747), [sym_compiler_directive_decl] = STATE(2747), [sym_fsi_directive_decl] = STATE(2747), [sym_preproc_line] = STATE(2747), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5008), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3585), + [anon_sym_EQ] = ACTIONS(3587), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_QMARK] = ACTIONS(3585), + [anon_sym_COLON_QMARK] = ACTIONS(3585), + [anon_sym_COLON_COLON] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_AT_GT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3585), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_COLON_GT] = ACTIONS(3587), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_LT_DASH] = ACTIONS(3585), + [anon_sym_DOT_LBRACK] = ACTIONS(3587), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [anon_sym_LPAREN2] = ACTIONS(3587), + [anon_sym_or] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3585), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3585), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3585), + [anon_sym_DASH_DOT] = ACTIONS(3585), + [anon_sym_PERCENT] = ACTIONS(3585), + [anon_sym_AMP_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3585), + [aux_sym_infix_op_token1] = ACTIONS(3585), + [anon_sym_PIPE_PIPE] = ACTIONS(3585), + [anon_sym_BANG_EQ] = ACTIONS(3585), + [anon_sym_COLON_EQ] = ACTIONS(3587), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3585), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + [sym__newline] = ACTIONS(3587), }, [2748] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5399), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2748), [sym_block_comment] = STATE(2748), [sym_line_comment] = STATE(2748), [sym_compiler_directive_decl] = STATE(2748), [sym_fsi_directive_decl] = STATE(2748), [sym_preproc_line] = STATE(2748), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5010), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3910), + [anon_sym_EQ] = ACTIONS(3912), + [anon_sym_COLON] = ACTIONS(3910), + [anon_sym_return] = ACTIONS(3910), + [anon_sym_do] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_let_BANG] = ACTIONS(3912), + [anon_sym_LPAREN] = ACTIONS(3910), + [anon_sym_COMMA] = ACTIONS(3912), + [anon_sym_null] = ACTIONS(3910), + [anon_sym_QMARK] = ACTIONS(3910), + [anon_sym_COLON_QMARK] = ACTIONS(3910), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_AMP] = ACTIONS(3910), + [anon_sym_LBRACK] = ACTIONS(3910), + [anon_sym_LBRACK_PIPE] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3910), + [anon_sym_LT_AT] = ACTIONS(3910), + [anon_sym_LT_AT_AT] = ACTIONS(3910), + [anon_sym_DOT] = ACTIONS(3910), + [anon_sym_LBRACE_PIPE] = ACTIONS(3912), + [anon_sym_new] = ACTIONS(3910), + [anon_sym_return_BANG] = ACTIONS(3912), + [anon_sym_yield] = ACTIONS(3910), + [anon_sym_yield_BANG] = ACTIONS(3912), + [anon_sym_lazy] = ACTIONS(3910), + [anon_sym_assert] = ACTIONS(3910), + [anon_sym_upcast] = ACTIONS(3910), + [anon_sym_downcast] = ACTIONS(3910), + [anon_sym_COLON_GT] = ACTIONS(3912), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3912), + [anon_sym_for] = ACTIONS(3910), + [anon_sym_while] = ACTIONS(3910), + [anon_sym_if] = ACTIONS(3910), + [anon_sym_fun] = ACTIONS(3910), + [anon_sym_try] = ACTIONS(3910), + [anon_sym_match] = ACTIONS(3910), + [anon_sym_match_BANG] = ACTIONS(3912), + [anon_sym_function] = ACTIONS(3910), + [anon_sym_LT_DASH] = ACTIONS(3910), + [anon_sym_DOT_LBRACK] = ACTIONS(3912), + [anon_sym_LT] = ACTIONS(3912), + [anon_sym_GT] = ACTIONS(3910), + [anon_sym_use] = ACTIONS(3910), + [anon_sym_use_BANG] = ACTIONS(3912), + [anon_sym_do_BANG] = ACTIONS(3912), + [anon_sym_begin] = ACTIONS(3910), + [anon_sym_LPAREN2] = ACTIONS(3912), + [anon_sym_or] = ACTIONS(3910), + [aux_sym_char_token1] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3910), + [anon_sym_AT_DQUOTE] = ACTIONS(3912), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3912), + [sym_bool] = ACTIONS(3910), + [sym_unit] = ACTIONS(3910), + [anon_sym_LPAREN_PIPE] = ACTIONS(3910), + [sym_op_identifier] = ACTIONS(3910), + [anon_sym_PLUS] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3910), + [anon_sym_PLUS_DOT] = ACTIONS(3910), + [anon_sym_DASH_DOT] = ACTIONS(3910), + [anon_sym_PERCENT] = ACTIONS(3910), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3912), + [aux_sym_prefix_op_token1] = ACTIONS(3910), + [aux_sym_infix_op_token1] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3910), + [anon_sym_BANG_EQ] = ACTIONS(3910), + [anon_sym_COLON_EQ] = ACTIONS(3912), + [anon_sym_DOLLAR] = ACTIONS(3910), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3910), + [sym_int] = ACTIONS(3910), + [sym_xint] = ACTIONS(3912), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3912), + [sym__newline] = ACTIONS(3912), }, [2749] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5260), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2749), [sym_block_comment] = STATE(2749), [sym_line_comment] = STATE(2749), [sym_compiler_directive_decl] = STATE(2749), [sym_fsi_directive_decl] = STATE(2749), [sym_preproc_line] = STATE(2749), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_let] = ACTIONS(3921), + [anon_sym_let_BANG] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3923), + [anon_sym_null] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_COLON_QMARK] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_LBRACK_PIPE] = ACTIONS(3923), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_LT_AT] = ACTIONS(3921), + [anon_sym_LT_AT_AT] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE_PIPE] = ACTIONS(3923), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_return_BANG] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3921), + [anon_sym_yield_BANG] = ACTIONS(3923), + [anon_sym_lazy] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_upcast] = ACTIONS(3921), + [anon_sym_downcast] = ACTIONS(3921), + [anon_sym_COLON_GT] = ACTIONS(3923), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_fun] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_match_BANG] = ACTIONS(3923), + [anon_sym_function] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [anon_sym_DOT_LBRACK] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_use] = ACTIONS(3921), + [anon_sym_use_BANG] = ACTIONS(3923), + [anon_sym_do_BANG] = ACTIONS(3923), + [anon_sym_begin] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_or] = ACTIONS(3921), + [aux_sym_char_token1] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_AT_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3923), + [sym_bool] = ACTIONS(3921), + [sym_unit] = ACTIONS(3921), + [anon_sym_LPAREN_PIPE] = ACTIONS(3921), + [sym_op_identifier] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS_DOT] = ACTIONS(3921), + [anon_sym_DASH_DOT] = ACTIONS(3921), + [anon_sym_PERCENT] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3923), + [aux_sym_prefix_op_token1] = ACTIONS(3921), + [aux_sym_infix_op_token1] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_COLON_EQ] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3921), + [sym_int] = ACTIONS(3921), + [sym_xint] = ACTIONS(3923), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3923), + [sym__newline] = ACTIONS(3923), }, [2750] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5298), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2750), [sym_block_comment] = STATE(2750), [sym_line_comment] = STATE(2750), [sym_compiler_directive_decl] = STATE(2750), [sym_fsi_directive_decl] = STATE(2750), [sym_preproc_line] = STATE(2750), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3705), + [anon_sym_EQ] = ACTIONS(3707), + [anon_sym_COLON] = ACTIONS(3705), + [anon_sym_return] = ACTIONS(3705), + [anon_sym_do] = ACTIONS(3705), + [anon_sym_let] = ACTIONS(3705), + [anon_sym_let_BANG] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_COMMA] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3705), + [anon_sym_QMARK] = ACTIONS(3705), + [anon_sym_COLON_QMARK] = ACTIONS(3705), + [anon_sym_COLON_COLON] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_LBRACK_PIPE] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_LT_AT] = ACTIONS(3705), + [anon_sym_AT_GT] = ACTIONS(3705), + [anon_sym_LT_AT_AT] = ACTIONS(3705), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_LBRACE_PIPE] = ACTIONS(3707), + [anon_sym_new] = ACTIONS(3705), + [anon_sym_return_BANG] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3705), + [anon_sym_yield_BANG] = ACTIONS(3707), + [anon_sym_lazy] = ACTIONS(3705), + [anon_sym_assert] = ACTIONS(3705), + [anon_sym_upcast] = ACTIONS(3705), + [anon_sym_downcast] = ACTIONS(3705), + [anon_sym_COLON_GT] = ACTIONS(3707), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3705), + [anon_sym_while] = ACTIONS(3705), + [anon_sym_if] = ACTIONS(3705), + [anon_sym_fun] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3705), + [anon_sym_match] = ACTIONS(3705), + [anon_sym_match_BANG] = ACTIONS(3707), + [anon_sym_function] = ACTIONS(3705), + [anon_sym_LT_DASH] = ACTIONS(3705), + [anon_sym_DOT_LBRACK] = ACTIONS(3707), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_use] = ACTIONS(3705), + [anon_sym_use_BANG] = ACTIONS(3707), + [anon_sym_do_BANG] = ACTIONS(3707), + [anon_sym_begin] = ACTIONS(3705), + [anon_sym_LPAREN2] = ACTIONS(3707), + [anon_sym_or] = ACTIONS(3705), + [aux_sym_char_token1] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [anon_sym_AT_DQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3707), + [sym_bool] = ACTIONS(3705), + [sym_unit] = ACTIONS(3705), + [anon_sym_LPAREN_PIPE] = ACTIONS(3705), + [sym_op_identifier] = ACTIONS(3705), + [anon_sym_PLUS] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_PLUS_DOT] = ACTIONS(3705), + [anon_sym_DASH_DOT] = ACTIONS(3705), + [anon_sym_PERCENT] = ACTIONS(3705), + [anon_sym_AMP_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3707), + [aux_sym_prefix_op_token1] = ACTIONS(3705), + [aux_sym_infix_op_token1] = ACTIONS(3705), + [anon_sym_PIPE_PIPE] = ACTIONS(3705), + [anon_sym_BANG_EQ] = ACTIONS(3705), + [anon_sym_COLON_EQ] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3705), + [sym_int] = ACTIONS(3705), + [sym_xint] = ACTIONS(3707), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3707), + [sym__newline] = ACTIONS(3707), }, [2751] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5387), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2751), [sym_block_comment] = STATE(2751), [sym_line_comment] = STATE(2751), [sym_compiler_directive_decl] = STATE(2751), [sym_fsi_directive_decl] = STATE(2751), [sym_preproc_line] = STATE(2751), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3624), + [anon_sym_EQ] = ACTIONS(3626), + [anon_sym_COLON] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_let_BANG] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_COMMA] = ACTIONS(3626), + [anon_sym_null] = ACTIONS(3624), + [anon_sym_QMARK] = ACTIONS(3624), + [anon_sym_COLON_QMARK] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LBRACK_PIPE] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_LT_AT] = ACTIONS(3624), + [anon_sym_LT_AT_AT] = ACTIONS(3624), + [anon_sym_DOT] = ACTIONS(3624), + [anon_sym_LBRACE_PIPE] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_return_BANG] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_yield_BANG] = ACTIONS(3626), + [anon_sym_lazy] = ACTIONS(3624), + [anon_sym_assert] = ACTIONS(3624), + [anon_sym_upcast] = ACTIONS(3624), + [anon_sym_downcast] = ACTIONS(3624), + [anon_sym_COLON_GT] = ACTIONS(3626), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_fun] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_match] = ACTIONS(3624), + [anon_sym_match_BANG] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_LT_DASH] = ACTIONS(3624), + [anon_sym_DOT_LBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_use] = ACTIONS(3624), + [anon_sym_use_BANG] = ACTIONS(3626), + [anon_sym_do_BANG] = ACTIONS(3626), + [anon_sym_DOT_DOT] = ACTIONS(3626), + [anon_sym_begin] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_or] = ACTIONS(3624), + [aux_sym_char_token1] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_AT_DQUOTE] = ACTIONS(3626), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3626), + [sym_bool] = ACTIONS(3624), + [sym_unit] = ACTIONS(3624), + [anon_sym_LPAREN_PIPE] = ACTIONS(3624), + [sym_op_identifier] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS_DOT] = ACTIONS(3624), + [anon_sym_DASH_DOT] = ACTIONS(3624), + [anon_sym_PERCENT] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3626), + [aux_sym_prefix_op_token1] = ACTIONS(3624), + [aux_sym_infix_op_token1] = ACTIONS(3624), + [anon_sym_PIPE_PIPE] = ACTIONS(3624), + [anon_sym_BANG_EQ] = ACTIONS(3624), + [anon_sym_COLON_EQ] = ACTIONS(3626), + [anon_sym_DOLLAR] = ACTIONS(3624), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3624), + [sym_int] = ACTIONS(3624), + [sym_xint] = ACTIONS(3626), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3626), + [sym__newline] = ACTIONS(3626), }, [2752] = { [sym_xml_doc] = STATE(2752), @@ -335326,244 +341142,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2752), [sym_fsi_directive_decl] = STATE(2752), [sym_preproc_line] = STATE(2752), - [ts_builtin_sym_end] = ACTIONS(5012), - [sym_identifier] = ACTIONS(5014), - [anon_sym_namespace] = ACTIONS(5014), - [anon_sym_module] = ACTIONS(5014), - [anon_sym_open] = ACTIONS(5014), - [anon_sym_LBRACK_LT] = ACTIONS(5012), - [anon_sym_return] = ACTIONS(5014), - [anon_sym_type] = ACTIONS(5014), - [anon_sym_do] = ACTIONS(5014), - [anon_sym_and] = ACTIONS(5014), - [anon_sym_let] = ACTIONS(5014), - [anon_sym_let_BANG] = ACTIONS(5012), - [aux_sym_access_modifier_token1] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_null] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_LBRACK_PIPE] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACE_PIPE] = ACTIONS(5012), - [anon_sym_new] = ACTIONS(5014), - [anon_sym_return_BANG] = ACTIONS(5012), - [anon_sym_yield] = ACTIONS(5014), - [anon_sym_yield_BANG] = ACTIONS(5012), - [anon_sym_lazy] = ACTIONS(5014), - [anon_sym_assert] = ACTIONS(5014), - [anon_sym_upcast] = ACTIONS(5014), - [anon_sym_downcast] = ACTIONS(5014), - [anon_sym_LT_AT] = ACTIONS(5014), - [anon_sym_LT_AT_AT] = ACTIONS(5012), - [anon_sym_for] = ACTIONS(5014), - [anon_sym_while] = ACTIONS(5014), - [anon_sym_if] = ACTIONS(5014), - [anon_sym_fun] = ACTIONS(5014), - [anon_sym_try] = ACTIONS(5014), - [anon_sym_match] = ACTIONS(5014), - [anon_sym_match_BANG] = ACTIONS(5012), - [anon_sym_function] = ACTIONS(5014), - [anon_sym_use] = ACTIONS(5014), - [anon_sym_use_BANG] = ACTIONS(5012), - [anon_sym_do_BANG] = ACTIONS(5012), - [anon_sym_begin] = ACTIONS(5014), - [anon_sym_default] = ACTIONS(5014), - [anon_sym_static] = ACTIONS(5014), - [anon_sym_member] = ACTIONS(5014), - [anon_sym_abstract] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), - [anon_sym_val] = ACTIONS(5014), - [aux_sym_char_token1] = ACTIONS(5012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5014), - [anon_sym_DQUOTE] = ACTIONS(5014), - [anon_sym_AT_DQUOTE] = ACTIONS(5012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5012), - [sym_bool] = ACTIONS(5014), - [sym_unit] = ACTIONS(5012), - [anon_sym_LPAREN_PIPE] = ACTIONS(5014), - [sym_op_identifier] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_PLUS_DOT] = ACTIONS(5012), - [anon_sym_DASH_DOT] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_TILDE] = ACTIONS(5012), - [aux_sym_prefix_op_token1] = ACTIONS(5012), - [sym_int] = ACTIONS(5014), - [sym_xint] = ACTIONS(5012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5012), - [anon_sym_POUNDload] = ACTIONS(5012), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5012), + [sym_identifier] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_COLON] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_do] = ACTIONS(3929), + [anon_sym_let] = ACTIONS(3929), + [anon_sym_let_BANG] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3931), + [anon_sym_null] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_COLON_QMARK] = ACTIONS(3929), + [anon_sym_COLON_COLON] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACK_PIPE] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LT_AT] = ACTIONS(3929), + [anon_sym_LT_AT_AT] = ACTIONS(3929), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3929), + [anon_sym_return_BANG] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3929), + [anon_sym_yield_BANG] = ACTIONS(3931), + [anon_sym_lazy] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_upcast] = ACTIONS(3929), + [anon_sym_downcast] = ACTIONS(3929), + [anon_sym_COLON_GT] = ACTIONS(3931), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_while] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_fun] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_match_BANG] = ACTIONS(3931), + [anon_sym_function] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [anon_sym_DOT_LBRACK] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3929), + [anon_sym_use] = ACTIONS(3929), + [anon_sym_use_BANG] = ACTIONS(3931), + [anon_sym_do_BANG] = ACTIONS(3931), + [anon_sym_begin] = ACTIONS(3929), + [anon_sym_LPAREN2] = ACTIONS(3931), + [anon_sym_or] = ACTIONS(3929), + [aux_sym_char_token1] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_AT_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3931), + [sym_bool] = ACTIONS(3929), + [sym_unit] = ACTIONS(3929), + [anon_sym_LPAREN_PIPE] = ACTIONS(3929), + [sym_op_identifier] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_PLUS_DOT] = ACTIONS(3929), + [anon_sym_DASH_DOT] = ACTIONS(3929), + [anon_sym_PERCENT] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3931), + [aux_sym_prefix_op_token1] = ACTIONS(3929), + [aux_sym_infix_op_token1] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_COLON_EQ] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3929), + [sym_int] = ACTIONS(3929), + [sym_xint] = ACTIONS(3931), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3931), + [sym__newline] = ACTIONS(3931), }, [2753] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5425), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2753), [sym_block_comment] = STATE(2753), [sym_line_comment] = STATE(2753), [sym_compiler_directive_decl] = STATE(2753), [sym_fsi_directive_decl] = STATE(2753), [sym_preproc_line] = STATE(2753), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2754] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5422), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7174), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2754), [sym_block_comment] = STATE(2754), [sym_line_comment] = STATE(2754), [sym_compiler_directive_decl] = STATE(2754), [sym_fsi_directive_decl] = STATE(2754), [sym_preproc_line] = STATE(2754), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -335578,832 +341418,912 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2755), [sym_fsi_directive_decl] = STATE(2755), [sym_preproc_line] = STATE(2755), - [sym_identifier] = ACTIONS(4880), - [anon_sym_module] = ACTIONS(4880), - [anon_sym_open] = ACTIONS(4880), - [anon_sym_LBRACK_LT] = ACTIONS(4878), - [anon_sym_return] = ACTIONS(4880), - [anon_sym_type] = ACTIONS(4880), - [anon_sym_do] = ACTIONS(4880), - [anon_sym_and] = ACTIONS(4880), - [anon_sym_let] = ACTIONS(4880), - [anon_sym_let_BANG] = ACTIONS(4878), - [aux_sym_access_modifier_token1] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_LBRACK_PIPE] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_LBRACE_PIPE] = ACTIONS(4878), - [anon_sym_with] = ACTIONS(5016), - [anon_sym_new] = ACTIONS(4880), - [anon_sym_return_BANG] = ACTIONS(4878), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_yield_BANG] = ACTIONS(4878), - [anon_sym_lazy] = ACTIONS(4880), - [anon_sym_assert] = ACTIONS(4880), - [anon_sym_upcast] = ACTIONS(4880), - [anon_sym_downcast] = ACTIONS(4880), - [anon_sym_LT_AT] = ACTIONS(4880), - [anon_sym_LT_AT_AT] = ACTIONS(4878), - [anon_sym_for] = ACTIONS(4880), - [anon_sym_while] = ACTIONS(4880), - [anon_sym_if] = ACTIONS(4880), - [anon_sym_fun] = ACTIONS(4880), - [anon_sym_try] = ACTIONS(4880), - [anon_sym_match] = ACTIONS(4880), - [anon_sym_match_BANG] = ACTIONS(4878), - [anon_sym_function] = ACTIONS(4880), - [anon_sym_use] = ACTIONS(4880), - [anon_sym_use_BANG] = ACTIONS(4878), - [anon_sym_do_BANG] = ACTIONS(4878), - [anon_sym_begin] = ACTIONS(4880), - [anon_sym_default] = ACTIONS(4880), - [anon_sym_static] = ACTIONS(4880), - [anon_sym_member] = ACTIONS(4880), - [anon_sym_abstract] = ACTIONS(4880), - [anon_sym_override] = ACTIONS(4880), - [anon_sym_val] = ACTIONS(4880), - [aux_sym_char_token1] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4880), - [anon_sym_DQUOTE] = ACTIONS(4880), - [anon_sym_AT_DQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4878), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4878), - [sym_bool] = ACTIONS(4880), - [sym_unit] = ACTIONS(4878), - [anon_sym_LPAREN_PIPE] = ACTIONS(4880), - [sym_op_identifier] = ACTIONS(4878), - [anon_sym_PLUS] = ACTIONS(4880), - [anon_sym_DASH] = ACTIONS(4880), - [anon_sym_PLUS_DOT] = ACTIONS(4878), - [anon_sym_DASH_DOT] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_AMP_AMP] = ACTIONS(4878), - [anon_sym_TILDE] = ACTIONS(4878), - [aux_sym_prefix_op_token1] = ACTIONS(4878), - [sym_int] = ACTIONS(4880), - [sym_xint] = ACTIONS(4878), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4878), - [anon_sym_POUNDload] = ACTIONS(4878), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4878), - [sym__dedent] = ACTIONS(4878), + [sym_identifier] = ACTIONS(3937), + [anon_sym_EQ] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_do] = ACTIONS(3937), + [anon_sym_let] = ACTIONS(3937), + [anon_sym_let_BANG] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_COMMA] = ACTIONS(3939), + [anon_sym_null] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_COLON_QMARK] = ACTIONS(3937), + [anon_sym_COLON_COLON] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_LBRACK_PIPE] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_LT_AT] = ACTIONS(3937), + [anon_sym_LT_AT_AT] = ACTIONS(3937), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE_PIPE] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3937), + [anon_sym_return_BANG] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3937), + [anon_sym_yield_BANG] = ACTIONS(3939), + [anon_sym_lazy] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_upcast] = ACTIONS(3937), + [anon_sym_downcast] = ACTIONS(3937), + [anon_sym_COLON_GT] = ACTIONS(3939), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_while] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_fun] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_match_BANG] = ACTIONS(3939), + [anon_sym_function] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [anon_sym_DOT_LBRACK] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_GT] = ACTIONS(3937), + [anon_sym_use] = ACTIONS(3937), + [anon_sym_use_BANG] = ACTIONS(3939), + [anon_sym_do_BANG] = ACTIONS(3939), + [anon_sym_begin] = ACTIONS(3937), + [anon_sym_LPAREN2] = ACTIONS(3939), + [anon_sym_or] = ACTIONS(3937), + [aux_sym_char_token1] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [anon_sym_AT_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3939), + [sym_bool] = ACTIONS(3937), + [sym_unit] = ACTIONS(3937), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_op_identifier] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_PLUS_DOT] = ACTIONS(3937), + [anon_sym_DASH_DOT] = ACTIONS(3937), + [anon_sym_PERCENT] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3939), + [aux_sym_prefix_op_token1] = ACTIONS(3937), + [aux_sym_infix_op_token1] = ACTIONS(3937), + [anon_sym_PIPE_PIPE] = ACTIONS(3937), + [anon_sym_BANG_EQ] = ACTIONS(3937), + [anon_sym_COLON_EQ] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3937), + [sym_int] = ACTIONS(3937), + [sym_xint] = ACTIONS(3939), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3939), + [sym__newline] = ACTIONS(3939), }, [2756] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5067), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2756), [sym_block_comment] = STATE(2756), [sym_line_comment] = STATE(2756), [sym_compiler_directive_decl] = STATE(2756), [sym_fsi_directive_decl] = STATE(2756), [sym_preproc_line] = STATE(2756), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3979), + [anon_sym_COLON] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_let] = ACTIONS(3977), + [anon_sym_let_BANG] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_null] = ACTIONS(3977), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_COLON_QMARK] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_LBRACK_PIPE] = ACTIONS(3979), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_LT_AT] = ACTIONS(3977), + [anon_sym_LT_AT_AT] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_LBRACE_PIPE] = ACTIONS(3979), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_return_BANG] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3977), + [anon_sym_yield_BANG] = ACTIONS(3979), + [anon_sym_lazy] = ACTIONS(3977), + [anon_sym_assert] = ACTIONS(3977), + [anon_sym_upcast] = ACTIONS(3977), + [anon_sym_downcast] = ACTIONS(3977), + [anon_sym_COLON_GT] = ACTIONS(3979), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_fun] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_match] = ACTIONS(3977), + [anon_sym_match_BANG] = ACTIONS(3979), + [anon_sym_function] = ACTIONS(3977), + [anon_sym_LT_DASH] = ACTIONS(3977), + [anon_sym_DOT_LBRACK] = ACTIONS(3979), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3977), + [anon_sym_use] = ACTIONS(3977), + [anon_sym_use_BANG] = ACTIONS(3979), + [anon_sym_do_BANG] = ACTIONS(3979), + [anon_sym_begin] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_or] = ACTIONS(3977), + [aux_sym_char_token1] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [anon_sym_AT_DQUOTE] = ACTIONS(3979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3979), + [sym_bool] = ACTIONS(3977), + [sym_unit] = ACTIONS(3977), + [anon_sym_LPAREN_PIPE] = ACTIONS(3977), + [sym_op_identifier] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS_DOT] = ACTIONS(3977), + [anon_sym_DASH_DOT] = ACTIONS(3977), + [anon_sym_PERCENT] = ACTIONS(3977), + [anon_sym_AMP_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3979), + [aux_sym_prefix_op_token1] = ACTIONS(3977), + [aux_sym_infix_op_token1] = ACTIONS(3977), + [anon_sym_PIPE_PIPE] = ACTIONS(3977), + [anon_sym_BANG_EQ] = ACTIONS(3977), + [anon_sym_COLON_EQ] = ACTIONS(3979), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3977), + [sym_int] = ACTIONS(3977), + [sym_xint] = ACTIONS(3979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3979), + [sym__newline] = ACTIONS(3979), }, [2757] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5280), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2757), [sym_block_comment] = STATE(2757), [sym_line_comment] = STATE(2757), [sym_compiler_directive_decl] = STATE(2757), [sym_fsi_directive_decl] = STATE(2757), [sym_preproc_line] = STATE(2757), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3975), + [anon_sym_COLON] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_let] = ACTIONS(3973), + [anon_sym_let_BANG] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_COMMA] = ACTIONS(3975), + [anon_sym_null] = ACTIONS(3973), + [anon_sym_QMARK] = ACTIONS(3973), + [anon_sym_COLON_QMARK] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_LBRACK_PIPE] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_LT_AT] = ACTIONS(3973), + [anon_sym_LT_AT_AT] = ACTIONS(3973), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_LBRACE_PIPE] = ACTIONS(3975), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_return_BANG] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3973), + [anon_sym_yield_BANG] = ACTIONS(3975), + [anon_sym_lazy] = ACTIONS(3973), + [anon_sym_assert] = ACTIONS(3973), + [anon_sym_upcast] = ACTIONS(3973), + [anon_sym_downcast] = ACTIONS(3973), + [anon_sym_COLON_GT] = ACTIONS(3975), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_match] = ACTIONS(3973), + [anon_sym_match_BANG] = ACTIONS(3975), + [anon_sym_function] = ACTIONS(3973), + [anon_sym_LT_DASH] = ACTIONS(3973), + [anon_sym_DOT_LBRACK] = ACTIONS(3975), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3973), + [anon_sym_use] = ACTIONS(3973), + [anon_sym_use_BANG] = ACTIONS(3975), + [anon_sym_do_BANG] = ACTIONS(3975), + [anon_sym_begin] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_or] = ACTIONS(3973), + [aux_sym_char_token1] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [anon_sym_AT_DQUOTE] = ACTIONS(3975), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3975), + [sym_bool] = ACTIONS(3973), + [sym_unit] = ACTIONS(3973), + [anon_sym_LPAREN_PIPE] = ACTIONS(3973), + [sym_op_identifier] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS_DOT] = ACTIONS(3973), + [anon_sym_DASH_DOT] = ACTIONS(3973), + [anon_sym_PERCENT] = ACTIONS(3973), + [anon_sym_AMP_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3975), + [aux_sym_prefix_op_token1] = ACTIONS(3973), + [aux_sym_infix_op_token1] = ACTIONS(3973), + [anon_sym_PIPE_PIPE] = ACTIONS(3973), + [anon_sym_BANG_EQ] = ACTIONS(3973), + [anon_sym_COLON_EQ] = ACTIONS(3975), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3973), + [sym_int] = ACTIONS(3973), + [sym_xint] = ACTIONS(3975), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3975), + [sym__newline] = ACTIONS(3975), }, [2758] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5386), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2758), [sym_block_comment] = STATE(2758), [sym_line_comment] = STATE(2758), [sym_compiler_directive_decl] = STATE(2758), [sym_fsi_directive_decl] = STATE(2758), [sym_preproc_line] = STATE(2758), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3971), + [anon_sym_COLON] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_let] = ACTIONS(3969), + [anon_sym_let_BANG] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3971), + [anon_sym_null] = ACTIONS(3969), + [anon_sym_QMARK] = ACTIONS(3969), + [anon_sym_COLON_QMARK] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_LBRACK_PIPE] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LT_AT] = ACTIONS(3969), + [anon_sym_LT_AT_AT] = ACTIONS(3969), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_LBRACE_PIPE] = ACTIONS(3971), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_return_BANG] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_yield_BANG] = ACTIONS(3971), + [anon_sym_lazy] = ACTIONS(3969), + [anon_sym_assert] = ACTIONS(3969), + [anon_sym_upcast] = ACTIONS(3969), + [anon_sym_downcast] = ACTIONS(3969), + [anon_sym_COLON_GT] = ACTIONS(3971), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_fun] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_match] = ACTIONS(3969), + [anon_sym_match_BANG] = ACTIONS(3971), + [anon_sym_function] = ACTIONS(3969), + [anon_sym_LT_DASH] = ACTIONS(3969), + [anon_sym_DOT_LBRACK] = ACTIONS(3971), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_GT] = ACTIONS(3969), + [anon_sym_use] = ACTIONS(3969), + [anon_sym_use_BANG] = ACTIONS(3971), + [anon_sym_do_BANG] = ACTIONS(3971), + [anon_sym_begin] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_or] = ACTIONS(3969), + [aux_sym_char_token1] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [anon_sym_AT_DQUOTE] = ACTIONS(3971), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3971), + [sym_bool] = ACTIONS(3969), + [sym_unit] = ACTIONS(3969), + [anon_sym_LPAREN_PIPE] = ACTIONS(3969), + [sym_op_identifier] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS_DOT] = ACTIONS(3969), + [anon_sym_DASH_DOT] = ACTIONS(3969), + [anon_sym_PERCENT] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3971), + [aux_sym_prefix_op_token1] = ACTIONS(3969), + [aux_sym_infix_op_token1] = ACTIONS(3969), + [anon_sym_PIPE_PIPE] = ACTIONS(3969), + [anon_sym_BANG_EQ] = ACTIONS(3969), + [anon_sym_COLON_EQ] = ACTIONS(3971), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3969), + [sym_int] = ACTIONS(3969), + [sym_xint] = ACTIONS(3971), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3971), + [sym__newline] = ACTIONS(3971), }, [2759] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3513), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2759), [sym_block_comment] = STATE(2759), [sym_line_comment] = STATE(2759), [sym_compiler_directive_decl] = STATE(2759), [sym_fsi_directive_decl] = STATE(2759), [sym_preproc_line] = STATE(2759), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_let] = ACTIONS(3965), + [anon_sym_let_BANG] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3967), + [anon_sym_null] = ACTIONS(3965), + [anon_sym_QMARK] = ACTIONS(3965), + [anon_sym_COLON_QMARK] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LBRACK_PIPE] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LT_AT] = ACTIONS(3965), + [anon_sym_LT_AT_AT] = ACTIONS(3965), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_LBRACE_PIPE] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_return_BANG] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3965), + [anon_sym_yield_BANG] = ACTIONS(3967), + [anon_sym_lazy] = ACTIONS(3965), + [anon_sym_assert] = ACTIONS(3965), + [anon_sym_upcast] = ACTIONS(3965), + [anon_sym_downcast] = ACTIONS(3965), + [anon_sym_COLON_GT] = ACTIONS(3967), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_fun] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_match] = ACTIONS(3965), + [anon_sym_match_BANG] = ACTIONS(3967), + [anon_sym_function] = ACTIONS(3965), + [anon_sym_LT_DASH] = ACTIONS(3965), + [anon_sym_DOT_LBRACK] = ACTIONS(3967), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3965), + [anon_sym_use] = ACTIONS(3965), + [anon_sym_use_BANG] = ACTIONS(3967), + [anon_sym_do_BANG] = ACTIONS(3967), + [anon_sym_begin] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_or] = ACTIONS(3965), + [aux_sym_char_token1] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [anon_sym_AT_DQUOTE] = ACTIONS(3967), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3967), + [sym_bool] = ACTIONS(3965), + [sym_unit] = ACTIONS(3965), + [anon_sym_LPAREN_PIPE] = ACTIONS(3965), + [sym_op_identifier] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS_DOT] = ACTIONS(3965), + [anon_sym_DASH_DOT] = ACTIONS(3965), + [anon_sym_PERCENT] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3967), + [aux_sym_prefix_op_token1] = ACTIONS(3965), + [aux_sym_infix_op_token1] = ACTIONS(3965), + [anon_sym_PIPE_PIPE] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3965), + [anon_sym_COLON_EQ] = ACTIONS(3967), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3965), + [sym_int] = ACTIONS(3965), + [sym_xint] = ACTIONS(3967), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3967), + [sym__newline] = ACTIONS(3967), }, [2760] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5094), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), [sym_xml_doc] = STATE(2760), [sym_block_comment] = STATE(2760), [sym_line_comment] = STATE(2760), [sym_compiler_directive_decl] = STATE(2760), [sym_fsi_directive_decl] = STATE(2760), [sym_preproc_line] = STATE(2760), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3961), + [anon_sym_EQ] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3961), + [anon_sym_return] = ACTIONS(3961), + [anon_sym_do] = ACTIONS(3961), + [anon_sym_let] = ACTIONS(3961), + [anon_sym_let_BANG] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_COMMA] = ACTIONS(3963), + [anon_sym_null] = ACTIONS(3961), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_COLON_QMARK] = ACTIONS(3961), + [anon_sym_COLON_COLON] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_LBRACK_PIPE] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_LT_AT] = ACTIONS(3961), + [anon_sym_LT_AT_AT] = ACTIONS(3961), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_LBRACE_PIPE] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3961), + [anon_sym_return_BANG] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3961), + [anon_sym_yield_BANG] = ACTIONS(3963), + [anon_sym_lazy] = ACTIONS(3961), + [anon_sym_assert] = ACTIONS(3961), + [anon_sym_upcast] = ACTIONS(3961), + [anon_sym_downcast] = ACTIONS(3961), + [anon_sym_COLON_GT] = ACTIONS(3963), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3961), + [anon_sym_while] = ACTIONS(3961), + [anon_sym_if] = ACTIONS(3961), + [anon_sym_fun] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3961), + [anon_sym_match] = ACTIONS(3961), + [anon_sym_match_BANG] = ACTIONS(3963), + [anon_sym_function] = ACTIONS(3961), + [anon_sym_LT_DASH] = ACTIONS(3961), + [anon_sym_DOT_LBRACK] = ACTIONS(3963), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3961), + [anon_sym_use] = ACTIONS(3961), + [anon_sym_use_BANG] = ACTIONS(3963), + [anon_sym_do_BANG] = ACTIONS(3963), + [anon_sym_begin] = ACTIONS(3961), + [anon_sym_LPAREN2] = ACTIONS(3963), + [anon_sym_or] = ACTIONS(3961), + [aux_sym_char_token1] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [anon_sym_AT_DQUOTE] = ACTIONS(3963), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3963), + [sym_bool] = ACTIONS(3961), + [sym_unit] = ACTIONS(3961), + [anon_sym_LPAREN_PIPE] = ACTIONS(3961), + [sym_op_identifier] = ACTIONS(3961), + [anon_sym_PLUS] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_PLUS_DOT] = ACTIONS(3961), + [anon_sym_DASH_DOT] = ACTIONS(3961), + [anon_sym_PERCENT] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3963), + [aux_sym_prefix_op_token1] = ACTIONS(3961), + [aux_sym_infix_op_token1] = ACTIONS(3961), + [anon_sym_PIPE_PIPE] = ACTIONS(3961), + [anon_sym_BANG_EQ] = ACTIONS(3961), + [anon_sym_COLON_EQ] = ACTIONS(3963), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3961), + [sym_int] = ACTIONS(3961), + [sym_xint] = ACTIONS(3963), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3963), + [sym__newline] = ACTIONS(3963), }, [2761] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3720), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2761), [sym_block_comment] = STATE(2761), [sym_line_comment] = STATE(2761), [sym_compiler_directive_decl] = STATE(2761), [sym_fsi_directive_decl] = STATE(2761), [sym_preproc_line] = STATE(2761), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_let_BANG] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_COMMA] = ACTIONS(3640), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_COLON_QMARK] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LBRACK_PIPE] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_LT_AT] = ACTIONS(3638), + [anon_sym_LT_AT_AT] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_LBRACE_PIPE] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_return_BANG] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_yield_BANG] = ACTIONS(3640), + [anon_sym_lazy] = ACTIONS(3638), + [anon_sym_assert] = ACTIONS(3638), + [anon_sym_upcast] = ACTIONS(3638), + [anon_sym_downcast] = ACTIONS(3638), + [anon_sym_COLON_GT] = ACTIONS(3640), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_fun] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_match] = ACTIONS(3638), + [anon_sym_match_BANG] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_LT_DASH] = ACTIONS(3638), + [anon_sym_DOT_LBRACK] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_use] = ACTIONS(3638), + [anon_sym_use_BANG] = ACTIONS(3640), + [anon_sym_do_BANG] = ACTIONS(3640), + [anon_sym_DOT_DOT] = ACTIONS(3640), + [anon_sym_begin] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3638), + [aux_sym_char_token1] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_AT_DQUOTE] = ACTIONS(3640), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3640), + [sym_bool] = ACTIONS(3638), + [sym_unit] = ACTIONS(3638), + [anon_sym_LPAREN_PIPE] = ACTIONS(3638), + [sym_op_identifier] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS_DOT] = ACTIONS(3638), + [anon_sym_DASH_DOT] = ACTIONS(3638), + [anon_sym_PERCENT] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3640), + [aux_sym_prefix_op_token1] = ACTIONS(3638), + [aux_sym_infix_op_token1] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_COLON_EQ] = ACTIONS(3640), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3638), + [sym_int] = ACTIONS(3638), + [sym_xint] = ACTIONS(3640), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3640), + [sym__newline] = ACTIONS(3640), }, [2762] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5149), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2762), [sym_block_comment] = STATE(2762), [sym_line_comment] = STATE(2762), [sym_compiler_directive_decl] = STATE(2762), [sym_fsi_directive_decl] = STATE(2762), [sym_preproc_line] = STATE(2762), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(3012), + [anon_sym_open] = ACTIONS(3012), + [anon_sym_LBRACK_LT] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_and] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [aux_sym_access_modifier_token1] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_member] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_abstract] = ACTIONS(3012), + [anon_sym_override] = ACTIONS(3012), + [anon_sym_val] = ACTIONS(3012), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3010), + [anon_sym_POUNDload] = ACTIONS(3010), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__dedent] = ACTIONS(3010), }, [2763] = { - [sym_attributes] = STATE(2763), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3424), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2360), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2763), [sym_block_comment] = STATE(2763), [sym_line_comment] = STATE(2763), [sym_compiler_directive_decl] = STATE(2763), [sym_fsi_directive_decl] = STATE(2763), [sym_preproc_line] = STATE(2763), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4914), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_DOT_DOT] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2764] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5092), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(4934), + [sym_function_declaration_left] = STATE(6920), + [sym_value_declaration_left] = STATE(6920), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2764), [sym_block_comment] = STATE(2764), [sym_line_comment] = STATE(2764), [sym_compiler_directive_decl] = STATE(2764), [sym_fsi_directive_decl] = STATE(2764), [sym_preproc_line] = STATE(2764), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_rec] = ACTIONS(5005), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -336412,334 +342332,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2765] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3762), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2765), [sym_block_comment] = STATE(2765), [sym_line_comment] = STATE(2765), [sym_compiler_directive_decl] = STATE(2765), [sym_fsi_directive_decl] = STATE(2765), [sym_preproc_line] = STATE(2765), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3646), + [anon_sym_EQ] = ACTIONS(3648), + [anon_sym_COLON] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_let_BANG] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_COMMA] = ACTIONS(3648), + [anon_sym_null] = ACTIONS(3646), + [anon_sym_QMARK] = ACTIONS(3646), + [anon_sym_COLON_QMARK] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LBRACK_PIPE] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_LT_AT] = ACTIONS(3646), + [anon_sym_LT_AT_AT] = ACTIONS(3646), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_return_BANG] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_yield_BANG] = ACTIONS(3648), + [anon_sym_lazy] = ACTIONS(3646), + [anon_sym_assert] = ACTIONS(3646), + [anon_sym_upcast] = ACTIONS(3646), + [anon_sym_downcast] = ACTIONS(3646), + [anon_sym_COLON_GT] = ACTIONS(3648), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_fun] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_match] = ACTIONS(3646), + [anon_sym_match_BANG] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_DOT_LBRACK] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_use] = ACTIONS(3646), + [anon_sym_use_BANG] = ACTIONS(3648), + [anon_sym_do_BANG] = ACTIONS(3648), + [anon_sym_DOT_DOT] = ACTIONS(3648), + [anon_sym_begin] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_or] = ACTIONS(3646), + [aux_sym_char_token1] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_AT_DQUOTE] = ACTIONS(3648), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3648), + [sym_bool] = ACTIONS(3646), + [sym_unit] = ACTIONS(3646), + [anon_sym_LPAREN_PIPE] = ACTIONS(3646), + [sym_op_identifier] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS_DOT] = ACTIONS(3646), + [anon_sym_DASH_DOT] = ACTIONS(3646), + [anon_sym_PERCENT] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3648), + [aux_sym_prefix_op_token1] = ACTIONS(3646), + [aux_sym_infix_op_token1] = ACTIONS(3646), + [anon_sym_PIPE_PIPE] = ACTIONS(3646), + [anon_sym_BANG_EQ] = ACTIONS(3646), + [anon_sym_COLON_EQ] = ACTIONS(3648), + [anon_sym_DOLLAR] = ACTIONS(3646), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3646), + [sym_int] = ACTIONS(3646), + [sym_xint] = ACTIONS(3648), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3648), + [sym__newline] = ACTIONS(3648), }, [2766] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5225), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2766), [sym_block_comment] = STATE(2766), [sym_line_comment] = STATE(2766), [sym_compiler_directive_decl] = STATE(2766), [sym_fsi_directive_decl] = STATE(2766), [sym_preproc_line] = STATE(2766), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_do] = ACTIONS(3859), + [anon_sym_let] = ACTIONS(3859), + [anon_sym_let_BANG] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3861), + [anon_sym_null] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_COLON_QMARK] = ACTIONS(3859), + [anon_sym_COLON_COLON] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK_PIPE] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3859), + [anon_sym_LT_AT] = ACTIONS(3859), + [anon_sym_AT_GT] = ACTIONS(3859), + [anon_sym_LT_AT_AT] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3859), + [anon_sym_LBRACE_PIPE] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(3859), + [anon_sym_return_BANG] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_yield_BANG] = ACTIONS(3861), + [anon_sym_lazy] = ACTIONS(3859), + [anon_sym_assert] = ACTIONS(3859), + [anon_sym_upcast] = ACTIONS(3859), + [anon_sym_downcast] = ACTIONS(3859), + [anon_sym_COLON_GT] = ACTIONS(3861), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_fun] = ACTIONS(3859), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_match_BANG] = ACTIONS(3861), + [anon_sym_function] = ACTIONS(3859), + [anon_sym_LT_DASH] = ACTIONS(3859), + [anon_sym_DOT_LBRACK] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_use] = ACTIONS(3859), + [anon_sym_use_BANG] = ACTIONS(3861), + [anon_sym_do_BANG] = ACTIONS(3861), + [anon_sym_begin] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_or] = ACTIONS(3859), + [aux_sym_char_token1] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3859), + [anon_sym_AT_DQUOTE] = ACTIONS(3861), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3861), + [sym_bool] = ACTIONS(3859), + [sym_unit] = ACTIONS(3859), + [anon_sym_LPAREN_PIPE] = ACTIONS(3859), + [sym_op_identifier] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS_DOT] = ACTIONS(3859), + [anon_sym_DASH_DOT] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3861), + [aux_sym_prefix_op_token1] = ACTIONS(3859), + [aux_sym_infix_op_token1] = ACTIONS(3859), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_COLON_EQ] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3859), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3859), + [sym_int] = ACTIONS(3859), + [sym_xint] = ACTIONS(3861), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3861), + [sym__newline] = ACTIONS(3861), }, [2767] = { - [sym_attributes] = STATE(2767), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5084), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2315), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2767), [sym_block_comment] = STATE(2767), [sym_line_comment] = STATE(2767), [sym_compiler_directive_decl] = STATE(2767), [sym_fsi_directive_decl] = STATE(2767), [sym_preproc_line] = STATE(2767), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4356), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4358), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2768] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5404), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defns] = STATE(7254), + [sym__function_or_value_defn_body] = STATE(6403), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2768), [sym_block_comment] = STATE(2768), [sym_line_comment] = STATE(2768), [sym_compiler_directive_decl] = STATE(2768), [sym_fsi_directive_decl] = STATE(2768), [sym_preproc_line] = STATE(2768), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5018), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -336748,340 +342700,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2769] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5114), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2769), [sym_block_comment] = STATE(2769), [sym_line_comment] = STATE(2769), [sym_compiler_directive_decl] = STATE(2769), [sym_fsi_directive_decl] = STATE(2769), [sym_preproc_line] = STATE(2769), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_let_BANG] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_COLON_QMARK] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LBRACK_PIPE] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LT_AT] = ACTIONS(3314), + [anon_sym_LT_AT_AT] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_LBRACE_PIPE] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_return_BANG] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_yield_BANG] = ACTIONS(3312), + [anon_sym_lazy] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_upcast] = ACTIONS(3314), + [anon_sym_downcast] = ACTIONS(3314), + [anon_sym_COLON_GT] = ACTIONS(3312), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_fun] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_match_BANG] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_DOT_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_use] = ACTIONS(3314), + [anon_sym_use_BANG] = ACTIONS(3312), + [anon_sym_do_BANG] = ACTIONS(3312), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [anon_sym_begin] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [aux_sym_char_token1] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_AT_DQUOTE] = ACTIONS(3312), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3312), + [sym_bool] = ACTIONS(3314), + [sym_unit] = ACTIONS(3314), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_PLUS_DOT] = ACTIONS(3314), + [anon_sym_DASH_DOT] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [aux_sym_prefix_op_token1] = ACTIONS(3314), + [aux_sym_infix_op_token1] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3312), + [anon_sym_DOLLAR] = ACTIONS(3314), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3314), + [sym_int] = ACTIONS(3314), + [sym_xint] = ACTIONS(3312), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3312), + [sym__newline] = ACTIONS(3312), }, [2770] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5113), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2770), [sym_block_comment] = STATE(2770), [sym_line_comment] = STATE(2770), [sym_compiler_directive_decl] = STATE(2770), [sym_fsi_directive_decl] = STATE(2770), [sym_preproc_line] = STATE(2770), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_DOT_DOT] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2771] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5075), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2771), [sym_block_comment] = STATE(2771), [sym_line_comment] = STATE(2771), [sym_compiler_directive_decl] = STATE(2771), [sym_fsi_directive_decl] = STATE(2771), [sym_preproc_line] = STATE(2771), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(3714), + [anon_sym_COLON] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_let] = ACTIONS(3712), + [anon_sym_let_BANG] = ACTIONS(3714), + [anon_sym_LPAREN] = ACTIONS(3712), + [anon_sym_COMMA] = ACTIONS(3714), + [anon_sym_null] = ACTIONS(3712), + [anon_sym_QMARK] = ACTIONS(3712), + [anon_sym_COLON_QMARK] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LBRACK_PIPE] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_LT_AT] = ACTIONS(3712), + [anon_sym_LT_AT_AT] = ACTIONS(3712), + [anon_sym_AT_AT_GT] = ACTIONS(3712), + [anon_sym_DOT] = ACTIONS(3712), + [anon_sym_LBRACE_PIPE] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_return_BANG] = ACTIONS(3714), + [anon_sym_yield] = ACTIONS(3712), + [anon_sym_yield_BANG] = ACTIONS(3714), + [anon_sym_lazy] = ACTIONS(3712), + [anon_sym_assert] = ACTIONS(3712), + [anon_sym_upcast] = ACTIONS(3712), + [anon_sym_downcast] = ACTIONS(3712), + [anon_sym_COLON_GT] = ACTIONS(3714), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_fun] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_match] = ACTIONS(3712), + [anon_sym_match_BANG] = ACTIONS(3714), + [anon_sym_function] = ACTIONS(3712), + [anon_sym_LT_DASH] = ACTIONS(3712), + [anon_sym_DOT_LBRACK] = ACTIONS(3714), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_use] = ACTIONS(3712), + [anon_sym_use_BANG] = ACTIONS(3714), + [anon_sym_do_BANG] = ACTIONS(3714), + [anon_sym_begin] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_or] = ACTIONS(3712), + [aux_sym_char_token1] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [anon_sym_AT_DQUOTE] = ACTIONS(3714), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3714), + [sym_bool] = ACTIONS(3712), + [sym_unit] = ACTIONS(3712), + [anon_sym_LPAREN_PIPE] = ACTIONS(3712), + [sym_op_identifier] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS_DOT] = ACTIONS(3712), + [anon_sym_DASH_DOT] = ACTIONS(3712), + [anon_sym_PERCENT] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3714), + [aux_sym_prefix_op_token1] = ACTIONS(3712), + [aux_sym_infix_op_token1] = ACTIONS(3712), + [anon_sym_PIPE_PIPE] = ACTIONS(3712), + [anon_sym_BANG_EQ] = ACTIONS(3712), + [anon_sym_COLON_EQ] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(3712), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3712), + [sym_int] = ACTIONS(3712), + [sym_xint] = ACTIONS(3714), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3714), + [sym__newline] = ACTIONS(3714), }, [2772] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5405), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2772), [sym_block_comment] = STATE(2772), [sym_line_comment] = STATE(2772), [sym_compiler_directive_decl] = STATE(2772), [sym_fsi_directive_decl] = STATE(2772), [sym_preproc_line] = STATE(2772), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5020), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3957), + [anon_sym_EQ] = ACTIONS(3959), + [anon_sym_COLON] = ACTIONS(3957), + [anon_sym_return] = ACTIONS(3957), + [anon_sym_do] = ACTIONS(3957), + [anon_sym_let] = ACTIONS(3957), + [anon_sym_let_BANG] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_null] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3957), + [anon_sym_COLON_QMARK] = ACTIONS(3957), + [anon_sym_COLON_COLON] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_LBRACK_PIPE] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_LT_AT] = ACTIONS(3957), + [anon_sym_LT_AT_AT] = ACTIONS(3957), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_LBRACE_PIPE] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3957), + [anon_sym_return_BANG] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3957), + [anon_sym_yield_BANG] = ACTIONS(3959), + [anon_sym_lazy] = ACTIONS(3957), + [anon_sym_assert] = ACTIONS(3957), + [anon_sym_upcast] = ACTIONS(3957), + [anon_sym_downcast] = ACTIONS(3957), + [anon_sym_COLON_GT] = ACTIONS(3959), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3957), + [anon_sym_while] = ACTIONS(3957), + [anon_sym_if] = ACTIONS(3957), + [anon_sym_fun] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3957), + [anon_sym_match] = ACTIONS(3957), + [anon_sym_match_BANG] = ACTIONS(3959), + [anon_sym_function] = ACTIONS(3957), + [anon_sym_LT_DASH] = ACTIONS(3957), + [anon_sym_DOT_LBRACK] = ACTIONS(3959), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3957), + [anon_sym_use] = ACTIONS(3957), + [anon_sym_use_BANG] = ACTIONS(3959), + [anon_sym_do_BANG] = ACTIONS(3959), + [anon_sym_begin] = ACTIONS(3957), + [anon_sym_LPAREN2] = ACTIONS(3959), + [anon_sym_or] = ACTIONS(3957), + [aux_sym_char_token1] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [anon_sym_AT_DQUOTE] = ACTIONS(3959), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3959), + [sym_bool] = ACTIONS(3957), + [sym_unit] = ACTIONS(3957), + [anon_sym_LPAREN_PIPE] = ACTIONS(3957), + [sym_op_identifier] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_PLUS_DOT] = ACTIONS(3957), + [anon_sym_DASH_DOT] = ACTIONS(3957), + [anon_sym_PERCENT] = ACTIONS(3957), + [anon_sym_AMP_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3959), + [aux_sym_prefix_op_token1] = ACTIONS(3957), + [aux_sym_infix_op_token1] = ACTIONS(3957), + [anon_sym_PIPE_PIPE] = ACTIONS(3957), + [anon_sym_BANG_EQ] = ACTIONS(3957), + [anon_sym_COLON_EQ] = ACTIONS(3959), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3957), + [sym_int] = ACTIONS(3957), + [sym_xint] = ACTIONS(3959), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3959), + [sym__newline] = ACTIONS(3959), }, [2773] = { [sym_xml_doc] = STATE(2773), @@ -337090,82 +343074,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2773), [sym_fsi_directive_decl] = STATE(2773), [sym_preproc_line] = STATE(2773), - [ts_builtin_sym_end] = ACTIONS(5022), - [sym_identifier] = ACTIONS(5024), - [anon_sym_namespace] = ACTIONS(5024), - [anon_sym_module] = ACTIONS(5024), - [anon_sym_open] = ACTIONS(5024), - [anon_sym_LBRACK_LT] = ACTIONS(5022), - [anon_sym_return] = ACTIONS(5024), - [anon_sym_type] = ACTIONS(5024), - [anon_sym_do] = ACTIONS(5024), - [anon_sym_and] = ACTIONS(5024), - [anon_sym_let] = ACTIONS(5024), - [anon_sym_let_BANG] = ACTIONS(5022), - [aux_sym_access_modifier_token1] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(5024), - [anon_sym_null] = ACTIONS(5024), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_LBRACK] = ACTIONS(5024), - [anon_sym_LBRACK_PIPE] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5024), - [anon_sym_LBRACE_PIPE] = ACTIONS(5022), - [anon_sym_new] = ACTIONS(5024), - [anon_sym_return_BANG] = ACTIONS(5022), - [anon_sym_yield] = ACTIONS(5024), - [anon_sym_yield_BANG] = ACTIONS(5022), - [anon_sym_lazy] = ACTIONS(5024), - [anon_sym_assert] = ACTIONS(5024), - [anon_sym_upcast] = ACTIONS(5024), - [anon_sym_downcast] = ACTIONS(5024), - [anon_sym_LT_AT] = ACTIONS(5024), - [anon_sym_LT_AT_AT] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5024), - [anon_sym_while] = ACTIONS(5024), - [anon_sym_if] = ACTIONS(5024), - [anon_sym_fun] = ACTIONS(5024), - [anon_sym_try] = ACTIONS(5024), - [anon_sym_match] = ACTIONS(5024), - [anon_sym_match_BANG] = ACTIONS(5022), - [anon_sym_function] = ACTIONS(5024), - [anon_sym_use] = ACTIONS(5024), - [anon_sym_use_BANG] = ACTIONS(5022), - [anon_sym_do_BANG] = ACTIONS(5022), - [anon_sym_begin] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_member] = ACTIONS(5024), - [anon_sym_abstract] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), - [anon_sym_val] = ACTIONS(5024), - [aux_sym_char_token1] = ACTIONS(5022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5024), - [anon_sym_DQUOTE] = ACTIONS(5024), - [anon_sym_AT_DQUOTE] = ACTIONS(5022), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5022), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5022), - [sym_bool] = ACTIONS(5024), - [sym_unit] = ACTIONS(5022), - [anon_sym_LPAREN_PIPE] = ACTIONS(5024), - [sym_op_identifier] = ACTIONS(5022), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_PLUS_DOT] = ACTIONS(5022), - [anon_sym_DASH_DOT] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [aux_sym_prefix_op_token1] = ACTIONS(5022), - [sym_int] = ACTIONS(5024), - [sym_xint] = ACTIONS(5022), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5022), - [anon_sym_POUNDload] = ACTIONS(5022), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5022), + [sym_identifier] = ACTIONS(3953), + [anon_sym_EQ] = ACTIONS(3955), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_do] = ACTIONS(3953), + [anon_sym_let] = ACTIONS(3953), + [anon_sym_let_BANG] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3955), + [anon_sym_null] = ACTIONS(3953), + [anon_sym_QMARK] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_LBRACK_PIPE] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_LT_AT] = ACTIONS(3953), + [anon_sym_LT_AT_AT] = ACTIONS(3953), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_LBRACE_PIPE] = ACTIONS(3955), + [anon_sym_new] = ACTIONS(3953), + [anon_sym_return_BANG] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3953), + [anon_sym_yield_BANG] = ACTIONS(3955), + [anon_sym_lazy] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_upcast] = ACTIONS(3953), + [anon_sym_downcast] = ACTIONS(3953), + [anon_sym_COLON_GT] = ACTIONS(3955), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3953), + [anon_sym_while] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_fun] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_match_BANG] = ACTIONS(3955), + [anon_sym_function] = ACTIONS(3953), + [anon_sym_LT_DASH] = ACTIONS(3953), + [anon_sym_DOT_LBRACK] = ACTIONS(3955), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3953), + [anon_sym_use] = ACTIONS(3953), + [anon_sym_use_BANG] = ACTIONS(3955), + [anon_sym_do_BANG] = ACTIONS(3955), + [anon_sym_begin] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(3955), + [anon_sym_or] = ACTIONS(3953), + [aux_sym_char_token1] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [anon_sym_AT_DQUOTE] = ACTIONS(3955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3955), + [sym_bool] = ACTIONS(3953), + [sym_unit] = ACTIONS(3953), + [anon_sym_LPAREN_PIPE] = ACTIONS(3953), + [sym_op_identifier] = ACTIONS(3953), + [anon_sym_PLUS] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_PLUS_DOT] = ACTIONS(3953), + [anon_sym_DASH_DOT] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_AMP_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3955), + [aux_sym_prefix_op_token1] = ACTIONS(3953), + [aux_sym_infix_op_token1] = ACTIONS(3953), + [anon_sym_PIPE_PIPE] = ACTIONS(3953), + [anon_sym_BANG_EQ] = ACTIONS(3953), + [anon_sym_COLON_EQ] = ACTIONS(3955), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3953), + [sym_int] = ACTIONS(3953), + [sym_xint] = ACTIONS(3955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3955), + [sym__newline] = ACTIONS(3955), }, [2774] = { [sym_xml_doc] = STATE(2774), @@ -337174,334 +343166,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2774), [sym_fsi_directive_decl] = STATE(2774), [sym_preproc_line] = STATE(2774), - [sym_identifier] = ACTIONS(4888), - [anon_sym_module] = ACTIONS(4888), - [anon_sym_open] = ACTIONS(4888), - [anon_sym_LBRACK_LT] = ACTIONS(4886), - [anon_sym_return] = ACTIONS(4888), - [anon_sym_type] = ACTIONS(4888), - [anon_sym_do] = ACTIONS(4888), - [anon_sym_and] = ACTIONS(4888), - [anon_sym_let] = ACTIONS(4888), - [anon_sym_let_BANG] = ACTIONS(4886), - [aux_sym_access_modifier_token1] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_LBRACK_PIPE] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_LBRACE_PIPE] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(5026), - [anon_sym_new] = ACTIONS(4888), - [anon_sym_return_BANG] = ACTIONS(4886), - [anon_sym_yield] = ACTIONS(4888), - [anon_sym_yield_BANG] = ACTIONS(4886), - [anon_sym_lazy] = ACTIONS(4888), - [anon_sym_assert] = ACTIONS(4888), - [anon_sym_upcast] = ACTIONS(4888), - [anon_sym_downcast] = ACTIONS(4888), - [anon_sym_LT_AT] = ACTIONS(4888), - [anon_sym_LT_AT_AT] = ACTIONS(4886), - [anon_sym_for] = ACTIONS(4888), - [anon_sym_while] = ACTIONS(4888), - [anon_sym_if] = ACTIONS(4888), - [anon_sym_fun] = ACTIONS(4888), - [anon_sym_try] = ACTIONS(4888), - [anon_sym_match] = ACTIONS(4888), - [anon_sym_match_BANG] = ACTIONS(4886), - [anon_sym_function] = ACTIONS(4888), - [anon_sym_use] = ACTIONS(4888), - [anon_sym_use_BANG] = ACTIONS(4886), - [anon_sym_do_BANG] = ACTIONS(4886), - [anon_sym_begin] = ACTIONS(4888), - [anon_sym_default] = ACTIONS(4888), - [anon_sym_static] = ACTIONS(4888), - [anon_sym_member] = ACTIONS(4888), - [anon_sym_abstract] = ACTIONS(4888), - [anon_sym_override] = ACTIONS(4888), - [anon_sym_val] = ACTIONS(4888), - [aux_sym_char_token1] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(4888), - [anon_sym_AT_DQUOTE] = ACTIONS(4886), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4886), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4886), - [sym_bool] = ACTIONS(4888), - [sym_unit] = ACTIONS(4886), - [anon_sym_LPAREN_PIPE] = ACTIONS(4888), - [sym_op_identifier] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_PLUS_DOT] = ACTIONS(4886), - [anon_sym_DASH_DOT] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [aux_sym_prefix_op_token1] = ACTIONS(4886), - [sym_int] = ACTIONS(4888), - [sym_xint] = ACTIONS(4886), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4886), - [anon_sym_POUNDload] = ACTIONS(4886), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4886), - [sym__dedent] = ACTIONS(4886), + [sym_identifier] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_do] = ACTIONS(3949), + [anon_sym_let] = ACTIONS(3949), + [anon_sym_let_BANG] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_COMMA] = ACTIONS(3951), + [anon_sym_null] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_COLON_QMARK] = ACTIONS(3949), + [anon_sym_COLON_COLON] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_LBRACK_PIPE] = ACTIONS(3951), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_LT_AT] = ACTIONS(3949), + [anon_sym_LT_AT_AT] = ACTIONS(3949), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3951), + [anon_sym_new] = ACTIONS(3949), + [anon_sym_return_BANG] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3949), + [anon_sym_yield_BANG] = ACTIONS(3951), + [anon_sym_lazy] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_upcast] = ACTIONS(3949), + [anon_sym_downcast] = ACTIONS(3949), + [anon_sym_COLON_GT] = ACTIONS(3951), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_while] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_fun] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_match_BANG] = ACTIONS(3951), + [anon_sym_function] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [anon_sym_DOT_LBRACK] = ACTIONS(3951), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3949), + [anon_sym_use] = ACTIONS(3949), + [anon_sym_use_BANG] = ACTIONS(3951), + [anon_sym_do_BANG] = ACTIONS(3951), + [anon_sym_begin] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_or] = ACTIONS(3949), + [aux_sym_char_token1] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [anon_sym_AT_DQUOTE] = ACTIONS(3951), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3951), + [sym_bool] = ACTIONS(3949), + [sym_unit] = ACTIONS(3949), + [anon_sym_LPAREN_PIPE] = ACTIONS(3949), + [sym_op_identifier] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_PLUS_DOT] = ACTIONS(3949), + [anon_sym_DASH_DOT] = ACTIONS(3949), + [anon_sym_PERCENT] = ACTIONS(3949), + [anon_sym_AMP_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3951), + [aux_sym_prefix_op_token1] = ACTIONS(3949), + [aux_sym_infix_op_token1] = ACTIONS(3949), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_BANG_EQ] = ACTIONS(3949), + [anon_sym_COLON_EQ] = ACTIONS(3951), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3949), + [sym_int] = ACTIONS(3949), + [sym_xint] = ACTIONS(3951), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3951), + [sym__newline] = ACTIONS(3951), }, [2775] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3599), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2775), [sym_block_comment] = STATE(2775), [sym_line_comment] = STATE(2775), [sym_compiler_directive_decl] = STATE(2775), [sym_fsi_directive_decl] = STATE(2775), [sym_preproc_line] = STATE(2775), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3947), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_do] = ACTIONS(3945), + [anon_sym_let] = ACTIONS(3945), + [anon_sym_let_BANG] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_COLON] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_LBRACK_PIPE] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LT_AT] = ACTIONS(3945), + [anon_sym_LT_AT_AT] = ACTIONS(3945), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE_PIPE] = ACTIONS(3947), + [anon_sym_new] = ACTIONS(3945), + [anon_sym_return_BANG] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3945), + [anon_sym_yield_BANG] = ACTIONS(3947), + [anon_sym_lazy] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_upcast] = ACTIONS(3945), + [anon_sym_downcast] = ACTIONS(3945), + [anon_sym_COLON_GT] = ACTIONS(3947), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_while] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_match_BANG] = ACTIONS(3947), + [anon_sym_function] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_DOT_LBRACK] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3945), + [anon_sym_use] = ACTIONS(3945), + [anon_sym_use_BANG] = ACTIONS(3947), + [anon_sym_do_BANG] = ACTIONS(3947), + [anon_sym_begin] = ACTIONS(3945), + [anon_sym_LPAREN2] = ACTIONS(3947), + [anon_sym_or] = ACTIONS(3945), + [aux_sym_char_token1] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [anon_sym_AT_DQUOTE] = ACTIONS(3947), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3947), + [sym_bool] = ACTIONS(3945), + [sym_unit] = ACTIONS(3945), + [anon_sym_LPAREN_PIPE] = ACTIONS(3945), + [sym_op_identifier] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS_DOT] = ACTIONS(3945), + [anon_sym_DASH_DOT] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3947), + [aux_sym_prefix_op_token1] = ACTIONS(3945), + [aux_sym_infix_op_token1] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3945), + [anon_sym_BANG_EQ] = ACTIONS(3945), + [anon_sym_COLON_EQ] = ACTIONS(3947), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3945), + [sym_int] = ACTIONS(3945), + [sym_xint] = ACTIONS(3947), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3947), + [sym__newline] = ACTIONS(3947), }, [2776] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3588), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2776), [sym_block_comment] = STATE(2776), [sym_line_comment] = STATE(2776), [sym_compiler_directive_decl] = STATE(2776), [sym_fsi_directive_decl] = STATE(2776), [sym_preproc_line] = STATE(2776), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_do] = ACTIONS(3941), + [anon_sym_let] = ACTIONS(3941), + [anon_sym_let_BANG] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LBRACK_PIPE] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_LT_AT] = ACTIONS(3941), + [anon_sym_LT_AT_AT] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE_PIPE] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_return_BANG] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3941), + [anon_sym_yield_BANG] = ACTIONS(3943), + [anon_sym_lazy] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_upcast] = ACTIONS(3941), + [anon_sym_downcast] = ACTIONS(3941), + [anon_sym_COLON_GT] = ACTIONS(3943), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_while] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_fun] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_match_BANG] = ACTIONS(3943), + [anon_sym_function] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [anon_sym_DOT_LBRACK] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_use] = ACTIONS(3941), + [anon_sym_use_BANG] = ACTIONS(3943), + [anon_sym_do_BANG] = ACTIONS(3943), + [anon_sym_begin] = ACTIONS(3941), + [anon_sym_LPAREN2] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3941), + [aux_sym_char_token1] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_AT_DQUOTE] = ACTIONS(3943), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3943), + [sym_bool] = ACTIONS(3941), + [sym_unit] = ACTIONS(3941), + [anon_sym_LPAREN_PIPE] = ACTIONS(3941), + [sym_op_identifier] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_PLUS_DOT] = ACTIONS(3941), + [anon_sym_DASH_DOT] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3943), + [aux_sym_prefix_op_token1] = ACTIONS(3941), + [aux_sym_infix_op_token1] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), + [anon_sym_COLON_EQ] = ACTIONS(3943), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3941), + [sym_int] = ACTIONS(3941), + [sym_xint] = ACTIONS(3943), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3943), + [sym__newline] = ACTIONS(3943), }, [2777] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5224), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2777), [sym_block_comment] = STATE(2777), [sym_line_comment] = STATE(2777), [sym_compiler_directive_decl] = STATE(2777), [sym_fsi_directive_decl] = STATE(2777), [sym_preproc_line] = STATE(2777), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3679), + [anon_sym_EQ] = ACTIONS(3546), + [anon_sym_COLON] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_do] = ACTIONS(3679), + [anon_sym_let] = ACTIONS(3679), + [anon_sym_let_BANG] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_null] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3679), + [anon_sym_COLON_QMARK] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3679), + [anon_sym_LBRACK] = ACTIONS(3679), + [anon_sym_LBRACK_PIPE] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3679), + [anon_sym_LT_AT] = ACTIONS(3679), + [anon_sym_AT_GT] = ACTIONS(3679), + [anon_sym_LT_AT_AT] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3679), + [anon_sym_LBRACE_PIPE] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_return_BANG] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_yield_BANG] = ACTIONS(3546), + [anon_sym_lazy] = ACTIONS(3679), + [anon_sym_assert] = ACTIONS(3679), + [anon_sym_upcast] = ACTIONS(3679), + [anon_sym_downcast] = ACTIONS(3679), + [anon_sym_COLON_GT] = ACTIONS(3546), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_fun] = ACTIONS(3679), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_match_BANG] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3679), + [anon_sym_LT_DASH] = ACTIONS(3679), + [anon_sym_DOT_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_use] = ACTIONS(3679), + [anon_sym_use_BANG] = ACTIONS(3546), + [anon_sym_do_BANG] = ACTIONS(3546), + [anon_sym_begin] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_or] = ACTIONS(3679), + [aux_sym_char_token1] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3679), + [anon_sym_DQUOTE] = ACTIONS(3679), + [anon_sym_AT_DQUOTE] = ACTIONS(3546), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3546), + [sym_bool] = ACTIONS(3679), + [sym_unit] = ACTIONS(3679), + [anon_sym_LPAREN_PIPE] = ACTIONS(3679), + [sym_op_identifier] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(3679), + [anon_sym_DASH] = ACTIONS(3679), + [anon_sym_PLUS_DOT] = ACTIONS(3679), + [anon_sym_DASH_DOT] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_TILDE] = ACTIONS(3546), + [aux_sym_prefix_op_token1] = ACTIONS(3679), + [aux_sym_infix_op_token1] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_COLON_EQ] = ACTIONS(3546), + [anon_sym_DOLLAR] = ACTIONS(3679), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3679), + [sym_int] = ACTIONS(3679), + [sym_xint] = ACTIONS(3546), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3546), + [sym__newline] = ACTIONS(3546), }, [2778] = { [sym_xml_doc] = STATE(2778), @@ -337510,244 +343534,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2778), [sym_fsi_directive_decl] = STATE(2778), [sym_preproc_line] = STATE(2778), - [sym_identifier] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_open] = ACTIONS(3167), - [anon_sym_LBRACK_LT] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_and] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [aux_sym_access_modifier_token1] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_member] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_val] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3169), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3169), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3169), - [anon_sym_POUNDload] = ACTIONS(3169), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3689), + [anon_sym_EQ] = ACTIONS(3691), + [anon_sym_COLON] = ACTIONS(3689), + [anon_sym_return] = ACTIONS(3689), + [anon_sym_do] = ACTIONS(3689), + [anon_sym_let] = ACTIONS(3689), + [anon_sym_let_BANG] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_null] = ACTIONS(3689), + [anon_sym_QMARK] = ACTIONS(3689), + [anon_sym_COLON_QMARK] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_LBRACK_PIPE] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_LT_AT] = ACTIONS(3689), + [anon_sym_AT_GT] = ACTIONS(3689), + [anon_sym_LT_AT_AT] = ACTIONS(3689), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_LBRACE_PIPE] = ACTIONS(3691), + [anon_sym_new] = ACTIONS(3689), + [anon_sym_return_BANG] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3689), + [anon_sym_yield_BANG] = ACTIONS(3691), + [anon_sym_lazy] = ACTIONS(3689), + [anon_sym_assert] = ACTIONS(3689), + [anon_sym_upcast] = ACTIONS(3689), + [anon_sym_downcast] = ACTIONS(3689), + [anon_sym_COLON_GT] = ACTIONS(3691), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3689), + [anon_sym_while] = ACTIONS(3689), + [anon_sym_if] = ACTIONS(3689), + [anon_sym_fun] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3689), + [anon_sym_match] = ACTIONS(3689), + [anon_sym_match_BANG] = ACTIONS(3691), + [anon_sym_function] = ACTIONS(3689), + [anon_sym_LT_DASH] = ACTIONS(3689), + [anon_sym_DOT_LBRACK] = ACTIONS(3691), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_use] = ACTIONS(3689), + [anon_sym_use_BANG] = ACTIONS(3691), + [anon_sym_do_BANG] = ACTIONS(3691), + [anon_sym_begin] = ACTIONS(3689), + [anon_sym_LPAREN2] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3689), + [aux_sym_char_token1] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [anon_sym_AT_DQUOTE] = ACTIONS(3691), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3691), + [sym_bool] = ACTIONS(3689), + [sym_unit] = ACTIONS(3689), + [anon_sym_LPAREN_PIPE] = ACTIONS(3689), + [sym_op_identifier] = ACTIONS(3689), + [anon_sym_PLUS] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_PLUS_DOT] = ACTIONS(3689), + [anon_sym_DASH_DOT] = ACTIONS(3689), + [anon_sym_PERCENT] = ACTIONS(3689), + [anon_sym_AMP_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3691), + [aux_sym_prefix_op_token1] = ACTIONS(3689), + [aux_sym_infix_op_token1] = ACTIONS(3689), + [anon_sym_PIPE_PIPE] = ACTIONS(3689), + [anon_sym_BANG_EQ] = ACTIONS(3689), + [anon_sym_COLON_EQ] = ACTIONS(3691), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3689), + [sym_int] = ACTIONS(3689), + [sym_xint] = ACTIONS(3691), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3691), + [sym__newline] = ACTIONS(3691), }, [2779] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5444), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2779), [sym_block_comment] = STATE(2779), [sym_line_comment] = STATE(2779), [sym_compiler_directive_decl] = STATE(2779), [sym_fsi_directive_decl] = STATE(2779), [sym_preproc_line] = STATE(2779), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym_identifier] = ACTIONS(3697), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_COLON] = ACTIONS(3697), + [anon_sym_return] = ACTIONS(3697), + [anon_sym_do] = ACTIONS(3697), + [anon_sym_let] = ACTIONS(3697), + [anon_sym_let_BANG] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_null] = ACTIONS(3697), + [anon_sym_QMARK] = ACTIONS(3697), + [anon_sym_COLON_QMARK] = ACTIONS(3697), + [anon_sym_COLON_COLON] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_LBRACK_PIPE] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_LT_AT] = ACTIONS(3697), + [anon_sym_AT_GT] = ACTIONS(3697), + [anon_sym_LT_AT_AT] = ACTIONS(3697), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_LBRACE_PIPE] = ACTIONS(3699), + [anon_sym_new] = ACTIONS(3697), + [anon_sym_return_BANG] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3697), + [anon_sym_yield_BANG] = ACTIONS(3699), + [anon_sym_lazy] = ACTIONS(3697), + [anon_sym_assert] = ACTIONS(3697), + [anon_sym_upcast] = ACTIONS(3697), + [anon_sym_downcast] = ACTIONS(3697), + [anon_sym_COLON_GT] = ACTIONS(3699), + [anon_sym_COLON_QMARK_GT] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3697), + [anon_sym_while] = ACTIONS(3697), + [anon_sym_if] = ACTIONS(3697), + [anon_sym_fun] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3697), + [anon_sym_match] = ACTIONS(3697), + [anon_sym_match_BANG] = ACTIONS(3699), + [anon_sym_function] = ACTIONS(3697), + [anon_sym_LT_DASH] = ACTIONS(3697), + [anon_sym_DOT_LBRACK] = ACTIONS(3699), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_use] = ACTIONS(3697), + [anon_sym_use_BANG] = ACTIONS(3699), + [anon_sym_do_BANG] = ACTIONS(3699), + [anon_sym_begin] = ACTIONS(3697), + [anon_sym_LPAREN2] = ACTIONS(3699), + [anon_sym_or] = ACTIONS(3697), + [aux_sym_char_token1] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [anon_sym_AT_DQUOTE] = ACTIONS(3699), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3699), + [sym_bool] = ACTIONS(3697), + [sym_unit] = ACTIONS(3697), + [anon_sym_LPAREN_PIPE] = ACTIONS(3697), + [sym_op_identifier] = ACTIONS(3697), + [anon_sym_PLUS] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_PLUS_DOT] = ACTIONS(3697), + [anon_sym_DASH_DOT] = ACTIONS(3697), + [anon_sym_PERCENT] = ACTIONS(3697), + [anon_sym_AMP_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3699), + [aux_sym_prefix_op_token1] = ACTIONS(3697), + [aux_sym_infix_op_token1] = ACTIONS(3697), + [anon_sym_PIPE_PIPE] = ACTIONS(3697), + [anon_sym_BANG_EQ] = ACTIONS(3697), + [anon_sym_COLON_EQ] = ACTIONS(3699), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_QMARK_LT_DASH] = ACTIONS(3697), + [sym_int] = ACTIONS(3697), + [sym_xint] = ACTIONS(3699), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(3), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3699), + [sym__newline] = ACTIONS(3699), }, [2780] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5411), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(2994), + [sym__method_defn] = STATE(5314), + [sym__property_defn] = STATE(5313), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2780), [sym_block_comment] = STATE(2780), [sym_line_comment] = STATE(2780), [sym_compiler_directive_decl] = STATE(2780), [sym_fsi_directive_decl] = STATE(2780), [sym_preproc_line] = STATE(2780), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2954), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5025), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -337756,250 +343803,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2781] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5223), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2781), [sym_block_comment] = STATE(2781), [sym_line_comment] = STATE(2781), [sym_compiler_directive_decl] = STATE(2781), [sym_fsi_directive_decl] = STATE(2781), [sym_preproc_line] = STATE(2781), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_long_identifier_repeat1] = STATE(2781), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_and] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [aux_sym_access_modifier_token1] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_member] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_val] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [2782] = { + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2782), [sym_block_comment] = STATE(2782), [sym_line_comment] = STATE(2782), [sym_compiler_directive_decl] = STATE(2782), [sym_fsi_directive_decl] = STATE(2782), [sym_preproc_line] = STATE(2782), - [sym_identifier] = ACTIONS(4868), - [anon_sym_module] = ACTIONS(4868), - [anon_sym_open] = ACTIONS(4868), - [anon_sym_LBRACK_LT] = ACTIONS(4866), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_type] = ACTIONS(4868), - [anon_sym_do] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_let_BANG] = ACTIONS(4866), - [aux_sym_access_modifier_token1] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(5028), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_LBRACK_PIPE] = ACTIONS(4866), - [anon_sym_LBRACE] = ACTIONS(4868), - [anon_sym_LBRACE_PIPE] = ACTIONS(4866), - [anon_sym_new] = ACTIONS(4868), - [anon_sym_return_BANG] = ACTIONS(4866), - [anon_sym_yield] = ACTIONS(4868), - [anon_sym_yield_BANG] = ACTIONS(4866), - [anon_sym_lazy] = ACTIONS(4868), - [anon_sym_assert] = ACTIONS(4868), - [anon_sym_upcast] = ACTIONS(4868), - [anon_sym_downcast] = ACTIONS(4868), - [anon_sym_LT_AT] = ACTIONS(4868), - [anon_sym_LT_AT_AT] = ACTIONS(4866), - [anon_sym_for] = ACTIONS(4868), - [anon_sym_while] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_match] = ACTIONS(4868), - [anon_sym_match_BANG] = ACTIONS(4866), - [anon_sym_function] = ACTIONS(4868), - [anon_sym_use] = ACTIONS(4868), - [anon_sym_use_BANG] = ACTIONS(4866), - [anon_sym_do_BANG] = ACTIONS(4866), - [anon_sym_begin] = ACTIONS(4868), - [anon_sym_default] = ACTIONS(4868), - [anon_sym_static] = ACTIONS(4868), - [anon_sym_member] = ACTIONS(4868), - [anon_sym_abstract] = ACTIONS(4868), - [anon_sym_override] = ACTIONS(4868), - [anon_sym_val] = ACTIONS(4868), - [aux_sym_char_token1] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4868), - [anon_sym_DQUOTE] = ACTIONS(4868), - [anon_sym_AT_DQUOTE] = ACTIONS(4866), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4866), - [sym_bool] = ACTIONS(4868), - [sym_unit] = ACTIONS(4866), - [anon_sym_LPAREN_PIPE] = ACTIONS(4868), - [sym_op_identifier] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_PLUS_DOT] = ACTIONS(4866), - [anon_sym_DASH_DOT] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [aux_sym_prefix_op_token1] = ACTIONS(4866), - [sym_int] = ACTIONS(4868), - [sym_xint] = ACTIONS(4866), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4866), - [anon_sym_POUNDload] = ACTIONS(4866), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4866), - [sym__dedent] = ACTIONS(4866), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(4981), + [anon_sym_open] = ACTIONS(4981), + [anon_sym_LBRACK_LT] = ACTIONS(4979), + [anon_sym_return] = ACTIONS(4981), + [anon_sym_type] = ACTIONS(4981), + [anon_sym_do] = ACTIONS(4981), + [anon_sym_and] = ACTIONS(4981), + [anon_sym_let] = ACTIONS(4981), + [anon_sym_let_BANG] = ACTIONS(4979), + [aux_sym_access_modifier_token1] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_null] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_LBRACK_PIPE] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(4981), + [anon_sym_LT_AT] = ACTIONS(4981), + [anon_sym_LT_AT_AT] = ACTIONS(4979), + [anon_sym_LBRACE_PIPE] = ACTIONS(4979), + [anon_sym_with] = ACTIONS(4981), + [anon_sym_new] = ACTIONS(4981), + [anon_sym_return_BANG] = ACTIONS(4979), + [anon_sym_yield] = ACTIONS(4981), + [anon_sym_yield_BANG] = ACTIONS(4979), + [anon_sym_lazy] = ACTIONS(4981), + [anon_sym_assert] = ACTIONS(4981), + [anon_sym_upcast] = ACTIONS(4981), + [anon_sym_downcast] = ACTIONS(4981), + [anon_sym_for] = ACTIONS(4981), + [anon_sym_while] = ACTIONS(4981), + [anon_sym_if] = ACTIONS(4981), + [anon_sym_fun] = ACTIONS(4981), + [anon_sym_DASH_GT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4981), + [anon_sym_match] = ACTIONS(4981), + [anon_sym_match_BANG] = ACTIONS(4979), + [anon_sym_function] = ACTIONS(4981), + [anon_sym_use] = ACTIONS(4981), + [anon_sym_use_BANG] = ACTIONS(4979), + [anon_sym_do_BANG] = ACTIONS(4979), + [anon_sym_begin] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(4981), + [anon_sym_static] = ACTIONS(4981), + [anon_sym_member] = ACTIONS(4981), + [anon_sym_abstract] = ACTIONS(4981), + [anon_sym_override] = ACTIONS(4981), + [anon_sym_val] = ACTIONS(4981), + [aux_sym_char_token1] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4981), + [anon_sym_DQUOTE] = ACTIONS(4981), + [anon_sym_AT_DQUOTE] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4979), + [sym_bool] = ACTIONS(4981), + [sym_unit] = ACTIONS(4979), + [anon_sym_LPAREN_PIPE] = ACTIONS(4981), + [sym_op_identifier] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_PLUS_DOT] = ACTIONS(4979), + [anon_sym_DASH_DOT] = ACTIONS(4979), + [anon_sym_PERCENT] = ACTIONS(4979), + [anon_sym_AMP_AMP] = ACTIONS(4979), + [anon_sym_TILDE] = ACTIONS(4979), + [aux_sym_prefix_op_token1] = ACTIONS(4979), + [sym_int] = ACTIONS(4981), + [sym_xint] = ACTIONS(4979), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4979), + [anon_sym_POUNDload] = ACTIONS(4979), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4979), + [sym__dedent] = ACTIONS(4979), }, [2783] = { - [sym_attributes] = STATE(2686), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5102), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2258), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3925), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2783), [sym_block_comment] = STATE(2783), [sym_line_comment] = STATE(2783), [sym_compiler_directive_decl] = STATE(2783), [sym_fsi_directive_decl] = STATE(2783), [sym_preproc_line] = STATE(2783), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4330), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4762), + [anon_sym_LBRACK_LT] = ACTIONS(4762), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4764), + [anon_sym__] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4762), + [anon_sym_COLON_QMARK] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_LBRACK_PIPE] = ACTIONS(4762), + [anon_sym_LBRACE] = ACTIONS(4762), + [aux_sym_char_token1] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [anon_sym_AT_DQUOTE] = ACTIONS(4762), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4762), + [sym_bool] = ACTIONS(4764), + [sym_unit] = ACTIONS(4762), + [anon_sym_LPAREN_PIPE] = ACTIONS(4764), + [sym_op_identifier] = ACTIONS(4762), + [sym_int] = ACTIONS(4764), + [sym_xint] = ACTIONS(4762), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -338008,82 +344076,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2784] = { - [sym_attributes] = STATE(2750), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5294), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2367), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(2998), + [sym__method_defn] = STATE(3200), + [sym__property_defn] = STATE(3199), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2784), [sym_block_comment] = STATE(2784), [sym_line_comment] = STATE(2784), [sym_compiler_directive_decl] = STATE(2784), [sym_fsi_directive_decl] = STATE(2784), [sym_preproc_line] = STATE(2784), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4413), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4417), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4421), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2968), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5032), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5034), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -338092,334 +344167,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2785] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6328), + [sym_function_declaration_left] = STATE(7085), + [sym_value_declaration_left] = STATE(7085), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2785), [sym_block_comment] = STATE(2785), [sym_line_comment] = STATE(2785), [sym_compiler_directive_decl] = STATE(2785), [sym_fsi_directive_decl] = STATE(2785), [sym_preproc_line] = STATE(2785), - [sym_identifier] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2520), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2520), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_y] = ACTIONS(4732), - [anon_sym_uy] = ACTIONS(4734), - [anon_sym_s] = ACTIONS(4736), - [anon_sym_us] = ACTIONS(4738), - [anon_sym_l] = ACTIONS(4740), - [aux_sym_uint32_token1] = ACTIONS(4742), - [anon_sym_n] = ACTIONS(4744), - [anon_sym_un] = ACTIONS(4746), - [anon_sym_L] = ACTIONS(4748), - [aux_sym_uint64_token1] = ACTIONS(4750), - [anon_sym_lf] = ACTIONS(5030), - [anon_sym_LF] = ACTIONS(5032), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2786] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5419), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2786), [sym_block_comment] = STATE(2786), [sym_line_comment] = STATE(2786), [sym_compiler_directive_decl] = STATE(2786), [sym_fsi_directive_decl] = STATE(2786), [sym_preproc_line] = STATE(2786), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(5036), + [sym_identifier] = ACTIONS(5038), + [anon_sym_namespace] = ACTIONS(5038), + [anon_sym_module] = ACTIONS(5038), + [anon_sym_open] = ACTIONS(5038), + [anon_sym_LBRACK_LT] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5038), + [anon_sym_type] = ACTIONS(5038), + [anon_sym_do] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_let] = ACTIONS(5038), + [anon_sym_let_BANG] = ACTIONS(5036), + [aux_sym_access_modifier_token1] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_null] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_LBRACK_PIPE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_LT_AT] = ACTIONS(5038), + [anon_sym_LT_AT_AT] = ACTIONS(5036), + [anon_sym_LBRACE_PIPE] = ACTIONS(5036), + [anon_sym_new] = ACTIONS(5038), + [anon_sym_return_BANG] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5038), + [anon_sym_yield_BANG] = ACTIONS(5036), + [anon_sym_lazy] = ACTIONS(5038), + [anon_sym_assert] = ACTIONS(5038), + [anon_sym_upcast] = ACTIONS(5038), + [anon_sym_downcast] = ACTIONS(5038), + [anon_sym_for] = ACTIONS(5038), + [anon_sym_while] = ACTIONS(5038), + [anon_sym_if] = ACTIONS(5038), + [anon_sym_fun] = ACTIONS(5038), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(5038), + [anon_sym_match] = ACTIONS(5038), + [anon_sym_match_BANG] = ACTIONS(5036), + [anon_sym_function] = ACTIONS(5038), + [anon_sym_use] = ACTIONS(5038), + [anon_sym_use_BANG] = ACTIONS(5036), + [anon_sym_do_BANG] = ACTIONS(5036), + [anon_sym_begin] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(5038), + [anon_sym_static] = ACTIONS(5038), + [anon_sym_member] = ACTIONS(5038), + [anon_sym_abstract] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_val] = ACTIONS(5038), + [aux_sym_char_token1] = ACTIONS(5036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [anon_sym_AT_DQUOTE] = ACTIONS(5036), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5036), + [sym_bool] = ACTIONS(5038), + [sym_unit] = ACTIONS(5036), + [anon_sym_LPAREN_PIPE] = ACTIONS(5038), + [sym_op_identifier] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS_DOT] = ACTIONS(5036), + [anon_sym_DASH_DOT] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [aux_sym_prefix_op_token1] = ACTIONS(5036), + [sym_int] = ACTIONS(5038), + [sym_xint] = ACTIONS(5036), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5036), + [anon_sym_POUNDload] = ACTIONS(5036), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5036), }, [2787] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5228), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(5463), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8266), + [sym_member_defn] = STATE(3134), + [sym_additional_constr_defn] = STATE(3164), [sym_xml_doc] = STATE(2787), [sym_block_comment] = STATE(2787), [sym_line_comment] = STATE(2787), [sym_compiler_directive_decl] = STATE(2787), [sym_fsi_directive_decl] = STATE(2787), [sym_preproc_line] = STATE(2787), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2817), + [ts_builtin_sym_end] = ACTIONS(5040), + [sym_identifier] = ACTIONS(5042), + [anon_sym_namespace] = ACTIONS(5042), + [anon_sym_module] = ACTIONS(5042), + [anon_sym_open] = ACTIONS(5042), + [anon_sym_LBRACK_LT] = ACTIONS(5040), + [anon_sym_return] = ACTIONS(5042), + [anon_sym_type] = ACTIONS(5042), + [anon_sym_do] = ACTIONS(5042), + [anon_sym_and] = ACTIONS(5042), + [anon_sym_let] = ACTIONS(5042), + [anon_sym_let_BANG] = ACTIONS(5040), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_null] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_LBRACK_PIPE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_LT_AT] = ACTIONS(5042), + [anon_sym_LT_AT_AT] = ACTIONS(5040), + [anon_sym_LBRACE_PIPE] = ACTIONS(5040), + [anon_sym_new] = ACTIONS(5042), + [anon_sym_return_BANG] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5042), + [anon_sym_yield_BANG] = ACTIONS(5040), + [anon_sym_lazy] = ACTIONS(5042), + [anon_sym_assert] = ACTIONS(5042), + [anon_sym_upcast] = ACTIONS(5042), + [anon_sym_downcast] = ACTIONS(5042), + [anon_sym_for] = ACTIONS(5042), + [anon_sym_while] = ACTIONS(5042), + [anon_sym_if] = ACTIONS(5042), + [anon_sym_fun] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5042), + [anon_sym_match] = ACTIONS(5042), + [anon_sym_match_BANG] = ACTIONS(5040), + [anon_sym_function] = ACTIONS(5042), + [anon_sym_use] = ACTIONS(5042), + [anon_sym_use_BANG] = ACTIONS(5040), + [anon_sym_do_BANG] = ACTIONS(5040), + [anon_sym_begin] = ACTIONS(5042), + [anon_sym_default] = ACTIONS(5044), + [anon_sym_static] = ACTIONS(5046), + [anon_sym_member] = ACTIONS(5048), + [anon_sym_abstract] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5044), + [anon_sym_val] = ACTIONS(5052), + [aux_sym_char_token1] = ACTIONS(5040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [anon_sym_AT_DQUOTE] = ACTIONS(5040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5040), + [sym_bool] = ACTIONS(5042), + [sym_unit] = ACTIONS(5040), + [anon_sym_LPAREN_PIPE] = ACTIONS(5042), + [sym_op_identifier] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PLUS_DOT] = ACTIONS(5040), + [anon_sym_DASH_DOT] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [aux_sym_prefix_op_token1] = ACTIONS(5040), + [sym_int] = ACTIONS(5042), + [sym_xint] = ACTIONS(5040), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5040), + [anon_sym_POUNDload] = ACTIONS(5040), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5040), }, [2788] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5462), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(4752), + [sym_function_declaration_left] = STATE(6935), + [sym_value_declaration_left] = STATE(6935), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2788), [sym_block_comment] = STATE(2788), [sym_line_comment] = STATE(2788), [sym_compiler_directive_decl] = STATE(2788), [sym_fsi_directive_decl] = STATE(2788), [sym_preproc_line] = STATE(2788), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -338428,88 +344531,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2789] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5415), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2789), [sym_block_comment] = STATE(2789), [sym_line_comment] = STATE(2789), [sym_compiler_directive_decl] = STATE(2789), [sym_fsi_directive_decl] = STATE(2789), [sym_preproc_line] = STATE(2789), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5020), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_and] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [aux_sym_access_modifier_token1] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5054), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_member] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_val] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), }, [2790] = { [sym_xml_doc] = STATE(2790), @@ -338518,244 +344628,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2790), [sym_fsi_directive_decl] = STATE(2790), [sym_preproc_line] = STATE(2790), - [ts_builtin_sym_end] = ACTIONS(5034), - [sym_identifier] = ACTIONS(5036), - [anon_sym_namespace] = ACTIONS(5036), - [anon_sym_module] = ACTIONS(5036), - [anon_sym_open] = ACTIONS(5036), - [anon_sym_LBRACK_LT] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5036), - [anon_sym_type] = ACTIONS(5036), - [anon_sym_do] = ACTIONS(5036), - [anon_sym_and] = ACTIONS(5036), - [anon_sym_let] = ACTIONS(5036), - [anon_sym_let_BANG] = ACTIONS(5034), - [aux_sym_access_modifier_token1] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LBRACK] = ACTIONS(5036), - [anon_sym_LBRACK_PIPE] = ACTIONS(5034), - [anon_sym_LBRACE] = ACTIONS(5036), - [anon_sym_LBRACE_PIPE] = ACTIONS(5034), - [anon_sym_new] = ACTIONS(5036), - [anon_sym_return_BANG] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5036), - [anon_sym_yield_BANG] = ACTIONS(5034), - [anon_sym_lazy] = ACTIONS(5036), - [anon_sym_assert] = ACTIONS(5036), - [anon_sym_upcast] = ACTIONS(5036), - [anon_sym_downcast] = ACTIONS(5036), - [anon_sym_LT_AT] = ACTIONS(5036), - [anon_sym_LT_AT_AT] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5036), - [anon_sym_while] = ACTIONS(5036), - [anon_sym_if] = ACTIONS(5036), - [anon_sym_fun] = ACTIONS(5036), - [anon_sym_try] = ACTIONS(5036), - [anon_sym_match] = ACTIONS(5036), - [anon_sym_match_BANG] = ACTIONS(5034), - [anon_sym_function] = ACTIONS(5036), - [anon_sym_use] = ACTIONS(5036), - [anon_sym_use_BANG] = ACTIONS(5034), - [anon_sym_do_BANG] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5036), - [anon_sym_default] = ACTIONS(5036), - [anon_sym_static] = ACTIONS(5036), - [anon_sym_member] = ACTIONS(5036), - [anon_sym_abstract] = ACTIONS(5036), - [anon_sym_override] = ACTIONS(5036), - [anon_sym_val] = ACTIONS(5036), - [aux_sym_char_token1] = ACTIONS(5034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5036), - [anon_sym_DQUOTE] = ACTIONS(5036), - [anon_sym_AT_DQUOTE] = ACTIONS(5034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5034), - [sym_bool] = ACTIONS(5036), - [sym_unit] = ACTIONS(5034), - [anon_sym_LPAREN_PIPE] = ACTIONS(5036), - [sym_op_identifier] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_PLUS_DOT] = ACTIONS(5034), - [anon_sym_DASH_DOT] = ACTIONS(5034), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_TILDE] = ACTIONS(5034), - [aux_sym_prefix_op_token1] = ACTIONS(5034), - [sym_int] = ACTIONS(5036), - [sym_xint] = ACTIONS(5034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5034), - [anon_sym_POUNDload] = ACTIONS(5034), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5034), + [aux_sym__compound_type_repeat1] = STATE(2790), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_and] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [aux_sym_access_modifier_token1] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5056), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_member] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_override] = ACTIONS(3032), + [anon_sym_val] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), }, [2791] = { - [sym_attributes] = STATE(2661), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5344), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2363), - [sym_long_identifier] = STATE(3393), - [sym_active_pattern] = STATE(3423), - [sym__identifier_or_op] = STATE(3427), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2791), [sym_block_comment] = STATE(2791), [sym_line_comment] = STATE(2791), [sym_compiler_directive_decl] = STATE(2791), [sym_fsi_directive_decl] = STATE(2791), [sym_preproc_line] = STATE(2791), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4322), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_COLON_QMARK] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4406), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4348), - [sym_op_identifier] = ACTIONS(4350), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [sym_identifier] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_open] = ACTIONS(3274), + [anon_sym_LBRACK_LT] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_and] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [aux_sym_access_modifier_token1] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_or] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_member] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_val] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(3276), + [anon_sym_POUNDload] = ACTIONS(3276), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), }, [2792] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3545), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(3003), + [sym__method_defn] = STATE(5345), + [sym__property_defn] = STATE(5394), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2792), [sym_block_comment] = STATE(2792), [sym_line_comment] = STATE(2792), [sym_compiler_directive_decl] = STATE(2792), [sym_fsi_directive_decl] = STATE(2792), [sym_preproc_line] = STATE(2792), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2966), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5061), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -338764,166 +344895,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2793] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6429), + [sym_function_declaration_left] = STATE(7044), + [sym_value_declaration_left] = STATE(7044), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2793), [sym_block_comment] = STATE(2793), [sym_line_comment] = STATE(2793), [sym_compiler_directive_decl] = STATE(2793), [sym_fsi_directive_decl] = STATE(2793), [sym_preproc_line] = STATE(2793), - [sym_identifier] = ACTIONS(4894), - [anon_sym_module] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_LBRACK_LT] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_type] = ACTIONS(4894), - [anon_sym_do] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_let_BANG] = ACTIONS(4892), - [aux_sym_access_modifier_token1] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_LBRACK_PIPE] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4894), - [anon_sym_LBRACE_PIPE] = ACTIONS(4892), - [anon_sym_new] = ACTIONS(4894), - [anon_sym_return_BANG] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4894), - [anon_sym_yield_BANG] = ACTIONS(4892), - [anon_sym_lazy] = ACTIONS(4894), - [anon_sym_assert] = ACTIONS(4894), - [anon_sym_upcast] = ACTIONS(4894), - [anon_sym_downcast] = ACTIONS(4894), - [anon_sym_LT_AT] = ACTIONS(4894), - [anon_sym_LT_AT_AT] = ACTIONS(4892), - [anon_sym_for] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_match] = ACTIONS(4894), - [anon_sym_match_BANG] = ACTIONS(4892), - [anon_sym_function] = ACTIONS(4894), - [anon_sym_use] = ACTIONS(4894), - [anon_sym_use_BANG] = ACTIONS(4892), - [anon_sym_do_BANG] = ACTIONS(4892), - [anon_sym_begin] = ACTIONS(4894), - [anon_sym_default] = ACTIONS(4894), - [anon_sym_static] = ACTIONS(4894), - [anon_sym_member] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_val] = ACTIONS(4894), - [aux_sym_char_token1] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_AT_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [sym_bool] = ACTIONS(4894), - [sym_unit] = ACTIONS(4892), - [anon_sym_LPAREN_PIPE] = ACTIONS(4894), - [sym_op_identifier] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_PLUS_DOT] = ACTIONS(4892), - [anon_sym_DASH_DOT] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_TILDE] = ACTIONS(4892), - [aux_sym_prefix_op_token1] = ACTIONS(4892), - [sym_int] = ACTIONS(4894), - [sym_xint] = ACTIONS(4892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4892), - [anon_sym_POUNDload] = ACTIONS(4892), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4892), - [sym__dedent] = ACTIONS(4892), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2794] = { - [sym_attributes] = STATE(2787), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5220), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2358), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(3004), + [sym__method_defn] = STATE(5363), + [sym__property_defn] = STATE(5329), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2794), [sym_block_comment] = STATE(2794), [sym_line_comment] = STATE(2794), [sym_compiler_directive_decl] = STATE(2794), [sym_fsi_directive_decl] = STATE(2794), [sym_preproc_line] = STATE(2794), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4396), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4398), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2963), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5065), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -338932,82 +345077,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2795] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5454), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3529), + [sym_function_declaration_left] = STATE(6986), + [sym_value_declaration_left] = STATE(6986), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2795), [sym_block_comment] = STATE(2795), [sym_line_comment] = STATE(2795), [sym_compiler_directive_decl] = STATE(2795), [sym_fsi_directive_decl] = STATE(2795), [sym_preproc_line] = STATE(2795), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -339016,166 +345168,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2796] = { - [sym_attributes] = STATE(2673), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3705), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2368), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), [sym_xml_doc] = STATE(2796), [sym_block_comment] = STATE(2796), [sym_line_comment] = STATE(2796), [sym_compiler_directive_decl] = STATE(2796), [sym_fsi_directive_decl] = STATE(2796), [sym_preproc_line] = STATE(2796), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4928), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_long_identifier_repeat1] = STATE(2821), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_and] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [aux_sym_access_modifier_token1] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_member] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_val] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), }, [2797] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5100), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5875), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2797), [sym_block_comment] = STATE(2797), [sym_line_comment] = STATE(2797), [sym_compiler_directive_decl] = STATE(2797), [sym_fsi_directive_decl] = STATE(2797), [sym_preproc_line] = STATE(2797), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_as] = ACTIONS(4764), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_COMMA] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym_PIPE] = ACTIONS(4762), + [anon_sym_AMP] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [anon_sym_in] = ACTIONS(4764), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -339184,166 +345350,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2798] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5448), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), [sym_xml_doc] = STATE(2798), [sym_block_comment] = STATE(2798), [sym_line_comment] = STATE(2798), [sym_compiler_directive_decl] = STATE(2798), [sym_fsi_directive_decl] = STATE(2798), [sym_preproc_line] = STATE(2798), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_and] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [aux_sym_access_modifier_token1] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_member] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_val] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), }, [2799] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5433), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3419), + [sym_function_declaration_left] = STATE(7155), + [sym_value_declaration_left] = STATE(7155), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2799), [sym_block_comment] = STATE(2799), [sym_line_comment] = STATE(2799), [sym_compiler_directive_decl] = STATE(2799), [sym_fsi_directive_decl] = STATE(2799), [sym_preproc_line] = STATE(2799), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -339352,250 +345532,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2800] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2800), [sym_block_comment] = STATE(2800), [sym_line_comment] = STATE(2800), [sym_compiler_directive_decl] = STATE(2800), [sym_fsi_directive_decl] = STATE(2800), [sym_preproc_line] = STATE(2800), - [sym_identifier] = ACTIONS(4894), - [anon_sym_module] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_LBRACK_LT] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_type] = ACTIONS(4894), - [anon_sym_do] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_let_BANG] = ACTIONS(4892), - [aux_sym_access_modifier_token1] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(5040), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_AMP] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_LBRACK_PIPE] = ACTIONS(4892), - [anon_sym_LBRACE] = ACTIONS(4894), - [anon_sym_LBRACE_PIPE] = ACTIONS(4892), - [anon_sym_new] = ACTIONS(4894), - [anon_sym_return_BANG] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4894), - [anon_sym_yield_BANG] = ACTIONS(4892), - [anon_sym_lazy] = ACTIONS(4894), - [anon_sym_assert] = ACTIONS(4894), - [anon_sym_upcast] = ACTIONS(4894), - [anon_sym_downcast] = ACTIONS(4894), - [anon_sym_LT_AT] = ACTIONS(4894), - [anon_sym_LT_AT_AT] = ACTIONS(4892), - [anon_sym_for] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_match] = ACTIONS(4894), - [anon_sym_match_BANG] = ACTIONS(4892), - [anon_sym_function] = ACTIONS(4894), - [anon_sym_use] = ACTIONS(4894), - [anon_sym_use_BANG] = ACTIONS(4892), - [anon_sym_do_BANG] = ACTIONS(4892), - [anon_sym_begin] = ACTIONS(4894), - [anon_sym_default] = ACTIONS(4894), - [anon_sym_static] = ACTIONS(4894), - [anon_sym_member] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_val] = ACTIONS(4894), - [aux_sym_char_token1] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4894), - [anon_sym_DQUOTE] = ACTIONS(4894), - [anon_sym_AT_DQUOTE] = ACTIONS(4892), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4892), - [sym_bool] = ACTIONS(4894), - [sym_unit] = ACTIONS(4892), - [anon_sym_LPAREN_PIPE] = ACTIONS(4894), - [sym_op_identifier] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_PLUS_DOT] = ACTIONS(4892), - [anon_sym_DASH_DOT] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_TILDE] = ACTIONS(4892), - [aux_sym_prefix_op_token1] = ACTIONS(4892), - [sym_int] = ACTIONS(4894), - [sym_xint] = ACTIONS(4892), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4892), - [anon_sym_POUNDload] = ACTIONS(4892), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4892), - [sym__dedent] = ACTIONS(4892), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(5069), + [sym_identifier] = ACTIONS(5071), + [anon_sym_namespace] = ACTIONS(5071), + [anon_sym_module] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_LBRACK_LT] = ACTIONS(5069), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_type] = ACTIONS(5071), + [anon_sym_do] = ACTIONS(5071), + [anon_sym_and] = ACTIONS(5071), + [anon_sym_let] = ACTIONS(5071), + [anon_sym_let_BANG] = ACTIONS(5069), + [aux_sym_access_modifier_token1] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_AMP] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_LBRACK_PIPE] = ACTIONS(5069), + [anon_sym_LBRACE] = ACTIONS(5071), + [anon_sym_LT_AT] = ACTIONS(5071), + [anon_sym_LT_AT_AT] = ACTIONS(5069), + [anon_sym_LBRACE_PIPE] = ACTIONS(5069), + [anon_sym_new] = ACTIONS(5071), + [anon_sym_return_BANG] = ACTIONS(5069), + [anon_sym_yield] = ACTIONS(5071), + [anon_sym_yield_BANG] = ACTIONS(5069), + [anon_sym_lazy] = ACTIONS(5071), + [anon_sym_assert] = ACTIONS(5071), + [anon_sym_upcast] = ACTIONS(5071), + [anon_sym_downcast] = ACTIONS(5071), + [anon_sym_for] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_match] = ACTIONS(5071), + [anon_sym_match_BANG] = ACTIONS(5069), + [anon_sym_function] = ACTIONS(5071), + [anon_sym_use] = ACTIONS(5071), + [anon_sym_use_BANG] = ACTIONS(5069), + [anon_sym_do_BANG] = ACTIONS(5069), + [anon_sym_begin] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(5071), + [anon_sym_static] = ACTIONS(5071), + [anon_sym_member] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_val] = ACTIONS(5071), + [aux_sym_char_token1] = ACTIONS(5069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5071), + [anon_sym_DQUOTE] = ACTIONS(5071), + [anon_sym_AT_DQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5069), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5069), + [sym_bool] = ACTIONS(5071), + [sym_unit] = ACTIONS(5069), + [anon_sym_LPAREN_PIPE] = ACTIONS(5071), + [sym_op_identifier] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_PLUS_DOT] = ACTIONS(5069), + [anon_sym_DASH_DOT] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_TILDE] = ACTIONS(5069), + [aux_sym_prefix_op_token1] = ACTIONS(5069), + [sym_int] = ACTIONS(5071), + [sym_xint] = ACTIONS(5069), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5069), + [anon_sym_POUNDload] = ACTIONS(5069), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5069), }, [2801] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3586), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), [sym_xml_doc] = STATE(2801), [sym_block_comment] = STATE(2801), [sym_line_comment] = STATE(2801), [sym_compiler_directive_decl] = STATE(2801), [sym_fsi_directive_decl] = STATE(2801), [sym_preproc_line] = STATE(2801), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2790), + [ts_builtin_sym_end] = ACTIONS(3214), + [sym_identifier] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_open] = ACTIONS(3212), + [anon_sym_LBRACK_LT] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_and] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [aux_sym_access_modifier_token1] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_member] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_val] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3214), + [anon_sym_POUNDload] = ACTIONS(3214), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), }, [2802] = { - [sym_attributes] = STATE(2775), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3595), - [sym__pattern] = STATE(3577), - [sym_optional_pattern] = STATE(3595), - [sym_type_check_pattern] = STATE(3595), - [sym_attribute_pattern] = STATE(3595), - [sym_paren_pattern] = STATE(3595), - [sym_as_pattern] = STATE(3595), - [sym_cons_pattern] = STATE(3595), - [sym_disjunct_pattern] = STATE(3595), - [sym_conjunct_pattern] = STATE(3595), - [sym_typed_pattern] = STATE(3595), - [sym_list_pattern] = STATE(3595), - [sym_array_pattern] = STATE(3595), - [sym_record_pattern] = STATE(3595), - [sym_identifier_pattern] = STATE(3595), - [sym_char] = STATE(3337), - [sym_format_string] = STATE(3334), - [sym__string_literal] = STATE(3334), - [sym_string] = STATE(3337), - [sym_verbatim_string] = STATE(3337), - [sym_bytearray] = STATE(3337), - [sym_verbatim_bytearray] = STATE(3337), - [sym_format_triple_quoted_string] = STATE(3333), - [sym_triple_quoted_string] = STATE(3337), - [sym_const] = STATE(3595), - [sym_long_identifier_or_op] = STATE(2385), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3337), - [sym_byte] = STATE(3337), - [sym_int16] = STATE(3337), - [sym_uint16] = STATE(3337), - [sym_int32] = STATE(3337), - [sym_uint32] = STATE(3337), - [sym_nativeint] = STATE(3337), - [sym_unativeint] = STATE(3337), - [sym_int64] = STATE(3337), - [sym_uint64] = STATE(3337), - [sym_ieee32] = STATE(3337), - [sym_ieee64] = STATE(3337), - [sym_bignum] = STATE(3337), - [sym_decimal] = STATE(3337), - [sym_float] = STATE(3265), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6760), + [sym_function_declaration_left] = STATE(6949), + [sym_value_declaration_left] = STATE(6949), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2802), [sym_block_comment] = STATE(2802), [sym_line_comment] = STATE(2802), [sym_compiler_directive_decl] = STATE(2802), [sym_fsi_directive_decl] = STATE(2802), [sym_preproc_line] = STATE(2802), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_null] = ACTIONS(4541), - [anon_sym__] = ACTIONS(4543), - [anon_sym_QMARK] = ACTIONS(4545), - [anon_sym_COLON_QMARK] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_LBRACK_PIPE] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4553), - [aux_sym_char_token1] = ACTIONS(4298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), - [anon_sym_DQUOTE] = ACTIONS(4302), - [anon_sym_AT_DQUOTE] = ACTIONS(4304), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4306), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4308), - [sym_bool] = ACTIONS(4310), - [sym_unit] = ACTIONS(4312), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4318), - [sym_xint] = ACTIONS(4320), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -339604,166 +345805,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2803] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2803), [sym_block_comment] = STATE(2803), [sym_line_comment] = STATE(2803), [sym_compiler_directive_decl] = STATE(2803), [sym_fsi_directive_decl] = STATE(2803), [sym_preproc_line] = STATE(2803), - [sym_identifier] = ACTIONS(4862), - [anon_sym_module] = ACTIONS(4862), - [anon_sym_open] = ACTIONS(4862), - [anon_sym_LBRACK_LT] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4862), - [anon_sym_type] = ACTIONS(4862), - [anon_sym_do] = ACTIONS(4862), - [anon_sym_and] = ACTIONS(4862), - [anon_sym_let] = ACTIONS(4862), - [anon_sym_let_BANG] = ACTIONS(4860), - [aux_sym_access_modifier_token1] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(5042), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LBRACK_PIPE] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_LBRACE_PIPE] = ACTIONS(4860), - [anon_sym_new] = ACTIONS(4862), - [anon_sym_return_BANG] = ACTIONS(4860), - [anon_sym_yield] = ACTIONS(4862), - [anon_sym_yield_BANG] = ACTIONS(4860), - [anon_sym_lazy] = ACTIONS(4862), - [anon_sym_assert] = ACTIONS(4862), - [anon_sym_upcast] = ACTIONS(4862), - [anon_sym_downcast] = ACTIONS(4862), - [anon_sym_LT_AT] = ACTIONS(4862), - [anon_sym_LT_AT_AT] = ACTIONS(4860), - [anon_sym_for] = ACTIONS(4862), - [anon_sym_while] = ACTIONS(4862), - [anon_sym_if] = ACTIONS(4862), - [anon_sym_fun] = ACTIONS(4862), - [anon_sym_try] = ACTIONS(4862), - [anon_sym_match] = ACTIONS(4862), - [anon_sym_match_BANG] = ACTIONS(4860), - [anon_sym_function] = ACTIONS(4862), - [anon_sym_use] = ACTIONS(4862), - [anon_sym_use_BANG] = ACTIONS(4860), - [anon_sym_do_BANG] = ACTIONS(4860), - [anon_sym_begin] = ACTIONS(4862), - [anon_sym_default] = ACTIONS(4862), - [anon_sym_static] = ACTIONS(4862), - [anon_sym_member] = ACTIONS(4862), - [anon_sym_abstract] = ACTIONS(4862), - [anon_sym_override] = ACTIONS(4862), - [anon_sym_val] = ACTIONS(4862), - [aux_sym_char_token1] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4862), - [anon_sym_AT_DQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [sym_bool] = ACTIONS(4862), - [sym_unit] = ACTIONS(4860), - [anon_sym_LPAREN_PIPE] = ACTIONS(4862), - [sym_op_identifier] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_PLUS_DOT] = ACTIONS(4860), - [anon_sym_DASH_DOT] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_TILDE] = ACTIONS(4860), - [aux_sym_prefix_op_token1] = ACTIONS(4860), - [sym_int] = ACTIONS(4862), - [sym_xint] = ACTIONS(4860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4860), - [anon_sym_POUNDload] = ACTIONS(4860), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4860), - [sym__dedent] = ACTIONS(4860), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(5073), + [sym_identifier] = ACTIONS(5075), + [anon_sym_namespace] = ACTIONS(5075), + [anon_sym_module] = ACTIONS(5075), + [anon_sym_open] = ACTIONS(5075), + [anon_sym_LBRACK_LT] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5075), + [anon_sym_type] = ACTIONS(5075), + [anon_sym_do] = ACTIONS(5075), + [anon_sym_and] = ACTIONS(5075), + [anon_sym_let] = ACTIONS(5075), + [anon_sym_let_BANG] = ACTIONS(5073), + [aux_sym_access_modifier_token1] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_LBRACK_PIPE] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_LT_AT] = ACTIONS(5075), + [anon_sym_LT_AT_AT] = ACTIONS(5073), + [anon_sym_LBRACE_PIPE] = ACTIONS(5073), + [anon_sym_new] = ACTIONS(5075), + [anon_sym_return_BANG] = ACTIONS(5073), + [anon_sym_yield] = ACTIONS(5075), + [anon_sym_yield_BANG] = ACTIONS(5073), + [anon_sym_lazy] = ACTIONS(5075), + [anon_sym_assert] = ACTIONS(5075), + [anon_sym_upcast] = ACTIONS(5075), + [anon_sym_downcast] = ACTIONS(5075), + [anon_sym_for] = ACTIONS(5075), + [anon_sym_while] = ACTIONS(5075), + [anon_sym_if] = ACTIONS(5075), + [anon_sym_fun] = ACTIONS(5075), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(5075), + [anon_sym_match] = ACTIONS(5075), + [anon_sym_match_BANG] = ACTIONS(5073), + [anon_sym_function] = ACTIONS(5075), + [anon_sym_use] = ACTIONS(5075), + [anon_sym_use_BANG] = ACTIONS(5073), + [anon_sym_do_BANG] = ACTIONS(5073), + [anon_sym_begin] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(5075), + [anon_sym_static] = ACTIONS(5075), + [anon_sym_member] = ACTIONS(5075), + [anon_sym_abstract] = ACTIONS(5075), + [anon_sym_override] = ACTIONS(5075), + [anon_sym_val] = ACTIONS(5075), + [aux_sym_char_token1] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_AT_DQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [sym_bool] = ACTIONS(5075), + [sym_unit] = ACTIONS(5073), + [anon_sym_LPAREN_PIPE] = ACTIONS(5075), + [sym_op_identifier] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_PLUS_DOT] = ACTIONS(5073), + [anon_sym_DASH_DOT] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_TILDE] = ACTIONS(5073), + [aux_sym_prefix_op_token1] = ACTIONS(5073), + [sym_int] = ACTIONS(5075), + [sym_xint] = ACTIONS(5073), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5073), + [anon_sym_POUNDload] = ACTIONS(5073), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5073), }, [2804] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5408), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(4900), + [sym_function_declaration_left] = STATE(6920), + [sym_value_declaration_left] = STATE(6920), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2804), [sym_block_comment] = STATE(2804), [sym_line_comment] = STATE(2804), [sym_compiler_directive_decl] = STATE(2804), [sym_fsi_directive_decl] = STATE(2804), [sym_preproc_line] = STATE(2804), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(5044), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -339772,172 +345987,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2805] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3704), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2805), [sym_block_comment] = STATE(2805), [sym_line_comment] = STATE(2805), [sym_compiler_directive_decl] = STATE(2805), [sym_fsi_directive_decl] = STATE(2805), [sym_preproc_line] = STATE(2805), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_LBRACK_LT] = ACTIONS(4955), + [anon_sym_return] = ACTIONS(4957), + [anon_sym_type] = ACTIONS(4957), + [anon_sym_do] = ACTIONS(4957), + [anon_sym_and] = ACTIONS(4957), + [anon_sym_let] = ACTIONS(4957), + [anon_sym_let_BANG] = ACTIONS(4955), + [aux_sym_access_modifier_token1] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_null] = ACTIONS(4957), + [anon_sym_AMP] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_LBRACK_PIPE] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_LT_AT] = ACTIONS(4957), + [anon_sym_LT_AT_AT] = ACTIONS(4955), + [anon_sym_LBRACE_PIPE] = ACTIONS(4955), + [anon_sym_with] = ACTIONS(4957), + [anon_sym_new] = ACTIONS(4957), + [anon_sym_return_BANG] = ACTIONS(4955), + [anon_sym_yield] = ACTIONS(4957), + [anon_sym_yield_BANG] = ACTIONS(4955), + [anon_sym_lazy] = ACTIONS(4957), + [anon_sym_assert] = ACTIONS(4957), + [anon_sym_upcast] = ACTIONS(4957), + [anon_sym_downcast] = ACTIONS(4957), + [anon_sym_for] = ACTIONS(4957), + [anon_sym_while] = ACTIONS(4957), + [anon_sym_if] = ACTIONS(4957), + [anon_sym_fun] = ACTIONS(4957), + [anon_sym_DASH_GT] = ACTIONS(4959), + [anon_sym_try] = ACTIONS(4957), + [anon_sym_match] = ACTIONS(4957), + [anon_sym_match_BANG] = ACTIONS(4955), + [anon_sym_function] = ACTIONS(4957), + [anon_sym_use] = ACTIONS(4957), + [anon_sym_use_BANG] = ACTIONS(4955), + [anon_sym_do_BANG] = ACTIONS(4955), + [anon_sym_begin] = ACTIONS(4957), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(4957), + [anon_sym_static] = ACTIONS(4957), + [anon_sym_member] = ACTIONS(4957), + [anon_sym_abstract] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_val] = ACTIONS(4957), + [aux_sym_char_token1] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4957), + [anon_sym_DQUOTE] = ACTIONS(4957), + [anon_sym_AT_DQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4955), + [sym_bool] = ACTIONS(4957), + [sym_unit] = ACTIONS(4955), + [anon_sym_LPAREN_PIPE] = ACTIONS(4957), + [sym_op_identifier] = ACTIONS(4955), + [anon_sym_PLUS] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [anon_sym_PLUS_DOT] = ACTIONS(4955), + [anon_sym_DASH_DOT] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4955), + [anon_sym_AMP_AMP] = ACTIONS(4955), + [anon_sym_TILDE] = ACTIONS(4955), + [aux_sym_prefix_op_token1] = ACTIONS(4955), + [sym_int] = ACTIONS(4957), + [sym_xint] = ACTIONS(4955), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4955), + [anon_sym_POUNDload] = ACTIONS(4955), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4955), + [sym__dedent] = ACTIONS(4955), }, [2806] = { - [sym_attributes] = STATE(2806), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(3756), - [sym__pattern] = STATE(3678), - [sym_optional_pattern] = STATE(3756), - [sym_type_check_pattern] = STATE(3756), - [sym_attribute_pattern] = STATE(3756), - [sym_paren_pattern] = STATE(3756), - [sym_as_pattern] = STATE(3756), - [sym_cons_pattern] = STATE(3756), - [sym_disjunct_pattern] = STATE(3756), - [sym_conjunct_pattern] = STATE(3756), - [sym_typed_pattern] = STATE(3756), - [sym_list_pattern] = STATE(3756), - [sym_array_pattern] = STATE(3756), - [sym_record_pattern] = STATE(3756), - [sym_identifier_pattern] = STATE(3756), - [sym_char] = STATE(3688), - [sym_format_string] = STATE(3719), - [sym__string_literal] = STATE(3719), - [sym_string] = STATE(3688), - [sym_verbatim_string] = STATE(3688), - [sym_bytearray] = STATE(3688), - [sym_verbatim_bytearray] = STATE(3688), - [sym_format_triple_quoted_string] = STATE(3732), - [sym_triple_quoted_string] = STATE(3688), - [sym_const] = STATE(3756), - [sym_long_identifier_or_op] = STATE(2361), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(3688), - [sym_byte] = STATE(3688), - [sym_int16] = STATE(3688), - [sym_uint16] = STATE(3688), - [sym_int32] = STATE(3688), - [sym_uint32] = STATE(3688), - [sym_nativeint] = STATE(3688), - [sym_unativeint] = STATE(3688), - [sym_int64] = STATE(3688), - [sym_uint64] = STATE(3688), - [sym_ieee32] = STATE(3688), - [sym_ieee64] = STATE(3688), - [sym_bignum] = STATE(3688), - [sym_decimal] = STATE(3688), - [sym_float] = STATE(3643), + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2806), [sym_block_comment] = STATE(2806), [sym_line_comment] = STATE(2806), [sym_compiler_directive_decl] = STATE(2806), [sym_fsi_directive_decl] = STATE(2806), [sym_preproc_line] = STATE(2806), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4920), - [anon_sym__] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4400), - [anon_sym_COLON_QMARK] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LBRACK_PIPE] = ACTIONS(4926), - [anon_sym_LBRACE] = ACTIONS(4954), - [aux_sym_char_token1] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_AT_DQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4938), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4940), - [sym_bool] = ACTIONS(4942), - [sym_unit] = ACTIONS(4944), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4946), - [sym_xint] = ACTIONS(4948), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(5077), + [sym_identifier] = ACTIONS(5079), + [anon_sym_namespace] = ACTIONS(5079), + [anon_sym_module] = ACTIONS(5079), + [anon_sym_open] = ACTIONS(5079), + [anon_sym_LBRACK_LT] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5079), + [anon_sym_type] = ACTIONS(5079), + [anon_sym_do] = ACTIONS(5079), + [anon_sym_and] = ACTIONS(5079), + [anon_sym_let] = ACTIONS(5079), + [anon_sym_let_BANG] = ACTIONS(5077), + [aux_sym_access_modifier_token1] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_LBRACK_PIPE] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_LT_AT] = ACTIONS(5079), + [anon_sym_LT_AT_AT] = ACTIONS(5077), + [anon_sym_LBRACE_PIPE] = ACTIONS(5077), + [anon_sym_new] = ACTIONS(5079), + [anon_sym_return_BANG] = ACTIONS(5077), + [anon_sym_yield] = ACTIONS(5079), + [anon_sym_yield_BANG] = ACTIONS(5077), + [anon_sym_lazy] = ACTIONS(5079), + [anon_sym_assert] = ACTIONS(5079), + [anon_sym_upcast] = ACTIONS(5079), + [anon_sym_downcast] = ACTIONS(5079), + [anon_sym_for] = ACTIONS(5079), + [anon_sym_while] = ACTIONS(5079), + [anon_sym_if] = ACTIONS(5079), + [anon_sym_fun] = ACTIONS(5079), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(5079), + [anon_sym_match] = ACTIONS(5079), + [anon_sym_match_BANG] = ACTIONS(5077), + [anon_sym_function] = ACTIONS(5079), + [anon_sym_use] = ACTIONS(5079), + [anon_sym_use_BANG] = ACTIONS(5077), + [anon_sym_do_BANG] = ACTIONS(5077), + [anon_sym_begin] = ACTIONS(5079), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(5079), + [anon_sym_member] = ACTIONS(5079), + [anon_sym_abstract] = ACTIONS(5079), + [anon_sym_override] = ACTIONS(5079), + [anon_sym_val] = ACTIONS(5079), + [aux_sym_char_token1] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_AT_DQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [sym_bool] = ACTIONS(5079), + [sym_unit] = ACTIONS(5077), + [anon_sym_LPAREN_PIPE] = ACTIONS(5079), + [sym_op_identifier] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_PLUS_DOT] = ACTIONS(5077), + [anon_sym_DASH_DOT] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_AMP_AMP] = ACTIONS(5077), + [anon_sym_TILDE] = ACTIONS(5077), + [aux_sym_prefix_op_token1] = ACTIONS(5077), + [sym_int] = ACTIONS(5079), + [sym_xint] = ACTIONS(5077), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5077), + [anon_sym_POUNDload] = ACTIONS(5077), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5077), }, [2807] = { [sym_xml_doc] = STATE(2807), @@ -339946,160 +346175,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2807), [sym_fsi_directive_decl] = STATE(2807), [sym_preproc_line] = STATE(2807), - [sym_identifier] = ACTIONS(4862), - [anon_sym_module] = ACTIONS(4862), - [anon_sym_open] = ACTIONS(4862), - [anon_sym_LBRACK_LT] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4862), - [anon_sym_type] = ACTIONS(4862), - [anon_sym_do] = ACTIONS(4862), - [anon_sym_and] = ACTIONS(4862), - [anon_sym_let] = ACTIONS(4862), - [anon_sym_let_BANG] = ACTIONS(4860), - [aux_sym_access_modifier_token1] = ACTIONS(4860), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(5046), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_AMP] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LBRACK_PIPE] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_LBRACE_PIPE] = ACTIONS(4860), - [anon_sym_new] = ACTIONS(4862), - [anon_sym_return_BANG] = ACTIONS(4860), - [anon_sym_yield] = ACTIONS(4862), - [anon_sym_yield_BANG] = ACTIONS(4860), - [anon_sym_lazy] = ACTIONS(4862), - [anon_sym_assert] = ACTIONS(4862), - [anon_sym_upcast] = ACTIONS(4862), - [anon_sym_downcast] = ACTIONS(4862), - [anon_sym_LT_AT] = ACTIONS(4862), - [anon_sym_LT_AT_AT] = ACTIONS(4860), - [anon_sym_for] = ACTIONS(4862), - [anon_sym_while] = ACTIONS(4862), - [anon_sym_if] = ACTIONS(4862), - [anon_sym_fun] = ACTIONS(4862), - [anon_sym_try] = ACTIONS(4862), - [anon_sym_match] = ACTIONS(4862), - [anon_sym_match_BANG] = ACTIONS(4860), - [anon_sym_function] = ACTIONS(4862), - [anon_sym_use] = ACTIONS(4862), - [anon_sym_use_BANG] = ACTIONS(4860), - [anon_sym_do_BANG] = ACTIONS(4860), - [anon_sym_begin] = ACTIONS(4862), - [anon_sym_default] = ACTIONS(4862), - [anon_sym_static] = ACTIONS(4862), - [anon_sym_member] = ACTIONS(4862), - [anon_sym_abstract] = ACTIONS(4862), - [anon_sym_override] = ACTIONS(4862), - [anon_sym_val] = ACTIONS(4862), - [aux_sym_char_token1] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), - [anon_sym_DQUOTE] = ACTIONS(4862), - [anon_sym_AT_DQUOTE] = ACTIONS(4860), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4860), - [sym_bool] = ACTIONS(4862), - [sym_unit] = ACTIONS(4860), - [anon_sym_LPAREN_PIPE] = ACTIONS(4862), - [sym_op_identifier] = ACTIONS(4860), - [anon_sym_PLUS] = ACTIONS(4862), - [anon_sym_DASH] = ACTIONS(4862), - [anon_sym_PLUS_DOT] = ACTIONS(4860), - [anon_sym_DASH_DOT] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_AMP_AMP] = ACTIONS(4860), - [anon_sym_TILDE] = ACTIONS(4860), - [aux_sym_prefix_op_token1] = ACTIONS(4860), - [sym_int] = ACTIONS(4862), - [sym_xint] = ACTIONS(4860), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4860), - [anon_sym_POUNDload] = ACTIONS(4860), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4860), - [sym__dedent] = ACTIONS(4860), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_and] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [aux_sym_access_modifier_token1] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_member] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_val] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), }, [2808] = { - [sym_attributes] = STATE(2697), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5464), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2370), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(3031), + [sym__method_defn] = STATE(3038), + [sym__property_defn] = STATE(3039), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2808), [sym_block_comment] = STATE(2808), [sym_line_comment] = STATE(2808), [sym_compiler_directive_decl] = STATE(2808), [sym_fsi_directive_decl] = STATE(2808), [sym_preproc_line] = STATE(2808), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4449), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4451), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2953), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5083), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340108,82 +346351,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2809] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5182), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(2973), + [sym__method_defn] = STATE(4955), + [sym__property_defn] = STATE(4958), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2809), [sym_block_comment] = STATE(2809), [sym_line_comment] = STATE(2809), [sym_compiler_directive_decl] = STATE(2809), [sym_fsi_directive_decl] = STATE(2809), [sym_preproc_line] = STATE(2809), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2965), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5087), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340192,82 +346442,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2810] = { - [sym_attributes] = STATE(2779), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5421), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2404), - [sym_long_identifier] = STATE(3464), - [sym_active_pattern] = STATE(3576), - [sym__identifier_or_op] = STATE(3611), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3487), + [sym_function_declaration_left] = STATE(7112), + [sym_value_declaration_left] = STATE(7112), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2810), [sym_block_comment] = STATE(2810), [sym_line_comment] = STATE(2810), [sym_compiler_directive_decl] = STATE(2810), [sym_fsi_directive_decl] = STATE(2810), [sym_preproc_line] = STATE(2810), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4974), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_COLON_QMARK] = ACTIONS(4419), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4522), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4439), - [sym_op_identifier] = ACTIONS(4441), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340276,82 +346533,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2811] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(4999), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3508), + [sym_function_declaration_left] = STATE(6979), + [sym_value_declaration_left] = STATE(6979), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2811), [sym_block_comment] = STATE(2811), [sym_line_comment] = STATE(2811), [sym_compiler_directive_decl] = STATE(2811), [sym_fsi_directive_decl] = STATE(2811), [sym_preproc_line] = STATE(2811), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340360,166 +346624,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2812] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5001), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(5463), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8266), + [sym_member_defn] = STATE(3134), + [sym_additional_constr_defn] = STATE(3164), [sym_xml_doc] = STATE(2812), [sym_block_comment] = STATE(2812), [sym_line_comment] = STATE(2812), [sym_compiler_directive_decl] = STATE(2812), [sym_fsi_directive_decl] = STATE(2812), [sym_preproc_line] = STATE(2812), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2812), + [ts_builtin_sym_end] = ACTIONS(5089), + [sym_identifier] = ACTIONS(5091), + [anon_sym_namespace] = ACTIONS(5091), + [anon_sym_module] = ACTIONS(5091), + [anon_sym_open] = ACTIONS(5091), + [anon_sym_LBRACK_LT] = ACTIONS(5093), + [anon_sym_return] = ACTIONS(5091), + [anon_sym_type] = ACTIONS(5091), + [anon_sym_do] = ACTIONS(5091), + [anon_sym_and] = ACTIONS(5091), + [anon_sym_let] = ACTIONS(5091), + [anon_sym_let_BANG] = ACTIONS(5089), + [aux_sym_access_modifier_token1] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_AMP] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_LBRACK_PIPE] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_LT_AT] = ACTIONS(5091), + [anon_sym_LT_AT_AT] = ACTIONS(5089), + [anon_sym_LBRACE_PIPE] = ACTIONS(5089), + [anon_sym_new] = ACTIONS(5099), + [anon_sym_return_BANG] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(5091), + [anon_sym_yield_BANG] = ACTIONS(5089), + [anon_sym_lazy] = ACTIONS(5091), + [anon_sym_assert] = ACTIONS(5091), + [anon_sym_upcast] = ACTIONS(5091), + [anon_sym_downcast] = ACTIONS(5091), + [anon_sym_for] = ACTIONS(5091), + [anon_sym_while] = ACTIONS(5091), + [anon_sym_if] = ACTIONS(5091), + [anon_sym_fun] = ACTIONS(5091), + [anon_sym_try] = ACTIONS(5091), + [anon_sym_match] = ACTIONS(5091), + [anon_sym_match_BANG] = ACTIONS(5089), + [anon_sym_function] = ACTIONS(5091), + [anon_sym_use] = ACTIONS(5091), + [anon_sym_use_BANG] = ACTIONS(5089), + [anon_sym_do_BANG] = ACTIONS(5089), + [anon_sym_begin] = ACTIONS(5091), + [anon_sym_default] = ACTIONS(5102), + [anon_sym_static] = ACTIONS(5105), + [anon_sym_member] = ACTIONS(5108), + [anon_sym_abstract] = ACTIONS(5111), + [anon_sym_override] = ACTIONS(5102), + [anon_sym_val] = ACTIONS(5114), + [aux_sym_char_token1] = ACTIONS(5089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5091), + [anon_sym_DQUOTE] = ACTIONS(5091), + [anon_sym_AT_DQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5089), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5089), + [sym_bool] = ACTIONS(5091), + [sym_unit] = ACTIONS(5089), + [anon_sym_LPAREN_PIPE] = ACTIONS(5091), + [sym_op_identifier] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_PLUS_DOT] = ACTIONS(5089), + [anon_sym_DASH_DOT] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_TILDE] = ACTIONS(5089), + [aux_sym_prefix_op_token1] = ACTIONS(5089), + [sym_int] = ACTIONS(5091), + [sym_xint] = ACTIONS(5089), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5089), + [anon_sym_POUNDload] = ACTIONS(5089), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5089), }, [2813] = { - [sym_attributes] = STATE(2731), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(5380), - [sym__pattern] = STATE(5007), - [sym_optional_pattern] = STATE(5380), - [sym_type_check_pattern] = STATE(5380), - [sym_attribute_pattern] = STATE(5380), - [sym_paren_pattern] = STATE(5380), - [sym_as_pattern] = STATE(5380), - [sym_cons_pattern] = STATE(5380), - [sym_disjunct_pattern] = STATE(5380), - [sym_conjunct_pattern] = STATE(5380), - [sym_typed_pattern] = STATE(5380), - [sym_list_pattern] = STATE(5380), - [sym_array_pattern] = STATE(5380), - [sym_record_pattern] = STATE(5380), - [sym_identifier_pattern] = STATE(5380), - [sym_char] = STATE(5247), - [sym_format_string] = STATE(5250), - [sym__string_literal] = STATE(5250), - [sym_string] = STATE(5247), - [sym_verbatim_string] = STATE(5247), - [sym_bytearray] = STATE(5247), - [sym_verbatim_bytearray] = STATE(5247), - [sym_format_triple_quoted_string] = STATE(5253), - [sym_triple_quoted_string] = STATE(5247), - [sym_const] = STATE(5380), - [sym_long_identifier_or_op] = STATE(2210), - [sym_long_identifier] = STATE(3398), - [sym_active_pattern] = STATE(3492), - [sym__identifier_or_op] = STATE(3450), - [sym_sbyte] = STATE(5247), - [sym_byte] = STATE(5247), - [sym_int16] = STATE(5247), - [sym_uint16] = STATE(5247), - [sym_int32] = STATE(5247), - [sym_uint32] = STATE(5247), - [sym_nativeint] = STATE(5247), - [sym_unativeint] = STATE(5247), - [sym_int64] = STATE(5247), - [sym_uint64] = STATE(5247), - [sym_ieee32] = STATE(5247), - [sym_ieee64] = STATE(5247), - [sym_bignum] = STATE(5247), - [sym_decimal] = STATE(5247), - [sym_float] = STATE(4988), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(6752), + [sym_function_declaration_left] = STATE(7018), + [sym_value_declaration_left] = STATE(7018), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2813), [sym_block_comment] = STATE(2813), [sym_line_comment] = STATE(2813), [sym_compiler_directive_decl] = STATE(2813), [sym_fsi_directive_decl] = STATE(2813), [sym_preproc_line] = STATE(2813), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym_null] = ACTIONS(4453), - [anon_sym__] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LBRACK_PIPE] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4254), - [aux_sym_char_token1] = ACTIONS(4455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(4459), - [anon_sym_AT_DQUOTE] = ACTIONS(4461), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4465), - [sym_bool] = ACTIONS(4467), - [sym_unit] = ACTIONS(4469), - [anon_sym_LPAREN_PIPE] = ACTIONS(4272), - [sym_op_identifier] = ACTIONS(4274), - [sym_int] = ACTIONS(4471), - [sym_xint] = ACTIONS(4473), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340528,82 +346806,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2814] = { - [sym_attributes] = STATE(2771), - [sym_attribute_set] = STATE(3692), - [sym_repeat_pattern] = STATE(4826), - [sym__pattern] = STATE(5074), - [sym_optional_pattern] = STATE(4826), - [sym_type_check_pattern] = STATE(4826), - [sym_attribute_pattern] = STATE(4826), - [sym_paren_pattern] = STATE(4826), - [sym_as_pattern] = STATE(4826), - [sym_cons_pattern] = STATE(4826), - [sym_disjunct_pattern] = STATE(4826), - [sym_conjunct_pattern] = STATE(4826), - [sym_typed_pattern] = STATE(4826), - [sym_list_pattern] = STATE(4826), - [sym_array_pattern] = STATE(4826), - [sym_record_pattern] = STATE(4826), - [sym_identifier_pattern] = STATE(4826), - [sym_char] = STATE(4753), - [sym_format_string] = STATE(4754), - [sym__string_literal] = STATE(4754), - [sym_string] = STATE(4753), - [sym_verbatim_string] = STATE(4753), - [sym_bytearray] = STATE(4753), - [sym_verbatim_bytearray] = STATE(4753), - [sym_format_triple_quoted_string] = STATE(4755), - [sym_triple_quoted_string] = STATE(4753), - [sym_const] = STATE(4826), - [sym_long_identifier_or_op] = STATE(2253), - [sym_long_identifier] = STATE(3284), - [sym_active_pattern] = STATE(3341), - [sym__identifier_or_op] = STATE(3356), - [sym_sbyte] = STATE(4753), - [sym_byte] = STATE(4753), - [sym_int16] = STATE(4753), - [sym_uint16] = STATE(4753), - [sym_int32] = STATE(4753), - [sym_uint32] = STATE(4753), - [sym_nativeint] = STATE(4753), - [sym_unativeint] = STATE(4753), - [sym_int64] = STATE(4753), - [sym_uint64] = STATE(4753), - [sym_ieee32] = STATE(4753), - [sym_ieee64] = STATE(4753), - [sym_bignum] = STATE(4753), - [sym_decimal] = STATE(4753), - [sym_float] = STATE(4632), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(3000), + [sym__method_defn] = STATE(5413), + [sym__property_defn] = STATE(5412), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2814), [sym_block_comment] = STATE(2814), [sym_line_comment] = STATE(2814), [sym_compiler_directive_decl] = STATE(2814), [sym_fsi_directive_decl] = STATE(2814), [sym_preproc_line] = STATE(2814), - [aux_sym_attributes_repeat1] = STATE(3806), - [sym_identifier] = ACTIONS(4280), - [anon_sym_LBRACK_LT] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_null] = ACTIONS(4364), - [anon_sym__] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_COLON_QMARK] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4292), - [anon_sym_LBRACK_PIPE] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [aux_sym_char_token1] = ACTIONS(4366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(4370), - [anon_sym_AT_DQUOTE] = ACTIONS(4372), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4374), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4376), - [sym_bool] = ACTIONS(4378), - [sym_unit] = ACTIONS(4380), - [anon_sym_LPAREN_PIPE] = ACTIONS(4314), - [sym_op_identifier] = ACTIONS(4316), - [sym_int] = ACTIONS(4382), - [sym_xint] = ACTIONS(4384), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2950), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5119), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -340612,253 +346897,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2815] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_type_arguments] = STATE(2969), + [sym__method_defn] = STATE(4798), + [sym__property_defn] = STATE(4799), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2815), [sym_block_comment] = STATE(2815), [sym_line_comment] = STATE(2815), [sym_compiler_directive_decl] = STATE(2815), [sym_fsi_directive_decl] = STATE(2815), [sym_preproc_line] = STATE(2815), - [sym_identifier] = ACTIONS(4998), - [anon_sym_module] = ACTIONS(4998), - [anon_sym_open] = ACTIONS(4998), - [anon_sym_LBRACK_LT] = ACTIONS(4996), - [anon_sym_return] = ACTIONS(4998), - [anon_sym_type] = ACTIONS(4998), - [anon_sym_do] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_let] = ACTIONS(4998), - [anon_sym_let_BANG] = ACTIONS(4996), - [aux_sym_access_modifier_token1] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_null] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_LBRACK_PIPE] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACE_PIPE] = ACTIONS(4996), - [anon_sym_new] = ACTIONS(4998), - [anon_sym_return_BANG] = ACTIONS(4996), - [anon_sym_yield] = ACTIONS(4998), - [anon_sym_yield_BANG] = ACTIONS(4996), - [anon_sym_lazy] = ACTIONS(4998), - [anon_sym_assert] = ACTIONS(4998), - [anon_sym_upcast] = ACTIONS(4998), - [anon_sym_downcast] = ACTIONS(4998), - [anon_sym_LT_AT] = ACTIONS(4998), - [anon_sym_LT_AT_AT] = ACTIONS(4996), - [anon_sym_for] = ACTIONS(4998), - [anon_sym_while] = ACTIONS(4998), - [anon_sym_if] = ACTIONS(4998), - [anon_sym_fun] = ACTIONS(4998), - [anon_sym_try] = ACTIONS(4998), - [anon_sym_match] = ACTIONS(4998), - [anon_sym_match_BANG] = ACTIONS(4996), - [anon_sym_function] = ACTIONS(4998), - [anon_sym_use] = ACTIONS(4998), - [anon_sym_use_BANG] = ACTIONS(4996), - [anon_sym_do_BANG] = ACTIONS(4996), - [anon_sym_begin] = ACTIONS(4998), - [anon_sym_default] = ACTIONS(4998), - [anon_sym_static] = ACTIONS(4998), - [anon_sym_member] = ACTIONS(4998), - [anon_sym_abstract] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_val] = ACTIONS(4998), - [aux_sym_char_token1] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4998), - [anon_sym_DQUOTE] = ACTIONS(4998), - [anon_sym_AT_DQUOTE] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4996), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4996), - [sym_bool] = ACTIONS(4998), - [sym_unit] = ACTIONS(4996), - [anon_sym_LPAREN_PIPE] = ACTIONS(4998), - [sym_op_identifier] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_PLUS_DOT] = ACTIONS(4996), - [anon_sym_DASH_DOT] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_AMP_AMP] = ACTIONS(4996), - [anon_sym_TILDE] = ACTIONS(4996), - [aux_sym_prefix_op_token1] = ACTIONS(4996), - [sym_int] = ACTIONS(4998), - [sym_xint] = ACTIONS(4996), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4996), - [anon_sym_POUNDload] = ACTIONS(4996), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4996), - [sym__dedent] = ACTIONS(4996), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2951), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_with] = ACTIONS(5123), + [anon_sym_LT2] = ACTIONS(5027), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2816] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym__function_or_value_defn_body] = STATE(3288), + [sym_function_declaration_left] = STATE(6579), + [sym_value_declaration_left] = STATE(6579), + [sym_access_modifier] = STATE(3153), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5607), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3252), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2816), [sym_block_comment] = STATE(2816), [sym_line_comment] = STATE(2816), [sym_compiler_directive_decl] = STATE(2816), [sym_fsi_directive_decl] = STATE(2816), [sym_preproc_line] = STATE(2816), - [sym_identifier] = ACTIONS(4990), - [anon_sym_module] = ACTIONS(4990), - [anon_sym_open] = ACTIONS(4990), - [anon_sym_LBRACK_LT] = ACTIONS(4988), - [anon_sym_return] = ACTIONS(4990), - [anon_sym_type] = ACTIONS(4990), - [anon_sym_do] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_let] = ACTIONS(4990), - [anon_sym_let_BANG] = ACTIONS(4988), - [aux_sym_access_modifier_token1] = ACTIONS(4988), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_null] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_LBRACK_PIPE] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACE_PIPE] = ACTIONS(4988), - [anon_sym_new] = ACTIONS(4990), - [anon_sym_return_BANG] = ACTIONS(4988), - [anon_sym_yield] = ACTIONS(4990), - [anon_sym_yield_BANG] = ACTIONS(4988), - [anon_sym_lazy] = ACTIONS(4990), - [anon_sym_assert] = ACTIONS(4990), - [anon_sym_upcast] = ACTIONS(4990), - [anon_sym_downcast] = ACTIONS(4990), - [anon_sym_LT_AT] = ACTIONS(4990), - [anon_sym_LT_AT_AT] = ACTIONS(4988), - [anon_sym_for] = ACTIONS(4990), - [anon_sym_while] = ACTIONS(4990), - [anon_sym_if] = ACTIONS(4990), - [anon_sym_fun] = ACTIONS(4990), - [anon_sym_try] = ACTIONS(4990), - [anon_sym_match] = ACTIONS(4990), - [anon_sym_match_BANG] = ACTIONS(4988), - [anon_sym_function] = ACTIONS(4990), - [anon_sym_use] = ACTIONS(4990), - [anon_sym_use_BANG] = ACTIONS(4988), - [anon_sym_do_BANG] = ACTIONS(4988), - [anon_sym_begin] = ACTIONS(4990), - [anon_sym_default] = ACTIONS(4990), - [anon_sym_static] = ACTIONS(4990), - [anon_sym_member] = ACTIONS(4990), - [anon_sym_abstract] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_val] = ACTIONS(4990), - [aux_sym_char_token1] = ACTIONS(4988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4990), - [anon_sym_DQUOTE] = ACTIONS(4990), - [anon_sym_AT_DQUOTE] = ACTIONS(4988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4988), - [sym_bool] = ACTIONS(4990), - [sym_unit] = ACTIONS(4988), - [anon_sym_LPAREN_PIPE] = ACTIONS(4990), - [sym_op_identifier] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4990), - [anon_sym_PLUS_DOT] = ACTIONS(4988), - [anon_sym_DASH_DOT] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_AMP_AMP] = ACTIONS(4988), - [anon_sym_TILDE] = ACTIONS(4988), - [aux_sym_prefix_op_token1] = ACTIONS(4988), - [sym_int] = ACTIONS(4990), - [sym_xint] = ACTIONS(4988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4988), - [anon_sym_POUNDload] = ACTIONS(4988), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4988), - [sym__dedent] = ACTIONS(4988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4949), + [anon_sym_mutable] = ACTIONS(4951), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2817] = { + [sym_attributes] = STATE(5463), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8266), + [sym_member_defn] = STATE(3134), + [sym_additional_constr_defn] = STATE(3164), [sym_xml_doc] = STATE(2817), [sym_block_comment] = STATE(2817), [sym_line_comment] = STATE(2817), [sym_compiler_directive_decl] = STATE(2817), [sym_fsi_directive_decl] = STATE(2817), [sym_preproc_line] = STATE(2817), - [sym_identifier] = ACTIONS(4966), - [anon_sym_module] = ACTIONS(4966), - [anon_sym_open] = ACTIONS(4966), - [anon_sym_LBRACK_LT] = ACTIONS(4964), - [anon_sym_return] = ACTIONS(4966), - [anon_sym_type] = ACTIONS(4966), - [anon_sym_do] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_let] = ACTIONS(4966), - [anon_sym_let_BANG] = ACTIONS(4964), - [aux_sym_access_modifier_token1] = ACTIONS(4964), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(4966), - [anon_sym_AMP] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_LBRACK_PIPE] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACE_PIPE] = ACTIONS(4964), - [anon_sym_new] = ACTIONS(4966), - [anon_sym_return_BANG] = ACTIONS(4964), - [anon_sym_yield] = ACTIONS(4966), - [anon_sym_yield_BANG] = ACTIONS(4964), - [anon_sym_lazy] = ACTIONS(4966), - [anon_sym_assert] = ACTIONS(4966), - [anon_sym_upcast] = ACTIONS(4966), - [anon_sym_downcast] = ACTIONS(4966), - [anon_sym_LT_AT] = ACTIONS(4966), - [anon_sym_LT_AT_AT] = ACTIONS(4964), - [anon_sym_for] = ACTIONS(4966), - [anon_sym_while] = ACTIONS(4966), - [anon_sym_if] = ACTIONS(4966), - [anon_sym_fun] = ACTIONS(4966), - [anon_sym_try] = ACTIONS(4966), - [anon_sym_match] = ACTIONS(4966), - [anon_sym_match_BANG] = ACTIONS(4964), - [anon_sym_function] = ACTIONS(4966), - [anon_sym_use] = ACTIONS(4966), - [anon_sym_use_BANG] = ACTIONS(4964), - [anon_sym_do_BANG] = ACTIONS(4964), - [anon_sym_begin] = ACTIONS(4966), - [anon_sym_default] = ACTIONS(4966), - [anon_sym_static] = ACTIONS(4966), - [anon_sym_member] = ACTIONS(4966), - [anon_sym_abstract] = ACTIONS(4966), - [anon_sym_override] = ACTIONS(4966), - [anon_sym_val] = ACTIONS(4966), - [aux_sym_char_token1] = ACTIONS(4964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4966), - [anon_sym_DQUOTE] = ACTIONS(4966), - [anon_sym_AT_DQUOTE] = ACTIONS(4964), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4964), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4964), - [sym_bool] = ACTIONS(4966), - [sym_unit] = ACTIONS(4964), - [anon_sym_LPAREN_PIPE] = ACTIONS(4966), - [sym_op_identifier] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4966), - [anon_sym_PLUS_DOT] = ACTIONS(4964), - [anon_sym_DASH_DOT] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_AMP_AMP] = ACTIONS(4964), - [anon_sym_TILDE] = ACTIONS(4964), - [aux_sym_prefix_op_token1] = ACTIONS(4964), - [sym_int] = ACTIONS(4966), - [sym_xint] = ACTIONS(4964), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4964), - [anon_sym_POUNDload] = ACTIONS(4964), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4964), - [sym__dedent] = ACTIONS(4964), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2812), + [ts_builtin_sym_end] = ACTIONS(5125), + [sym_identifier] = ACTIONS(5127), + [anon_sym_namespace] = ACTIONS(5127), + [anon_sym_module] = ACTIONS(5127), + [anon_sym_open] = ACTIONS(5127), + [anon_sym_LBRACK_LT] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5127), + [anon_sym_type] = ACTIONS(5127), + [anon_sym_do] = ACTIONS(5127), + [anon_sym_and] = ACTIONS(5127), + [anon_sym_let] = ACTIONS(5127), + [anon_sym_let_BANG] = ACTIONS(5125), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_LBRACK_PIPE] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_LT_AT] = ACTIONS(5127), + [anon_sym_LT_AT_AT] = ACTIONS(5125), + [anon_sym_LBRACE_PIPE] = ACTIONS(5125), + [anon_sym_new] = ACTIONS(5127), + [anon_sym_return_BANG] = ACTIONS(5125), + [anon_sym_yield] = ACTIONS(5127), + [anon_sym_yield_BANG] = ACTIONS(5125), + [anon_sym_lazy] = ACTIONS(5127), + [anon_sym_assert] = ACTIONS(5127), + [anon_sym_upcast] = ACTIONS(5127), + [anon_sym_downcast] = ACTIONS(5127), + [anon_sym_for] = ACTIONS(5127), + [anon_sym_while] = ACTIONS(5127), + [anon_sym_if] = ACTIONS(5127), + [anon_sym_fun] = ACTIONS(5127), + [anon_sym_try] = ACTIONS(5127), + [anon_sym_match] = ACTIONS(5127), + [anon_sym_match_BANG] = ACTIONS(5125), + [anon_sym_function] = ACTIONS(5127), + [anon_sym_use] = ACTIONS(5127), + [anon_sym_use_BANG] = ACTIONS(5125), + [anon_sym_do_BANG] = ACTIONS(5125), + [anon_sym_begin] = ACTIONS(5127), + [anon_sym_default] = ACTIONS(5044), + [anon_sym_static] = ACTIONS(5046), + [anon_sym_member] = ACTIONS(5048), + [anon_sym_abstract] = ACTIONS(5050), + [anon_sym_override] = ACTIONS(5044), + [anon_sym_val] = ACTIONS(5052), + [aux_sym_char_token1] = ACTIONS(5125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5127), + [anon_sym_DQUOTE] = ACTIONS(5127), + [anon_sym_AT_DQUOTE] = ACTIONS(5125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5125), + [sym_bool] = ACTIONS(5127), + [sym_unit] = ACTIONS(5125), + [anon_sym_LPAREN_PIPE] = ACTIONS(5127), + [sym_op_identifier] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_PLUS_DOT] = ACTIONS(5125), + [anon_sym_DASH_DOT] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_TILDE] = ACTIONS(5125), + [aux_sym_prefix_op_token1] = ACTIONS(5125), + [sym_int] = ACTIONS(5127), + [sym_xint] = ACTIONS(5125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5125), + [anon_sym_POUNDload] = ACTIONS(5125), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5125), }, [2818] = { [sym_xml_doc] = STATE(2818), @@ -340867,81 +347176,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2818), [sym_fsi_directive_decl] = STATE(2818), [sym_preproc_line] = STATE(2818), - [sym_identifier] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_open] = ACTIONS(4586), - [anon_sym_LBRACK_LT] = ACTIONS(4584), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_type] = ACTIONS(4586), - [anon_sym_do] = ACTIONS(4586), - [anon_sym_and] = ACTIONS(4586), - [anon_sym_let] = ACTIONS(4586), - [anon_sym_let_BANG] = ACTIONS(4584), - [aux_sym_access_modifier_token1] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4586), - [anon_sym_null] = ACTIONS(4586), - [anon_sym_AMP] = ACTIONS(4586), - [anon_sym_LBRACK] = ACTIONS(4586), - [anon_sym_LBRACK_PIPE] = ACTIONS(4584), - [anon_sym_LBRACE] = ACTIONS(4586), - [anon_sym_LBRACE_PIPE] = ACTIONS(4584), - [anon_sym_new] = ACTIONS(4586), - [anon_sym_return_BANG] = ACTIONS(4584), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_yield_BANG] = ACTIONS(4584), - [anon_sym_lazy] = ACTIONS(4586), - [anon_sym_assert] = ACTIONS(4586), - [anon_sym_upcast] = ACTIONS(4586), - [anon_sym_downcast] = ACTIONS(4586), - [anon_sym_LT_AT] = ACTIONS(4586), - [anon_sym_LT_AT_AT] = ACTIONS(4584), - [anon_sym_for] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_if] = ACTIONS(4586), - [anon_sym_fun] = ACTIONS(4586), - [anon_sym_try] = ACTIONS(4586), - [anon_sym_match] = ACTIONS(4586), - [anon_sym_match_BANG] = ACTIONS(4584), - [anon_sym_function] = ACTIONS(4586), - [anon_sym_use] = ACTIONS(4586), - [anon_sym_use_BANG] = ACTIONS(4584), - [anon_sym_do_BANG] = ACTIONS(4584), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_default] = ACTIONS(4586), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_member] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_override] = ACTIONS(4586), - [anon_sym_val] = ACTIONS(4586), - [aux_sym_char_token1] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4586), - [anon_sym_DQUOTE] = ACTIONS(4586), - [anon_sym_AT_DQUOTE] = ACTIONS(4584), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4584), - [sym_bool] = ACTIONS(4586), - [sym_unit] = ACTIONS(4584), - [anon_sym_LPAREN_PIPE] = ACTIONS(4586), - [sym_op_identifier] = ACTIONS(4584), - [anon_sym_PLUS] = ACTIONS(4586), - [anon_sym_DASH] = ACTIONS(4586), - [anon_sym_PLUS_DOT] = ACTIONS(4584), - [anon_sym_DASH_DOT] = ACTIONS(4584), - [anon_sym_PERCENT] = ACTIONS(4584), - [anon_sym_AMP_AMP] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [aux_sym_prefix_op_token1] = ACTIONS(4584), - [sym_int] = ACTIONS(4586), - [sym_xint] = ACTIONS(4584), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4584), - [anon_sym_POUNDload] = ACTIONS(4584), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4584), - [sym__dedent] = ACTIONS(4584), + [sym_identifier] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_open] = ACTIONS(3361), + [anon_sym_LBRACK_LT] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_and] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [aux_sym_access_modifier_token1] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_or] = ACTIONS(3361), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_member] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_abstract] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_val] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3363), + [anon_sym_POUNDload] = ACTIONS(3363), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3363), }, [2819] = { [sym_xml_doc] = STATE(2819), @@ -340950,164 +347267,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2819), [sym_fsi_directive_decl] = STATE(2819), [sym_preproc_line] = STATE(2819), - [sym_identifier] = ACTIONS(4657), - [anon_sym_module] = ACTIONS(4657), - [anon_sym_open] = ACTIONS(4657), - [anon_sym_LBRACK_LT] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4657), - [anon_sym_type] = ACTIONS(4657), - [anon_sym_do] = ACTIONS(4657), - [anon_sym_and] = ACTIONS(4657), - [anon_sym_let] = ACTIONS(4657), - [anon_sym_let_BANG] = ACTIONS(4655), - [aux_sym_access_modifier_token1] = ACTIONS(4655), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_null] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_PIPE] = ACTIONS(4655), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_LBRACE_PIPE] = ACTIONS(4655), - [anon_sym_new] = ACTIONS(4657), - [anon_sym_return_BANG] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4657), - [anon_sym_yield_BANG] = ACTIONS(4655), - [anon_sym_lazy] = ACTIONS(4657), - [anon_sym_assert] = ACTIONS(4657), - [anon_sym_upcast] = ACTIONS(4657), - [anon_sym_downcast] = ACTIONS(4657), - [anon_sym_LT_AT] = ACTIONS(4657), - [anon_sym_LT_AT_AT] = ACTIONS(4655), - [anon_sym_for] = ACTIONS(4657), - [anon_sym_while] = ACTIONS(4657), - [anon_sym_if] = ACTIONS(4657), - [anon_sym_fun] = ACTIONS(4657), - [anon_sym_try] = ACTIONS(4657), - [anon_sym_match] = ACTIONS(4657), - [anon_sym_match_BANG] = ACTIONS(4655), - [anon_sym_function] = ACTIONS(4657), - [anon_sym_use] = ACTIONS(4657), - [anon_sym_use_BANG] = ACTIONS(4655), - [anon_sym_do_BANG] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4657), - [anon_sym_default] = ACTIONS(4657), - [anon_sym_static] = ACTIONS(4657), - [anon_sym_member] = ACTIONS(4657), - [anon_sym_abstract] = ACTIONS(4657), - [anon_sym_override] = ACTIONS(4657), - [anon_sym_val] = ACTIONS(4657), - [aux_sym_char_token1] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_AT_DQUOTE] = ACTIONS(4655), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4655), - [sym_bool] = ACTIONS(4657), - [sym_unit] = ACTIONS(4655), - [anon_sym_LPAREN_PIPE] = ACTIONS(4657), - [sym_op_identifier] = ACTIONS(4655), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4657), - [anon_sym_PLUS_DOT] = ACTIONS(4655), - [anon_sym_DASH_DOT] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_AMP_AMP] = ACTIONS(4655), - [anon_sym_TILDE] = ACTIONS(4655), - [aux_sym_prefix_op_token1] = ACTIONS(4655), - [sym_int] = ACTIONS(4657), - [sym_xint] = ACTIONS(4655), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4655), - [anon_sym_POUNDload] = ACTIONS(4655), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4655), - [sym__dedent] = ACTIONS(4655), + [aux_sym_long_identifier_repeat1] = STATE(2821), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_and] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [aux_sym_access_modifier_token1] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_static] = ACTIONS(3257), + [anon_sym_member] = ACTIONS(3257), + [anon_sym_abstract] = ACTIONS(3257), + [anon_sym_override] = ACTIONS(3257), + [anon_sym_val] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), }, [2820] = { + [sym_type_arguments] = STATE(2836), + [sym_long_identifier] = STATE(2842), [sym_xml_doc] = STATE(2820), [sym_block_comment] = STATE(2820), [sym_line_comment] = STATE(2820), [sym_compiler_directive_decl] = STATE(2820), [sym_fsi_directive_decl] = STATE(2820), [sym_preproc_line] = STATE(2820), - [sym_identifier] = ACTIONS(4958), - [anon_sym_module] = ACTIONS(4958), - [anon_sym_open] = ACTIONS(4958), - [anon_sym_LBRACK_LT] = ACTIONS(4956), - [anon_sym_return] = ACTIONS(4958), - [anon_sym_type] = ACTIONS(4958), - [anon_sym_do] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_let] = ACTIONS(4958), - [anon_sym_let_BANG] = ACTIONS(4956), - [aux_sym_access_modifier_token1] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_null] = ACTIONS(4958), - [anon_sym_AMP] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_LBRACK_PIPE] = ACTIONS(4956), - [anon_sym_LBRACE] = ACTIONS(4958), - [anon_sym_LBRACE_PIPE] = ACTIONS(4956), - [anon_sym_new] = ACTIONS(4958), - [anon_sym_return_BANG] = ACTIONS(4956), - [anon_sym_yield] = ACTIONS(4958), - [anon_sym_yield_BANG] = ACTIONS(4956), - [anon_sym_lazy] = ACTIONS(4958), - [anon_sym_assert] = ACTIONS(4958), - [anon_sym_upcast] = ACTIONS(4958), - [anon_sym_downcast] = ACTIONS(4958), - [anon_sym_LT_AT] = ACTIONS(4958), - [anon_sym_LT_AT_AT] = ACTIONS(4956), - [anon_sym_for] = ACTIONS(4958), - [anon_sym_while] = ACTIONS(4958), - [anon_sym_if] = ACTIONS(4958), - [anon_sym_fun] = ACTIONS(4958), - [anon_sym_try] = ACTIONS(4958), - [anon_sym_match] = ACTIONS(4958), - [anon_sym_match_BANG] = ACTIONS(4956), - [anon_sym_function] = ACTIONS(4958), - [anon_sym_use] = ACTIONS(4958), - [anon_sym_use_BANG] = ACTIONS(4956), - [anon_sym_do_BANG] = ACTIONS(4956), - [anon_sym_begin] = ACTIONS(4958), - [anon_sym_default] = ACTIONS(4958), - [anon_sym_static] = ACTIONS(4958), - [anon_sym_member] = ACTIONS(4958), - [anon_sym_abstract] = ACTIONS(4958), - [anon_sym_override] = ACTIONS(4958), - [anon_sym_val] = ACTIONS(4958), - [aux_sym_char_token1] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4958), - [anon_sym_DQUOTE] = ACTIONS(4958), - [anon_sym_AT_DQUOTE] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4956), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4956), - [sym_bool] = ACTIONS(4958), - [sym_unit] = ACTIONS(4956), - [anon_sym_LPAREN_PIPE] = ACTIONS(4958), - [sym_op_identifier] = ACTIONS(4956), - [anon_sym_PLUS] = ACTIONS(4958), - [anon_sym_DASH] = ACTIONS(4958), - [anon_sym_PLUS_DOT] = ACTIONS(4956), - [anon_sym_DASH_DOT] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4956), - [anon_sym_AMP_AMP] = ACTIONS(4956), - [anon_sym_TILDE] = ACTIONS(4956), - [aux_sym_prefix_op_token1] = ACTIONS(4956), - [sym_int] = ACTIONS(4958), - [sym_xint] = ACTIONS(4956), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4956), - [anon_sym_POUNDload] = ACTIONS(4956), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4956), - [sym__dedent] = ACTIONS(4956), + [aux_sym__compound_type_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(5129), + [sym_identifier] = ACTIONS(5131), + [anon_sym_namespace] = ACTIONS(5131), + [anon_sym_module] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_LBRACK_LT] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_type] = ACTIONS(5131), + [anon_sym_do] = ACTIONS(5131), + [anon_sym_and] = ACTIONS(5131), + [anon_sym_let] = ACTIONS(5131), + [anon_sym_let_BANG] = ACTIONS(5129), + [aux_sym_access_modifier_token1] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_LBRACK_PIPE] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_LT_AT] = ACTIONS(5131), + [anon_sym_LT_AT_AT] = ACTIONS(5129), + [anon_sym_LBRACE_PIPE] = ACTIONS(5129), + [anon_sym_new] = ACTIONS(5131), + [anon_sym_return_BANG] = ACTIONS(5129), + [anon_sym_yield] = ACTIONS(5131), + [anon_sym_yield_BANG] = ACTIONS(5129), + [anon_sym_lazy] = ACTIONS(5131), + [anon_sym_assert] = ACTIONS(5131), + [anon_sym_upcast] = ACTIONS(5131), + [anon_sym_downcast] = ACTIONS(5131), + [anon_sym_for] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(4754), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_match] = ACTIONS(5131), + [anon_sym_match_BANG] = ACTIONS(5129), + [anon_sym_function] = ACTIONS(5131), + [anon_sym_use] = ACTIONS(5131), + [anon_sym_use_BANG] = ACTIONS(5129), + [anon_sym_do_BANG] = ACTIONS(5129), + [anon_sym_begin] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), + [anon_sym_default] = ACTIONS(5131), + [anon_sym_static] = ACTIONS(5131), + [anon_sym_member] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_val] = ACTIONS(5131), + [aux_sym_char_token1] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5131), + [anon_sym_DQUOTE] = ACTIONS(5131), + [anon_sym_AT_DQUOTE] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [sym_bool] = ACTIONS(5131), + [sym_unit] = ACTIONS(5129), + [anon_sym_LPAREN_PIPE] = ACTIONS(5131), + [sym_op_identifier] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_PLUS_DOT] = ACTIONS(5129), + [anon_sym_DASH_DOT] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_TILDE] = ACTIONS(5129), + [aux_sym_prefix_op_token1] = ACTIONS(5129), + [sym_int] = ACTIONS(5131), + [sym_xint] = ACTIONS(5129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5129), + [anon_sym_POUNDload] = ACTIONS(5129), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5129), }, [2821] = { [sym_xml_doc] = STATE(2821), @@ -341116,164 +347449,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2821), [sym_fsi_directive_decl] = STATE(2821), [sym_preproc_line] = STATE(2821), - [sym_identifier] = ACTIONS(4984), - [anon_sym_module] = ACTIONS(4984), - [anon_sym_open] = ACTIONS(4984), - [anon_sym_LBRACK_LT] = ACTIONS(4982), - [anon_sym_return] = ACTIONS(4984), - [anon_sym_type] = ACTIONS(4984), - [anon_sym_do] = ACTIONS(4984), - [anon_sym_and] = ACTIONS(4984), - [anon_sym_let] = ACTIONS(4984), - [anon_sym_let_BANG] = ACTIONS(4982), - [aux_sym_access_modifier_token1] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_LBRACK_PIPE] = ACTIONS(4982), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACE_PIPE] = ACTIONS(4982), - [anon_sym_new] = ACTIONS(4984), - [anon_sym_return_BANG] = ACTIONS(4982), - [anon_sym_yield] = ACTIONS(4984), - [anon_sym_yield_BANG] = ACTIONS(4982), - [anon_sym_lazy] = ACTIONS(4984), - [anon_sym_assert] = ACTIONS(4984), - [anon_sym_upcast] = ACTIONS(4984), - [anon_sym_downcast] = ACTIONS(4984), - [anon_sym_LT_AT] = ACTIONS(4984), - [anon_sym_LT_AT_AT] = ACTIONS(4982), - [anon_sym_for] = ACTIONS(4984), - [anon_sym_while] = ACTIONS(4984), - [anon_sym_if] = ACTIONS(4984), - [anon_sym_fun] = ACTIONS(4984), - [anon_sym_try] = ACTIONS(4984), - [anon_sym_match] = ACTIONS(4984), - [anon_sym_match_BANG] = ACTIONS(4982), - [anon_sym_function] = ACTIONS(4984), - [anon_sym_use] = ACTIONS(4984), - [anon_sym_use_BANG] = ACTIONS(4982), - [anon_sym_do_BANG] = ACTIONS(4982), - [anon_sym_begin] = ACTIONS(4984), - [anon_sym_default] = ACTIONS(4984), - [anon_sym_static] = ACTIONS(4984), - [anon_sym_member] = ACTIONS(4984), - [anon_sym_abstract] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), - [anon_sym_val] = ACTIONS(4984), - [aux_sym_char_token1] = ACTIONS(4982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4984), - [anon_sym_DQUOTE] = ACTIONS(4984), - [anon_sym_AT_DQUOTE] = ACTIONS(4982), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4982), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4982), - [sym_bool] = ACTIONS(4984), - [sym_unit] = ACTIONS(4982), - [anon_sym_LPAREN_PIPE] = ACTIONS(4984), - [sym_op_identifier] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_PLUS_DOT] = ACTIONS(4982), - [anon_sym_DASH_DOT] = ACTIONS(4982), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_TILDE] = ACTIONS(4982), - [aux_sym_prefix_op_token1] = ACTIONS(4982), - [sym_int] = ACTIONS(4984), - [sym_xint] = ACTIONS(4982), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4982), - [anon_sym_POUNDload] = ACTIONS(4982), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4982), - [sym__dedent] = ACTIONS(4982), + [aux_sym_long_identifier_repeat1] = STATE(2781), + [sym_identifier] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_and] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [aux_sym_access_modifier_token1] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_member] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_val] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), }, [2822] = { + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2822), [sym_block_comment] = STATE(2822), [sym_line_comment] = STATE(2822), [sym_compiler_directive_decl] = STATE(2822), [sym_fsi_directive_decl] = STATE(2822), [sym_preproc_line] = STATE(2822), - [sym_identifier] = ACTIONS(4952), - [anon_sym_module] = ACTIONS(4952), - [anon_sym_open] = ACTIONS(4952), - [anon_sym_LBRACK_LT] = ACTIONS(4950), - [anon_sym_return] = ACTIONS(4952), - [anon_sym_type] = ACTIONS(4952), - [anon_sym_do] = ACTIONS(4952), - [anon_sym_and] = ACTIONS(4952), - [anon_sym_let] = ACTIONS(4952), - [anon_sym_let_BANG] = ACTIONS(4950), - [aux_sym_access_modifier_token1] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4952), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4952), - [anon_sym_LBRACK_PIPE] = ACTIONS(4950), - [anon_sym_LBRACE] = ACTIONS(4952), - [anon_sym_LBRACE_PIPE] = ACTIONS(4950), - [anon_sym_new] = ACTIONS(4952), - [anon_sym_return_BANG] = ACTIONS(4950), - [anon_sym_yield] = ACTIONS(4952), - [anon_sym_yield_BANG] = ACTIONS(4950), - [anon_sym_lazy] = ACTIONS(4952), - [anon_sym_assert] = ACTIONS(4952), - [anon_sym_upcast] = ACTIONS(4952), - [anon_sym_downcast] = ACTIONS(4952), - [anon_sym_LT_AT] = ACTIONS(4952), - [anon_sym_LT_AT_AT] = ACTIONS(4950), - [anon_sym_for] = ACTIONS(4952), - [anon_sym_while] = ACTIONS(4952), - [anon_sym_if] = ACTIONS(4952), - [anon_sym_fun] = ACTIONS(4952), - [anon_sym_try] = ACTIONS(4952), - [anon_sym_match] = ACTIONS(4952), - [anon_sym_match_BANG] = ACTIONS(4950), - [anon_sym_function] = ACTIONS(4952), - [anon_sym_use] = ACTIONS(4952), - [anon_sym_use_BANG] = ACTIONS(4950), - [anon_sym_do_BANG] = ACTIONS(4950), - [anon_sym_begin] = ACTIONS(4952), - [anon_sym_default] = ACTIONS(4952), - [anon_sym_static] = ACTIONS(4952), - [anon_sym_member] = ACTIONS(4952), - [anon_sym_abstract] = ACTIONS(4952), - [anon_sym_override] = ACTIONS(4952), - [anon_sym_val] = ACTIONS(4952), - [aux_sym_char_token1] = ACTIONS(4950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4952), - [anon_sym_AT_DQUOTE] = ACTIONS(4950), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4950), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4950), - [sym_bool] = ACTIONS(4952), - [sym_unit] = ACTIONS(4950), - [anon_sym_LPAREN_PIPE] = ACTIONS(4952), - [sym_op_identifier] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_PLUS_DOT] = ACTIONS(4950), - [anon_sym_DASH_DOT] = ACTIONS(4950), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_TILDE] = ACTIONS(4950), - [aux_sym_prefix_op_token1] = ACTIONS(4950), - [sym_int] = ACTIONS(4952), - [sym_xint] = ACTIONS(4950), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4950), - [anon_sym_POUNDload] = ACTIONS(4950), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4950), - [sym__dedent] = ACTIONS(4950), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(5131), + [anon_sym_module] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_LBRACK_LT] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_type] = ACTIONS(5131), + [anon_sym_do] = ACTIONS(5131), + [anon_sym_and] = ACTIONS(5131), + [anon_sym_let] = ACTIONS(5131), + [anon_sym_let_BANG] = ACTIONS(5129), + [aux_sym_access_modifier_token1] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_LBRACK_PIPE] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_LT_AT] = ACTIONS(5131), + [anon_sym_LT_AT_AT] = ACTIONS(5129), + [anon_sym_LBRACE_PIPE] = ACTIONS(5129), + [anon_sym_new] = ACTIONS(5131), + [anon_sym_return_BANG] = ACTIONS(5129), + [anon_sym_yield] = ACTIONS(5131), + [anon_sym_yield_BANG] = ACTIONS(5129), + [anon_sym_lazy] = ACTIONS(5131), + [anon_sym_assert] = ACTIONS(5131), + [anon_sym_upcast] = ACTIONS(5131), + [anon_sym_downcast] = ACTIONS(5131), + [anon_sym_for] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_match] = ACTIONS(5131), + [anon_sym_match_BANG] = ACTIONS(5129), + [anon_sym_function] = ACTIONS(5131), + [anon_sym_use] = ACTIONS(5131), + [anon_sym_use_BANG] = ACTIONS(5129), + [anon_sym_do_BANG] = ACTIONS(5129), + [anon_sym_begin] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(5131), + [anon_sym_static] = ACTIONS(5131), + [anon_sym_member] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_val] = ACTIONS(5131), + [aux_sym_char_token1] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5131), + [anon_sym_DQUOTE] = ACTIONS(5131), + [anon_sym_AT_DQUOTE] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [sym_bool] = ACTIONS(5131), + [sym_unit] = ACTIONS(5129), + [anon_sym_LPAREN_PIPE] = ACTIONS(5131), + [sym_op_identifier] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_PLUS_DOT] = ACTIONS(5129), + [anon_sym_DASH_DOT] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_TILDE] = ACTIONS(5129), + [aux_sym_prefix_op_token1] = ACTIONS(5129), + [sym_int] = ACTIONS(5131), + [sym_xint] = ACTIONS(5129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5129), + [anon_sym_POUNDload] = ACTIONS(5129), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5129), + [sym__dedent] = ACTIONS(5129), }, [2823] = { [sym_xml_doc] = STATE(2823), @@ -341282,81 +347630,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2823), [sym_fsi_directive_decl] = STATE(2823), [sym_preproc_line] = STATE(2823), - [sym_identifier] = ACTIONS(4962), - [anon_sym_module] = ACTIONS(4962), - [anon_sym_open] = ACTIONS(4962), - [anon_sym_LBRACK_LT] = ACTIONS(4960), - [anon_sym_return] = ACTIONS(4962), - [anon_sym_type] = ACTIONS(4962), - [anon_sym_do] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_let_BANG] = ACTIONS(4960), - [aux_sym_access_modifier_token1] = ACTIONS(4960), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4962), - [anon_sym_AMP] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_LBRACK_PIPE] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4962), - [anon_sym_LBRACE_PIPE] = ACTIONS(4960), - [anon_sym_new] = ACTIONS(4962), - [anon_sym_return_BANG] = ACTIONS(4960), - [anon_sym_yield] = ACTIONS(4962), - [anon_sym_yield_BANG] = ACTIONS(4960), - [anon_sym_lazy] = ACTIONS(4962), - [anon_sym_assert] = ACTIONS(4962), - [anon_sym_upcast] = ACTIONS(4962), - [anon_sym_downcast] = ACTIONS(4962), - [anon_sym_LT_AT] = ACTIONS(4962), - [anon_sym_LT_AT_AT] = ACTIONS(4960), - [anon_sym_for] = ACTIONS(4962), - [anon_sym_while] = ACTIONS(4962), - [anon_sym_if] = ACTIONS(4962), - [anon_sym_fun] = ACTIONS(4962), - [anon_sym_try] = ACTIONS(4962), - [anon_sym_match] = ACTIONS(4962), - [anon_sym_match_BANG] = ACTIONS(4960), - [anon_sym_function] = ACTIONS(4962), - [anon_sym_use] = ACTIONS(4962), - [anon_sym_use_BANG] = ACTIONS(4960), - [anon_sym_do_BANG] = ACTIONS(4960), - [anon_sym_begin] = ACTIONS(4962), - [anon_sym_default] = ACTIONS(4962), - [anon_sym_static] = ACTIONS(4962), - [anon_sym_member] = ACTIONS(4962), - [anon_sym_abstract] = ACTIONS(4962), - [anon_sym_override] = ACTIONS(4962), - [anon_sym_val] = ACTIONS(4962), - [aux_sym_char_token1] = ACTIONS(4960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [anon_sym_AT_DQUOTE] = ACTIONS(4960), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4960), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4960), - [sym_bool] = ACTIONS(4962), - [sym_unit] = ACTIONS(4960), - [anon_sym_LPAREN_PIPE] = ACTIONS(4962), - [sym_op_identifier] = ACTIONS(4960), - [anon_sym_PLUS] = ACTIONS(4962), - [anon_sym_DASH] = ACTIONS(4962), - [anon_sym_PLUS_DOT] = ACTIONS(4960), - [anon_sym_DASH_DOT] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4960), - [anon_sym_TILDE] = ACTIONS(4960), - [aux_sym_prefix_op_token1] = ACTIONS(4960), - [sym_int] = ACTIONS(4962), - [sym_xint] = ACTIONS(4960), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4960), - [anon_sym_POUNDload] = ACTIONS(4960), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4960), - [sym__dedent] = ACTIONS(4960), + [aux_sym__compound_type_repeat1] = STATE(2823), + [sym_identifier] = ACTIONS(3032), + [anon_sym_module] = ACTIONS(3032), + [anon_sym_open] = ACTIONS(3032), + [anon_sym_LBRACK_LT] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_and] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [aux_sym_access_modifier_token1] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5133), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_member] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_override] = ACTIONS(3032), + [anon_sym_val] = ACTIONS(3032), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3030), + [anon_sym_POUNDload] = ACTIONS(3030), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), }, [2824] = { [sym_xml_doc] = STATE(2824), @@ -341365,164 +347720,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2824), [sym_fsi_directive_decl] = STATE(2824), [sym_preproc_line] = STATE(2824), - [sym_identifier] = ACTIONS(5024), - [anon_sym_module] = ACTIONS(5024), - [anon_sym_open] = ACTIONS(5024), - [anon_sym_LBRACK_LT] = ACTIONS(5022), - [anon_sym_return] = ACTIONS(5024), - [anon_sym_type] = ACTIONS(5024), - [anon_sym_do] = ACTIONS(5024), - [anon_sym_and] = ACTIONS(5024), - [anon_sym_let] = ACTIONS(5024), - [anon_sym_let_BANG] = ACTIONS(5022), - [aux_sym_access_modifier_token1] = ACTIONS(5022), - [anon_sym_LPAREN] = ACTIONS(5024), - [anon_sym_null] = ACTIONS(5024), - [anon_sym_AMP] = ACTIONS(5024), - [anon_sym_LBRACK] = ACTIONS(5024), - [anon_sym_LBRACK_PIPE] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5024), - [anon_sym_LBRACE_PIPE] = ACTIONS(5022), - [anon_sym_new] = ACTIONS(5024), - [anon_sym_return_BANG] = ACTIONS(5022), - [anon_sym_yield] = ACTIONS(5024), - [anon_sym_yield_BANG] = ACTIONS(5022), - [anon_sym_lazy] = ACTIONS(5024), - [anon_sym_assert] = ACTIONS(5024), - [anon_sym_upcast] = ACTIONS(5024), - [anon_sym_downcast] = ACTIONS(5024), - [anon_sym_LT_AT] = ACTIONS(5024), - [anon_sym_LT_AT_AT] = ACTIONS(5022), - [anon_sym_for] = ACTIONS(5024), - [anon_sym_while] = ACTIONS(5024), - [anon_sym_if] = ACTIONS(5024), - [anon_sym_fun] = ACTIONS(5024), - [anon_sym_try] = ACTIONS(5024), - [anon_sym_match] = ACTIONS(5024), - [anon_sym_match_BANG] = ACTIONS(5022), - [anon_sym_function] = ACTIONS(5024), - [anon_sym_use] = ACTIONS(5024), - [anon_sym_use_BANG] = ACTIONS(5022), - [anon_sym_do_BANG] = ACTIONS(5022), - [anon_sym_begin] = ACTIONS(5024), - [anon_sym_default] = ACTIONS(5024), - [anon_sym_static] = ACTIONS(5024), - [anon_sym_member] = ACTIONS(5024), - [anon_sym_abstract] = ACTIONS(5024), - [anon_sym_override] = ACTIONS(5024), - [anon_sym_val] = ACTIONS(5024), - [aux_sym_char_token1] = ACTIONS(5022), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5024), - [anon_sym_DQUOTE] = ACTIONS(5024), - [anon_sym_AT_DQUOTE] = ACTIONS(5022), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5022), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5022), - [sym_bool] = ACTIONS(5024), - [sym_unit] = ACTIONS(5022), - [anon_sym_LPAREN_PIPE] = ACTIONS(5024), - [sym_op_identifier] = ACTIONS(5022), - [anon_sym_PLUS] = ACTIONS(5024), - [anon_sym_DASH] = ACTIONS(5024), - [anon_sym_PLUS_DOT] = ACTIONS(5022), - [anon_sym_DASH_DOT] = ACTIONS(5022), - [anon_sym_PERCENT] = ACTIONS(5022), - [anon_sym_AMP_AMP] = ACTIONS(5022), - [anon_sym_TILDE] = ACTIONS(5022), - [aux_sym_prefix_op_token1] = ACTIONS(5022), - [sym_int] = ACTIONS(5024), - [sym_xint] = ACTIONS(5022), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5022), - [anon_sym_POUNDload] = ACTIONS(5022), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5022), - [sym__dedent] = ACTIONS(5022), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_and] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [aux_sym_access_modifier_token1] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_member] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_val] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), }, [2825] = { + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2825), [sym_block_comment] = STATE(2825), [sym_line_comment] = STATE(2825), [sym_compiler_directive_decl] = STATE(2825), [sym_fsi_directive_decl] = STATE(2825), [sym_preproc_line] = STATE(2825), - [sym_identifier] = ACTIONS(4661), - [anon_sym_module] = ACTIONS(4661), - [anon_sym_open] = ACTIONS(4661), - [anon_sym_LBRACK_LT] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4661), - [anon_sym_type] = ACTIONS(4661), - [anon_sym_do] = ACTIONS(4661), - [anon_sym_and] = ACTIONS(4661), - [anon_sym_let] = ACTIONS(4661), - [anon_sym_let_BANG] = ACTIONS(4659), - [aux_sym_access_modifier_token1] = ACTIONS(4659), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_null] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_PIPE] = ACTIONS(4659), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_LBRACE_PIPE] = ACTIONS(4659), - [anon_sym_new] = ACTIONS(4661), - [anon_sym_return_BANG] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4661), - [anon_sym_yield_BANG] = ACTIONS(4659), - [anon_sym_lazy] = ACTIONS(4661), - [anon_sym_assert] = ACTIONS(4661), - [anon_sym_upcast] = ACTIONS(4661), - [anon_sym_downcast] = ACTIONS(4661), - [anon_sym_LT_AT] = ACTIONS(4661), - [anon_sym_LT_AT_AT] = ACTIONS(4659), - [anon_sym_for] = ACTIONS(4661), - [anon_sym_while] = ACTIONS(4661), - [anon_sym_if] = ACTIONS(4661), - [anon_sym_fun] = ACTIONS(4661), - [anon_sym_try] = ACTIONS(4661), - [anon_sym_match] = ACTIONS(4661), - [anon_sym_match_BANG] = ACTIONS(4659), - [anon_sym_function] = ACTIONS(4661), - [anon_sym_use] = ACTIONS(4661), - [anon_sym_use_BANG] = ACTIONS(4659), - [anon_sym_do_BANG] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4661), - [anon_sym_default] = ACTIONS(4661), - [anon_sym_static] = ACTIONS(4661), - [anon_sym_member] = ACTIONS(4661), - [anon_sym_abstract] = ACTIONS(4661), - [anon_sym_override] = ACTIONS(4661), - [anon_sym_val] = ACTIONS(4661), - [aux_sym_char_token1] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_AT_DQUOTE] = ACTIONS(4659), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4659), - [sym_bool] = ACTIONS(4661), - [sym_unit] = ACTIONS(4659), - [anon_sym_LPAREN_PIPE] = ACTIONS(4661), - [sym_op_identifier] = ACTIONS(4659), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4661), - [anon_sym_PLUS_DOT] = ACTIONS(4659), - [anon_sym_DASH_DOT] = ACTIONS(4659), - [anon_sym_PERCENT] = ACTIONS(4659), - [anon_sym_AMP_AMP] = ACTIONS(4659), - [anon_sym_TILDE] = ACTIONS(4659), - [aux_sym_prefix_op_token1] = ACTIONS(4659), - [sym_int] = ACTIONS(4661), - [sym_xint] = ACTIONS(4659), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4659), - [anon_sym_POUNDload] = ACTIONS(4659), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4659), - [sym__dedent] = ACTIONS(4659), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(5075), + [anon_sym_module] = ACTIONS(5075), + [anon_sym_open] = ACTIONS(5075), + [anon_sym_LBRACK_LT] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5075), + [anon_sym_type] = ACTIONS(5075), + [anon_sym_do] = ACTIONS(5075), + [anon_sym_and] = ACTIONS(5075), + [anon_sym_let] = ACTIONS(5075), + [anon_sym_let_BANG] = ACTIONS(5073), + [aux_sym_access_modifier_token1] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_LBRACK_PIPE] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_LT_AT] = ACTIONS(5075), + [anon_sym_LT_AT_AT] = ACTIONS(5073), + [anon_sym_LBRACE_PIPE] = ACTIONS(5073), + [anon_sym_new] = ACTIONS(5075), + [anon_sym_return_BANG] = ACTIONS(5073), + [anon_sym_yield] = ACTIONS(5075), + [anon_sym_yield_BANG] = ACTIONS(5073), + [anon_sym_lazy] = ACTIONS(5075), + [anon_sym_assert] = ACTIONS(5075), + [anon_sym_upcast] = ACTIONS(5075), + [anon_sym_downcast] = ACTIONS(5075), + [anon_sym_for] = ACTIONS(5075), + [anon_sym_while] = ACTIONS(5075), + [anon_sym_if] = ACTIONS(5075), + [anon_sym_fun] = ACTIONS(5075), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5075), + [anon_sym_match] = ACTIONS(5075), + [anon_sym_match_BANG] = ACTIONS(5073), + [anon_sym_function] = ACTIONS(5075), + [anon_sym_use] = ACTIONS(5075), + [anon_sym_use_BANG] = ACTIONS(5073), + [anon_sym_do_BANG] = ACTIONS(5073), + [anon_sym_begin] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(5075), + [anon_sym_static] = ACTIONS(5075), + [anon_sym_member] = ACTIONS(5075), + [anon_sym_abstract] = ACTIONS(5075), + [anon_sym_override] = ACTIONS(5075), + [anon_sym_val] = ACTIONS(5075), + [aux_sym_char_token1] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_AT_DQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [sym_bool] = ACTIONS(5075), + [sym_unit] = ACTIONS(5073), + [anon_sym_LPAREN_PIPE] = ACTIONS(5075), + [sym_op_identifier] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_PLUS_DOT] = ACTIONS(5073), + [anon_sym_DASH_DOT] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_TILDE] = ACTIONS(5073), + [aux_sym_prefix_op_token1] = ACTIONS(5073), + [sym_int] = ACTIONS(5075), + [sym_xint] = ACTIONS(5073), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5073), + [anon_sym_POUNDload] = ACTIONS(5073), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5073), + [sym__dedent] = ACTIONS(5073), }, [2826] = { [sym_xml_doc] = STATE(2826), @@ -341531,81 +347900,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2826), [sym_fsi_directive_decl] = STATE(2826), [sym_preproc_line] = STATE(2826), - [sym_identifier] = ACTIONS(5004), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_open] = ACTIONS(5004), - [anon_sym_LBRACK_LT] = ACTIONS(5002), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_type] = ACTIONS(5004), - [anon_sym_do] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_let] = ACTIONS(5004), - [anon_sym_let_BANG] = ACTIONS(5002), - [aux_sym_access_modifier_token1] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_LBRACK_PIPE] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5004), - [anon_sym_LBRACE_PIPE] = ACTIONS(5002), - [anon_sym_new] = ACTIONS(5004), - [anon_sym_return_BANG] = ACTIONS(5002), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_yield_BANG] = ACTIONS(5002), - [anon_sym_lazy] = ACTIONS(5004), - [anon_sym_assert] = ACTIONS(5004), - [anon_sym_upcast] = ACTIONS(5004), - [anon_sym_downcast] = ACTIONS(5004), - [anon_sym_LT_AT] = ACTIONS(5004), - [anon_sym_LT_AT_AT] = ACTIONS(5002), - [anon_sym_for] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_if] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_match] = ACTIONS(5004), - [anon_sym_match_BANG] = ACTIONS(5002), - [anon_sym_function] = ACTIONS(5004), - [anon_sym_use] = ACTIONS(5004), - [anon_sym_use_BANG] = ACTIONS(5002), - [anon_sym_do_BANG] = ACTIONS(5002), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_default] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_member] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_val] = ACTIONS(5004), - [aux_sym_char_token1] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), - [anon_sym_DQUOTE] = ACTIONS(5004), - [anon_sym_AT_DQUOTE] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5002), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5002), - [sym_bool] = ACTIONS(5004), - [sym_unit] = ACTIONS(5002), - [anon_sym_LPAREN_PIPE] = ACTIONS(5004), - [sym_op_identifier] = ACTIONS(5002), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS_DOT] = ACTIONS(5002), - [anon_sym_DASH_DOT] = ACTIONS(5002), - [anon_sym_PERCENT] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [aux_sym_prefix_op_token1] = ACTIONS(5002), - [sym_int] = ACTIONS(5004), - [sym_xint] = ACTIONS(5002), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5002), - [anon_sym_POUNDload] = ACTIONS(5002), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5002), - [sym__dedent] = ACTIONS(5002), + [ts_builtin_sym_end] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_open] = ACTIONS(3300), + [anon_sym_LBRACK_LT] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_and] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [aux_sym_access_modifier_token1] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_member] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_val] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3302), + [anon_sym_POUNDload] = ACTIONS(3302), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), }, [2827] = { [sym_xml_doc] = STATE(2827), @@ -341614,81 +347990,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2827), [sym_fsi_directive_decl] = STATE(2827), [sym_preproc_line] = STATE(2827), - [sym_identifier] = ACTIONS(5036), - [anon_sym_module] = ACTIONS(5036), - [anon_sym_open] = ACTIONS(5036), - [anon_sym_LBRACK_LT] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5036), - [anon_sym_type] = ACTIONS(5036), - [anon_sym_do] = ACTIONS(5036), - [anon_sym_and] = ACTIONS(5036), - [anon_sym_let] = ACTIONS(5036), - [anon_sym_let_BANG] = ACTIONS(5034), - [aux_sym_access_modifier_token1] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LBRACK] = ACTIONS(5036), - [anon_sym_LBRACK_PIPE] = ACTIONS(5034), - [anon_sym_LBRACE] = ACTIONS(5036), - [anon_sym_LBRACE_PIPE] = ACTIONS(5034), - [anon_sym_new] = ACTIONS(5036), - [anon_sym_return_BANG] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5036), - [anon_sym_yield_BANG] = ACTIONS(5034), - [anon_sym_lazy] = ACTIONS(5036), - [anon_sym_assert] = ACTIONS(5036), - [anon_sym_upcast] = ACTIONS(5036), - [anon_sym_downcast] = ACTIONS(5036), - [anon_sym_LT_AT] = ACTIONS(5036), - [anon_sym_LT_AT_AT] = ACTIONS(5034), - [anon_sym_for] = ACTIONS(5036), - [anon_sym_while] = ACTIONS(5036), - [anon_sym_if] = ACTIONS(5036), - [anon_sym_fun] = ACTIONS(5036), - [anon_sym_try] = ACTIONS(5036), - [anon_sym_match] = ACTIONS(5036), - [anon_sym_match_BANG] = ACTIONS(5034), - [anon_sym_function] = ACTIONS(5036), - [anon_sym_use] = ACTIONS(5036), - [anon_sym_use_BANG] = ACTIONS(5034), - [anon_sym_do_BANG] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5036), - [anon_sym_default] = ACTIONS(5036), - [anon_sym_static] = ACTIONS(5036), - [anon_sym_member] = ACTIONS(5036), - [anon_sym_abstract] = ACTIONS(5036), - [anon_sym_override] = ACTIONS(5036), - [anon_sym_val] = ACTIONS(5036), - [aux_sym_char_token1] = ACTIONS(5034), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5036), - [anon_sym_DQUOTE] = ACTIONS(5036), - [anon_sym_AT_DQUOTE] = ACTIONS(5034), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5034), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5034), - [sym_bool] = ACTIONS(5036), - [sym_unit] = ACTIONS(5034), - [anon_sym_LPAREN_PIPE] = ACTIONS(5036), - [sym_op_identifier] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_PLUS_DOT] = ACTIONS(5034), - [anon_sym_DASH_DOT] = ACTIONS(5034), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_TILDE] = ACTIONS(5034), - [aux_sym_prefix_op_token1] = ACTIONS(5034), - [sym_int] = ACTIONS(5036), - [sym_xint] = ACTIONS(5034), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5034), - [anon_sym_POUNDload] = ACTIONS(5034), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5034), - [sym__dedent] = ACTIONS(5034), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_open] = ACTIONS(3304), + [anon_sym_LBRACK_LT] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_and] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [aux_sym_access_modifier_token1] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_member] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_val] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3306), + [anon_sym_POUNDload] = ACTIONS(3306), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), }, [2828] = { [sym_xml_doc] = STATE(2828), @@ -341697,164 +348080,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2828), [sym_fsi_directive_decl] = STATE(2828), [sym_preproc_line] = STATE(2828), - [sym_identifier] = ACTIONS(4994), - [anon_sym_module] = ACTIONS(4994), - [anon_sym_open] = ACTIONS(4994), - [anon_sym_LBRACK_LT] = ACTIONS(4992), - [anon_sym_return] = ACTIONS(4994), - [anon_sym_type] = ACTIONS(4994), - [anon_sym_do] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_let] = ACTIONS(4994), - [anon_sym_let_BANG] = ACTIONS(4992), - [aux_sym_access_modifier_token1] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_LBRACK_PIPE] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACE_PIPE] = ACTIONS(4992), - [anon_sym_new] = ACTIONS(4994), - [anon_sym_return_BANG] = ACTIONS(4992), - [anon_sym_yield] = ACTIONS(4994), - [anon_sym_yield_BANG] = ACTIONS(4992), - [anon_sym_lazy] = ACTIONS(4994), - [anon_sym_assert] = ACTIONS(4994), - [anon_sym_upcast] = ACTIONS(4994), - [anon_sym_downcast] = ACTIONS(4994), - [anon_sym_LT_AT] = ACTIONS(4994), - [anon_sym_LT_AT_AT] = ACTIONS(4992), - [anon_sym_for] = ACTIONS(4994), - [anon_sym_while] = ACTIONS(4994), - [anon_sym_if] = ACTIONS(4994), - [anon_sym_fun] = ACTIONS(4994), - [anon_sym_try] = ACTIONS(4994), - [anon_sym_match] = ACTIONS(4994), - [anon_sym_match_BANG] = ACTIONS(4992), - [anon_sym_function] = ACTIONS(4994), - [anon_sym_use] = ACTIONS(4994), - [anon_sym_use_BANG] = ACTIONS(4992), - [anon_sym_do_BANG] = ACTIONS(4992), - [anon_sym_begin] = ACTIONS(4994), - [anon_sym_default] = ACTIONS(4994), - [anon_sym_static] = ACTIONS(4994), - [anon_sym_member] = ACTIONS(4994), - [anon_sym_abstract] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_val] = ACTIONS(4994), - [aux_sym_char_token1] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(4994), - [anon_sym_AT_DQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4992), - [sym_bool] = ACTIONS(4994), - [sym_unit] = ACTIONS(4992), - [anon_sym_LPAREN_PIPE] = ACTIONS(4994), - [sym_op_identifier] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4994), - [anon_sym_PLUS_DOT] = ACTIONS(4992), - [anon_sym_DASH_DOT] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_AMP_AMP] = ACTIONS(4992), - [anon_sym_TILDE] = ACTIONS(4992), - [aux_sym_prefix_op_token1] = ACTIONS(4992), - [sym_int] = ACTIONS(4994), - [sym_xint] = ACTIONS(4992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4992), - [anon_sym_POUNDload] = ACTIONS(4992), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4992), - [sym__dedent] = ACTIONS(4992), + [aux_sym__compound_type_repeat1] = STATE(2823), + [sym_identifier] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_open] = ACTIONS(3212), + [anon_sym_LBRACK_LT] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_and] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [aux_sym_access_modifier_token1] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_member] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_val] = ACTIONS(3212), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3214), + [anon_sym_POUNDload] = ACTIONS(3214), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__dedent] = ACTIONS(3214), }, [2829] = { + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2829), [sym_block_comment] = STATE(2829), [sym_line_comment] = STATE(2829), [sym_compiler_directive_decl] = STATE(2829), [sym_fsi_directive_decl] = STATE(2829), [sym_preproc_line] = STATE(2829), - [sym_identifier] = ACTIONS(4970), - [anon_sym_module] = ACTIONS(4970), - [anon_sym_open] = ACTIONS(4970), - [anon_sym_LBRACK_LT] = ACTIONS(4968), - [anon_sym_return] = ACTIONS(4970), - [anon_sym_type] = ACTIONS(4970), - [anon_sym_do] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_let] = ACTIONS(4970), - [anon_sym_let_BANG] = ACTIONS(4968), - [aux_sym_access_modifier_token1] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_AMP] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_LBRACK_PIPE] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_LBRACE_PIPE] = ACTIONS(4968), - [anon_sym_new] = ACTIONS(4970), - [anon_sym_return_BANG] = ACTIONS(4968), - [anon_sym_yield] = ACTIONS(4970), - [anon_sym_yield_BANG] = ACTIONS(4968), - [anon_sym_lazy] = ACTIONS(4970), - [anon_sym_assert] = ACTIONS(4970), - [anon_sym_upcast] = ACTIONS(4970), - [anon_sym_downcast] = ACTIONS(4970), - [anon_sym_LT_AT] = ACTIONS(4970), - [anon_sym_LT_AT_AT] = ACTIONS(4968), - [anon_sym_for] = ACTIONS(4970), - [anon_sym_while] = ACTIONS(4970), - [anon_sym_if] = ACTIONS(4970), - [anon_sym_fun] = ACTIONS(4970), - [anon_sym_try] = ACTIONS(4970), - [anon_sym_match] = ACTIONS(4970), - [anon_sym_match_BANG] = ACTIONS(4968), - [anon_sym_function] = ACTIONS(4970), - [anon_sym_use] = ACTIONS(4970), - [anon_sym_use_BANG] = ACTIONS(4968), - [anon_sym_do_BANG] = ACTIONS(4968), - [anon_sym_begin] = ACTIONS(4970), - [anon_sym_default] = ACTIONS(4970), - [anon_sym_static] = ACTIONS(4970), - [anon_sym_member] = ACTIONS(4970), - [anon_sym_abstract] = ACTIONS(4970), - [anon_sym_override] = ACTIONS(4970), - [anon_sym_val] = ACTIONS(4970), - [aux_sym_char_token1] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4970), - [anon_sym_AT_DQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4968), - [sym_bool] = ACTIONS(4970), - [sym_unit] = ACTIONS(4968), - [anon_sym_LPAREN_PIPE] = ACTIONS(4970), - [sym_op_identifier] = ACTIONS(4968), - [anon_sym_PLUS] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4970), - [anon_sym_PLUS_DOT] = ACTIONS(4968), - [anon_sym_DASH_DOT] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4968), - [anon_sym_TILDE] = ACTIONS(4968), - [aux_sym_prefix_op_token1] = ACTIONS(4968), - [sym_int] = ACTIONS(4970), - [sym_xint] = ACTIONS(4968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4968), - [anon_sym_POUNDload] = ACTIONS(4968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4968), - [sym__dedent] = ACTIONS(4968), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(5038), + [anon_sym_module] = ACTIONS(5038), + [anon_sym_open] = ACTIONS(5038), + [anon_sym_LBRACK_LT] = ACTIONS(5036), + [anon_sym_return] = ACTIONS(5038), + [anon_sym_type] = ACTIONS(5038), + [anon_sym_do] = ACTIONS(5038), + [anon_sym_and] = ACTIONS(5038), + [anon_sym_let] = ACTIONS(5038), + [anon_sym_let_BANG] = ACTIONS(5036), + [aux_sym_access_modifier_token1] = ACTIONS(5036), + [anon_sym_LPAREN] = ACTIONS(5038), + [anon_sym_null] = ACTIONS(5038), + [anon_sym_AMP] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5038), + [anon_sym_LBRACK_PIPE] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5038), + [anon_sym_LT_AT] = ACTIONS(5038), + [anon_sym_LT_AT_AT] = ACTIONS(5036), + [anon_sym_LBRACE_PIPE] = ACTIONS(5036), + [anon_sym_new] = ACTIONS(5038), + [anon_sym_return_BANG] = ACTIONS(5036), + [anon_sym_yield] = ACTIONS(5038), + [anon_sym_yield_BANG] = ACTIONS(5036), + [anon_sym_lazy] = ACTIONS(5038), + [anon_sym_assert] = ACTIONS(5038), + [anon_sym_upcast] = ACTIONS(5038), + [anon_sym_downcast] = ACTIONS(5038), + [anon_sym_for] = ACTIONS(5038), + [anon_sym_while] = ACTIONS(5038), + [anon_sym_if] = ACTIONS(5038), + [anon_sym_fun] = ACTIONS(5038), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5038), + [anon_sym_match] = ACTIONS(5038), + [anon_sym_match_BANG] = ACTIONS(5036), + [anon_sym_function] = ACTIONS(5038), + [anon_sym_use] = ACTIONS(5038), + [anon_sym_use_BANG] = ACTIONS(5036), + [anon_sym_do_BANG] = ACTIONS(5036), + [anon_sym_begin] = ACTIONS(5038), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(5038), + [anon_sym_static] = ACTIONS(5038), + [anon_sym_member] = ACTIONS(5038), + [anon_sym_abstract] = ACTIONS(5038), + [anon_sym_override] = ACTIONS(5038), + [anon_sym_val] = ACTIONS(5038), + [aux_sym_char_token1] = ACTIONS(5036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5038), + [anon_sym_DQUOTE] = ACTIONS(5038), + [anon_sym_AT_DQUOTE] = ACTIONS(5036), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5036), + [sym_bool] = ACTIONS(5038), + [sym_unit] = ACTIONS(5036), + [anon_sym_LPAREN_PIPE] = ACTIONS(5038), + [sym_op_identifier] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5038), + [anon_sym_DASH] = ACTIONS(5038), + [anon_sym_PLUS_DOT] = ACTIONS(5036), + [anon_sym_DASH_DOT] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_AMP_AMP] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [aux_sym_prefix_op_token1] = ACTIONS(5036), + [sym_int] = ACTIONS(5038), + [sym_xint] = ACTIONS(5036), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5036), + [anon_sym_POUNDload] = ACTIONS(5036), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5036), + [sym__dedent] = ACTIONS(5036), }, [2830] = { [sym_xml_doc] = STATE(2830), @@ -341863,81 +348260,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2830), [sym_fsi_directive_decl] = STATE(2830), [sym_preproc_line] = STATE(2830), - [sym_identifier] = ACTIONS(5014), - [anon_sym_module] = ACTIONS(5014), - [anon_sym_open] = ACTIONS(5014), - [anon_sym_LBRACK_LT] = ACTIONS(5012), - [anon_sym_return] = ACTIONS(5014), - [anon_sym_type] = ACTIONS(5014), - [anon_sym_do] = ACTIONS(5014), - [anon_sym_and] = ACTIONS(5014), - [anon_sym_let] = ACTIONS(5014), - [anon_sym_let_BANG] = ACTIONS(5012), - [aux_sym_access_modifier_token1] = ACTIONS(5012), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_null] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_LBRACK_PIPE] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_LBRACE_PIPE] = ACTIONS(5012), - [anon_sym_new] = ACTIONS(5014), - [anon_sym_return_BANG] = ACTIONS(5012), - [anon_sym_yield] = ACTIONS(5014), - [anon_sym_yield_BANG] = ACTIONS(5012), - [anon_sym_lazy] = ACTIONS(5014), - [anon_sym_assert] = ACTIONS(5014), - [anon_sym_upcast] = ACTIONS(5014), - [anon_sym_downcast] = ACTIONS(5014), - [anon_sym_LT_AT] = ACTIONS(5014), - [anon_sym_LT_AT_AT] = ACTIONS(5012), - [anon_sym_for] = ACTIONS(5014), - [anon_sym_while] = ACTIONS(5014), - [anon_sym_if] = ACTIONS(5014), - [anon_sym_fun] = ACTIONS(5014), - [anon_sym_try] = ACTIONS(5014), - [anon_sym_match] = ACTIONS(5014), - [anon_sym_match_BANG] = ACTIONS(5012), - [anon_sym_function] = ACTIONS(5014), - [anon_sym_use] = ACTIONS(5014), - [anon_sym_use_BANG] = ACTIONS(5012), - [anon_sym_do_BANG] = ACTIONS(5012), - [anon_sym_begin] = ACTIONS(5014), - [anon_sym_default] = ACTIONS(5014), - [anon_sym_static] = ACTIONS(5014), - [anon_sym_member] = ACTIONS(5014), - [anon_sym_abstract] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), - [anon_sym_val] = ACTIONS(5014), - [aux_sym_char_token1] = ACTIONS(5012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5014), - [anon_sym_DQUOTE] = ACTIONS(5014), - [anon_sym_AT_DQUOTE] = ACTIONS(5012), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5012), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5012), - [sym_bool] = ACTIONS(5014), - [sym_unit] = ACTIONS(5012), - [anon_sym_LPAREN_PIPE] = ACTIONS(5014), - [sym_op_identifier] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5014), - [anon_sym_DASH] = ACTIONS(5014), - [anon_sym_PLUS_DOT] = ACTIONS(5012), - [anon_sym_DASH_DOT] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_AMP_AMP] = ACTIONS(5012), - [anon_sym_TILDE] = ACTIONS(5012), - [aux_sym_prefix_op_token1] = ACTIONS(5012), - [sym_int] = ACTIONS(5014), - [sym_xint] = ACTIONS(5012), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5012), - [anon_sym_POUNDload] = ACTIONS(5012), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5012), - [sym__dedent] = ACTIONS(5012), + [ts_builtin_sym_end] = ACTIONS(3294), + [sym_identifier] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_open] = ACTIONS(3292), + [anon_sym_LBRACK_LT] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_and] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [aux_sym_access_modifier_token1] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_member] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_val] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3294), + [anon_sym_POUNDload] = ACTIONS(3294), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), }, [2831] = { [sym_xml_doc] = STATE(2831), @@ -341946,1362 +348350,1526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2831), [sym_fsi_directive_decl] = STATE(2831), [sym_preproc_line] = STATE(2831), - [sym_identifier] = ACTIONS(4980), - [anon_sym_module] = ACTIONS(4980), - [anon_sym_open] = ACTIONS(4980), - [anon_sym_LBRACK_LT] = ACTIONS(4978), - [anon_sym_return] = ACTIONS(4980), - [anon_sym_type] = ACTIONS(4980), - [anon_sym_do] = ACTIONS(4980), - [anon_sym_and] = ACTIONS(4980), - [anon_sym_let] = ACTIONS(4980), - [anon_sym_let_BANG] = ACTIONS(4978), - [aux_sym_access_modifier_token1] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4980), - [anon_sym_null] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_LBRACK_PIPE] = ACTIONS(4978), - [anon_sym_LBRACE] = ACTIONS(4980), - [anon_sym_LBRACE_PIPE] = ACTIONS(4978), - [anon_sym_new] = ACTIONS(4980), - [anon_sym_return_BANG] = ACTIONS(4978), - [anon_sym_yield] = ACTIONS(4980), - [anon_sym_yield_BANG] = ACTIONS(4978), - [anon_sym_lazy] = ACTIONS(4980), - [anon_sym_assert] = ACTIONS(4980), - [anon_sym_upcast] = ACTIONS(4980), - [anon_sym_downcast] = ACTIONS(4980), - [anon_sym_LT_AT] = ACTIONS(4980), - [anon_sym_LT_AT_AT] = ACTIONS(4978), - [anon_sym_for] = ACTIONS(4980), - [anon_sym_while] = ACTIONS(4980), - [anon_sym_if] = ACTIONS(4980), - [anon_sym_fun] = ACTIONS(4980), - [anon_sym_try] = ACTIONS(4980), - [anon_sym_match] = ACTIONS(4980), - [anon_sym_match_BANG] = ACTIONS(4978), - [anon_sym_function] = ACTIONS(4980), - [anon_sym_use] = ACTIONS(4980), - [anon_sym_use_BANG] = ACTIONS(4978), - [anon_sym_do_BANG] = ACTIONS(4978), - [anon_sym_begin] = ACTIONS(4980), - [anon_sym_default] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [anon_sym_member] = ACTIONS(4980), - [anon_sym_abstract] = ACTIONS(4980), - [anon_sym_override] = ACTIONS(4980), - [anon_sym_val] = ACTIONS(4980), - [aux_sym_char_token1] = ACTIONS(4978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4980), - [anon_sym_DQUOTE] = ACTIONS(4980), - [anon_sym_AT_DQUOTE] = ACTIONS(4978), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4978), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4978), - [sym_bool] = ACTIONS(4980), - [sym_unit] = ACTIONS(4978), - [anon_sym_LPAREN_PIPE] = ACTIONS(4980), - [sym_op_identifier] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_PLUS_DOT] = ACTIONS(4978), - [anon_sym_DASH_DOT] = ACTIONS(4978), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_TILDE] = ACTIONS(4978), - [aux_sym_prefix_op_token1] = ACTIONS(4978), - [sym_int] = ACTIONS(4980), - [sym_xint] = ACTIONS(4978), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(4978), - [anon_sym_POUNDload] = ACTIONS(4978), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(4978), - [sym__dedent] = ACTIONS(4978), + [sym_identifier] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_and] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [aux_sym_access_modifier_token1] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5136), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_member] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_val] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [2832] = { - [sym_attributes] = STATE(7595), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2832), [sym_block_comment] = STATE(2832), [sym_line_comment] = STATE(2832), [sym_compiler_directive_decl] = STATE(2832), [sym_fsi_directive_decl] = STATE(2832), [sym_preproc_line] = STATE(2832), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2836), - [ts_builtin_sym_end] = ACTIONS(5048), - [sym_identifier] = ACTIONS(5050), - [anon_sym_namespace] = ACTIONS(5050), - [anon_sym_module] = ACTIONS(5050), - [anon_sym_open] = ACTIONS(5050), - [anon_sym_LBRACK_LT] = ACTIONS(5048), - [anon_sym_return] = ACTIONS(5050), - [anon_sym_type] = ACTIONS(5050), - [anon_sym_do] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5052), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_let_BANG] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_null] = ACTIONS(5050), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_LBRACK_PIPE] = ACTIONS(5048), - [anon_sym_LBRACE] = ACTIONS(5050), - [anon_sym_LBRACE_PIPE] = ACTIONS(5048), - [anon_sym_new] = ACTIONS(5050), - [anon_sym_return_BANG] = ACTIONS(5048), - [anon_sym_yield] = ACTIONS(5050), - [anon_sym_yield_BANG] = ACTIONS(5048), - [anon_sym_lazy] = ACTIONS(5050), - [anon_sym_assert] = ACTIONS(5050), - [anon_sym_upcast] = ACTIONS(5050), - [anon_sym_downcast] = ACTIONS(5050), - [anon_sym_LT_AT] = ACTIONS(5050), - [anon_sym_LT_AT_AT] = ACTIONS(5048), - [anon_sym_for] = ACTIONS(5050), - [anon_sym_while] = ACTIONS(5050), - [anon_sym_if] = ACTIONS(5050), - [anon_sym_fun] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5050), - [anon_sym_match] = ACTIONS(5050), - [anon_sym_match_BANG] = ACTIONS(5048), - [anon_sym_function] = ACTIONS(5050), - [anon_sym_use] = ACTIONS(5050), - [anon_sym_use_BANG] = ACTIONS(5048), - [anon_sym_do_BANG] = ACTIONS(5048), - [anon_sym_begin] = ACTIONS(5050), - [aux_sym_char_token1] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(5050), - [anon_sym_AT_DQUOTE] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [sym_bool] = ACTIONS(5050), - [sym_unit] = ACTIONS(5048), - [anon_sym_LPAREN_PIPE] = ACTIONS(5050), - [sym_op_identifier] = ACTIONS(5048), - [anon_sym_PLUS] = ACTIONS(5050), - [anon_sym_DASH] = ACTIONS(5050), - [anon_sym_PLUS_DOT] = ACTIONS(5048), - [anon_sym_DASH_DOT] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [aux_sym_prefix_op_token1] = ACTIONS(5048), - [sym_int] = ACTIONS(5050), - [sym_xint] = ACTIONS(5048), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5048), - [anon_sym_POUNDload] = ACTIONS(5048), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5048), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_open] = ACTIONS(3318), + [anon_sym_LBRACK_LT] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [aux_sym_access_modifier_token1] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_member] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_val] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3320), + [anon_sym_POUNDload] = ACTIONS(3320), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), }, [2833] = { - [sym_attributes] = STATE(7595), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2833), [sym_block_comment] = STATE(2833), [sym_line_comment] = STATE(2833), [sym_compiler_directive_decl] = STATE(2833), [sym_fsi_directive_decl] = STATE(2833), [sym_preproc_line] = STATE(2833), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2836), - [ts_builtin_sym_end] = ACTIONS(5054), - [sym_identifier] = ACTIONS(5056), - [anon_sym_namespace] = ACTIONS(5056), - [anon_sym_module] = ACTIONS(5056), - [anon_sym_open] = ACTIONS(5056), - [anon_sym_LBRACK_LT] = ACTIONS(5054), - [anon_sym_return] = ACTIONS(5056), - [anon_sym_type] = ACTIONS(5056), - [anon_sym_do] = ACTIONS(5056), - [anon_sym_and] = ACTIONS(5052), - [anon_sym_let] = ACTIONS(5056), - [anon_sym_let_BANG] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5056), - [anon_sym_null] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LBRACK] = ACTIONS(5056), - [anon_sym_LBRACK_PIPE] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_LBRACE_PIPE] = ACTIONS(5054), - [anon_sym_new] = ACTIONS(5056), - [anon_sym_return_BANG] = ACTIONS(5054), - [anon_sym_yield] = ACTIONS(5056), - [anon_sym_yield_BANG] = ACTIONS(5054), - [anon_sym_lazy] = ACTIONS(5056), - [anon_sym_assert] = ACTIONS(5056), - [anon_sym_upcast] = ACTIONS(5056), - [anon_sym_downcast] = ACTIONS(5056), - [anon_sym_LT_AT] = ACTIONS(5056), - [anon_sym_LT_AT_AT] = ACTIONS(5054), - [anon_sym_for] = ACTIONS(5056), - [anon_sym_while] = ACTIONS(5056), - [anon_sym_if] = ACTIONS(5056), - [anon_sym_fun] = ACTIONS(5056), - [anon_sym_try] = ACTIONS(5056), - [anon_sym_match] = ACTIONS(5056), - [anon_sym_match_BANG] = ACTIONS(5054), - [anon_sym_function] = ACTIONS(5056), - [anon_sym_use] = ACTIONS(5056), - [anon_sym_use_BANG] = ACTIONS(5054), - [anon_sym_do_BANG] = ACTIONS(5054), - [anon_sym_begin] = ACTIONS(5056), - [aux_sym_char_token1] = ACTIONS(5054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), - [anon_sym_DQUOTE] = ACTIONS(5056), - [anon_sym_AT_DQUOTE] = ACTIONS(5054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5054), - [sym_bool] = ACTIONS(5056), - [sym_unit] = ACTIONS(5054), - [anon_sym_LPAREN_PIPE] = ACTIONS(5056), - [sym_op_identifier] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_PLUS_DOT] = ACTIONS(5054), - [anon_sym_DASH_DOT] = ACTIONS(5054), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_TILDE] = ACTIONS(5054), - [aux_sym_prefix_op_token1] = ACTIONS(5054), - [sym_int] = ACTIONS(5056), - [sym_xint] = ACTIONS(5054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5054), - [anon_sym_POUNDload] = ACTIONS(5054), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5054), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_and] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [aux_sym_access_modifier_token1] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_member] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_val] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), }, [2834] = { - [sym_attributes] = STATE(7595), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2834), [sym_block_comment] = STATE(2834), [sym_line_comment] = STATE(2834), [sym_compiler_directive_decl] = STATE(2834), [sym_fsi_directive_decl] = STATE(2834), [sym_preproc_line] = STATE(2834), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2832), - [ts_builtin_sym_end] = ACTIONS(5058), - [sym_identifier] = ACTIONS(5060), - [anon_sym_namespace] = ACTIONS(5060), - [anon_sym_module] = ACTIONS(5060), - [anon_sym_open] = ACTIONS(5060), - [anon_sym_LBRACK_LT] = ACTIONS(5058), - [anon_sym_return] = ACTIONS(5060), - [anon_sym_type] = ACTIONS(5060), - [anon_sym_do] = ACTIONS(5060), - [anon_sym_and] = ACTIONS(5052), - [anon_sym_let] = ACTIONS(5060), - [anon_sym_let_BANG] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5060), - [anon_sym_null] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LBRACK] = ACTIONS(5060), - [anon_sym_LBRACK_PIPE] = ACTIONS(5058), - [anon_sym_LBRACE] = ACTIONS(5060), - [anon_sym_LBRACE_PIPE] = ACTIONS(5058), - [anon_sym_new] = ACTIONS(5060), - [anon_sym_return_BANG] = ACTIONS(5058), - [anon_sym_yield] = ACTIONS(5060), - [anon_sym_yield_BANG] = ACTIONS(5058), - [anon_sym_lazy] = ACTIONS(5060), - [anon_sym_assert] = ACTIONS(5060), - [anon_sym_upcast] = ACTIONS(5060), - [anon_sym_downcast] = ACTIONS(5060), - [anon_sym_LT_AT] = ACTIONS(5060), - [anon_sym_LT_AT_AT] = ACTIONS(5058), - [anon_sym_for] = ACTIONS(5060), - [anon_sym_while] = ACTIONS(5060), - [anon_sym_if] = ACTIONS(5060), - [anon_sym_fun] = ACTIONS(5060), - [anon_sym_try] = ACTIONS(5060), - [anon_sym_match] = ACTIONS(5060), - [anon_sym_match_BANG] = ACTIONS(5058), - [anon_sym_function] = ACTIONS(5060), - [anon_sym_use] = ACTIONS(5060), - [anon_sym_use_BANG] = ACTIONS(5058), - [anon_sym_do_BANG] = ACTIONS(5058), - [anon_sym_begin] = ACTIONS(5060), - [aux_sym_char_token1] = ACTIONS(5058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5060), - [anon_sym_DQUOTE] = ACTIONS(5060), - [anon_sym_AT_DQUOTE] = ACTIONS(5058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5058), - [sym_bool] = ACTIONS(5060), - [sym_unit] = ACTIONS(5058), - [anon_sym_LPAREN_PIPE] = ACTIONS(5060), - [sym_op_identifier] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_PLUS_DOT] = ACTIONS(5058), - [anon_sym_DASH_DOT] = ACTIONS(5058), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_TILDE] = ACTIONS(5058), - [aux_sym_prefix_op_token1] = ACTIONS(5058), - [sym_int] = ACTIONS(5060), - [sym_xint] = ACTIONS(5058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5058), - [anon_sym_POUNDload] = ACTIONS(5058), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5058), + [sym_identifier] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_open] = ACTIONS(3242), + [anon_sym_LBRACK_LT] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_and] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [aux_sym_access_modifier_token1] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_member] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_override] = ACTIONS(3242), + [anon_sym_val] = ACTIONS(3242), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3244), + [anon_sym_POUNDload] = ACTIONS(3244), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), }, [2835] = { - [sym_attributes] = STATE(7595), - [sym_attribute_set] = STATE(4327), + [sym_attributes] = STATE(5563), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8000), + [sym_member_defn] = STATE(3205), + [sym_additional_constr_defn] = STATE(3208), [sym_xml_doc] = STATE(2835), [sym_block_comment] = STATE(2835), [sym_line_comment] = STATE(2835), [sym_compiler_directive_decl] = STATE(2835), [sym_fsi_directive_decl] = STATE(2835), [sym_preproc_line] = STATE(2835), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2833), - [ts_builtin_sym_end] = ACTIONS(5048), - [sym_identifier] = ACTIONS(5050), - [anon_sym_namespace] = ACTIONS(5050), - [anon_sym_module] = ACTIONS(5050), - [anon_sym_open] = ACTIONS(5050), - [anon_sym_LBRACK_LT] = ACTIONS(5048), - [anon_sym_return] = ACTIONS(5050), - [anon_sym_type] = ACTIONS(5050), - [anon_sym_do] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5052), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_let_BANG] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_null] = ACTIONS(5050), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_LBRACK_PIPE] = ACTIONS(5048), - [anon_sym_LBRACE] = ACTIONS(5050), - [anon_sym_LBRACE_PIPE] = ACTIONS(5048), - [anon_sym_new] = ACTIONS(5050), - [anon_sym_return_BANG] = ACTIONS(5048), - [anon_sym_yield] = ACTIONS(5050), - [anon_sym_yield_BANG] = ACTIONS(5048), - [anon_sym_lazy] = ACTIONS(5050), - [anon_sym_assert] = ACTIONS(5050), - [anon_sym_upcast] = ACTIONS(5050), - [anon_sym_downcast] = ACTIONS(5050), - [anon_sym_LT_AT] = ACTIONS(5050), - [anon_sym_LT_AT_AT] = ACTIONS(5048), - [anon_sym_for] = ACTIONS(5050), - [anon_sym_while] = ACTIONS(5050), - [anon_sym_if] = ACTIONS(5050), - [anon_sym_fun] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5050), - [anon_sym_match] = ACTIONS(5050), - [anon_sym_match_BANG] = ACTIONS(5048), - [anon_sym_function] = ACTIONS(5050), - [anon_sym_use] = ACTIONS(5050), - [anon_sym_use_BANG] = ACTIONS(5048), - [anon_sym_do_BANG] = ACTIONS(5048), - [anon_sym_begin] = ACTIONS(5050), - [aux_sym_char_token1] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(5050), - [anon_sym_AT_DQUOTE] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [sym_bool] = ACTIONS(5050), - [sym_unit] = ACTIONS(5048), - [anon_sym_LPAREN_PIPE] = ACTIONS(5050), - [sym_op_identifier] = ACTIONS(5048), - [anon_sym_PLUS] = ACTIONS(5050), - [anon_sym_DASH] = ACTIONS(5050), - [anon_sym_PLUS_DOT] = ACTIONS(5048), - [anon_sym_DASH_DOT] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [aux_sym_prefix_op_token1] = ACTIONS(5048), - [sym_int] = ACTIONS(5050), - [sym_xint] = ACTIONS(5048), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5048), - [anon_sym_POUNDload] = ACTIONS(5048), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5048), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2845), + [sym_identifier] = ACTIONS(5042), + [anon_sym_module] = ACTIONS(5042), + [anon_sym_open] = ACTIONS(5042), + [anon_sym_LBRACK_LT] = ACTIONS(5040), + [anon_sym_return] = ACTIONS(5042), + [anon_sym_type] = ACTIONS(5042), + [anon_sym_do] = ACTIONS(5042), + [anon_sym_and] = ACTIONS(5042), + [anon_sym_let] = ACTIONS(5042), + [anon_sym_let_BANG] = ACTIONS(5040), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5042), + [anon_sym_null] = ACTIONS(5042), + [anon_sym_AMP] = ACTIONS(5042), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_LBRACK_PIPE] = ACTIONS(5040), + [anon_sym_LBRACE] = ACTIONS(5042), + [anon_sym_LT_AT] = ACTIONS(5042), + [anon_sym_LT_AT_AT] = ACTIONS(5040), + [anon_sym_LBRACE_PIPE] = ACTIONS(5040), + [anon_sym_new] = ACTIONS(5042), + [anon_sym_return_BANG] = ACTIONS(5040), + [anon_sym_yield] = ACTIONS(5042), + [anon_sym_yield_BANG] = ACTIONS(5040), + [anon_sym_lazy] = ACTIONS(5042), + [anon_sym_assert] = ACTIONS(5042), + [anon_sym_upcast] = ACTIONS(5042), + [anon_sym_downcast] = ACTIONS(5042), + [anon_sym_for] = ACTIONS(5042), + [anon_sym_while] = ACTIONS(5042), + [anon_sym_if] = ACTIONS(5042), + [anon_sym_fun] = ACTIONS(5042), + [anon_sym_try] = ACTIONS(5042), + [anon_sym_match] = ACTIONS(5042), + [anon_sym_match_BANG] = ACTIONS(5040), + [anon_sym_function] = ACTIONS(5042), + [anon_sym_use] = ACTIONS(5042), + [anon_sym_use_BANG] = ACTIONS(5040), + [anon_sym_do_BANG] = ACTIONS(5040), + [anon_sym_begin] = ACTIONS(5042), + [anon_sym_default] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5140), + [anon_sym_member] = ACTIONS(5142), + [anon_sym_abstract] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_val] = ACTIONS(5146), + [aux_sym_char_token1] = ACTIONS(5040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5042), + [anon_sym_DQUOTE] = ACTIONS(5042), + [anon_sym_AT_DQUOTE] = ACTIONS(5040), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5040), + [sym_bool] = ACTIONS(5042), + [sym_unit] = ACTIONS(5040), + [anon_sym_LPAREN_PIPE] = ACTIONS(5042), + [sym_op_identifier] = ACTIONS(5040), + [anon_sym_PLUS] = ACTIONS(5042), + [anon_sym_DASH] = ACTIONS(5042), + [anon_sym_PLUS_DOT] = ACTIONS(5040), + [anon_sym_DASH_DOT] = ACTIONS(5040), + [anon_sym_PERCENT] = ACTIONS(5040), + [anon_sym_AMP_AMP] = ACTIONS(5040), + [anon_sym_TILDE] = ACTIONS(5040), + [aux_sym_prefix_op_token1] = ACTIONS(5040), + [sym_int] = ACTIONS(5042), + [sym_xint] = ACTIONS(5040), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5040), + [anon_sym_POUNDload] = ACTIONS(5040), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5040), + [sym__dedent] = ACTIONS(5040), }, [2836] = { - [sym_attributes] = STATE(7595), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2836), [sym_block_comment] = STATE(2836), [sym_line_comment] = STATE(2836), [sym_compiler_directive_decl] = STATE(2836), [sym_fsi_directive_decl] = STATE(2836), [sym_preproc_line] = STATE(2836), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2836), - [ts_builtin_sym_end] = ACTIONS(5062), - [sym_identifier] = ACTIONS(5064), - [anon_sym_namespace] = ACTIONS(5064), - [anon_sym_module] = ACTIONS(5064), - [anon_sym_open] = ACTIONS(5064), - [anon_sym_LBRACK_LT] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5064), - [anon_sym_type] = ACTIONS(5064), - [anon_sym_do] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5069), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_let_BANG] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_null] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACK_PIPE] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5064), - [anon_sym_return_BANG] = ACTIONS(5062), - [anon_sym_yield] = ACTIONS(5064), - [anon_sym_yield_BANG] = ACTIONS(5062), - [anon_sym_lazy] = ACTIONS(5064), - [anon_sym_assert] = ACTIONS(5064), - [anon_sym_upcast] = ACTIONS(5064), - [anon_sym_downcast] = ACTIONS(5064), - [anon_sym_LT_AT] = ACTIONS(5064), - [anon_sym_LT_AT_AT] = ACTIONS(5062), - [anon_sym_for] = ACTIONS(5064), - [anon_sym_while] = ACTIONS(5064), - [anon_sym_if] = ACTIONS(5064), - [anon_sym_fun] = ACTIONS(5064), - [anon_sym_try] = ACTIONS(5064), - [anon_sym_match] = ACTIONS(5064), - [anon_sym_match_BANG] = ACTIONS(5062), - [anon_sym_function] = ACTIONS(5064), - [anon_sym_use] = ACTIONS(5064), - [anon_sym_use_BANG] = ACTIONS(5062), - [anon_sym_do_BANG] = ACTIONS(5062), - [anon_sym_begin] = ACTIONS(5064), - [aux_sym_char_token1] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE] = ACTIONS(5064), - [anon_sym_AT_DQUOTE] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [sym_bool] = ACTIONS(5064), - [sym_unit] = ACTIONS(5062), - [anon_sym_LPAREN_PIPE] = ACTIONS(5064), - [sym_op_identifier] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_PLUS_DOT] = ACTIONS(5062), - [anon_sym_DASH_DOT] = ACTIONS(5062), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5062), - [aux_sym_prefix_op_token1] = ACTIONS(5062), - [sym_int] = ACTIONS(5064), - [sym_xint] = ACTIONS(5062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5062), - [anon_sym_POUNDload] = ACTIONS(5062), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5062), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_open] = ACTIONS(3336), + [anon_sym_LBRACK_LT] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_and] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [aux_sym_access_modifier_token1] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_member] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_val] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3338), + [anon_sym_POUNDload] = ACTIONS(3338), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), }, [2837] = { - [sym_interface_implementation] = STATE(2862), [sym_xml_doc] = STATE(2837), [sym_block_comment] = STATE(2837), [sym_line_comment] = STATE(2837), [sym_compiler_directive_decl] = STATE(2837), [sym_fsi_directive_decl] = STATE(2837), [sym_preproc_line] = STATE(2837), - [aux_sym__object_expression_inner_repeat1] = STATE(2837), - [ts_builtin_sym_end] = ACTIONS(5072), - [sym_identifier] = ACTIONS(5074), - [anon_sym_namespace] = ACTIONS(5074), - [anon_sym_module] = ACTIONS(5074), - [anon_sym_open] = ACTIONS(5074), - [anon_sym_LBRACK_LT] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5074), - [anon_sym_type] = ACTIONS(5074), - [anon_sym_do] = ACTIONS(5074), - [anon_sym_and] = ACTIONS(5074), - [anon_sym_let] = ACTIONS(5074), - [anon_sym_let_BANG] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_null] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5074), - [anon_sym_LBRACK_PIPE] = ACTIONS(5072), - [anon_sym_LBRACE] = ACTIONS(5074), - [anon_sym_LBRACE_PIPE] = ACTIONS(5072), - [anon_sym_new] = ACTIONS(5074), - [anon_sym_return_BANG] = ACTIONS(5072), - [anon_sym_yield] = ACTIONS(5074), - [anon_sym_yield_BANG] = ACTIONS(5072), - [anon_sym_lazy] = ACTIONS(5074), - [anon_sym_assert] = ACTIONS(5074), - [anon_sym_upcast] = ACTIONS(5074), - [anon_sym_downcast] = ACTIONS(5074), - [anon_sym_LT_AT] = ACTIONS(5074), - [anon_sym_LT_AT_AT] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5074), - [anon_sym_while] = ACTIONS(5074), - [anon_sym_if] = ACTIONS(5074), - [anon_sym_fun] = ACTIONS(5074), - [anon_sym_try] = ACTIONS(5074), - [anon_sym_match] = ACTIONS(5074), - [anon_sym_match_BANG] = ACTIONS(5072), - [anon_sym_function] = ACTIONS(5074), - [anon_sym_use] = ACTIONS(5074), - [anon_sym_use_BANG] = ACTIONS(5072), - [anon_sym_do_BANG] = ACTIONS(5072), - [anon_sym_begin] = ACTIONS(5074), - [anon_sym_interface] = ACTIONS(5076), - [aux_sym_char_token1] = ACTIONS(5072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5074), - [anon_sym_DQUOTE] = ACTIONS(5074), - [anon_sym_AT_DQUOTE] = ACTIONS(5072), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5072), - [sym_bool] = ACTIONS(5074), - [sym_unit] = ACTIONS(5072), - [anon_sym_LPAREN_PIPE] = ACTIONS(5074), - [sym_op_identifier] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_PLUS_DOT] = ACTIONS(5072), - [anon_sym_DASH_DOT] = ACTIONS(5072), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_TILDE] = ACTIONS(5072), - [aux_sym_prefix_op_token1] = ACTIONS(5072), - [sym_int] = ACTIONS(5074), - [sym_xint] = ACTIONS(5072), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5072), - [anon_sym_POUNDload] = ACTIONS(5072), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5072), + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_LBRACK_LT] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_and] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [aux_sym_access_modifier_token1] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_member] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_val] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3342), + [anon_sym_POUNDload] = ACTIONS(3342), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), }, [2838] = { - [sym_attributes] = STATE(6676), - [sym_attribute_set] = STATE(4327), + [sym_attributes] = STATE(5563), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8000), + [sym_member_defn] = STATE(3205), + [sym_additional_constr_defn] = STATE(3208), [sym_xml_doc] = STATE(2838), [sym_block_comment] = STATE(2838), [sym_line_comment] = STATE(2838), [sym_compiler_directive_decl] = STATE(2838), [sym_fsi_directive_decl] = STATE(2838), [sym_preproc_line] = STATE(2838), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2839), - [sym_identifier] = ACTIONS(5060), - [anon_sym_module] = ACTIONS(5060), - [anon_sym_open] = ACTIONS(5060), - [anon_sym_LBRACK_LT] = ACTIONS(5058), - [anon_sym_return] = ACTIONS(5060), - [anon_sym_type] = ACTIONS(5060), - [anon_sym_do] = ACTIONS(5060), - [anon_sym_and] = ACTIONS(5079), - [anon_sym_let] = ACTIONS(5060), - [anon_sym_let_BANG] = ACTIONS(5058), - [anon_sym_LPAREN] = ACTIONS(5060), - [anon_sym_null] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(5060), - [anon_sym_LBRACK] = ACTIONS(5060), - [anon_sym_LBRACK_PIPE] = ACTIONS(5058), - [anon_sym_LBRACE] = ACTIONS(5060), - [anon_sym_LBRACE_PIPE] = ACTIONS(5058), - [anon_sym_new] = ACTIONS(5060), - [anon_sym_return_BANG] = ACTIONS(5058), - [anon_sym_yield] = ACTIONS(5060), - [anon_sym_yield_BANG] = ACTIONS(5058), - [anon_sym_lazy] = ACTIONS(5060), - [anon_sym_assert] = ACTIONS(5060), - [anon_sym_upcast] = ACTIONS(5060), - [anon_sym_downcast] = ACTIONS(5060), - [anon_sym_LT_AT] = ACTIONS(5060), - [anon_sym_LT_AT_AT] = ACTIONS(5058), - [anon_sym_for] = ACTIONS(5060), - [anon_sym_while] = ACTIONS(5060), - [anon_sym_if] = ACTIONS(5060), - [anon_sym_fun] = ACTIONS(5060), - [anon_sym_try] = ACTIONS(5060), - [anon_sym_match] = ACTIONS(5060), - [anon_sym_match_BANG] = ACTIONS(5058), - [anon_sym_function] = ACTIONS(5060), - [anon_sym_use] = ACTIONS(5060), - [anon_sym_use_BANG] = ACTIONS(5058), - [anon_sym_do_BANG] = ACTIONS(5058), - [anon_sym_begin] = ACTIONS(5060), - [aux_sym_char_token1] = ACTIONS(5058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5060), - [anon_sym_DQUOTE] = ACTIONS(5060), - [anon_sym_AT_DQUOTE] = ACTIONS(5058), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5058), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5058), - [sym_bool] = ACTIONS(5060), - [sym_unit] = ACTIONS(5058), - [anon_sym_LPAREN_PIPE] = ACTIONS(5060), - [sym_op_identifier] = ACTIONS(5058), - [anon_sym_PLUS] = ACTIONS(5060), - [anon_sym_DASH] = ACTIONS(5060), - [anon_sym_PLUS_DOT] = ACTIONS(5058), - [anon_sym_DASH_DOT] = ACTIONS(5058), - [anon_sym_PERCENT] = ACTIONS(5058), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_TILDE] = ACTIONS(5058), - [aux_sym_prefix_op_token1] = ACTIONS(5058), - [sym_int] = ACTIONS(5060), - [sym_xint] = ACTIONS(5058), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5058), - [anon_sym_POUNDload] = ACTIONS(5058), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5058), - [sym__dedent] = ACTIONS(5058), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2838), + [sym_identifier] = ACTIONS(5091), + [anon_sym_module] = ACTIONS(5091), + [anon_sym_open] = ACTIONS(5091), + [anon_sym_LBRACK_LT] = ACTIONS(5093), + [anon_sym_return] = ACTIONS(5091), + [anon_sym_type] = ACTIONS(5091), + [anon_sym_do] = ACTIONS(5091), + [anon_sym_and] = ACTIONS(5091), + [anon_sym_let] = ACTIONS(5091), + [anon_sym_let_BANG] = ACTIONS(5089), + [aux_sym_access_modifier_token1] = ACTIONS(5096), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_null] = ACTIONS(5091), + [anon_sym_AMP] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_LBRACK_PIPE] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_LT_AT] = ACTIONS(5091), + [anon_sym_LT_AT_AT] = ACTIONS(5089), + [anon_sym_LBRACE_PIPE] = ACTIONS(5089), + [anon_sym_new] = ACTIONS(5148), + [anon_sym_return_BANG] = ACTIONS(5089), + [anon_sym_yield] = ACTIONS(5091), + [anon_sym_yield_BANG] = ACTIONS(5089), + [anon_sym_lazy] = ACTIONS(5091), + [anon_sym_assert] = ACTIONS(5091), + [anon_sym_upcast] = ACTIONS(5091), + [anon_sym_downcast] = ACTIONS(5091), + [anon_sym_for] = ACTIONS(5091), + [anon_sym_while] = ACTIONS(5091), + [anon_sym_if] = ACTIONS(5091), + [anon_sym_fun] = ACTIONS(5091), + [anon_sym_try] = ACTIONS(5091), + [anon_sym_match] = ACTIONS(5091), + [anon_sym_match_BANG] = ACTIONS(5089), + [anon_sym_function] = ACTIONS(5091), + [anon_sym_use] = ACTIONS(5091), + [anon_sym_use_BANG] = ACTIONS(5089), + [anon_sym_do_BANG] = ACTIONS(5089), + [anon_sym_begin] = ACTIONS(5091), + [anon_sym_default] = ACTIONS(5151), + [anon_sym_static] = ACTIONS(5154), + [anon_sym_member] = ACTIONS(5157), + [anon_sym_abstract] = ACTIONS(5160), + [anon_sym_override] = ACTIONS(5151), + [anon_sym_val] = ACTIONS(5163), + [aux_sym_char_token1] = ACTIONS(5089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5091), + [anon_sym_DQUOTE] = ACTIONS(5091), + [anon_sym_AT_DQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5089), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5089), + [sym_bool] = ACTIONS(5091), + [sym_unit] = ACTIONS(5089), + [anon_sym_LPAREN_PIPE] = ACTIONS(5091), + [sym_op_identifier] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5091), + [anon_sym_PLUS_DOT] = ACTIONS(5089), + [anon_sym_DASH_DOT] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_AMP_AMP] = ACTIONS(5089), + [anon_sym_TILDE] = ACTIONS(5089), + [aux_sym_prefix_op_token1] = ACTIONS(5089), + [sym_int] = ACTIONS(5091), + [sym_xint] = ACTIONS(5089), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5089), + [anon_sym_POUNDload] = ACTIONS(5089), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5089), + [sym__dedent] = ACTIONS(5089), }, [2839] = { - [sym_attributes] = STATE(6676), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2839), [sym_block_comment] = STATE(2839), [sym_line_comment] = STATE(2839), [sym_compiler_directive_decl] = STATE(2839), [sym_fsi_directive_decl] = STATE(2839), [sym_preproc_line] = STATE(2839), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2842), - [sym_identifier] = ACTIONS(5050), - [anon_sym_module] = ACTIONS(5050), - [anon_sym_open] = ACTIONS(5050), - [anon_sym_LBRACK_LT] = ACTIONS(5048), - [anon_sym_return] = ACTIONS(5050), - [anon_sym_type] = ACTIONS(5050), - [anon_sym_do] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5079), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_let_BANG] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_null] = ACTIONS(5050), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_LBRACK_PIPE] = ACTIONS(5048), - [anon_sym_LBRACE] = ACTIONS(5050), - [anon_sym_LBRACE_PIPE] = ACTIONS(5048), - [anon_sym_new] = ACTIONS(5050), - [anon_sym_return_BANG] = ACTIONS(5048), - [anon_sym_yield] = ACTIONS(5050), - [anon_sym_yield_BANG] = ACTIONS(5048), - [anon_sym_lazy] = ACTIONS(5050), - [anon_sym_assert] = ACTIONS(5050), - [anon_sym_upcast] = ACTIONS(5050), - [anon_sym_downcast] = ACTIONS(5050), - [anon_sym_LT_AT] = ACTIONS(5050), - [anon_sym_LT_AT_AT] = ACTIONS(5048), - [anon_sym_for] = ACTIONS(5050), - [anon_sym_while] = ACTIONS(5050), - [anon_sym_if] = ACTIONS(5050), - [anon_sym_fun] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5050), - [anon_sym_match] = ACTIONS(5050), - [anon_sym_match_BANG] = ACTIONS(5048), - [anon_sym_function] = ACTIONS(5050), - [anon_sym_use] = ACTIONS(5050), - [anon_sym_use_BANG] = ACTIONS(5048), - [anon_sym_do_BANG] = ACTIONS(5048), - [anon_sym_begin] = ACTIONS(5050), - [aux_sym_char_token1] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(5050), - [anon_sym_AT_DQUOTE] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [sym_bool] = ACTIONS(5050), - [sym_unit] = ACTIONS(5048), - [anon_sym_LPAREN_PIPE] = ACTIONS(5050), - [sym_op_identifier] = ACTIONS(5048), - [anon_sym_PLUS] = ACTIONS(5050), - [anon_sym_DASH] = ACTIONS(5050), - [anon_sym_PLUS_DOT] = ACTIONS(5048), - [anon_sym_DASH_DOT] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [aux_sym_prefix_op_token1] = ACTIONS(5048), - [sym_int] = ACTIONS(5050), - [sym_xint] = ACTIONS(5048), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5048), - [anon_sym_POUNDload] = ACTIONS(5048), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5048), - [sym__dedent] = ACTIONS(5048), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_open] = ACTIONS(3355), + [anon_sym_LBRACK_LT] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_and] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [aux_sym_access_modifier_token1] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5166), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_member] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_val] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3357), + [anon_sym_POUNDload] = ACTIONS(3357), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), }, [2840] = { - [sym_interface_implementation] = STATE(2862), + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2840), [sym_block_comment] = STATE(2840), [sym_line_comment] = STATE(2840), [sym_compiler_directive_decl] = STATE(2840), [sym_fsi_directive_decl] = STATE(2840), [sym_preproc_line] = STATE(2840), - [aux_sym__object_expression_inner_repeat1] = STATE(2837), - [ts_builtin_sym_end] = ACTIONS(5081), - [sym_identifier] = ACTIONS(5083), - [anon_sym_namespace] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_LBRACK_LT] = ACTIONS(5081), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_type] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_and] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_BANG] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_PIPE] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_LBRACE_PIPE] = ACTIONS(5081), - [anon_sym_new] = ACTIONS(5083), - [anon_sym_return_BANG] = ACTIONS(5081), - [anon_sym_yield] = ACTIONS(5083), - [anon_sym_yield_BANG] = ACTIONS(5081), - [anon_sym_lazy] = ACTIONS(5083), - [anon_sym_assert] = ACTIONS(5083), - [anon_sym_upcast] = ACTIONS(5083), - [anon_sym_downcast] = ACTIONS(5083), - [anon_sym_LT_AT] = ACTIONS(5083), - [anon_sym_LT_AT_AT] = ACTIONS(5081), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_match_BANG] = ACTIONS(5081), - [anon_sym_function] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_use_BANG] = ACTIONS(5081), - [anon_sym_do_BANG] = ACTIONS(5081), - [anon_sym_begin] = ACTIONS(5083), - [anon_sym_interface] = ACTIONS(5085), - [aux_sym_char_token1] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_AT_DQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [sym_bool] = ACTIONS(5083), - [sym_unit] = ACTIONS(5081), - [anon_sym_LPAREN_PIPE] = ACTIONS(5083), - [sym_op_identifier] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_PLUS_DOT] = ACTIONS(5081), - [anon_sym_DASH_DOT] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_TILDE] = ACTIONS(5081), - [aux_sym_prefix_op_token1] = ACTIONS(5081), - [sym_int] = ACTIONS(5083), - [sym_xint] = ACTIONS(5081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5081), - [anon_sym_POUNDload] = ACTIONS(5081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5081), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(5071), + [anon_sym_module] = ACTIONS(5071), + [anon_sym_open] = ACTIONS(5071), + [anon_sym_LBRACK_LT] = ACTIONS(5069), + [anon_sym_return] = ACTIONS(5071), + [anon_sym_type] = ACTIONS(5071), + [anon_sym_do] = ACTIONS(5071), + [anon_sym_and] = ACTIONS(5071), + [anon_sym_let] = ACTIONS(5071), + [anon_sym_let_BANG] = ACTIONS(5069), + [aux_sym_access_modifier_token1] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_null] = ACTIONS(5071), + [anon_sym_AMP] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_LBRACK_PIPE] = ACTIONS(5069), + [anon_sym_LBRACE] = ACTIONS(5071), + [anon_sym_LT_AT] = ACTIONS(5071), + [anon_sym_LT_AT_AT] = ACTIONS(5069), + [anon_sym_LBRACE_PIPE] = ACTIONS(5069), + [anon_sym_new] = ACTIONS(5071), + [anon_sym_return_BANG] = ACTIONS(5069), + [anon_sym_yield] = ACTIONS(5071), + [anon_sym_yield_BANG] = ACTIONS(5069), + [anon_sym_lazy] = ACTIONS(5071), + [anon_sym_assert] = ACTIONS(5071), + [anon_sym_upcast] = ACTIONS(5071), + [anon_sym_downcast] = ACTIONS(5071), + [anon_sym_for] = ACTIONS(5071), + [anon_sym_while] = ACTIONS(5071), + [anon_sym_if] = ACTIONS(5071), + [anon_sym_fun] = ACTIONS(5071), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5071), + [anon_sym_match] = ACTIONS(5071), + [anon_sym_match_BANG] = ACTIONS(5069), + [anon_sym_function] = ACTIONS(5071), + [anon_sym_use] = ACTIONS(5071), + [anon_sym_use_BANG] = ACTIONS(5069), + [anon_sym_do_BANG] = ACTIONS(5069), + [anon_sym_begin] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(5071), + [anon_sym_static] = ACTIONS(5071), + [anon_sym_member] = ACTIONS(5071), + [anon_sym_abstract] = ACTIONS(5071), + [anon_sym_override] = ACTIONS(5071), + [anon_sym_val] = ACTIONS(5071), + [aux_sym_char_token1] = ACTIONS(5069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5071), + [anon_sym_DQUOTE] = ACTIONS(5071), + [anon_sym_AT_DQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5069), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5069), + [sym_bool] = ACTIONS(5071), + [sym_unit] = ACTIONS(5069), + [anon_sym_LPAREN_PIPE] = ACTIONS(5071), + [sym_op_identifier] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_PLUS_DOT] = ACTIONS(5069), + [anon_sym_DASH_DOT] = ACTIONS(5069), + [anon_sym_PERCENT] = ACTIONS(5069), + [anon_sym_AMP_AMP] = ACTIONS(5069), + [anon_sym_TILDE] = ACTIONS(5069), + [aux_sym_prefix_op_token1] = ACTIONS(5069), + [sym_int] = ACTIONS(5071), + [sym_xint] = ACTIONS(5069), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5069), + [anon_sym_POUNDload] = ACTIONS(5069), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5069), + [sym__dedent] = ACTIONS(5069), }, [2841] = { - [sym_attributes] = STATE(6676), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2841), [sym_block_comment] = STATE(2841), [sym_line_comment] = STATE(2841), [sym_compiler_directive_decl] = STATE(2841), [sym_fsi_directive_decl] = STATE(2841), [sym_preproc_line] = STATE(2841), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2842), - [sym_identifier] = ACTIONS(5056), - [anon_sym_module] = ACTIONS(5056), - [anon_sym_open] = ACTIONS(5056), - [anon_sym_LBRACK_LT] = ACTIONS(5054), - [anon_sym_return] = ACTIONS(5056), - [anon_sym_type] = ACTIONS(5056), - [anon_sym_do] = ACTIONS(5056), - [anon_sym_and] = ACTIONS(5079), - [anon_sym_let] = ACTIONS(5056), - [anon_sym_let_BANG] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5056), - [anon_sym_null] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(5056), - [anon_sym_LBRACK] = ACTIONS(5056), - [anon_sym_LBRACK_PIPE] = ACTIONS(5054), - [anon_sym_LBRACE] = ACTIONS(5056), - [anon_sym_LBRACE_PIPE] = ACTIONS(5054), - [anon_sym_new] = ACTIONS(5056), - [anon_sym_return_BANG] = ACTIONS(5054), - [anon_sym_yield] = ACTIONS(5056), - [anon_sym_yield_BANG] = ACTIONS(5054), - [anon_sym_lazy] = ACTIONS(5056), - [anon_sym_assert] = ACTIONS(5056), - [anon_sym_upcast] = ACTIONS(5056), - [anon_sym_downcast] = ACTIONS(5056), - [anon_sym_LT_AT] = ACTIONS(5056), - [anon_sym_LT_AT_AT] = ACTIONS(5054), - [anon_sym_for] = ACTIONS(5056), - [anon_sym_while] = ACTIONS(5056), - [anon_sym_if] = ACTIONS(5056), - [anon_sym_fun] = ACTIONS(5056), - [anon_sym_try] = ACTIONS(5056), - [anon_sym_match] = ACTIONS(5056), - [anon_sym_match_BANG] = ACTIONS(5054), - [anon_sym_function] = ACTIONS(5056), - [anon_sym_use] = ACTIONS(5056), - [anon_sym_use_BANG] = ACTIONS(5054), - [anon_sym_do_BANG] = ACTIONS(5054), - [anon_sym_begin] = ACTIONS(5056), - [aux_sym_char_token1] = ACTIONS(5054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), - [anon_sym_DQUOTE] = ACTIONS(5056), - [anon_sym_AT_DQUOTE] = ACTIONS(5054), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5054), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5054), - [sym_bool] = ACTIONS(5056), - [sym_unit] = ACTIONS(5054), - [anon_sym_LPAREN_PIPE] = ACTIONS(5056), - [sym_op_identifier] = ACTIONS(5054), - [anon_sym_PLUS] = ACTIONS(5056), - [anon_sym_DASH] = ACTIONS(5056), - [anon_sym_PLUS_DOT] = ACTIONS(5054), - [anon_sym_DASH_DOT] = ACTIONS(5054), - [anon_sym_PERCENT] = ACTIONS(5054), - [anon_sym_AMP_AMP] = ACTIONS(5054), - [anon_sym_TILDE] = ACTIONS(5054), - [aux_sym_prefix_op_token1] = ACTIONS(5054), - [sym_int] = ACTIONS(5056), - [sym_xint] = ACTIONS(5054), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5054), - [anon_sym_POUNDload] = ACTIONS(5054), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5054), - [sym__dedent] = ACTIONS(5054), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_open] = ACTIONS(3322), + [anon_sym_LBRACK_LT] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [aux_sym_access_modifier_token1] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_member] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_val] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3324), + [anon_sym_POUNDload] = ACTIONS(3324), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), }, [2842] = { - [sym_attributes] = STATE(6676), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2842), [sym_block_comment] = STATE(2842), [sym_line_comment] = STATE(2842), [sym_compiler_directive_decl] = STATE(2842), [sym_fsi_directive_decl] = STATE(2842), [sym_preproc_line] = STATE(2842), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2842), - [sym_identifier] = ACTIONS(5064), - [anon_sym_module] = ACTIONS(5064), - [anon_sym_open] = ACTIONS(5064), - [anon_sym_LBRACK_LT] = ACTIONS(5066), - [anon_sym_return] = ACTIONS(5064), - [anon_sym_type] = ACTIONS(5064), - [anon_sym_do] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5087), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_let_BANG] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_null] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACK_PIPE] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5064), - [anon_sym_return_BANG] = ACTIONS(5062), - [anon_sym_yield] = ACTIONS(5064), - [anon_sym_yield_BANG] = ACTIONS(5062), - [anon_sym_lazy] = ACTIONS(5064), - [anon_sym_assert] = ACTIONS(5064), - [anon_sym_upcast] = ACTIONS(5064), - [anon_sym_downcast] = ACTIONS(5064), - [anon_sym_LT_AT] = ACTIONS(5064), - [anon_sym_LT_AT_AT] = ACTIONS(5062), - [anon_sym_for] = ACTIONS(5064), - [anon_sym_while] = ACTIONS(5064), - [anon_sym_if] = ACTIONS(5064), - [anon_sym_fun] = ACTIONS(5064), - [anon_sym_try] = ACTIONS(5064), - [anon_sym_match] = ACTIONS(5064), - [anon_sym_match_BANG] = ACTIONS(5062), - [anon_sym_function] = ACTIONS(5064), - [anon_sym_use] = ACTIONS(5064), - [anon_sym_use_BANG] = ACTIONS(5062), - [anon_sym_do_BANG] = ACTIONS(5062), - [anon_sym_begin] = ACTIONS(5064), - [aux_sym_char_token1] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE] = ACTIONS(5064), - [anon_sym_AT_DQUOTE] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [sym_bool] = ACTIONS(5064), - [sym_unit] = ACTIONS(5062), - [anon_sym_LPAREN_PIPE] = ACTIONS(5064), - [sym_op_identifier] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_PLUS_DOT] = ACTIONS(5062), - [anon_sym_DASH_DOT] = ACTIONS(5062), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5062), - [aux_sym_prefix_op_token1] = ACTIONS(5062), - [sym_int] = ACTIONS(5064), - [sym_xint] = ACTIONS(5062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5062), - [anon_sym_POUNDload] = ACTIONS(5062), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5062), - [sym__dedent] = ACTIONS(5062), + [ts_builtin_sym_end] = ACTIONS(3298), + [sym_identifier] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_LBRACK_LT] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_and] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [aux_sym_access_modifier_token1] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_member] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_val] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3298), + [anon_sym_POUNDload] = ACTIONS(3298), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), }, [2843] = { - [sym_attributes] = STATE(6676), - [sym_attribute_set] = STATE(4327), [sym_xml_doc] = STATE(2843), [sym_block_comment] = STATE(2843), [sym_line_comment] = STATE(2843), [sym_compiler_directive_decl] = STATE(2843), [sym_fsi_directive_decl] = STATE(2843), [sym_preproc_line] = STATE(2843), - [aux_sym_attributes_repeat1] = STATE(3899), - [aux_sym_type_definition_repeat1] = STATE(2841), - [sym_identifier] = ACTIONS(5050), - [anon_sym_module] = ACTIONS(5050), - [anon_sym_open] = ACTIONS(5050), - [anon_sym_LBRACK_LT] = ACTIONS(5048), - [anon_sym_return] = ACTIONS(5050), - [anon_sym_type] = ACTIONS(5050), - [anon_sym_do] = ACTIONS(5050), - [anon_sym_and] = ACTIONS(5079), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_let_BANG] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5050), - [anon_sym_null] = ACTIONS(5050), - [anon_sym_AMP] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5050), - [anon_sym_LBRACK_PIPE] = ACTIONS(5048), - [anon_sym_LBRACE] = ACTIONS(5050), - [anon_sym_LBRACE_PIPE] = ACTIONS(5048), - [anon_sym_new] = ACTIONS(5050), - [anon_sym_return_BANG] = ACTIONS(5048), - [anon_sym_yield] = ACTIONS(5050), - [anon_sym_yield_BANG] = ACTIONS(5048), - [anon_sym_lazy] = ACTIONS(5050), - [anon_sym_assert] = ACTIONS(5050), - [anon_sym_upcast] = ACTIONS(5050), - [anon_sym_downcast] = ACTIONS(5050), - [anon_sym_LT_AT] = ACTIONS(5050), - [anon_sym_LT_AT_AT] = ACTIONS(5048), - [anon_sym_for] = ACTIONS(5050), - [anon_sym_while] = ACTIONS(5050), - [anon_sym_if] = ACTIONS(5050), - [anon_sym_fun] = ACTIONS(5050), - [anon_sym_try] = ACTIONS(5050), - [anon_sym_match] = ACTIONS(5050), - [anon_sym_match_BANG] = ACTIONS(5048), - [anon_sym_function] = ACTIONS(5050), - [anon_sym_use] = ACTIONS(5050), - [anon_sym_use_BANG] = ACTIONS(5048), - [anon_sym_do_BANG] = ACTIONS(5048), - [anon_sym_begin] = ACTIONS(5050), - [aux_sym_char_token1] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5050), - [anon_sym_DQUOTE] = ACTIONS(5050), - [anon_sym_AT_DQUOTE] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5048), - [sym_bool] = ACTIONS(5050), - [sym_unit] = ACTIONS(5048), - [anon_sym_LPAREN_PIPE] = ACTIONS(5050), - [sym_op_identifier] = ACTIONS(5048), - [anon_sym_PLUS] = ACTIONS(5050), - [anon_sym_DASH] = ACTIONS(5050), - [anon_sym_PLUS_DOT] = ACTIONS(5048), - [anon_sym_DASH_DOT] = ACTIONS(5048), - [anon_sym_PERCENT] = ACTIONS(5048), - [anon_sym_AMP_AMP] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [aux_sym_prefix_op_token1] = ACTIONS(5048), - [sym_int] = ACTIONS(5050), - [sym_xint] = ACTIONS(5048), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5048), - [anon_sym_POUNDload] = ACTIONS(5048), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5048), - [sym__dedent] = ACTIONS(5048), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_open] = ACTIONS(3308), + [anon_sym_LBRACK_LT] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_and] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [aux_sym_access_modifier_token1] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_member] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_val] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3310), + [anon_sym_POUNDload] = ACTIONS(3310), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), }, [2844] = { + [sym_type_arguments] = STATE(2853), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2844), [sym_block_comment] = STATE(2844), [sym_line_comment] = STATE(2844), [sym_compiler_directive_decl] = STATE(2844), [sym_fsi_directive_decl] = STATE(2844), [sym_preproc_line] = STATE(2844), - [aux_sym_type_argument_repeat1] = STATE(2856), - [sym_identifier] = ACTIONS(2941), - [anon_sym_GT_RBRACK] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(5090), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__newline] = ACTIONS(2943), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(5079), + [anon_sym_module] = ACTIONS(5079), + [anon_sym_open] = ACTIONS(5079), + [anon_sym_LBRACK_LT] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5079), + [anon_sym_type] = ACTIONS(5079), + [anon_sym_do] = ACTIONS(5079), + [anon_sym_and] = ACTIONS(5079), + [anon_sym_let] = ACTIONS(5079), + [anon_sym_let_BANG] = ACTIONS(5077), + [aux_sym_access_modifier_token1] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_LBRACK_PIPE] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_LT_AT] = ACTIONS(5079), + [anon_sym_LT_AT_AT] = ACTIONS(5077), + [anon_sym_LBRACE_PIPE] = ACTIONS(5077), + [anon_sym_new] = ACTIONS(5079), + [anon_sym_return_BANG] = ACTIONS(5077), + [anon_sym_yield] = ACTIONS(5079), + [anon_sym_yield_BANG] = ACTIONS(5077), + [anon_sym_lazy] = ACTIONS(5079), + [anon_sym_assert] = ACTIONS(5079), + [anon_sym_upcast] = ACTIONS(5079), + [anon_sym_downcast] = ACTIONS(5079), + [anon_sym_for] = ACTIONS(5079), + [anon_sym_while] = ACTIONS(5079), + [anon_sym_if] = ACTIONS(5079), + [anon_sym_fun] = ACTIONS(5079), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5079), + [anon_sym_match] = ACTIONS(5079), + [anon_sym_match_BANG] = ACTIONS(5077), + [anon_sym_function] = ACTIONS(5079), + [anon_sym_use] = ACTIONS(5079), + [anon_sym_use_BANG] = ACTIONS(5077), + [anon_sym_do_BANG] = ACTIONS(5077), + [anon_sym_begin] = ACTIONS(5079), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_default] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(5079), + [anon_sym_member] = ACTIONS(5079), + [anon_sym_abstract] = ACTIONS(5079), + [anon_sym_override] = ACTIONS(5079), + [anon_sym_val] = ACTIONS(5079), + [aux_sym_char_token1] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_AT_DQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [sym_bool] = ACTIONS(5079), + [sym_unit] = ACTIONS(5077), + [anon_sym_LPAREN_PIPE] = ACTIONS(5079), + [sym_op_identifier] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_PLUS_DOT] = ACTIONS(5077), + [anon_sym_DASH_DOT] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_AMP_AMP] = ACTIONS(5077), + [anon_sym_TILDE] = ACTIONS(5077), + [aux_sym_prefix_op_token1] = ACTIONS(5077), + [sym_int] = ACTIONS(5079), + [sym_xint] = ACTIONS(5077), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5077), + [anon_sym_POUNDload] = ACTIONS(5077), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5077), + [sym__dedent] = ACTIONS(5077), }, [2845] = { - [sym_type_arguments] = STATE(3002), - [sym_long_identifier] = STATE(2981), + [sym_attributes] = STATE(5563), + [sym_attribute_set] = STATE(4720), + [sym_access_modifier] = STATE(8000), + [sym_member_defn] = STATE(3205), + [sym_additional_constr_defn] = STATE(3208), [sym_xml_doc] = STATE(2845), [sym_block_comment] = STATE(2845), [sym_line_comment] = STATE(2845), [sym_compiler_directive_decl] = STATE(2845), [sym_fsi_directive_decl] = STATE(2845), [sym_preproc_line] = STATE(2845), - [aux_sym__compound_type_repeat1] = STATE(2916), - [sym_identifier] = ACTIONS(5092), - [anon_sym_GT_RBRACK] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2076), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__newline] = ACTIONS(2812), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym__member_defns_repeat1] = STATE(2838), + [sym_identifier] = ACTIONS(5127), + [anon_sym_module] = ACTIONS(5127), + [anon_sym_open] = ACTIONS(5127), + [anon_sym_LBRACK_LT] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5127), + [anon_sym_type] = ACTIONS(5127), + [anon_sym_do] = ACTIONS(5127), + [anon_sym_and] = ACTIONS(5127), + [anon_sym_let] = ACTIONS(5127), + [anon_sym_let_BANG] = ACTIONS(5125), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5127), + [anon_sym_AMP] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_LBRACK_PIPE] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_LT_AT] = ACTIONS(5127), + [anon_sym_LT_AT_AT] = ACTIONS(5125), + [anon_sym_LBRACE_PIPE] = ACTIONS(5125), + [anon_sym_new] = ACTIONS(5127), + [anon_sym_return_BANG] = ACTIONS(5125), + [anon_sym_yield] = ACTIONS(5127), + [anon_sym_yield_BANG] = ACTIONS(5125), + [anon_sym_lazy] = ACTIONS(5127), + [anon_sym_assert] = ACTIONS(5127), + [anon_sym_upcast] = ACTIONS(5127), + [anon_sym_downcast] = ACTIONS(5127), + [anon_sym_for] = ACTIONS(5127), + [anon_sym_while] = ACTIONS(5127), + [anon_sym_if] = ACTIONS(5127), + [anon_sym_fun] = ACTIONS(5127), + [anon_sym_try] = ACTIONS(5127), + [anon_sym_match] = ACTIONS(5127), + [anon_sym_match_BANG] = ACTIONS(5125), + [anon_sym_function] = ACTIONS(5127), + [anon_sym_use] = ACTIONS(5127), + [anon_sym_use_BANG] = ACTIONS(5125), + [anon_sym_do_BANG] = ACTIONS(5125), + [anon_sym_begin] = ACTIONS(5127), + [anon_sym_default] = ACTIONS(5138), + [anon_sym_static] = ACTIONS(5140), + [anon_sym_member] = ACTIONS(5142), + [anon_sym_abstract] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5138), + [anon_sym_val] = ACTIONS(5146), + [aux_sym_char_token1] = ACTIONS(5125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5127), + [anon_sym_DQUOTE] = ACTIONS(5127), + [anon_sym_AT_DQUOTE] = ACTIONS(5125), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5125), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5125), + [sym_bool] = ACTIONS(5127), + [sym_unit] = ACTIONS(5125), + [anon_sym_LPAREN_PIPE] = ACTIONS(5127), + [sym_op_identifier] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_PLUS_DOT] = ACTIONS(5125), + [anon_sym_DASH_DOT] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_AMP_AMP] = ACTIONS(5125), + [anon_sym_TILDE] = ACTIONS(5125), + [aux_sym_prefix_op_token1] = ACTIONS(5125), + [sym_int] = ACTIONS(5127), + [sym_xint] = ACTIONS(5125), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5125), + [anon_sym_POUNDload] = ACTIONS(5125), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5125), + [sym__dedent] = ACTIONS(5125), }, [2846] = { - [sym_interface_implementation] = STATE(2902), [sym_xml_doc] = STATE(2846), [sym_block_comment] = STATE(2846), [sym_line_comment] = STATE(2846), [sym_compiler_directive_decl] = STATE(2846), [sym_fsi_directive_decl] = STATE(2846), [sym_preproc_line] = STATE(2846), - [aux_sym__object_expression_inner_repeat1] = STATE(2846), - [sym_identifier] = ACTIONS(5074), - [anon_sym_module] = ACTIONS(5074), - [anon_sym_open] = ACTIONS(5074), - [anon_sym_LBRACK_LT] = ACTIONS(5072), - [anon_sym_return] = ACTIONS(5074), - [anon_sym_type] = ACTIONS(5074), - [anon_sym_do] = ACTIONS(5074), - [anon_sym_and] = ACTIONS(5074), - [anon_sym_let] = ACTIONS(5074), - [anon_sym_let_BANG] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_null] = ACTIONS(5074), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5074), - [anon_sym_LBRACK_PIPE] = ACTIONS(5072), - [anon_sym_LBRACE] = ACTIONS(5074), - [anon_sym_LBRACE_PIPE] = ACTIONS(5072), - [anon_sym_new] = ACTIONS(5074), - [anon_sym_return_BANG] = ACTIONS(5072), - [anon_sym_yield] = ACTIONS(5074), - [anon_sym_yield_BANG] = ACTIONS(5072), - [anon_sym_lazy] = ACTIONS(5074), - [anon_sym_assert] = ACTIONS(5074), - [anon_sym_upcast] = ACTIONS(5074), - [anon_sym_downcast] = ACTIONS(5074), - [anon_sym_LT_AT] = ACTIONS(5074), - [anon_sym_LT_AT_AT] = ACTIONS(5072), - [anon_sym_for] = ACTIONS(5074), - [anon_sym_while] = ACTIONS(5074), - [anon_sym_if] = ACTIONS(5074), - [anon_sym_fun] = ACTIONS(5074), - [anon_sym_try] = ACTIONS(5074), - [anon_sym_match] = ACTIONS(5074), - [anon_sym_match_BANG] = ACTIONS(5072), - [anon_sym_function] = ACTIONS(5074), - [anon_sym_use] = ACTIONS(5074), - [anon_sym_use_BANG] = ACTIONS(5072), - [anon_sym_do_BANG] = ACTIONS(5072), - [anon_sym_begin] = ACTIONS(5074), - [anon_sym_interface] = ACTIONS(5094), - [aux_sym_char_token1] = ACTIONS(5072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5074), - [anon_sym_DQUOTE] = ACTIONS(5074), - [anon_sym_AT_DQUOTE] = ACTIONS(5072), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5072), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5072), - [sym_bool] = ACTIONS(5074), - [sym_unit] = ACTIONS(5072), - [anon_sym_LPAREN_PIPE] = ACTIONS(5074), - [sym_op_identifier] = ACTIONS(5072), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_PLUS_DOT] = ACTIONS(5072), - [anon_sym_DASH_DOT] = ACTIONS(5072), - [anon_sym_PERCENT] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_TILDE] = ACTIONS(5072), - [aux_sym_prefix_op_token1] = ACTIONS(5072), - [sym_int] = ACTIONS(5074), - [sym_xint] = ACTIONS(5072), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5072), - [anon_sym_POUNDload] = ACTIONS(5072), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5072), - [sym__dedent] = ACTIONS(5072), + [sym_identifier] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_LBRACK_LT] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_and] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [aux_sym_access_modifier_token1] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_member] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_val] = ACTIONS(3296), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3298), + [anon_sym_POUNDload] = ACTIONS(3298), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__dedent] = ACTIONS(3298), }, [2847] = { - [sym_interface_implementation] = STATE(2902), [sym_xml_doc] = STATE(2847), [sym_block_comment] = STATE(2847), [sym_line_comment] = STATE(2847), [sym_compiler_directive_decl] = STATE(2847), [sym_fsi_directive_decl] = STATE(2847), [sym_preproc_line] = STATE(2847), - [aux_sym__object_expression_inner_repeat1] = STATE(2846), - [sym_identifier] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_LBRACK_LT] = ACTIONS(5081), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_type] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_and] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_BANG] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_PIPE] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_LBRACE_PIPE] = ACTIONS(5081), - [anon_sym_new] = ACTIONS(5083), - [anon_sym_return_BANG] = ACTIONS(5081), - [anon_sym_yield] = ACTIONS(5083), - [anon_sym_yield_BANG] = ACTIONS(5081), - [anon_sym_lazy] = ACTIONS(5083), - [anon_sym_assert] = ACTIONS(5083), - [anon_sym_upcast] = ACTIONS(5083), - [anon_sym_downcast] = ACTIONS(5083), - [anon_sym_LT_AT] = ACTIONS(5083), - [anon_sym_LT_AT_AT] = ACTIONS(5081), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_match_BANG] = ACTIONS(5081), - [anon_sym_function] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_use_BANG] = ACTIONS(5081), - [anon_sym_do_BANG] = ACTIONS(5081), - [anon_sym_begin] = ACTIONS(5083), - [anon_sym_interface] = ACTIONS(5097), - [aux_sym_char_token1] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_AT_DQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [sym_bool] = ACTIONS(5083), - [sym_unit] = ACTIONS(5081), - [anon_sym_LPAREN_PIPE] = ACTIONS(5083), - [sym_op_identifier] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_PLUS_DOT] = ACTIONS(5081), - [anon_sym_DASH_DOT] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_TILDE] = ACTIONS(5081), - [aux_sym_prefix_op_token1] = ACTIONS(5081), - [sym_int] = ACTIONS(5083), - [sym_xint] = ACTIONS(5081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5081), - [anon_sym_POUNDload] = ACTIONS(5081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5081), - [sym__dedent] = ACTIONS(5081), + [sym_identifier] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_open] = ACTIONS(3300), + [anon_sym_LBRACK_LT] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_and] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [aux_sym_access_modifier_token1] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_member] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_val] = ACTIONS(3300), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3302), + [anon_sym_POUNDload] = ACTIONS(3302), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__dedent] = ACTIONS(3302), }, [2848] = { [sym_xml_doc] = STATE(2848), @@ -343310,77 +349878,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2848), [sym_fsi_directive_decl] = STATE(2848), [sym_preproc_line] = STATE(2848), - [aux_sym_type_argument_repeat1] = STATE(2849), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(5099), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_open] = ACTIONS(3304), + [anon_sym_LBRACK_LT] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_and] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [aux_sym_access_modifier_token1] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_member] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_val] = ACTIONS(3304), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3306), + [anon_sym_POUNDload] = ACTIONS(3306), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__dedent] = ACTIONS(3306), }, [2849] = { [sym_xml_doc] = STATE(2849), @@ -343389,156 +349967,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2849), [sym_fsi_directive_decl] = STATE(2849), [sym_preproc_line] = STATE(2849), - [aux_sym_type_argument_repeat1] = STATE(2853), - [sym_identifier] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(5099), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_open] = ACTIONS(3292), + [anon_sym_LBRACK_LT] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_and] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [aux_sym_access_modifier_token1] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_member] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_val] = ACTIONS(3292), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3294), + [anon_sym_POUNDload] = ACTIONS(3294), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__dedent] = ACTIONS(3294), }, [2850] = { - [sym_type_arguments] = STATE(2983), - [sym_long_identifier] = STATE(3014), [sym_xml_doc] = STATE(2850), [sym_block_comment] = STATE(2850), [sym_line_comment] = STATE(2850), [sym_compiler_directive_decl] = STATE(2850), [sym_fsi_directive_decl] = STATE(2850), [sym_preproc_line] = STATE(2850), - [aux_sym__compound_type_repeat1] = STATE(2934), - [sym_identifier] = ACTIONS(5101), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_open] = ACTIONS(3318), + [anon_sym_LBRACK_LT] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [aux_sym_access_modifier_token1] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_member] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_val] = ACTIONS(3318), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3320), + [anon_sym_POUNDload] = ACTIONS(3320), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__dedent] = ACTIONS(3320), }, [2851] = { [sym_xml_doc] = STATE(2851), @@ -343547,156 +350145,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2851), [sym_fsi_directive_decl] = STATE(2851), [sym_preproc_line] = STATE(2851), - [aux_sym_type_argument_repeat1] = STATE(2844), - [sym_identifier] = ACTIONS(2924), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(5090), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_open] = ACTIONS(3351), + [anon_sym_LBRACK_LT] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_and] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [aux_sym_access_modifier_token1] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_member] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_val] = ACTIONS(3351), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3353), + [anon_sym_POUNDload] = ACTIONS(3353), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), }, [2852] = { - [sym_type_arguments] = STATE(3002), - [sym_long_identifier] = STATE(2981), [sym_xml_doc] = STATE(2852), [sym_block_comment] = STATE(2852), [sym_line_comment] = STATE(2852), [sym_compiler_directive_decl] = STATE(2852), [sym_fsi_directive_decl] = STATE(2852), [sym_preproc_line] = STATE(2852), - [aux_sym__compound_type_repeat1] = STATE(2916), - [sym_identifier] = ACTIONS(5092), - [anon_sym_GT_RBRACK] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2076), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__newline] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_open] = ACTIONS(3322), + [anon_sym_LBRACK_LT] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [aux_sym_access_modifier_token1] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_member] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_val] = ACTIONS(3322), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3324), + [anon_sym_POUNDload] = ACTIONS(3324), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__dedent] = ACTIONS(3324), }, [2853] = { [sym_xml_doc] = STATE(2853), @@ -343705,235 +350323,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2853), [sym_fsi_directive_decl] = STATE(2853), [sym_preproc_line] = STATE(2853), - [aux_sym_type_argument_repeat1] = STATE(2853), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(5103), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_open] = ACTIONS(3336), + [anon_sym_LBRACK_LT] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_and] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [aux_sym_access_modifier_token1] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_member] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_abstract] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_val] = ACTIONS(3336), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3338), + [anon_sym_POUNDload] = ACTIONS(3338), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__dedent] = ACTIONS(3338), }, [2854] = { - [sym_type_arguments] = STATE(3002), - [sym_long_identifier] = STATE(2981), [sym_xml_doc] = STATE(2854), [sym_block_comment] = STATE(2854), [sym_line_comment] = STATE(2854), [sym_compiler_directive_decl] = STATE(2854), [sym_fsi_directive_decl] = STATE(2854), [sym_preproc_line] = STATE(2854), - [aux_sym__compound_type_repeat1] = STATE(2916), - [sym_identifier] = ACTIONS(5092), - [anon_sym_GT_RBRACK] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2076), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_open] = ACTIONS(3308), + [anon_sym_LBRACK_LT] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_and] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [aux_sym_access_modifier_token1] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_member] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_val] = ACTIONS(3308), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3310), + [anon_sym_POUNDload] = ACTIONS(3310), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__dedent] = ACTIONS(3310), }, [2855] = { - [sym_type_arguments] = STATE(3002), - [sym_long_identifier] = STATE(2981), [sym_xml_doc] = STATE(2855), [sym_block_comment] = STATE(2855), [sym_line_comment] = STATE(2855), [sym_compiler_directive_decl] = STATE(2855), [sym_fsi_directive_decl] = STATE(2855), [sym_preproc_line] = STATE(2855), - [aux_sym__compound_type_repeat1] = STATE(2916), - [sym_identifier] = ACTIONS(5092), - [anon_sym_GT_RBRACK] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2076), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__newline] = ACTIONS(2804), + [sym_identifier] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_open] = ACTIONS(3355), + [anon_sym_LBRACK_LT] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_and] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [aux_sym_access_modifier_token1] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5168), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_member] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_val] = ACTIONS(3355), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3357), + [anon_sym_POUNDload] = ACTIONS(3357), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3357), }, [2856] = { [sym_xml_doc] = STATE(2856), @@ -343942,1322 +350590,1473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2856), [sym_fsi_directive_decl] = STATE(2856), [sym_preproc_line] = STATE(2856), - [aux_sym_type_argument_repeat1] = STATE(2856), - [sym_identifier] = ACTIONS(2917), - [anon_sym_GT_RBRACK] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(5106), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [sym_identifier] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_open] = ACTIONS(3340), + [anon_sym_LBRACK_LT] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_and] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [aux_sym_access_modifier_token1] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_member] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_val] = ACTIONS(3340), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3342), + [anon_sym_POUNDload] = ACTIONS(3342), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__dedent] = ACTIONS(3342), }, [2857] = { - [sym_type_arguments] = STATE(2983), - [sym_long_identifier] = STATE(3014), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7580), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2857), [sym_block_comment] = STATE(2857), [sym_line_comment] = STATE(2857), [sym_compiler_directive_decl] = STATE(2857), [sym_fsi_directive_decl] = STATE(2857), [sym_preproc_line] = STATE(2857), - [aux_sym__compound_type_repeat1] = STATE(2934), - [sym_identifier] = ACTIONS(5101), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2858] = { - [sym_type_arguments] = STATE(2983), - [sym_long_identifier] = STATE(3014), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7862), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2858), [sym_block_comment] = STATE(2858), [sym_line_comment] = STATE(2858), [sym_compiler_directive_decl] = STATE(2858), [sym_fsi_directive_decl] = STATE(2858), [sym_preproc_line] = STATE(2858), - [aux_sym__compound_type_repeat1] = STATE(2934), - [sym_identifier] = ACTIONS(5101), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2859] = { - [sym_type_arguments] = STATE(2983), - [sym_long_identifier] = STATE(3014), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7423), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2859), [sym_block_comment] = STATE(2859), [sym_line_comment] = STATE(2859), [sym_compiler_directive_decl] = STATE(2859), [sym_fsi_directive_decl] = STATE(2859), [sym_preproc_line] = STATE(2859), - [aux_sym__compound_type_repeat1] = STATE(2934), - [sym_identifier] = ACTIONS(5101), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2098), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2860] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2014), + [sym_rules] = STATE(2478), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2860), [sym_block_comment] = STATE(2860), [sym_line_comment] = STATE(2860), [sym_compiler_directive_decl] = STATE(2860), [sym_fsi_directive_decl] = STATE(2860), [sym_preproc_line] = STATE(2860), - [aux_sym_long_identifier_repeat1] = STATE(2875), - [sym_identifier] = ACTIONS(2935), - [anon_sym_GT_RBRACK] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2861] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2014), + [sym_rules] = STATE(2483), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2861), [sym_block_comment] = STATE(2861), [sym_line_comment] = STATE(2861), [sym_compiler_directive_decl] = STATE(2861), [sym_fsi_directive_decl] = STATE(2861), [sym_preproc_line] = STATE(2861), - [ts_builtin_sym_end] = ACTIONS(5111), - [sym_identifier] = ACTIONS(5113), - [anon_sym_namespace] = ACTIONS(5113), - [anon_sym_module] = ACTIONS(5113), - [anon_sym_open] = ACTIONS(5113), - [anon_sym_LBRACK_LT] = ACTIONS(5111), - [anon_sym_return] = ACTIONS(5113), - [anon_sym_type] = ACTIONS(5113), - [anon_sym_do] = ACTIONS(5113), - [anon_sym_and] = ACTIONS(5113), - [anon_sym_let] = ACTIONS(5113), - [anon_sym_let_BANG] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_null] = ACTIONS(5113), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_LBRACK_PIPE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_LBRACE_PIPE] = ACTIONS(5111), - [anon_sym_new] = ACTIONS(5113), - [anon_sym_return_BANG] = ACTIONS(5111), - [anon_sym_yield] = ACTIONS(5113), - [anon_sym_yield_BANG] = ACTIONS(5111), - [anon_sym_lazy] = ACTIONS(5113), - [anon_sym_assert] = ACTIONS(5113), - [anon_sym_upcast] = ACTIONS(5113), - [anon_sym_downcast] = ACTIONS(5113), - [anon_sym_LT_AT] = ACTIONS(5113), - [anon_sym_LT_AT_AT] = ACTIONS(5111), - [anon_sym_for] = ACTIONS(5113), - [anon_sym_while] = ACTIONS(5113), - [anon_sym_if] = ACTIONS(5113), - [anon_sym_fun] = ACTIONS(5113), - [anon_sym_try] = ACTIONS(5113), - [anon_sym_match] = ACTIONS(5113), - [anon_sym_match_BANG] = ACTIONS(5111), - [anon_sym_function] = ACTIONS(5113), - [anon_sym_use] = ACTIONS(5113), - [anon_sym_use_BANG] = ACTIONS(5111), - [anon_sym_do_BANG] = ACTIONS(5111), - [anon_sym_begin] = ACTIONS(5113), - [anon_sym_interface] = ACTIONS(5113), - [aux_sym_char_token1] = ACTIONS(5111), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5113), - [anon_sym_DQUOTE] = ACTIONS(5113), - [anon_sym_AT_DQUOTE] = ACTIONS(5111), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5111), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5111), - [sym_bool] = ACTIONS(5113), - [sym_unit] = ACTIONS(5111), - [anon_sym_LPAREN_PIPE] = ACTIONS(5113), - [sym_op_identifier] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_PLUS_DOT] = ACTIONS(5111), - [anon_sym_DASH_DOT] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [aux_sym_prefix_op_token1] = ACTIONS(5111), - [sym_int] = ACTIONS(5113), - [sym_xint] = ACTIONS(5111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5111), - [anon_sym_POUNDload] = ACTIONS(5111), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2862] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1735), + [sym_rules] = STATE(2341), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2862), [sym_block_comment] = STATE(2862), [sym_line_comment] = STATE(2862), [sym_compiler_directive_decl] = STATE(2862), [sym_fsi_directive_decl] = STATE(2862), [sym_preproc_line] = STATE(2862), - [ts_builtin_sym_end] = ACTIONS(5115), - [sym_identifier] = ACTIONS(5117), - [anon_sym_namespace] = ACTIONS(5117), - [anon_sym_module] = ACTIONS(5117), - [anon_sym_open] = ACTIONS(5117), - [anon_sym_LBRACK_LT] = ACTIONS(5115), - [anon_sym_return] = ACTIONS(5117), - [anon_sym_type] = ACTIONS(5117), - [anon_sym_do] = ACTIONS(5117), - [anon_sym_and] = ACTIONS(5117), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_let_BANG] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_LBRACK_PIPE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_LBRACE_PIPE] = ACTIONS(5115), - [anon_sym_new] = ACTIONS(5117), - [anon_sym_return_BANG] = ACTIONS(5115), - [anon_sym_yield] = ACTIONS(5117), - [anon_sym_yield_BANG] = ACTIONS(5115), - [anon_sym_lazy] = ACTIONS(5117), - [anon_sym_assert] = ACTIONS(5117), - [anon_sym_upcast] = ACTIONS(5117), - [anon_sym_downcast] = ACTIONS(5117), - [anon_sym_LT_AT] = ACTIONS(5117), - [anon_sym_LT_AT_AT] = ACTIONS(5115), - [anon_sym_for] = ACTIONS(5117), - [anon_sym_while] = ACTIONS(5117), - [anon_sym_if] = ACTIONS(5117), - [anon_sym_fun] = ACTIONS(5117), - [anon_sym_try] = ACTIONS(5117), - [anon_sym_match] = ACTIONS(5117), - [anon_sym_match_BANG] = ACTIONS(5115), - [anon_sym_function] = ACTIONS(5117), - [anon_sym_use] = ACTIONS(5117), - [anon_sym_use_BANG] = ACTIONS(5115), - [anon_sym_do_BANG] = ACTIONS(5115), - [anon_sym_begin] = ACTIONS(5117), - [anon_sym_interface] = ACTIONS(5117), - [aux_sym_char_token1] = ACTIONS(5115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5117), - [anon_sym_DQUOTE] = ACTIONS(5117), - [anon_sym_AT_DQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5115), - [sym_bool] = ACTIONS(5117), - [sym_unit] = ACTIONS(5115), - [anon_sym_LPAREN_PIPE] = ACTIONS(5117), - [sym_op_identifier] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_PLUS_DOT] = ACTIONS(5115), - [anon_sym_DASH_DOT] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP_AMP] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [aux_sym_prefix_op_token1] = ACTIONS(5115), - [sym_int] = ACTIONS(5117), - [sym_xint] = ACTIONS(5115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5115), - [anon_sym_POUNDload] = ACTIONS(5115), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5115), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2863] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1696), + [sym_rules] = STATE(2113), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2863), [sym_block_comment] = STATE(2863), [sym_line_comment] = STATE(2863), [sym_compiler_directive_decl] = STATE(2863), [sym_fsi_directive_decl] = STATE(2863), [sym_preproc_line] = STATE(2863), - [aux_sym_long_identifier_repeat1] = STATE(2863), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5119), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2864] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(956), + [sym_rules] = STATE(1165), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2864), [sym_block_comment] = STATE(2864), [sym_line_comment] = STATE(2864), [sym_compiler_directive_decl] = STATE(2864), [sym_fsi_directive_decl] = STATE(2864), [sym_preproc_line] = STATE(2864), - [sym_identifier] = ACTIONS(3029), - [anon_sym_GT_RBRACK] = ACTIONS(3031), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__newline] = ACTIONS(3031), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2865] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7670), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2865), [sym_block_comment] = STATE(2865), [sym_line_comment] = STATE(2865), [sym_compiler_directive_decl] = STATE(2865), [sym_fsi_directive_decl] = STATE(2865), [sym_preproc_line] = STATE(2865), - [aux_sym_type_argument_repeat1] = STATE(2889), - [sym_identifier] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), - [sym__dedent] = ACTIONS(2943), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2866] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1599), + [sym_rules] = STATE(1926), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2866), [sym_block_comment] = STATE(2866), [sym_line_comment] = STATE(2866), [sym_compiler_directive_decl] = STATE(2866), [sym_fsi_directive_decl] = STATE(2866), [sym_preproc_line] = STATE(2866), - [aux_sym__function_or_value_defns_repeat1] = STATE(2883), - [ts_builtin_sym_end] = ACTIONS(5124), - [sym_identifier] = ACTIONS(5126), - [anon_sym_namespace] = ACTIONS(5126), - [anon_sym_module] = ACTIONS(5126), - [anon_sym_open] = ACTIONS(5126), - [anon_sym_LBRACK_LT] = ACTIONS(5124), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_type] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5128), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LBRACE_PIPE] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5126), - [anon_sym_return_BANG] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5126), - [anon_sym_yield_BANG] = ACTIONS(5124), - [anon_sym_lazy] = ACTIONS(5126), - [anon_sym_assert] = ACTIONS(5126), - [anon_sym_upcast] = ACTIONS(5126), - [anon_sym_downcast] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5126), - [anon_sym_while] = ACTIONS(5126), - [anon_sym_if] = ACTIONS(5126), - [anon_sym_fun] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5126), - [anon_sym_match] = ACTIONS(5126), - [anon_sym_match_BANG] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(5126), - [anon_sym_use] = ACTIONS(5126), - [anon_sym_use_BANG] = ACTIONS(5124), - [anon_sym_do_BANG] = ACTIONS(5124), - [anon_sym_begin] = ACTIONS(5126), - [aux_sym_char_token1] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [anon_sym_AT_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [sym_bool] = ACTIONS(5126), - [sym_unit] = ACTIONS(5124), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [sym_op_identifier] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_PLUS_DOT] = ACTIONS(5124), - [anon_sym_DASH_DOT] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5124), - [aux_sym_prefix_op_token1] = ACTIONS(5124), - [sym_int] = ACTIONS(5126), - [sym_xint] = ACTIONS(5124), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5124), - [anon_sym_POUNDload] = ACTIONS(5124), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2867] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1692), + [sym_rules] = STATE(2339), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2867), [sym_block_comment] = STATE(2867), [sym_line_comment] = STATE(2867), [sym_compiler_directive_decl] = STATE(2867), [sym_fsi_directive_decl] = STATE(2867), [sym_preproc_line] = STATE(2867), - [aux_sym_long_identifier_repeat1] = STATE(2867), - [sym_identifier] = ACTIONS(2900), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5130), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2868] = { - [sym_type_arguments] = STATE(3073), - [sym_long_identifier] = STATE(3077), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1692), + [sym_rules] = STATE(2338), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2868), [sym_block_comment] = STATE(2868), [sym_line_comment] = STATE(2868), [sym_compiler_directive_decl] = STATE(2868), [sym_fsi_directive_decl] = STATE(2868), [sym_preproc_line] = STATE(2868), - [aux_sym__compound_type_repeat1] = STATE(2961), - [sym_identifier] = ACTIONS(5133), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), - [sym__dedent] = ACTIONS(2804), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2869] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1156), + [sym_rules] = STATE(1384), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2869), [sym_block_comment] = STATE(2869), [sym_line_comment] = STATE(2869), [sym_compiler_directive_decl] = STATE(2869), [sym_fsi_directive_decl] = STATE(2869), [sym_preproc_line] = STATE(2869), - [aux_sym_long_identifier_repeat1] = STATE(2880), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_namespace] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2870] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7210), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2870), [sym_block_comment] = STATE(2870), [sym_line_comment] = STATE(2870), [sym_compiler_directive_decl] = STATE(2870), [sym_fsi_directive_decl] = STATE(2870), [sym_preproc_line] = STATE(2870), - [sym_identifier] = ACTIONS(2917), - [anon_sym_GT_RBRACK] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__newline] = ACTIONS(2919), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2871] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7184), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2871), [sym_block_comment] = STATE(2871), [sym_line_comment] = STATE(2871), [sym_compiler_directive_decl] = STATE(2871), [sym_fsi_directive_decl] = STATE(2871), [sym_preproc_line] = STATE(2871), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2872] = { - [sym_argument_patterns] = STATE(6304), - [sym__atomic_pattern] = STATE(3950), - [sym_list_pattern] = STATE(3948), - [sym_array_pattern] = STATE(3948), - [sym_record_pattern] = STATE(3948), - [sym_type_arguments] = STATE(3176), - [sym_char] = STATE(4254), - [sym_format_string] = STATE(4256), - [sym__string_literal] = STATE(4256), - [sym_string] = STATE(4254), - [sym_verbatim_string] = STATE(4254), - [sym_bytearray] = STATE(4254), - [sym_verbatim_bytearray] = STATE(4254), - [sym_format_triple_quoted_string] = STATE(4257), - [sym_triple_quoted_string] = STATE(4254), - [sym_const] = STATE(3948), - [sym_long_identifier] = STATE(3948), - [sym_sbyte] = STATE(4254), - [sym_byte] = STATE(4254), - [sym_int16] = STATE(4254), - [sym_uint16] = STATE(4254), - [sym_int32] = STATE(4254), - [sym_uint32] = STATE(4254), - [sym_nativeint] = STATE(4254), - [sym_unativeint] = STATE(4254), - [sym_int64] = STATE(4254), - [sym_uint64] = STATE(4254), - [sym_ieee32] = STATE(4254), - [sym_ieee64] = STATE(4254), - [sym_bignum] = STATE(4254), - [sym_decimal] = STATE(4254), - [sym_float] = STATE(3860), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8108), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2872), [sym_block_comment] = STATE(2872), [sym_line_comment] = STATE(2872), [sym_compiler_directive_decl] = STATE(2872), [sym_fsi_directive_decl] = STATE(2872), [sym_preproc_line] = STATE(2872), - [aux_sym_argument_patterns_repeat1] = STATE(3164), - [sym_identifier] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(5141), - [anon_sym__] = ACTIONS(5141), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_COLON_QMARK] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_PIPE] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_LT2] = ACTIONS(5149), - [aux_sym_char_token1] = ACTIONS(5151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5153), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_AT_DQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5159), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5161), - [sym_bool] = ACTIONS(5163), - [sym_unit] = ACTIONS(5165), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3035), - [sym_int] = ACTIONS(5167), - [sym_xint] = ACTIONS(5169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -345266,934 +352065,1042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2873] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7588), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2873), [sym_block_comment] = STATE(2873), [sym_line_comment] = STATE(2873), [sym_compiler_directive_decl] = STATE(2873), [sym_fsi_directive_decl] = STATE(2873), [sym_preproc_line] = STATE(2873), - [aux_sym_long_identifier_repeat1] = STATE(2880), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2874] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1696), + [sym_rules] = STATE(2083), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2874), [sym_block_comment] = STATE(2874), [sym_line_comment] = STATE(2874), [sym_compiler_directive_decl] = STATE(2874), [sym_fsi_directive_decl] = STATE(2874), [sym_preproc_line] = STATE(2874), - [aux_sym_long_identifier_repeat1] = STATE(2880), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2875] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7649), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2875), [sym_block_comment] = STATE(2875), [sym_line_comment] = STATE(2875), [sym_compiler_directive_decl] = STATE(2875), [sym_fsi_directive_decl] = STATE(2875), [sym_preproc_line] = STATE(2875), - [aux_sym_long_identifier_repeat1] = STATE(2867), - [sym_identifier] = ACTIONS(2966), - [anon_sym_GT_RBRACK] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__newline] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2876] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2014), + [sym_rules] = STATE(2536), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2876), [sym_block_comment] = STATE(2876), [sym_line_comment] = STATE(2876), [sym_compiler_directive_decl] = STATE(2876), [sym_fsi_directive_decl] = STATE(2876), [sym_preproc_line] = STATE(2876), - [aux_sym_long_identifier_repeat1] = STATE(2880), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2877] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7176), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2877), [sym_block_comment] = STATE(2877), [sym_line_comment] = STATE(2877), [sym_compiler_directive_decl] = STATE(2877), [sym_fsi_directive_decl] = STATE(2877), [sym_preproc_line] = STATE(2877), - [sym_identifier] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_with] = ACTIONS(3029), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2878] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1696), + [sym_rules] = STATE(2118), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2878), [sym_block_comment] = STATE(2878), [sym_line_comment] = STATE(2878), [sym_compiler_directive_decl] = STATE(2878), [sym_fsi_directive_decl] = STATE(2878), [sym_preproc_line] = STATE(2878), - [aux_sym_type_argument_repeat1] = STATE(2865), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(5122), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2879] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7743), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2879), [sym_block_comment] = STATE(2879), [sym_line_comment] = STATE(2879), [sym_compiler_directive_decl] = STATE(2879), [sym_fsi_directive_decl] = STATE(2879), [sym_preproc_line] = STATE(2879), - [aux_sym_long_identifier_repeat1] = STATE(2880), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2880] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1599), + [sym_rules] = STATE(1927), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2880), [sym_block_comment] = STATE(2880), [sym_line_comment] = STATE(2880), [sym_compiler_directive_decl] = STATE(2880), [sym_fsi_directive_decl] = STATE(2880), [sym_preproc_line] = STATE(2880), - [aux_sym_long_identifier_repeat1] = STATE(2863), - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5135), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2881] = { - [sym_type_arguments] = STATE(3073), - [sym_long_identifier] = STATE(3077), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1735), + [sym_rules] = STATE(2346), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2881), [sym_block_comment] = STATE(2881), [sym_line_comment] = STATE(2881), [sym_compiler_directive_decl] = STATE(2881), [sym_fsi_directive_decl] = STATE(2881), [sym_preproc_line] = STATE(2881), - [aux_sym__compound_type_repeat1] = STATE(2961), - [sym_identifier] = ACTIONS(5133), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2882] = { - [sym_type_arguments] = STATE(3073), - [sym_long_identifier] = STATE(3077), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7250), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2882), [sym_block_comment] = STATE(2882), [sym_line_comment] = STATE(2882), [sym_compiler_directive_decl] = STATE(2882), [sym_fsi_directive_decl] = STATE(2882), [sym_preproc_line] = STATE(2882), - [aux_sym__compound_type_repeat1] = STATE(2961), - [sym_identifier] = ACTIONS(5133), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), - [sym__dedent] = ACTIONS(2812), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2883] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1769), + [sym_rules] = STATE(2618), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2883), [sym_block_comment] = STATE(2883), [sym_line_comment] = STATE(2883), [sym_compiler_directive_decl] = STATE(2883), [sym_fsi_directive_decl] = STATE(2883), [sym_preproc_line] = STATE(2883), - [aux_sym__function_or_value_defns_repeat1] = STATE(2890), - [ts_builtin_sym_end] = ACTIONS(5179), - [sym_identifier] = ACTIONS(5181), - [anon_sym_namespace] = ACTIONS(5181), - [anon_sym_module] = ACTIONS(5181), - [anon_sym_open] = ACTIONS(5181), - [anon_sym_LBRACK_LT] = ACTIONS(5179), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_type] = ACTIONS(5181), - [anon_sym_do] = ACTIONS(5181), - [anon_sym_and] = ACTIONS(5128), - [anon_sym_let] = ACTIONS(5181), - [anon_sym_let_BANG] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_LBRACK_PIPE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5181), - [anon_sym_LBRACE_PIPE] = ACTIONS(5179), - [anon_sym_new] = ACTIONS(5181), - [anon_sym_return_BANG] = ACTIONS(5179), - [anon_sym_yield] = ACTIONS(5181), - [anon_sym_yield_BANG] = ACTIONS(5179), - [anon_sym_lazy] = ACTIONS(5181), - [anon_sym_assert] = ACTIONS(5181), - [anon_sym_upcast] = ACTIONS(5181), - [anon_sym_downcast] = ACTIONS(5181), - [anon_sym_LT_AT] = ACTIONS(5181), - [anon_sym_LT_AT_AT] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_match] = ACTIONS(5181), - [anon_sym_match_BANG] = ACTIONS(5179), - [anon_sym_function] = ACTIONS(5181), - [anon_sym_use] = ACTIONS(5181), - [anon_sym_use_BANG] = ACTIONS(5179), - [anon_sym_do_BANG] = ACTIONS(5179), - [anon_sym_begin] = ACTIONS(5181), - [aux_sym_char_token1] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5181), - [anon_sym_DQUOTE] = ACTIONS(5181), - [anon_sym_AT_DQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [sym_bool] = ACTIONS(5181), - [sym_unit] = ACTIONS(5179), - [anon_sym_LPAREN_PIPE] = ACTIONS(5181), - [sym_op_identifier] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_PLUS_DOT] = ACTIONS(5179), - [anon_sym_DASH_DOT] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [aux_sym_prefix_op_token1] = ACTIONS(5179), - [sym_int] = ACTIONS(5181), - [sym_xint] = ACTIONS(5179), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5179), - [anon_sym_POUNDload] = ACTIONS(5179), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2884] = { - [sym_argument_patterns] = STATE(6222), - [sym__atomic_pattern] = STATE(3950), - [sym_list_pattern] = STATE(3948), - [sym_array_pattern] = STATE(3948), - [sym_record_pattern] = STATE(3948), - [sym_type_arguments] = STATE(3166), - [sym_char] = STATE(4254), - [sym_format_string] = STATE(4256), - [sym__string_literal] = STATE(4256), - [sym_string] = STATE(4254), - [sym_verbatim_string] = STATE(4254), - [sym_bytearray] = STATE(4254), - [sym_verbatim_bytearray] = STATE(4254), - [sym_format_triple_quoted_string] = STATE(4257), - [sym_triple_quoted_string] = STATE(4254), - [sym_const] = STATE(3948), - [sym_long_identifier] = STATE(3948), - [sym_sbyte] = STATE(4254), - [sym_byte] = STATE(4254), - [sym_int16] = STATE(4254), - [sym_uint16] = STATE(4254), - [sym_int32] = STATE(4254), - [sym_uint32] = STATE(4254), - [sym_nativeint] = STATE(4254), - [sym_unativeint] = STATE(4254), - [sym_int64] = STATE(4254), - [sym_uint64] = STATE(4254), - [sym_ieee32] = STATE(4254), - [sym_ieee64] = STATE(4254), - [sym_bignum] = STATE(4254), - [sym_decimal] = STATE(4254), - [sym_float] = STATE(3860), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1735), + [sym_rules] = STATE(2256), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2884), [sym_block_comment] = STATE(2884), [sym_line_comment] = STATE(2884), [sym_compiler_directive_decl] = STATE(2884), [sym_fsi_directive_decl] = STATE(2884), [sym_preproc_line] = STATE(2884), - [aux_sym_argument_patterns_repeat1] = STATE(3164), - [sym_identifier] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LBRACK_LT] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_null] = ACTIONS(5141), - [anon_sym__] = ACTIONS(5141), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_COLON_QMARK] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_PIPE] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_LT2] = ACTIONS(5149), - [aux_sym_char_token1] = ACTIONS(5151), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5153), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_AT_DQUOTE] = ACTIONS(5157), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5159), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5161), - [sym_bool] = ACTIONS(5163), - [sym_unit] = ACTIONS(5165), - [anon_sym_LPAREN_PIPE] = ACTIONS(3037), - [sym_op_identifier] = ACTIONS(3035), - [sym_int] = ACTIONS(5167), - [sym_xint] = ACTIONS(5169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -346202,248 +353109,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2885] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7397), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2885), [sym_block_comment] = STATE(2885), [sym_line_comment] = STATE(2885), [sym_compiler_directive_decl] = STATE(2885), [sym_fsi_directive_decl] = STATE(2885), [sym_preproc_line] = STATE(2885), - [aux_sym_long_identifier_repeat1] = STATE(2891), - [sym_identifier] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5183), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2886] = { - [sym_type_arguments] = STATE(3073), - [sym_long_identifier] = STATE(3077), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7784), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2886), [sym_block_comment] = STATE(2886), [sym_line_comment] = STATE(2886), [sym_compiler_directive_decl] = STATE(2886), [sym_fsi_directive_decl] = STATE(2886), [sym_preproc_line] = STATE(2886), - [aux_sym__compound_type_repeat1] = STATE(2961), - [sym_identifier] = ACTIONS(5133), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2124), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2848), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2887] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1769), + [sym_rules] = STATE(2776), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2887), [sym_block_comment] = STATE(2887), [sym_line_comment] = STATE(2887), [sym_compiler_directive_decl] = STATE(2887), [sym_fsi_directive_decl] = STATE(2887), [sym_preproc_line] = STATE(2887), - [aux_sym_long_identifier_repeat1] = STATE(2887), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2888] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1692), + [sym_rules] = STATE(2322), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2888), [sym_block_comment] = STATE(2888), [sym_line_comment] = STATE(2888), [sym_compiler_directive_decl] = STATE(2888), [sym_fsi_directive_decl] = STATE(2888), [sym_preproc_line] = STATE(2888), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [2889] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1156), + [sym_rules] = STATE(1320), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(2889), + [sym_block_comment] = STATE(2889), + [sym_line_comment] = STATE(2889), + [sym_compiler_directive_decl] = STATE(2889), + [sym_fsi_directive_decl] = STATE(2889), + [sym_preproc_line] = STATE(2889), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [2890] = { + [sym_type_arguments] = STATE(2836), + [sym__object_members] = STATE(3241), + [sym_long_identifier] = STATE(2842), + [sym_xml_doc] = STATE(2890), + [sym_block_comment] = STATE(2890), + [sym_line_comment] = STATE(2890), + [sym_compiler_directive_decl] = STATE(2890), + [sym_fsi_directive_decl] = STATE(2890), + [sym_preproc_line] = STATE(2890), + [aux_sym__compound_type_repeat1] = STATE(2801), [ts_builtin_sym_end] = ACTIONS(5188), - [sym_identifier] = ACTIONS(5190), + [sym_identifier] = ACTIONS(4752), [anon_sym_namespace] = ACTIONS(5190), [anon_sym_module] = ACTIONS(5190), [anon_sym_open] = ACTIONS(5190), @@ -346460,7 +353572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(5190), [anon_sym_LBRACK_PIPE] = ACTIONS(5188), [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_LT_AT] = ACTIONS(5190), + [anon_sym_LT_AT_AT] = ACTIONS(5188), [anon_sym_LBRACE_PIPE] = ACTIONS(5188), + [anon_sym_with] = ACTIONS(5192), [anon_sym_new] = ACTIONS(5190), [anon_sym_return_BANG] = ACTIONS(5188), [anon_sym_yield] = ACTIONS(5190), @@ -346469,12 +353584,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_assert] = ACTIONS(5190), [anon_sym_upcast] = ACTIONS(5190), [anon_sym_downcast] = ACTIONS(5190), - [anon_sym_LT_AT] = ACTIONS(5190), - [anon_sym_LT_AT_AT] = ACTIONS(5188), [anon_sym_for] = ACTIONS(5190), [anon_sym_while] = ACTIONS(5190), [anon_sym_if] = ACTIONS(5190), [anon_sym_fun] = ACTIONS(5190), + [anon_sym_DASH_GT] = ACTIONS(4754), [anon_sym_try] = ACTIONS(5190), [anon_sym_match] = ACTIONS(5190), [anon_sym_match_BANG] = ACTIONS(5188), @@ -346483,6 +353597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use_BANG] = ACTIONS(5188), [anon_sym_do_BANG] = ACTIONS(5188), [anon_sym_begin] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_LT2] = ACTIONS(4758), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4760), [anon_sym_interface] = ACTIONS(5190), [aux_sym_char_token1] = ACTIONS(5188), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5190), @@ -346504,7 +353621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_prefix_op_token1] = ACTIONS(5188), [sym_int] = ACTIONS(5190), [sym_xint] = ACTIONS(5188), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), @@ -346513,4237 +353630,4611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), [anon_sym_POUNDif] = ACTIONS(5188), }, - [2889] = { - [sym_xml_doc] = STATE(2889), - [sym_block_comment] = STATE(2889), - [sym_line_comment] = STATE(2889), - [sym_compiler_directive_decl] = STATE(2889), - [sym_fsi_directive_decl] = STATE(2889), - [sym_preproc_line] = STATE(2889), - [aux_sym_type_argument_repeat1] = STATE(2889), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(5192), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), - }, - [2890] = { - [sym_xml_doc] = STATE(2890), - [sym_block_comment] = STATE(2890), - [sym_line_comment] = STATE(2890), - [sym_compiler_directive_decl] = STATE(2890), - [sym_fsi_directive_decl] = STATE(2890), - [sym_preproc_line] = STATE(2890), - [aux_sym__function_or_value_defns_repeat1] = STATE(2890), - [ts_builtin_sym_end] = ACTIONS(5195), - [sym_identifier] = ACTIONS(5197), - [anon_sym_namespace] = ACTIONS(5197), - [anon_sym_module] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_LBRACK_LT] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_type] = ACTIONS(5197), - [anon_sym_do] = ACTIONS(5197), - [anon_sym_and] = ACTIONS(5199), - [anon_sym_let] = ACTIONS(5197), - [anon_sym_let_BANG] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5197), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_AMP] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(5197), - [anon_sym_LBRACK_PIPE] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5197), - [anon_sym_LBRACE_PIPE] = ACTIONS(5195), - [anon_sym_new] = ACTIONS(5197), - [anon_sym_return_BANG] = ACTIONS(5195), - [anon_sym_yield] = ACTIONS(5197), - [anon_sym_yield_BANG] = ACTIONS(5195), - [anon_sym_lazy] = ACTIONS(5197), - [anon_sym_assert] = ACTIONS(5197), - [anon_sym_upcast] = ACTIONS(5197), - [anon_sym_downcast] = ACTIONS(5197), - [anon_sym_LT_AT] = ACTIONS(5197), - [anon_sym_LT_AT_AT] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_match] = ACTIONS(5197), - [anon_sym_match_BANG] = ACTIONS(5195), - [anon_sym_function] = ACTIONS(5197), - [anon_sym_use] = ACTIONS(5197), - [anon_sym_use_BANG] = ACTIONS(5195), - [anon_sym_do_BANG] = ACTIONS(5195), - [anon_sym_begin] = ACTIONS(5197), - [aux_sym_char_token1] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5197), - [anon_sym_DQUOTE] = ACTIONS(5197), - [anon_sym_AT_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [sym_bool] = ACTIONS(5197), - [sym_unit] = ACTIONS(5195), - [anon_sym_LPAREN_PIPE] = ACTIONS(5197), - [sym_op_identifier] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_PLUS_DOT] = ACTIONS(5195), - [anon_sym_DASH_DOT] = ACTIONS(5195), - [anon_sym_PERCENT] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_TILDE] = ACTIONS(5195), - [aux_sym_prefix_op_token1] = ACTIONS(5195), - [sym_int] = ACTIONS(5197), - [sym_xint] = ACTIONS(5195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5195), - [anon_sym_POUNDload] = ACTIONS(5195), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5195), - }, [2891] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1769), + [sym_rules] = STATE(2775), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2891), [sym_block_comment] = STATE(2891), [sym_line_comment] = STATE(2891), [sym_compiler_directive_decl] = STATE(2891), [sym_fsi_directive_decl] = STATE(2891), [sym_preproc_line] = STATE(2891), - [aux_sym_long_identifier_repeat1] = STATE(2887), - [sym_identifier] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5183), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2892] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7283), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2892), [sym_block_comment] = STATE(2892), [sym_line_comment] = STATE(2892), [sym_compiler_directive_decl] = STATE(2892), [sym_fsi_directive_decl] = STATE(2892), [sym_preproc_line] = STATE(2892), - [ts_builtin_sym_end] = ACTIONS(5202), - [sym_identifier] = ACTIONS(5204), - [anon_sym_namespace] = ACTIONS(5204), - [anon_sym_module] = ACTIONS(5204), - [anon_sym_open] = ACTIONS(5204), - [anon_sym_LBRACK_LT] = ACTIONS(5202), - [anon_sym_return] = ACTIONS(5204), - [anon_sym_type] = ACTIONS(5204), - [anon_sym_do] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_let] = ACTIONS(5204), - [anon_sym_let_BANG] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_null] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_LBRACK_PIPE] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_LBRACE_PIPE] = ACTIONS(5202), - [anon_sym_new] = ACTIONS(5204), - [anon_sym_return_BANG] = ACTIONS(5202), - [anon_sym_yield] = ACTIONS(5204), - [anon_sym_yield_BANG] = ACTIONS(5202), - [anon_sym_lazy] = ACTIONS(5204), - [anon_sym_assert] = ACTIONS(5204), - [anon_sym_upcast] = ACTIONS(5204), - [anon_sym_downcast] = ACTIONS(5204), - [anon_sym_LT_AT] = ACTIONS(5204), - [anon_sym_LT_AT_AT] = ACTIONS(5202), - [anon_sym_for] = ACTIONS(5204), - [anon_sym_while] = ACTIONS(5204), - [anon_sym_if] = ACTIONS(5204), - [anon_sym_fun] = ACTIONS(5204), - [anon_sym_try] = ACTIONS(5204), - [anon_sym_match] = ACTIONS(5204), - [anon_sym_match_BANG] = ACTIONS(5202), - [anon_sym_function] = ACTIONS(5204), - [anon_sym_use] = ACTIONS(5204), - [anon_sym_use_BANG] = ACTIONS(5202), - [anon_sym_do_BANG] = ACTIONS(5202), - [anon_sym_begin] = ACTIONS(5204), - [aux_sym_char_token1] = ACTIONS(5202), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_AT_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5202), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5202), - [sym_bool] = ACTIONS(5204), - [sym_unit] = ACTIONS(5202), - [anon_sym_LPAREN_PIPE] = ACTIONS(5204), - [sym_op_identifier] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_PLUS_DOT] = ACTIONS(5202), - [anon_sym_DASH_DOT] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_TILDE] = ACTIONS(5202), - [aux_sym_prefix_op_token1] = ACTIONS(5202), - [sym_int] = ACTIONS(5204), - [sym_xint] = ACTIONS(5202), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5202), - [anon_sym_POUNDload] = ACTIONS(5202), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5202), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2893] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7672), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2893), [sym_block_comment] = STATE(2893), [sym_line_comment] = STATE(2893), [sym_compiler_directive_decl] = STATE(2893), [sym_fsi_directive_decl] = STATE(2893), [sym_preproc_line] = STATE(2893), - [aux_sym_type_argument_repeat1] = STATE(2893), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(5206), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2894] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7801), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2894), [sym_block_comment] = STATE(2894), [sym_line_comment] = STATE(2894), [sym_compiler_directive_decl] = STATE(2894), [sym_fsi_directive_decl] = STATE(2894), [sym_preproc_line] = STATE(2894), - [ts_builtin_sym_end] = ACTIONS(5209), - [sym_identifier] = ACTIONS(5211), - [anon_sym_namespace] = ACTIONS(5211), - [anon_sym_module] = ACTIONS(5211), - [anon_sym_open] = ACTIONS(5211), - [anon_sym_LBRACK_LT] = ACTIONS(5209), - [anon_sym_return] = ACTIONS(5211), - [anon_sym_type] = ACTIONS(5211), - [anon_sym_do] = ACTIONS(5211), - [anon_sym_and] = ACTIONS(5211), - [anon_sym_let] = ACTIONS(5211), - [anon_sym_let_BANG] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5211), - [anon_sym_AMP] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_LBRACK_PIPE] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_LBRACE_PIPE] = ACTIONS(5209), - [anon_sym_new] = ACTIONS(5211), - [anon_sym_return_BANG] = ACTIONS(5209), - [anon_sym_yield] = ACTIONS(5211), - [anon_sym_yield_BANG] = ACTIONS(5209), - [anon_sym_lazy] = ACTIONS(5211), - [anon_sym_assert] = ACTIONS(5211), - [anon_sym_upcast] = ACTIONS(5211), - [anon_sym_downcast] = ACTIONS(5211), - [anon_sym_LT_AT] = ACTIONS(5211), - [anon_sym_LT_AT_AT] = ACTIONS(5209), - [anon_sym_for] = ACTIONS(5211), - [anon_sym_while] = ACTIONS(5211), - [anon_sym_if] = ACTIONS(5211), - [anon_sym_fun] = ACTIONS(5211), - [anon_sym_try] = ACTIONS(5211), - [anon_sym_match] = ACTIONS(5211), - [anon_sym_match_BANG] = ACTIONS(5209), - [anon_sym_function] = ACTIONS(5211), - [anon_sym_use] = ACTIONS(5211), - [anon_sym_use_BANG] = ACTIONS(5209), - [anon_sym_do_BANG] = ACTIONS(5209), - [anon_sym_begin] = ACTIONS(5211), - [aux_sym_char_token1] = ACTIONS(5209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5211), - [anon_sym_DQUOTE] = ACTIONS(5211), - [anon_sym_AT_DQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5209), - [sym_bool] = ACTIONS(5211), - [sym_unit] = ACTIONS(5209), - [anon_sym_LPAREN_PIPE] = ACTIONS(5211), - [sym_op_identifier] = ACTIONS(5209), - [anon_sym_PLUS] = ACTIONS(5211), - [anon_sym_DASH] = ACTIONS(5211), - [anon_sym_PLUS_DOT] = ACTIONS(5209), - [anon_sym_DASH_DOT] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_AMP_AMP] = ACTIONS(5209), - [anon_sym_TILDE] = ACTIONS(5209), - [aux_sym_prefix_op_token1] = ACTIONS(5209), - [sym_int] = ACTIONS(5211), - [sym_xint] = ACTIONS(5209), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5209), - [anon_sym_POUNDload] = ACTIONS(5209), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5209), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2895] = { - [sym_type_arguments] = STATE(3088), - [sym_long_identifier] = STATE(3089), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1599), + [sym_rules] = STATE(1961), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2895), [sym_block_comment] = STATE(2895), [sym_line_comment] = STATE(2895), [sym_compiler_directive_decl] = STATE(2895), [sym_fsi_directive_decl] = STATE(2895), [sym_preproc_line] = STATE(2895), - [aux_sym__compound_type_repeat1] = STATE(3056), - [sym_identifier] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_let_BANG] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_null] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACK_PIPE] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_LBRACE_PIPE] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_return_BANG] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_yield_BANG] = ACTIONS(2848), - [anon_sym_lazy] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_upcast] = ACTIONS(2850), - [anon_sym_downcast] = ACTIONS(2850), - [anon_sym_LT_AT] = ACTIONS(2850), - [anon_sym_LT_AT_AT] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_fun] = ACTIONS(2850), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_match_BANG] = ACTIONS(2848), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_use] = ACTIONS(2850), - [anon_sym_use_BANG] = ACTIONS(2848), - [anon_sym_do_BANG] = ACTIONS(2848), - [anon_sym_begin] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2850), - [anon_sym_DQUOTE] = ACTIONS(2850), - [anon_sym_AT_DQUOTE] = ACTIONS(2848), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2848), - [sym_bool] = ACTIONS(2850), - [sym_unit] = ACTIONS(2848), - [anon_sym_LPAREN_PIPE] = ACTIONS(2850), - [sym_op_identifier] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_PLUS_DOT] = ACTIONS(2848), - [anon_sym_DASH_DOT] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [aux_sym_prefix_op_token1] = ACTIONS(2848), - [sym_int] = ACTIONS(2850), - [sym_xint] = ACTIONS(2848), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2848), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2896] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2000), + [sym_rules] = STATE(2553), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2896), [sym_block_comment] = STATE(2896), [sym_line_comment] = STATE(2896), [sym_compiler_directive_decl] = STATE(2896), [sym_fsi_directive_decl] = STATE(2896), [sym_preproc_line] = STATE(2896), - [ts_builtin_sym_end] = ACTIONS(5215), - [sym_identifier] = ACTIONS(5217), - [anon_sym_namespace] = ACTIONS(5217), - [anon_sym_module] = ACTIONS(5217), - [anon_sym_open] = ACTIONS(5217), - [anon_sym_LBRACK_LT] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5217), - [anon_sym_type] = ACTIONS(5217), - [anon_sym_do] = ACTIONS(5217), - [anon_sym_and] = ACTIONS(5217), - [anon_sym_let] = ACTIONS(5217), - [anon_sym_let_BANG] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_null] = ACTIONS(5217), - [anon_sym_AMP] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_LBRACK_PIPE] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_LBRACE_PIPE] = ACTIONS(5215), - [anon_sym_new] = ACTIONS(5217), - [anon_sym_return_BANG] = ACTIONS(5215), - [anon_sym_yield] = ACTIONS(5217), - [anon_sym_yield_BANG] = ACTIONS(5215), - [anon_sym_lazy] = ACTIONS(5217), - [anon_sym_assert] = ACTIONS(5217), - [anon_sym_upcast] = ACTIONS(5217), - [anon_sym_downcast] = ACTIONS(5217), - [anon_sym_LT_AT] = ACTIONS(5217), - [anon_sym_LT_AT_AT] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5217), - [anon_sym_while] = ACTIONS(5217), - [anon_sym_if] = ACTIONS(5217), - [anon_sym_fun] = ACTIONS(5217), - [anon_sym_try] = ACTIONS(5217), - [anon_sym_match] = ACTIONS(5217), - [anon_sym_match_BANG] = ACTIONS(5215), - [anon_sym_function] = ACTIONS(5217), - [anon_sym_use] = ACTIONS(5217), - [anon_sym_use_BANG] = ACTIONS(5215), - [anon_sym_do_BANG] = ACTIONS(5215), - [anon_sym_begin] = ACTIONS(5217), - [aux_sym_char_token1] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5217), - [anon_sym_DQUOTE] = ACTIONS(5217), - [anon_sym_AT_DQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5215), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5215), - [sym_bool] = ACTIONS(5217), - [sym_unit] = ACTIONS(5215), - [anon_sym_LPAREN_PIPE] = ACTIONS(5217), - [sym_op_identifier] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_PLUS_DOT] = ACTIONS(5215), - [anon_sym_DASH_DOT] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_TILDE] = ACTIONS(5215), - [aux_sym_prefix_op_token1] = ACTIONS(5215), - [sym_int] = ACTIONS(5217), - [sym_xint] = ACTIONS(5215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5215), - [anon_sym_POUNDload] = ACTIONS(5215), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5215), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2897] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8302), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2897), [sym_block_comment] = STATE(2897), [sym_line_comment] = STATE(2897), [sym_compiler_directive_decl] = STATE(2897), [sym_fsi_directive_decl] = STATE(2897), [sym_preproc_line] = STATE(2897), - [sym_identifier] = ACTIONS(5190), - [anon_sym_module] = ACTIONS(5190), - [anon_sym_open] = ACTIONS(5190), - [anon_sym_LBRACK_LT] = ACTIONS(5188), - [anon_sym_return] = ACTIONS(5190), - [anon_sym_type] = ACTIONS(5190), - [anon_sym_do] = ACTIONS(5190), - [anon_sym_and] = ACTIONS(5190), - [anon_sym_let] = ACTIONS(5190), - [anon_sym_let_BANG] = ACTIONS(5188), - [anon_sym_LPAREN] = ACTIONS(5190), - [anon_sym_null] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5190), - [anon_sym_LBRACK] = ACTIONS(5190), - [anon_sym_LBRACK_PIPE] = ACTIONS(5188), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_LBRACE_PIPE] = ACTIONS(5188), - [anon_sym_new] = ACTIONS(5190), - [anon_sym_return_BANG] = ACTIONS(5188), - [anon_sym_yield] = ACTIONS(5190), - [anon_sym_yield_BANG] = ACTIONS(5188), - [anon_sym_lazy] = ACTIONS(5190), - [anon_sym_assert] = ACTIONS(5190), - [anon_sym_upcast] = ACTIONS(5190), - [anon_sym_downcast] = ACTIONS(5190), - [anon_sym_LT_AT] = ACTIONS(5190), - [anon_sym_LT_AT_AT] = ACTIONS(5188), - [anon_sym_for] = ACTIONS(5190), - [anon_sym_while] = ACTIONS(5190), - [anon_sym_if] = ACTIONS(5190), - [anon_sym_fun] = ACTIONS(5190), - [anon_sym_try] = ACTIONS(5190), - [anon_sym_match] = ACTIONS(5190), - [anon_sym_match_BANG] = ACTIONS(5188), - [anon_sym_function] = ACTIONS(5190), - [anon_sym_use] = ACTIONS(5190), - [anon_sym_use_BANG] = ACTIONS(5188), - [anon_sym_do_BANG] = ACTIONS(5188), - [anon_sym_begin] = ACTIONS(5190), - [anon_sym_interface] = ACTIONS(5190), - [aux_sym_char_token1] = ACTIONS(5188), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5190), - [anon_sym_DQUOTE] = ACTIONS(5190), - [anon_sym_AT_DQUOTE] = ACTIONS(5188), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5188), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5188), - [sym_bool] = ACTIONS(5190), - [sym_unit] = ACTIONS(5188), - [anon_sym_LPAREN_PIPE] = ACTIONS(5190), - [sym_op_identifier] = ACTIONS(5188), - [anon_sym_PLUS] = ACTIONS(5190), - [anon_sym_DASH] = ACTIONS(5190), - [anon_sym_PLUS_DOT] = ACTIONS(5188), - [anon_sym_DASH_DOT] = ACTIONS(5188), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_AMP_AMP] = ACTIONS(5188), - [anon_sym_TILDE] = ACTIONS(5188), - [aux_sym_prefix_op_token1] = ACTIONS(5188), - [sym_int] = ACTIONS(5190), - [sym_xint] = ACTIONS(5188), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5188), - [anon_sym_POUNDload] = ACTIONS(5188), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5188), - [sym__dedent] = ACTIONS(5188), }, [2898] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7457), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2898), [sym_block_comment] = STATE(2898), [sym_line_comment] = STATE(2898), [sym_compiler_directive_decl] = STATE(2898), [sym_fsi_directive_decl] = STATE(2898), [sym_preproc_line] = STATE(2898), - [aux_sym_type_argument_repeat1] = STATE(2924), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(5219), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2899] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8142), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2899), [sym_block_comment] = STATE(2899), [sym_line_comment] = STATE(2899), [sym_compiler_directive_decl] = STATE(2899), [sym_fsi_directive_decl] = STATE(2899), [sym_preproc_line] = STATE(2899), - [ts_builtin_sym_end] = ACTIONS(5221), - [sym_identifier] = ACTIONS(5223), - [anon_sym_namespace] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_open] = ACTIONS(5223), - [anon_sym_LBRACK_LT] = ACTIONS(5221), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_type] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_and] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_BANG] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_AMP] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LBRACK_PIPE] = ACTIONS(5221), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_LBRACE_PIPE] = ACTIONS(5221), - [anon_sym_new] = ACTIONS(5223), - [anon_sym_return_BANG] = ACTIONS(5221), - [anon_sym_yield] = ACTIONS(5223), - [anon_sym_yield_BANG] = ACTIONS(5221), - [anon_sym_lazy] = ACTIONS(5223), - [anon_sym_assert] = ACTIONS(5223), - [anon_sym_upcast] = ACTIONS(5223), - [anon_sym_downcast] = ACTIONS(5223), - [anon_sym_LT_AT] = ACTIONS(5223), - [anon_sym_LT_AT_AT] = ACTIONS(5221), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_fun] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_match_BANG] = ACTIONS(5221), - [anon_sym_function] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_use_BANG] = ACTIONS(5221), - [anon_sym_do_BANG] = ACTIONS(5221), - [anon_sym_begin] = ACTIONS(5223), - [aux_sym_char_token1] = ACTIONS(5221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [anon_sym_AT_DQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5221), - [sym_bool] = ACTIONS(5223), - [sym_unit] = ACTIONS(5221), - [anon_sym_LPAREN_PIPE] = ACTIONS(5223), - [sym_op_identifier] = ACTIONS(5221), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_PLUS_DOT] = ACTIONS(5221), - [anon_sym_DASH_DOT] = ACTIONS(5221), - [anon_sym_PERCENT] = ACTIONS(5221), - [anon_sym_AMP_AMP] = ACTIONS(5221), - [anon_sym_TILDE] = ACTIONS(5221), - [aux_sym_prefix_op_token1] = ACTIONS(5221), - [sym_int] = ACTIONS(5223), - [sym_xint] = ACTIONS(5221), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5221), - [anon_sym_POUNDload] = ACTIONS(5221), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5221), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2900] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1516), + [sym_rules] = STATE(1981), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2900), [sym_block_comment] = STATE(2900), [sym_line_comment] = STATE(2900), [sym_compiler_directive_decl] = STATE(2900), [sym_fsi_directive_decl] = STATE(2900), [sym_preproc_line] = STATE(2900), - [sym_identifier] = ACTIONS(5113), - [anon_sym_module] = ACTIONS(5113), - [anon_sym_open] = ACTIONS(5113), - [anon_sym_LBRACK_LT] = ACTIONS(5111), - [anon_sym_return] = ACTIONS(5113), - [anon_sym_type] = ACTIONS(5113), - [anon_sym_do] = ACTIONS(5113), - [anon_sym_and] = ACTIONS(5113), - [anon_sym_let] = ACTIONS(5113), - [anon_sym_let_BANG] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_null] = ACTIONS(5113), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_LBRACK_PIPE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5113), - [anon_sym_LBRACE_PIPE] = ACTIONS(5111), - [anon_sym_new] = ACTIONS(5113), - [anon_sym_return_BANG] = ACTIONS(5111), - [anon_sym_yield] = ACTIONS(5113), - [anon_sym_yield_BANG] = ACTIONS(5111), - [anon_sym_lazy] = ACTIONS(5113), - [anon_sym_assert] = ACTIONS(5113), - [anon_sym_upcast] = ACTIONS(5113), - [anon_sym_downcast] = ACTIONS(5113), - [anon_sym_LT_AT] = ACTIONS(5113), - [anon_sym_LT_AT_AT] = ACTIONS(5111), - [anon_sym_for] = ACTIONS(5113), - [anon_sym_while] = ACTIONS(5113), - [anon_sym_if] = ACTIONS(5113), - [anon_sym_fun] = ACTIONS(5113), - [anon_sym_try] = ACTIONS(5113), - [anon_sym_match] = ACTIONS(5113), - [anon_sym_match_BANG] = ACTIONS(5111), - [anon_sym_function] = ACTIONS(5113), - [anon_sym_use] = ACTIONS(5113), - [anon_sym_use_BANG] = ACTIONS(5111), - [anon_sym_do_BANG] = ACTIONS(5111), - [anon_sym_begin] = ACTIONS(5113), - [anon_sym_interface] = ACTIONS(5113), - [aux_sym_char_token1] = ACTIONS(5111), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5113), - [anon_sym_DQUOTE] = ACTIONS(5113), - [anon_sym_AT_DQUOTE] = ACTIONS(5111), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5111), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5111), - [sym_bool] = ACTIONS(5113), - [sym_unit] = ACTIONS(5111), - [anon_sym_LPAREN_PIPE] = ACTIONS(5113), - [sym_op_identifier] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_PLUS_DOT] = ACTIONS(5111), - [anon_sym_DASH_DOT] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP_AMP] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [aux_sym_prefix_op_token1] = ACTIONS(5111), - [sym_int] = ACTIONS(5113), - [sym_xint] = ACTIONS(5111), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5111), - [anon_sym_POUNDload] = ACTIONS(5111), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5111), - [sym__dedent] = ACTIONS(5111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2901] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1599), + [sym_rules] = STATE(1893), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2901), [sym_block_comment] = STATE(2901), [sym_line_comment] = STATE(2901), [sym_compiler_directive_decl] = STATE(2901), [sym_fsi_directive_decl] = STATE(2901), [sym_preproc_line] = STATE(2901), - [sym_identifier] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), - [sym__dedent] = ACTIONS(3031), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2902] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1238), + [sym_rules] = STATE(1662), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2902), [sym_block_comment] = STATE(2902), [sym_line_comment] = STATE(2902), [sym_compiler_directive_decl] = STATE(2902), [sym_fsi_directive_decl] = STATE(2902), [sym_preproc_line] = STATE(2902), - [sym_identifier] = ACTIONS(5117), - [anon_sym_module] = ACTIONS(5117), - [anon_sym_open] = ACTIONS(5117), - [anon_sym_LBRACK_LT] = ACTIONS(5115), - [anon_sym_return] = ACTIONS(5117), - [anon_sym_type] = ACTIONS(5117), - [anon_sym_do] = ACTIONS(5117), - [anon_sym_and] = ACTIONS(5117), - [anon_sym_let] = ACTIONS(5117), - [anon_sym_let_BANG] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5117), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_LBRACK_PIPE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5117), - [anon_sym_LBRACE_PIPE] = ACTIONS(5115), - [anon_sym_new] = ACTIONS(5117), - [anon_sym_return_BANG] = ACTIONS(5115), - [anon_sym_yield] = ACTIONS(5117), - [anon_sym_yield_BANG] = ACTIONS(5115), - [anon_sym_lazy] = ACTIONS(5117), - [anon_sym_assert] = ACTIONS(5117), - [anon_sym_upcast] = ACTIONS(5117), - [anon_sym_downcast] = ACTIONS(5117), - [anon_sym_LT_AT] = ACTIONS(5117), - [anon_sym_LT_AT_AT] = ACTIONS(5115), - [anon_sym_for] = ACTIONS(5117), - [anon_sym_while] = ACTIONS(5117), - [anon_sym_if] = ACTIONS(5117), - [anon_sym_fun] = ACTIONS(5117), - [anon_sym_try] = ACTIONS(5117), - [anon_sym_match] = ACTIONS(5117), - [anon_sym_match_BANG] = ACTIONS(5115), - [anon_sym_function] = ACTIONS(5117), - [anon_sym_use] = ACTIONS(5117), - [anon_sym_use_BANG] = ACTIONS(5115), - [anon_sym_do_BANG] = ACTIONS(5115), - [anon_sym_begin] = ACTIONS(5117), - [anon_sym_interface] = ACTIONS(5117), - [aux_sym_char_token1] = ACTIONS(5115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5117), - [anon_sym_DQUOTE] = ACTIONS(5117), - [anon_sym_AT_DQUOTE] = ACTIONS(5115), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5115), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5115), - [sym_bool] = ACTIONS(5117), - [sym_unit] = ACTIONS(5115), - [anon_sym_LPAREN_PIPE] = ACTIONS(5117), - [sym_op_identifier] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_PLUS_DOT] = ACTIONS(5115), - [anon_sym_DASH_DOT] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP_AMP] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [aux_sym_prefix_op_token1] = ACTIONS(5115), - [sym_int] = ACTIONS(5117), - [sym_xint] = ACTIONS(5115), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5115), - [anon_sym_POUNDload] = ACTIONS(5115), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5115), - [sym__dedent] = ACTIONS(5115), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2903] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7893), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2903), [sym_block_comment] = STATE(2903), [sym_line_comment] = STATE(2903), [sym_compiler_directive_decl] = STATE(2903), [sym_fsi_directive_decl] = STATE(2903), [sym_preproc_line] = STATE(2903), - [sym_identifier] = ACTIONS(2900), - [anon_sym_GT_RBRACK] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2904] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7427), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2904), [sym_block_comment] = STATE(2904), [sym_line_comment] = STATE(2904), [sym_compiler_directive_decl] = STATE(2904), [sym_fsi_directive_decl] = STATE(2904), [sym_preproc_line] = STATE(2904), - [ts_builtin_sym_end] = ACTIONS(5225), - [sym_identifier] = ACTIONS(5227), - [anon_sym_namespace] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_open] = ACTIONS(5227), - [anon_sym_LBRACK_LT] = ACTIONS(5225), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_type] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_and] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_BANG] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_AMP] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LBRACK_PIPE] = ACTIONS(5225), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_LBRACE_PIPE] = ACTIONS(5225), - [anon_sym_new] = ACTIONS(5227), - [anon_sym_return_BANG] = ACTIONS(5225), - [anon_sym_yield] = ACTIONS(5227), - [anon_sym_yield_BANG] = ACTIONS(5225), - [anon_sym_lazy] = ACTIONS(5227), - [anon_sym_assert] = ACTIONS(5227), - [anon_sym_upcast] = ACTIONS(5227), - [anon_sym_downcast] = ACTIONS(5227), - [anon_sym_LT_AT] = ACTIONS(5227), - [anon_sym_LT_AT_AT] = ACTIONS(5225), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_fun] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_match_BANG] = ACTIONS(5225), - [anon_sym_function] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_use_BANG] = ACTIONS(5225), - [anon_sym_do_BANG] = ACTIONS(5225), - [anon_sym_begin] = ACTIONS(5227), - [aux_sym_char_token1] = ACTIONS(5225), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [anon_sym_AT_DQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5225), - [sym_bool] = ACTIONS(5227), - [sym_unit] = ACTIONS(5225), - [anon_sym_LPAREN_PIPE] = ACTIONS(5227), - [sym_op_identifier] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_PLUS_DOT] = ACTIONS(5225), - [anon_sym_DASH_DOT] = ACTIONS(5225), - [anon_sym_PERCENT] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_TILDE] = ACTIONS(5225), - [aux_sym_prefix_op_token1] = ACTIONS(5225), - [sym_int] = ACTIONS(5227), - [sym_xint] = ACTIONS(5225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5225), - [anon_sym_POUNDload] = ACTIONS(5225), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5225), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2905] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7947), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2905), [sym_block_comment] = STATE(2905), [sym_line_comment] = STATE(2905), [sym_compiler_directive_decl] = STATE(2905), [sym_fsi_directive_decl] = STATE(2905), [sym_preproc_line] = STATE(2905), - [ts_builtin_sym_end] = ACTIONS(5229), - [sym_identifier] = ACTIONS(5231), - [anon_sym_namespace] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_open] = ACTIONS(5231), - [anon_sym_LBRACK_LT] = ACTIONS(5229), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_type] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_and] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_BANG] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_AMP] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LBRACK_PIPE] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_LBRACE_PIPE] = ACTIONS(5229), - [anon_sym_new] = ACTIONS(5231), - [anon_sym_return_BANG] = ACTIONS(5229), - [anon_sym_yield] = ACTIONS(5231), - [anon_sym_yield_BANG] = ACTIONS(5229), - [anon_sym_lazy] = ACTIONS(5231), - [anon_sym_assert] = ACTIONS(5231), - [anon_sym_upcast] = ACTIONS(5231), - [anon_sym_downcast] = ACTIONS(5231), - [anon_sym_LT_AT] = ACTIONS(5231), - [anon_sym_LT_AT_AT] = ACTIONS(5229), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_fun] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_match_BANG] = ACTIONS(5229), - [anon_sym_function] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_use_BANG] = ACTIONS(5229), - [anon_sym_do_BANG] = ACTIONS(5229), - [anon_sym_begin] = ACTIONS(5231), - [aux_sym_char_token1] = ACTIONS(5229), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [anon_sym_AT_DQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5229), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5229), - [sym_bool] = ACTIONS(5231), - [sym_unit] = ACTIONS(5229), - [anon_sym_LPAREN_PIPE] = ACTIONS(5231), - [sym_op_identifier] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_PLUS_DOT] = ACTIONS(5229), - [anon_sym_DASH_DOT] = ACTIONS(5229), - [anon_sym_PERCENT] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_TILDE] = ACTIONS(5229), - [aux_sym_prefix_op_token1] = ACTIONS(5229), - [sym_int] = ACTIONS(5231), - [sym_xint] = ACTIONS(5229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5229), - [anon_sym_POUNDload] = ACTIONS(5229), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5229), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2906] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1806), + [sym_rules] = STATE(2662), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2906), [sym_block_comment] = STATE(2906), [sym_line_comment] = STATE(2906), [sym_compiler_directive_decl] = STATE(2906), [sym_fsi_directive_decl] = STATE(2906), [sym_preproc_line] = STATE(2906), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2907] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1866), + [sym_rules] = STATE(2707), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2907), [sym_block_comment] = STATE(2907), [sym_line_comment] = STATE(2907), [sym_compiler_directive_decl] = STATE(2907), [sym_fsi_directive_decl] = STATE(2907), [sym_preproc_line] = STATE(2907), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2908] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1806), + [sym_rules] = STATE(2524), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2908), [sym_block_comment] = STATE(2908), [sym_line_comment] = STATE(2908), [sym_compiler_directive_decl] = STATE(2908), [sym_fsi_directive_decl] = STATE(2908), [sym_preproc_line] = STATE(2908), - [ts_builtin_sym_end] = ACTIONS(5233), - [sym_identifier] = ACTIONS(5235), - [anon_sym_namespace] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(5235), - [anon_sym_LBRACK_LT] = ACTIONS(5233), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_type] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_and] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_BANG] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LBRACK_PIPE] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACE_PIPE] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5235), - [anon_sym_return_BANG] = ACTIONS(5233), - [anon_sym_yield] = ACTIONS(5235), - [anon_sym_yield_BANG] = ACTIONS(5233), - [anon_sym_lazy] = ACTIONS(5235), - [anon_sym_assert] = ACTIONS(5235), - [anon_sym_upcast] = ACTIONS(5235), - [anon_sym_downcast] = ACTIONS(5235), - [anon_sym_LT_AT] = ACTIONS(5235), - [anon_sym_LT_AT_AT] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_match_BANG] = ACTIONS(5233), - [anon_sym_function] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_use_BANG] = ACTIONS(5233), - [anon_sym_do_BANG] = ACTIONS(5233), - [anon_sym_begin] = ACTIONS(5235), - [aux_sym_char_token1] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [anon_sym_AT_DQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [sym_bool] = ACTIONS(5235), - [sym_unit] = ACTIONS(5233), - [anon_sym_LPAREN_PIPE] = ACTIONS(5235), - [sym_op_identifier] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_PLUS_DOT] = ACTIONS(5233), - [anon_sym_DASH_DOT] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_TILDE] = ACTIONS(5233), - [aux_sym_prefix_op_token1] = ACTIONS(5233), - [sym_int] = ACTIONS(5235), - [sym_xint] = ACTIONS(5233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5233), - [anon_sym_POUNDload] = ACTIONS(5233), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5233), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2909] = { - [sym_type_arguments] = STATE(3088), - [sym_long_identifier] = STATE(3089), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7291), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2909), [sym_block_comment] = STATE(2909), [sym_line_comment] = STATE(2909), [sym_compiler_directive_decl] = STATE(2909), [sym_fsi_directive_decl] = STATE(2909), [sym_preproc_line] = STATE(2909), - [aux_sym__compound_type_repeat1] = STATE(3056), - [sym_identifier] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_let_BANG] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_null] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACK_PIPE] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_LBRACE_PIPE] = ACTIONS(2812), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_return_BANG] = ACTIONS(2812), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_yield_BANG] = ACTIONS(2812), - [anon_sym_lazy] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_upcast] = ACTIONS(2814), - [anon_sym_downcast] = ACTIONS(2814), - [anon_sym_LT_AT] = ACTIONS(2814), - [anon_sym_LT_AT_AT] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_fun] = ACTIONS(2814), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_match_BANG] = ACTIONS(2812), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_use] = ACTIONS(2814), - [anon_sym_use_BANG] = ACTIONS(2812), - [anon_sym_do_BANG] = ACTIONS(2812), - [anon_sym_begin] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(2814), - [anon_sym_AT_DQUOTE] = ACTIONS(2812), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2812), - [sym_bool] = ACTIONS(2814), - [sym_unit] = ACTIONS(2812), - [anon_sym_LPAREN_PIPE] = ACTIONS(2814), - [sym_op_identifier] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS_DOT] = ACTIONS(2812), - [anon_sym_DASH_DOT] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [aux_sym_prefix_op_token1] = ACTIONS(2812), - [sym_int] = ACTIONS(2814), - [sym_xint] = ACTIONS(2812), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2812), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2910] = { - [sym_type_arguments] = STATE(3088), - [sym_long_identifier] = STATE(3089), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7992), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2910), [sym_block_comment] = STATE(2910), [sym_line_comment] = STATE(2910), [sym_compiler_directive_decl] = STATE(2910), [sym_fsi_directive_decl] = STATE(2910), [sym_preproc_line] = STATE(2910), - [aux_sym__compound_type_repeat1] = STATE(3056), - [sym_identifier] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2911] = { - [sym_type_arguments] = STATE(3088), - [sym_long_identifier] = STATE(3089), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(956), + [sym_rules] = STATE(1155), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2911), [sym_block_comment] = STATE(2911), [sym_line_comment] = STATE(2911), [sym_compiler_directive_decl] = STATE(2911), [sym_fsi_directive_decl] = STATE(2911), [sym_preproc_line] = STATE(2911), - [aux_sym__compound_type_repeat1] = STATE(3056), - [sym_identifier] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_let_BANG] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_null] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACK_PIPE] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_LBRACE_PIPE] = ACTIONS(2804), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_return_BANG] = ACTIONS(2804), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_yield_BANG] = ACTIONS(2804), - [anon_sym_lazy] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_upcast] = ACTIONS(2806), - [anon_sym_downcast] = ACTIONS(2806), - [anon_sym_LT_AT] = ACTIONS(2806), - [anon_sym_LT_AT_AT] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_fun] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_match_BANG] = ACTIONS(2804), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_use] = ACTIONS(2806), - [anon_sym_use_BANG] = ACTIONS(2804), - [anon_sym_do_BANG] = ACTIONS(2804), - [anon_sym_begin] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2144), - [aux_sym_char_token1] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2806), - [anon_sym_DQUOTE] = ACTIONS(2806), - [anon_sym_AT_DQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2804), - [sym_bool] = ACTIONS(2806), - [sym_unit] = ACTIONS(2804), - [anon_sym_LPAREN_PIPE] = ACTIONS(2806), - [sym_op_identifier] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS_DOT] = ACTIONS(2804), - [anon_sym_DASH_DOT] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [aux_sym_prefix_op_token1] = ACTIONS(2804), - [sym_int] = ACTIONS(2806), - [sym_xint] = ACTIONS(2804), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2804), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2912] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8243), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2912), [sym_block_comment] = STATE(2912), [sym_line_comment] = STATE(2912), [sym_compiler_directive_decl] = STATE(2912), [sym_fsi_directive_decl] = STATE(2912), [sym_preproc_line] = STATE(2912), - [aux_sym_long_identifier_repeat1] = STATE(2927), - [sym_identifier] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2913] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(956), + [sym_rules] = STATE(1174), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2913), [sym_block_comment] = STATE(2913), [sym_line_comment] = STATE(2913), [sym_compiler_directive_decl] = STATE(2913), [sym_fsi_directive_decl] = STATE(2913), [sym_preproc_line] = STATE(2913), - [ts_builtin_sym_end] = ACTIONS(5239), - [sym_identifier] = ACTIONS(5241), - [anon_sym_namespace] = ACTIONS(5241), - [anon_sym_module] = ACTIONS(5241), - [anon_sym_open] = ACTIONS(5241), - [anon_sym_LBRACK_LT] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5241), - [anon_sym_type] = ACTIONS(5241), - [anon_sym_do] = ACTIONS(5241), - [anon_sym_and] = ACTIONS(5241), - [anon_sym_let] = ACTIONS(5241), - [anon_sym_let_BANG] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_null] = ACTIONS(5241), - [anon_sym_AMP] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_LBRACK_PIPE] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_LBRACE_PIPE] = ACTIONS(5239), - [anon_sym_new] = ACTIONS(5241), - [anon_sym_return_BANG] = ACTIONS(5239), - [anon_sym_yield] = ACTIONS(5241), - [anon_sym_yield_BANG] = ACTIONS(5239), - [anon_sym_lazy] = ACTIONS(5241), - [anon_sym_assert] = ACTIONS(5241), - [anon_sym_upcast] = ACTIONS(5241), - [anon_sym_downcast] = ACTIONS(5241), - [anon_sym_LT_AT] = ACTIONS(5241), - [anon_sym_LT_AT_AT] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5241), - [anon_sym_while] = ACTIONS(5241), - [anon_sym_if] = ACTIONS(5241), - [anon_sym_fun] = ACTIONS(5241), - [anon_sym_try] = ACTIONS(5241), - [anon_sym_match] = ACTIONS(5241), - [anon_sym_match_BANG] = ACTIONS(5239), - [anon_sym_function] = ACTIONS(5241), - [anon_sym_use] = ACTIONS(5241), - [anon_sym_use_BANG] = ACTIONS(5239), - [anon_sym_do_BANG] = ACTIONS(5239), - [anon_sym_begin] = ACTIONS(5241), - [aux_sym_char_token1] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5241), - [anon_sym_DQUOTE] = ACTIONS(5241), - [anon_sym_AT_DQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5239), - [sym_bool] = ACTIONS(5241), - [sym_unit] = ACTIONS(5239), - [anon_sym_LPAREN_PIPE] = ACTIONS(5241), - [sym_op_identifier] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_PLUS_DOT] = ACTIONS(5239), - [anon_sym_DASH_DOT] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_AMP_AMP] = ACTIONS(5239), - [anon_sym_TILDE] = ACTIONS(5239), - [aux_sym_prefix_op_token1] = ACTIONS(5239), - [sym_int] = ACTIONS(5241), - [sym_xint] = ACTIONS(5239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5239), - [anon_sym_POUNDload] = ACTIONS(5239), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5239), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2914] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8066), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2914), [sym_block_comment] = STATE(2914), [sym_line_comment] = STATE(2914), [sym_compiler_directive_decl] = STATE(2914), [sym_fsi_directive_decl] = STATE(2914), [sym_preproc_line] = STATE(2914), - [ts_builtin_sym_end] = ACTIONS(5243), - [sym_identifier] = ACTIONS(5245), - [anon_sym_namespace] = ACTIONS(5245), - [anon_sym_module] = ACTIONS(5245), - [anon_sym_open] = ACTIONS(5245), - [anon_sym_LBRACK_LT] = ACTIONS(5243), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_type] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_and] = ACTIONS(5245), - [anon_sym_let] = ACTIONS(5245), - [anon_sym_let_BANG] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_LBRACK_PIPE] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_LBRACE_PIPE] = ACTIONS(5243), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_return_BANG] = ACTIONS(5243), - [anon_sym_yield] = ACTIONS(5245), - [anon_sym_yield_BANG] = ACTIONS(5243), - [anon_sym_lazy] = ACTIONS(5245), - [anon_sym_assert] = ACTIONS(5245), - [anon_sym_upcast] = ACTIONS(5245), - [anon_sym_downcast] = ACTIONS(5245), - [anon_sym_LT_AT] = ACTIONS(5245), - [anon_sym_LT_AT_AT] = ACTIONS(5243), - [anon_sym_for] = ACTIONS(5245), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_if] = ACTIONS(5245), - [anon_sym_fun] = ACTIONS(5245), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_match] = ACTIONS(5245), - [anon_sym_match_BANG] = ACTIONS(5243), - [anon_sym_function] = ACTIONS(5245), - [anon_sym_use] = ACTIONS(5245), - [anon_sym_use_BANG] = ACTIONS(5243), - [anon_sym_do_BANG] = ACTIONS(5243), - [anon_sym_begin] = ACTIONS(5245), - [aux_sym_char_token1] = ACTIONS(5243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5245), - [anon_sym_DQUOTE] = ACTIONS(5245), - [anon_sym_AT_DQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5243), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5243), - [sym_bool] = ACTIONS(5245), - [sym_unit] = ACTIONS(5243), - [anon_sym_LPAREN_PIPE] = ACTIONS(5245), - [sym_op_identifier] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_PLUS_DOT] = ACTIONS(5243), - [anon_sym_DASH_DOT] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_AMP_AMP] = ACTIONS(5243), - [anon_sym_TILDE] = ACTIONS(5243), - [aux_sym_prefix_op_token1] = ACTIONS(5243), - [sym_int] = ACTIONS(5245), - [sym_xint] = ACTIONS(5243), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5243), - [anon_sym_POUNDload] = ACTIONS(5243), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5243), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2915] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1769), + [sym_rules] = STATE(2749), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2915), [sym_block_comment] = STATE(2915), [sym_line_comment] = STATE(2915), [sym_compiler_directive_decl] = STATE(2915), [sym_fsi_directive_decl] = STATE(2915), [sym_preproc_line] = STATE(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), - [sym__dedent] = ACTIONS(2919), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2916] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8088), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2916), [sym_block_comment] = STATE(2916), [sym_line_comment] = STATE(2916), [sym_compiler_directive_decl] = STATE(2916), [sym_fsi_directive_decl] = STATE(2916), [sym_preproc_line] = STATE(2916), - [aux_sym__compound_type_repeat1] = STATE(2939), - [sym_identifier] = ACTIONS(2970), - [anon_sym_GT_RBRACK] = ACTIONS(2972), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__newline] = ACTIONS(2972), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2917] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8209), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2917), [sym_block_comment] = STATE(2917), [sym_line_comment] = STATE(2917), [sym_compiler_directive_decl] = STATE(2917), [sym_fsi_directive_decl] = STATE(2917), [sym_preproc_line] = STATE(2917), - [aux_sym_long_identifier_repeat1] = STATE(2942), - [sym_identifier] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_LBRACK_LT] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2937), - [anon_sym_POUNDload] = ACTIONS(2937), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2918] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1806), + [sym_rules] = STATE(2593), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2918), [sym_block_comment] = STATE(2918), [sym_line_comment] = STATE(2918), [sym_compiler_directive_decl] = STATE(2918), [sym_fsi_directive_decl] = STATE(2918), [sym_preproc_line] = STATE(2918), - [ts_builtin_sym_end] = ACTIONS(5249), - [sym_identifier] = ACTIONS(5251), - [anon_sym_namespace] = ACTIONS(5251), - [anon_sym_module] = ACTIONS(5251), - [anon_sym_open] = ACTIONS(5251), - [anon_sym_LBRACK_LT] = ACTIONS(5249), - [anon_sym_return] = ACTIONS(5251), - [anon_sym_type] = ACTIONS(5251), - [anon_sym_do] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_let] = ACTIONS(5251), - [anon_sym_let_BANG] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_null] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_LBRACK_PIPE] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5251), - [anon_sym_LBRACE_PIPE] = ACTIONS(5249), - [anon_sym_new] = ACTIONS(5251), - [anon_sym_return_BANG] = ACTIONS(5249), - [anon_sym_yield] = ACTIONS(5251), - [anon_sym_yield_BANG] = ACTIONS(5249), - [anon_sym_lazy] = ACTIONS(5251), - [anon_sym_assert] = ACTIONS(5251), - [anon_sym_upcast] = ACTIONS(5251), - [anon_sym_downcast] = ACTIONS(5251), - [anon_sym_LT_AT] = ACTIONS(5251), - [anon_sym_LT_AT_AT] = ACTIONS(5249), - [anon_sym_for] = ACTIONS(5251), - [anon_sym_while] = ACTIONS(5251), - [anon_sym_if] = ACTIONS(5251), - [anon_sym_fun] = ACTIONS(5251), - [anon_sym_try] = ACTIONS(5251), - [anon_sym_match] = ACTIONS(5251), - [anon_sym_match_BANG] = ACTIONS(5249), - [anon_sym_function] = ACTIONS(5251), - [anon_sym_use] = ACTIONS(5251), - [anon_sym_use_BANG] = ACTIONS(5249), - [anon_sym_do_BANG] = ACTIONS(5249), - [anon_sym_begin] = ACTIONS(5251), - [aux_sym_char_token1] = ACTIONS(5249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5251), - [anon_sym_DQUOTE] = ACTIONS(5251), - [anon_sym_AT_DQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5249), - [sym_bool] = ACTIONS(5251), - [sym_unit] = ACTIONS(5249), - [anon_sym_LPAREN_PIPE] = ACTIONS(5251), - [sym_op_identifier] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS_DOT] = ACTIONS(5249), - [anon_sym_DASH_DOT] = ACTIONS(5249), - [anon_sym_PERCENT] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_TILDE] = ACTIONS(5249), - [aux_sym_prefix_op_token1] = ACTIONS(5249), - [sym_int] = ACTIONS(5251), - [sym_xint] = ACTIONS(5249), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5249), - [anon_sym_POUNDload] = ACTIONS(5249), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5249), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2919] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1806), + [sym_rules] = STATE(2597), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2919), [sym_block_comment] = STATE(2919), [sym_line_comment] = STATE(2919), [sym_compiler_directive_decl] = STATE(2919), [sym_fsi_directive_decl] = STATE(2919), [sym_preproc_line] = STATE(2919), - [ts_builtin_sym_end] = ACTIONS(5062), - [sym_identifier] = ACTIONS(5064), - [anon_sym_namespace] = ACTIONS(5064), - [anon_sym_module] = ACTIONS(5064), - [anon_sym_open] = ACTIONS(5064), - [anon_sym_LBRACK_LT] = ACTIONS(5062), - [anon_sym_return] = ACTIONS(5064), - [anon_sym_type] = ACTIONS(5064), - [anon_sym_do] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_let_BANG] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_null] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACK_PIPE] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5064), - [anon_sym_return_BANG] = ACTIONS(5062), - [anon_sym_yield] = ACTIONS(5064), - [anon_sym_yield_BANG] = ACTIONS(5062), - [anon_sym_lazy] = ACTIONS(5064), - [anon_sym_assert] = ACTIONS(5064), - [anon_sym_upcast] = ACTIONS(5064), - [anon_sym_downcast] = ACTIONS(5064), - [anon_sym_LT_AT] = ACTIONS(5064), - [anon_sym_LT_AT_AT] = ACTIONS(5062), - [anon_sym_for] = ACTIONS(5064), - [anon_sym_while] = ACTIONS(5064), - [anon_sym_if] = ACTIONS(5064), - [anon_sym_fun] = ACTIONS(5064), - [anon_sym_try] = ACTIONS(5064), - [anon_sym_match] = ACTIONS(5064), - [anon_sym_match_BANG] = ACTIONS(5062), - [anon_sym_function] = ACTIONS(5064), - [anon_sym_use] = ACTIONS(5064), - [anon_sym_use_BANG] = ACTIONS(5062), - [anon_sym_do_BANG] = ACTIONS(5062), - [anon_sym_begin] = ACTIONS(5064), - [aux_sym_char_token1] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE] = ACTIONS(5064), - [anon_sym_AT_DQUOTE] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [sym_bool] = ACTIONS(5064), - [sym_unit] = ACTIONS(5062), - [anon_sym_LPAREN_PIPE] = ACTIONS(5064), - [sym_op_identifier] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_PLUS_DOT] = ACTIONS(5062), - [anon_sym_DASH_DOT] = ACTIONS(5062), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5062), - [aux_sym_prefix_op_token1] = ACTIONS(5062), - [sym_int] = ACTIONS(5064), - [sym_xint] = ACTIONS(5062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5062), - [anon_sym_POUNDload] = ACTIONS(5062), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5062), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2920] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(8160), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2920), [sym_block_comment] = STATE(2920), [sym_line_comment] = STATE(2920), [sym_compiler_directive_decl] = STATE(2920), [sym_fsi_directive_decl] = STATE(2920), [sym_preproc_line] = STATE(2920), - [ts_builtin_sym_end] = ACTIONS(5253), - [sym_identifier] = ACTIONS(5255), - [anon_sym_namespace] = ACTIONS(5255), - [anon_sym_module] = ACTIONS(5255), - [anon_sym_open] = ACTIONS(5255), - [anon_sym_LBRACK_LT] = ACTIONS(5253), - [anon_sym_return] = ACTIONS(5255), - [anon_sym_type] = ACTIONS(5255), - [anon_sym_do] = ACTIONS(5255), - [anon_sym_and] = ACTIONS(5255), - [anon_sym_let] = ACTIONS(5255), - [anon_sym_let_BANG] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_null] = ACTIONS(5255), - [anon_sym_AMP] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_LBRACK_PIPE] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5255), - [anon_sym_LBRACE_PIPE] = ACTIONS(5253), - [anon_sym_new] = ACTIONS(5255), - [anon_sym_return_BANG] = ACTIONS(5253), - [anon_sym_yield] = ACTIONS(5255), - [anon_sym_yield_BANG] = ACTIONS(5253), - [anon_sym_lazy] = ACTIONS(5255), - [anon_sym_assert] = ACTIONS(5255), - [anon_sym_upcast] = ACTIONS(5255), - [anon_sym_downcast] = ACTIONS(5255), - [anon_sym_LT_AT] = ACTIONS(5255), - [anon_sym_LT_AT_AT] = ACTIONS(5253), - [anon_sym_for] = ACTIONS(5255), - [anon_sym_while] = ACTIONS(5255), - [anon_sym_if] = ACTIONS(5255), - [anon_sym_fun] = ACTIONS(5255), - [anon_sym_try] = ACTIONS(5255), - [anon_sym_match] = ACTIONS(5255), - [anon_sym_match_BANG] = ACTIONS(5253), - [anon_sym_function] = ACTIONS(5255), - [anon_sym_use] = ACTIONS(5255), - [anon_sym_use_BANG] = ACTIONS(5253), - [anon_sym_do_BANG] = ACTIONS(5253), - [anon_sym_begin] = ACTIONS(5255), - [aux_sym_char_token1] = ACTIONS(5253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(5255), - [anon_sym_AT_DQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5253), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5253), - [sym_bool] = ACTIONS(5255), - [sym_unit] = ACTIONS(5253), - [anon_sym_LPAREN_PIPE] = ACTIONS(5255), - [sym_op_identifier] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_PLUS_DOT] = ACTIONS(5253), - [anon_sym_DASH_DOT] = ACTIONS(5253), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_TILDE] = ACTIONS(5253), - [aux_sym_prefix_op_token1] = ACTIONS(5253), - [sym_int] = ACTIONS(5255), - [sym_xint] = ACTIONS(5253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5253), - [anon_sym_POUNDload] = ACTIONS(5253), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5253), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2921] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1696), + [sym_rules] = STATE(2139), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2921), [sym_block_comment] = STATE(2921), [sym_line_comment] = STATE(2921), [sym_compiler_directive_decl] = STATE(2921), [sym_fsi_directive_decl] = STATE(2921), [sym_preproc_line] = STATE(2921), - [ts_builtin_sym_end] = ACTIONS(5081), - [sym_identifier] = ACTIONS(5083), - [anon_sym_namespace] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_LBRACK_LT] = ACTIONS(5081), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_type] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_and] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_BANG] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_PIPE] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_LBRACE_PIPE] = ACTIONS(5081), - [anon_sym_new] = ACTIONS(5083), - [anon_sym_return_BANG] = ACTIONS(5081), - [anon_sym_yield] = ACTIONS(5083), - [anon_sym_yield_BANG] = ACTIONS(5081), - [anon_sym_lazy] = ACTIONS(5083), - [anon_sym_assert] = ACTIONS(5083), - [anon_sym_upcast] = ACTIONS(5083), - [anon_sym_downcast] = ACTIONS(5083), - [anon_sym_LT_AT] = ACTIONS(5083), - [anon_sym_LT_AT_AT] = ACTIONS(5081), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_match_BANG] = ACTIONS(5081), - [anon_sym_function] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_use_BANG] = ACTIONS(5081), - [anon_sym_do_BANG] = ACTIONS(5081), - [anon_sym_begin] = ACTIONS(5083), - [aux_sym_char_token1] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_AT_DQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [sym_bool] = ACTIONS(5083), - [sym_unit] = ACTIONS(5081), - [anon_sym_LPAREN_PIPE] = ACTIONS(5083), - [sym_op_identifier] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_PLUS_DOT] = ACTIONS(5081), - [anon_sym_DASH_DOT] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_TILDE] = ACTIONS(5081), - [aux_sym_prefix_op_token1] = ACTIONS(5081), - [sym_int] = ACTIONS(5083), - [sym_xint] = ACTIONS(5081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5081), - [anon_sym_POUNDload] = ACTIONS(5081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5081), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2922] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7606), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2922), [sym_block_comment] = STATE(2922), [sym_line_comment] = STATE(2922), [sym_compiler_directive_decl] = STATE(2922), [sym_fsi_directive_decl] = STATE(2922), [sym_preproc_line] = STATE(2922), - [ts_builtin_sym_end] = ACTIONS(5257), - [sym_identifier] = ACTIONS(5259), - [anon_sym_namespace] = ACTIONS(5259), - [anon_sym_module] = ACTIONS(5259), - [anon_sym_open] = ACTIONS(5259), - [anon_sym_LBRACK_LT] = ACTIONS(5257), - [anon_sym_return] = ACTIONS(5259), - [anon_sym_type] = ACTIONS(5259), - [anon_sym_do] = ACTIONS(5259), - [anon_sym_and] = ACTIONS(5259), - [anon_sym_let] = ACTIONS(5259), - [anon_sym_let_BANG] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_null] = ACTIONS(5259), - [anon_sym_AMP] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_LBRACK_PIPE] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5259), - [anon_sym_LBRACE_PIPE] = ACTIONS(5257), - [anon_sym_new] = ACTIONS(5259), - [anon_sym_return_BANG] = ACTIONS(5257), - [anon_sym_yield] = ACTIONS(5259), - [anon_sym_yield_BANG] = ACTIONS(5257), - [anon_sym_lazy] = ACTIONS(5259), - [anon_sym_assert] = ACTIONS(5259), - [anon_sym_upcast] = ACTIONS(5259), - [anon_sym_downcast] = ACTIONS(5259), - [anon_sym_LT_AT] = ACTIONS(5259), - [anon_sym_LT_AT_AT] = ACTIONS(5257), - [anon_sym_for] = ACTIONS(5259), - [anon_sym_while] = ACTIONS(5259), - [anon_sym_if] = ACTIONS(5259), - [anon_sym_fun] = ACTIONS(5259), - [anon_sym_try] = ACTIONS(5259), - [anon_sym_match] = ACTIONS(5259), - [anon_sym_match_BANG] = ACTIONS(5257), - [anon_sym_function] = ACTIONS(5259), - [anon_sym_use] = ACTIONS(5259), - [anon_sym_use_BANG] = ACTIONS(5257), - [anon_sym_do_BANG] = ACTIONS(5257), - [anon_sym_begin] = ACTIONS(5259), - [aux_sym_char_token1] = ACTIONS(5257), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5259), - [anon_sym_DQUOTE] = ACTIONS(5259), - [anon_sym_AT_DQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5257), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5257), - [sym_bool] = ACTIONS(5259), - [sym_unit] = ACTIONS(5257), - [anon_sym_LPAREN_PIPE] = ACTIONS(5259), - [sym_op_identifier] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_PLUS_DOT] = ACTIONS(5257), - [anon_sym_DASH_DOT] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_TILDE] = ACTIONS(5257), - [aux_sym_prefix_op_token1] = ACTIONS(5257), - [sym_int] = ACTIONS(5259), - [sym_xint] = ACTIONS(5257), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5257), - [anon_sym_POUNDload] = ACTIONS(5257), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5257), }, [2923] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1692), + [sym_rules] = STATE(2300), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2923), [sym_block_comment] = STATE(2923), [sym_line_comment] = STATE(2923), [sym_compiler_directive_decl] = STATE(2923), [sym_fsi_directive_decl] = STATE(2923), [sym_preproc_line] = STATE(2923), - [ts_builtin_sym_end] = ACTIONS(5261), - [sym_identifier] = ACTIONS(5263), - [anon_sym_namespace] = ACTIONS(5263), - [anon_sym_module] = ACTIONS(5263), - [anon_sym_open] = ACTIONS(5263), - [anon_sym_LBRACK_LT] = ACTIONS(5261), - [anon_sym_return] = ACTIONS(5263), - [anon_sym_type] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(5263), - [anon_sym_and] = ACTIONS(5263), - [anon_sym_let] = ACTIONS(5263), - [anon_sym_let_BANG] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(5263), - [anon_sym_AMP] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_LBRACK_PIPE] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_LBRACE_PIPE] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5263), - [anon_sym_return_BANG] = ACTIONS(5261), - [anon_sym_yield] = ACTIONS(5263), - [anon_sym_yield_BANG] = ACTIONS(5261), - [anon_sym_lazy] = ACTIONS(5263), - [anon_sym_assert] = ACTIONS(5263), - [anon_sym_upcast] = ACTIONS(5263), - [anon_sym_downcast] = ACTIONS(5263), - [anon_sym_LT_AT] = ACTIONS(5263), - [anon_sym_LT_AT_AT] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5263), - [anon_sym_if] = ACTIONS(5263), - [anon_sym_fun] = ACTIONS(5263), - [anon_sym_try] = ACTIONS(5263), - [anon_sym_match] = ACTIONS(5263), - [anon_sym_match_BANG] = ACTIONS(5261), - [anon_sym_function] = ACTIONS(5263), - [anon_sym_use] = ACTIONS(5263), - [anon_sym_use_BANG] = ACTIONS(5261), - [anon_sym_do_BANG] = ACTIONS(5261), - [anon_sym_begin] = ACTIONS(5263), - [aux_sym_char_token1] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_AT_DQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [sym_bool] = ACTIONS(5263), - [sym_unit] = ACTIONS(5261), - [anon_sym_LPAREN_PIPE] = ACTIONS(5263), - [sym_op_identifier] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_PLUS_DOT] = ACTIONS(5261), - [anon_sym_DASH_DOT] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5261), - [aux_sym_prefix_op_token1] = ACTIONS(5261), - [sym_int] = ACTIONS(5263), - [sym_xint] = ACTIONS(5261), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5261), - [anon_sym_POUNDload] = ACTIONS(5261), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5261), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2924] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2000), + [sym_rules] = STATE(2613), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2924), [sym_block_comment] = STATE(2924), [sym_line_comment] = STATE(2924), [sym_compiler_directive_decl] = STATE(2924), [sym_fsi_directive_decl] = STATE(2924), [sym_preproc_line] = STATE(2924), - [aux_sym_type_argument_repeat1] = STATE(2893), - [sym_identifier] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_let_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_null] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_LBRACE_PIPE] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_return_BANG] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_yield_BANG] = ACTIONS(2943), - [anon_sym_lazy] = ACTIONS(2941), - [anon_sym_assert] = ACTIONS(2941), - [anon_sym_upcast] = ACTIONS(2941), - [anon_sym_downcast] = ACTIONS(2941), - [anon_sym_LT_AT] = ACTIONS(2941), - [anon_sym_LT_AT_AT] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_fun] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_match_BANG] = ACTIONS(2943), - [anon_sym_function] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_use_BANG] = ACTIONS(2943), - [anon_sym_do_BANG] = ACTIONS(2943), - [anon_sym_begin] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LT2] = ACTIONS(2941), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(5219), - [aux_sym_char_token1] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [anon_sym_AT_DQUOTE] = ACTIONS(2943), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2943), - [sym_bool] = ACTIONS(2941), - [sym_unit] = ACTIONS(2943), - [anon_sym_LPAREN_PIPE] = ACTIONS(2941), - [sym_op_identifier] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [aux_sym_prefix_op_token1] = ACTIONS(2943), - [sym_int] = ACTIONS(2941), - [sym_xint] = ACTIONS(2943), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2943), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2925] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7484), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2925), [sym_block_comment] = STATE(2925), [sym_line_comment] = STATE(2925), [sym_compiler_directive_decl] = STATE(2925), [sym_fsi_directive_decl] = STATE(2925), [sym_preproc_line] = STATE(2925), - [aux_sym__function_or_value_defns_repeat1] = STATE(2925), - [sym_identifier] = ACTIONS(5197), - [anon_sym_module] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_LBRACK_LT] = ACTIONS(5195), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_type] = ACTIONS(5197), - [anon_sym_do] = ACTIONS(5197), - [anon_sym_and] = ACTIONS(5265), - [anon_sym_let] = ACTIONS(5197), - [anon_sym_let_BANG] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5197), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_AMP] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(5197), - [anon_sym_LBRACK_PIPE] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5197), - [anon_sym_LBRACE_PIPE] = ACTIONS(5195), - [anon_sym_new] = ACTIONS(5197), - [anon_sym_return_BANG] = ACTIONS(5195), - [anon_sym_yield] = ACTIONS(5197), - [anon_sym_yield_BANG] = ACTIONS(5195), - [anon_sym_lazy] = ACTIONS(5197), - [anon_sym_assert] = ACTIONS(5197), - [anon_sym_upcast] = ACTIONS(5197), - [anon_sym_downcast] = ACTIONS(5197), - [anon_sym_LT_AT] = ACTIONS(5197), - [anon_sym_LT_AT_AT] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_match] = ACTIONS(5197), - [anon_sym_match_BANG] = ACTIONS(5195), - [anon_sym_function] = ACTIONS(5197), - [anon_sym_use] = ACTIONS(5197), - [anon_sym_use_BANG] = ACTIONS(5195), - [anon_sym_do_BANG] = ACTIONS(5195), - [anon_sym_begin] = ACTIONS(5197), - [aux_sym_char_token1] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5197), - [anon_sym_DQUOTE] = ACTIONS(5197), - [anon_sym_AT_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [sym_bool] = ACTIONS(5197), - [sym_unit] = ACTIONS(5195), - [anon_sym_LPAREN_PIPE] = ACTIONS(5197), - [sym_op_identifier] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_PLUS_DOT] = ACTIONS(5195), - [anon_sym_DASH_DOT] = ACTIONS(5195), - [anon_sym_PERCENT] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_TILDE] = ACTIONS(5195), - [aux_sym_prefix_op_token1] = ACTIONS(5195), - [sym_int] = ACTIONS(5197), - [sym_xint] = ACTIONS(5195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5195), - [anon_sym_POUNDload] = ACTIONS(5195), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5195), - [sym__dedent] = ACTIONS(5195), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2926] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2000), + [sym_rules] = STATE(2614), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2926), [sym_block_comment] = STATE(2926), [sym_line_comment] = STATE(2926), [sym_compiler_directive_decl] = STATE(2926), [sym_fsi_directive_decl] = STATE(2926), [sym_preproc_line] = STATE(2926), - [ts_builtin_sym_end] = ACTIONS(5268), - [sym_identifier] = ACTIONS(5270), - [anon_sym_namespace] = ACTIONS(5270), - [anon_sym_module] = ACTIONS(5270), - [anon_sym_open] = ACTIONS(5270), - [anon_sym_LBRACK_LT] = ACTIONS(5268), - [anon_sym_return] = ACTIONS(5270), - [anon_sym_type] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_let_BANG] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_null] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LBRACK_PIPE] = ACTIONS(5268), - [anon_sym_LBRACE] = ACTIONS(5270), - [anon_sym_LBRACE_PIPE] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5270), - [anon_sym_return_BANG] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5270), - [anon_sym_yield_BANG] = ACTIONS(5268), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_assert] = ACTIONS(5270), - [anon_sym_upcast] = ACTIONS(5270), - [anon_sym_downcast] = ACTIONS(5270), - [anon_sym_LT_AT] = ACTIONS(5270), - [anon_sym_LT_AT_AT] = ACTIONS(5268), - [anon_sym_for] = ACTIONS(5270), - [anon_sym_while] = ACTIONS(5270), - [anon_sym_if] = ACTIONS(5270), - [anon_sym_fun] = ACTIONS(5270), - [anon_sym_try] = ACTIONS(5270), - [anon_sym_match] = ACTIONS(5270), - [anon_sym_match_BANG] = ACTIONS(5268), - [anon_sym_function] = ACTIONS(5270), - [anon_sym_use] = ACTIONS(5270), - [anon_sym_use_BANG] = ACTIONS(5268), - [anon_sym_do_BANG] = ACTIONS(5268), - [anon_sym_begin] = ACTIONS(5270), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_AT_DQUOTE] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [sym_bool] = ACTIONS(5270), - [sym_unit] = ACTIONS(5268), - [anon_sym_LPAREN_PIPE] = ACTIONS(5270), - [sym_op_identifier] = ACTIONS(5268), - [anon_sym_PLUS] = ACTIONS(5270), - [anon_sym_DASH] = ACTIONS(5270), - [anon_sym_PLUS_DOT] = ACTIONS(5268), - [anon_sym_DASH_DOT] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5268), - [aux_sym_prefix_op_token1] = ACTIONS(5268), - [sym_int] = ACTIONS(5270), - [sym_xint] = ACTIONS(5268), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5268), - [anon_sym_POUNDload] = ACTIONS(5268), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5268), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2927] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1156), + [sym_rules] = STATE(1345), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2927), [sym_block_comment] = STATE(2927), [sym_line_comment] = STATE(2927), [sym_compiler_directive_decl] = STATE(2927), [sym_fsi_directive_decl] = STATE(2927), [sym_preproc_line] = STATE(2927), - [aux_sym_long_identifier_repeat1] = STATE(2927), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5272), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2928] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1735), + [sym_rules] = STATE(2315), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2928), [sym_block_comment] = STATE(2928), [sym_line_comment] = STATE(2928), [sym_compiler_directive_decl] = STATE(2928), [sym_fsi_directive_decl] = STATE(2928), [sym_preproc_line] = STATE(2928), - [ts_builtin_sym_end] = ACTIONS(5275), - [sym_identifier] = ACTIONS(5277), - [anon_sym_namespace] = ACTIONS(5277), - [anon_sym_module] = ACTIONS(5277), - [anon_sym_open] = ACTIONS(5277), - [anon_sym_LBRACK_LT] = ACTIONS(5275), - [anon_sym_return] = ACTIONS(5277), - [anon_sym_type] = ACTIONS(5277), - [anon_sym_do] = ACTIONS(5277), - [anon_sym_and] = ACTIONS(5277), - [anon_sym_let] = ACTIONS(5277), - [anon_sym_let_BANG] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_null] = ACTIONS(5277), - [anon_sym_AMP] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_LBRACK_PIPE] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5277), - [anon_sym_LBRACE_PIPE] = ACTIONS(5275), - [anon_sym_new] = ACTIONS(5277), - [anon_sym_return_BANG] = ACTIONS(5275), - [anon_sym_yield] = ACTIONS(5277), - [anon_sym_yield_BANG] = ACTIONS(5275), - [anon_sym_lazy] = ACTIONS(5277), - [anon_sym_assert] = ACTIONS(5277), - [anon_sym_upcast] = ACTIONS(5277), - [anon_sym_downcast] = ACTIONS(5277), - [anon_sym_LT_AT] = ACTIONS(5277), - [anon_sym_LT_AT_AT] = ACTIONS(5275), - [anon_sym_for] = ACTIONS(5277), - [anon_sym_while] = ACTIONS(5277), - [anon_sym_if] = ACTIONS(5277), - [anon_sym_fun] = ACTIONS(5277), - [anon_sym_try] = ACTIONS(5277), - [anon_sym_match] = ACTIONS(5277), - [anon_sym_match_BANG] = ACTIONS(5275), - [anon_sym_function] = ACTIONS(5277), - [anon_sym_use] = ACTIONS(5277), - [anon_sym_use_BANG] = ACTIONS(5275), - [anon_sym_do_BANG] = ACTIONS(5275), - [anon_sym_begin] = ACTIONS(5277), - [aux_sym_char_token1] = ACTIONS(5275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5277), - [anon_sym_DQUOTE] = ACTIONS(5277), - [anon_sym_AT_DQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5275), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5275), - [sym_bool] = ACTIONS(5277), - [sym_unit] = ACTIONS(5275), - [anon_sym_LPAREN_PIPE] = ACTIONS(5277), - [sym_op_identifier] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_PLUS_DOT] = ACTIONS(5275), - [anon_sym_DASH_DOT] = ACTIONS(5275), - [anon_sym_PERCENT] = ACTIONS(5275), - [anon_sym_AMP_AMP] = ACTIONS(5275), - [anon_sym_TILDE] = ACTIONS(5275), - [aux_sym_prefix_op_token1] = ACTIONS(5275), - [sym_int] = ACTIONS(5277), - [sym_xint] = ACTIONS(5275), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5275), - [anon_sym_POUNDload] = ACTIONS(5275), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5275), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2929] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7261), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2929), [sym_block_comment] = STATE(2929), [sym_line_comment] = STATE(2929), [sym_compiler_directive_decl] = STATE(2929), [sym_fsi_directive_decl] = STATE(2929), [sym_preproc_line] = STATE(2929), - [aux_sym_long_identifier_repeat1] = STATE(2912), - [sym_identifier] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5237), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), - [sym__dedent] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2930] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7757), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2930), [sym_block_comment] = STATE(2930), [sym_line_comment] = STATE(2930), [sym_compiler_directive_decl] = STATE(2930), [sym_fsi_directive_decl] = STATE(2930), [sym_preproc_line] = STATE(2930), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2931] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1156), + [sym_rules] = STATE(1333), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2931), [sym_block_comment] = STATE(2931), [sym_line_comment] = STATE(2931), [sym_compiler_directive_decl] = STATE(2931), [sym_fsi_directive_decl] = STATE(2931), [sym_preproc_line] = STATE(2931), - [aux_sym__function_or_value_defns_repeat1] = STATE(2925), - [sym_identifier] = ACTIONS(5181), - [anon_sym_module] = ACTIONS(5181), - [anon_sym_open] = ACTIONS(5181), - [anon_sym_LBRACK_LT] = ACTIONS(5179), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_type] = ACTIONS(5181), - [anon_sym_do] = ACTIONS(5181), - [anon_sym_and] = ACTIONS(5279), - [anon_sym_let] = ACTIONS(5181), - [anon_sym_let_BANG] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_LBRACK_PIPE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5181), - [anon_sym_LBRACE_PIPE] = ACTIONS(5179), - [anon_sym_new] = ACTIONS(5181), - [anon_sym_return_BANG] = ACTIONS(5179), - [anon_sym_yield] = ACTIONS(5181), - [anon_sym_yield_BANG] = ACTIONS(5179), - [anon_sym_lazy] = ACTIONS(5181), - [anon_sym_assert] = ACTIONS(5181), - [anon_sym_upcast] = ACTIONS(5181), - [anon_sym_downcast] = ACTIONS(5181), - [anon_sym_LT_AT] = ACTIONS(5181), - [anon_sym_LT_AT_AT] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_match] = ACTIONS(5181), - [anon_sym_match_BANG] = ACTIONS(5179), - [anon_sym_function] = ACTIONS(5181), - [anon_sym_use] = ACTIONS(5181), - [anon_sym_use_BANG] = ACTIONS(5179), - [anon_sym_do_BANG] = ACTIONS(5179), - [anon_sym_begin] = ACTIONS(5181), - [aux_sym_char_token1] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5181), - [anon_sym_DQUOTE] = ACTIONS(5181), - [anon_sym_AT_DQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [sym_bool] = ACTIONS(5181), - [sym_unit] = ACTIONS(5179), - [anon_sym_LPAREN_PIPE] = ACTIONS(5181), - [sym_op_identifier] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_PLUS_DOT] = ACTIONS(5179), - [anon_sym_DASH_DOT] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [aux_sym_prefix_op_token1] = ACTIONS(5179), - [sym_int] = ACTIONS(5181), - [sym_xint] = ACTIONS(5179), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5179), - [anon_sym_POUNDload] = ACTIONS(5179), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5179), - [sym__dedent] = ACTIONS(5179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2932] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1516), + [sym_rules] = STATE(1954), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2932), [sym_block_comment] = STATE(2932), [sym_line_comment] = STATE(2932), [sym_compiler_directive_decl] = STATE(2932), [sym_fsi_directive_decl] = STATE(2932), [sym_preproc_line] = STATE(2932), - [sym_identifier] = ACTIONS(2986), - [anon_sym_GT_RBRACK] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(5281), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2933] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1516), + [sym_rules] = STATE(1933), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2933), [sym_block_comment] = STATE(2933), [sym_line_comment] = STATE(2933), [sym_compiler_directive_decl] = STATE(2933), [sym_fsi_directive_decl] = STATE(2933), [sym_preproc_line] = STATE(2933), - [ts_builtin_sym_end] = ACTIONS(5283), - [sym_identifier] = ACTIONS(5285), - [anon_sym_namespace] = ACTIONS(5285), - [anon_sym_module] = ACTIONS(5285), - [anon_sym_open] = ACTIONS(5285), - [anon_sym_LBRACK_LT] = ACTIONS(5283), - [anon_sym_return] = ACTIONS(5285), - [anon_sym_type] = ACTIONS(5285), - [anon_sym_do] = ACTIONS(5285), - [anon_sym_and] = ACTIONS(5285), - [anon_sym_let] = ACTIONS(5285), - [anon_sym_let_BANG] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_null] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_LBRACK_PIPE] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5285), - [anon_sym_LBRACE_PIPE] = ACTIONS(5283), - [anon_sym_new] = ACTIONS(5285), - [anon_sym_return_BANG] = ACTIONS(5283), - [anon_sym_yield] = ACTIONS(5285), - [anon_sym_yield_BANG] = ACTIONS(5283), - [anon_sym_lazy] = ACTIONS(5285), - [anon_sym_assert] = ACTIONS(5285), - [anon_sym_upcast] = ACTIONS(5285), - [anon_sym_downcast] = ACTIONS(5285), - [anon_sym_LT_AT] = ACTIONS(5285), - [anon_sym_LT_AT_AT] = ACTIONS(5283), - [anon_sym_for] = ACTIONS(5285), - [anon_sym_while] = ACTIONS(5285), - [anon_sym_if] = ACTIONS(5285), - [anon_sym_fun] = ACTIONS(5285), - [anon_sym_try] = ACTIONS(5285), - [anon_sym_match] = ACTIONS(5285), - [anon_sym_match_BANG] = ACTIONS(5283), - [anon_sym_function] = ACTIONS(5285), - [anon_sym_use] = ACTIONS(5285), - [anon_sym_use_BANG] = ACTIONS(5283), - [anon_sym_do_BANG] = ACTIONS(5283), - [anon_sym_begin] = ACTIONS(5285), - [aux_sym_char_token1] = ACTIONS(5283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5285), - [anon_sym_DQUOTE] = ACTIONS(5285), - [anon_sym_AT_DQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5283), - [sym_bool] = ACTIONS(5285), - [sym_unit] = ACTIONS(5283), - [anon_sym_LPAREN_PIPE] = ACTIONS(5285), - [sym_op_identifier] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_PLUS_DOT] = ACTIONS(5283), - [anon_sym_DASH_DOT] = ACTIONS(5283), - [anon_sym_PERCENT] = ACTIONS(5283), - [anon_sym_AMP_AMP] = ACTIONS(5283), - [anon_sym_TILDE] = ACTIONS(5283), - [aux_sym_prefix_op_token1] = ACTIONS(5283), - [sym_int] = ACTIONS(5285), - [sym_xint] = ACTIONS(5283), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5283), - [anon_sym_POUNDload] = ACTIONS(5283), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5283), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2934] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(956), + [sym_rules] = STATE(1172), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2934), [sym_block_comment] = STATE(2934), [sym_line_comment] = STATE(2934), [sym_compiler_directive_decl] = STATE(2934), [sym_fsi_directive_decl] = STATE(2934), [sym_preproc_line] = STATE(2934), - [aux_sym__compound_type_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2935] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1238), + [sym_rules] = STATE(1643), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2935), [sym_block_comment] = STATE(2935), [sym_line_comment] = STATE(2935), [sym_compiler_directive_decl] = STATE(2935), [sym_fsi_directive_decl] = STATE(2935), [sym_preproc_line] = STATE(2935), - [aux_sym__compound_type_repeat1] = STATE(2935), - [sym_identifier] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2936] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1238), + [sym_rules] = STATE(1636), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2936), [sym_block_comment] = STATE(2936), [sym_line_comment] = STATE(2936), [sym_compiler_directive_decl] = STATE(2936), [sym_fsi_directive_decl] = STATE(2936), [sym_preproc_line] = STATE(2936), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(5290), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2937] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1516), + [sym_rules] = STATE(1951), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2937), [sym_block_comment] = STATE(2937), [sym_line_comment] = STATE(2937), [sym_compiler_directive_decl] = STATE(2937), [sym_fsi_directive_decl] = STATE(2937), [sym_preproc_line] = STATE(2937), - [aux_sym__function_or_value_defns_repeat1] = STATE(2931), - [sym_identifier] = ACTIONS(5126), - [anon_sym_module] = ACTIONS(5126), - [anon_sym_open] = ACTIONS(5126), - [anon_sym_LBRACK_LT] = ACTIONS(5124), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_type] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5279), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LBRACE_PIPE] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5126), - [anon_sym_return_BANG] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5126), - [anon_sym_yield_BANG] = ACTIONS(5124), - [anon_sym_lazy] = ACTIONS(5126), - [anon_sym_assert] = ACTIONS(5126), - [anon_sym_upcast] = ACTIONS(5126), - [anon_sym_downcast] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5126), - [anon_sym_while] = ACTIONS(5126), - [anon_sym_if] = ACTIONS(5126), - [anon_sym_fun] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5126), - [anon_sym_match] = ACTIONS(5126), - [anon_sym_match_BANG] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(5126), - [anon_sym_use] = ACTIONS(5126), - [anon_sym_use_BANG] = ACTIONS(5124), - [anon_sym_do_BANG] = ACTIONS(5124), - [anon_sym_begin] = ACTIONS(5126), - [aux_sym_char_token1] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [anon_sym_AT_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [sym_bool] = ACTIONS(5126), - [sym_unit] = ACTIONS(5124), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [sym_op_identifier] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_PLUS_DOT] = ACTIONS(5124), - [anon_sym_DASH_DOT] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5124), - [aux_sym_prefix_op_token1] = ACTIONS(5124), - [sym_int] = ACTIONS(5126), - [sym_xint] = ACTIONS(5124), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5124), - [anon_sym_POUNDload] = ACTIONS(5124), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5124), - [sym__dedent] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2938] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7277), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2938), [sym_block_comment] = STATE(2938), [sym_line_comment] = STATE(2938), [sym_compiler_directive_decl] = STATE(2938), [sym_fsi_directive_decl] = STATE(2938), [sym_preproc_line] = STATE(2938), - [ts_builtin_sym_end] = ACTIONS(5292), - [sym_identifier] = ACTIONS(5294), - [anon_sym_namespace] = ACTIONS(5294), - [anon_sym_module] = ACTIONS(5294), - [anon_sym_open] = ACTIONS(5294), - [anon_sym_LBRACK_LT] = ACTIONS(5292), - [anon_sym_return] = ACTIONS(5294), - [anon_sym_type] = ACTIONS(5294), - [anon_sym_do] = ACTIONS(5294), - [anon_sym_and] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_let_BANG] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5294), - [anon_sym_null] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_LBRACK_PIPE] = ACTIONS(5292), - [anon_sym_LBRACE] = ACTIONS(5294), - [anon_sym_LBRACE_PIPE] = ACTIONS(5292), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_return_BANG] = ACTIONS(5292), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_yield_BANG] = ACTIONS(5292), - [anon_sym_lazy] = ACTIONS(5294), - [anon_sym_assert] = ACTIONS(5294), - [anon_sym_upcast] = ACTIONS(5294), - [anon_sym_downcast] = ACTIONS(5294), - [anon_sym_LT_AT] = ACTIONS(5294), - [anon_sym_LT_AT_AT] = ACTIONS(5292), - [anon_sym_for] = ACTIONS(5294), - [anon_sym_while] = ACTIONS(5294), - [anon_sym_if] = ACTIONS(5294), - [anon_sym_fun] = ACTIONS(5294), - [anon_sym_try] = ACTIONS(5294), - [anon_sym_match] = ACTIONS(5294), - [anon_sym_match_BANG] = ACTIONS(5292), - [anon_sym_function] = ACTIONS(5294), - [anon_sym_use] = ACTIONS(5294), - [anon_sym_use_BANG] = ACTIONS(5292), - [anon_sym_do_BANG] = ACTIONS(5292), - [anon_sym_begin] = ACTIONS(5294), - [aux_sym_char_token1] = ACTIONS(5292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5294), - [anon_sym_DQUOTE] = ACTIONS(5294), - [anon_sym_AT_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5292), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5292), - [sym_bool] = ACTIONS(5294), - [sym_unit] = ACTIONS(5292), - [anon_sym_LPAREN_PIPE] = ACTIONS(5294), - [sym_op_identifier] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_PLUS_DOT] = ACTIONS(5292), - [anon_sym_DASH_DOT] = ACTIONS(5292), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_TILDE] = ACTIONS(5292), - [aux_sym_prefix_op_token1] = ACTIONS(5292), - [sym_int] = ACTIONS(5294), - [sym_xint] = ACTIONS(5292), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5292), - [anon_sym_POUNDload] = ACTIONS(5292), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5292), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2939] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7799), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2939), [sym_block_comment] = STATE(2939), [sym_line_comment] = STATE(2939), [sym_compiler_directive_decl] = STATE(2939), [sym_fsi_directive_decl] = STATE(2939), [sym_preproc_line] = STATE(2939), - [aux_sym__compound_type_repeat1] = STATE(2939), - [sym_identifier] = ACTIONS(2810), - [anon_sym_GT_RBRACK] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__newline] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2940] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2000), + [sym_rules] = STATE(2658), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2940), [sym_block_comment] = STATE(2940), [sym_line_comment] = STATE(2940), [sym_compiler_directive_decl] = STATE(2940), [sym_fsi_directive_decl] = STATE(2940), [sym_preproc_line] = STATE(2940), - [sym_identifier] = ACTIONS(2924), - [anon_sym_GT_RBRACK] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2941] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7363), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2941), [sym_block_comment] = STATE(2941), [sym_line_comment] = STATE(2941), [sym_compiler_directive_decl] = STATE(2941), [sym_fsi_directive_decl] = STATE(2941), [sym_preproc_line] = STATE(2941), - [aux_sym_long_identifier_repeat1] = STATE(2941), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5299), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2942] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7769), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2942), [sym_block_comment] = STATE(2942), [sym_line_comment] = STATE(2942), [sym_compiler_directive_decl] = STATE(2942), [sym_fsi_directive_decl] = STATE(2942), [sym_preproc_line] = STATE(2942), - [aux_sym_long_identifier_repeat1] = STATE(2941), - [sym_identifier] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_LBRACK_LT] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5247), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2968), - [anon_sym_POUNDload] = ACTIONS(2968), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), - [sym__dedent] = ACTIONS(2968), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2943] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7773), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6137), + [sym_rules] = STATE(7322), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2943), [sym_block_comment] = STATE(2943), [sym_line_comment] = STATE(2943), [sym_compiler_directive_decl] = STATE(2943), [sym_fsi_directive_decl] = STATE(2943), [sym_preproc_line] = STATE(2943), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5308), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -350751,303 +358242,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2944] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1866), + [sym_rules] = STATE(2763), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2944), [sym_block_comment] = STATE(2944), [sym_line_comment] = STATE(2944), [sym_compiler_directive_decl] = STATE(2944), [sym_fsi_directive_decl] = STATE(2944), [sym_preproc_line] = STATE(2944), - [aux_sym_long_identifier_repeat1] = STATE(2944), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(5336), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2945] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1866), + [sym_rules] = STATE(2558), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2945), [sym_block_comment] = STATE(2945), [sym_line_comment] = STATE(2945), [sym_compiler_directive_decl] = STATE(2945), [sym_fsi_directive_decl] = STATE(2945), [sym_preproc_line] = STATE(2945), - [sym_identifier] = ACTIONS(5064), - [anon_sym_module] = ACTIONS(5064), - [anon_sym_open] = ACTIONS(5064), - [anon_sym_LBRACK_LT] = ACTIONS(5062), - [anon_sym_return] = ACTIONS(5064), - [anon_sym_type] = ACTIONS(5064), - [anon_sym_do] = ACTIONS(5064), - [anon_sym_and] = ACTIONS(5064), - [anon_sym_let] = ACTIONS(5064), - [anon_sym_let_BANG] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_null] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_LBRACK_PIPE] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5064), - [anon_sym_LBRACE_PIPE] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5064), - [anon_sym_return_BANG] = ACTIONS(5062), - [anon_sym_yield] = ACTIONS(5064), - [anon_sym_yield_BANG] = ACTIONS(5062), - [anon_sym_lazy] = ACTIONS(5064), - [anon_sym_assert] = ACTIONS(5064), - [anon_sym_upcast] = ACTIONS(5064), - [anon_sym_downcast] = ACTIONS(5064), - [anon_sym_LT_AT] = ACTIONS(5064), - [anon_sym_LT_AT_AT] = ACTIONS(5062), - [anon_sym_for] = ACTIONS(5064), - [anon_sym_while] = ACTIONS(5064), - [anon_sym_if] = ACTIONS(5064), - [anon_sym_fun] = ACTIONS(5064), - [anon_sym_try] = ACTIONS(5064), - [anon_sym_match] = ACTIONS(5064), - [anon_sym_match_BANG] = ACTIONS(5062), - [anon_sym_function] = ACTIONS(5064), - [anon_sym_use] = ACTIONS(5064), - [anon_sym_use_BANG] = ACTIONS(5062), - [anon_sym_do_BANG] = ACTIONS(5062), - [anon_sym_begin] = ACTIONS(5064), - [aux_sym_char_token1] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5064), - [anon_sym_DQUOTE] = ACTIONS(5064), - [anon_sym_AT_DQUOTE] = ACTIONS(5062), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5062), - [sym_bool] = ACTIONS(5064), - [sym_unit] = ACTIONS(5062), - [anon_sym_LPAREN_PIPE] = ACTIONS(5064), - [sym_op_identifier] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_PLUS_DOT] = ACTIONS(5062), - [anon_sym_DASH_DOT] = ACTIONS(5062), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5062), - [aux_sym_prefix_op_token1] = ACTIONS(5062), - [sym_int] = ACTIONS(5064), - [sym_xint] = ACTIONS(5062), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5062), - [anon_sym_POUNDload] = ACTIONS(5062), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5062), - [sym__dedent] = ACTIONS(5062), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2946] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2014), + [sym_rules] = STATE(2431), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2946), [sym_block_comment] = STATE(2946), [sym_line_comment] = STATE(2946), [sym_compiler_directive_decl] = STATE(2946), [sym_fsi_directive_decl] = STATE(2946), [sym_preproc_line] = STATE(2946), - [aux_sym_long_identifier_repeat1] = STATE(2976), - [sym_identifier] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_let_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_null] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_LBRACE_PIPE] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_return_BANG] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_yield_BANG] = ACTIONS(2937), - [anon_sym_lazy] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_upcast] = ACTIONS(2935), - [anon_sym_downcast] = ACTIONS(2935), - [anon_sym_LT_AT] = ACTIONS(2935), - [anon_sym_LT_AT_AT] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_fun] = ACTIONS(2935), - [anon_sym_DASH_GT] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_match_BANG] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_use_BANG] = ACTIONS(2937), - [anon_sym_do_BANG] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_LT2] = ACTIONS(2935), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2937), - [aux_sym_char_token1] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [anon_sym_AT_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2937), - [sym_bool] = ACTIONS(2935), - [sym_unit] = ACTIONS(2937), - [anon_sym_LPAREN_PIPE] = ACTIONS(2935), - [sym_op_identifier] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_PLUS_DOT] = ACTIONS(2937), - [anon_sym_DASH_DOT] = ACTIONS(2937), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2937), - [aux_sym_prefix_op_token1] = ACTIONS(2937), - [sym_int] = ACTIONS(2935), - [sym_xint] = ACTIONS(2937), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2937), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5172), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2947] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7673), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1238), + [sym_rules] = STATE(1660), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2947), [sym_block_comment] = STATE(2947), [sym_line_comment] = STATE(2947), [sym_compiler_directive_decl] = STATE(2947), [sym_fsi_directive_decl] = STATE(2947), [sym_preproc_line] = STATE(2947), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -351055,151 +358590,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2948] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1866), + [sym_rules] = STATE(2753), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2948), [sym_block_comment] = STATE(2948), [sym_line_comment] = STATE(2948), [sym_compiler_directive_decl] = STATE(2948), [sym_fsi_directive_decl] = STATE(2948), [sym_preproc_line] = STATE(2948), - [sym_identifier] = ACTIONS(5255), - [anon_sym_module] = ACTIONS(5255), - [anon_sym_open] = ACTIONS(5255), - [anon_sym_LBRACK_LT] = ACTIONS(5253), - [anon_sym_return] = ACTIONS(5255), - [anon_sym_type] = ACTIONS(5255), - [anon_sym_do] = ACTIONS(5255), - [anon_sym_and] = ACTIONS(5255), - [anon_sym_let] = ACTIONS(5255), - [anon_sym_let_BANG] = ACTIONS(5253), - [anon_sym_LPAREN] = ACTIONS(5255), - [anon_sym_null] = ACTIONS(5255), - [anon_sym_AMP] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_LBRACK_PIPE] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5255), - [anon_sym_LBRACE_PIPE] = ACTIONS(5253), - [anon_sym_new] = ACTIONS(5255), - [anon_sym_return_BANG] = ACTIONS(5253), - [anon_sym_yield] = ACTIONS(5255), - [anon_sym_yield_BANG] = ACTIONS(5253), - [anon_sym_lazy] = ACTIONS(5255), - [anon_sym_assert] = ACTIONS(5255), - [anon_sym_upcast] = ACTIONS(5255), - [anon_sym_downcast] = ACTIONS(5255), - [anon_sym_LT_AT] = ACTIONS(5255), - [anon_sym_LT_AT_AT] = ACTIONS(5253), - [anon_sym_for] = ACTIONS(5255), - [anon_sym_while] = ACTIONS(5255), - [anon_sym_if] = ACTIONS(5255), - [anon_sym_fun] = ACTIONS(5255), - [anon_sym_try] = ACTIONS(5255), - [anon_sym_match] = ACTIONS(5255), - [anon_sym_match_BANG] = ACTIONS(5253), - [anon_sym_function] = ACTIONS(5255), - [anon_sym_use] = ACTIONS(5255), - [anon_sym_use_BANG] = ACTIONS(5253), - [anon_sym_do_BANG] = ACTIONS(5253), - [anon_sym_begin] = ACTIONS(5255), - [aux_sym_char_token1] = ACTIONS(5253), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(5255), - [anon_sym_AT_DQUOTE] = ACTIONS(5253), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5253), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5253), - [sym_bool] = ACTIONS(5255), - [sym_unit] = ACTIONS(5253), - [anon_sym_LPAREN_PIPE] = ACTIONS(5255), - [sym_op_identifier] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_PLUS_DOT] = ACTIONS(5253), - [anon_sym_DASH_DOT] = ACTIONS(5253), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_TILDE] = ACTIONS(5253), - [aux_sym_prefix_op_token1] = ACTIONS(5253), - [sym_int] = ACTIONS(5255), - [sym_xint] = ACTIONS(5253), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5253), - [anon_sym_POUNDload] = ACTIONS(5253), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5253), - [sym__dedent] = ACTIONS(5253), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2949] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7553), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2949), [sym_block_comment] = STATE(2949), [sym_line_comment] = STATE(2949), [sym_compiler_directive_decl] = STATE(2949), [sym_fsi_directive_decl] = STATE(2949), [sym_preproc_line] = STATE(2949), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5343), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACK_LT] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5212), + [anon_sym_null] = ACTIONS(5215), + [anon_sym__] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5221), + [anon_sym_COLON_QMARK] = ACTIONS(5224), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_LBRACK_PIPE] = ACTIONS(5230), + [anon_sym_LBRACE] = ACTIONS(5233), + [aux_sym_char_token1] = ACTIONS(5236), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5239), + [anon_sym_DQUOTE] = ACTIONS(5242), + [anon_sym_AT_DQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5248), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5251), + [sym_bool] = ACTIONS(5254), + [sym_unit] = ACTIONS(5257), + [anon_sym_LPAREN_PIPE] = ACTIONS(5260), + [sym_op_identifier] = ACTIONS(5263), + [sym_int] = ACTIONS(5266), + [sym_xint] = ACTIONS(5269), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -351207,916 +358763,1036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2950] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2950), [sym_block_comment] = STATE(2950), [sym_line_comment] = STATE(2950), [sym_compiler_directive_decl] = STATE(2950), [sym_fsi_directive_decl] = STATE(2950), [sym_preproc_line] = STATE(2950), - [aux_sym__compound_type_repeat1] = STATE(2950), - [sym_identifier] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), - [sym__dedent] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5272), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2951] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2951), [sym_block_comment] = STATE(2951), [sym_line_comment] = STATE(2951), [sym_compiler_directive_decl] = STATE(2951), [sym_fsi_directive_decl] = STATE(2951), [sym_preproc_line] = STATE(2951), - [ts_builtin_sym_end] = ACTIONS(5348), - [sym_identifier] = ACTIONS(5350), - [anon_sym_namespace] = ACTIONS(5350), - [anon_sym_module] = ACTIONS(5350), - [anon_sym_open] = ACTIONS(5350), - [anon_sym_LBRACK_LT] = ACTIONS(5348), - [anon_sym_return] = ACTIONS(5350), - [anon_sym_type] = ACTIONS(5350), - [anon_sym_do] = ACTIONS(5350), - [anon_sym_let] = ACTIONS(5350), - [anon_sym_let_BANG] = ACTIONS(5348), - [anon_sym_LPAREN] = ACTIONS(5350), - [anon_sym_null] = ACTIONS(5350), - [anon_sym_AMP] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(5350), - [anon_sym_LBRACK_PIPE] = ACTIONS(5348), - [anon_sym_LBRACE] = ACTIONS(5350), - [anon_sym_LBRACE_PIPE] = ACTIONS(5348), - [anon_sym_new] = ACTIONS(5350), - [anon_sym_return_BANG] = ACTIONS(5348), - [anon_sym_yield] = ACTIONS(5350), - [anon_sym_yield_BANG] = ACTIONS(5348), - [anon_sym_lazy] = ACTIONS(5350), - [anon_sym_assert] = ACTIONS(5350), - [anon_sym_upcast] = ACTIONS(5350), - [anon_sym_downcast] = ACTIONS(5350), - [anon_sym_LT_AT] = ACTIONS(5350), - [anon_sym_LT_AT_AT] = ACTIONS(5348), - [anon_sym_for] = ACTIONS(5350), - [anon_sym_while] = ACTIONS(5350), - [anon_sym_if] = ACTIONS(5350), - [anon_sym_fun] = ACTIONS(5350), - [anon_sym_try] = ACTIONS(5350), - [anon_sym_match] = ACTIONS(5350), - [anon_sym_match_BANG] = ACTIONS(5348), - [anon_sym_function] = ACTIONS(5350), - [anon_sym_use] = ACTIONS(5350), - [anon_sym_use_BANG] = ACTIONS(5348), - [anon_sym_do_BANG] = ACTIONS(5348), - [anon_sym_begin] = ACTIONS(5350), - [aux_sym_char_token1] = ACTIONS(5348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), - [anon_sym_DQUOTE] = ACTIONS(5350), - [anon_sym_AT_DQUOTE] = ACTIONS(5348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), - [sym_bool] = ACTIONS(5350), - [sym_unit] = ACTIONS(5348), - [anon_sym_LPAREN_PIPE] = ACTIONS(5350), - [sym_op_identifier] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(5350), - [anon_sym_DASH] = ACTIONS(5350), - [anon_sym_PLUS_DOT] = ACTIONS(5348), - [anon_sym_DASH_DOT] = ACTIONS(5348), - [anon_sym_PERCENT] = ACTIONS(5348), - [anon_sym_AMP_AMP] = ACTIONS(5348), - [anon_sym_TILDE] = ACTIONS(5348), - [aux_sym_prefix_op_token1] = ACTIONS(5348), - [sym_int] = ACTIONS(5350), - [sym_xint] = ACTIONS(5348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5274), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5348), - [anon_sym_POUNDload] = ACTIONS(5348), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5348), }, [2952] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2952), [sym_block_comment] = STATE(2952), [sym_line_comment] = STATE(2952), [sym_compiler_directive_decl] = STATE(2952), [sym_fsi_directive_decl] = STATE(2952), [sym_preproc_line] = STATE(2952), - [ts_builtin_sym_end] = ACTIONS(5352), - [sym_identifier] = ACTIONS(5354), - [anon_sym_namespace] = ACTIONS(5354), - [anon_sym_module] = ACTIONS(5354), - [anon_sym_open] = ACTIONS(5354), - [anon_sym_LBRACK_LT] = ACTIONS(5352), - [anon_sym_return] = ACTIONS(5354), - [anon_sym_type] = ACTIONS(5354), - [anon_sym_do] = ACTIONS(5354), - [anon_sym_let] = ACTIONS(5354), - [anon_sym_let_BANG] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_null] = ACTIONS(5354), - [anon_sym_AMP] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5354), - [anon_sym_LBRACK_PIPE] = ACTIONS(5352), - [anon_sym_LBRACE] = ACTIONS(5354), - [anon_sym_LBRACE_PIPE] = ACTIONS(5352), - [anon_sym_new] = ACTIONS(5354), - [anon_sym_return_BANG] = ACTIONS(5352), - [anon_sym_yield] = ACTIONS(5354), - [anon_sym_yield_BANG] = ACTIONS(5352), - [anon_sym_lazy] = ACTIONS(5354), - [anon_sym_assert] = ACTIONS(5354), - [anon_sym_upcast] = ACTIONS(5354), - [anon_sym_downcast] = ACTIONS(5354), - [anon_sym_LT_AT] = ACTIONS(5354), - [anon_sym_LT_AT_AT] = ACTIONS(5352), - [anon_sym_for] = ACTIONS(5354), - [anon_sym_while] = ACTIONS(5354), - [anon_sym_if] = ACTIONS(5354), - [anon_sym_fun] = ACTIONS(5354), - [anon_sym_try] = ACTIONS(5354), - [anon_sym_match] = ACTIONS(5354), - [anon_sym_match_BANG] = ACTIONS(5352), - [anon_sym_function] = ACTIONS(5354), - [anon_sym_use] = ACTIONS(5354), - [anon_sym_use_BANG] = ACTIONS(5352), - [anon_sym_do_BANG] = ACTIONS(5352), - [anon_sym_begin] = ACTIONS(5354), - [aux_sym_char_token1] = ACTIONS(5352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5354), - [anon_sym_DQUOTE] = ACTIONS(5354), - [anon_sym_AT_DQUOTE] = ACTIONS(5352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5352), - [sym_bool] = ACTIONS(5354), - [sym_unit] = ACTIONS(5352), - [anon_sym_LPAREN_PIPE] = ACTIONS(5354), - [sym_op_identifier] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_PLUS_DOT] = ACTIONS(5352), - [anon_sym_DASH_DOT] = ACTIONS(5352), - [anon_sym_PERCENT] = ACTIONS(5352), - [anon_sym_AMP_AMP] = ACTIONS(5352), - [anon_sym_TILDE] = ACTIONS(5352), - [aux_sym_prefix_op_token1] = ACTIONS(5352), - [sym_int] = ACTIONS(5354), - [sym_xint] = ACTIONS(5352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5352), - [anon_sym_POUNDload] = ACTIONS(5352), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5352), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5276), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2953] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2953), [sym_block_comment] = STATE(2953), [sym_line_comment] = STATE(2953), [sym_compiler_directive_decl] = STATE(2953), [sym_fsi_directive_decl] = STATE(2953), [sym_preproc_line] = STATE(2953), - [ts_builtin_sym_end] = ACTIONS(5356), - [sym_identifier] = ACTIONS(5358), - [anon_sym_namespace] = ACTIONS(5358), - [anon_sym_module] = ACTIONS(5358), - [anon_sym_open] = ACTIONS(5358), - [anon_sym_LBRACK_LT] = ACTIONS(5356), - [anon_sym_return] = ACTIONS(5358), - [anon_sym_type] = ACTIONS(5358), - [anon_sym_do] = ACTIONS(5358), - [anon_sym_let] = ACTIONS(5358), - [anon_sym_let_BANG] = ACTIONS(5356), - [anon_sym_LPAREN] = ACTIONS(5358), - [anon_sym_null] = ACTIONS(5358), - [anon_sym_AMP] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(5358), - [anon_sym_LBRACK_PIPE] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_LBRACE_PIPE] = ACTIONS(5356), - [anon_sym_new] = ACTIONS(5358), - [anon_sym_return_BANG] = ACTIONS(5356), - [anon_sym_yield] = ACTIONS(5358), - [anon_sym_yield_BANG] = ACTIONS(5356), - [anon_sym_lazy] = ACTIONS(5358), - [anon_sym_assert] = ACTIONS(5358), - [anon_sym_upcast] = ACTIONS(5358), - [anon_sym_downcast] = ACTIONS(5358), - [anon_sym_LT_AT] = ACTIONS(5358), - [anon_sym_LT_AT_AT] = ACTIONS(5356), - [anon_sym_for] = ACTIONS(5358), - [anon_sym_while] = ACTIONS(5358), - [anon_sym_if] = ACTIONS(5358), - [anon_sym_fun] = ACTIONS(5358), - [anon_sym_try] = ACTIONS(5358), - [anon_sym_match] = ACTIONS(5358), - [anon_sym_match_BANG] = ACTIONS(5356), - [anon_sym_function] = ACTIONS(5358), - [anon_sym_use] = ACTIONS(5358), - [anon_sym_use_BANG] = ACTIONS(5356), - [anon_sym_do_BANG] = ACTIONS(5356), - [anon_sym_begin] = ACTIONS(5358), - [aux_sym_char_token1] = ACTIONS(5356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5358), - [anon_sym_DQUOTE] = ACTIONS(5358), - [anon_sym_AT_DQUOTE] = ACTIONS(5356), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5356), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5356), - [sym_bool] = ACTIONS(5358), - [sym_unit] = ACTIONS(5356), - [anon_sym_LPAREN_PIPE] = ACTIONS(5358), - [sym_op_identifier] = ACTIONS(5356), - [anon_sym_PLUS] = ACTIONS(5358), - [anon_sym_DASH] = ACTIONS(5358), - [anon_sym_PLUS_DOT] = ACTIONS(5356), - [anon_sym_DASH_DOT] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5356), - [anon_sym_AMP_AMP] = ACTIONS(5356), - [anon_sym_TILDE] = ACTIONS(5356), - [aux_sym_prefix_op_token1] = ACTIONS(5356), - [sym_int] = ACTIONS(5358), - [sym_xint] = ACTIONS(5356), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5356), - [anon_sym_POUNDload] = ACTIONS(5356), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5356), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2954] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2954), [sym_block_comment] = STATE(2954), [sym_line_comment] = STATE(2954), [sym_compiler_directive_decl] = STATE(2954), [sym_fsi_directive_decl] = STATE(2954), [sym_preproc_line] = STATE(2954), - [sym_identifier] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_with] = ACTIONS(3021), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5280), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2955] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2955), [sym_block_comment] = STATE(2955), [sym_line_comment] = STATE(2955), [sym_compiler_directive_decl] = STATE(2955), [sym_fsi_directive_decl] = STATE(2955), [sym_preproc_line] = STATE(2955), - [sym_identifier] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3013), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2956] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2956), [sym_block_comment] = STATE(2956), [sym_line_comment] = STATE(2956), [sym_compiler_directive_decl] = STATE(2956), [sym_fsi_directive_decl] = STATE(2956), [sym_preproc_line] = STATE(2956), - [ts_builtin_sym_end] = ACTIONS(3785), - [sym_identifier] = ACTIONS(3787), - [anon_sym_namespace] = ACTIONS(3787), - [anon_sym_module] = ACTIONS(3787), - [anon_sym_open] = ACTIONS(3787), - [anon_sym_LBRACK_LT] = ACTIONS(3785), - [anon_sym_return] = ACTIONS(3787), - [anon_sym_type] = ACTIONS(3787), - [anon_sym_do] = ACTIONS(3787), - [anon_sym_let] = ACTIONS(3787), - [anon_sym_let_BANG] = ACTIONS(3785), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_null] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(3787), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LBRACK_PIPE] = ACTIONS(3785), - [anon_sym_LBRACE] = ACTIONS(3787), - [anon_sym_LBRACE_PIPE] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3787), - [anon_sym_return_BANG] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3787), - [anon_sym_yield_BANG] = ACTIONS(3785), - [anon_sym_lazy] = ACTIONS(3787), - [anon_sym_assert] = ACTIONS(3787), - [anon_sym_upcast] = ACTIONS(3787), - [anon_sym_downcast] = ACTIONS(3787), - [anon_sym_LT_AT] = ACTIONS(3787), - [anon_sym_LT_AT_AT] = ACTIONS(3785), - [anon_sym_for] = ACTIONS(3787), - [anon_sym_while] = ACTIONS(3787), - [anon_sym_if] = ACTIONS(3787), - [anon_sym_fun] = ACTIONS(3787), - [anon_sym_try] = ACTIONS(3787), - [anon_sym_match] = ACTIONS(3787), - [anon_sym_match_BANG] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(3787), - [anon_sym_use] = ACTIONS(3787), - [anon_sym_use_BANG] = ACTIONS(3785), - [anon_sym_do_BANG] = ACTIONS(3785), - [anon_sym_begin] = ACTIONS(3787), - [aux_sym_char_token1] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3787), - [anon_sym_DQUOTE] = ACTIONS(3787), - [anon_sym_AT_DQUOTE] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [sym_bool] = ACTIONS(3787), - [sym_unit] = ACTIONS(3785), - [anon_sym_LPAREN_PIPE] = ACTIONS(3787), - [sym_op_identifier] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_PLUS_DOT] = ACTIONS(3785), - [anon_sym_DASH_DOT] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_AMP_AMP] = ACTIONS(3785), - [anon_sym_TILDE] = ACTIONS(3785), - [aux_sym_prefix_op_token1] = ACTIONS(3785), - [sym_int] = ACTIONS(3787), - [sym_xint] = ACTIONS(3785), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3785), - [anon_sym_POUNDload] = ACTIONS(3785), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3785), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2957] = { + [sym_type_arguments] = STATE(2853), + [sym__object_members] = STATE(3275), + [sym_long_identifier] = STATE(2846), [sym_xml_doc] = STATE(2957), [sym_block_comment] = STATE(2957), [sym_line_comment] = STATE(2957), [sym_compiler_directive_decl] = STATE(2957), [sym_fsi_directive_decl] = STATE(2957), [sym_preproc_line] = STATE(2957), - [sym_identifier] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_LBRACK_LT] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2902), - [anon_sym_POUNDload] = ACTIONS(2902), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym__compound_type_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(4967), + [anon_sym_module] = ACTIONS(5190), + [anon_sym_open] = ACTIONS(5190), + [anon_sym_LBRACK_LT] = ACTIONS(5188), + [anon_sym_return] = ACTIONS(5190), + [anon_sym_type] = ACTIONS(5190), + [anon_sym_do] = ACTIONS(5190), + [anon_sym_and] = ACTIONS(5190), + [anon_sym_let] = ACTIONS(5190), + [anon_sym_let_BANG] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_null] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_LBRACK_PIPE] = ACTIONS(5188), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_LT_AT] = ACTIONS(5190), + [anon_sym_LT_AT_AT] = ACTIONS(5188), + [anon_sym_LBRACE_PIPE] = ACTIONS(5188), + [anon_sym_with] = ACTIONS(5286), + [anon_sym_new] = ACTIONS(5190), + [anon_sym_return_BANG] = ACTIONS(5188), + [anon_sym_yield] = ACTIONS(5190), + [anon_sym_yield_BANG] = ACTIONS(5188), + [anon_sym_lazy] = ACTIONS(5190), + [anon_sym_assert] = ACTIONS(5190), + [anon_sym_upcast] = ACTIONS(5190), + [anon_sym_downcast] = ACTIONS(5190), + [anon_sym_for] = ACTIONS(5190), + [anon_sym_while] = ACTIONS(5190), + [anon_sym_if] = ACTIONS(5190), + [anon_sym_fun] = ACTIONS(5190), + [anon_sym_DASH_GT] = ACTIONS(4969), + [anon_sym_try] = ACTIONS(5190), + [anon_sym_match] = ACTIONS(5190), + [anon_sym_match_BANG] = ACTIONS(5188), + [anon_sym_function] = ACTIONS(5190), + [anon_sym_use] = ACTIONS(5190), + [anon_sym_use_BANG] = ACTIONS(5188), + [anon_sym_do_BANG] = ACTIONS(5188), + [anon_sym_begin] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(4971), + [anon_sym_LT2] = ACTIONS(4973), + [anon_sym_LBRACK_RBRACK] = ACTIONS(4975), + [anon_sym_interface] = ACTIONS(5190), + [aux_sym_char_token1] = ACTIONS(5188), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5190), + [anon_sym_DQUOTE] = ACTIONS(5190), + [anon_sym_AT_DQUOTE] = ACTIONS(5188), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5188), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5188), + [sym_bool] = ACTIONS(5190), + [sym_unit] = ACTIONS(5188), + [anon_sym_LPAREN_PIPE] = ACTIONS(5190), + [sym_op_identifier] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_PLUS_DOT] = ACTIONS(5188), + [anon_sym_DASH_DOT] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_TILDE] = ACTIONS(5188), + [aux_sym_prefix_op_token1] = ACTIONS(5188), + [sym_int] = ACTIONS(5190), + [sym_xint] = ACTIONS(5188), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5188), + [anon_sym_POUNDload] = ACTIONS(5188), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5188), + [sym__dedent] = ACTIONS(5188), }, [2958] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2958), [sym_block_comment] = STATE(2958), [sym_line_comment] = STATE(2958), [sym_compiler_directive_decl] = STATE(2958), [sym_fsi_directive_decl] = STATE(2958), [sym_preproc_line] = STATE(2958), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), - [sym__dedent] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2959] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2959), [sym_block_comment] = STATE(2959), [sym_line_comment] = STATE(2959), [sym_compiler_directive_decl] = STATE(2959), [sym_fsi_directive_decl] = STATE(2959), [sym_preproc_line] = STATE(2959), - [sym_identifier] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_do] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_let_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_null] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_LBRACK_PIPE] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_LBRACE_PIPE] = ACTIONS(3031), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_return_BANG] = ACTIONS(3031), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_yield_BANG] = ACTIONS(3031), - [anon_sym_lazy] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_upcast] = ACTIONS(3029), - [anon_sym_downcast] = ACTIONS(3029), - [anon_sym_LT_AT] = ACTIONS(3029), - [anon_sym_LT_AT_AT] = ACTIONS(3031), - [anon_sym_COLON_GT] = ACTIONS(3031), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_fun] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_try] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_match_BANG] = ACTIONS(3031), - [anon_sym_function] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_use_BANG] = ACTIONS(3031), - [anon_sym_do_BANG] = ACTIONS(3031), - [anon_sym_begin] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LT2] = ACTIONS(3029), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3029), - [aux_sym_char_token1] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3029), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_AT_DQUOTE] = ACTIONS(3031), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3031), - [sym_bool] = ACTIONS(3029), - [sym_unit] = ACTIONS(3031), - [anon_sym_LPAREN_PIPE] = ACTIONS(3029), - [sym_op_identifier] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_PLUS_DOT] = ACTIONS(3031), - [anon_sym_DASH_DOT] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_TILDE] = ACTIONS(3031), - [aux_sym_prefix_op_token1] = ACTIONS(3031), - [sym_int] = ACTIONS(3029), - [sym_xint] = ACTIONS(3031), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3031), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2960] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_access_modifier] = STATE(3116), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5572), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2960), [sym_block_comment] = STATE(2960), [sym_line_comment] = STATE(2960), [sym_compiler_directive_decl] = STATE(2960), [sym_fsi_directive_decl] = STATE(2960), [sym_preproc_line] = STATE(2960), - [sym_identifier] = ACTIONS(5227), - [anon_sym_module] = ACTIONS(5227), - [anon_sym_open] = ACTIONS(5227), - [anon_sym_LBRACK_LT] = ACTIONS(5225), - [anon_sym_return] = ACTIONS(5227), - [anon_sym_type] = ACTIONS(5227), - [anon_sym_do] = ACTIONS(5227), - [anon_sym_and] = ACTIONS(5227), - [anon_sym_let] = ACTIONS(5227), - [anon_sym_let_BANG] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5227), - [anon_sym_null] = ACTIONS(5227), - [anon_sym_AMP] = ACTIONS(5227), - [anon_sym_LBRACK] = ACTIONS(5227), - [anon_sym_LBRACK_PIPE] = ACTIONS(5225), - [anon_sym_LBRACE] = ACTIONS(5227), - [anon_sym_LBRACE_PIPE] = ACTIONS(5225), - [anon_sym_new] = ACTIONS(5227), - [anon_sym_return_BANG] = ACTIONS(5225), - [anon_sym_yield] = ACTIONS(5227), - [anon_sym_yield_BANG] = ACTIONS(5225), - [anon_sym_lazy] = ACTIONS(5227), - [anon_sym_assert] = ACTIONS(5227), - [anon_sym_upcast] = ACTIONS(5227), - [anon_sym_downcast] = ACTIONS(5227), - [anon_sym_LT_AT] = ACTIONS(5227), - [anon_sym_LT_AT_AT] = ACTIONS(5225), - [anon_sym_for] = ACTIONS(5227), - [anon_sym_while] = ACTIONS(5227), - [anon_sym_if] = ACTIONS(5227), - [anon_sym_fun] = ACTIONS(5227), - [anon_sym_try] = ACTIONS(5227), - [anon_sym_match] = ACTIONS(5227), - [anon_sym_match_BANG] = ACTIONS(5225), - [anon_sym_function] = ACTIONS(5227), - [anon_sym_use] = ACTIONS(5227), - [anon_sym_use_BANG] = ACTIONS(5225), - [anon_sym_do_BANG] = ACTIONS(5225), - [anon_sym_begin] = ACTIONS(5227), - [aux_sym_char_token1] = ACTIONS(5225), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5227), - [anon_sym_DQUOTE] = ACTIONS(5227), - [anon_sym_AT_DQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5225), - [sym_bool] = ACTIONS(5227), - [sym_unit] = ACTIONS(5225), - [anon_sym_LPAREN_PIPE] = ACTIONS(5227), - [sym_op_identifier] = ACTIONS(5225), - [anon_sym_PLUS] = ACTIONS(5227), - [anon_sym_DASH] = ACTIONS(5227), - [anon_sym_PLUS_DOT] = ACTIONS(5225), - [anon_sym_DASH_DOT] = ACTIONS(5225), - [anon_sym_PERCENT] = ACTIONS(5225), - [anon_sym_AMP_AMP] = ACTIONS(5225), - [anon_sym_TILDE] = ACTIONS(5225), - [aux_sym_prefix_op_token1] = ACTIONS(5225), - [sym_int] = ACTIONS(5227), - [sym_xint] = ACTIONS(5225), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5225), - [anon_sym_POUNDload] = ACTIONS(5225), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5225), - [sym__dedent] = ACTIONS(5225), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2961] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2961), [sym_block_comment] = STATE(2961), [sym_line_comment] = STATE(2961), [sym_compiler_directive_decl] = STATE(2961), [sym_fsi_directive_decl] = STATE(2961), [sym_preproc_line] = STATE(2961), - [aux_sym__compound_type_repeat1] = STATE(2950), - [sym_identifier] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), - [sym__dedent] = ACTIONS(2972), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2962] = { [sym_xml_doc] = STATE(2962), @@ -352125,297 +359801,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2962), [sym_fsi_directive_decl] = STATE(2962), [sym_preproc_line] = STATE(2962), - [sym_identifier] = ACTIONS(3003), - [anon_sym_GT_RBRACK] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__newline] = ACTIONS(3005), + [sym_identifier] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2770), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2770), + [anon_sym_DASH_DOT] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2770), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(5294), + [anon_sym_uy] = ACTIONS(5296), + [anon_sym_s] = ACTIONS(5298), + [anon_sym_us] = ACTIONS(5300), + [anon_sym_l] = ACTIONS(5302), + [aux_sym_uint32_token1] = ACTIONS(5304), + [anon_sym_n] = ACTIONS(5306), + [anon_sym_un] = ACTIONS(5308), + [anon_sym_L] = ACTIONS(5310), + [aux_sym_uint64_token1] = ACTIONS(5312), + [aux_sym_bignum_token1] = ACTIONS(5314), + [aux_sym_decimal_token1] = ACTIONS(5316), + [anon_sym_DOT2] = ACTIONS(5318), + [aux_sym_float_token1] = ACTIONS(5320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), }, [2963] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2963), [sym_block_comment] = STATE(2963), [sym_line_comment] = STATE(2963), [sym_compiler_directive_decl] = STATE(2963), [sym_fsi_directive_decl] = STATE(2963), [sym_preproc_line] = STATE(2963), - [sym_identifier] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_let_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_null] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_LBRACE_PIPE] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_return_BANG] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_yield_BANG] = ACTIONS(2919), - [anon_sym_lazy] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_upcast] = ACTIONS(2917), - [anon_sym_downcast] = ACTIONS(2917), - [anon_sym_LT_AT] = ACTIONS(2917), - [anon_sym_LT_AT_AT] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_fun] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_match_BANG] = ACTIONS(2919), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_use] = ACTIONS(2917), - [anon_sym_use_BANG] = ACTIONS(2919), - [anon_sym_do_BANG] = ACTIONS(2919), - [anon_sym_begin] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_LT2] = ACTIONS(2917), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2917), - [aux_sym_char_token1] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [anon_sym_AT_DQUOTE] = ACTIONS(2919), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2919), - [sym_bool] = ACTIONS(2917), - [sym_unit] = ACTIONS(2919), - [anon_sym_LPAREN_PIPE] = ACTIONS(2917), - [sym_op_identifier] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [aux_sym_prefix_op_token1] = ACTIONS(2919), - [sym_int] = ACTIONS(2917), - [sym_xint] = ACTIONS(2919), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2919), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5322), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2964] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2964), [sym_block_comment] = STATE(2964), [sym_line_comment] = STATE(2964), [sym_compiler_directive_decl] = STATE(2964), [sym_fsi_directive_decl] = STATE(2964), [sym_preproc_line] = STATE(2964), - [sym_identifier] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_with] = ACTIONS(3007), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5324), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2965] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7780), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2965), [sym_block_comment] = STATE(2965), [sym_line_comment] = STATE(2965), [sym_compiler_directive_decl] = STATE(2965), [sym_fsi_directive_decl] = STATE(2965), [sym_preproc_line] = STATE(2965), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5360), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5326), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -352423,308 +360139,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2966] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2966), [sym_block_comment] = STATE(2966), [sym_line_comment] = STATE(2966), [sym_compiler_directive_decl] = STATE(2966), [sym_fsi_directive_decl] = STATE(2966), [sym_preproc_line] = STATE(2966), - [sym_identifier] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5328), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2967] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2967), [sym_block_comment] = STATE(2967), [sym_line_comment] = STATE(2967), [sym_compiler_directive_decl] = STATE(2967), [sym_fsi_directive_decl] = STATE(2967), [sym_preproc_line] = STATE(2967), - [ts_builtin_sym_end] = ACTIONS(5362), - [sym_identifier] = ACTIONS(5364), - [anon_sym_namespace] = ACTIONS(5364), - [anon_sym_module] = ACTIONS(5364), - [anon_sym_open] = ACTIONS(5364), - [anon_sym_LBRACK_LT] = ACTIONS(5362), - [anon_sym_return] = ACTIONS(5364), - [anon_sym_type] = ACTIONS(5364), - [anon_sym_do] = ACTIONS(5364), - [anon_sym_let] = ACTIONS(5364), - [anon_sym_let_BANG] = ACTIONS(5362), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_null] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(5364), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_LBRACK_PIPE] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_LBRACE_PIPE] = ACTIONS(5362), - [anon_sym_new] = ACTIONS(5364), - [anon_sym_return_BANG] = ACTIONS(5362), - [anon_sym_yield] = ACTIONS(5364), - [anon_sym_yield_BANG] = ACTIONS(5362), - [anon_sym_lazy] = ACTIONS(5364), - [anon_sym_assert] = ACTIONS(5364), - [anon_sym_upcast] = ACTIONS(5364), - [anon_sym_downcast] = ACTIONS(5364), - [anon_sym_LT_AT] = ACTIONS(5364), - [anon_sym_LT_AT_AT] = ACTIONS(5362), - [anon_sym_for] = ACTIONS(5364), - [anon_sym_while] = ACTIONS(5364), - [anon_sym_if] = ACTIONS(5364), - [anon_sym_fun] = ACTIONS(5364), - [anon_sym_try] = ACTIONS(5364), - [anon_sym_match] = ACTIONS(5364), - [anon_sym_match_BANG] = ACTIONS(5362), - [anon_sym_function] = ACTIONS(5364), - [anon_sym_use] = ACTIONS(5364), - [anon_sym_use_BANG] = ACTIONS(5362), - [anon_sym_do_BANG] = ACTIONS(5362), - [anon_sym_begin] = ACTIONS(5364), - [aux_sym_char_token1] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), - [anon_sym_DQUOTE] = ACTIONS(5364), - [anon_sym_AT_DQUOTE] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [sym_bool] = ACTIONS(5364), - [sym_unit] = ACTIONS(5362), - [anon_sym_LPAREN_PIPE] = ACTIONS(5364), - [sym_op_identifier] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5364), - [anon_sym_PLUS_DOT] = ACTIONS(5362), - [anon_sym_DASH_DOT] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_AMP_AMP] = ACTIONS(5362), - [anon_sym_TILDE] = ACTIONS(5362), - [aux_sym_prefix_op_token1] = ACTIONS(5362), - [sym_int] = ACTIONS(5364), - [sym_xint] = ACTIONS(5362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5362), - [anon_sym_POUNDload] = ACTIONS(5362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5362), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5330), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2968] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2968), [sym_block_comment] = STATE(2968), [sym_line_comment] = STATE(2968), [sym_compiler_directive_decl] = STATE(2968), [sym_fsi_directive_decl] = STATE(2968), [sym_preproc_line] = STATE(2968), - [ts_builtin_sym_end] = ACTIONS(5366), - [sym_identifier] = ACTIONS(5368), - [anon_sym_namespace] = ACTIONS(5368), - [anon_sym_module] = ACTIONS(5368), - [anon_sym_open] = ACTIONS(5368), - [anon_sym_LBRACK_LT] = ACTIONS(5366), - [anon_sym_return] = ACTIONS(5368), - [anon_sym_type] = ACTIONS(5368), - [anon_sym_do] = ACTIONS(5368), - [anon_sym_let] = ACTIONS(5368), - [anon_sym_let_BANG] = ACTIONS(5366), - [anon_sym_LPAREN] = ACTIONS(5368), - [anon_sym_null] = ACTIONS(5368), - [anon_sym_AMP] = ACTIONS(5368), - [anon_sym_LBRACK] = ACTIONS(5368), - [anon_sym_LBRACK_PIPE] = ACTIONS(5366), - [anon_sym_LBRACE] = ACTIONS(5368), - [anon_sym_LBRACE_PIPE] = ACTIONS(5366), - [anon_sym_new] = ACTIONS(5368), - [anon_sym_return_BANG] = ACTIONS(5366), - [anon_sym_yield] = ACTIONS(5368), - [anon_sym_yield_BANG] = ACTIONS(5366), - [anon_sym_lazy] = ACTIONS(5368), - [anon_sym_assert] = ACTIONS(5368), - [anon_sym_upcast] = ACTIONS(5368), - [anon_sym_downcast] = ACTIONS(5368), - [anon_sym_LT_AT] = ACTIONS(5368), - [anon_sym_LT_AT_AT] = ACTIONS(5366), - [anon_sym_for] = ACTIONS(5368), - [anon_sym_while] = ACTIONS(5368), - [anon_sym_if] = ACTIONS(5368), - [anon_sym_fun] = ACTIONS(5368), - [anon_sym_try] = ACTIONS(5368), - [anon_sym_match] = ACTIONS(5368), - [anon_sym_match_BANG] = ACTIONS(5366), - [anon_sym_function] = ACTIONS(5368), - [anon_sym_use] = ACTIONS(5368), - [anon_sym_use_BANG] = ACTIONS(5366), - [anon_sym_do_BANG] = ACTIONS(5366), - [anon_sym_begin] = ACTIONS(5368), - [aux_sym_char_token1] = ACTIONS(5366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5368), - [anon_sym_DQUOTE] = ACTIONS(5368), - [anon_sym_AT_DQUOTE] = ACTIONS(5366), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), - [sym_bool] = ACTIONS(5368), - [sym_unit] = ACTIONS(5366), - [anon_sym_LPAREN_PIPE] = ACTIONS(5368), - [sym_op_identifier] = ACTIONS(5366), - [anon_sym_PLUS] = ACTIONS(5368), - [anon_sym_DASH] = ACTIONS(5368), - [anon_sym_PLUS_DOT] = ACTIONS(5366), - [anon_sym_DASH_DOT] = ACTIONS(5366), - [anon_sym_PERCENT] = ACTIONS(5366), - [anon_sym_AMP_AMP] = ACTIONS(5366), - [anon_sym_TILDE] = ACTIONS(5366), - [aux_sym_prefix_op_token1] = ACTIONS(5366), - [sym_int] = ACTIONS(5368), - [sym_xint] = ACTIONS(5366), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2949), + [sym_identifier] = ACTIONS(4643), + [anon_sym_EQ] = ACTIONS(5332), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5366), - [anon_sym_POUNDload] = ACTIONS(5366), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5366), }, [2969] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2969), [sym_block_comment] = STATE(2969), [sym_line_comment] = STATE(2969), [sym_compiler_directive_decl] = STATE(2969), [sym_fsi_directive_decl] = STATE(2969), [sym_preproc_line] = STATE(2969), - [ts_builtin_sym_end] = ACTIONS(5362), - [sym_identifier] = ACTIONS(5364), - [anon_sym_namespace] = ACTIONS(5364), - [anon_sym_module] = ACTIONS(5364), - [anon_sym_open] = ACTIONS(5364), - [anon_sym_LBRACK_LT] = ACTIONS(5362), - [anon_sym_return] = ACTIONS(5364), - [anon_sym_type] = ACTIONS(5364), - [anon_sym_do] = ACTIONS(5364), - [anon_sym_let] = ACTIONS(5364), - [anon_sym_let_BANG] = ACTIONS(5362), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_null] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(5364), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_LBRACK_PIPE] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_LBRACE_PIPE] = ACTIONS(5362), - [anon_sym_new] = ACTIONS(5364), - [anon_sym_return_BANG] = ACTIONS(5362), - [anon_sym_yield] = ACTIONS(5364), - [anon_sym_yield_BANG] = ACTIONS(5362), - [anon_sym_lazy] = ACTIONS(5364), - [anon_sym_assert] = ACTIONS(5364), - [anon_sym_upcast] = ACTIONS(5364), - [anon_sym_downcast] = ACTIONS(5364), - [anon_sym_LT_AT] = ACTIONS(5364), - [anon_sym_LT_AT_AT] = ACTIONS(5362), - [anon_sym_for] = ACTIONS(5364), - [anon_sym_while] = ACTIONS(5364), - [anon_sym_if] = ACTIONS(5364), - [anon_sym_fun] = ACTIONS(5364), - [anon_sym_try] = ACTIONS(5364), - [anon_sym_match] = ACTIONS(5364), - [anon_sym_match_BANG] = ACTIONS(5362), - [anon_sym_function] = ACTIONS(5364), - [anon_sym_use] = ACTIONS(5364), - [anon_sym_use_BANG] = ACTIONS(5362), - [anon_sym_do_BANG] = ACTIONS(5362), - [anon_sym_begin] = ACTIONS(5364), - [aux_sym_char_token1] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), - [anon_sym_DQUOTE] = ACTIONS(5364), - [anon_sym_AT_DQUOTE] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [sym_bool] = ACTIONS(5364), - [sym_unit] = ACTIONS(5362), - [anon_sym_LPAREN_PIPE] = ACTIONS(5364), - [sym_op_identifier] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5364), - [anon_sym_PLUS_DOT] = ACTIONS(5362), - [anon_sym_DASH_DOT] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_AMP_AMP] = ACTIONS(5362), - [anon_sym_TILDE] = ACTIONS(5362), - [aux_sym_prefix_op_token1] = ACTIONS(5362), - [sym_int] = ACTIONS(5364), - [sym_xint] = ACTIONS(5362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5362), - [anon_sym_POUNDload] = ACTIONS(5362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5362), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2952), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2970] = { [sym_xml_doc] = STATE(2970), @@ -352733,145 +360488,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2970), [sym_fsi_directive_decl] = STATE(2970), [sym_preproc_line] = STATE(2970), - [sym_identifier] = ACTIONS(5241), - [anon_sym_module] = ACTIONS(5241), - [anon_sym_open] = ACTIONS(5241), - [anon_sym_LBRACK_LT] = ACTIONS(5239), - [anon_sym_return] = ACTIONS(5241), - [anon_sym_type] = ACTIONS(5241), - [anon_sym_do] = ACTIONS(5241), - [anon_sym_and] = ACTIONS(5241), - [anon_sym_let] = ACTIONS(5241), - [anon_sym_let_BANG] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_null] = ACTIONS(5241), - [anon_sym_AMP] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_LBRACK_PIPE] = ACTIONS(5239), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_LBRACE_PIPE] = ACTIONS(5239), - [anon_sym_new] = ACTIONS(5241), - [anon_sym_return_BANG] = ACTIONS(5239), - [anon_sym_yield] = ACTIONS(5241), - [anon_sym_yield_BANG] = ACTIONS(5239), - [anon_sym_lazy] = ACTIONS(5241), - [anon_sym_assert] = ACTIONS(5241), - [anon_sym_upcast] = ACTIONS(5241), - [anon_sym_downcast] = ACTIONS(5241), - [anon_sym_LT_AT] = ACTIONS(5241), - [anon_sym_LT_AT_AT] = ACTIONS(5239), - [anon_sym_for] = ACTIONS(5241), - [anon_sym_while] = ACTIONS(5241), - [anon_sym_if] = ACTIONS(5241), - [anon_sym_fun] = ACTIONS(5241), - [anon_sym_try] = ACTIONS(5241), - [anon_sym_match] = ACTIONS(5241), - [anon_sym_match_BANG] = ACTIONS(5239), - [anon_sym_function] = ACTIONS(5241), - [anon_sym_use] = ACTIONS(5241), - [anon_sym_use_BANG] = ACTIONS(5239), - [anon_sym_do_BANG] = ACTIONS(5239), - [anon_sym_begin] = ACTIONS(5241), - [aux_sym_char_token1] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5241), - [anon_sym_DQUOTE] = ACTIONS(5241), - [anon_sym_AT_DQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5239), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5239), - [sym_bool] = ACTIONS(5241), - [sym_unit] = ACTIONS(5239), - [anon_sym_LPAREN_PIPE] = ACTIONS(5241), - [sym_op_identifier] = ACTIONS(5239), - [anon_sym_PLUS] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [anon_sym_PLUS_DOT] = ACTIONS(5239), - [anon_sym_DASH_DOT] = ACTIONS(5239), - [anon_sym_PERCENT] = ACTIONS(5239), - [anon_sym_AMP_AMP] = ACTIONS(5239), - [anon_sym_TILDE] = ACTIONS(5239), - [aux_sym_prefix_op_token1] = ACTIONS(5239), - [sym_int] = ACTIONS(5241), - [sym_xint] = ACTIONS(5239), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5239), - [anon_sym_POUNDload] = ACTIONS(5239), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5239), - [sym__dedent] = ACTIONS(5239), + [ts_builtin_sym_end] = ACTIONS(5334), + [sym_identifier] = ACTIONS(5336), + [anon_sym_namespace] = ACTIONS(5336), + [anon_sym_module] = ACTIONS(5336), + [anon_sym_open] = ACTIONS(5336), + [anon_sym_LBRACK_LT] = ACTIONS(5334), + [anon_sym_return] = ACTIONS(5336), + [anon_sym_type] = ACTIONS(5336), + [anon_sym_do] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_let_BANG] = ACTIONS(5334), + [aux_sym_access_modifier_token1] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_null] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_LBRACK_PIPE] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_LT_AT] = ACTIONS(5336), + [anon_sym_LT_AT_AT] = ACTIONS(5334), + [anon_sym_LBRACE_PIPE] = ACTIONS(5334), + [anon_sym_with] = ACTIONS(5338), + [anon_sym_new] = ACTIONS(5336), + [anon_sym_return_BANG] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5336), + [anon_sym_yield_BANG] = ACTIONS(5334), + [anon_sym_lazy] = ACTIONS(5336), + [anon_sym_assert] = ACTIONS(5336), + [anon_sym_upcast] = ACTIONS(5336), + [anon_sym_downcast] = ACTIONS(5336), + [anon_sym_for] = ACTIONS(5336), + [anon_sym_while] = ACTIONS(5336), + [anon_sym_if] = ACTIONS(5336), + [anon_sym_fun] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5336), + [anon_sym_match] = ACTIONS(5336), + [anon_sym_match_BANG] = ACTIONS(5334), + [anon_sym_function] = ACTIONS(5336), + [anon_sym_use] = ACTIONS(5336), + [anon_sym_use_BANG] = ACTIONS(5334), + [anon_sym_do_BANG] = ACTIONS(5334), + [anon_sym_begin] = ACTIONS(5336), + [anon_sym_default] = ACTIONS(5336), + [anon_sym_static] = ACTIONS(5336), + [anon_sym_member] = ACTIONS(5336), + [anon_sym_abstract] = ACTIONS(5336), + [anon_sym_override] = ACTIONS(5336), + [anon_sym_val] = ACTIONS(5336), + [aux_sym_char_token1] = ACTIONS(5334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [anon_sym_AT_DQUOTE] = ACTIONS(5334), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5334), + [sym_bool] = ACTIONS(5336), + [sym_unit] = ACTIONS(5334), + [anon_sym_LPAREN_PIPE] = ACTIONS(5336), + [sym_op_identifier] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_PLUS_DOT] = ACTIONS(5334), + [anon_sym_DASH_DOT] = ACTIONS(5334), + [anon_sym_PERCENT] = ACTIONS(5334), + [anon_sym_AMP_AMP] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5334), + [aux_sym_prefix_op_token1] = ACTIONS(5334), + [sym_int] = ACTIONS(5336), + [sym_xint] = ACTIONS(5334), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5334), + [anon_sym_POUNDload] = ACTIONS(5334), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5334), }, [2971] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7631), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2230), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2971), [sym_block_comment] = STATE(2971), [sym_line_comment] = STATE(2971), [sym_compiler_directive_decl] = STATE(2971), [sym_fsi_directive_decl] = STATE(2971), [sym_preproc_line] = STATE(2971), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5370), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -352879,75 +360652,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2972] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7448), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1677), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2972), [sym_block_comment] = STATE(2972), [sym_line_comment] = STATE(2972), [sym_compiler_directive_decl] = STATE(2972), [sym_fsi_directive_decl] = STATE(2972), [sym_preproc_line] = STATE(2972), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5372), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -352955,227 +360737,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2973] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2973), [sym_block_comment] = STATE(2973), [sym_line_comment] = STATE(2973), [sym_compiler_directive_decl] = STATE(2973), [sym_fsi_directive_decl] = STATE(2973), [sym_preproc_line] = STATE(2973), - [sym_identifier] = ACTIONS(5251), - [anon_sym_module] = ACTIONS(5251), - [anon_sym_open] = ACTIONS(5251), - [anon_sym_LBRACK_LT] = ACTIONS(5249), - [anon_sym_return] = ACTIONS(5251), - [anon_sym_type] = ACTIONS(5251), - [anon_sym_do] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_let] = ACTIONS(5251), - [anon_sym_let_BANG] = ACTIONS(5249), - [anon_sym_LPAREN] = ACTIONS(5251), - [anon_sym_null] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_LBRACK] = ACTIONS(5251), - [anon_sym_LBRACK_PIPE] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5251), - [anon_sym_LBRACE_PIPE] = ACTIONS(5249), - [anon_sym_new] = ACTIONS(5251), - [anon_sym_return_BANG] = ACTIONS(5249), - [anon_sym_yield] = ACTIONS(5251), - [anon_sym_yield_BANG] = ACTIONS(5249), - [anon_sym_lazy] = ACTIONS(5251), - [anon_sym_assert] = ACTIONS(5251), - [anon_sym_upcast] = ACTIONS(5251), - [anon_sym_downcast] = ACTIONS(5251), - [anon_sym_LT_AT] = ACTIONS(5251), - [anon_sym_LT_AT_AT] = ACTIONS(5249), - [anon_sym_for] = ACTIONS(5251), - [anon_sym_while] = ACTIONS(5251), - [anon_sym_if] = ACTIONS(5251), - [anon_sym_fun] = ACTIONS(5251), - [anon_sym_try] = ACTIONS(5251), - [anon_sym_match] = ACTIONS(5251), - [anon_sym_match_BANG] = ACTIONS(5249), - [anon_sym_function] = ACTIONS(5251), - [anon_sym_use] = ACTIONS(5251), - [anon_sym_use_BANG] = ACTIONS(5249), - [anon_sym_do_BANG] = ACTIONS(5249), - [anon_sym_begin] = ACTIONS(5251), - [aux_sym_char_token1] = ACTIONS(5249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5251), - [anon_sym_DQUOTE] = ACTIONS(5251), - [anon_sym_AT_DQUOTE] = ACTIONS(5249), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5249), - [sym_bool] = ACTIONS(5251), - [sym_unit] = ACTIONS(5249), - [anon_sym_LPAREN_PIPE] = ACTIONS(5251), - [sym_op_identifier] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS_DOT] = ACTIONS(5249), - [anon_sym_DASH_DOT] = ACTIONS(5249), - [anon_sym_PERCENT] = ACTIONS(5249), - [anon_sym_AMP_AMP] = ACTIONS(5249), - [anon_sym_TILDE] = ACTIONS(5249), - [aux_sym_prefix_op_token1] = ACTIONS(5249), - [sym_int] = ACTIONS(5251), - [sym_xint] = ACTIONS(5249), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5249), - [anon_sym_POUNDload] = ACTIONS(5249), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5249), - [sym__dedent] = ACTIONS(5249), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2956), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2974] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(6671), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), [sym_xml_doc] = STATE(2974), [sym_block_comment] = STATE(2974), [sym_line_comment] = STATE(2974), [sym_compiler_directive_decl] = STATE(2974), [sym_fsi_directive_decl] = STATE(2974), [sym_preproc_line] = STATE(2974), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5374), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [ts_builtin_sym_end] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5342), + [anon_sym_namespace] = ACTIONS(5342), + [anon_sym_module] = ACTIONS(5342), + [anon_sym_open] = ACTIONS(5342), + [anon_sym_LBRACK_LT] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_do] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_let_BANG] = ACTIONS(5340), + [aux_sym_access_modifier_token1] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5344), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_LBRACK_PIPE] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_LT_AT] = ACTIONS(5342), + [anon_sym_LT_AT_AT] = ACTIONS(5340), + [anon_sym_LBRACE_PIPE] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5342), + [anon_sym_return_BANG] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_yield_BANG] = ACTIONS(5340), + [anon_sym_lazy] = ACTIONS(5342), + [anon_sym_assert] = ACTIONS(5342), + [anon_sym_upcast] = ACTIONS(5342), + [anon_sym_downcast] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_fun] = ACTIONS(5342), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_match_BANG] = ACTIONS(5340), + [anon_sym_function] = ACTIONS(5342), + [anon_sym_use] = ACTIONS(5342), + [anon_sym_use_BANG] = ACTIONS(5340), + [anon_sym_do_BANG] = ACTIONS(5340), + [anon_sym_begin] = ACTIONS(5342), + [anon_sym_default] = ACTIONS(5342), + [anon_sym_static] = ACTIONS(5342), + [anon_sym_member] = ACTIONS(5342), + [anon_sym_abstract] = ACTIONS(5342), + [anon_sym_override] = ACTIONS(5342), + [anon_sym_val] = ACTIONS(5342), + [aux_sym_char_token1] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5342), + [anon_sym_DQUOTE] = ACTIONS(5342), + [anon_sym_AT_DQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [sym_bool] = ACTIONS(5342), + [sym_unit] = ACTIONS(5340), + [anon_sym_LPAREN_PIPE] = ACTIONS(5342), + [sym_op_identifier] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS_DOT] = ACTIONS(5340), + [anon_sym_DASH_DOT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_AMP_AMP] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5340), + [aux_sym_prefix_op_token1] = ACTIONS(5340), + [sym_int] = ACTIONS(5342), + [sym_xint] = ACTIONS(5340), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5340), + [anon_sym_POUNDload] = ACTIONS(5340), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5340), }, [2975] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(6856), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2144), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2975), [sym_block_comment] = STATE(2975), [sym_line_comment] = STATE(2975), [sym_compiler_directive_decl] = STATE(2975), [sym_fsi_directive_decl] = STATE(2975), [sym_preproc_line] = STATE(2975), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5376), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -353189,74 +360998,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2976), [sym_fsi_directive_decl] = STATE(2976), [sym_preproc_line] = STATE(2976), - [aux_sym_long_identifier_repeat1] = STATE(2944), - [sym_identifier] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_let_BANG] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_null] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2966), - [anon_sym_LBRACK_PIPE] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_LBRACE_PIPE] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_return_BANG] = ACTIONS(2968), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_yield_BANG] = ACTIONS(2968), - [anon_sym_lazy] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_upcast] = ACTIONS(2966), - [anon_sym_downcast] = ACTIONS(2966), - [anon_sym_LT_AT] = ACTIONS(2966), - [anon_sym_LT_AT_AT] = ACTIONS(2968), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_fun] = ACTIONS(2966), - [anon_sym_DASH_GT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_match_BANG] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(5339), - [anon_sym_use] = ACTIONS(2966), - [anon_sym_use_BANG] = ACTIONS(2968), - [anon_sym_do_BANG] = ACTIONS(2968), - [anon_sym_begin] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_LT2] = ACTIONS(2966), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2968), - [aux_sym_char_token1] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2966), - [anon_sym_DQUOTE] = ACTIONS(2966), - [anon_sym_AT_DQUOTE] = ACTIONS(2968), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2968), - [sym_bool] = ACTIONS(2966), - [sym_unit] = ACTIONS(2968), - [anon_sym_LPAREN_PIPE] = ACTIONS(2966), - [sym_op_identifier] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_PLUS_DOT] = ACTIONS(2968), - [anon_sym_DASH_DOT] = ACTIONS(2968), - [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_AMP_AMP] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2968), - [aux_sym_prefix_op_token1] = ACTIONS(2968), - [sym_int] = ACTIONS(2966), - [sym_xint] = ACTIONS(2968), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2968), + [ts_builtin_sym_end] = ACTIONS(5340), + [sym_identifier] = ACTIONS(5342), + [anon_sym_namespace] = ACTIONS(5342), + [anon_sym_module] = ACTIONS(5342), + [anon_sym_open] = ACTIONS(5342), + [anon_sym_LBRACK_LT] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_do] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_let_BANG] = ACTIONS(5340), + [aux_sym_access_modifier_token1] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5346), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_LBRACK_PIPE] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_LT_AT] = ACTIONS(5342), + [anon_sym_LT_AT_AT] = ACTIONS(5340), + [anon_sym_LBRACE_PIPE] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5342), + [anon_sym_return_BANG] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_yield_BANG] = ACTIONS(5340), + [anon_sym_lazy] = ACTIONS(5342), + [anon_sym_assert] = ACTIONS(5342), + [anon_sym_upcast] = ACTIONS(5342), + [anon_sym_downcast] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_fun] = ACTIONS(5342), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_match_BANG] = ACTIONS(5340), + [anon_sym_function] = ACTIONS(5342), + [anon_sym_use] = ACTIONS(5342), + [anon_sym_use_BANG] = ACTIONS(5340), + [anon_sym_do_BANG] = ACTIONS(5340), + [anon_sym_begin] = ACTIONS(5342), + [anon_sym_default] = ACTIONS(5342), + [anon_sym_static] = ACTIONS(5342), + [anon_sym_member] = ACTIONS(5342), + [anon_sym_abstract] = ACTIONS(5342), + [anon_sym_override] = ACTIONS(5342), + [anon_sym_val] = ACTIONS(5342), + [aux_sym_char_token1] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5342), + [anon_sym_DQUOTE] = ACTIONS(5342), + [anon_sym_AT_DQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [sym_bool] = ACTIONS(5342), + [sym_unit] = ACTIONS(5340), + [anon_sym_LPAREN_PIPE] = ACTIONS(5342), + [sym_op_identifier] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS_DOT] = ACTIONS(5340), + [anon_sym_DASH_DOT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_AMP_AMP] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5340), + [aux_sym_prefix_op_token1] = ACTIONS(5340), + [sym_int] = ACTIONS(5342), + [sym_xint] = ACTIONS(5340), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5340), + [anon_sym_POUNDload] = ACTIONS(5340), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5340), }, [2977] = { [sym_xml_doc] = STATE(2977), @@ -353265,145 +361083,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2977), [sym_fsi_directive_decl] = STATE(2977), [sym_preproc_line] = STATE(2977), - [sym_identifier] = ACTIONS(5245), - [anon_sym_module] = ACTIONS(5245), - [anon_sym_open] = ACTIONS(5245), - [anon_sym_LBRACK_LT] = ACTIONS(5243), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_type] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_and] = ACTIONS(5245), - [anon_sym_let] = ACTIONS(5245), - [anon_sym_let_BANG] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_null] = ACTIONS(5245), - [anon_sym_AMP] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_LBRACK_PIPE] = ACTIONS(5243), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_LBRACE_PIPE] = ACTIONS(5243), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_return_BANG] = ACTIONS(5243), - [anon_sym_yield] = ACTIONS(5245), - [anon_sym_yield_BANG] = ACTIONS(5243), - [anon_sym_lazy] = ACTIONS(5245), - [anon_sym_assert] = ACTIONS(5245), - [anon_sym_upcast] = ACTIONS(5245), - [anon_sym_downcast] = ACTIONS(5245), - [anon_sym_LT_AT] = ACTIONS(5245), - [anon_sym_LT_AT_AT] = ACTIONS(5243), - [anon_sym_for] = ACTIONS(5245), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_if] = ACTIONS(5245), - [anon_sym_fun] = ACTIONS(5245), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_match] = ACTIONS(5245), - [anon_sym_match_BANG] = ACTIONS(5243), - [anon_sym_function] = ACTIONS(5245), - [anon_sym_use] = ACTIONS(5245), - [anon_sym_use_BANG] = ACTIONS(5243), - [anon_sym_do_BANG] = ACTIONS(5243), - [anon_sym_begin] = ACTIONS(5245), - [aux_sym_char_token1] = ACTIONS(5243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5245), - [anon_sym_DQUOTE] = ACTIONS(5245), - [anon_sym_AT_DQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5243), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5243), - [sym_bool] = ACTIONS(5245), - [sym_unit] = ACTIONS(5243), - [anon_sym_LPAREN_PIPE] = ACTIONS(5245), - [sym_op_identifier] = ACTIONS(5243), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_PLUS_DOT] = ACTIONS(5243), - [anon_sym_DASH_DOT] = ACTIONS(5243), - [anon_sym_PERCENT] = ACTIONS(5243), - [anon_sym_AMP_AMP] = ACTIONS(5243), - [anon_sym_TILDE] = ACTIONS(5243), - [aux_sym_prefix_op_token1] = ACTIONS(5243), - [sym_int] = ACTIONS(5245), - [sym_xint] = ACTIONS(5243), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5243), - [anon_sym_POUNDload] = ACTIONS(5243), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5243), - [sym__dedent] = ACTIONS(5243), + [ts_builtin_sym_end] = ACTIONS(5348), + [sym_identifier] = ACTIONS(5350), + [anon_sym_namespace] = ACTIONS(5350), + [anon_sym_module] = ACTIONS(5350), + [anon_sym_open] = ACTIONS(5350), + [anon_sym_LBRACK_LT] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_do] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_let] = ACTIONS(5350), + [anon_sym_let_BANG] = ACTIONS(5348), + [aux_sym_access_modifier_token1] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_LBRACK_PIPE] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_LT_AT] = ACTIONS(5350), + [anon_sym_LT_AT_AT] = ACTIONS(5348), + [anon_sym_LBRACE_PIPE] = ACTIONS(5348), + [anon_sym_new] = ACTIONS(5350), + [anon_sym_return_BANG] = ACTIONS(5348), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_yield_BANG] = ACTIONS(5348), + [anon_sym_lazy] = ACTIONS(5350), + [anon_sym_assert] = ACTIONS(5350), + [anon_sym_upcast] = ACTIONS(5350), + [anon_sym_downcast] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_fun] = ACTIONS(5350), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_match_BANG] = ACTIONS(5348), + [anon_sym_function] = ACTIONS(5350), + [anon_sym_use] = ACTIONS(5350), + [anon_sym_use_BANG] = ACTIONS(5348), + [anon_sym_do_BANG] = ACTIONS(5348), + [anon_sym_begin] = ACTIONS(5350), + [anon_sym_default] = ACTIONS(5350), + [anon_sym_static] = ACTIONS(5350), + [anon_sym_member] = ACTIONS(5350), + [anon_sym_abstract] = ACTIONS(5350), + [anon_sym_override] = ACTIONS(5350), + [anon_sym_val] = ACTIONS(5350), + [aux_sym_char_token1] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), + [anon_sym_DQUOTE] = ACTIONS(5350), + [anon_sym_AT_DQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [sym_bool] = ACTIONS(5350), + [sym_unit] = ACTIONS(5348), + [anon_sym_LPAREN_PIPE] = ACTIONS(5350), + [sym_op_identifier] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_PLUS_DOT] = ACTIONS(5348), + [anon_sym_DASH_DOT] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_TILDE] = ACTIONS(5348), + [aux_sym_prefix_op_token1] = ACTIONS(5348), + [sym_int] = ACTIONS(5350), + [sym_xint] = ACTIONS(5348), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5348), + [anon_sym_POUNDload] = ACTIONS(5348), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5348), }, [2978] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(6943), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1007), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2978), [sym_block_comment] = STATE(2978), [sym_line_comment] = STATE(2978), [sym_compiler_directive_decl] = STATE(2978), [sym_fsi_directive_decl] = STATE(2978), [sym_preproc_line] = STATE(2978), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5378), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -353411,151 +361247,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2979] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2155), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2979), [sym_block_comment] = STATE(2979), [sym_line_comment] = STATE(2979), [sym_compiler_directive_decl] = STATE(2979), [sym_fsi_directive_decl] = STATE(2979), [sym_preproc_line] = STATE(2979), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_open] = ACTIONS(2160), - [anon_sym_LBRACK_LT] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACK_PIPE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_return_BANG] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_yield_BANG] = ACTIONS(2158), - [anon_sym_lazy] = ACTIONS(2160), - [anon_sym_assert] = ACTIONS(2160), - [anon_sym_upcast] = ACTIONS(2160), - [anon_sym_downcast] = ACTIONS(2160), - [anon_sym_LT_AT] = ACTIONS(2160), - [anon_sym_LT_AT_AT] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_fun] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_match_BANG] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_use_BANG] = ACTIONS(2158), - [anon_sym_do_BANG] = ACTIONS(2158), - [anon_sym_begin] = ACTIONS(2160), - [aux_sym_char_token1] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [sym_bool] = ACTIONS(2160), - [sym_unit] = ACTIONS(2158), - [anon_sym_LPAREN_PIPE] = ACTIONS(2160), - [sym_op_identifier] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_DOT] = ACTIONS(2158), - [anon_sym_DASH_DOT] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [aux_sym_prefix_op_token1] = ACTIONS(2158), - [sym_int] = ACTIONS(2160), - [sym_xint] = ACTIONS(2158), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2158), - [anon_sym_POUNDload] = ACTIONS(2158), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2158), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2980] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7264), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6434), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2980), [sym_block_comment] = STATE(2980), [sym_line_comment] = STATE(2980), [sym_compiler_directive_decl] = STATE(2980), [sym_fsi_directive_decl] = STATE(2980), [sym_preproc_line] = STATE(2980), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5380), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -353563,80 +361417,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2981] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1521), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2981), [sym_block_comment] = STATE(2981), [sym_line_comment] = STATE(2981), [sym_compiler_directive_decl] = STATE(2981), [sym_fsi_directive_decl] = STATE(2981), [sym_preproc_line] = STATE(2981), - [sym_identifier] = ACTIONS(3033), - [anon_sym_GT_RBRACK] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__newline] = ACTIONS(3039), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2982] = { [sym_xml_doc] = STATE(2982), @@ -353645,753 +361508,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(2982), [sym_fsi_directive_decl] = STATE(2982), [sym_preproc_line] = STATE(2982), - [ts_builtin_sym_end] = ACTIONS(5382), - [sym_identifier] = ACTIONS(5384), - [anon_sym_namespace] = ACTIONS(5384), - [anon_sym_module] = ACTIONS(5384), - [anon_sym_open] = ACTIONS(5384), - [anon_sym_LBRACK_LT] = ACTIONS(5382), - [anon_sym_return] = ACTIONS(5384), - [anon_sym_type] = ACTIONS(5384), - [anon_sym_do] = ACTIONS(5384), - [anon_sym_let] = ACTIONS(5384), - [anon_sym_let_BANG] = ACTIONS(5382), - [anon_sym_LPAREN] = ACTIONS(5384), - [anon_sym_null] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_LBRACK_PIPE] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_LBRACE_PIPE] = ACTIONS(5382), - [anon_sym_new] = ACTIONS(5384), - [anon_sym_return_BANG] = ACTIONS(5382), - [anon_sym_yield] = ACTIONS(5384), - [anon_sym_yield_BANG] = ACTIONS(5382), - [anon_sym_lazy] = ACTIONS(5384), - [anon_sym_assert] = ACTIONS(5384), - [anon_sym_upcast] = ACTIONS(5384), - [anon_sym_downcast] = ACTIONS(5384), - [anon_sym_LT_AT] = ACTIONS(5384), - [anon_sym_LT_AT_AT] = ACTIONS(5382), - [anon_sym_for] = ACTIONS(5384), - [anon_sym_while] = ACTIONS(5384), - [anon_sym_if] = ACTIONS(5384), - [anon_sym_fun] = ACTIONS(5384), - [anon_sym_try] = ACTIONS(5384), - [anon_sym_match] = ACTIONS(5384), - [anon_sym_match_BANG] = ACTIONS(5382), - [anon_sym_function] = ACTIONS(5384), - [anon_sym_use] = ACTIONS(5384), - [anon_sym_use_BANG] = ACTIONS(5382), - [anon_sym_do_BANG] = ACTIONS(5382), - [anon_sym_begin] = ACTIONS(5384), - [aux_sym_char_token1] = ACTIONS(5382), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5384), - [anon_sym_DQUOTE] = ACTIONS(5384), - [anon_sym_AT_DQUOTE] = ACTIONS(5382), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5382), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5382), - [sym_bool] = ACTIONS(5384), - [sym_unit] = ACTIONS(5382), - [anon_sym_LPAREN_PIPE] = ACTIONS(5384), - [sym_op_identifier] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5384), - [anon_sym_PLUS_DOT] = ACTIONS(5382), - [anon_sym_DASH_DOT] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5382), - [anon_sym_AMP_AMP] = ACTIONS(5382), - [anon_sym_TILDE] = ACTIONS(5382), - [aux_sym_prefix_op_token1] = ACTIONS(5382), - [sym_int] = ACTIONS(5384), - [sym_xint] = ACTIONS(5382), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5382), - [anon_sym_POUNDload] = ACTIONS(5382), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5382), + [ts_builtin_sym_end] = ACTIONS(5354), + [sym_identifier] = ACTIONS(5356), + [anon_sym_namespace] = ACTIONS(5356), + [anon_sym_module] = ACTIONS(5356), + [anon_sym_open] = ACTIONS(5356), + [anon_sym_LBRACK_LT] = ACTIONS(5354), + [anon_sym_return] = ACTIONS(5356), + [anon_sym_type] = ACTIONS(5356), + [anon_sym_do] = ACTIONS(5356), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_let_BANG] = ACTIONS(5354), + [aux_sym_access_modifier_token1] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_null] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_LBRACK_PIPE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_LT_AT] = ACTIONS(5356), + [anon_sym_LT_AT_AT] = ACTIONS(5354), + [anon_sym_LBRACE_PIPE] = ACTIONS(5354), + [anon_sym_with] = ACTIONS(5358), + [anon_sym_new] = ACTIONS(5356), + [anon_sym_return_BANG] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5356), + [anon_sym_yield_BANG] = ACTIONS(5354), + [anon_sym_lazy] = ACTIONS(5356), + [anon_sym_assert] = ACTIONS(5356), + [anon_sym_upcast] = ACTIONS(5356), + [anon_sym_downcast] = ACTIONS(5356), + [anon_sym_for] = ACTIONS(5356), + [anon_sym_while] = ACTIONS(5356), + [anon_sym_if] = ACTIONS(5356), + [anon_sym_fun] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5356), + [anon_sym_match] = ACTIONS(5356), + [anon_sym_match_BANG] = ACTIONS(5354), + [anon_sym_function] = ACTIONS(5356), + [anon_sym_use] = ACTIONS(5356), + [anon_sym_use_BANG] = ACTIONS(5354), + [anon_sym_do_BANG] = ACTIONS(5354), + [anon_sym_begin] = ACTIONS(5356), + [anon_sym_default] = ACTIONS(5356), + [anon_sym_static] = ACTIONS(5356), + [anon_sym_member] = ACTIONS(5356), + [anon_sym_abstract] = ACTIONS(5356), + [anon_sym_override] = ACTIONS(5356), + [anon_sym_val] = ACTIONS(5356), + [aux_sym_char_token1] = ACTIONS(5354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [anon_sym_AT_DQUOTE] = ACTIONS(5354), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5354), + [sym_bool] = ACTIONS(5356), + [sym_unit] = ACTIONS(5354), + [anon_sym_LPAREN_PIPE] = ACTIONS(5356), + [sym_op_identifier] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_PLUS_DOT] = ACTIONS(5354), + [anon_sym_DASH_DOT] = ACTIONS(5354), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5354), + [aux_sym_prefix_op_token1] = ACTIONS(5354), + [sym_int] = ACTIONS(5356), + [sym_xint] = ACTIONS(5354), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5354), + [anon_sym_POUNDload] = ACTIONS(5354), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5354), }, [2983] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1223), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2983), [sym_block_comment] = STATE(2983), [sym_line_comment] = STATE(2983), [sym_compiler_directive_decl] = STATE(2983), [sym_fsi_directive_decl] = STATE(2983), [sym_preproc_line] = STATE(2983), - [sym_identifier] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_with] = ACTIONS(3025), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2984] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1996), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2984), [sym_block_comment] = STATE(2984), [sym_line_comment] = STATE(2984), [sym_compiler_directive_decl] = STATE(2984), [sym_fsi_directive_decl] = STATE(2984), [sym_preproc_line] = STATE(2984), - [sym_identifier] = ACTIONS(3013), - [anon_sym_GT_RBRACK] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__newline] = ACTIONS(3015), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2985] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6232), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2985), [sym_block_comment] = STATE(2985), [sym_line_comment] = STATE(2985), [sym_compiler_directive_decl] = STATE(2985), [sym_fsi_directive_decl] = STATE(2985), [sym_preproc_line] = STATE(2985), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2986] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2162), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2986), [sym_block_comment] = STATE(2986), [sym_line_comment] = STATE(2986), [sym_compiler_directive_decl] = STATE(2986), [sym_fsi_directive_decl] = STATE(2986), [sym_preproc_line] = STATE(2986), - [sym_identifier] = ACTIONS(5231), - [anon_sym_module] = ACTIONS(5231), - [anon_sym_open] = ACTIONS(5231), - [anon_sym_LBRACK_LT] = ACTIONS(5229), - [anon_sym_return] = ACTIONS(5231), - [anon_sym_type] = ACTIONS(5231), - [anon_sym_do] = ACTIONS(5231), - [anon_sym_and] = ACTIONS(5231), - [anon_sym_let] = ACTIONS(5231), - [anon_sym_let_BANG] = ACTIONS(5229), - [anon_sym_LPAREN] = ACTIONS(5231), - [anon_sym_null] = ACTIONS(5231), - [anon_sym_AMP] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5231), - [anon_sym_LBRACK_PIPE] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_LBRACE_PIPE] = ACTIONS(5229), - [anon_sym_new] = ACTIONS(5231), - [anon_sym_return_BANG] = ACTIONS(5229), - [anon_sym_yield] = ACTIONS(5231), - [anon_sym_yield_BANG] = ACTIONS(5229), - [anon_sym_lazy] = ACTIONS(5231), - [anon_sym_assert] = ACTIONS(5231), - [anon_sym_upcast] = ACTIONS(5231), - [anon_sym_downcast] = ACTIONS(5231), - [anon_sym_LT_AT] = ACTIONS(5231), - [anon_sym_LT_AT_AT] = ACTIONS(5229), - [anon_sym_for] = ACTIONS(5231), - [anon_sym_while] = ACTIONS(5231), - [anon_sym_if] = ACTIONS(5231), - [anon_sym_fun] = ACTIONS(5231), - [anon_sym_try] = ACTIONS(5231), - [anon_sym_match] = ACTIONS(5231), - [anon_sym_match_BANG] = ACTIONS(5229), - [anon_sym_function] = ACTIONS(5231), - [anon_sym_use] = ACTIONS(5231), - [anon_sym_use_BANG] = ACTIONS(5229), - [anon_sym_do_BANG] = ACTIONS(5229), - [anon_sym_begin] = ACTIONS(5231), - [aux_sym_char_token1] = ACTIONS(5229), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [anon_sym_AT_DQUOTE] = ACTIONS(5229), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5229), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5229), - [sym_bool] = ACTIONS(5231), - [sym_unit] = ACTIONS(5229), - [anon_sym_LPAREN_PIPE] = ACTIONS(5231), - [sym_op_identifier] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_PLUS_DOT] = ACTIONS(5229), - [anon_sym_DASH_DOT] = ACTIONS(5229), - [anon_sym_PERCENT] = ACTIONS(5229), - [anon_sym_AMP_AMP] = ACTIONS(5229), - [anon_sym_TILDE] = ACTIONS(5229), - [aux_sym_prefix_op_token1] = ACTIONS(5229), - [sym_int] = ACTIONS(5231), - [sym_xint] = ACTIONS(5229), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5229), - [anon_sym_POUNDload] = ACTIONS(5229), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5229), - [sym__dedent] = ACTIONS(5229), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2987] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5811), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2210), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2987), [sym_block_comment] = STATE(2987), [sym_line_comment] = STATE(2987), [sym_compiler_directive_decl] = STATE(2987), [sym_fsi_directive_decl] = STATE(2987), [sym_preproc_line] = STATE(2987), - [sym_identifier] = ACTIONS(5204), - [anon_sym_module] = ACTIONS(5204), - [anon_sym_open] = ACTIONS(5204), - [anon_sym_LBRACK_LT] = ACTIONS(5202), - [anon_sym_return] = ACTIONS(5204), - [anon_sym_type] = ACTIONS(5204), - [anon_sym_do] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_let] = ACTIONS(5204), - [anon_sym_let_BANG] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(5204), - [anon_sym_null] = ACTIONS(5204), - [anon_sym_AMP] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_LBRACK_PIPE] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5204), - [anon_sym_LBRACE_PIPE] = ACTIONS(5202), - [anon_sym_new] = ACTIONS(5204), - [anon_sym_return_BANG] = ACTIONS(5202), - [anon_sym_yield] = ACTIONS(5204), - [anon_sym_yield_BANG] = ACTIONS(5202), - [anon_sym_lazy] = ACTIONS(5204), - [anon_sym_assert] = ACTIONS(5204), - [anon_sym_upcast] = ACTIONS(5204), - [anon_sym_downcast] = ACTIONS(5204), - [anon_sym_LT_AT] = ACTIONS(5204), - [anon_sym_LT_AT_AT] = ACTIONS(5202), - [anon_sym_for] = ACTIONS(5204), - [anon_sym_while] = ACTIONS(5204), - [anon_sym_if] = ACTIONS(5204), - [anon_sym_fun] = ACTIONS(5204), - [anon_sym_try] = ACTIONS(5204), - [anon_sym_match] = ACTIONS(5204), - [anon_sym_match_BANG] = ACTIONS(5202), - [anon_sym_function] = ACTIONS(5204), - [anon_sym_use] = ACTIONS(5204), - [anon_sym_use_BANG] = ACTIONS(5202), - [anon_sym_do_BANG] = ACTIONS(5202), - [anon_sym_begin] = ACTIONS(5204), - [aux_sym_char_token1] = ACTIONS(5202), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_AT_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5202), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5202), - [sym_bool] = ACTIONS(5204), - [sym_unit] = ACTIONS(5202), - [anon_sym_LPAREN_PIPE] = ACTIONS(5204), - [sym_op_identifier] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_PLUS_DOT] = ACTIONS(5202), - [anon_sym_DASH_DOT] = ACTIONS(5202), - [anon_sym_PERCENT] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_TILDE] = ACTIONS(5202), - [aux_sym_prefix_op_token1] = ACTIONS(5202), - [sym_int] = ACTIONS(5204), - [sym_xint] = ACTIONS(5202), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5202), - [anon_sym_POUNDload] = ACTIONS(5202), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5202), - [sym__dedent] = ACTIONS(5202), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2988] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1953), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2988), [sym_block_comment] = STATE(2988), [sym_line_comment] = STATE(2988), [sym_compiler_directive_decl] = STATE(2988), [sym_fsi_directive_decl] = STATE(2988), [sym_preproc_line] = STATE(2988), - [sym_identifier] = ACTIONS(5217), - [anon_sym_module] = ACTIONS(5217), - [anon_sym_open] = ACTIONS(5217), - [anon_sym_LBRACK_LT] = ACTIONS(5215), - [anon_sym_return] = ACTIONS(5217), - [anon_sym_type] = ACTIONS(5217), - [anon_sym_do] = ACTIONS(5217), - [anon_sym_and] = ACTIONS(5217), - [anon_sym_let] = ACTIONS(5217), - [anon_sym_let_BANG] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5217), - [anon_sym_null] = ACTIONS(5217), - [anon_sym_AMP] = ACTIONS(5217), - [anon_sym_LBRACK] = ACTIONS(5217), - [anon_sym_LBRACK_PIPE] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5217), - [anon_sym_LBRACE_PIPE] = ACTIONS(5215), - [anon_sym_new] = ACTIONS(5217), - [anon_sym_return_BANG] = ACTIONS(5215), - [anon_sym_yield] = ACTIONS(5217), - [anon_sym_yield_BANG] = ACTIONS(5215), - [anon_sym_lazy] = ACTIONS(5217), - [anon_sym_assert] = ACTIONS(5217), - [anon_sym_upcast] = ACTIONS(5217), - [anon_sym_downcast] = ACTIONS(5217), - [anon_sym_LT_AT] = ACTIONS(5217), - [anon_sym_LT_AT_AT] = ACTIONS(5215), - [anon_sym_for] = ACTIONS(5217), - [anon_sym_while] = ACTIONS(5217), - [anon_sym_if] = ACTIONS(5217), - [anon_sym_fun] = ACTIONS(5217), - [anon_sym_try] = ACTIONS(5217), - [anon_sym_match] = ACTIONS(5217), - [anon_sym_match_BANG] = ACTIONS(5215), - [anon_sym_function] = ACTIONS(5217), - [anon_sym_use] = ACTIONS(5217), - [anon_sym_use_BANG] = ACTIONS(5215), - [anon_sym_do_BANG] = ACTIONS(5215), - [anon_sym_begin] = ACTIONS(5217), - [aux_sym_char_token1] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5217), - [anon_sym_DQUOTE] = ACTIONS(5217), - [anon_sym_AT_DQUOTE] = ACTIONS(5215), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5215), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5215), - [sym_bool] = ACTIONS(5217), - [sym_unit] = ACTIONS(5215), - [anon_sym_LPAREN_PIPE] = ACTIONS(5217), - [sym_op_identifier] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_PLUS_DOT] = ACTIONS(5215), - [anon_sym_DASH_DOT] = ACTIONS(5215), - [anon_sym_PERCENT] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_TILDE] = ACTIONS(5215), - [aux_sym_prefix_op_token1] = ACTIONS(5215), - [sym_int] = ACTIONS(5217), - [sym_xint] = ACTIONS(5215), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5215), - [anon_sym_POUNDload] = ACTIONS(5215), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5215), - [sym__dedent] = ACTIONS(5215), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2989] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5829), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2989), [sym_block_comment] = STATE(2989), [sym_line_comment] = STATE(2989), [sym_compiler_directive_decl] = STATE(2989), [sym_fsi_directive_decl] = STATE(2989), [sym_preproc_line] = STATE(2989), - [sym_identifier] = ACTIONS(5211), - [anon_sym_module] = ACTIONS(5211), - [anon_sym_open] = ACTIONS(5211), - [anon_sym_LBRACK_LT] = ACTIONS(5209), - [anon_sym_return] = ACTIONS(5211), - [anon_sym_type] = ACTIONS(5211), - [anon_sym_do] = ACTIONS(5211), - [anon_sym_and] = ACTIONS(5211), - [anon_sym_let] = ACTIONS(5211), - [anon_sym_let_BANG] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5211), - [anon_sym_AMP] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_LBRACK_PIPE] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_LBRACE_PIPE] = ACTIONS(5209), - [anon_sym_new] = ACTIONS(5211), - [anon_sym_return_BANG] = ACTIONS(5209), - [anon_sym_yield] = ACTIONS(5211), - [anon_sym_yield_BANG] = ACTIONS(5209), - [anon_sym_lazy] = ACTIONS(5211), - [anon_sym_assert] = ACTIONS(5211), - [anon_sym_upcast] = ACTIONS(5211), - [anon_sym_downcast] = ACTIONS(5211), - [anon_sym_LT_AT] = ACTIONS(5211), - [anon_sym_LT_AT_AT] = ACTIONS(5209), - [anon_sym_for] = ACTIONS(5211), - [anon_sym_while] = ACTIONS(5211), - [anon_sym_if] = ACTIONS(5211), - [anon_sym_fun] = ACTIONS(5211), - [anon_sym_try] = ACTIONS(5211), - [anon_sym_match] = ACTIONS(5211), - [anon_sym_match_BANG] = ACTIONS(5209), - [anon_sym_function] = ACTIONS(5211), - [anon_sym_use] = ACTIONS(5211), - [anon_sym_use_BANG] = ACTIONS(5209), - [anon_sym_do_BANG] = ACTIONS(5209), - [anon_sym_begin] = ACTIONS(5211), - [aux_sym_char_token1] = ACTIONS(5209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5211), - [anon_sym_DQUOTE] = ACTIONS(5211), - [anon_sym_AT_DQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5209), - [sym_bool] = ACTIONS(5211), - [sym_unit] = ACTIONS(5209), - [anon_sym_LPAREN_PIPE] = ACTIONS(5211), - [sym_op_identifier] = ACTIONS(5209), - [anon_sym_PLUS] = ACTIONS(5211), - [anon_sym_DASH] = ACTIONS(5211), - [anon_sym_PLUS_DOT] = ACTIONS(5209), - [anon_sym_DASH_DOT] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_AMP_AMP] = ACTIONS(5209), - [anon_sym_TILDE] = ACTIONS(5209), - [aux_sym_prefix_op_token1] = ACTIONS(5209), - [sym_int] = ACTIONS(5211), - [sym_xint] = ACTIONS(5209), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5209), - [anon_sym_POUNDload] = ACTIONS(5209), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5209), - [sym__dedent] = ACTIONS(5209), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(5360), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2990] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2175), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2990), [sym_block_comment] = STATE(2990), [sym_line_comment] = STATE(2990), [sym_compiler_directive_decl] = STATE(2990), [sym_fsi_directive_decl] = STATE(2990), [sym_preproc_line] = STATE(2990), - [sym_identifier] = ACTIONS(5277), - [anon_sym_module] = ACTIONS(5277), - [anon_sym_open] = ACTIONS(5277), - [anon_sym_LBRACK_LT] = ACTIONS(5275), - [anon_sym_return] = ACTIONS(5277), - [anon_sym_type] = ACTIONS(5277), - [anon_sym_do] = ACTIONS(5277), - [anon_sym_and] = ACTIONS(5277), - [anon_sym_let] = ACTIONS(5277), - [anon_sym_let_BANG] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_null] = ACTIONS(5277), - [anon_sym_AMP] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_LBRACK_PIPE] = ACTIONS(5275), - [anon_sym_LBRACE] = ACTIONS(5277), - [anon_sym_LBRACE_PIPE] = ACTIONS(5275), - [anon_sym_new] = ACTIONS(5277), - [anon_sym_return_BANG] = ACTIONS(5275), - [anon_sym_yield] = ACTIONS(5277), - [anon_sym_yield_BANG] = ACTIONS(5275), - [anon_sym_lazy] = ACTIONS(5277), - [anon_sym_assert] = ACTIONS(5277), - [anon_sym_upcast] = ACTIONS(5277), - [anon_sym_downcast] = ACTIONS(5277), - [anon_sym_LT_AT] = ACTIONS(5277), - [anon_sym_LT_AT_AT] = ACTIONS(5275), - [anon_sym_for] = ACTIONS(5277), - [anon_sym_while] = ACTIONS(5277), - [anon_sym_if] = ACTIONS(5277), - [anon_sym_fun] = ACTIONS(5277), - [anon_sym_try] = ACTIONS(5277), - [anon_sym_match] = ACTIONS(5277), - [anon_sym_match_BANG] = ACTIONS(5275), - [anon_sym_function] = ACTIONS(5277), - [anon_sym_use] = ACTIONS(5277), - [anon_sym_use_BANG] = ACTIONS(5275), - [anon_sym_do_BANG] = ACTIONS(5275), - [anon_sym_begin] = ACTIONS(5277), - [aux_sym_char_token1] = ACTIONS(5275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5277), - [anon_sym_DQUOTE] = ACTIONS(5277), - [anon_sym_AT_DQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5275), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5275), - [sym_bool] = ACTIONS(5277), - [sym_unit] = ACTIONS(5275), - [anon_sym_LPAREN_PIPE] = ACTIONS(5277), - [sym_op_identifier] = ACTIONS(5275), - [anon_sym_PLUS] = ACTIONS(5277), - [anon_sym_DASH] = ACTIONS(5277), - [anon_sym_PLUS_DOT] = ACTIONS(5275), - [anon_sym_DASH_DOT] = ACTIONS(5275), - [anon_sym_PERCENT] = ACTIONS(5275), - [anon_sym_AMP_AMP] = ACTIONS(5275), - [anon_sym_TILDE] = ACTIONS(5275), - [aux_sym_prefix_op_token1] = ACTIONS(5275), - [sym_int] = ACTIONS(5277), - [sym_xint] = ACTIONS(5275), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5275), - [anon_sym_POUNDload] = ACTIONS(5275), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5275), - [sym__dedent] = ACTIONS(5275), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2991] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7735), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1011), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2991), [sym_block_comment] = STATE(2991), [sym_line_comment] = STATE(2991), [sym_compiler_directive_decl] = STATE(2991), [sym_fsi_directive_decl] = STATE(2991), [sym_preproc_line] = STATE(2991), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5386), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -354399,227 +362352,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2992] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5846), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2992), [sym_block_comment] = STATE(2992), [sym_line_comment] = STATE(2992), [sym_compiler_directive_decl] = STATE(2992), [sym_fsi_directive_decl] = STATE(2992), [sym_preproc_line] = STATE(2992), - [ts_builtin_sym_end] = ACTIONS(5388), - [sym_identifier] = ACTIONS(5390), - [anon_sym_namespace] = ACTIONS(5390), - [anon_sym_module] = ACTIONS(5390), - [anon_sym_open] = ACTIONS(5390), - [anon_sym_LBRACK_LT] = ACTIONS(5388), - [anon_sym_return] = ACTIONS(5390), - [anon_sym_type] = ACTIONS(5390), - [anon_sym_do] = ACTIONS(5390), - [anon_sym_let] = ACTIONS(5390), - [anon_sym_let_BANG] = ACTIONS(5388), - [anon_sym_LPAREN] = ACTIONS(5390), - [anon_sym_null] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_LBRACK_PIPE] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(5390), - [anon_sym_LBRACE_PIPE] = ACTIONS(5388), - [anon_sym_new] = ACTIONS(5390), - [anon_sym_return_BANG] = ACTIONS(5388), - [anon_sym_yield] = ACTIONS(5390), - [anon_sym_yield_BANG] = ACTIONS(5388), - [anon_sym_lazy] = ACTIONS(5390), - [anon_sym_assert] = ACTIONS(5390), - [anon_sym_upcast] = ACTIONS(5390), - [anon_sym_downcast] = ACTIONS(5390), - [anon_sym_LT_AT] = ACTIONS(5390), - [anon_sym_LT_AT_AT] = ACTIONS(5388), - [anon_sym_for] = ACTIONS(5390), - [anon_sym_while] = ACTIONS(5390), - [anon_sym_if] = ACTIONS(5390), - [anon_sym_fun] = ACTIONS(5390), - [anon_sym_try] = ACTIONS(5390), - [anon_sym_match] = ACTIONS(5390), - [anon_sym_match_BANG] = ACTIONS(5388), - [anon_sym_function] = ACTIONS(5390), - [anon_sym_use] = ACTIONS(5390), - [anon_sym_use_BANG] = ACTIONS(5388), - [anon_sym_do_BANG] = ACTIONS(5388), - [anon_sym_begin] = ACTIONS(5390), - [aux_sym_char_token1] = ACTIONS(5388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5390), - [anon_sym_DQUOTE] = ACTIONS(5390), - [anon_sym_AT_DQUOTE] = ACTIONS(5388), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5388), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5388), - [sym_bool] = ACTIONS(5390), - [sym_unit] = ACTIONS(5388), - [anon_sym_LPAREN_PIPE] = ACTIONS(5390), - [sym_op_identifier] = ACTIONS(5388), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_PLUS_DOT] = ACTIONS(5388), - [anon_sym_DASH_DOT] = ACTIONS(5388), - [anon_sym_PERCENT] = ACTIONS(5388), - [anon_sym_AMP_AMP] = ACTIONS(5388), - [anon_sym_TILDE] = ACTIONS(5388), - [aux_sym_prefix_op_token1] = ACTIONS(5388), - [sym_int] = ACTIONS(5390), - [sym_xint] = ACTIONS(5388), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5388), - [anon_sym_POUNDload] = ACTIONS(5388), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5388), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(5362), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2993] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1967), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2993), [sym_block_comment] = STATE(2993), [sym_line_comment] = STATE(2993), [sym_compiler_directive_decl] = STATE(2993), [sym_fsi_directive_decl] = STATE(2993), [sym_preproc_line] = STATE(2993), - [sym_identifier] = ACTIONS(3021), - [anon_sym_GT_RBRACK] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__newline] = ACTIONS(3023), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2994] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7276), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2994), [sym_block_comment] = STATE(2994), [sym_line_comment] = STATE(2994), [sym_compiler_directive_decl] = STATE(2994), [sym_fsi_directive_decl] = STATE(2994), [sym_preproc_line] = STATE(2994), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5392), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2955), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -354627,151 +362607,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2995] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5696), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(972), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2995), [sym_block_comment] = STATE(2995), [sym_line_comment] = STATE(2995), [sym_compiler_directive_decl] = STATE(2995), [sym_fsi_directive_decl] = STATE(2995), [sym_preproc_line] = STATE(2995), - [ts_builtin_sym_end] = ACTIONS(5394), - [sym_identifier] = ACTIONS(5396), - [anon_sym_namespace] = ACTIONS(5396), - [anon_sym_module] = ACTIONS(5396), - [anon_sym_open] = ACTIONS(5396), - [anon_sym_LBRACK_LT] = ACTIONS(5394), - [anon_sym_return] = ACTIONS(5396), - [anon_sym_type] = ACTIONS(5396), - [anon_sym_do] = ACTIONS(5396), - [anon_sym_let] = ACTIONS(5396), - [anon_sym_let_BANG] = ACTIONS(5394), - [anon_sym_LPAREN] = ACTIONS(5396), - [anon_sym_null] = ACTIONS(5396), - [anon_sym_AMP] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_LBRACK_PIPE] = ACTIONS(5394), - [anon_sym_LBRACE] = ACTIONS(5396), - [anon_sym_LBRACE_PIPE] = ACTIONS(5394), - [anon_sym_new] = ACTIONS(5396), - [anon_sym_return_BANG] = ACTIONS(5394), - [anon_sym_yield] = ACTIONS(5396), - [anon_sym_yield_BANG] = ACTIONS(5394), - [anon_sym_lazy] = ACTIONS(5396), - [anon_sym_assert] = ACTIONS(5396), - [anon_sym_upcast] = ACTIONS(5396), - [anon_sym_downcast] = ACTIONS(5396), - [anon_sym_LT_AT] = ACTIONS(5396), - [anon_sym_LT_AT_AT] = ACTIONS(5394), - [anon_sym_for] = ACTIONS(5396), - [anon_sym_while] = ACTIONS(5396), - [anon_sym_if] = ACTIONS(5396), - [anon_sym_fun] = ACTIONS(5396), - [anon_sym_try] = ACTIONS(5396), - [anon_sym_match] = ACTIONS(5396), - [anon_sym_match_BANG] = ACTIONS(5394), - [anon_sym_function] = ACTIONS(5396), - [anon_sym_use] = ACTIONS(5396), - [anon_sym_use_BANG] = ACTIONS(5394), - [anon_sym_do_BANG] = ACTIONS(5394), - [anon_sym_begin] = ACTIONS(5396), - [aux_sym_char_token1] = ACTIONS(5394), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5396), - [anon_sym_DQUOTE] = ACTIONS(5396), - [anon_sym_AT_DQUOTE] = ACTIONS(5394), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), - [sym_bool] = ACTIONS(5396), - [sym_unit] = ACTIONS(5394), - [anon_sym_LPAREN_PIPE] = ACTIONS(5396), - [sym_op_identifier] = ACTIONS(5394), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5396), - [anon_sym_PLUS_DOT] = ACTIONS(5394), - [anon_sym_DASH_DOT] = ACTIONS(5394), - [anon_sym_PERCENT] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_TILDE] = ACTIONS(5394), - [aux_sym_prefix_op_token1] = ACTIONS(5394), - [sym_int] = ACTIONS(5396), - [sym_xint] = ACTIONS(5394), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5394), - [anon_sym_POUNDload] = ACTIONS(5394), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5394), }, [2996] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(6679), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1794), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2996), [sym_block_comment] = STATE(2996), [sym_line_comment] = STATE(2996), [sym_compiler_directive_decl] = STATE(2996), [sym_fsi_directive_decl] = STATE(2996), [sym_preproc_line] = STATE(2996), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5398), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -354779,384 +362777,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2997] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1723), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2997), [sym_block_comment] = STATE(2997), [sym_line_comment] = STATE(2997), [sym_compiler_directive_decl] = STATE(2997), [sym_fsi_directive_decl] = STATE(2997), [sym_preproc_line] = STATE(2997), - [ts_builtin_sym_end] = ACTIONS(5400), - [sym_identifier] = ACTIONS(5402), - [anon_sym_namespace] = ACTIONS(5402), - [anon_sym_module] = ACTIONS(5402), - [anon_sym_open] = ACTIONS(5402), - [anon_sym_LBRACK_LT] = ACTIONS(5400), - [anon_sym_return] = ACTIONS(5402), - [anon_sym_type] = ACTIONS(5402), - [anon_sym_do] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_let_BANG] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_null] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_LBRACK_PIPE] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_LBRACE_PIPE] = ACTIONS(5400), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_return_BANG] = ACTIONS(5400), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_yield_BANG] = ACTIONS(5400), - [anon_sym_lazy] = ACTIONS(5402), - [anon_sym_assert] = ACTIONS(5402), - [anon_sym_upcast] = ACTIONS(5402), - [anon_sym_downcast] = ACTIONS(5402), - [anon_sym_LT_AT] = ACTIONS(5402), - [anon_sym_LT_AT_AT] = ACTIONS(5400), - [anon_sym_for] = ACTIONS(5402), - [anon_sym_while] = ACTIONS(5402), - [anon_sym_if] = ACTIONS(5402), - [anon_sym_fun] = ACTIONS(5402), - [anon_sym_try] = ACTIONS(5402), - [anon_sym_match] = ACTIONS(5402), - [anon_sym_match_BANG] = ACTIONS(5400), - [anon_sym_function] = ACTIONS(5402), - [anon_sym_use] = ACTIONS(5402), - [anon_sym_use_BANG] = ACTIONS(5400), - [anon_sym_do_BANG] = ACTIONS(5400), - [anon_sym_begin] = ACTIONS(5402), - [aux_sym_char_token1] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(5402), - [anon_sym_AT_DQUOTE] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [sym_bool] = ACTIONS(5402), - [sym_unit] = ACTIONS(5400), - [anon_sym_LPAREN_PIPE] = ACTIONS(5402), - [sym_op_identifier] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5402), - [anon_sym_PLUS_DOT] = ACTIONS(5400), - [anon_sym_DASH_DOT] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5400), - [anon_sym_AMP_AMP] = ACTIONS(5400), - [anon_sym_TILDE] = ACTIONS(5400), - [aux_sym_prefix_op_token1] = ACTIONS(5400), - [sym_int] = ACTIONS(5402), - [sym_xint] = ACTIONS(5400), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5400), - [anon_sym_POUNDload] = ACTIONS(5400), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5400), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2998] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(2998), [sym_block_comment] = STATE(2998), [sym_line_comment] = STATE(2998), [sym_compiler_directive_decl] = STATE(2998), [sym_fsi_directive_decl] = STATE(2998), [sym_preproc_line] = STATE(2998), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(5404), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2967), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [2999] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1743), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(2999), [sym_block_comment] = STATE(2999), [sym_line_comment] = STATE(2999), [sym_compiler_directive_decl] = STATE(2999), [sym_fsi_directive_decl] = STATE(2999), [sym_preproc_line] = STATE(2999), - [sym_identifier] = ACTIONS(5294), - [anon_sym_module] = ACTIONS(5294), - [anon_sym_open] = ACTIONS(5294), - [anon_sym_LBRACK_LT] = ACTIONS(5292), - [anon_sym_return] = ACTIONS(5294), - [anon_sym_type] = ACTIONS(5294), - [anon_sym_do] = ACTIONS(5294), - [anon_sym_and] = ACTIONS(5294), - [anon_sym_let] = ACTIONS(5294), - [anon_sym_let_BANG] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5294), - [anon_sym_null] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_LBRACK_PIPE] = ACTIONS(5292), - [anon_sym_LBRACE] = ACTIONS(5294), - [anon_sym_LBRACE_PIPE] = ACTIONS(5292), - [anon_sym_new] = ACTIONS(5294), - [anon_sym_return_BANG] = ACTIONS(5292), - [anon_sym_yield] = ACTIONS(5294), - [anon_sym_yield_BANG] = ACTIONS(5292), - [anon_sym_lazy] = ACTIONS(5294), - [anon_sym_assert] = ACTIONS(5294), - [anon_sym_upcast] = ACTIONS(5294), - [anon_sym_downcast] = ACTIONS(5294), - [anon_sym_LT_AT] = ACTIONS(5294), - [anon_sym_LT_AT_AT] = ACTIONS(5292), - [anon_sym_for] = ACTIONS(5294), - [anon_sym_while] = ACTIONS(5294), - [anon_sym_if] = ACTIONS(5294), - [anon_sym_fun] = ACTIONS(5294), - [anon_sym_try] = ACTIONS(5294), - [anon_sym_match] = ACTIONS(5294), - [anon_sym_match_BANG] = ACTIONS(5292), - [anon_sym_function] = ACTIONS(5294), - [anon_sym_use] = ACTIONS(5294), - [anon_sym_use_BANG] = ACTIONS(5292), - [anon_sym_do_BANG] = ACTIONS(5292), - [anon_sym_begin] = ACTIONS(5294), - [aux_sym_char_token1] = ACTIONS(5292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5294), - [anon_sym_DQUOTE] = ACTIONS(5294), - [anon_sym_AT_DQUOTE] = ACTIONS(5292), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5292), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5292), - [sym_bool] = ACTIONS(5294), - [sym_unit] = ACTIONS(5292), - [anon_sym_LPAREN_PIPE] = ACTIONS(5294), - [sym_op_identifier] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_PLUS_DOT] = ACTIONS(5292), - [anon_sym_DASH_DOT] = ACTIONS(5292), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_TILDE] = ACTIONS(5292), - [aux_sym_prefix_op_token1] = ACTIONS(5292), - [sym_int] = ACTIONS(5294), - [sym_xint] = ACTIONS(5292), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5292), - [anon_sym_POUNDload] = ACTIONS(5292), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5292), - [sym__dedent] = ACTIONS(5292), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3000] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3000), [sym_block_comment] = STATE(3000), [sym_line_comment] = STATE(3000), [sym_compiler_directive_decl] = STATE(3000), [sym_fsi_directive_decl] = STATE(3000), [sym_preproc_line] = STATE(3000), - [sym_identifier] = ACTIONS(5083), - [anon_sym_module] = ACTIONS(5083), - [anon_sym_open] = ACTIONS(5083), - [anon_sym_LBRACK_LT] = ACTIONS(5081), - [anon_sym_return] = ACTIONS(5083), - [anon_sym_type] = ACTIONS(5083), - [anon_sym_do] = ACTIONS(5083), - [anon_sym_and] = ACTIONS(5083), - [anon_sym_let] = ACTIONS(5083), - [anon_sym_let_BANG] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_null] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_PIPE] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_LBRACE_PIPE] = ACTIONS(5081), - [anon_sym_new] = ACTIONS(5083), - [anon_sym_return_BANG] = ACTIONS(5081), - [anon_sym_yield] = ACTIONS(5083), - [anon_sym_yield_BANG] = ACTIONS(5081), - [anon_sym_lazy] = ACTIONS(5083), - [anon_sym_assert] = ACTIONS(5083), - [anon_sym_upcast] = ACTIONS(5083), - [anon_sym_downcast] = ACTIONS(5083), - [anon_sym_LT_AT] = ACTIONS(5083), - [anon_sym_LT_AT_AT] = ACTIONS(5081), - [anon_sym_for] = ACTIONS(5083), - [anon_sym_while] = ACTIONS(5083), - [anon_sym_if] = ACTIONS(5083), - [anon_sym_fun] = ACTIONS(5083), - [anon_sym_try] = ACTIONS(5083), - [anon_sym_match] = ACTIONS(5083), - [anon_sym_match_BANG] = ACTIONS(5081), - [anon_sym_function] = ACTIONS(5083), - [anon_sym_use] = ACTIONS(5083), - [anon_sym_use_BANG] = ACTIONS(5081), - [anon_sym_do_BANG] = ACTIONS(5081), - [anon_sym_begin] = ACTIONS(5083), - [aux_sym_char_token1] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_AT_DQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5081), - [sym_bool] = ACTIONS(5083), - [sym_unit] = ACTIONS(5081), - [anon_sym_LPAREN_PIPE] = ACTIONS(5083), - [sym_op_identifier] = ACTIONS(5081), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_PLUS_DOT] = ACTIONS(5081), - [anon_sym_DASH_DOT] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_AMP_AMP] = ACTIONS(5081), - [anon_sym_TILDE] = ACTIONS(5081), - [aux_sym_prefix_op_token1] = ACTIONS(5081), - [sym_int] = ACTIONS(5083), - [sym_xint] = ACTIONS(5081), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5081), - [anon_sym_POUNDload] = ACTIONS(5081), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5081), - [sym__dedent] = ACTIONS(5081), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2959), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3001] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5868), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3001), [sym_block_comment] = STATE(3001), [sym_line_comment] = STATE(3001), [sym_compiler_directive_decl] = STATE(3001), [sym_fsi_directive_decl] = STATE(3001), [sym_preproc_line] = STATE(3001), - [sym_identifier] = ACTIONS(3017), - [anon_sym_GT_RBRACK] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__newline] = ACTIONS(3019), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_RPAREN] = ACTIONS(5364), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3002] = { [sym_xml_doc] = STATE(3002), @@ -355165,145 +363208,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3002), [sym_fsi_directive_decl] = STATE(3002), [sym_preproc_line] = STATE(3002), - [sym_identifier] = ACTIONS(3025), - [anon_sym_GT_RBRACK] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__newline] = ACTIONS(3027), + [ts_builtin_sym_end] = ACTIONS(5366), + [sym_identifier] = ACTIONS(5368), + [anon_sym_namespace] = ACTIONS(5368), + [anon_sym_module] = ACTIONS(5368), + [anon_sym_open] = ACTIONS(5368), + [anon_sym_LBRACK_LT] = ACTIONS(5366), + [anon_sym_return] = ACTIONS(5368), + [anon_sym_type] = ACTIONS(5368), + [anon_sym_do] = ACTIONS(5368), + [anon_sym_and] = ACTIONS(5368), + [anon_sym_let] = ACTIONS(5368), + [anon_sym_let_BANG] = ACTIONS(5366), + [aux_sym_access_modifier_token1] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_null] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_LBRACK_PIPE] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_LT_AT] = ACTIONS(5368), + [anon_sym_LT_AT_AT] = ACTIONS(5366), + [anon_sym_LBRACE_PIPE] = ACTIONS(5366), + [anon_sym_with] = ACTIONS(5370), + [anon_sym_new] = ACTIONS(5368), + [anon_sym_return_BANG] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5368), + [anon_sym_yield_BANG] = ACTIONS(5366), + [anon_sym_lazy] = ACTIONS(5368), + [anon_sym_assert] = ACTIONS(5368), + [anon_sym_upcast] = ACTIONS(5368), + [anon_sym_downcast] = ACTIONS(5368), + [anon_sym_for] = ACTIONS(5368), + [anon_sym_while] = ACTIONS(5368), + [anon_sym_if] = ACTIONS(5368), + [anon_sym_fun] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5368), + [anon_sym_match] = ACTIONS(5368), + [anon_sym_match_BANG] = ACTIONS(5366), + [anon_sym_function] = ACTIONS(5368), + [anon_sym_use] = ACTIONS(5368), + [anon_sym_use_BANG] = ACTIONS(5366), + [anon_sym_do_BANG] = ACTIONS(5366), + [anon_sym_begin] = ACTIONS(5368), + [anon_sym_default] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5368), + [anon_sym_member] = ACTIONS(5368), + [anon_sym_abstract] = ACTIONS(5368), + [anon_sym_override] = ACTIONS(5368), + [anon_sym_val] = ACTIONS(5368), + [aux_sym_char_token1] = ACTIONS(5366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [anon_sym_AT_DQUOTE] = ACTIONS(5366), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), + [sym_bool] = ACTIONS(5368), + [sym_unit] = ACTIONS(5366), + [anon_sym_LPAREN_PIPE] = ACTIONS(5368), + [sym_op_identifier] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_PLUS_DOT] = ACTIONS(5366), + [anon_sym_DASH_DOT] = ACTIONS(5366), + [anon_sym_PERCENT] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5366), + [aux_sym_prefix_op_token1] = ACTIONS(5366), + [sym_int] = ACTIONS(5368), + [sym_xint] = ACTIONS(5366), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5366), + [anon_sym_POUNDload] = ACTIONS(5366), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5366), }, [3003] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(6990), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3003), [sym_block_comment] = STATE(3003), [sym_line_comment] = STATE(3003), [sym_compiler_directive_decl] = STATE(3003), [sym_fsi_directive_decl] = STATE(3003), [sym_preproc_line] = STATE(3003), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5406), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2961), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -355311,75 +363372,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3004] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7358), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3004), [sym_block_comment] = STATE(3004), [sym_line_comment] = STATE(3004), [sym_compiler_directive_decl] = STATE(3004), [sym_fsi_directive_decl] = STATE(3004), [sym_preproc_line] = STATE(3004), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5408), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2964), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -355387,151 +363457,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3005] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1619), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3005), [sym_block_comment] = STATE(3005), [sym_line_comment] = STATE(3005), [sym_compiler_directive_decl] = STATE(3005), [sym_fsi_directive_decl] = STATE(3005), [sym_preproc_line] = STATE(3005), - [sym_identifier] = ACTIONS(2986), - [anon_sym_GT_RBRACK] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__newline] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3006] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7135), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5729), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1997), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3006), [sym_block_comment] = STATE(3006), [sym_line_comment] = STATE(3006), [sym_compiler_directive_decl] = STATE(3006), [sym_fsi_directive_decl] = STATE(3006), [sym_preproc_line] = STATE(3006), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5410), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -355539,151 +363627,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3007] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1689), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3007), [sym_block_comment] = STATE(3007), [sym_line_comment] = STATE(3007), [sym_compiler_directive_decl] = STATE(3007), [sym_fsi_directive_decl] = STATE(3007), [sym_preproc_line] = STATE(3007), - [sym_identifier] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_as] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(5412), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3008] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7010), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1876), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3008), [sym_block_comment] = STATE(3008), [sym_line_comment] = STATE(3008), [sym_compiler_directive_decl] = STATE(3008), [sym_fsi_directive_decl] = STATE(3008), [sym_preproc_line] = STATE(3008), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5414), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -355697,302 +363803,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3009), [sym_fsi_directive_decl] = STATE(3009), [sym_preproc_line] = STATE(3009), - [sym_identifier] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_with] = ACTIONS(3047), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_and] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [aux_sym_access_modifier_token1] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_member] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_val] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3440), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3440), + [anon_sym_DASH_DOT] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3440), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), }, [3010] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5690), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1869), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3010), [sym_block_comment] = STATE(3010), [sym_line_comment] = STATE(3010), [sym_compiler_directive_decl] = STATE(3010), [sym_fsi_directive_decl] = STATE(3010), [sym_preproc_line] = STATE(3010), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2986), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3011] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5667), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1799), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3011), [sym_block_comment] = STATE(3011), [sym_line_comment] = STATE(3011), [sym_compiler_directive_decl] = STATE(3011), [sym_fsi_directive_decl] = STATE(3011), [sym_preproc_line] = STATE(3011), - [sym_identifier] = ACTIONS(5259), - [anon_sym_module] = ACTIONS(5259), - [anon_sym_open] = ACTIONS(5259), - [anon_sym_LBRACK_LT] = ACTIONS(5257), - [anon_sym_return] = ACTIONS(5259), - [anon_sym_type] = ACTIONS(5259), - [anon_sym_do] = ACTIONS(5259), - [anon_sym_and] = ACTIONS(5259), - [anon_sym_let] = ACTIONS(5259), - [anon_sym_let_BANG] = ACTIONS(5257), - [anon_sym_LPAREN] = ACTIONS(5259), - [anon_sym_null] = ACTIONS(5259), - [anon_sym_AMP] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_LBRACK_PIPE] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5259), - [anon_sym_LBRACE_PIPE] = ACTIONS(5257), - [anon_sym_new] = ACTIONS(5259), - [anon_sym_return_BANG] = ACTIONS(5257), - [anon_sym_yield] = ACTIONS(5259), - [anon_sym_yield_BANG] = ACTIONS(5257), - [anon_sym_lazy] = ACTIONS(5259), - [anon_sym_assert] = ACTIONS(5259), - [anon_sym_upcast] = ACTIONS(5259), - [anon_sym_downcast] = ACTIONS(5259), - [anon_sym_LT_AT] = ACTIONS(5259), - [anon_sym_LT_AT_AT] = ACTIONS(5257), - [anon_sym_for] = ACTIONS(5259), - [anon_sym_while] = ACTIONS(5259), - [anon_sym_if] = ACTIONS(5259), - [anon_sym_fun] = ACTIONS(5259), - [anon_sym_try] = ACTIONS(5259), - [anon_sym_match] = ACTIONS(5259), - [anon_sym_match_BANG] = ACTIONS(5257), - [anon_sym_function] = ACTIONS(5259), - [anon_sym_use] = ACTIONS(5259), - [anon_sym_use_BANG] = ACTIONS(5257), - [anon_sym_do_BANG] = ACTIONS(5257), - [anon_sym_begin] = ACTIONS(5259), - [aux_sym_char_token1] = ACTIONS(5257), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5259), - [anon_sym_DQUOTE] = ACTIONS(5259), - [anon_sym_AT_DQUOTE] = ACTIONS(5257), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5257), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5257), - [sym_bool] = ACTIONS(5259), - [sym_unit] = ACTIONS(5257), - [anon_sym_LPAREN_PIPE] = ACTIONS(5259), - [sym_op_identifier] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_PLUS_DOT] = ACTIONS(5257), - [anon_sym_DASH_DOT] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_AMP_AMP] = ACTIONS(5257), - [anon_sym_TILDE] = ACTIONS(5257), - [aux_sym_prefix_op_token1] = ACTIONS(5257), - [sym_int] = ACTIONS(5259), - [sym_xint] = ACTIONS(5257), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5257), - [anon_sym_POUNDload] = ACTIONS(5257), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5257), - [sym__dedent] = ACTIONS(5257), }, [3012] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1861), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3012), [sym_block_comment] = STATE(3012), [sym_line_comment] = STATE(3012), [sym_compiler_directive_decl] = STATE(3012), [sym_fsi_directive_decl] = STATE(3012), [sym_preproc_line] = STATE(3012), - [sym_identifier] = ACTIONS(5270), - [anon_sym_module] = ACTIONS(5270), - [anon_sym_open] = ACTIONS(5270), - [anon_sym_LBRACK_LT] = ACTIONS(5268), - [anon_sym_return] = ACTIONS(5270), - [anon_sym_type] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_let_BANG] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_null] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LBRACK_PIPE] = ACTIONS(5268), - [anon_sym_LBRACE] = ACTIONS(5270), - [anon_sym_LBRACE_PIPE] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5270), - [anon_sym_return_BANG] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5270), - [anon_sym_yield_BANG] = ACTIONS(5268), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_assert] = ACTIONS(5270), - [anon_sym_upcast] = ACTIONS(5270), - [anon_sym_downcast] = ACTIONS(5270), - [anon_sym_LT_AT] = ACTIONS(5270), - [anon_sym_LT_AT_AT] = ACTIONS(5268), - [anon_sym_for] = ACTIONS(5270), - [anon_sym_while] = ACTIONS(5270), - [anon_sym_if] = ACTIONS(5270), - [anon_sym_fun] = ACTIONS(5270), - [anon_sym_try] = ACTIONS(5270), - [anon_sym_match] = ACTIONS(5270), - [anon_sym_match_BANG] = ACTIONS(5268), - [anon_sym_function] = ACTIONS(5270), - [anon_sym_use] = ACTIONS(5270), - [anon_sym_use_BANG] = ACTIONS(5268), - [anon_sym_do_BANG] = ACTIONS(5268), - [anon_sym_begin] = ACTIONS(5270), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_AT_DQUOTE] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [sym_bool] = ACTIONS(5270), - [sym_unit] = ACTIONS(5268), - [anon_sym_LPAREN_PIPE] = ACTIONS(5270), - [sym_op_identifier] = ACTIONS(5268), - [anon_sym_PLUS] = ACTIONS(5270), - [anon_sym_DASH] = ACTIONS(5270), - [anon_sym_PLUS_DOT] = ACTIONS(5268), - [anon_sym_DASH_DOT] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5268), - [aux_sym_prefix_op_token1] = ACTIONS(5268), - [sym_int] = ACTIONS(5270), - [sym_xint] = ACTIONS(5268), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5268), - [anon_sym_POUNDload] = ACTIONS(5268), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5268), - [sym__dedent] = ACTIONS(5268), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3013] = { [sym_xml_doc] = STATE(3013), @@ -356001,74 +364143,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3013), [sym_fsi_directive_decl] = STATE(3013), [sym_preproc_line] = STATE(3013), - [sym_identifier] = ACTIONS(5285), - [anon_sym_module] = ACTIONS(5285), - [anon_sym_open] = ACTIONS(5285), - [anon_sym_LBRACK_LT] = ACTIONS(5283), - [anon_sym_return] = ACTIONS(5285), - [anon_sym_type] = ACTIONS(5285), - [anon_sym_do] = ACTIONS(5285), - [anon_sym_and] = ACTIONS(5285), - [anon_sym_let] = ACTIONS(5285), - [anon_sym_let_BANG] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_null] = ACTIONS(5285), - [anon_sym_AMP] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_LBRACK_PIPE] = ACTIONS(5283), - [anon_sym_LBRACE] = ACTIONS(5285), - [anon_sym_LBRACE_PIPE] = ACTIONS(5283), - [anon_sym_new] = ACTIONS(5285), - [anon_sym_return_BANG] = ACTIONS(5283), - [anon_sym_yield] = ACTIONS(5285), - [anon_sym_yield_BANG] = ACTIONS(5283), - [anon_sym_lazy] = ACTIONS(5285), - [anon_sym_assert] = ACTIONS(5285), - [anon_sym_upcast] = ACTIONS(5285), - [anon_sym_downcast] = ACTIONS(5285), - [anon_sym_LT_AT] = ACTIONS(5285), - [anon_sym_LT_AT_AT] = ACTIONS(5283), - [anon_sym_for] = ACTIONS(5285), - [anon_sym_while] = ACTIONS(5285), - [anon_sym_if] = ACTIONS(5285), - [anon_sym_fun] = ACTIONS(5285), - [anon_sym_try] = ACTIONS(5285), - [anon_sym_match] = ACTIONS(5285), - [anon_sym_match_BANG] = ACTIONS(5283), - [anon_sym_function] = ACTIONS(5285), - [anon_sym_use] = ACTIONS(5285), - [anon_sym_use_BANG] = ACTIONS(5283), - [anon_sym_do_BANG] = ACTIONS(5283), - [anon_sym_begin] = ACTIONS(5285), - [aux_sym_char_token1] = ACTIONS(5283), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5285), - [anon_sym_DQUOTE] = ACTIONS(5285), - [anon_sym_AT_DQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5283), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5283), - [sym_bool] = ACTIONS(5285), - [sym_unit] = ACTIONS(5283), - [anon_sym_LPAREN_PIPE] = ACTIONS(5285), - [sym_op_identifier] = ACTIONS(5283), - [anon_sym_PLUS] = ACTIONS(5285), - [anon_sym_DASH] = ACTIONS(5285), - [anon_sym_PLUS_DOT] = ACTIONS(5283), - [anon_sym_DASH_DOT] = ACTIONS(5283), - [anon_sym_PERCENT] = ACTIONS(5283), - [anon_sym_AMP_AMP] = ACTIONS(5283), - [anon_sym_TILDE] = ACTIONS(5283), - [aux_sym_prefix_op_token1] = ACTIONS(5283), - [sym_int] = ACTIONS(5285), - [sym_xint] = ACTIONS(5283), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5283), - [anon_sym_POUNDload] = ACTIONS(5283), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5283), - [sym__dedent] = ACTIONS(5283), + [ts_builtin_sym_end] = ACTIONS(5372), + [sym_identifier] = ACTIONS(5374), + [anon_sym_namespace] = ACTIONS(5374), + [anon_sym_module] = ACTIONS(5374), + [anon_sym_open] = ACTIONS(5374), + [anon_sym_LBRACK_LT] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_do] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_let] = ACTIONS(5374), + [anon_sym_let_BANG] = ACTIONS(5372), + [aux_sym_access_modifier_token1] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5376), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_LBRACK_PIPE] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_LT_AT] = ACTIONS(5374), + [anon_sym_LT_AT_AT] = ACTIONS(5372), + [anon_sym_LBRACE_PIPE] = ACTIONS(5372), + [anon_sym_new] = ACTIONS(5374), + [anon_sym_return_BANG] = ACTIONS(5372), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_yield_BANG] = ACTIONS(5372), + [anon_sym_lazy] = ACTIONS(5374), + [anon_sym_assert] = ACTIONS(5374), + [anon_sym_upcast] = ACTIONS(5374), + [anon_sym_downcast] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_match_BANG] = ACTIONS(5372), + [anon_sym_function] = ACTIONS(5374), + [anon_sym_use] = ACTIONS(5374), + [anon_sym_use_BANG] = ACTIONS(5372), + [anon_sym_do_BANG] = ACTIONS(5372), + [anon_sym_begin] = ACTIONS(5374), + [anon_sym_default] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_member] = ACTIONS(5374), + [anon_sym_abstract] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + [anon_sym_val] = ACTIONS(5374), + [aux_sym_char_token1] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5374), + [anon_sym_DQUOTE] = ACTIONS(5374), + [anon_sym_AT_DQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5372), + [anon_sym_LPAREN_PIPE] = ACTIONS(5374), + [sym_op_identifier] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS_DOT] = ACTIONS(5372), + [anon_sym_DASH_DOT] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5372), + [anon_sym_AMP_AMP] = ACTIONS(5372), + [anon_sym_TILDE] = ACTIONS(5372), + [aux_sym_prefix_op_token1] = ACTIONS(5372), + [sym_int] = ACTIONS(5374), + [sym_xint] = ACTIONS(5372), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5372), + [anon_sym_POUNDload] = ACTIONS(5372), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5372), }, [3014] = { [sym_xml_doc] = STATE(3014), @@ -356077,373 +364228,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3014), [sym_fsi_directive_decl] = STATE(3014), [sym_preproc_line] = STATE(3014), - [sym_identifier] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_with] = ACTIONS(3033), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(5372), + [sym_identifier] = ACTIONS(5374), + [anon_sym_namespace] = ACTIONS(5374), + [anon_sym_module] = ACTIONS(5374), + [anon_sym_open] = ACTIONS(5374), + [anon_sym_LBRACK_LT] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_do] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_let] = ACTIONS(5374), + [anon_sym_let_BANG] = ACTIONS(5372), + [aux_sym_access_modifier_token1] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5378), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_LBRACK_PIPE] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_LT_AT] = ACTIONS(5374), + [anon_sym_LT_AT_AT] = ACTIONS(5372), + [anon_sym_LBRACE_PIPE] = ACTIONS(5372), + [anon_sym_new] = ACTIONS(5374), + [anon_sym_return_BANG] = ACTIONS(5372), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_yield_BANG] = ACTIONS(5372), + [anon_sym_lazy] = ACTIONS(5374), + [anon_sym_assert] = ACTIONS(5374), + [anon_sym_upcast] = ACTIONS(5374), + [anon_sym_downcast] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_match_BANG] = ACTIONS(5372), + [anon_sym_function] = ACTIONS(5374), + [anon_sym_use] = ACTIONS(5374), + [anon_sym_use_BANG] = ACTIONS(5372), + [anon_sym_do_BANG] = ACTIONS(5372), + [anon_sym_begin] = ACTIONS(5374), + [anon_sym_default] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_member] = ACTIONS(5374), + [anon_sym_abstract] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + [anon_sym_val] = ACTIONS(5374), + [aux_sym_char_token1] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5374), + [anon_sym_DQUOTE] = ACTIONS(5374), + [anon_sym_AT_DQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5372), + [anon_sym_LPAREN_PIPE] = ACTIONS(5374), + [sym_op_identifier] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS_DOT] = ACTIONS(5372), + [anon_sym_DASH_DOT] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5372), + [anon_sym_AMP_AMP] = ACTIONS(5372), + [anon_sym_TILDE] = ACTIONS(5372), + [aux_sym_prefix_op_token1] = ACTIONS(5372), + [sym_int] = ACTIONS(5374), + [sym_xint] = ACTIONS(5372), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5372), + [anon_sym_POUNDload] = ACTIONS(5372), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5372), }, [3015] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1271), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3015), [sym_block_comment] = STATE(3015), [sym_line_comment] = STATE(3015), [sym_compiler_directive_decl] = STATE(3015), [sym_fsi_directive_decl] = STATE(3015), [sym_preproc_line] = STATE(3015), - [ts_builtin_sym_end] = ACTIONS(5416), - [sym_identifier] = ACTIONS(5418), - [anon_sym_namespace] = ACTIONS(5418), - [anon_sym_module] = ACTIONS(5418), - [anon_sym_open] = ACTIONS(5418), - [anon_sym_LBRACK_LT] = ACTIONS(5416), - [anon_sym_return] = ACTIONS(5418), - [anon_sym_type] = ACTIONS(5418), - [anon_sym_do] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_let_BANG] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_null] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LBRACK_PIPE] = ACTIONS(5416), - [anon_sym_LBRACE] = ACTIONS(5418), - [anon_sym_LBRACE_PIPE] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_return_BANG] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_yield_BANG] = ACTIONS(5416), - [anon_sym_lazy] = ACTIONS(5418), - [anon_sym_assert] = ACTIONS(5418), - [anon_sym_upcast] = ACTIONS(5418), - [anon_sym_downcast] = ACTIONS(5418), - [anon_sym_LT_AT] = ACTIONS(5418), - [anon_sym_LT_AT_AT] = ACTIONS(5416), - [anon_sym_for] = ACTIONS(5418), - [anon_sym_while] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(5418), - [anon_sym_fun] = ACTIONS(5418), - [anon_sym_try] = ACTIONS(5418), - [anon_sym_match] = ACTIONS(5418), - [anon_sym_match_BANG] = ACTIONS(5416), - [anon_sym_function] = ACTIONS(5418), - [anon_sym_use] = ACTIONS(5418), - [anon_sym_use_BANG] = ACTIONS(5416), - [anon_sym_do_BANG] = ACTIONS(5416), - [anon_sym_begin] = ACTIONS(5418), - [aux_sym_char_token1] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5418), - [anon_sym_DQUOTE] = ACTIONS(5418), - [anon_sym_AT_DQUOTE] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [sym_bool] = ACTIONS(5418), - [sym_unit] = ACTIONS(5416), - [anon_sym_LPAREN_PIPE] = ACTIONS(5418), - [sym_op_identifier] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_PLUS_DOT] = ACTIONS(5416), - [anon_sym_DASH_DOT] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5416), - [aux_sym_prefix_op_token1] = ACTIONS(5416), - [sym_int] = ACTIONS(5418), - [sym_xint] = ACTIONS(5416), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5416), - [anon_sym_POUNDload] = ACTIONS(5416), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5416), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3016] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1404), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3016), [sym_block_comment] = STATE(3016), [sym_line_comment] = STATE(3016), [sym_compiler_directive_decl] = STATE(3016), [sym_fsi_directive_decl] = STATE(3016), [sym_preproc_line] = STATE(3016), - [sym_identifier] = ACTIONS(3043), - [anon_sym_GT_RBRACK] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__newline] = ACTIONS(3045), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3017] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1812), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3017), [sym_block_comment] = STATE(3017), [sym_line_comment] = STATE(3017), [sym_compiler_directive_decl] = STATE(3017), [sym_fsi_directive_decl] = STATE(3017), [sym_preproc_line] = STATE(3017), - [sym_identifier] = ACTIONS(3007), - [anon_sym_GT_RBRACK] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__newline] = ACTIONS(3009), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3018] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7182), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2121), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3018), [sym_block_comment] = STATE(3018), [sym_line_comment] = STATE(3018), [sym_compiler_directive_decl] = STATE(3018), [sym_fsi_directive_decl] = STATE(3018), [sym_preproc_line] = STATE(3018), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5420), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -356451,227 +364647,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3019] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1263), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3019), [sym_block_comment] = STATE(3019), [sym_line_comment] = STATE(3019), [sym_compiler_directive_decl] = STATE(3019), [sym_fsi_directive_decl] = STATE(3019), [sym_preproc_line] = STATE(3019), - [sym_identifier] = ACTIONS(5235), - [anon_sym_module] = ACTIONS(5235), - [anon_sym_open] = ACTIONS(5235), - [anon_sym_LBRACK_LT] = ACTIONS(5233), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_type] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_and] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_BANG] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LBRACK_PIPE] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACE_PIPE] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5235), - [anon_sym_return_BANG] = ACTIONS(5233), - [anon_sym_yield] = ACTIONS(5235), - [anon_sym_yield_BANG] = ACTIONS(5233), - [anon_sym_lazy] = ACTIONS(5235), - [anon_sym_assert] = ACTIONS(5235), - [anon_sym_upcast] = ACTIONS(5235), - [anon_sym_downcast] = ACTIONS(5235), - [anon_sym_LT_AT] = ACTIONS(5235), - [anon_sym_LT_AT_AT] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_match_BANG] = ACTIONS(5233), - [anon_sym_function] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_use_BANG] = ACTIONS(5233), - [anon_sym_do_BANG] = ACTIONS(5233), - [anon_sym_begin] = ACTIONS(5235), - [aux_sym_char_token1] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [anon_sym_AT_DQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [sym_bool] = ACTIONS(5235), - [sym_unit] = ACTIONS(5233), - [anon_sym_LPAREN_PIPE] = ACTIONS(5235), - [sym_op_identifier] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_PLUS_DOT] = ACTIONS(5233), - [anon_sym_DASH_DOT] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_TILDE] = ACTIONS(5233), - [aux_sym_prefix_op_token1] = ACTIONS(5233), - [sym_int] = ACTIONS(5235), - [sym_xint] = ACTIONS(5233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5233), - [anon_sym_POUNDload] = ACTIONS(5233), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5233), - [sym__dedent] = ACTIONS(5233), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3020] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5675), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1709), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3020), [sym_block_comment] = STATE(3020), [sym_line_comment] = STATE(3020), [sym_compiler_directive_decl] = STATE(3020), [sym_fsi_directive_decl] = STATE(3020), [sym_preproc_line] = STATE(3020), - [ts_builtin_sym_end] = ACTIONS(5422), - [sym_identifier] = ACTIONS(5424), - [anon_sym_namespace] = ACTIONS(5424), - [anon_sym_module] = ACTIONS(5424), - [anon_sym_open] = ACTIONS(5424), - [anon_sym_LBRACK_LT] = ACTIONS(5422), - [anon_sym_return] = ACTIONS(5424), - [anon_sym_type] = ACTIONS(5424), - [anon_sym_do] = ACTIONS(5424), - [anon_sym_let] = ACTIONS(5424), - [anon_sym_let_BANG] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5424), - [anon_sym_null] = ACTIONS(5424), - [anon_sym_AMP] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_LBRACK_PIPE] = ACTIONS(5422), - [anon_sym_LBRACE] = ACTIONS(5424), - [anon_sym_LBRACE_PIPE] = ACTIONS(5422), - [anon_sym_new] = ACTIONS(5424), - [anon_sym_return_BANG] = ACTIONS(5422), - [anon_sym_yield] = ACTIONS(5424), - [anon_sym_yield_BANG] = ACTIONS(5422), - [anon_sym_lazy] = ACTIONS(5424), - [anon_sym_assert] = ACTIONS(5424), - [anon_sym_upcast] = ACTIONS(5424), - [anon_sym_downcast] = ACTIONS(5424), - [anon_sym_LT_AT] = ACTIONS(5424), - [anon_sym_LT_AT_AT] = ACTIONS(5422), - [anon_sym_for] = ACTIONS(5424), - [anon_sym_while] = ACTIONS(5424), - [anon_sym_if] = ACTIONS(5424), - [anon_sym_fun] = ACTIONS(5424), - [anon_sym_try] = ACTIONS(5424), - [anon_sym_match] = ACTIONS(5424), - [anon_sym_match_BANG] = ACTIONS(5422), - [anon_sym_function] = ACTIONS(5424), - [anon_sym_use] = ACTIONS(5424), - [anon_sym_use_BANG] = ACTIONS(5422), - [anon_sym_do_BANG] = ACTIONS(5422), - [anon_sym_begin] = ACTIONS(5424), - [aux_sym_char_token1] = ACTIONS(5422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5424), - [anon_sym_DQUOTE] = ACTIONS(5424), - [anon_sym_AT_DQUOTE] = ACTIONS(5422), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), - [sym_bool] = ACTIONS(5424), - [sym_unit] = ACTIONS(5422), - [anon_sym_LPAREN_PIPE] = ACTIONS(5424), - [sym_op_identifier] = ACTIONS(5422), - [anon_sym_PLUS] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), - [anon_sym_PLUS_DOT] = ACTIONS(5422), - [anon_sym_DASH_DOT] = ACTIONS(5422), - [anon_sym_PERCENT] = ACTIONS(5422), - [anon_sym_AMP_AMP] = ACTIONS(5422), - [anon_sym_TILDE] = ACTIONS(5422), - [aux_sym_prefix_op_token1] = ACTIONS(5422), - [sym_int] = ACTIONS(5424), - [sym_xint] = ACTIONS(5422), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5422), - [anon_sym_POUNDload] = ACTIONS(5422), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5422), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3021] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7496), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5761), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1426), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3021), [sym_block_comment] = STATE(3021), [sym_line_comment] = STATE(3021), [sym_compiler_directive_decl] = STATE(3021), [sym_fsi_directive_decl] = STATE(3021), [sym_preproc_line] = STATE(3021), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5426), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -356679,75 +364902,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3022] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7549), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2267), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3022), [sym_block_comment] = STATE(3022), [sym_line_comment] = STATE(3022), [sym_compiler_directive_decl] = STATE(3022), [sym_fsi_directive_decl] = STATE(3022), [sym_preproc_line] = STATE(3022), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5428), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -356755,75 +364987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3023] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7159), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5685), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1166), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3023), [sym_block_comment] = STATE(3023), [sym_line_comment] = STATE(3023), [sym_compiler_directive_decl] = STATE(3023), [sym_fsi_directive_decl] = STATE(3023), [sym_preproc_line] = STATE(3023), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5430), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -356831,227 +365072,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3024] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5770), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(6293), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3024), [sym_block_comment] = STATE(3024), [sym_line_comment] = STATE(3024), [sym_compiler_directive_decl] = STATE(3024), [sym_fsi_directive_decl] = STATE(3024), [sym_preproc_line] = STATE(3024), - [sym_identifier] = ACTIONS(2990), - [anon_sym_GT_RBRACK] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(5432), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__newline] = ACTIONS(2992), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3025] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5800), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1725), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3025), [sym_block_comment] = STATE(3025), [sym_line_comment] = STATE(3025), [sym_compiler_directive_decl] = STATE(3025), [sym_fsi_directive_decl] = STATE(3025), [sym_preproc_line] = STATE(3025), - [ts_builtin_sym_end] = ACTIONS(5434), - [sym_identifier] = ACTIONS(5436), - [anon_sym_namespace] = ACTIONS(5436), - [anon_sym_module] = ACTIONS(5436), - [anon_sym_open] = ACTIONS(5436), - [anon_sym_LBRACK_LT] = ACTIONS(5434), - [anon_sym_return] = ACTIONS(5436), - [anon_sym_type] = ACTIONS(5436), - [anon_sym_do] = ACTIONS(5436), - [anon_sym_let] = ACTIONS(5436), - [anon_sym_let_BANG] = ACTIONS(5434), - [anon_sym_LPAREN] = ACTIONS(5436), - [anon_sym_null] = ACTIONS(5436), - [anon_sym_AMP] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [anon_sym_LBRACK_PIPE] = ACTIONS(5434), - [anon_sym_LBRACE] = ACTIONS(5436), - [anon_sym_LBRACE_PIPE] = ACTIONS(5434), - [anon_sym_new] = ACTIONS(5436), - [anon_sym_return_BANG] = ACTIONS(5434), - [anon_sym_yield] = ACTIONS(5436), - [anon_sym_yield_BANG] = ACTIONS(5434), - [anon_sym_lazy] = ACTIONS(5436), - [anon_sym_assert] = ACTIONS(5436), - [anon_sym_upcast] = ACTIONS(5436), - [anon_sym_downcast] = ACTIONS(5436), - [anon_sym_LT_AT] = ACTIONS(5436), - [anon_sym_LT_AT_AT] = ACTIONS(5434), - [anon_sym_for] = ACTIONS(5436), - [anon_sym_while] = ACTIONS(5436), - [anon_sym_if] = ACTIONS(5436), - [anon_sym_fun] = ACTIONS(5436), - [anon_sym_try] = ACTIONS(5436), - [anon_sym_match] = ACTIONS(5436), - [anon_sym_match_BANG] = ACTIONS(5434), - [anon_sym_function] = ACTIONS(5436), - [anon_sym_use] = ACTIONS(5436), - [anon_sym_use_BANG] = ACTIONS(5434), - [anon_sym_do_BANG] = ACTIONS(5434), - [anon_sym_begin] = ACTIONS(5436), - [aux_sym_char_token1] = ACTIONS(5434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5436), - [anon_sym_DQUOTE] = ACTIONS(5436), - [anon_sym_AT_DQUOTE] = ACTIONS(5434), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5434), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5434), - [sym_bool] = ACTIONS(5436), - [sym_unit] = ACTIONS(5434), - [anon_sym_LPAREN_PIPE] = ACTIONS(5436), - [sym_op_identifier] = ACTIONS(5434), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_DASH] = ACTIONS(5436), - [anon_sym_PLUS_DOT] = ACTIONS(5434), - [anon_sym_DASH_DOT] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [aux_sym_prefix_op_token1] = ACTIONS(5434), - [sym_int] = ACTIONS(5436), - [sym_xint] = ACTIONS(5434), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5434), - [anon_sym_POUNDload] = ACTIONS(5434), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5434), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3026] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7212), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5637), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1774), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3026), [sym_block_comment] = STATE(3026), [sym_line_comment] = STATE(3026), [sym_compiler_directive_decl] = STATE(3026), [sym_fsi_directive_decl] = STATE(3026), [sym_preproc_line] = STATE(3026), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5438), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -357059,151 +365327,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3027] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5677), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2180), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3027), [sym_block_comment] = STATE(3027), [sym_line_comment] = STATE(3027), [sym_compiler_directive_decl] = STATE(3027), [sym_fsi_directive_decl] = STATE(3027), [sym_preproc_line] = STATE(3027), - [sym_identifier] = ACTIONS(5263), - [anon_sym_module] = ACTIONS(5263), - [anon_sym_open] = ACTIONS(5263), - [anon_sym_LBRACK_LT] = ACTIONS(5261), - [anon_sym_return] = ACTIONS(5263), - [anon_sym_type] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(5263), - [anon_sym_and] = ACTIONS(5263), - [anon_sym_let] = ACTIONS(5263), - [anon_sym_let_BANG] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(5263), - [anon_sym_AMP] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_LBRACK_PIPE] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_LBRACE_PIPE] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5263), - [anon_sym_return_BANG] = ACTIONS(5261), - [anon_sym_yield] = ACTIONS(5263), - [anon_sym_yield_BANG] = ACTIONS(5261), - [anon_sym_lazy] = ACTIONS(5263), - [anon_sym_assert] = ACTIONS(5263), - [anon_sym_upcast] = ACTIONS(5263), - [anon_sym_downcast] = ACTIONS(5263), - [anon_sym_LT_AT] = ACTIONS(5263), - [anon_sym_LT_AT_AT] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5263), - [anon_sym_if] = ACTIONS(5263), - [anon_sym_fun] = ACTIONS(5263), - [anon_sym_try] = ACTIONS(5263), - [anon_sym_match] = ACTIONS(5263), - [anon_sym_match_BANG] = ACTIONS(5261), - [anon_sym_function] = ACTIONS(5263), - [anon_sym_use] = ACTIONS(5263), - [anon_sym_use_BANG] = ACTIONS(5261), - [anon_sym_do_BANG] = ACTIONS(5261), - [anon_sym_begin] = ACTIONS(5263), - [aux_sym_char_token1] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_AT_DQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [sym_bool] = ACTIONS(5263), - [sym_unit] = ACTIONS(5261), - [anon_sym_LPAREN_PIPE] = ACTIONS(5263), - [sym_op_identifier] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_PLUS_DOT] = ACTIONS(5261), - [anon_sym_DASH_DOT] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5261), - [aux_sym_prefix_op_token1] = ACTIONS(5261), - [sym_int] = ACTIONS(5263), - [sym_xint] = ACTIONS(5261), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5261), - [anon_sym_POUNDload] = ACTIONS(5261), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5261), - [sym__dedent] = ACTIONS(5261), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3028] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7050), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5799), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(2190), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3028), [sym_block_comment] = STATE(3028), [sym_line_comment] = STATE(3028), [sym_compiler_directive_decl] = STATE(3028), [sym_fsi_directive_decl] = STATE(3028), [sym_preproc_line] = STATE(3028), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5440), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -357211,75 +365497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3029] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7362), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5746), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_rule] = STATE(1683), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3029), [sym_block_comment] = STATE(3029), [sym_line_comment] = STATE(3029), [sym_compiler_directive_decl] = STATE(3029), [sym_fsi_directive_decl] = STATE(3029), [sym_preproc_line] = STATE(3029), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5442), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -357287,379 +365582,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3030] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7134), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5372), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3030), [sym_block_comment] = STATE(3030), [sym_line_comment] = STATE(3030), [sym_compiler_directive_decl] = STATE(3030), [sym_fsi_directive_decl] = STATE(3030), [sym_preproc_line] = STATE(3030), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5444), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), + [sym__newline] = ACTIONS(5380), }, [3031] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3966), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3031), [sym_block_comment] = STATE(3031), [sym_line_comment] = STATE(3031), [sym_compiler_directive_decl] = STATE(3031), [sym_fsi_directive_decl] = STATE(3031), [sym_preproc_line] = STATE(3031), - [sym_identifier] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_with] = ACTIONS(3043), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), + [aux_sym_attributes_repeat1] = STATE(4204), + [aux_sym__method_defn_repeat1] = STATE(2958), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3032] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7417), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), [sym_xml_doc] = STATE(3032), [sym_block_comment] = STATE(3032), [sym_line_comment] = STATE(3032), [sym_compiler_directive_decl] = STATE(3032), [sym_fsi_directive_decl] = STATE(3032), [sym_preproc_line] = STATE(3032), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5446), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [ts_builtin_sym_end] = ACTIONS(5348), + [sym_identifier] = ACTIONS(5350), + [anon_sym_namespace] = ACTIONS(5350), + [anon_sym_module] = ACTIONS(5350), + [anon_sym_open] = ACTIONS(5350), + [anon_sym_LBRACK_LT] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_do] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_let] = ACTIONS(5350), + [anon_sym_let_BANG] = ACTIONS(5348), + [aux_sym_access_modifier_token1] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5382), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_LBRACK_PIPE] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_LT_AT] = ACTIONS(5350), + [anon_sym_LT_AT_AT] = ACTIONS(5348), + [anon_sym_LBRACE_PIPE] = ACTIONS(5348), + [anon_sym_new] = ACTIONS(5350), + [anon_sym_return_BANG] = ACTIONS(5348), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_yield_BANG] = ACTIONS(5348), + [anon_sym_lazy] = ACTIONS(5350), + [anon_sym_assert] = ACTIONS(5350), + [anon_sym_upcast] = ACTIONS(5350), + [anon_sym_downcast] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_fun] = ACTIONS(5350), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_match_BANG] = ACTIONS(5348), + [anon_sym_function] = ACTIONS(5350), + [anon_sym_use] = ACTIONS(5350), + [anon_sym_use_BANG] = ACTIONS(5348), + [anon_sym_do_BANG] = ACTIONS(5348), + [anon_sym_begin] = ACTIONS(5350), + [anon_sym_default] = ACTIONS(5350), + [anon_sym_static] = ACTIONS(5350), + [anon_sym_member] = ACTIONS(5350), + [anon_sym_abstract] = ACTIONS(5350), + [anon_sym_override] = ACTIONS(5350), + [anon_sym_val] = ACTIONS(5350), + [aux_sym_char_token1] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), + [anon_sym_DQUOTE] = ACTIONS(5350), + [anon_sym_AT_DQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [sym_bool] = ACTIONS(5350), + [sym_unit] = ACTIONS(5348), + [anon_sym_LPAREN_PIPE] = ACTIONS(5350), + [sym_op_identifier] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_PLUS_DOT] = ACTIONS(5348), + [anon_sym_DASH_DOT] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_TILDE] = ACTIONS(5348), + [aux_sym_prefix_op_token1] = ACTIONS(5348), + [sym_int] = ACTIONS(5350), + [sym_xint] = ACTIONS(5348), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), + [anon_sym_POUNDr] = ACTIONS(5348), + [anon_sym_POUNDload] = ACTIONS(5348), [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5348), }, [3033] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5820), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3033), [sym_block_comment] = STATE(3033), [sym_line_comment] = STATE(3033), [sym_compiler_directive_decl] = STATE(3033), [sym_fsi_directive_decl] = STATE(3033), [sym_preproc_line] = STATE(3033), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(299), - [anon_sym_namespace] = ACTIONS(299), - [anon_sym_module] = ACTIONS(299), - [anon_sym_open] = ACTIONS(299), - [anon_sym_LBRACK_LT] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_type] = ACTIONS(299), - [anon_sym_do] = ACTIONS(299), - [anon_sym_let] = ACTIONS(299), - [anon_sym_let_BANG] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_null] = ACTIONS(299), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LBRACK_PIPE] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_LBRACE_PIPE] = ACTIONS(297), - [anon_sym_new] = ACTIONS(299), - [anon_sym_return_BANG] = ACTIONS(297), - [anon_sym_yield] = ACTIONS(299), - [anon_sym_yield_BANG] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_assert] = ACTIONS(299), - [anon_sym_upcast] = ACTIONS(299), - [anon_sym_downcast] = ACTIONS(299), - [anon_sym_LT_AT] = ACTIONS(299), - [anon_sym_LT_AT_AT] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_while] = ACTIONS(299), - [anon_sym_if] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(299), - [anon_sym_try] = ACTIONS(299), - [anon_sym_match] = ACTIONS(299), - [anon_sym_match_BANG] = ACTIONS(297), - [anon_sym_function] = ACTIONS(299), - [anon_sym_use] = ACTIONS(299), - [anon_sym_use_BANG] = ACTIONS(297), - [anon_sym_do_BANG] = ACTIONS(297), - [anon_sym_begin] = ACTIONS(299), - [aux_sym_char_token1] = ACTIONS(297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(299), - [anon_sym_AT_DQUOTE] = ACTIONS(297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [sym_bool] = ACTIONS(299), - [sym_unit] = ACTIONS(297), - [anon_sym_LPAREN_PIPE] = ACTIONS(299), - [sym_op_identifier] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_PLUS_DOT] = ACTIONS(297), - [anon_sym_DASH_DOT] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_TILDE] = ACTIONS(297), - [aux_sym_prefix_op_token1] = ACTIONS(297), - [sym_int] = ACTIONS(299), - [sym_xint] = ACTIONS(297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(297), - [anon_sym_POUNDload] = ACTIONS(297), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(297), }, [3034] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7069), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5804), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3034), [sym_block_comment] = STATE(3034), [sym_line_comment] = STATE(3034), [sym_compiler_directive_decl] = STATE(3034), [sym_fsi_directive_decl] = STATE(3034), [sym_preproc_line] = STATE(3034), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5448), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -357667,151 +366005,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3035] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5823), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3035), [sym_block_comment] = STATE(3035), [sym_line_comment] = STATE(3035), [sym_compiler_directive_decl] = STATE(3035), [sym_fsi_directive_decl] = STATE(3035), [sym_preproc_line] = STATE(3035), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), - [sym__dedent] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5384), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3036] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7122), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3873), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3036), [sym_block_comment] = STATE(3036), [sym_line_comment] = STATE(3036), [sym_compiler_directive_decl] = STATE(3036), [sym_fsi_directive_decl] = STATE(3036), [sym_preproc_line] = STATE(3036), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5450), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -357825,74 +366179,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3037), [sym_fsi_directive_decl] = STATE(3037), [sym_preproc_line] = STATE(3037), - [sym_identifier] = ACTIONS(5223), - [anon_sym_module] = ACTIONS(5223), - [anon_sym_open] = ACTIONS(5223), - [anon_sym_LBRACK_LT] = ACTIONS(5221), - [anon_sym_return] = ACTIONS(5223), - [anon_sym_type] = ACTIONS(5223), - [anon_sym_do] = ACTIONS(5223), - [anon_sym_and] = ACTIONS(5223), - [anon_sym_let] = ACTIONS(5223), - [anon_sym_let_BANG] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_null] = ACTIONS(5223), - [anon_sym_AMP] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_LBRACK_PIPE] = ACTIONS(5221), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_LBRACE_PIPE] = ACTIONS(5221), - [anon_sym_new] = ACTIONS(5223), - [anon_sym_return_BANG] = ACTIONS(5221), - [anon_sym_yield] = ACTIONS(5223), - [anon_sym_yield_BANG] = ACTIONS(5221), - [anon_sym_lazy] = ACTIONS(5223), - [anon_sym_assert] = ACTIONS(5223), - [anon_sym_upcast] = ACTIONS(5223), - [anon_sym_downcast] = ACTIONS(5223), - [anon_sym_LT_AT] = ACTIONS(5223), - [anon_sym_LT_AT_AT] = ACTIONS(5221), - [anon_sym_for] = ACTIONS(5223), - [anon_sym_while] = ACTIONS(5223), - [anon_sym_if] = ACTIONS(5223), - [anon_sym_fun] = ACTIONS(5223), - [anon_sym_try] = ACTIONS(5223), - [anon_sym_match] = ACTIONS(5223), - [anon_sym_match_BANG] = ACTIONS(5221), - [anon_sym_function] = ACTIONS(5223), - [anon_sym_use] = ACTIONS(5223), - [anon_sym_use_BANG] = ACTIONS(5221), - [anon_sym_do_BANG] = ACTIONS(5221), - [anon_sym_begin] = ACTIONS(5223), - [aux_sym_char_token1] = ACTIONS(5221), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(5223), - [anon_sym_AT_DQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5221), - [sym_bool] = ACTIONS(5223), - [sym_unit] = ACTIONS(5221), - [anon_sym_LPAREN_PIPE] = ACTIONS(5223), - [sym_op_identifier] = ACTIONS(5221), - [anon_sym_PLUS] = ACTIONS(5223), - [anon_sym_DASH] = ACTIONS(5223), - [anon_sym_PLUS_DOT] = ACTIONS(5221), - [anon_sym_DASH_DOT] = ACTIONS(5221), - [anon_sym_PERCENT] = ACTIONS(5221), - [anon_sym_AMP_AMP] = ACTIONS(5221), - [anon_sym_TILDE] = ACTIONS(5221), - [aux_sym_prefix_op_token1] = ACTIONS(5221), - [sym_int] = ACTIONS(5223), - [sym_xint] = ACTIONS(5221), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5221), - [anon_sym_POUNDload] = ACTIONS(5221), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5221), - [sym__dedent] = ACTIONS(5221), + [ts_builtin_sym_end] = ACTIONS(5390), + [sym_identifier] = ACTIONS(5392), + [anon_sym_namespace] = ACTIONS(5392), + [anon_sym_module] = ACTIONS(5392), + [anon_sym_open] = ACTIONS(5392), + [anon_sym_LBRACK_LT] = ACTIONS(5390), + [anon_sym_return] = ACTIONS(5392), + [anon_sym_type] = ACTIONS(5392), + [anon_sym_do] = ACTIONS(5392), + [anon_sym_and] = ACTIONS(5392), + [anon_sym_let] = ACTIONS(5392), + [anon_sym_let_BANG] = ACTIONS(5390), + [aux_sym_access_modifier_token1] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_null] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_LBRACK_PIPE] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_LT_AT] = ACTIONS(5392), + [anon_sym_LT_AT_AT] = ACTIONS(5390), + [anon_sym_LBRACE_PIPE] = ACTIONS(5390), + [anon_sym_new] = ACTIONS(5392), + [anon_sym_return_BANG] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5392), + [anon_sym_yield_BANG] = ACTIONS(5390), + [anon_sym_lazy] = ACTIONS(5392), + [anon_sym_assert] = ACTIONS(5392), + [anon_sym_upcast] = ACTIONS(5392), + [anon_sym_downcast] = ACTIONS(5392), + [anon_sym_for] = ACTIONS(5392), + [anon_sym_while] = ACTIONS(5392), + [anon_sym_if] = ACTIONS(5392), + [anon_sym_fun] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5392), + [anon_sym_match] = ACTIONS(5392), + [anon_sym_match_BANG] = ACTIONS(5390), + [anon_sym_function] = ACTIONS(5392), + [anon_sym_use] = ACTIONS(5392), + [anon_sym_use_BANG] = ACTIONS(5390), + [anon_sym_do_BANG] = ACTIONS(5390), + [anon_sym_begin] = ACTIONS(5392), + [anon_sym_default] = ACTIONS(5392), + [anon_sym_static] = ACTIONS(5392), + [anon_sym_member] = ACTIONS(5392), + [anon_sym_abstract] = ACTIONS(5392), + [anon_sym_override] = ACTIONS(5392), + [anon_sym_val] = ACTIONS(5392), + [aux_sym_char_token1] = ACTIONS(5390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [anon_sym_AT_DQUOTE] = ACTIONS(5390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5390), + [sym_bool] = ACTIONS(5392), + [sym_unit] = ACTIONS(5390), + [anon_sym_LPAREN_PIPE] = ACTIONS(5392), + [sym_op_identifier] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_PLUS_DOT] = ACTIONS(5390), + [anon_sym_DASH_DOT] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5390), + [anon_sym_AMP_AMP] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5390), + [aux_sym_prefix_op_token1] = ACTIONS(5390), + [sym_int] = ACTIONS(5392), + [sym_xint] = ACTIONS(5390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5390), + [anon_sym_POUNDload] = ACTIONS(5390), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5390), }, [3038] = { [sym_xml_doc] = STATE(3038), @@ -357901,221 +366263,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3038), [sym_fsi_directive_decl] = STATE(3038), [sym_preproc_line] = STATE(3038), - [sym_identifier] = ACTIONS(3047), - [anon_sym_GT_RBRACK] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__newline] = ACTIONS(3049), + [ts_builtin_sym_end] = ACTIONS(5394), + [sym_identifier] = ACTIONS(5396), + [anon_sym_namespace] = ACTIONS(5396), + [anon_sym_module] = ACTIONS(5396), + [anon_sym_open] = ACTIONS(5396), + [anon_sym_LBRACK_LT] = ACTIONS(5394), + [anon_sym_return] = ACTIONS(5396), + [anon_sym_type] = ACTIONS(5396), + [anon_sym_do] = ACTIONS(5396), + [anon_sym_and] = ACTIONS(5396), + [anon_sym_let] = ACTIONS(5396), + [anon_sym_let_BANG] = ACTIONS(5394), + [aux_sym_access_modifier_token1] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_null] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_LBRACK_PIPE] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LT_AT] = ACTIONS(5396), + [anon_sym_LT_AT_AT] = ACTIONS(5394), + [anon_sym_LBRACE_PIPE] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5396), + [anon_sym_return_BANG] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5396), + [anon_sym_yield_BANG] = ACTIONS(5394), + [anon_sym_lazy] = ACTIONS(5396), + [anon_sym_assert] = ACTIONS(5396), + [anon_sym_upcast] = ACTIONS(5396), + [anon_sym_downcast] = ACTIONS(5396), + [anon_sym_for] = ACTIONS(5396), + [anon_sym_while] = ACTIONS(5396), + [anon_sym_if] = ACTIONS(5396), + [anon_sym_fun] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5396), + [anon_sym_match] = ACTIONS(5396), + [anon_sym_match_BANG] = ACTIONS(5394), + [anon_sym_function] = ACTIONS(5396), + [anon_sym_use] = ACTIONS(5396), + [anon_sym_use_BANG] = ACTIONS(5394), + [anon_sym_do_BANG] = ACTIONS(5394), + [anon_sym_begin] = ACTIONS(5396), + [anon_sym_default] = ACTIONS(5396), + [anon_sym_static] = ACTIONS(5396), + [anon_sym_member] = ACTIONS(5396), + [anon_sym_abstract] = ACTIONS(5396), + [anon_sym_override] = ACTIONS(5396), + [anon_sym_val] = ACTIONS(5396), + [aux_sym_char_token1] = ACTIONS(5394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [anon_sym_AT_DQUOTE] = ACTIONS(5394), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), + [sym_bool] = ACTIONS(5396), + [sym_unit] = ACTIONS(5394), + [anon_sym_LPAREN_PIPE] = ACTIONS(5396), + [sym_op_identifier] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), + [anon_sym_PLUS_DOT] = ACTIONS(5394), + [anon_sym_DASH_DOT] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_AMP_AMP] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5394), + [aux_sym_prefix_op_token1] = ACTIONS(5394), + [sym_int] = ACTIONS(5396), + [sym_xint] = ACTIONS(5394), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5394), + [anon_sym_POUNDload] = ACTIONS(5394), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5394), }, [3039] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7244), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), [sym_xml_doc] = STATE(3039), [sym_block_comment] = STATE(3039), [sym_line_comment] = STATE(3039), [sym_compiler_directive_decl] = STATE(3039), [sym_fsi_directive_decl] = STATE(3039), [sym_preproc_line] = STATE(3039), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5452), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), + [ts_builtin_sym_end] = ACTIONS(5398), + [sym_identifier] = ACTIONS(5400), + [anon_sym_namespace] = ACTIONS(5400), + [anon_sym_module] = ACTIONS(5400), + [anon_sym_open] = ACTIONS(5400), + [anon_sym_LBRACK_LT] = ACTIONS(5398), + [anon_sym_return] = ACTIONS(5400), + [anon_sym_type] = ACTIONS(5400), + [anon_sym_do] = ACTIONS(5400), + [anon_sym_and] = ACTIONS(5400), + [anon_sym_let] = ACTIONS(5400), + [anon_sym_let_BANG] = ACTIONS(5398), + [aux_sym_access_modifier_token1] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_null] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_LBRACK_PIPE] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LT_AT] = ACTIONS(5400), + [anon_sym_LT_AT_AT] = ACTIONS(5398), + [anon_sym_LBRACE_PIPE] = ACTIONS(5398), + [anon_sym_new] = ACTIONS(5400), + [anon_sym_return_BANG] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5400), + [anon_sym_yield_BANG] = ACTIONS(5398), + [anon_sym_lazy] = ACTIONS(5400), + [anon_sym_assert] = ACTIONS(5400), + [anon_sym_upcast] = ACTIONS(5400), + [anon_sym_downcast] = ACTIONS(5400), + [anon_sym_for] = ACTIONS(5400), + [anon_sym_while] = ACTIONS(5400), + [anon_sym_if] = ACTIONS(5400), + [anon_sym_fun] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5400), + [anon_sym_match] = ACTIONS(5400), + [anon_sym_match_BANG] = ACTIONS(5398), + [anon_sym_function] = ACTIONS(5400), + [anon_sym_use] = ACTIONS(5400), + [anon_sym_use_BANG] = ACTIONS(5398), + [anon_sym_do_BANG] = ACTIONS(5398), + [anon_sym_begin] = ACTIONS(5400), + [anon_sym_default] = ACTIONS(5400), + [anon_sym_static] = ACTIONS(5400), + [anon_sym_member] = ACTIONS(5400), + [anon_sym_abstract] = ACTIONS(5400), + [anon_sym_override] = ACTIONS(5400), + [anon_sym_val] = ACTIONS(5400), + [aux_sym_char_token1] = ACTIONS(5398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_AT_DQUOTE] = ACTIONS(5398), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5398), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5398), + [sym_bool] = ACTIONS(5400), + [sym_unit] = ACTIONS(5398), + [anon_sym_LPAREN_PIPE] = ACTIONS(5400), + [sym_op_identifier] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_PLUS_DOT] = ACTIONS(5398), + [anon_sym_DASH_DOT] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_AMP_AMP] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5398), + [aux_sym_prefix_op_token1] = ACTIONS(5398), + [sym_int] = ACTIONS(5400), + [sym_xint] = ACTIONS(5398), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5398), + [anon_sym_POUNDload] = ACTIONS(5398), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5398), }, [3040] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7098), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5662), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3040), [sym_block_comment] = STATE(3040), [sym_line_comment] = STATE(3040), [sym_compiler_directive_decl] = STATE(3040), [sym_fsi_directive_decl] = STATE(3040), [sym_preproc_line] = STATE(3040), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5454), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -358123,75 +366509,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3041] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7520), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4063), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3041), [sym_block_comment] = STATE(3041), [sym_line_comment] = STATE(3041), [sym_compiler_directive_decl] = STATE(3041), [sym_fsi_directive_decl] = STATE(3041), [sym_preproc_line] = STATE(3041), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5456), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -358199,224 +366593,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3042] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4068), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3042), [sym_block_comment] = STATE(3042), [sym_line_comment] = STATE(3042), [sym_compiler_directive_decl] = STATE(3042), [sym_fsi_directive_decl] = STATE(3042), [sym_preproc_line] = STATE(3042), - [sym_identifier] = ACTIONS(3787), - [anon_sym_module] = ACTIONS(3787), - [anon_sym_open] = ACTIONS(3787), - [anon_sym_LBRACK_LT] = ACTIONS(3785), - [anon_sym_return] = ACTIONS(3787), - [anon_sym_type] = ACTIONS(3787), - [anon_sym_do] = ACTIONS(3787), - [anon_sym_let] = ACTIONS(3787), - [anon_sym_let_BANG] = ACTIONS(3785), - [anon_sym_LPAREN] = ACTIONS(3787), - [anon_sym_null] = ACTIONS(3787), - [anon_sym_AMP] = ACTIONS(3787), - [anon_sym_LBRACK] = ACTIONS(3787), - [anon_sym_LBRACK_PIPE] = ACTIONS(3785), - [anon_sym_LBRACE] = ACTIONS(3787), - [anon_sym_LBRACE_PIPE] = ACTIONS(3785), - [anon_sym_new] = ACTIONS(3787), - [anon_sym_return_BANG] = ACTIONS(3785), - [anon_sym_yield] = ACTIONS(3787), - [anon_sym_yield_BANG] = ACTIONS(3785), - [anon_sym_lazy] = ACTIONS(3787), - [anon_sym_assert] = ACTIONS(3787), - [anon_sym_upcast] = ACTIONS(3787), - [anon_sym_downcast] = ACTIONS(3787), - [anon_sym_LT_AT] = ACTIONS(3787), - [anon_sym_LT_AT_AT] = ACTIONS(3785), - [anon_sym_for] = ACTIONS(3787), - [anon_sym_while] = ACTIONS(3787), - [anon_sym_if] = ACTIONS(3787), - [anon_sym_fun] = ACTIONS(3787), - [anon_sym_try] = ACTIONS(3787), - [anon_sym_match] = ACTIONS(3787), - [anon_sym_match_BANG] = ACTIONS(3785), - [anon_sym_function] = ACTIONS(3787), - [anon_sym_use] = ACTIONS(3787), - [anon_sym_use_BANG] = ACTIONS(3785), - [anon_sym_do_BANG] = ACTIONS(3785), - [anon_sym_begin] = ACTIONS(3787), - [aux_sym_char_token1] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3787), - [anon_sym_DQUOTE] = ACTIONS(3787), - [anon_sym_AT_DQUOTE] = ACTIONS(3785), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3785), - [sym_bool] = ACTIONS(3787), - [sym_unit] = ACTIONS(3785), - [anon_sym_LPAREN_PIPE] = ACTIONS(3787), - [sym_op_identifier] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_PLUS_DOT] = ACTIONS(3785), - [anon_sym_DASH_DOT] = ACTIONS(3785), - [anon_sym_PERCENT] = ACTIONS(3785), - [anon_sym_AMP_AMP] = ACTIONS(3785), - [anon_sym_TILDE] = ACTIONS(3785), - [aux_sym_prefix_op_token1] = ACTIONS(3785), - [sym_int] = ACTIONS(3787), - [sym_xint] = ACTIONS(3785), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(3785), - [anon_sym_POUNDload] = ACTIONS(3785), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3785), - [sym__dedent] = ACTIONS(3785), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3043] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4074), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3043), [sym_block_comment] = STATE(3043), [sym_line_comment] = STATE(3043), [sym_compiler_directive_decl] = STATE(3043), [sym_fsi_directive_decl] = STATE(3043), [sym_preproc_line] = STATE(3043), - [sym_identifier] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_let_BANG] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_LBRACK_PIPE] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_LBRACE_PIPE] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_return_BANG] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_yield_BANG] = ACTIONS(2902), - [anon_sym_lazy] = ACTIONS(2900), - [anon_sym_assert] = ACTIONS(2900), - [anon_sym_upcast] = ACTIONS(2900), - [anon_sym_downcast] = ACTIONS(2900), - [anon_sym_LT_AT] = ACTIONS(2900), - [anon_sym_LT_AT_AT] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_fun] = ACTIONS(2900), - [anon_sym_DASH_GT] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_match_BANG] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2900), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_use_BANG] = ACTIONS(2902), - [anon_sym_do_BANG] = ACTIONS(2902), - [anon_sym_begin] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_LT2] = ACTIONS(2900), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2902), - [aux_sym_char_token1] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_AT_DQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2902), - [sym_bool] = ACTIONS(2900), - [sym_unit] = ACTIONS(2902), - [anon_sym_LPAREN_PIPE] = ACTIONS(2900), - [sym_op_identifier] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS_DOT] = ACTIONS(2902), - [anon_sym_DASH_DOT] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [aux_sym_prefix_op_token1] = ACTIONS(2902), - [sym_int] = ACTIONS(2900), - [sym_xint] = ACTIONS(2902), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2902), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3044] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7769), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4078), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3044), [sym_block_comment] = STATE(3044), [sym_line_comment] = STATE(3044), [sym_compiler_directive_decl] = STATE(3044), [sym_fsi_directive_decl] = STATE(3044), [sym_preproc_line] = STATE(3044), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -358424,599 +366845,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3045] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5446), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3045), [sym_block_comment] = STATE(3045), [sym_line_comment] = STATE(3045), [sym_compiler_directive_decl] = STATE(3045), [sym_fsi_directive_decl] = STATE(3045), [sym_preproc_line] = STATE(3045), - [sym_identifier] = ACTIONS(5424), - [anon_sym_module] = ACTIONS(5424), - [anon_sym_open] = ACTIONS(5424), - [anon_sym_LBRACK_LT] = ACTIONS(5422), - [anon_sym_return] = ACTIONS(5424), - [anon_sym_type] = ACTIONS(5424), - [anon_sym_do] = ACTIONS(5424), - [anon_sym_let] = ACTIONS(5424), - [anon_sym_let_BANG] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5424), - [anon_sym_null] = ACTIONS(5424), - [anon_sym_AMP] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_LBRACK_PIPE] = ACTIONS(5422), - [anon_sym_LBRACE] = ACTIONS(5424), - [anon_sym_LBRACE_PIPE] = ACTIONS(5422), - [anon_sym_new] = ACTIONS(5424), - [anon_sym_return_BANG] = ACTIONS(5422), - [anon_sym_yield] = ACTIONS(5424), - [anon_sym_yield_BANG] = ACTIONS(5422), - [anon_sym_lazy] = ACTIONS(5424), - [anon_sym_assert] = ACTIONS(5424), - [anon_sym_upcast] = ACTIONS(5424), - [anon_sym_downcast] = ACTIONS(5424), - [anon_sym_LT_AT] = ACTIONS(5424), - [anon_sym_LT_AT_AT] = ACTIONS(5422), - [anon_sym_for] = ACTIONS(5424), - [anon_sym_while] = ACTIONS(5424), - [anon_sym_if] = ACTIONS(5424), - [anon_sym_fun] = ACTIONS(5424), - [anon_sym_try] = ACTIONS(5424), - [anon_sym_match] = ACTIONS(5424), - [anon_sym_match_BANG] = ACTIONS(5422), - [anon_sym_function] = ACTIONS(5424), - [anon_sym_use] = ACTIONS(5424), - [anon_sym_use_BANG] = ACTIONS(5422), - [anon_sym_do_BANG] = ACTIONS(5422), - [anon_sym_begin] = ACTIONS(5424), - [aux_sym_char_token1] = ACTIONS(5422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5424), - [anon_sym_DQUOTE] = ACTIONS(5424), - [anon_sym_AT_DQUOTE] = ACTIONS(5422), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), - [sym_bool] = ACTIONS(5424), - [sym_unit] = ACTIONS(5422), - [anon_sym_LPAREN_PIPE] = ACTIONS(5424), - [sym_op_identifier] = ACTIONS(5422), - [anon_sym_PLUS] = ACTIONS(5424), - [anon_sym_DASH] = ACTIONS(5424), - [anon_sym_PLUS_DOT] = ACTIONS(5422), - [anon_sym_DASH_DOT] = ACTIONS(5422), - [anon_sym_PERCENT] = ACTIONS(5422), - [anon_sym_AMP_AMP] = ACTIONS(5422), - [anon_sym_TILDE] = ACTIONS(5422), - [aux_sym_prefix_op_token1] = ACTIONS(5422), - [sym_int] = ACTIONS(5424), - [sym_xint] = ACTIONS(5422), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5422), - [anon_sym_POUNDload] = ACTIONS(5422), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5422), - [sym__dedent] = ACTIONS(5422), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3046] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5694), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3046), [sym_block_comment] = STATE(3046), [sym_line_comment] = STATE(3046), [sym_compiler_directive_decl] = STATE(3046), [sym_fsi_directive_decl] = STATE(3046), [sym_preproc_line] = STATE(3046), - [sym_identifier] = ACTIONS(5396), - [anon_sym_module] = ACTIONS(5396), - [anon_sym_open] = ACTIONS(5396), - [anon_sym_LBRACK_LT] = ACTIONS(5394), - [anon_sym_return] = ACTIONS(5396), - [anon_sym_type] = ACTIONS(5396), - [anon_sym_do] = ACTIONS(5396), - [anon_sym_let] = ACTIONS(5396), - [anon_sym_let_BANG] = ACTIONS(5394), - [anon_sym_LPAREN] = ACTIONS(5396), - [anon_sym_null] = ACTIONS(5396), - [anon_sym_AMP] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5396), - [anon_sym_LBRACK_PIPE] = ACTIONS(5394), - [anon_sym_LBRACE] = ACTIONS(5396), - [anon_sym_LBRACE_PIPE] = ACTIONS(5394), - [anon_sym_new] = ACTIONS(5396), - [anon_sym_return_BANG] = ACTIONS(5394), - [anon_sym_yield] = ACTIONS(5396), - [anon_sym_yield_BANG] = ACTIONS(5394), - [anon_sym_lazy] = ACTIONS(5396), - [anon_sym_assert] = ACTIONS(5396), - [anon_sym_upcast] = ACTIONS(5396), - [anon_sym_downcast] = ACTIONS(5396), - [anon_sym_LT_AT] = ACTIONS(5396), - [anon_sym_LT_AT_AT] = ACTIONS(5394), - [anon_sym_for] = ACTIONS(5396), - [anon_sym_while] = ACTIONS(5396), - [anon_sym_if] = ACTIONS(5396), - [anon_sym_fun] = ACTIONS(5396), - [anon_sym_try] = ACTIONS(5396), - [anon_sym_match] = ACTIONS(5396), - [anon_sym_match_BANG] = ACTIONS(5394), - [anon_sym_function] = ACTIONS(5396), - [anon_sym_use] = ACTIONS(5396), - [anon_sym_use_BANG] = ACTIONS(5394), - [anon_sym_do_BANG] = ACTIONS(5394), - [anon_sym_begin] = ACTIONS(5396), - [aux_sym_char_token1] = ACTIONS(5394), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5396), - [anon_sym_DQUOTE] = ACTIONS(5396), - [anon_sym_AT_DQUOTE] = ACTIONS(5394), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), - [sym_bool] = ACTIONS(5396), - [sym_unit] = ACTIONS(5394), - [anon_sym_LPAREN_PIPE] = ACTIONS(5396), - [sym_op_identifier] = ACTIONS(5394), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_DASH] = ACTIONS(5396), - [anon_sym_PLUS_DOT] = ACTIONS(5394), - [anon_sym_DASH_DOT] = ACTIONS(5394), - [anon_sym_PERCENT] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_TILDE] = ACTIONS(5394), - [aux_sym_prefix_op_token1] = ACTIONS(5394), - [sym_int] = ACTIONS(5396), - [sym_xint] = ACTIONS(5394), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5394), - [anon_sym_POUNDload] = ACTIONS(5394), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5394), - [sym__dedent] = ACTIONS(5394), }, [3047] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5447), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3047), [sym_block_comment] = STATE(3047), [sym_line_comment] = STATE(3047), [sym_compiler_directive_decl] = STATE(3047), [sym_fsi_directive_decl] = STATE(3047), [sym_preproc_line] = STATE(3047), - [sym_identifier] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_let_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_LBRACK_PIPE] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_LBRACE_PIPE] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_return_BANG] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_yield_BANG] = ACTIONS(2926), - [anon_sym_lazy] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_upcast] = ACTIONS(2924), - [anon_sym_downcast] = ACTIONS(2924), - [anon_sym_LT_AT] = ACTIONS(2924), - [anon_sym_LT_AT_AT] = ACTIONS(2926), - [anon_sym_COLON_GT] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_fun] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_match_BANG] = ACTIONS(2926), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_use] = ACTIONS(2924), - [anon_sym_use_BANG] = ACTIONS(2926), - [anon_sym_do_BANG] = ACTIONS(2926), - [anon_sym_begin] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_LT2] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2926), - [aux_sym_char_token1] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [anon_sym_AT_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2926), - [sym_bool] = ACTIONS(2924), - [sym_unit] = ACTIONS(2926), - [anon_sym_LPAREN_PIPE] = ACTIONS(2924), - [sym_op_identifier] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_PLUS_DOT] = ACTIONS(2926), - [anon_sym_DASH_DOT] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [aux_sym_prefix_op_token1] = ACTIONS(2926), - [sym_int] = ACTIONS(2924), - [sym_xint] = ACTIONS(2926), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2926), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3048] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4123), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3048), [sym_block_comment] = STATE(3048), [sym_line_comment] = STATE(3048), [sym_compiler_directive_decl] = STATE(3048), [sym_fsi_directive_decl] = STATE(3048), [sym_preproc_line] = STATE(3048), - [aux_sym__compound_type_repeat1] = STATE(3048), - [sym_identifier] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_let_BANG] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_null] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_LBRACE_PIPE] = ACTIONS(2808), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_return_BANG] = ACTIONS(2808), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_yield_BANG] = ACTIONS(2808), - [anon_sym_lazy] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_upcast] = ACTIONS(2810), - [anon_sym_downcast] = ACTIONS(2810), - [anon_sym_LT_AT] = ACTIONS(2810), - [anon_sym_LT_AT_AT] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_fun] = ACTIONS(2810), - [anon_sym_DASH_GT] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_match_BANG] = ACTIONS(2808), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_use] = ACTIONS(2810), - [anon_sym_use_BANG] = ACTIONS(2808), - [anon_sym_do_BANG] = ACTIONS(2808), - [anon_sym_begin] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(5458), - [anon_sym_LT2] = ACTIONS(2810), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2808), - [aux_sym_char_token1] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2810), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_AT_DQUOTE] = ACTIONS(2808), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2808), - [sym_bool] = ACTIONS(2810), - [sym_unit] = ACTIONS(2808), - [anon_sym_LPAREN_PIPE] = ACTIONS(2810), - [sym_op_identifier] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS_DOT] = ACTIONS(2808), - [anon_sym_DASH_DOT] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [aux_sym_prefix_op_token1] = ACTIONS(2808), - [sym_int] = ACTIONS(2810), - [sym_xint] = ACTIONS(2808), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2808), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3049] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5448), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3049), [sym_block_comment] = STATE(3049), [sym_line_comment] = STATE(3049), [sym_compiler_directive_decl] = STATE(3049), [sym_fsi_directive_decl] = STATE(3049), [sym_preproc_line] = STATE(3049), - [sym_identifier] = ACTIONS(5358), - [anon_sym_module] = ACTIONS(5358), - [anon_sym_open] = ACTIONS(5358), - [anon_sym_LBRACK_LT] = ACTIONS(5356), - [anon_sym_return] = ACTIONS(5358), - [anon_sym_type] = ACTIONS(5358), - [anon_sym_do] = ACTIONS(5358), - [anon_sym_let] = ACTIONS(5358), - [anon_sym_let_BANG] = ACTIONS(5356), - [anon_sym_LPAREN] = ACTIONS(5358), - [anon_sym_null] = ACTIONS(5358), - [anon_sym_AMP] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(5358), - [anon_sym_LBRACK_PIPE] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(5358), - [anon_sym_LBRACE_PIPE] = ACTIONS(5356), - [anon_sym_new] = ACTIONS(5358), - [anon_sym_return_BANG] = ACTIONS(5356), - [anon_sym_yield] = ACTIONS(5358), - [anon_sym_yield_BANG] = ACTIONS(5356), - [anon_sym_lazy] = ACTIONS(5358), - [anon_sym_assert] = ACTIONS(5358), - [anon_sym_upcast] = ACTIONS(5358), - [anon_sym_downcast] = ACTIONS(5358), - [anon_sym_LT_AT] = ACTIONS(5358), - [anon_sym_LT_AT_AT] = ACTIONS(5356), - [anon_sym_for] = ACTIONS(5358), - [anon_sym_while] = ACTIONS(5358), - [anon_sym_if] = ACTIONS(5358), - [anon_sym_fun] = ACTIONS(5358), - [anon_sym_try] = ACTIONS(5358), - [anon_sym_match] = ACTIONS(5358), - [anon_sym_match_BANG] = ACTIONS(5356), - [anon_sym_function] = ACTIONS(5358), - [anon_sym_use] = ACTIONS(5358), - [anon_sym_use_BANG] = ACTIONS(5356), - [anon_sym_do_BANG] = ACTIONS(5356), - [anon_sym_begin] = ACTIONS(5358), - [aux_sym_char_token1] = ACTIONS(5356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5358), - [anon_sym_DQUOTE] = ACTIONS(5358), - [anon_sym_AT_DQUOTE] = ACTIONS(5356), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5356), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5356), - [sym_bool] = ACTIONS(5358), - [sym_unit] = ACTIONS(5356), - [anon_sym_LPAREN_PIPE] = ACTIONS(5358), - [sym_op_identifier] = ACTIONS(5356), - [anon_sym_PLUS] = ACTIONS(5358), - [anon_sym_DASH] = ACTIONS(5358), - [anon_sym_PLUS_DOT] = ACTIONS(5356), - [anon_sym_DASH_DOT] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5356), - [anon_sym_AMP_AMP] = ACTIONS(5356), - [anon_sym_TILDE] = ACTIONS(5356), - [aux_sym_prefix_op_token1] = ACTIONS(5356), - [sym_int] = ACTIONS(5358), - [sym_xint] = ACTIONS(5356), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5356), - [anon_sym_POUNDload] = ACTIONS(5356), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5356), - [sym__dedent] = ACTIONS(5356), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3050] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4093), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3050), [sym_block_comment] = STATE(3050), [sym_line_comment] = STATE(3050), [sym_compiler_directive_decl] = STATE(3050), [sym_fsi_directive_decl] = STATE(3050), [sym_preproc_line] = STATE(3050), - [sym_identifier] = ACTIONS(5354), - [anon_sym_module] = ACTIONS(5354), - [anon_sym_open] = ACTIONS(5354), - [anon_sym_LBRACK_LT] = ACTIONS(5352), - [anon_sym_return] = ACTIONS(5354), - [anon_sym_type] = ACTIONS(5354), - [anon_sym_do] = ACTIONS(5354), - [anon_sym_let] = ACTIONS(5354), - [anon_sym_let_BANG] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5354), - [anon_sym_null] = ACTIONS(5354), - [anon_sym_AMP] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5354), - [anon_sym_LBRACK_PIPE] = ACTIONS(5352), - [anon_sym_LBRACE] = ACTIONS(5354), - [anon_sym_LBRACE_PIPE] = ACTIONS(5352), - [anon_sym_new] = ACTIONS(5354), - [anon_sym_return_BANG] = ACTIONS(5352), - [anon_sym_yield] = ACTIONS(5354), - [anon_sym_yield_BANG] = ACTIONS(5352), - [anon_sym_lazy] = ACTIONS(5354), - [anon_sym_assert] = ACTIONS(5354), - [anon_sym_upcast] = ACTIONS(5354), - [anon_sym_downcast] = ACTIONS(5354), - [anon_sym_LT_AT] = ACTIONS(5354), - [anon_sym_LT_AT_AT] = ACTIONS(5352), - [anon_sym_for] = ACTIONS(5354), - [anon_sym_while] = ACTIONS(5354), - [anon_sym_if] = ACTIONS(5354), - [anon_sym_fun] = ACTIONS(5354), - [anon_sym_try] = ACTIONS(5354), - [anon_sym_match] = ACTIONS(5354), - [anon_sym_match_BANG] = ACTIONS(5352), - [anon_sym_function] = ACTIONS(5354), - [anon_sym_use] = ACTIONS(5354), - [anon_sym_use_BANG] = ACTIONS(5352), - [anon_sym_do_BANG] = ACTIONS(5352), - [anon_sym_begin] = ACTIONS(5354), - [aux_sym_char_token1] = ACTIONS(5352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5354), - [anon_sym_DQUOTE] = ACTIONS(5354), - [anon_sym_AT_DQUOTE] = ACTIONS(5352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5352), - [sym_bool] = ACTIONS(5354), - [sym_unit] = ACTIONS(5352), - [anon_sym_LPAREN_PIPE] = ACTIONS(5354), - [sym_op_identifier] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_PLUS_DOT] = ACTIONS(5352), - [anon_sym_DASH_DOT] = ACTIONS(5352), - [anon_sym_PERCENT] = ACTIONS(5352), - [anon_sym_AMP_AMP] = ACTIONS(5352), - [anon_sym_TILDE] = ACTIONS(5352), - [aux_sym_prefix_op_token1] = ACTIONS(5352), - [sym_int] = ACTIONS(5354), - [sym_xint] = ACTIONS(5352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5352), - [anon_sym_POUNDload] = ACTIONS(5352), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5352), - [sym__dedent] = ACTIONS(5352), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3051] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5449), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3051), [sym_block_comment] = STATE(3051), [sym_line_comment] = STATE(3051), [sym_compiler_directive_decl] = STATE(3051), [sym_fsi_directive_decl] = STATE(3051), [sym_preproc_line] = STATE(3051), - [sym_identifier] = ACTIONS(5368), - [anon_sym_module] = ACTIONS(5368), - [anon_sym_open] = ACTIONS(5368), - [anon_sym_LBRACK_LT] = ACTIONS(5366), - [anon_sym_return] = ACTIONS(5368), - [anon_sym_type] = ACTIONS(5368), - [anon_sym_do] = ACTIONS(5368), - [anon_sym_let] = ACTIONS(5368), - [anon_sym_let_BANG] = ACTIONS(5366), - [anon_sym_LPAREN] = ACTIONS(5368), - [anon_sym_null] = ACTIONS(5368), - [anon_sym_AMP] = ACTIONS(5368), - [anon_sym_LBRACK] = ACTIONS(5368), - [anon_sym_LBRACK_PIPE] = ACTIONS(5366), - [anon_sym_LBRACE] = ACTIONS(5368), - [anon_sym_LBRACE_PIPE] = ACTIONS(5366), - [anon_sym_new] = ACTIONS(5368), - [anon_sym_return_BANG] = ACTIONS(5366), - [anon_sym_yield] = ACTIONS(5368), - [anon_sym_yield_BANG] = ACTIONS(5366), - [anon_sym_lazy] = ACTIONS(5368), - [anon_sym_assert] = ACTIONS(5368), - [anon_sym_upcast] = ACTIONS(5368), - [anon_sym_downcast] = ACTIONS(5368), - [anon_sym_LT_AT] = ACTIONS(5368), - [anon_sym_LT_AT_AT] = ACTIONS(5366), - [anon_sym_for] = ACTIONS(5368), - [anon_sym_while] = ACTIONS(5368), - [anon_sym_if] = ACTIONS(5368), - [anon_sym_fun] = ACTIONS(5368), - [anon_sym_try] = ACTIONS(5368), - [anon_sym_match] = ACTIONS(5368), - [anon_sym_match_BANG] = ACTIONS(5366), - [anon_sym_function] = ACTIONS(5368), - [anon_sym_use] = ACTIONS(5368), - [anon_sym_use_BANG] = ACTIONS(5366), - [anon_sym_do_BANG] = ACTIONS(5366), - [anon_sym_begin] = ACTIONS(5368), - [aux_sym_char_token1] = ACTIONS(5366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5368), - [anon_sym_DQUOTE] = ACTIONS(5368), - [anon_sym_AT_DQUOTE] = ACTIONS(5366), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), - [sym_bool] = ACTIONS(5368), - [sym_unit] = ACTIONS(5366), - [anon_sym_LPAREN_PIPE] = ACTIONS(5368), - [sym_op_identifier] = ACTIONS(5366), - [anon_sym_PLUS] = ACTIONS(5368), - [anon_sym_DASH] = ACTIONS(5368), - [anon_sym_PLUS_DOT] = ACTIONS(5366), - [anon_sym_DASH_DOT] = ACTIONS(5366), - [anon_sym_PERCENT] = ACTIONS(5366), - [anon_sym_AMP_AMP] = ACTIONS(5366), - [anon_sym_TILDE] = ACTIONS(5366), - [aux_sym_prefix_op_token1] = ACTIONS(5366), - [sym_int] = ACTIONS(5368), - [sym_xint] = ACTIONS(5366), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5366), - [anon_sym_POUNDload] = ACTIONS(5366), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5366), - [sym__dedent] = ACTIONS(5366), }, [3052] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7466), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5651), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3052), [sym_block_comment] = STATE(3052), [sym_line_comment] = STATE(3052), [sym_compiler_directive_decl] = STATE(3052), [sym_fsi_directive_decl] = STATE(3052), [sym_preproc_line] = STATE(3052), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -359024,74 +367517,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3053] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7077), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4133), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3053), [sym_block_comment] = STATE(3053), [sym_line_comment] = STATE(3053), [sym_compiler_directive_decl] = STATE(3053), [sym_fsi_directive_decl] = STATE(3053), [sym_preproc_line] = STATE(3053), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -359099,79 +367601,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3054] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4080), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3054), [sym_block_comment] = STATE(3054), [sym_line_comment] = STATE(3054), [sym_compiler_directive_decl] = STATE(3054), [sym_fsi_directive_decl] = STATE(3054), [sym_preproc_line] = STATE(3054), - [sym_identifier] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), - [sym__dedent] = ACTIONS(3009), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3055] = { [sym_xml_doc] = STATE(3055), @@ -359180,73 +367691,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3055), [sym_fsi_directive_decl] = STATE(3055), [sym_preproc_line] = STATE(3055), - [sym_identifier] = ACTIONS(5350), - [anon_sym_module] = ACTIONS(5350), - [anon_sym_open] = ACTIONS(5350), - [anon_sym_LBRACK_LT] = ACTIONS(5348), - [anon_sym_return] = ACTIONS(5350), - [anon_sym_type] = ACTIONS(5350), - [anon_sym_do] = ACTIONS(5350), - [anon_sym_let] = ACTIONS(5350), - [anon_sym_let_BANG] = ACTIONS(5348), - [anon_sym_LPAREN] = ACTIONS(5350), - [anon_sym_null] = ACTIONS(5350), - [anon_sym_AMP] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(5350), - [anon_sym_LBRACK_PIPE] = ACTIONS(5348), - [anon_sym_LBRACE] = ACTIONS(5350), - [anon_sym_LBRACE_PIPE] = ACTIONS(5348), - [anon_sym_new] = ACTIONS(5350), - [anon_sym_return_BANG] = ACTIONS(5348), - [anon_sym_yield] = ACTIONS(5350), - [anon_sym_yield_BANG] = ACTIONS(5348), - [anon_sym_lazy] = ACTIONS(5350), - [anon_sym_assert] = ACTIONS(5350), - [anon_sym_upcast] = ACTIONS(5350), - [anon_sym_downcast] = ACTIONS(5350), - [anon_sym_LT_AT] = ACTIONS(5350), - [anon_sym_LT_AT_AT] = ACTIONS(5348), - [anon_sym_for] = ACTIONS(5350), - [anon_sym_while] = ACTIONS(5350), - [anon_sym_if] = ACTIONS(5350), - [anon_sym_fun] = ACTIONS(5350), - [anon_sym_try] = ACTIONS(5350), - [anon_sym_match] = ACTIONS(5350), - [anon_sym_match_BANG] = ACTIONS(5348), - [anon_sym_function] = ACTIONS(5350), - [anon_sym_use] = ACTIONS(5350), - [anon_sym_use_BANG] = ACTIONS(5348), - [anon_sym_do_BANG] = ACTIONS(5348), - [anon_sym_begin] = ACTIONS(5350), - [aux_sym_char_token1] = ACTIONS(5348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), - [anon_sym_DQUOTE] = ACTIONS(5350), - [anon_sym_AT_DQUOTE] = ACTIONS(5348), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), - [sym_bool] = ACTIONS(5350), - [sym_unit] = ACTIONS(5348), - [anon_sym_LPAREN_PIPE] = ACTIONS(5350), - [sym_op_identifier] = ACTIONS(5348), - [anon_sym_PLUS] = ACTIONS(5350), - [anon_sym_DASH] = ACTIONS(5350), - [anon_sym_PLUS_DOT] = ACTIONS(5348), - [anon_sym_DASH_DOT] = ACTIONS(5348), - [anon_sym_PERCENT] = ACTIONS(5348), - [anon_sym_AMP_AMP] = ACTIONS(5348), - [anon_sym_TILDE] = ACTIONS(5348), - [aux_sym_prefix_op_token1] = ACTIONS(5348), - [sym_int] = ACTIONS(5350), - [sym_xint] = ACTIONS(5348), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5348), - [anon_sym_POUNDload] = ACTIONS(5348), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5348), - [sym__dedent] = ACTIONS(5348), + [ts_builtin_sym_end] = ACTIONS(5436), + [sym_identifier] = ACTIONS(5438), + [anon_sym_namespace] = ACTIONS(5438), + [anon_sym_module] = ACTIONS(5438), + [anon_sym_open] = ACTIONS(5438), + [anon_sym_LBRACK_LT] = ACTIONS(5436), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_do] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_let_BANG] = ACTIONS(5436), + [aux_sym_access_modifier_token1] = ACTIONS(5436), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_LBRACK_PIPE] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LT_AT] = ACTIONS(5438), + [anon_sym_LT_AT_AT] = ACTIONS(5436), + [anon_sym_LBRACE_PIPE] = ACTIONS(5436), + [anon_sym_new] = ACTIONS(5438), + [anon_sym_return_BANG] = ACTIONS(5436), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_yield_BANG] = ACTIONS(5436), + [anon_sym_lazy] = ACTIONS(5438), + [anon_sym_assert] = ACTIONS(5438), + [anon_sym_upcast] = ACTIONS(5438), + [anon_sym_downcast] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_fun] = ACTIONS(5438), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_match_BANG] = ACTIONS(5436), + [anon_sym_function] = ACTIONS(5438), + [anon_sym_use] = ACTIONS(5438), + [anon_sym_use_BANG] = ACTIONS(5436), + [anon_sym_do_BANG] = ACTIONS(5436), + [anon_sym_begin] = ACTIONS(5438), + [anon_sym_default] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5438), + [anon_sym_member] = ACTIONS(5438), + [anon_sym_abstract] = ACTIONS(5438), + [anon_sym_override] = ACTIONS(5438), + [anon_sym_val] = ACTIONS(5438), + [aux_sym_char_token1] = ACTIONS(5436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5438), + [anon_sym_DQUOTE] = ACTIONS(5438), + [anon_sym_AT_DQUOTE] = ACTIONS(5436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5436), + [sym_bool] = ACTIONS(5438), + [sym_unit] = ACTIONS(5436), + [anon_sym_LPAREN_PIPE] = ACTIONS(5438), + [sym_op_identifier] = ACTIONS(5436), + [anon_sym_PLUS] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_PLUS_DOT] = ACTIONS(5436), + [anon_sym_DASH_DOT] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5436), + [anon_sym_AMP_AMP] = ACTIONS(5436), + [anon_sym_TILDE] = ACTIONS(5436), + [aux_sym_prefix_op_token1] = ACTIONS(5436), + [sym_int] = ACTIONS(5438), + [sym_xint] = ACTIONS(5436), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5436), + [anon_sym_POUNDload] = ACTIONS(5436), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5436), }, [3056] = { [sym_xml_doc] = STATE(3056), @@ -359255,1043 +367775,1169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3056), [sym_fsi_directive_decl] = STATE(3056), [sym_preproc_line] = STATE(3056), - [aux_sym__compound_type_repeat1] = STATE(3048), - [sym_identifier] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_let_BANG] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LBRACK_PIPE] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_LBRACE_PIPE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_return_BANG] = ACTIONS(2972), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_yield_BANG] = ACTIONS(2972), - [anon_sym_lazy] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_upcast] = ACTIONS(2970), - [anon_sym_downcast] = ACTIONS(2970), - [anon_sym_LT_AT] = ACTIONS(2970), - [anon_sym_LT_AT_AT] = ACTIONS(2972), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_fun] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2972), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_match_BANG] = ACTIONS(2972), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_use] = ACTIONS(2970), - [anon_sym_use_BANG] = ACTIONS(2972), - [anon_sym_do_BANG] = ACTIONS(2972), - [anon_sym_begin] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2970), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2972), - [aux_sym_char_token1] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_AT_DQUOTE] = ACTIONS(2972), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2972), - [sym_bool] = ACTIONS(2970), - [sym_unit] = ACTIONS(2972), - [anon_sym_LPAREN_PIPE] = ACTIONS(2970), - [sym_op_identifier] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_PLUS_DOT] = ACTIONS(2972), - [anon_sym_DASH_DOT] = ACTIONS(2972), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_TILDE] = ACTIONS(2972), - [aux_sym_prefix_op_token1] = ACTIONS(2972), - [sym_int] = ACTIONS(2970), - [sym_xint] = ACTIONS(2972), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2972), + [ts_builtin_sym_end] = ACTIONS(5440), + [sym_identifier] = ACTIONS(5442), + [anon_sym_namespace] = ACTIONS(5442), + [anon_sym_module] = ACTIONS(5442), + [anon_sym_open] = ACTIONS(5442), + [anon_sym_LBRACK_LT] = ACTIONS(5440), + [anon_sym_return] = ACTIONS(5442), + [anon_sym_type] = ACTIONS(5442), + [anon_sym_do] = ACTIONS(5442), + [anon_sym_and] = ACTIONS(5442), + [anon_sym_let] = ACTIONS(5442), + [anon_sym_let_BANG] = ACTIONS(5440), + [aux_sym_access_modifier_token1] = ACTIONS(5440), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_null] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_LBRACK_PIPE] = ACTIONS(5440), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_LT_AT] = ACTIONS(5442), + [anon_sym_LT_AT_AT] = ACTIONS(5440), + [anon_sym_LBRACE_PIPE] = ACTIONS(5440), + [anon_sym_new] = ACTIONS(5442), + [anon_sym_return_BANG] = ACTIONS(5440), + [anon_sym_yield] = ACTIONS(5442), + [anon_sym_yield_BANG] = ACTIONS(5440), + [anon_sym_lazy] = ACTIONS(5442), + [anon_sym_assert] = ACTIONS(5442), + [anon_sym_upcast] = ACTIONS(5442), + [anon_sym_downcast] = ACTIONS(5442), + [anon_sym_for] = ACTIONS(5442), + [anon_sym_while] = ACTIONS(5442), + [anon_sym_if] = ACTIONS(5442), + [anon_sym_fun] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5442), + [anon_sym_match] = ACTIONS(5442), + [anon_sym_match_BANG] = ACTIONS(5440), + [anon_sym_function] = ACTIONS(5442), + [anon_sym_use] = ACTIONS(5442), + [anon_sym_use_BANG] = ACTIONS(5440), + [anon_sym_do_BANG] = ACTIONS(5440), + [anon_sym_begin] = ACTIONS(5442), + [anon_sym_default] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5442), + [anon_sym_member] = ACTIONS(5442), + [anon_sym_abstract] = ACTIONS(5442), + [anon_sym_override] = ACTIONS(5442), + [anon_sym_val] = ACTIONS(5442), + [aux_sym_char_token1] = ACTIONS(5440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_AT_DQUOTE] = ACTIONS(5440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5440), + [sym_bool] = ACTIONS(5442), + [sym_unit] = ACTIONS(5440), + [anon_sym_LPAREN_PIPE] = ACTIONS(5442), + [sym_op_identifier] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5442), + [anon_sym_PLUS_DOT] = ACTIONS(5440), + [anon_sym_DASH_DOT] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_AMP_AMP] = ACTIONS(5440), + [anon_sym_TILDE] = ACTIONS(5440), + [aux_sym_prefix_op_token1] = ACTIONS(5440), + [sym_int] = ACTIONS(5442), + [sym_xint] = ACTIONS(5440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5440), + [anon_sym_POUNDload] = ACTIONS(5440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5440), }, [3057] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5416), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3057), [sym_block_comment] = STATE(3057), [sym_line_comment] = STATE(3057), [sym_compiler_directive_decl] = STATE(3057), [sym_fsi_directive_decl] = STATE(3057), [sym_preproc_line] = STATE(3057), - [sym_identifier] = ACTIONS(5364), - [anon_sym_module] = ACTIONS(5364), - [anon_sym_open] = ACTIONS(5364), - [anon_sym_LBRACK_LT] = ACTIONS(5362), - [anon_sym_return] = ACTIONS(5364), - [anon_sym_type] = ACTIONS(5364), - [anon_sym_do] = ACTIONS(5364), - [anon_sym_let] = ACTIONS(5364), - [anon_sym_let_BANG] = ACTIONS(5362), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_null] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(5364), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_LBRACK_PIPE] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_LBRACE_PIPE] = ACTIONS(5362), - [anon_sym_new] = ACTIONS(5364), - [anon_sym_return_BANG] = ACTIONS(5362), - [anon_sym_yield] = ACTIONS(5364), - [anon_sym_yield_BANG] = ACTIONS(5362), - [anon_sym_lazy] = ACTIONS(5364), - [anon_sym_assert] = ACTIONS(5364), - [anon_sym_upcast] = ACTIONS(5364), - [anon_sym_downcast] = ACTIONS(5364), - [anon_sym_LT_AT] = ACTIONS(5364), - [anon_sym_LT_AT_AT] = ACTIONS(5362), - [anon_sym_for] = ACTIONS(5364), - [anon_sym_while] = ACTIONS(5364), - [anon_sym_if] = ACTIONS(5364), - [anon_sym_fun] = ACTIONS(5364), - [anon_sym_try] = ACTIONS(5364), - [anon_sym_match] = ACTIONS(5364), - [anon_sym_match_BANG] = ACTIONS(5362), - [anon_sym_function] = ACTIONS(5364), - [anon_sym_use] = ACTIONS(5364), - [anon_sym_use_BANG] = ACTIONS(5362), - [anon_sym_do_BANG] = ACTIONS(5362), - [anon_sym_begin] = ACTIONS(5364), - [aux_sym_char_token1] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), - [anon_sym_DQUOTE] = ACTIONS(5364), - [anon_sym_AT_DQUOTE] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [sym_bool] = ACTIONS(5364), - [sym_unit] = ACTIONS(5362), - [anon_sym_LPAREN_PIPE] = ACTIONS(5364), - [sym_op_identifier] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5364), - [anon_sym_PLUS_DOT] = ACTIONS(5362), - [anon_sym_DASH_DOT] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_AMP_AMP] = ACTIONS(5362), - [anon_sym_TILDE] = ACTIONS(5362), - [aux_sym_prefix_op_token1] = ACTIONS(5362), - [sym_int] = ACTIONS(5364), - [sym_xint] = ACTIONS(5362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5362), - [anon_sym_POUNDload] = ACTIONS(5362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5362), - [sym__dedent] = ACTIONS(5362), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3058] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4131), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3058), [sym_block_comment] = STATE(3058), [sym_line_comment] = STATE(3058), [sym_compiler_directive_decl] = STATE(3058), [sym_fsi_directive_decl] = STATE(3058), [sym_preproc_line] = STATE(3058), - [sym_identifier] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3005), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3059] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5876), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3059), [sym_block_comment] = STATE(3059), [sym_line_comment] = STATE(3059), [sym_compiler_directive_decl] = STATE(3059), [sym_fsi_directive_decl] = STATE(3059), [sym_preproc_line] = STATE(3059), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), - [sym__dedent] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5444), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3060] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5882), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3060), [sym_block_comment] = STATE(3060), [sym_line_comment] = STATE(3060), [sym_compiler_directive_decl] = STATE(3060), [sym_fsi_directive_decl] = STATE(3060), [sym_preproc_line] = STATE(3060), - [sym_identifier] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), - [sym__dedent] = ACTIONS(3045), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5446), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3061] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5871), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3061), [sym_block_comment] = STATE(3061), [sym_line_comment] = STATE(3061), [sym_compiler_directive_decl] = STATE(3061), [sym_fsi_directive_decl] = STATE(3061), [sym_preproc_line] = STATE(3061), - [sym_identifier] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), - [sym__dedent] = ACTIONS(3049), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5448), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3062] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5864), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3062), [sym_block_comment] = STATE(3062), [sym_line_comment] = STATE(3062), [sym_compiler_directive_decl] = STATE(3062), [sym_fsi_directive_decl] = STATE(3062), [sym_preproc_line] = STATE(3062), - [sym_identifier] = ACTIONS(5402), - [anon_sym_module] = ACTIONS(5402), - [anon_sym_open] = ACTIONS(5402), - [anon_sym_LBRACK_LT] = ACTIONS(5400), - [anon_sym_return] = ACTIONS(5402), - [anon_sym_type] = ACTIONS(5402), - [anon_sym_do] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_let_BANG] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_null] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_LBRACK_PIPE] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_LBRACE_PIPE] = ACTIONS(5400), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_return_BANG] = ACTIONS(5400), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_yield_BANG] = ACTIONS(5400), - [anon_sym_lazy] = ACTIONS(5402), - [anon_sym_assert] = ACTIONS(5402), - [anon_sym_upcast] = ACTIONS(5402), - [anon_sym_downcast] = ACTIONS(5402), - [anon_sym_LT_AT] = ACTIONS(5402), - [anon_sym_LT_AT_AT] = ACTIONS(5400), - [anon_sym_for] = ACTIONS(5402), - [anon_sym_while] = ACTIONS(5402), - [anon_sym_if] = ACTIONS(5402), - [anon_sym_fun] = ACTIONS(5402), - [anon_sym_try] = ACTIONS(5402), - [anon_sym_match] = ACTIONS(5402), - [anon_sym_match_BANG] = ACTIONS(5400), - [anon_sym_function] = ACTIONS(5402), - [anon_sym_use] = ACTIONS(5402), - [anon_sym_use_BANG] = ACTIONS(5400), - [anon_sym_do_BANG] = ACTIONS(5400), - [anon_sym_begin] = ACTIONS(5402), - [aux_sym_char_token1] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(5402), - [anon_sym_AT_DQUOTE] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [sym_bool] = ACTIONS(5402), - [sym_unit] = ACTIONS(5400), - [anon_sym_LPAREN_PIPE] = ACTIONS(5402), - [sym_op_identifier] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5402), - [anon_sym_PLUS_DOT] = ACTIONS(5400), - [anon_sym_DASH_DOT] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5400), - [anon_sym_AMP_AMP] = ACTIONS(5400), - [anon_sym_TILDE] = ACTIONS(5400), - [aux_sym_prefix_op_token1] = ACTIONS(5400), - [sym_int] = ACTIONS(5402), - [sym_xint] = ACTIONS(5400), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5400), - [anon_sym_POUNDload] = ACTIONS(5400), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5400), - [sym__dedent] = ACTIONS(5400), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5450), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3063] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4082), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3063), [sym_block_comment] = STATE(3063), [sym_line_comment] = STATE(3063), [sym_compiler_directive_decl] = STATE(3063), [sym_fsi_directive_decl] = STATE(3063), [sym_preproc_line] = STATE(3063), - [sym_identifier] = ACTIONS(5418), - [anon_sym_module] = ACTIONS(5418), - [anon_sym_open] = ACTIONS(5418), - [anon_sym_LBRACK_LT] = ACTIONS(5416), - [anon_sym_return] = ACTIONS(5418), - [anon_sym_type] = ACTIONS(5418), - [anon_sym_do] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_let_BANG] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_null] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LBRACK_PIPE] = ACTIONS(5416), - [anon_sym_LBRACE] = ACTIONS(5418), - [anon_sym_LBRACE_PIPE] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_return_BANG] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_yield_BANG] = ACTIONS(5416), - [anon_sym_lazy] = ACTIONS(5418), - [anon_sym_assert] = ACTIONS(5418), - [anon_sym_upcast] = ACTIONS(5418), - [anon_sym_downcast] = ACTIONS(5418), - [anon_sym_LT_AT] = ACTIONS(5418), - [anon_sym_LT_AT_AT] = ACTIONS(5416), - [anon_sym_for] = ACTIONS(5418), - [anon_sym_while] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(5418), - [anon_sym_fun] = ACTIONS(5418), - [anon_sym_try] = ACTIONS(5418), - [anon_sym_match] = ACTIONS(5418), - [anon_sym_match_BANG] = ACTIONS(5416), - [anon_sym_function] = ACTIONS(5418), - [anon_sym_use] = ACTIONS(5418), - [anon_sym_use_BANG] = ACTIONS(5416), - [anon_sym_do_BANG] = ACTIONS(5416), - [anon_sym_begin] = ACTIONS(5418), - [aux_sym_char_token1] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5418), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), [anon_sym_DQUOTE] = ACTIONS(5418), - [anon_sym_AT_DQUOTE] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [sym_bool] = ACTIONS(5418), - [sym_unit] = ACTIONS(5416), - [anon_sym_LPAREN_PIPE] = ACTIONS(5418), - [sym_op_identifier] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_PLUS_DOT] = ACTIONS(5416), - [anon_sym_DASH_DOT] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5416), - [aux_sym_prefix_op_token1] = ACTIONS(5416), - [sym_int] = ACTIONS(5418), - [sym_xint] = ACTIONS(5416), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5416), - [anon_sym_POUNDload] = ACTIONS(5416), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5416), - [sym__dedent] = ACTIONS(5416), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3064] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5630), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3064), [sym_block_comment] = STATE(3064), [sym_line_comment] = STATE(3064), [sym_compiler_directive_decl] = STATE(3064), [sym_fsi_directive_decl] = STATE(3064), [sym_preproc_line] = STATE(3064), - [sym_identifier] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3015), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3065] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5582), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3065), [sym_block_comment] = STATE(3065), [sym_line_comment] = STATE(3065), [sym_compiler_directive_decl] = STATE(3065), [sym_fsi_directive_decl] = STATE(3065), [sym_preproc_line] = STATE(3065), - [sym_identifier] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3075), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3075), - [anon_sym_DASH_DOT] = ACTIONS(3075), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3075), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [aux_sym_float_token1] = ACTIONS(5461), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3066] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5834), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3066), [sym_block_comment] = STATE(3066), [sym_line_comment] = STATE(3066), [sym_compiler_directive_decl] = STATE(3066), [sym_fsi_directive_decl] = STATE(3066), [sym_preproc_line] = STATE(3066), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_COLON_GT] = ACTIONS(5463), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3067] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5631), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3067), [sym_block_comment] = STATE(3067), [sym_line_comment] = STATE(3067), [sym_compiler_directive_decl] = STATE(3067), [sym_fsi_directive_decl] = STATE(3067), [sym_preproc_line] = STATE(3067), - [sym_identifier] = ACTIONS(5364), - [anon_sym_module] = ACTIONS(5364), - [anon_sym_open] = ACTIONS(5364), - [anon_sym_LBRACK_LT] = ACTIONS(5362), - [anon_sym_return] = ACTIONS(5364), - [anon_sym_type] = ACTIONS(5364), - [anon_sym_do] = ACTIONS(5364), - [anon_sym_let] = ACTIONS(5364), - [anon_sym_let_BANG] = ACTIONS(5362), - [anon_sym_LPAREN] = ACTIONS(5364), - [anon_sym_null] = ACTIONS(5364), - [anon_sym_AMP] = ACTIONS(5364), - [anon_sym_LBRACK] = ACTIONS(5364), - [anon_sym_LBRACK_PIPE] = ACTIONS(5362), - [anon_sym_LBRACE] = ACTIONS(5364), - [anon_sym_LBRACE_PIPE] = ACTIONS(5362), - [anon_sym_new] = ACTIONS(5364), - [anon_sym_return_BANG] = ACTIONS(5362), - [anon_sym_yield] = ACTIONS(5364), - [anon_sym_yield_BANG] = ACTIONS(5362), - [anon_sym_lazy] = ACTIONS(5364), - [anon_sym_assert] = ACTIONS(5364), - [anon_sym_upcast] = ACTIONS(5364), - [anon_sym_downcast] = ACTIONS(5364), - [anon_sym_LT_AT] = ACTIONS(5364), - [anon_sym_LT_AT_AT] = ACTIONS(5362), - [anon_sym_for] = ACTIONS(5364), - [anon_sym_while] = ACTIONS(5364), - [anon_sym_if] = ACTIONS(5364), - [anon_sym_fun] = ACTIONS(5364), - [anon_sym_try] = ACTIONS(5364), - [anon_sym_match] = ACTIONS(5364), - [anon_sym_match_BANG] = ACTIONS(5362), - [anon_sym_function] = ACTIONS(5364), - [anon_sym_use] = ACTIONS(5364), - [anon_sym_use_BANG] = ACTIONS(5362), - [anon_sym_do_BANG] = ACTIONS(5362), - [anon_sym_begin] = ACTIONS(5364), - [aux_sym_char_token1] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5364), - [anon_sym_DQUOTE] = ACTIONS(5364), - [anon_sym_AT_DQUOTE] = ACTIONS(5362), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5362), - [sym_bool] = ACTIONS(5364), - [sym_unit] = ACTIONS(5362), - [anon_sym_LPAREN_PIPE] = ACTIONS(5364), - [sym_op_identifier] = ACTIONS(5362), - [anon_sym_PLUS] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5364), - [anon_sym_PLUS_DOT] = ACTIONS(5362), - [anon_sym_DASH_DOT] = ACTIONS(5362), - [anon_sym_PERCENT] = ACTIONS(5362), - [anon_sym_AMP_AMP] = ACTIONS(5362), - [anon_sym_TILDE] = ACTIONS(5362), - [aux_sym_prefix_op_token1] = ACTIONS(5362), - [sym_int] = ACTIONS(5364), - [sym_xint] = ACTIONS(5362), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5362), - [anon_sym_POUNDload] = ACTIONS(5362), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5362), - [sym__dedent] = ACTIONS(5362), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3068] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5684), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3068), [sym_block_comment] = STATE(3068), [sym_line_comment] = STATE(3068), [sym_compiler_directive_decl] = STATE(3068), [sym_fsi_directive_decl] = STATE(3068), [sym_preproc_line] = STATE(3068), - [sym_identifier] = ACTIONS(5436), - [anon_sym_module] = ACTIONS(5436), - [anon_sym_open] = ACTIONS(5436), - [anon_sym_LBRACK_LT] = ACTIONS(5434), - [anon_sym_return] = ACTIONS(5436), - [anon_sym_type] = ACTIONS(5436), - [anon_sym_do] = ACTIONS(5436), - [anon_sym_let] = ACTIONS(5436), - [anon_sym_let_BANG] = ACTIONS(5434), - [anon_sym_LPAREN] = ACTIONS(5436), - [anon_sym_null] = ACTIONS(5436), - [anon_sym_AMP] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5436), - [anon_sym_LBRACK_PIPE] = ACTIONS(5434), - [anon_sym_LBRACE] = ACTIONS(5436), - [anon_sym_LBRACE_PIPE] = ACTIONS(5434), - [anon_sym_new] = ACTIONS(5436), - [anon_sym_return_BANG] = ACTIONS(5434), - [anon_sym_yield] = ACTIONS(5436), - [anon_sym_yield_BANG] = ACTIONS(5434), - [anon_sym_lazy] = ACTIONS(5436), - [anon_sym_assert] = ACTIONS(5436), - [anon_sym_upcast] = ACTIONS(5436), - [anon_sym_downcast] = ACTIONS(5436), - [anon_sym_LT_AT] = ACTIONS(5436), - [anon_sym_LT_AT_AT] = ACTIONS(5434), - [anon_sym_for] = ACTIONS(5436), - [anon_sym_while] = ACTIONS(5436), - [anon_sym_if] = ACTIONS(5436), - [anon_sym_fun] = ACTIONS(5436), - [anon_sym_try] = ACTIONS(5436), - [anon_sym_match] = ACTIONS(5436), - [anon_sym_match_BANG] = ACTIONS(5434), - [anon_sym_function] = ACTIONS(5436), - [anon_sym_use] = ACTIONS(5436), - [anon_sym_use_BANG] = ACTIONS(5434), - [anon_sym_do_BANG] = ACTIONS(5434), - [anon_sym_begin] = ACTIONS(5436), - [aux_sym_char_token1] = ACTIONS(5434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5436), - [anon_sym_DQUOTE] = ACTIONS(5436), - [anon_sym_AT_DQUOTE] = ACTIONS(5434), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5434), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5434), - [sym_bool] = ACTIONS(5436), - [sym_unit] = ACTIONS(5434), - [anon_sym_LPAREN_PIPE] = ACTIONS(5436), - [sym_op_identifier] = ACTIONS(5434), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_DASH] = ACTIONS(5436), - [anon_sym_PLUS_DOT] = ACTIONS(5434), - [anon_sym_DASH_DOT] = ACTIONS(5434), - [anon_sym_PERCENT] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [aux_sym_prefix_op_token1] = ACTIONS(5434), - [sym_int] = ACTIONS(5436), - [sym_xint] = ACTIONS(5434), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5434), - [anon_sym_POUNDload] = ACTIONS(5434), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5434), - [sym__dedent] = ACTIONS(5434), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3069] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(5966), - [sym_type_attributes] = STATE(7335), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5635), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3069), [sym_block_comment] = STATE(3069), [sym_line_comment] = STATE(3069), [sym_compiler_directive_decl] = STATE(3069), [sym_fsi_directive_decl] = STATE(3069), [sym_preproc_line] = STATE(3069), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -360299,379 +368945,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3070] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5831), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3070), [sym_block_comment] = STATE(3070), [sym_line_comment] = STATE(3070), [sym_compiler_directive_decl] = STATE(3070), [sym_fsi_directive_decl] = STATE(3070), [sym_preproc_line] = STATE(3070), - [sym_identifier] = ACTIONS(5384), - [anon_sym_module] = ACTIONS(5384), - [anon_sym_open] = ACTIONS(5384), - [anon_sym_LBRACK_LT] = ACTIONS(5382), - [anon_sym_return] = ACTIONS(5384), - [anon_sym_type] = ACTIONS(5384), - [anon_sym_do] = ACTIONS(5384), - [anon_sym_let] = ACTIONS(5384), - [anon_sym_let_BANG] = ACTIONS(5382), - [anon_sym_LPAREN] = ACTIONS(5384), - [anon_sym_null] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_LBRACK_PIPE] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_LBRACE_PIPE] = ACTIONS(5382), - [anon_sym_new] = ACTIONS(5384), - [anon_sym_return_BANG] = ACTIONS(5382), - [anon_sym_yield] = ACTIONS(5384), - [anon_sym_yield_BANG] = ACTIONS(5382), - [anon_sym_lazy] = ACTIONS(5384), - [anon_sym_assert] = ACTIONS(5384), - [anon_sym_upcast] = ACTIONS(5384), - [anon_sym_downcast] = ACTIONS(5384), - [anon_sym_LT_AT] = ACTIONS(5384), - [anon_sym_LT_AT_AT] = ACTIONS(5382), - [anon_sym_for] = ACTIONS(5384), - [anon_sym_while] = ACTIONS(5384), - [anon_sym_if] = ACTIONS(5384), - [anon_sym_fun] = ACTIONS(5384), - [anon_sym_try] = ACTIONS(5384), - [anon_sym_match] = ACTIONS(5384), - [anon_sym_match_BANG] = ACTIONS(5382), - [anon_sym_function] = ACTIONS(5384), - [anon_sym_use] = ACTIONS(5384), - [anon_sym_use_BANG] = ACTIONS(5382), - [anon_sym_do_BANG] = ACTIONS(5382), - [anon_sym_begin] = ACTIONS(5384), - [aux_sym_char_token1] = ACTIONS(5382), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5384), - [anon_sym_DQUOTE] = ACTIONS(5384), - [anon_sym_AT_DQUOTE] = ACTIONS(5382), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5382), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5382), - [sym_bool] = ACTIONS(5384), - [sym_unit] = ACTIONS(5382), - [anon_sym_LPAREN_PIPE] = ACTIONS(5384), - [sym_op_identifier] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5384), - [anon_sym_PLUS_DOT] = ACTIONS(5382), - [anon_sym_DASH_DOT] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5382), - [anon_sym_AMP_AMP] = ACTIONS(5382), - [anon_sym_TILDE] = ACTIONS(5382), - [aux_sym_prefix_op_token1] = ACTIONS(5382), - [sym_int] = ACTIONS(5384), - [sym_xint] = ACTIONS(5382), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5382), - [anon_sym_POUNDload] = ACTIONS(5382), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5382), - [sym__dedent] = ACTIONS(5382), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3071] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4085), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3071), [sym_block_comment] = STATE(3071), [sym_line_comment] = STATE(3071), [sym_compiler_directive_decl] = STATE(3071), [sym_fsi_directive_decl] = STATE(3071), [sym_preproc_line] = STATE(3071), - [sym_identifier] = ACTIONS(5390), - [anon_sym_module] = ACTIONS(5390), - [anon_sym_open] = ACTIONS(5390), - [anon_sym_LBRACK_LT] = ACTIONS(5388), - [anon_sym_return] = ACTIONS(5390), - [anon_sym_type] = ACTIONS(5390), - [anon_sym_do] = ACTIONS(5390), - [anon_sym_let] = ACTIONS(5390), - [anon_sym_let_BANG] = ACTIONS(5388), - [anon_sym_LPAREN] = ACTIONS(5390), - [anon_sym_null] = ACTIONS(5390), - [anon_sym_AMP] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_LBRACK_PIPE] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(5390), - [anon_sym_LBRACE_PIPE] = ACTIONS(5388), - [anon_sym_new] = ACTIONS(5390), - [anon_sym_return_BANG] = ACTIONS(5388), - [anon_sym_yield] = ACTIONS(5390), - [anon_sym_yield_BANG] = ACTIONS(5388), - [anon_sym_lazy] = ACTIONS(5390), - [anon_sym_assert] = ACTIONS(5390), - [anon_sym_upcast] = ACTIONS(5390), - [anon_sym_downcast] = ACTIONS(5390), - [anon_sym_LT_AT] = ACTIONS(5390), - [anon_sym_LT_AT_AT] = ACTIONS(5388), - [anon_sym_for] = ACTIONS(5390), - [anon_sym_while] = ACTIONS(5390), - [anon_sym_if] = ACTIONS(5390), - [anon_sym_fun] = ACTIONS(5390), - [anon_sym_try] = ACTIONS(5390), - [anon_sym_match] = ACTIONS(5390), - [anon_sym_match_BANG] = ACTIONS(5388), - [anon_sym_function] = ACTIONS(5390), - [anon_sym_use] = ACTIONS(5390), - [anon_sym_use_BANG] = ACTIONS(5388), - [anon_sym_do_BANG] = ACTIONS(5388), - [anon_sym_begin] = ACTIONS(5390), - [aux_sym_char_token1] = ACTIONS(5388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5390), - [anon_sym_DQUOTE] = ACTIONS(5390), - [anon_sym_AT_DQUOTE] = ACTIONS(5388), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5388), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5388), - [sym_bool] = ACTIONS(5390), - [sym_unit] = ACTIONS(5388), - [anon_sym_LPAREN_PIPE] = ACTIONS(5390), - [sym_op_identifier] = ACTIONS(5388), - [anon_sym_PLUS] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_PLUS_DOT] = ACTIONS(5388), - [anon_sym_DASH_DOT] = ACTIONS(5388), - [anon_sym_PERCENT] = ACTIONS(5388), - [anon_sym_AMP_AMP] = ACTIONS(5388), - [anon_sym_TILDE] = ACTIONS(5388), - [aux_sym_prefix_op_token1] = ACTIONS(5388), - [sym_int] = ACTIONS(5390), - [sym_xint] = ACTIONS(5388), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(5388), - [anon_sym_POUNDload] = ACTIONS(5388), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5388), - [sym__dedent] = ACTIONS(5388), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3072] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4071), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3072), [sym_block_comment] = STATE(3072), [sym_line_comment] = STATE(3072), [sym_compiler_directive_decl] = STATE(3072), [sym_fsi_directive_decl] = STATE(3072), [sym_preproc_line] = STATE(3072), - [sym_identifier] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(5465), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), - [sym__dedent] = ACTIONS(2992), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3073] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5520), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3073), [sym_block_comment] = STATE(3073), [sym_line_comment] = STATE(3073), [sym_compiler_directive_decl] = STATE(3073), [sym_fsi_directive_decl] = STATE(3073), [sym_preproc_line] = STATE(3073), - [sym_identifier] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), - [sym__dedent] = ACTIONS(3027), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3074] = { + [sym_attributes] = STATE(3048), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4135), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2236), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3074), [sym_block_comment] = STATE(3074), [sym_line_comment] = STATE(3074), [sym_compiler_directive_decl] = STATE(3074), [sym_fsi_directive_decl] = STATE(3074), [sym_preproc_line] = STATE(3074), - [sym_identifier] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_open] = ACTIONS(2160), - [anon_sym_LBRACK_LT] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_BANG] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LBRACK_PIPE] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACE_PIPE] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_return_BANG] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_yield_BANG] = ACTIONS(2158), - [anon_sym_lazy] = ACTIONS(2160), - [anon_sym_assert] = ACTIONS(2160), - [anon_sym_upcast] = ACTIONS(2160), - [anon_sym_downcast] = ACTIONS(2160), - [anon_sym_LT_AT] = ACTIONS(2160), - [anon_sym_LT_AT_AT] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_fun] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_match_BANG] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_use_BANG] = ACTIONS(2158), - [anon_sym_do_BANG] = ACTIONS(2158), - [anon_sym_begin] = ACTIONS(2160), - [aux_sym_char_token1] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_AT_DQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2158), - [sym_bool] = ACTIONS(2160), - [sym_unit] = ACTIONS(2158), - [anon_sym_LPAREN_PIPE] = ACTIONS(2160), - [sym_op_identifier] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_DOT] = ACTIONS(2158), - [anon_sym_DASH_DOT] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2158), - [aux_sym_prefix_op_token1] = ACTIONS(2158), - [sym_int] = ACTIONS(2160), - [sym_xint] = ACTIONS(2158), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(2158), - [anon_sym_POUNDload] = ACTIONS(2158), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2158), - [sym__dedent] = ACTIONS(2158), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5412), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3075] = { [sym_xml_doc] = STATE(3075), @@ -360680,1038 +369371,1174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3075), [sym_fsi_directive_decl] = STATE(3075), [sym_preproc_line] = STATE(3075), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(5452), + [sym_identifier] = ACTIONS(5454), + [anon_sym_namespace] = ACTIONS(5454), + [anon_sym_module] = ACTIONS(5454), + [anon_sym_open] = ACTIONS(5454), + [anon_sym_LBRACK_LT] = ACTIONS(5452), + [anon_sym_return] = ACTIONS(5454), + [anon_sym_type] = ACTIONS(5454), + [anon_sym_do] = ACTIONS(5454), + [anon_sym_and] = ACTIONS(5454), + [anon_sym_let] = ACTIONS(5454), + [anon_sym_let_BANG] = ACTIONS(5452), + [aux_sym_access_modifier_token1] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_null] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_LBRACK_PIPE] = ACTIONS(5452), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_LT_AT] = ACTIONS(5454), + [anon_sym_LT_AT_AT] = ACTIONS(5452), + [anon_sym_LBRACE_PIPE] = ACTIONS(5452), + [anon_sym_new] = ACTIONS(5454), + [anon_sym_return_BANG] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5454), + [anon_sym_yield_BANG] = ACTIONS(5452), + [anon_sym_lazy] = ACTIONS(5454), + [anon_sym_assert] = ACTIONS(5454), + [anon_sym_upcast] = ACTIONS(5454), + [anon_sym_downcast] = ACTIONS(5454), + [anon_sym_for] = ACTIONS(5454), + [anon_sym_while] = ACTIONS(5454), + [anon_sym_if] = ACTIONS(5454), + [anon_sym_fun] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5454), + [anon_sym_match] = ACTIONS(5454), + [anon_sym_match_BANG] = ACTIONS(5452), + [anon_sym_function] = ACTIONS(5454), + [anon_sym_use] = ACTIONS(5454), + [anon_sym_use_BANG] = ACTIONS(5452), + [anon_sym_do_BANG] = ACTIONS(5452), + [anon_sym_begin] = ACTIONS(5454), + [anon_sym_default] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_member] = ACTIONS(5454), + [anon_sym_abstract] = ACTIONS(5454), + [anon_sym_override] = ACTIONS(5454), + [anon_sym_val] = ACTIONS(5454), + [aux_sym_char_token1] = ACTIONS(5452), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [anon_sym_AT_DQUOTE] = ACTIONS(5452), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5452), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5452), + [sym_bool] = ACTIONS(5454), + [sym_unit] = ACTIONS(5452), + [anon_sym_LPAREN_PIPE] = ACTIONS(5454), + [sym_op_identifier] = ACTIONS(5452), + [anon_sym_PLUS] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_PLUS_DOT] = ACTIONS(5452), + [anon_sym_DASH_DOT] = ACTIONS(5452), + [anon_sym_PERCENT] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5452), + [aux_sym_prefix_op_token1] = ACTIONS(5452), + [sym_int] = ACTIONS(5454), + [sym_xint] = ACTIONS(5452), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5452), + [anon_sym_POUNDload] = ACTIONS(5452), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5452), }, [3076] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5828), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3076), [sym_block_comment] = STATE(3076), [sym_line_comment] = STATE(3076), [sym_compiler_directive_decl] = STATE(3076), [sym_fsi_directive_decl] = STATE(3076), [sym_preproc_line] = STATE(3076), - [sym_identifier] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), - [sym__dedent] = ACTIONS(3023), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3077] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5855), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3077), [sym_block_comment] = STATE(3077), [sym_line_comment] = STATE(3077), [sym_compiler_directive_decl] = STATE(3077), [sym_fsi_directive_decl] = STATE(3077), [sym_preproc_line] = STATE(3077), - [sym_identifier] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), - [sym__dedent] = ACTIONS(3039), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3078] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5636), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3078), [sym_block_comment] = STATE(3078), [sym_line_comment] = STATE(3078), [sym_compiler_directive_decl] = STATE(3078), [sym_fsi_directive_decl] = STATE(3078), [sym_preproc_line] = STATE(3078), - [sym_identifier] = ACTIONS(299), - [anon_sym_module] = ACTIONS(299), - [anon_sym_open] = ACTIONS(299), - [anon_sym_LBRACK_LT] = ACTIONS(297), - [anon_sym_return] = ACTIONS(299), - [anon_sym_type] = ACTIONS(299), - [anon_sym_do] = ACTIONS(299), - [anon_sym_let] = ACTIONS(299), - [anon_sym_let_BANG] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_null] = ACTIONS(299), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(299), - [anon_sym_LBRACK_PIPE] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_LBRACE_PIPE] = ACTIONS(297), - [anon_sym_new] = ACTIONS(299), - [anon_sym_return_BANG] = ACTIONS(297), - [anon_sym_yield] = ACTIONS(299), - [anon_sym_yield_BANG] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_assert] = ACTIONS(299), - [anon_sym_upcast] = ACTIONS(299), - [anon_sym_downcast] = ACTIONS(299), - [anon_sym_LT_AT] = ACTIONS(299), - [anon_sym_LT_AT_AT] = ACTIONS(297), - [anon_sym_for] = ACTIONS(299), - [anon_sym_while] = ACTIONS(299), - [anon_sym_if] = ACTIONS(299), - [anon_sym_fun] = ACTIONS(299), - [anon_sym_try] = ACTIONS(299), - [anon_sym_match] = ACTIONS(299), - [anon_sym_match_BANG] = ACTIONS(297), - [anon_sym_function] = ACTIONS(299), - [anon_sym_use] = ACTIONS(299), - [anon_sym_use_BANG] = ACTIONS(297), - [anon_sym_do_BANG] = ACTIONS(297), - [anon_sym_begin] = ACTIONS(299), - [aux_sym_char_token1] = ACTIONS(297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(299), - [anon_sym_DQUOTE] = ACTIONS(299), - [anon_sym_AT_DQUOTE] = ACTIONS(297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), - [sym_bool] = ACTIONS(299), - [sym_unit] = ACTIONS(297), - [anon_sym_LPAREN_PIPE] = ACTIONS(299), - [sym_op_identifier] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_PLUS_DOT] = ACTIONS(297), - [anon_sym_DASH_DOT] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_TILDE] = ACTIONS(297), - [aux_sym_prefix_op_token1] = ACTIONS(297), - [sym_int] = ACTIONS(299), - [sym_xint] = ACTIONS(297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(297), - [anon_sym_POUNDload] = ACTIONS(297), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(297), - [sym__dedent] = ACTIONS(297), }, [3079] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5549), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3079), [sym_block_comment] = STATE(3079), [sym_line_comment] = STATE(3079), [sym_compiler_directive_decl] = STATE(3079), [sym_fsi_directive_decl] = STATE(3079), [sym_preproc_line] = STATE(3079), - [sym_identifier] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_do] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_let_BANG] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_null] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_LBRACE_PIPE] = ACTIONS(3009), - [anon_sym_new] = ACTIONS(3007), - [anon_sym_return_BANG] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_yield_BANG] = ACTIONS(3009), - [anon_sym_lazy] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_upcast] = ACTIONS(3007), - [anon_sym_downcast] = ACTIONS(3007), - [anon_sym_LT_AT] = ACTIONS(3007), - [anon_sym_LT_AT_AT] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_fun] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_match_BANG] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3007), - [anon_sym_use] = ACTIONS(3007), - [anon_sym_use_BANG] = ACTIONS(3009), - [anon_sym_do_BANG] = ACTIONS(3009), - [anon_sym_begin] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_LT2] = ACTIONS(3007), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3009), - [aux_sym_char_token1] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [anon_sym_AT_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3009), - [sym_bool] = ACTIONS(3007), - [sym_unit] = ACTIONS(3009), - [anon_sym_LPAREN_PIPE] = ACTIONS(3007), - [sym_op_identifier] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3009), - [anon_sym_DASH_DOT] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [aux_sym_prefix_op_token1] = ACTIONS(3009), - [sym_int] = ACTIONS(3007), - [sym_xint] = ACTIONS(3009), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3009), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3080] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5796), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3080), [sym_block_comment] = STATE(3080), [sym_line_comment] = STATE(3080), [sym_compiler_directive_decl] = STATE(3080), [sym_fsi_directive_decl] = STATE(3080), [sym_preproc_line] = STATE(3080), - [sym_identifier] = ACTIONS(2990), - [anon_sym_return] = ACTIONS(2990), - [anon_sym_do] = ACTIONS(2990), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_let_BANG] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2990), - [anon_sym_null] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(2990), - [anon_sym_LBRACK_PIPE] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_LBRACE_PIPE] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2990), - [anon_sym_return_BANG] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2990), - [anon_sym_yield_BANG] = ACTIONS(2992), - [anon_sym_lazy] = ACTIONS(2990), - [anon_sym_assert] = ACTIONS(2990), - [anon_sym_upcast] = ACTIONS(2990), - [anon_sym_downcast] = ACTIONS(2990), - [anon_sym_LT_AT] = ACTIONS(2990), - [anon_sym_LT_AT_AT] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2990), - [anon_sym_while] = ACTIONS(2990), - [anon_sym_if] = ACTIONS(2990), - [anon_sym_fun] = ACTIONS(2990), - [anon_sym_DASH_GT] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2990), - [anon_sym_match] = ACTIONS(2990), - [anon_sym_match_BANG] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2990), - [anon_sym_use] = ACTIONS(2990), - [anon_sym_use_BANG] = ACTIONS(2992), - [anon_sym_do_BANG] = ACTIONS(2992), - [anon_sym_begin] = ACTIONS(2990), - [anon_sym_STAR] = ACTIONS(2992), - [anon_sym_LT2] = ACTIONS(5467), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2992), - [aux_sym_char_token1] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_AT_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2992), - [sym_bool] = ACTIONS(2990), - [sym_unit] = ACTIONS(2992), - [anon_sym_LPAREN_PIPE] = ACTIONS(2990), - [sym_op_identifier] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2990), - [anon_sym_DASH] = ACTIONS(2990), - [anon_sym_PLUS_DOT] = ACTIONS(2992), - [anon_sym_DASH_DOT] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_AMP_AMP] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2992), - [aux_sym_prefix_op_token1] = ACTIONS(2992), - [sym_int] = ACTIONS(2990), - [sym_xint] = ACTIONS(2992), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2992), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3081] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5853), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3081), [sym_block_comment] = STATE(3081), [sym_line_comment] = STATE(3081), [sym_compiler_directive_decl] = STATE(3081), [sym_fsi_directive_decl] = STATE(3081), [sym_preproc_line] = STATE(3081), - [aux_sym__function_or_value_defns_repeat1] = STATE(3096), - [sym_identifier] = ACTIONS(5181), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_do] = ACTIONS(5181), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_let] = ACTIONS(5181), - [anon_sym_let_BANG] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_LBRACK_PIPE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5181), - [anon_sym_LBRACE_PIPE] = ACTIONS(5179), - [anon_sym_new] = ACTIONS(5181), - [anon_sym_return_BANG] = ACTIONS(5179), - [anon_sym_yield] = ACTIONS(5181), - [anon_sym_yield_BANG] = ACTIONS(5179), - [anon_sym_lazy] = ACTIONS(5181), - [anon_sym_assert] = ACTIONS(5181), - [anon_sym_upcast] = ACTIONS(5181), - [anon_sym_downcast] = ACTIONS(5181), - [anon_sym_LT_AT] = ACTIONS(5181), - [anon_sym_LT_AT_AT] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_match] = ACTIONS(5181), - [anon_sym_match_BANG] = ACTIONS(5179), - [anon_sym_function] = ACTIONS(5181), - [anon_sym_use] = ACTIONS(5181), - [anon_sym_use_BANG] = ACTIONS(5179), - [anon_sym_do_BANG] = ACTIONS(5179), - [anon_sym_begin] = ACTIONS(5181), - [aux_sym_char_token1] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5181), - [anon_sym_DQUOTE] = ACTIONS(5181), - [anon_sym_AT_DQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [sym_bool] = ACTIONS(5181), - [sym_unit] = ACTIONS(5179), - [anon_sym_LPAREN_PIPE] = ACTIONS(5181), - [sym_op_identifier] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_PLUS_DOT] = ACTIONS(5179), - [anon_sym_DASH_DOT] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [aux_sym_prefix_op_token1] = ACTIONS(5179), - [sym_int] = ACTIONS(5181), - [sym_xint] = ACTIONS(5179), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5179), - [anon_sym_POUNDendif] = ACTIONS(5179), - [anon_sym_POUNDelse] = ACTIONS(5179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5458), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3082] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5505), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3082), [sym_block_comment] = STATE(3082), [sym_line_comment] = STATE(3082), [sym_compiler_directive_decl] = STATE(3082), [sym_fsi_directive_decl] = STATE(3082), [sym_preproc_line] = STATE(3082), - [sym_identifier] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3043), - [anon_sym_do] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_let_BANG] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_null] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACK_PIPE] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_LBRACE_PIPE] = ACTIONS(3045), - [anon_sym_new] = ACTIONS(3043), - [anon_sym_return_BANG] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3043), - [anon_sym_yield_BANG] = ACTIONS(3045), - [anon_sym_lazy] = ACTIONS(3043), - [anon_sym_assert] = ACTIONS(3043), - [anon_sym_upcast] = ACTIONS(3043), - [anon_sym_downcast] = ACTIONS(3043), - [anon_sym_LT_AT] = ACTIONS(3043), - [anon_sym_LT_AT_AT] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3043), - [anon_sym_while] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3043), - [anon_sym_fun] = ACTIONS(3043), - [anon_sym_DASH_GT] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3043), - [anon_sym_match_BANG] = ACTIONS(3045), - [anon_sym_function] = ACTIONS(3043), - [anon_sym_use] = ACTIONS(3043), - [anon_sym_use_BANG] = ACTIONS(3045), - [anon_sym_do_BANG] = ACTIONS(3045), - [anon_sym_begin] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_LT2] = ACTIONS(3043), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3045), - [aux_sym_char_token1] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [anon_sym_AT_DQUOTE] = ACTIONS(3045), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3045), - [sym_bool] = ACTIONS(3043), - [sym_unit] = ACTIONS(3045), - [anon_sym_LPAREN_PIPE] = ACTIONS(3043), - [sym_op_identifier] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS_DOT] = ACTIONS(3045), - [anon_sym_DASH_DOT] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [aux_sym_prefix_op_token1] = ACTIONS(3045), - [sym_int] = ACTIONS(3043), - [sym_xint] = ACTIONS(3045), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3045), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3083] = { - [sym_attributes] = STATE(4653), - [sym_attribute_set] = STATE(4818), - [sym_function_or_value_defn] = STATE(6364), - [sym_access_modifier] = STATE(7304), - [sym_type] = STATE(5232), - [sym__simple_type] = STATE(4475), - [sym__generic_type] = STATE(4475), - [sym__paren_type] = STATE(4475), - [sym__function_type] = STATE(4475), - [sym__compound_type] = STATE(4475), - [sym__postfix_type] = STATE(4475), - [sym__list_type] = STATE(4475), - [sym__static_type] = STATE(4475), - [sym__constrained_type] = STATE(4475), - [sym__flexible_type] = STATE(4475), - [sym__static_type_identifier] = STATE(3919), - [sym_type_argument] = STATE(4364), - [sym_delegate_signature] = STATE(7293), - [sym__class_type_body_inner] = STATE(5895), - [sym__class_type_body] = STATE(7294), - [sym_enum_type_cases] = STATE(7315), - [sym_enum_type_case] = STATE(7149), - [sym_union_type_cases] = STATE(3835), - [sym_union_type_case] = STATE(4701), - [sym__class_function_or_value_defn] = STATE(6376), - [sym__type_defn_elements] = STATE(6376), - [sym_interface_implementation] = STATE(5910), - [sym__member_defns] = STATE(6557), - [sym_member_defn] = STATE(4397), - [sym_additional_constr_defn] = STATE(4987), - [sym_class_inherits_decl] = STATE(6376), - [sym_long_identifier] = STATE(4472), + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5848), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3083), [sym_block_comment] = STATE(3083), [sym_line_comment] = STATE(3083), [sym_compiler_directive_decl] = STATE(3083), [sym_fsi_directive_decl] = STATE(3083), [sym_preproc_line] = STATE(3083), - [sym_preproc_if_in_class_definition] = STATE(6376), - [aux_sym_attributes_repeat1] = STATE(4646), - [aux_sym__object_expression_inner_repeat1] = STATE(5652), - [sym_identifier] = ACTIONS(5471), - [anon_sym_LBRACK_LT] = ACTIONS(5473), - [anon_sym_do] = ACTIONS(5475), - [anon_sym_let] = ACTIONS(5477), - [anon_sym_let_BANG] = ACTIONS(5479), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym__] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5487), - [anon_sym_new] = ACTIONS(5489), - [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_SQUOTE] = ACTIONS(5493), - [anon_sym_delegate] = ACTIONS(5495), - [anon_sym_default] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_member] = ACTIONS(5501), - [anon_sym_interface] = ACTIONS(5503), - [anon_sym_abstract] = ACTIONS(5505), - [anon_sym_override] = ACTIONS(5497), - [anon_sym_val] = ACTIONS(5507), - [anon_sym_inherit] = ACTIONS(5509), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5511), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5460), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3084] = { - [sym_attributes] = STATE(4653), - [sym_attribute_set] = STATE(4818), - [sym_function_or_value_defn] = STATE(6364), - [sym_access_modifier] = STATE(7304), - [sym_type] = STATE(5238), - [sym__simple_type] = STATE(4475), - [sym__generic_type] = STATE(4475), - [sym__paren_type] = STATE(4475), - [sym__function_type] = STATE(4475), - [sym__compound_type] = STATE(4475), - [sym__postfix_type] = STATE(4475), - [sym__list_type] = STATE(4475), - [sym__static_type] = STATE(4475), - [sym__constrained_type] = STATE(4475), - [sym__flexible_type] = STATE(4475), - [sym__static_type_identifier] = STATE(3919), - [sym_type_argument] = STATE(4364), - [sym_delegate_signature] = STATE(7791), - [sym__class_type_body_inner] = STATE(5895), - [sym__class_type_body] = STATE(7790), - [sym_enum_type_cases] = STATE(7789), - [sym_enum_type_case] = STATE(7149), - [sym_union_type_cases] = STATE(3840), - [sym_union_type_case] = STATE(4701), - [sym__class_function_or_value_defn] = STATE(6376), - [sym__type_defn_elements] = STATE(6376), - [sym_interface_implementation] = STATE(5910), - [sym__member_defns] = STATE(6557), - [sym_member_defn] = STATE(4397), - [sym_additional_constr_defn] = STATE(4987), - [sym_class_inherits_decl] = STATE(6376), - [sym_long_identifier] = STATE(4472), + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3813), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3084), [sym_block_comment] = STATE(3084), [sym_line_comment] = STATE(3084), [sym_compiler_directive_decl] = STATE(3084), [sym_fsi_directive_decl] = STATE(3084), [sym_preproc_line] = STATE(3084), - [sym_preproc_if_in_class_definition] = STATE(6376), - [aux_sym_attributes_repeat1] = STATE(4646), - [aux_sym__object_expression_inner_repeat1] = STATE(5652), - [sym_identifier] = ACTIONS(5471), - [anon_sym_LBRACK_LT] = ACTIONS(5473), - [anon_sym_do] = ACTIONS(5475), - [anon_sym_let] = ACTIONS(5477), - [anon_sym_let_BANG] = ACTIONS(5479), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym__] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5513), - [anon_sym_new] = ACTIONS(5489), - [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_SQUOTE] = ACTIONS(5493), - [anon_sym_delegate] = ACTIONS(5495), - [anon_sym_default] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_member] = ACTIONS(5501), - [anon_sym_interface] = ACTIONS(5503), - [anon_sym_abstract] = ACTIONS(5505), - [anon_sym_override] = ACTIONS(5497), - [anon_sym_val] = ACTIONS(5507), - [anon_sym_inherit] = ACTIONS(5509), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5511), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3085] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3809), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3085), [sym_block_comment] = STATE(3085), [sym_line_comment] = STATE(3085), [sym_compiler_directive_decl] = STATE(3085), [sym_fsi_directive_decl] = STATE(3085), [sym_preproc_line] = STATE(3085), - [aux_sym__function_or_value_defns_repeat1] = STATE(3081), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5469), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LBRACE_PIPE] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5126), - [anon_sym_return_BANG] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5126), - [anon_sym_yield_BANG] = ACTIONS(5124), - [anon_sym_lazy] = ACTIONS(5126), - [anon_sym_assert] = ACTIONS(5126), - [anon_sym_upcast] = ACTIONS(5126), - [anon_sym_downcast] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5126), - [anon_sym_while] = ACTIONS(5126), - [anon_sym_if] = ACTIONS(5126), - [anon_sym_fun] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5126), - [anon_sym_match] = ACTIONS(5126), - [anon_sym_match_BANG] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(5126), - [anon_sym_use] = ACTIONS(5126), - [anon_sym_use_BANG] = ACTIONS(5124), - [anon_sym_do_BANG] = ACTIONS(5124), - [anon_sym_begin] = ACTIONS(5126), - [aux_sym_char_token1] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [anon_sym_AT_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [sym_bool] = ACTIONS(5126), - [sym_unit] = ACTIONS(5124), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [sym_op_identifier] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_PLUS_DOT] = ACTIONS(5124), - [anon_sym_DASH_DOT] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5124), - [aux_sym_prefix_op_token1] = ACTIONS(5124), - [sym_int] = ACTIONS(5126), - [sym_xint] = ACTIONS(5124), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5124), - [anon_sym_POUNDendif] = ACTIONS(5124), - [anon_sym_POUNDelse] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3086] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5825), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3086), [sym_block_comment] = STATE(3086), [sym_line_comment] = STATE(3086), [sym_compiler_directive_decl] = STATE(3086), [sym_fsi_directive_decl] = STATE(3086), [sym_preproc_line] = STATE(3086), - [sym_identifier] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_let_BANG] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_null] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_LBRACE_PIPE] = ACTIONS(3075), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_return_BANG] = ACTIONS(3075), - [anon_sym_yield] = ACTIONS(3073), - [anon_sym_yield_BANG] = ACTIONS(3075), - [anon_sym_lazy] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_upcast] = ACTIONS(3073), - [anon_sym_downcast] = ACTIONS(3073), - [anon_sym_LT_AT] = ACTIONS(3073), - [anon_sym_LT_AT_AT] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_while] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_fun] = ACTIONS(3073), - [anon_sym_try] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_match_BANG] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3075), - [anon_sym_use] = ACTIONS(3073), - [anon_sym_use_BANG] = ACTIONS(3075), - [anon_sym_do_BANG] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [aux_sym_char_token1] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3073), - [anon_sym_AT_DQUOTE] = ACTIONS(3075), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3075), - [sym_bool] = ACTIONS(3073), - [sym_unit] = ACTIONS(3075), - [anon_sym_LPAREN_PIPE] = ACTIONS(3073), - [sym_op_identifier] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_PLUS_DOT] = ACTIONS(3075), - [anon_sym_DASH_DOT] = ACTIONS(3075), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3075), - [aux_sym_prefix_op_token1] = ACTIONS(3075), - [sym_int] = ACTIONS(3073), - [sym_xint] = ACTIONS(3075), - [anon_sym_f] = ACTIONS(3073), - [aux_sym_decimal_token1] = ACTIONS(3073), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3075), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3087] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5427), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3087), [sym_block_comment] = STATE(3087), [sym_line_comment] = STATE(3087), [sym_compiler_directive_decl] = STATE(3087), [sym_fsi_directive_decl] = STATE(3087), [sym_preproc_line] = STATE(3087), - [sym_identifier] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_do] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_let_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_null] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_LBRACK_PIPE] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_LBRACE_PIPE] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3013), - [anon_sym_return_BANG] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_yield_BANG] = ACTIONS(3015), - [anon_sym_lazy] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_upcast] = ACTIONS(3013), - [anon_sym_downcast] = ACTIONS(3013), - [anon_sym_LT_AT] = ACTIONS(3013), - [anon_sym_LT_AT_AT] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_fun] = ACTIONS(3013), - [anon_sym_DASH_GT] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_match_BANG] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_use_BANG] = ACTIONS(3015), - [anon_sym_do_BANG] = ACTIONS(3015), - [anon_sym_begin] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_LT2] = ACTIONS(3013), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3015), - [aux_sym_char_token1] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [anon_sym_AT_DQUOTE] = ACTIONS(3015), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3015), - [sym_bool] = ACTIONS(3013), - [sym_unit] = ACTIONS(3015), - [anon_sym_LPAREN_PIPE] = ACTIONS(3013), - [sym_op_identifier] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_PLUS_DOT] = ACTIONS(3015), - [anon_sym_DASH_DOT] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [aux_sym_prefix_op_token1] = ACTIONS(3015), - [sym_int] = ACTIONS(3013), - [sym_xint] = ACTIONS(3015), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3015), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3088] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4088), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3088), [sym_block_comment] = STATE(3088), [sym_line_comment] = STATE(3088), [sym_compiler_directive_decl] = STATE(3088), [sym_fsi_directive_decl] = STATE(3088), [sym_preproc_line] = STATE(3088), - [sym_identifier] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_do] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_let_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LBRACK_PIPE] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3025), - [anon_sym_return_BANG] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_yield_BANG] = ACTIONS(3027), - [anon_sym_lazy] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_upcast] = ACTIONS(3025), - [anon_sym_downcast] = ACTIONS(3025), - [anon_sym_LT_AT] = ACTIONS(3025), - [anon_sym_LT_AT_AT] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_fun] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), - [anon_sym_try] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_match_BANG] = ACTIONS(3027), - [anon_sym_function] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_use_BANG] = ACTIONS(3027), - [anon_sym_do_BANG] = ACTIONS(3027), - [anon_sym_begin] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LT2] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3027), - [aux_sym_char_token1] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_AT_DQUOTE] = ACTIONS(3027), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3027), - [sym_bool] = ACTIONS(3025), - [sym_unit] = ACTIONS(3027), - [anon_sym_LPAREN_PIPE] = ACTIONS(3025), - [sym_op_identifier] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_PLUS_DOT] = ACTIONS(3027), - [anon_sym_DASH_DOT] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3027), - [aux_sym_prefix_op_token1] = ACTIONS(3027), - [sym_int] = ACTIONS(3025), - [sym_xint] = ACTIONS(3027), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3027), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3089] = { [sym_xml_doc] = STATE(3089), @@ -361720,220 +370547,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3089), [sym_fsi_directive_decl] = STATE(3089), [sym_preproc_line] = STATE(3089), - [sym_identifier] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_do] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_let_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_null] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_LBRACK_PIPE] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_LBRACE_PIPE] = ACTIONS(3039), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_return_BANG] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_yield_BANG] = ACTIONS(3039), - [anon_sym_lazy] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_upcast] = ACTIONS(3033), - [anon_sym_downcast] = ACTIONS(3033), - [anon_sym_LT_AT] = ACTIONS(3033), - [anon_sym_LT_AT_AT] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_fun] = ACTIONS(3033), - [anon_sym_DASH_GT] = ACTIONS(3039), - [anon_sym_try] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_match_BANG] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_use_BANG] = ACTIONS(3039), - [anon_sym_do_BANG] = ACTIONS(3039), - [anon_sym_begin] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_LT2] = ACTIONS(3033), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3039), - [aux_sym_char_token1] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_AT_DQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3039), - [sym_bool] = ACTIONS(3033), - [sym_unit] = ACTIONS(3039), - [anon_sym_LPAREN_PIPE] = ACTIONS(3033), - [sym_op_identifier] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_PLUS_DOT] = ACTIONS(3039), - [anon_sym_DASH_DOT] = ACTIONS(3039), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_TILDE] = ACTIONS(3039), - [aux_sym_prefix_op_token1] = ACTIONS(3039), - [sym_int] = ACTIONS(3033), - [sym_xint] = ACTIONS(3039), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(5462), + [sym_identifier] = ACTIONS(5464), + [anon_sym_namespace] = ACTIONS(5464), + [anon_sym_module] = ACTIONS(5464), + [anon_sym_open] = ACTIONS(5464), + [anon_sym_LBRACK_LT] = ACTIONS(5462), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_do] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_let] = ACTIONS(5464), + [anon_sym_let_BANG] = ACTIONS(5462), + [aux_sym_access_modifier_token1] = ACTIONS(5462), + [anon_sym_LPAREN] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_LBRACK_PIPE] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_LT_AT] = ACTIONS(5464), + [anon_sym_LT_AT_AT] = ACTIONS(5462), + [anon_sym_LBRACE_PIPE] = ACTIONS(5462), + [anon_sym_new] = ACTIONS(5464), + [anon_sym_return_BANG] = ACTIONS(5462), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_yield_BANG] = ACTIONS(5462), + [anon_sym_lazy] = ACTIONS(5464), + [anon_sym_assert] = ACTIONS(5464), + [anon_sym_upcast] = ACTIONS(5464), + [anon_sym_downcast] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_fun] = ACTIONS(5464), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_match_BANG] = ACTIONS(5462), + [anon_sym_function] = ACTIONS(5464), + [anon_sym_use] = ACTIONS(5464), + [anon_sym_use_BANG] = ACTIONS(5462), + [anon_sym_do_BANG] = ACTIONS(5462), + [anon_sym_begin] = ACTIONS(5464), + [anon_sym_default] = ACTIONS(5464), + [anon_sym_static] = ACTIONS(5464), + [anon_sym_member] = ACTIONS(5464), + [anon_sym_abstract] = ACTIONS(5464), + [anon_sym_override] = ACTIONS(5464), + [anon_sym_val] = ACTIONS(5464), + [aux_sym_char_token1] = ACTIONS(5462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5464), + [anon_sym_DQUOTE] = ACTIONS(5464), + [anon_sym_AT_DQUOTE] = ACTIONS(5462), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5462), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5462), + [sym_bool] = ACTIONS(5464), + [sym_unit] = ACTIONS(5462), + [anon_sym_LPAREN_PIPE] = ACTIONS(5464), + [sym_op_identifier] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_PLUS_DOT] = ACTIONS(5462), + [anon_sym_DASH_DOT] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5462), + [anon_sym_AMP_AMP] = ACTIONS(5462), + [anon_sym_TILDE] = ACTIONS(5462), + [aux_sym_prefix_op_token1] = ACTIONS(5462), + [sym_int] = ACTIONS(5464), + [sym_xint] = ACTIONS(5462), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5462), + [anon_sym_POUNDload] = ACTIONS(5462), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5462), }, [3090] = { - [sym_attributes] = STATE(4653), - [sym_attribute_set] = STATE(4818), - [sym_function_or_value_defn] = STATE(6364), - [sym_access_modifier] = STATE(7304), - [sym_type] = STATE(5306), - [sym__simple_type] = STATE(4475), - [sym__generic_type] = STATE(4475), - [sym__paren_type] = STATE(4475), - [sym__function_type] = STATE(4475), - [sym__compound_type] = STATE(4475), - [sym__postfix_type] = STATE(4475), - [sym__list_type] = STATE(4475), - [sym__static_type] = STATE(4475), - [sym__constrained_type] = STATE(4475), - [sym__flexible_type] = STATE(4475), - [sym__static_type_identifier] = STATE(3919), - [sym_type_argument] = STATE(4364), - [sym_delegate_signature] = STATE(7162), - [sym__class_type_body_inner] = STATE(5895), - [sym__class_type_body] = STATE(7154), - [sym_enum_type_cases] = STATE(7153), - [sym_enum_type_case] = STATE(7149), - [sym_union_type_cases] = STATE(3838), - [sym_union_type_case] = STATE(4701), - [sym__class_function_or_value_defn] = STATE(6376), - [sym__type_defn_elements] = STATE(6376), - [sym_interface_implementation] = STATE(5910), - [sym__member_defns] = STATE(6557), - [sym_member_defn] = STATE(4397), - [sym_additional_constr_defn] = STATE(4987), - [sym_class_inherits_decl] = STATE(6376), - [sym_long_identifier] = STATE(4472), + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5830), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3090), [sym_block_comment] = STATE(3090), [sym_line_comment] = STATE(3090), [sym_compiler_directive_decl] = STATE(3090), [sym_fsi_directive_decl] = STATE(3090), [sym_preproc_line] = STATE(3090), - [sym_preproc_if_in_class_definition] = STATE(6376), - [aux_sym_attributes_repeat1] = STATE(4646), - [aux_sym__object_expression_inner_repeat1] = STATE(5652), - [sym_identifier] = ACTIONS(5471), - [anon_sym_LBRACK_LT] = ACTIONS(5473), - [anon_sym_do] = ACTIONS(5475), - [anon_sym_let] = ACTIONS(5477), - [anon_sym_let_BANG] = ACTIONS(5479), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym__] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5515), - [anon_sym_new] = ACTIONS(5489), - [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_SQUOTE] = ACTIONS(5493), - [anon_sym_delegate] = ACTIONS(5495), - [anon_sym_default] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_member] = ACTIONS(5501), - [anon_sym_interface] = ACTIONS(5503), - [anon_sym_abstract] = ACTIONS(5505), - [anon_sym_override] = ACTIONS(5497), - [anon_sym_val] = ACTIONS(5507), - [anon_sym_inherit] = ACTIONS(5509), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5511), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3091] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5528), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3091), [sym_block_comment] = STATE(3091), [sym_line_comment] = STATE(3091), [sym_compiler_directive_decl] = STATE(3091), [sym_fsi_directive_decl] = STATE(3091), [sym_preproc_line] = STATE(3091), - [sym_identifier] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2520), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2520), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_f] = ACTIONS(5030), - [aux_sym_decimal_token1] = ACTIONS(4754), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3092] = { [sym_xml_doc] = STATE(3092), @@ -361942,437 +370799,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3092), [sym_fsi_directive_decl] = STATE(3092), [sym_preproc_line] = STATE(3092), - [sym_identifier] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_do] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_let_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_null] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_LBRACK_PIPE] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_return_BANG] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_yield_BANG] = ACTIONS(3023), - [anon_sym_lazy] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_upcast] = ACTIONS(3021), - [anon_sym_downcast] = ACTIONS(3021), - [anon_sym_LT_AT] = ACTIONS(3021), - [anon_sym_LT_AT_AT] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_fun] = ACTIONS(3021), - [anon_sym_DASH_GT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_match_BANG] = ACTIONS(3023), - [anon_sym_function] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_use_BANG] = ACTIONS(3023), - [anon_sym_do_BANG] = ACTIONS(3023), - [anon_sym_begin] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_LT2] = ACTIONS(3021), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3023), - [aux_sym_char_token1] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [anon_sym_AT_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3023), - [sym_bool] = ACTIONS(3021), - [sym_unit] = ACTIONS(3023), - [anon_sym_LPAREN_PIPE] = ACTIONS(3021), - [sym_op_identifier] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_PLUS_DOT] = ACTIONS(3023), - [anon_sym_DASH_DOT] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_TILDE] = ACTIONS(3023), - [aux_sym_prefix_op_token1] = ACTIONS(3023), - [sym_int] = ACTIONS(3021), - [sym_xint] = ACTIONS(3023), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3023), + [ts_builtin_sym_end] = ACTIONS(5466), + [sym_identifier] = ACTIONS(5468), + [anon_sym_namespace] = ACTIONS(5468), + [anon_sym_module] = ACTIONS(5468), + [anon_sym_open] = ACTIONS(5468), + [anon_sym_LBRACK_LT] = ACTIONS(5466), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_do] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_let] = ACTIONS(5468), + [anon_sym_let_BANG] = ACTIONS(5466), + [aux_sym_access_modifier_token1] = ACTIONS(5466), + [anon_sym_LPAREN] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5468), + [anon_sym_LBRACK_PIPE] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_LT_AT] = ACTIONS(5468), + [anon_sym_LT_AT_AT] = ACTIONS(5466), + [anon_sym_LBRACE_PIPE] = ACTIONS(5466), + [anon_sym_new] = ACTIONS(5468), + [anon_sym_return_BANG] = ACTIONS(5466), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_yield_BANG] = ACTIONS(5466), + [anon_sym_lazy] = ACTIONS(5468), + [anon_sym_assert] = ACTIONS(5468), + [anon_sym_upcast] = ACTIONS(5468), + [anon_sym_downcast] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_fun] = ACTIONS(5468), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_match_BANG] = ACTIONS(5466), + [anon_sym_function] = ACTIONS(5468), + [anon_sym_use] = ACTIONS(5468), + [anon_sym_use_BANG] = ACTIONS(5466), + [anon_sym_do_BANG] = ACTIONS(5466), + [anon_sym_begin] = ACTIONS(5468), + [anon_sym_default] = ACTIONS(5468), + [anon_sym_static] = ACTIONS(5468), + [anon_sym_member] = ACTIONS(5468), + [anon_sym_abstract] = ACTIONS(5468), + [anon_sym_override] = ACTIONS(5468), + [anon_sym_val] = ACTIONS(5468), + [aux_sym_char_token1] = ACTIONS(5466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5468), + [anon_sym_DQUOTE] = ACTIONS(5468), + [anon_sym_AT_DQUOTE] = ACTIONS(5466), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5466), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5466), + [sym_bool] = ACTIONS(5468), + [sym_unit] = ACTIONS(5466), + [anon_sym_LPAREN_PIPE] = ACTIONS(5468), + [sym_op_identifier] = ACTIONS(5466), + [anon_sym_PLUS] = ACTIONS(5468), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_PLUS_DOT] = ACTIONS(5466), + [anon_sym_DASH_DOT] = ACTIONS(5466), + [anon_sym_PERCENT] = ACTIONS(5466), + [anon_sym_AMP_AMP] = ACTIONS(5466), + [anon_sym_TILDE] = ACTIONS(5466), + [aux_sym_prefix_op_token1] = ACTIONS(5466), + [sym_int] = ACTIONS(5468), + [sym_xint] = ACTIONS(5466), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5466), + [anon_sym_POUNDload] = ACTIONS(5466), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5466), }, [3093] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5523), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3093), [sym_block_comment] = STATE(3093), [sym_line_comment] = STATE(3093), [sym_compiler_directive_decl] = STATE(3093), [sym_fsi_directive_decl] = STATE(3093), [sym_preproc_line] = STATE(3093), - [sym_identifier] = ACTIONS(2986), - [anon_sym_return] = ACTIONS(2986), - [anon_sym_do] = ACTIONS(2986), - [anon_sym_let] = ACTIONS(2986), - [anon_sym_let_BANG] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2986), - [anon_sym_null] = ACTIONS(2986), - [anon_sym_AMP] = ACTIONS(2986), - [anon_sym_LBRACK] = ACTIONS(2986), - [anon_sym_LBRACK_PIPE] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2986), - [anon_sym_LBRACE_PIPE] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(2986), - [anon_sym_return_BANG] = ACTIONS(2988), - [anon_sym_yield] = ACTIONS(2986), - [anon_sym_yield_BANG] = ACTIONS(2988), - [anon_sym_lazy] = ACTIONS(2986), - [anon_sym_assert] = ACTIONS(2986), - [anon_sym_upcast] = ACTIONS(2986), - [anon_sym_downcast] = ACTIONS(2986), - [anon_sym_LT_AT] = ACTIONS(2986), - [anon_sym_LT_AT_AT] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2986), - [anon_sym_while] = ACTIONS(2986), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_fun] = ACTIONS(2986), - [anon_sym_DASH_GT] = ACTIONS(2988), - [anon_sym_try] = ACTIONS(2986), - [anon_sym_match] = ACTIONS(2986), - [anon_sym_match_BANG] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_use] = ACTIONS(2986), - [anon_sym_use_BANG] = ACTIONS(2988), - [anon_sym_do_BANG] = ACTIONS(2988), - [anon_sym_begin] = ACTIONS(2986), - [anon_sym_STAR] = ACTIONS(2988), - [anon_sym_LT2] = ACTIONS(2986), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2988), - [aux_sym_char_token1] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(2986), - [anon_sym_AT_DQUOTE] = ACTIONS(2988), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2988), - [sym_bool] = ACTIONS(2986), - [sym_unit] = ACTIONS(2988), - [anon_sym_LPAREN_PIPE] = ACTIONS(2986), - [sym_op_identifier] = ACTIONS(2988), - [anon_sym_PLUS] = ACTIONS(2986), - [anon_sym_DASH] = ACTIONS(2986), - [anon_sym_PLUS_DOT] = ACTIONS(2988), - [anon_sym_DASH_DOT] = ACTIONS(2988), - [anon_sym_PERCENT] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_TILDE] = ACTIONS(2988), - [aux_sym_prefix_op_token1] = ACTIONS(2988), - [sym_int] = ACTIONS(2986), - [sym_xint] = ACTIONS(2988), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2988), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3094] = { - [sym_attributes] = STATE(4653), - [sym_attribute_set] = STATE(4818), - [sym_function_or_value_defn] = STATE(6364), - [sym_access_modifier] = STATE(7304), - [sym_type] = STATE(5297), - [sym__simple_type] = STATE(4475), - [sym__generic_type] = STATE(4475), - [sym__paren_type] = STATE(4475), - [sym__function_type] = STATE(4475), - [sym__compound_type] = STATE(4475), - [sym__postfix_type] = STATE(4475), - [sym__list_type] = STATE(4475), - [sym__static_type] = STATE(4475), - [sym__constrained_type] = STATE(4475), - [sym__flexible_type] = STATE(4475), - [sym__static_type_identifier] = STATE(3919), - [sym_type_argument] = STATE(4364), - [sym_delegate_signature] = STATE(7441), - [sym__class_type_body_inner] = STATE(5895), - [sym__class_type_body] = STATE(7483), - [sym_enum_type_cases] = STATE(7481), - [sym_enum_type_case] = STATE(7149), - [sym_union_type_cases] = STATE(3825), - [sym_union_type_case] = STATE(4701), - [sym__class_function_or_value_defn] = STATE(6376), - [sym__type_defn_elements] = STATE(6376), - [sym_interface_implementation] = STATE(5910), - [sym__member_defns] = STATE(6557), - [sym_member_defn] = STATE(4397), - [sym_additional_constr_defn] = STATE(4987), - [sym_class_inherits_decl] = STATE(6376), - [sym_long_identifier] = STATE(4472), [sym_xml_doc] = STATE(3094), [sym_block_comment] = STATE(3094), [sym_line_comment] = STATE(3094), [sym_compiler_directive_decl] = STATE(3094), [sym_fsi_directive_decl] = STATE(3094), [sym_preproc_line] = STATE(3094), - [sym_preproc_if_in_class_definition] = STATE(6376), - [aux_sym_attributes_repeat1] = STATE(4646), - [aux_sym__object_expression_inner_repeat1] = STATE(5652), - [sym_identifier] = ACTIONS(5471), - [anon_sym_LBRACK_LT] = ACTIONS(5473), - [anon_sym_do] = ACTIONS(5475), - [anon_sym_let] = ACTIONS(5477), - [anon_sym_let_BANG] = ACTIONS(5479), - [aux_sym_access_modifier_token1] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(5481), - [anon_sym__] = ACTIONS(5483), - [anon_sym_PIPE] = ACTIONS(5485), - [anon_sym_LBRACE] = ACTIONS(5517), - [anon_sym_new] = ACTIONS(5489), - [anon_sym_POUND] = ACTIONS(5491), - [anon_sym_CARET] = ACTIONS(5493), - [anon_sym_SQUOTE] = ACTIONS(5493), - [anon_sym_delegate] = ACTIONS(5495), - [anon_sym_default] = ACTIONS(5497), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_member] = ACTIONS(5501), - [anon_sym_interface] = ACTIONS(5503), - [anon_sym_abstract] = ACTIONS(5505), - [anon_sym_override] = ACTIONS(5497), - [anon_sym_val] = ACTIONS(5507), - [anon_sym_inherit] = ACTIONS(5509), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5511), + [ts_builtin_sym_end] = ACTIONS(5073), + [sym_identifier] = ACTIONS(5075), + [anon_sym_namespace] = ACTIONS(5075), + [anon_sym_module] = ACTIONS(5075), + [anon_sym_open] = ACTIONS(5075), + [anon_sym_LBRACK_LT] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5075), + [anon_sym_type] = ACTIONS(5075), + [anon_sym_do] = ACTIONS(5075), + [anon_sym_and] = ACTIONS(5075), + [anon_sym_let] = ACTIONS(5075), + [anon_sym_let_BANG] = ACTIONS(5073), + [aux_sym_access_modifier_token1] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_LBRACK_PIPE] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_LT_AT] = ACTIONS(5075), + [anon_sym_LT_AT_AT] = ACTIONS(5073), + [anon_sym_LBRACE_PIPE] = ACTIONS(5073), + [anon_sym_new] = ACTIONS(5075), + [anon_sym_return_BANG] = ACTIONS(5073), + [anon_sym_yield] = ACTIONS(5075), + [anon_sym_yield_BANG] = ACTIONS(5073), + [anon_sym_lazy] = ACTIONS(5075), + [anon_sym_assert] = ACTIONS(5075), + [anon_sym_upcast] = ACTIONS(5075), + [anon_sym_downcast] = ACTIONS(5075), + [anon_sym_for] = ACTIONS(5075), + [anon_sym_while] = ACTIONS(5075), + [anon_sym_if] = ACTIONS(5075), + [anon_sym_fun] = ACTIONS(5075), + [anon_sym_try] = ACTIONS(5075), + [anon_sym_match] = ACTIONS(5075), + [anon_sym_match_BANG] = ACTIONS(5073), + [anon_sym_function] = ACTIONS(5075), + [anon_sym_use] = ACTIONS(5075), + [anon_sym_use_BANG] = ACTIONS(5073), + [anon_sym_do_BANG] = ACTIONS(5073), + [anon_sym_begin] = ACTIONS(5075), + [anon_sym_default] = ACTIONS(5075), + [anon_sym_static] = ACTIONS(5075), + [anon_sym_member] = ACTIONS(5075), + [anon_sym_abstract] = ACTIONS(5075), + [anon_sym_override] = ACTIONS(5075), + [anon_sym_val] = ACTIONS(5075), + [aux_sym_char_token1] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_AT_DQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [sym_bool] = ACTIONS(5075), + [sym_unit] = ACTIONS(5073), + [anon_sym_LPAREN_PIPE] = ACTIONS(5075), + [sym_op_identifier] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_PLUS_DOT] = ACTIONS(5073), + [anon_sym_DASH_DOT] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_TILDE] = ACTIONS(5073), + [aux_sym_prefix_op_token1] = ACTIONS(5073), + [sym_int] = ACTIONS(5075), + [sym_xint] = ACTIONS(5073), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5073), + [anon_sym_POUNDload] = ACTIONS(5073), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5073), }, [3095] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5845), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3095), [sym_block_comment] = STATE(3095), [sym_line_comment] = STATE(3095), [sym_compiler_directive_decl] = STATE(3095), [sym_fsi_directive_decl] = STATE(3095), [sym_preproc_line] = STATE(3095), - [sym_identifier] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_let_BANG] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_LBRACE_PIPE] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_return_BANG] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_yield_BANG] = ACTIONS(3175), - [anon_sym_lazy] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_upcast] = ACTIONS(3173), - [anon_sym_downcast] = ACTIONS(3173), - [anon_sym_LT_AT] = ACTIONS(3173), - [anon_sym_LT_AT_AT] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_match_BANG] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_use] = ACTIONS(3173), - [anon_sym_use_BANG] = ACTIONS(3175), - [anon_sym_do_BANG] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [aux_sym_char_token1] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_AT_DQUOTE] = ACTIONS(3175), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3175), - [sym_bool] = ACTIONS(3173), - [sym_unit] = ACTIONS(3175), - [anon_sym_LPAREN_PIPE] = ACTIONS(3173), - [sym_op_identifier] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_PLUS_DOT] = ACTIONS(3175), - [anon_sym_DASH_DOT] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [aux_sym_prefix_op_token1] = ACTIONS(3175), - [sym_int] = ACTIONS(3173), - [sym_xint] = ACTIONS(3175), - [anon_sym_f] = ACTIONS(3173), - [aux_sym_decimal_token1] = ACTIONS(3173), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3175), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5470), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3096] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5843), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3096), [sym_block_comment] = STATE(3096), [sym_line_comment] = STATE(3096), [sym_compiler_directive_decl] = STATE(3096), [sym_fsi_directive_decl] = STATE(3096), [sym_preproc_line] = STATE(3096), - [aux_sym__function_or_value_defns_repeat1] = STATE(3096), - [sym_identifier] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_do] = ACTIONS(5197), - [anon_sym_and] = ACTIONS(5519), - [anon_sym_let] = ACTIONS(5197), - [anon_sym_let_BANG] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5197), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_AMP] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(5197), - [anon_sym_LBRACK_PIPE] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5197), - [anon_sym_LBRACE_PIPE] = ACTIONS(5195), - [anon_sym_new] = ACTIONS(5197), - [anon_sym_return_BANG] = ACTIONS(5195), - [anon_sym_yield] = ACTIONS(5197), - [anon_sym_yield_BANG] = ACTIONS(5195), - [anon_sym_lazy] = ACTIONS(5197), - [anon_sym_assert] = ACTIONS(5197), - [anon_sym_upcast] = ACTIONS(5197), - [anon_sym_downcast] = ACTIONS(5197), - [anon_sym_LT_AT] = ACTIONS(5197), - [anon_sym_LT_AT_AT] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_match] = ACTIONS(5197), - [anon_sym_match_BANG] = ACTIONS(5195), - [anon_sym_function] = ACTIONS(5197), - [anon_sym_use] = ACTIONS(5197), - [anon_sym_use_BANG] = ACTIONS(5195), - [anon_sym_do_BANG] = ACTIONS(5195), - [anon_sym_begin] = ACTIONS(5197), - [aux_sym_char_token1] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5197), - [anon_sym_DQUOTE] = ACTIONS(5197), - [anon_sym_AT_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [sym_bool] = ACTIONS(5197), - [sym_unit] = ACTIONS(5195), - [anon_sym_LPAREN_PIPE] = ACTIONS(5197), - [sym_op_identifier] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_PLUS_DOT] = ACTIONS(5195), - [anon_sym_DASH_DOT] = ACTIONS(5195), - [anon_sym_PERCENT] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_TILDE] = ACTIONS(5195), - [aux_sym_prefix_op_token1] = ACTIONS(5195), - [sym_int] = ACTIONS(5197), - [sym_xint] = ACTIONS(5195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5195), - [anon_sym_POUNDendif] = ACTIONS(5195), - [anon_sym_POUNDelse] = ACTIONS(5195), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5472), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3097] = { - [sym_type] = STATE(5147), - [sym__simple_type] = STATE(5208), - [sym__generic_type] = STATE(5208), - [sym__paren_type] = STATE(5208), - [sym__function_type] = STATE(5208), - [sym__compound_type] = STATE(5208), - [sym__postfix_type] = STATE(5208), - [sym__list_type] = STATE(5208), - [sym__static_type] = STATE(5208), - [sym__constrained_type] = STATE(5208), - [sym__flexible_type] = STATE(5208), - [sym__static_type_identifier] = STATE(4814), - [sym__static_parameter] = STATE(6284), - [sym_named_static_parameter] = STATE(6286), - [sym_static_parameter_value] = STATE(6286), - [sym_type_attribute] = STATE(6464), - [sym_type_argument] = STATE(4947), - [sym_char] = STATE(3131), - [sym_format_string] = STATE(3133), - [sym__string_literal] = STATE(3133), - [sym_string] = STATE(3131), - [sym_verbatim_string] = STATE(3131), - [sym_bytearray] = STATE(3131), - [sym_verbatim_bytearray] = STATE(3131), - [sym_format_triple_quoted_string] = STATE(3143), - [sym_triple_quoted_string] = STATE(3131), - [sym_const] = STATE(480), - [sym_long_identifier] = STATE(5199), - [sym_sbyte] = STATE(3131), - [sym_byte] = STATE(3131), - [sym_int16] = STATE(3131), - [sym_uint16] = STATE(3131), - [sym_int32] = STATE(3131), - [sym_uint32] = STATE(3131), - [sym_nativeint] = STATE(3131), - [sym_unativeint] = STATE(3131), - [sym_int64] = STATE(3131), - [sym_uint64] = STATE(3131), - [sym_ieee32] = STATE(3131), - [sym_ieee64] = STATE(3131), - [sym_bignum] = STATE(3131), - [sym_decimal] = STATE(3131), - [sym_float] = STATE(3091), + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5842), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3097), [sym_block_comment] = STATE(3097), [sym_line_comment] = STATE(3097), [sym_compiler_directive_decl] = STATE(3097), [sym_fsi_directive_decl] = STATE(3097), [sym_preproc_line] = STATE(3097), - [sym_identifier] = ACTIONS(5302), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym__] = ACTIONS(5306), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_SQUOTE] = ACTIONS(5312), - [aux_sym_char_token1] = ACTIONS(5314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_AT_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5322), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5324), - [sym_bool] = ACTIONS(5326), - [sym_unit] = ACTIONS(5328), - [sym_int] = ACTIONS(5330), - [sym_xint] = ACTIONS(5332), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5334), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5470), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), @@ -362380,2323 +371297,2692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3098] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5521), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3098), [sym_block_comment] = STATE(3098), [sym_line_comment] = STATE(3098), [sym_compiler_directive_decl] = STATE(3098), [sym_fsi_directive_decl] = STATE(3098), [sym_preproc_line] = STATE(3098), - [sym_identifier] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_do] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_let_BANG] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_null] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_LBRACE_PIPE] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_return_BANG] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_yield_BANG] = ACTIONS(3005), - [anon_sym_lazy] = ACTIONS(3003), - [anon_sym_assert] = ACTIONS(3003), - [anon_sym_upcast] = ACTIONS(3003), - [anon_sym_downcast] = ACTIONS(3003), - [anon_sym_LT_AT] = ACTIONS(3003), - [anon_sym_LT_AT_AT] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_fun] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_match_BANG] = ACTIONS(3005), - [anon_sym_function] = ACTIONS(3003), - [anon_sym_use] = ACTIONS(3003), - [anon_sym_use_BANG] = ACTIONS(3005), - [anon_sym_do_BANG] = ACTIONS(3005), - [anon_sym_begin] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_LT2] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3005), - [aux_sym_char_token1] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [anon_sym_AT_DQUOTE] = ACTIONS(3005), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3005), - [sym_bool] = ACTIONS(3003), - [sym_unit] = ACTIONS(3005), - [anon_sym_LPAREN_PIPE] = ACTIONS(3003), - [sym_op_identifier] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [aux_sym_prefix_op_token1] = ACTIONS(3005), - [sym_int] = ACTIONS(3003), - [sym_xint] = ACTIONS(3005), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3005), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3099] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5865), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3099), [sym_block_comment] = STATE(3099), [sym_line_comment] = STATE(3099), [sym_compiler_directive_decl] = STATE(3099), [sym_fsi_directive_decl] = STATE(3099), [sym_preproc_line] = STATE(3099), - [sym_identifier] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_let_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_null] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_LBRACK_PIPE] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_LBRACE_PIPE] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_return_BANG] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_yield_BANG] = ACTIONS(3019), - [anon_sym_lazy] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_upcast] = ACTIONS(3017), - [anon_sym_downcast] = ACTIONS(3017), - [anon_sym_LT_AT] = ACTIONS(3017), - [anon_sym_LT_AT_AT] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_fun] = ACTIONS(3017), - [anon_sym_DASH_GT] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_match_BANG] = ACTIONS(3019), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_use_BANG] = ACTIONS(3019), - [anon_sym_do_BANG] = ACTIONS(3019), - [anon_sym_begin] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_LT2] = ACTIONS(3017), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3019), - [aux_sym_char_token1] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [anon_sym_AT_DQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3019), - [sym_bool] = ACTIONS(3017), - [sym_unit] = ACTIONS(3019), - [anon_sym_LPAREN_PIPE] = ACTIONS(3017), - [sym_op_identifier] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_PLUS_DOT] = ACTIONS(3019), - [anon_sym_DASH_DOT] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [aux_sym_prefix_op_token1] = ACTIONS(3019), - [sym_int] = ACTIONS(3017), - [sym_xint] = ACTIONS(3019), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3019), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3100] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3819), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3100), [sym_block_comment] = STATE(3100), [sym_line_comment] = STATE(3100), [sym_compiler_directive_decl] = STATE(3100), [sym_fsi_directive_decl] = STATE(3100), [sym_preproc_line] = STATE(3100), - [sym_identifier] = ACTIONS(3047), - [anon_sym_return] = ACTIONS(3047), - [anon_sym_do] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_let_BANG] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_null] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACK_PIPE] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3047), - [anon_sym_return_BANG] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3047), - [anon_sym_yield_BANG] = ACTIONS(3049), - [anon_sym_lazy] = ACTIONS(3047), - [anon_sym_assert] = ACTIONS(3047), - [anon_sym_upcast] = ACTIONS(3047), - [anon_sym_downcast] = ACTIONS(3047), - [anon_sym_LT_AT] = ACTIONS(3047), - [anon_sym_LT_AT_AT] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3047), - [anon_sym_while] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3047), - [anon_sym_fun] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3047), - [anon_sym_match_BANG] = ACTIONS(3049), - [anon_sym_function] = ACTIONS(3047), - [anon_sym_use] = ACTIONS(3047), - [anon_sym_use_BANG] = ACTIONS(3049), - [anon_sym_do_BANG] = ACTIONS(3049), - [anon_sym_begin] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LT2] = ACTIONS(3047), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3049), - [aux_sym_char_token1] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3047), - [anon_sym_DQUOTE] = ACTIONS(3047), - [anon_sym_AT_DQUOTE] = ACTIONS(3049), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3049), - [sym_bool] = ACTIONS(3047), - [sym_unit] = ACTIONS(3049), - [anon_sym_LPAREN_PIPE] = ACTIONS(3047), - [sym_op_identifier] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_PLUS_DOT] = ACTIONS(3049), - [anon_sym_DASH_DOT] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [aux_sym_prefix_op_token1] = ACTIONS(3049), - [sym_int] = ACTIONS(3047), - [sym_xint] = ACTIONS(3049), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3049), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3101] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3834), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3101), [sym_block_comment] = STATE(3101), [sym_line_comment] = STATE(3101), [sym_compiler_directive_decl] = STATE(3101), [sym_fsi_directive_decl] = STATE(3101), [sym_preproc_line] = STATE(3101), - [sym_identifier] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_let_BANG] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_null] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_LBRACE_PIPE] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_return_BANG] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_yield_BANG] = ACTIONS(3179), - [anon_sym_lazy] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_upcast] = ACTIONS(3177), - [anon_sym_downcast] = ACTIONS(3177), - [anon_sym_LT_AT] = ACTIONS(3177), - [anon_sym_LT_AT_AT] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_while] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_try] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_match_BANG] = ACTIONS(3179), - [anon_sym_function] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_use] = ACTIONS(3177), - [anon_sym_use_BANG] = ACTIONS(3179), - [anon_sym_do_BANG] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [aux_sym_char_token1] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_AT_DQUOTE] = ACTIONS(3179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3179), - [sym_bool] = ACTIONS(3177), - [sym_unit] = ACTIONS(3179), - [anon_sym_LPAREN_PIPE] = ACTIONS(3177), - [sym_op_identifier] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_PLUS_DOT] = ACTIONS(3179), - [anon_sym_DASH_DOT] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [aux_sym_prefix_op_token1] = ACTIONS(3179), - [sym_int] = ACTIONS(5522), - [sym_xint] = ACTIONS(3179), - [anon_sym_f] = ACTIONS(3177), - [aux_sym_decimal_token1] = ACTIONS(3177), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3102] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5818), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3102), [sym_block_comment] = STATE(3102), [sym_line_comment] = STATE(3102), [sym_compiler_directive_decl] = STATE(3102), [sym_fsi_directive_decl] = STATE(3102), [sym_preproc_line] = STATE(3102), - [sym_identifier] = ACTIONS(5263), - [anon_sym_return] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(5263), - [anon_sym_and] = ACTIONS(5263), - [anon_sym_let] = ACTIONS(5263), - [anon_sym_let_BANG] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(5263), - [anon_sym_AMP] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_LBRACK_PIPE] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_LBRACE_PIPE] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5263), - [anon_sym_return_BANG] = ACTIONS(5261), - [anon_sym_yield] = ACTIONS(5263), - [anon_sym_yield_BANG] = ACTIONS(5261), - [anon_sym_lazy] = ACTIONS(5263), - [anon_sym_assert] = ACTIONS(5263), - [anon_sym_upcast] = ACTIONS(5263), - [anon_sym_downcast] = ACTIONS(5263), - [anon_sym_LT_AT] = ACTIONS(5263), - [anon_sym_LT_AT_AT] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5263), - [anon_sym_if] = ACTIONS(5263), - [anon_sym_fun] = ACTIONS(5263), - [anon_sym_try] = ACTIONS(5263), - [anon_sym_match] = ACTIONS(5263), - [anon_sym_match_BANG] = ACTIONS(5261), - [anon_sym_function] = ACTIONS(5263), - [anon_sym_use] = ACTIONS(5263), - [anon_sym_use_BANG] = ACTIONS(5261), - [anon_sym_do_BANG] = ACTIONS(5261), - [anon_sym_begin] = ACTIONS(5263), - [aux_sym_char_token1] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_AT_DQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [sym_bool] = ACTIONS(5263), - [sym_unit] = ACTIONS(5261), - [anon_sym_LPAREN_PIPE] = ACTIONS(5263), - [sym_op_identifier] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_PLUS_DOT] = ACTIONS(5261), - [anon_sym_DASH_DOT] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5261), - [aux_sym_prefix_op_token1] = ACTIONS(5261), - [sym_int] = ACTIONS(5263), - [sym_xint] = ACTIONS(5261), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5261), - [anon_sym_POUNDendif] = ACTIONS(5261), - [anon_sym_POUNDelse] = ACTIONS(5261), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3103] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3816), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3103), [sym_block_comment] = STATE(3103), [sym_line_comment] = STATE(3103), [sym_compiler_directive_decl] = STATE(3103), [sym_fsi_directive_decl] = STATE(3103), [sym_preproc_line] = STATE(3103), - [aux_sym__function_or_value_defns_repeat1] = STATE(3103), - [sym_identifier] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_do] = ACTIONS(5197), - [anon_sym_and] = ACTIONS(5524), - [anon_sym_let] = ACTIONS(5197), - [anon_sym_let_BANG] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5197), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_AMP] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(5197), - [anon_sym_LBRACK_PIPE] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5197), - [anon_sym_LBRACE_PIPE] = ACTIONS(5195), - [anon_sym_new] = ACTIONS(5197), - [anon_sym_return_BANG] = ACTIONS(5195), - [anon_sym_yield] = ACTIONS(5197), - [anon_sym_yield_BANG] = ACTIONS(5195), - [anon_sym_lazy] = ACTIONS(5197), - [anon_sym_assert] = ACTIONS(5197), - [anon_sym_upcast] = ACTIONS(5197), - [anon_sym_downcast] = ACTIONS(5197), - [anon_sym_LT_AT] = ACTIONS(5197), - [anon_sym_LT_AT_AT] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_match] = ACTIONS(5197), - [anon_sym_match_BANG] = ACTIONS(5195), - [anon_sym_function] = ACTIONS(5197), - [anon_sym_use] = ACTIONS(5197), - [anon_sym_use_BANG] = ACTIONS(5195), - [anon_sym_do_BANG] = ACTIONS(5195), - [anon_sym_begin] = ACTIONS(5197), - [aux_sym_char_token1] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5197), - [anon_sym_DQUOTE] = ACTIONS(5197), - [anon_sym_AT_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [sym_bool] = ACTIONS(5197), - [sym_unit] = ACTIONS(5195), - [anon_sym_LPAREN_PIPE] = ACTIONS(5197), - [sym_op_identifier] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_PLUS_DOT] = ACTIONS(5195), - [anon_sym_DASH_DOT] = ACTIONS(5195), - [anon_sym_PERCENT] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_TILDE] = ACTIONS(5195), - [aux_sym_prefix_op_token1] = ACTIONS(5195), - [sym_int] = ACTIONS(5197), - [sym_xint] = ACTIONS(5195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5195), - [anon_sym_POUNDendif] = ACTIONS(5195), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3104] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5872), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3104), [sym_block_comment] = STATE(3104), [sym_line_comment] = STATE(3104), [sym_compiler_directive_decl] = STATE(3104), [sym_fsi_directive_decl] = STATE(3104), [sym_preproc_line] = STATE(3104), - [aux_sym__function_or_value_defns_repeat1] = STATE(3103), - [sym_identifier] = ACTIONS(5181), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_do] = ACTIONS(5181), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_let] = ACTIONS(5181), - [anon_sym_let_BANG] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_LBRACK_PIPE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5181), - [anon_sym_LBRACE_PIPE] = ACTIONS(5179), - [anon_sym_new] = ACTIONS(5181), - [anon_sym_return_BANG] = ACTIONS(5179), - [anon_sym_yield] = ACTIONS(5181), - [anon_sym_yield_BANG] = ACTIONS(5179), - [anon_sym_lazy] = ACTIONS(5181), - [anon_sym_assert] = ACTIONS(5181), - [anon_sym_upcast] = ACTIONS(5181), - [anon_sym_downcast] = ACTIONS(5181), - [anon_sym_LT_AT] = ACTIONS(5181), - [anon_sym_LT_AT_AT] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_match] = ACTIONS(5181), - [anon_sym_match_BANG] = ACTIONS(5179), - [anon_sym_function] = ACTIONS(5181), - [anon_sym_use] = ACTIONS(5181), - [anon_sym_use_BANG] = ACTIONS(5179), - [anon_sym_do_BANG] = ACTIONS(5179), - [anon_sym_begin] = ACTIONS(5181), - [aux_sym_char_token1] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5181), - [anon_sym_DQUOTE] = ACTIONS(5181), - [anon_sym_AT_DQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [sym_bool] = ACTIONS(5181), - [sym_unit] = ACTIONS(5179), - [anon_sym_LPAREN_PIPE] = ACTIONS(5181), - [sym_op_identifier] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_PLUS_DOT] = ACTIONS(5179), - [anon_sym_DASH_DOT] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [aux_sym_prefix_op_token1] = ACTIONS(5179), - [sym_int] = ACTIONS(5181), - [sym_xint] = ACTIONS(5179), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5179), - [anon_sym_POUNDendif] = ACTIONS(5179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5474), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3105] = { + [sym_attributes] = STATE(3103), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3815), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2147), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3105), [sym_block_comment] = STATE(3105), [sym_line_comment] = STATE(3105), [sym_compiler_directive_decl] = STATE(3105), [sym_fsi_directive_decl] = STATE(3105), [sym_preproc_line] = STATE(3105), - [aux_sym__function_or_value_defns_repeat1] = STATE(3104), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5527), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LBRACE_PIPE] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5126), - [anon_sym_return_BANG] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5126), - [anon_sym_yield_BANG] = ACTIONS(5124), - [anon_sym_lazy] = ACTIONS(5126), - [anon_sym_assert] = ACTIONS(5126), - [anon_sym_upcast] = ACTIONS(5126), - [anon_sym_downcast] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5126), - [anon_sym_while] = ACTIONS(5126), - [anon_sym_if] = ACTIONS(5126), - [anon_sym_fun] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5126), - [anon_sym_match] = ACTIONS(5126), - [anon_sym_match_BANG] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(5126), - [anon_sym_use] = ACTIONS(5126), - [anon_sym_use_BANG] = ACTIONS(5124), - [anon_sym_do_BANG] = ACTIONS(5124), - [anon_sym_begin] = ACTIONS(5126), - [aux_sym_char_token1] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [anon_sym_AT_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [sym_bool] = ACTIONS(5126), - [sym_unit] = ACTIONS(5124), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [sym_op_identifier] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_PLUS_DOT] = ACTIONS(5124), - [anon_sym_DASH_DOT] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5124), - [aux_sym_prefix_op_token1] = ACTIONS(5124), - [sym_int] = ACTIONS(5126), - [sym_xint] = ACTIONS(5124), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5124), - [anon_sym_POUNDendif] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5386), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5388), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3106] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4075), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3106), [sym_block_comment] = STATE(3106), [sym_line_comment] = STATE(3106), [sym_compiler_directive_decl] = STATE(3106), [sym_fsi_directive_decl] = STATE(3106), [sym_preproc_line] = STATE(3106), - [sym_identifier] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_and] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_BANG] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LBRACK_PIPE] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACE_PIPE] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5235), - [anon_sym_return_BANG] = ACTIONS(5233), - [anon_sym_yield] = ACTIONS(5235), - [anon_sym_yield_BANG] = ACTIONS(5233), - [anon_sym_lazy] = ACTIONS(5235), - [anon_sym_assert] = ACTIONS(5235), - [anon_sym_upcast] = ACTIONS(5235), - [anon_sym_downcast] = ACTIONS(5235), - [anon_sym_LT_AT] = ACTIONS(5235), - [anon_sym_LT_AT_AT] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_match_BANG] = ACTIONS(5233), - [anon_sym_function] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_use_BANG] = ACTIONS(5233), - [anon_sym_do_BANG] = ACTIONS(5233), - [anon_sym_begin] = ACTIONS(5235), - [aux_sym_char_token1] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [anon_sym_AT_DQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [sym_bool] = ACTIONS(5235), - [sym_unit] = ACTIONS(5233), - [anon_sym_LPAREN_PIPE] = ACTIONS(5235), - [sym_op_identifier] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_PLUS_DOT] = ACTIONS(5233), - [anon_sym_DASH_DOT] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_TILDE] = ACTIONS(5233), - [aux_sym_prefix_op_token1] = ACTIONS(5233), - [sym_int] = ACTIONS(5235), - [sym_xint] = ACTIONS(5233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5233), - [anon_sym_POUNDendif] = ACTIONS(5233), - [anon_sym_POUNDelse] = ACTIONS(5233), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3107] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5837), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3107), [sym_block_comment] = STATE(3107), [sym_line_comment] = STATE(3107), [sym_compiler_directive_decl] = STATE(3107), [sym_fsi_directive_decl] = STATE(3107), [sym_preproc_line] = STATE(3107), - [sym_identifier] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_and] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3169), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3169), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), - [anon_sym_POUNDelse] = ACTIONS(3169), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5476), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3108] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5553), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3108), [sym_block_comment] = STATE(3108), [sym_line_comment] = STATE(3108), [sym_compiler_directive_decl] = STATE(3108), [sym_fsi_directive_decl] = STATE(3108), [sym_preproc_line] = STATE(3108), - [sym_identifier] = ACTIONS(5270), - [anon_sym_return] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_let_BANG] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_null] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LBRACK_PIPE] = ACTIONS(5268), - [anon_sym_LBRACE] = ACTIONS(5270), - [anon_sym_LBRACE_PIPE] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5270), - [anon_sym_return_BANG] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5270), - [anon_sym_yield_BANG] = ACTIONS(5268), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_assert] = ACTIONS(5270), - [anon_sym_upcast] = ACTIONS(5270), - [anon_sym_downcast] = ACTIONS(5270), - [anon_sym_LT_AT] = ACTIONS(5270), - [anon_sym_LT_AT_AT] = ACTIONS(5268), - [anon_sym_for] = ACTIONS(5270), - [anon_sym_while] = ACTIONS(5270), - [anon_sym_if] = ACTIONS(5270), - [anon_sym_fun] = ACTIONS(5270), - [anon_sym_try] = ACTIONS(5270), - [anon_sym_match] = ACTIONS(5270), - [anon_sym_match_BANG] = ACTIONS(5268), - [anon_sym_function] = ACTIONS(5270), - [anon_sym_use] = ACTIONS(5270), - [anon_sym_use_BANG] = ACTIONS(5268), - [anon_sym_do_BANG] = ACTIONS(5268), - [anon_sym_begin] = ACTIONS(5270), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_AT_DQUOTE] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [sym_bool] = ACTIONS(5270), - [sym_unit] = ACTIONS(5268), - [anon_sym_LPAREN_PIPE] = ACTIONS(5270), - [sym_op_identifier] = ACTIONS(5268), - [anon_sym_PLUS] = ACTIONS(5270), - [anon_sym_DASH] = ACTIONS(5270), - [anon_sym_PLUS_DOT] = ACTIONS(5268), - [anon_sym_DASH_DOT] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5268), - [aux_sym_prefix_op_token1] = ACTIONS(5268), - [sym_int] = ACTIONS(5270), - [sym_xint] = ACTIONS(5268), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5268), - [anon_sym_POUNDendif] = ACTIONS(5268), - [anon_sym_POUNDelse] = ACTIONS(5268), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3109] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5567), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3109), [sym_block_comment] = STATE(3109), [sym_line_comment] = STATE(3109), [sym_compiler_directive_decl] = STATE(3109), [sym_fsi_directive_decl] = STATE(3109), [sym_preproc_line] = STATE(3109), - [sym_identifier] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_let_BANG] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_LBRACE_PIPE] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_return_BANG] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_yield_BANG] = ACTIONS(3373), - [anon_sym_lazy] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_upcast] = ACTIONS(3371), - [anon_sym_downcast] = ACTIONS(3371), - [anon_sym_LT_AT] = ACTIONS(3371), - [anon_sym_LT_AT_AT] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_fun] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_match_BANG] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3373), - [anon_sym_use] = ACTIONS(3371), - [anon_sym_use_BANG] = ACTIONS(3373), - [anon_sym_do_BANG] = ACTIONS(3373), - [anon_sym_begin] = ACTIONS(3371), - [aux_sym_char_token1] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_AT_DQUOTE] = ACTIONS(3373), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3373), - [sym_bool] = ACTIONS(3371), - [sym_unit] = ACTIONS(3373), - [anon_sym_LPAREN_PIPE] = ACTIONS(3371), - [sym_op_identifier] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [aux_sym_prefix_op_token1] = ACTIONS(3373), - [sym_int] = ACTIONS(3371), - [sym_xint] = ACTIONS(3373), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3373), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3110] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5566), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3110), [sym_block_comment] = STATE(3110), [sym_line_comment] = STATE(3110), [sym_compiler_directive_decl] = STATE(3110), [sym_fsi_directive_decl] = STATE(3110), [sym_preproc_line] = STATE(3110), - [sym_identifier] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_let_BANG] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_LBRACE_PIPE] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_return_BANG] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_yield_BANG] = ACTIONS(3377), - [anon_sym_lazy] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_upcast] = ACTIONS(3375), - [anon_sym_downcast] = ACTIONS(3375), - [anon_sym_LT_AT] = ACTIONS(3375), - [anon_sym_LT_AT_AT] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_fun] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_match_BANG] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_use] = ACTIONS(3375), - [anon_sym_use_BANG] = ACTIONS(3377), - [anon_sym_do_BANG] = ACTIONS(3377), - [anon_sym_begin] = ACTIONS(3375), - [aux_sym_char_token1] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_AT_DQUOTE] = ACTIONS(3377), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), - [sym_bool] = ACTIONS(3375), - [sym_unit] = ACTIONS(3377), - [anon_sym_LPAREN_PIPE] = ACTIONS(3375), - [sym_op_identifier] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [anon_sym_PERCENT] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [aux_sym_prefix_op_token1] = ACTIONS(3377), - [sym_int] = ACTIONS(3375), - [sym_xint] = ACTIONS(3377), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3377), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3111] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5565), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3111), [sym_block_comment] = STATE(3111), [sym_line_comment] = STATE(3111), [sym_compiler_directive_decl] = STATE(3111), [sym_fsi_directive_decl] = STATE(3111), [sym_preproc_line] = STATE(3111), - [sym_identifier] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_and] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3169), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3169), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), - [anon_sym_POUNDendif] = ACTIONS(3169), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3112] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5564), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3112), [sym_block_comment] = STATE(3112), [sym_line_comment] = STATE(3112), [sym_compiler_directive_decl] = STATE(3112), [sym_fsi_directive_decl] = STATE(3112), [sym_preproc_line] = STATE(3112), - [sym_identifier] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_let_BANG] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_COMMA] = ACTIONS(3536), - [anon_sym_null] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LBRACK_PIPE] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_LBRACE_PIPE] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_return_BANG] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_yield_BANG] = ACTIONS(3536), - [anon_sym_lazy] = ACTIONS(3534), - [anon_sym_assert] = ACTIONS(3534), - [anon_sym_upcast] = ACTIONS(3534), - [anon_sym_downcast] = ACTIONS(3534), - [anon_sym_LT_AT] = ACTIONS(3534), - [anon_sym_LT_AT_AT] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_fun] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_match] = ACTIONS(3534), - [anon_sym_match_BANG] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_GT] = ACTIONS(3536), - [anon_sym_use] = ACTIONS(3534), - [anon_sym_use_BANG] = ACTIONS(3536), - [anon_sym_do_BANG] = ACTIONS(3536), - [anon_sym_begin] = ACTIONS(3534), - [aux_sym_char_token1] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_AT_DQUOTE] = ACTIONS(3536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3536), - [sym_bool] = ACTIONS(3534), - [sym_unit] = ACTIONS(3536), - [anon_sym_LPAREN_PIPE] = ACTIONS(3534), - [sym_op_identifier] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS_DOT] = ACTIONS(3536), - [anon_sym_DASH_DOT] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [aux_sym_prefix_op_token1] = ACTIONS(3536), - [sym_int] = ACTIONS(3534), - [sym_xint] = ACTIONS(3536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3536), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3113] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5835), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3113), [sym_block_comment] = STATE(3113), [sym_line_comment] = STATE(3113), [sym_compiler_directive_decl] = STATE(3113), [sym_fsi_directive_decl] = STATE(3113), [sym_preproc_line] = STATE(3113), - [sym_identifier] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_let_BANG] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_null] = ACTIONS(3528), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LBRACK_PIPE] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_LBRACE_PIPE] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_return_BANG] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_yield_BANG] = ACTIONS(3530), - [anon_sym_lazy] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_upcast] = ACTIONS(3528), - [anon_sym_downcast] = ACTIONS(3528), - [anon_sym_LT_AT] = ACTIONS(3528), - [anon_sym_LT_AT_AT] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_fun] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_match_BANG] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3530), - [anon_sym_use] = ACTIONS(3528), - [anon_sym_use_BANG] = ACTIONS(3530), - [anon_sym_do_BANG] = ACTIONS(3530), - [anon_sym_begin] = ACTIONS(3528), - [aux_sym_char_token1] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_AT_DQUOTE] = ACTIONS(3530), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3530), - [sym_bool] = ACTIONS(3528), - [sym_unit] = ACTIONS(3530), - [anon_sym_LPAREN_PIPE] = ACTIONS(3528), - [sym_op_identifier] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS_DOT] = ACTIONS(3530), - [anon_sym_DASH_DOT] = ACTIONS(3530), - [anon_sym_PERCENT] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [aux_sym_prefix_op_token1] = ACTIONS(3530), - [sym_int] = ACTIONS(3528), - [sym_xint] = ACTIONS(3530), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3530), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5458), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3114] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5861), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3114), [sym_block_comment] = STATE(3114), [sym_line_comment] = STATE(3114), [sym_compiler_directive_decl] = STATE(3114), [sym_fsi_directive_decl] = STATE(3114), [sym_preproc_line] = STATE(3114), - [sym_identifier] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_let_BANG] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_COMMA] = ACTIONS(3264), - [anon_sym_null] = ACTIONS(3262), - [anon_sym_AMP] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LBRACK_PIPE] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_LBRACE_PIPE] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_return_BANG] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_yield_BANG] = ACTIONS(3264), - [anon_sym_lazy] = ACTIONS(3262), - [anon_sym_assert] = ACTIONS(3262), - [anon_sym_upcast] = ACTIONS(3262), - [anon_sym_downcast] = ACTIONS(3262), - [anon_sym_LT_AT] = ACTIONS(3262), - [anon_sym_LT_AT_AT] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_fun] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_match] = ACTIONS(3262), - [anon_sym_match_BANG] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_GT] = ACTIONS(3264), - [anon_sym_use] = ACTIONS(3262), - [anon_sym_use_BANG] = ACTIONS(3264), - [anon_sym_do_BANG] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(3262), - [aux_sym_char_token1] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_AT_DQUOTE] = ACTIONS(3264), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3264), - [sym_bool] = ACTIONS(3262), - [sym_unit] = ACTIONS(3264), - [anon_sym_LPAREN_PIPE] = ACTIONS(3262), - [sym_op_identifier] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_PLUS_DOT] = ACTIONS(3264), - [anon_sym_DASH_DOT] = ACTIONS(3264), - [anon_sym_PERCENT] = ACTIONS(3264), - [anon_sym_AMP_AMP] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [aux_sym_prefix_op_token1] = ACTIONS(3264), - [sym_int] = ACTIONS(3262), - [sym_xint] = ACTIONS(3264), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3264), }, [3115] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5879), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3115), [sym_block_comment] = STATE(3115), [sym_line_comment] = STATE(3115), [sym_compiler_directive_decl] = STATE(3115), [sym_fsi_directive_decl] = STATE(3115), [sym_preproc_line] = STATE(3115), - [sym_identifier] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_let_BANG] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3268), - [anon_sym_COMMA] = ACTIONS(3270), - [anon_sym_null] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LBRACK_PIPE] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_LBRACE_PIPE] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_return_BANG] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_yield_BANG] = ACTIONS(3270), - [anon_sym_lazy] = ACTIONS(3268), - [anon_sym_assert] = ACTIONS(3268), - [anon_sym_upcast] = ACTIONS(3268), - [anon_sym_downcast] = ACTIONS(3268), - [anon_sym_LT_AT] = ACTIONS(3268), - [anon_sym_LT_AT_AT] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_fun] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_match] = ACTIONS(3268), - [anon_sym_match_BANG] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_GT] = ACTIONS(3270), - [anon_sym_use] = ACTIONS(3268), - [anon_sym_use_BANG] = ACTIONS(3270), - [anon_sym_do_BANG] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3268), - [aux_sym_char_token1] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [anon_sym_AT_DQUOTE] = ACTIONS(3270), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3270), - [sym_bool] = ACTIONS(3268), - [sym_unit] = ACTIONS(3270), - [anon_sym_LPAREN_PIPE] = ACTIONS(3268), - [sym_op_identifier] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_PLUS_DOT] = ACTIONS(3270), - [anon_sym_DASH_DOT] = ACTIONS(3270), - [anon_sym_PERCENT] = ACTIONS(3270), - [anon_sym_AMP_AMP] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [aux_sym_prefix_op_token1] = ACTIONS(3270), - [sym_int] = ACTIONS(3268), - [sym_xint] = ACTIONS(3270), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3270), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3116] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5462), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3116), [sym_block_comment] = STATE(3116), [sym_line_comment] = STATE(3116), [sym_compiler_directive_decl] = STATE(3116), [sym_fsi_directive_decl] = STATE(3116), [sym_preproc_line] = STATE(3116), - [sym_identifier] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_let_BANG] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(3274), - [anon_sym_null] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LBRACK_PIPE] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_LBRACE_PIPE] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_return_BANG] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_yield_BANG] = ACTIONS(3274), - [anon_sym_lazy] = ACTIONS(3272), - [anon_sym_assert] = ACTIONS(3272), - [anon_sym_upcast] = ACTIONS(3272), - [anon_sym_downcast] = ACTIONS(3272), - [anon_sym_LT_AT] = ACTIONS(3272), - [anon_sym_LT_AT_AT] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_fun] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_match] = ACTIONS(3272), - [anon_sym_match_BANG] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_GT] = ACTIONS(3274), - [anon_sym_use] = ACTIONS(3272), - [anon_sym_use_BANG] = ACTIONS(3274), - [anon_sym_do_BANG] = ACTIONS(3274), - [anon_sym_begin] = ACTIONS(3272), - [aux_sym_char_token1] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_AT_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3274), - [sym_bool] = ACTIONS(3272), - [sym_unit] = ACTIONS(3274), - [anon_sym_LPAREN_PIPE] = ACTIONS(3272), - [sym_op_identifier] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_PLUS_DOT] = ACTIONS(3274), - [anon_sym_DASH_DOT] = ACTIONS(3274), - [anon_sym_PERCENT] = ACTIONS(3274), - [anon_sym_AMP_AMP] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [aux_sym_prefix_op_token1] = ACTIONS(3274), - [sym_int] = ACTIONS(3272), - [sym_xint] = ACTIONS(3274), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3274), }, [3117] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5406), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3117), [sym_block_comment] = STATE(3117), [sym_line_comment] = STATE(3117), [sym_compiler_directive_decl] = STATE(3117), [sym_fsi_directive_decl] = STATE(3117), [sym_preproc_line] = STATE(3117), - [sym_identifier] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_let_BANG] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_COMMA] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LBRACK_PIPE] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_LBRACE_PIPE] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_return_BANG] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_yield_BANG] = ACTIONS(3278), - [anon_sym_lazy] = ACTIONS(3276), - [anon_sym_assert] = ACTIONS(3276), - [anon_sym_upcast] = ACTIONS(3276), - [anon_sym_downcast] = ACTIONS(3276), - [anon_sym_LT_AT] = ACTIONS(3276), - [anon_sym_LT_AT_AT] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_match] = ACTIONS(3276), - [anon_sym_match_BANG] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3278), - [anon_sym_use] = ACTIONS(3276), - [anon_sym_use_BANG] = ACTIONS(3278), - [anon_sym_do_BANG] = ACTIONS(3278), - [anon_sym_begin] = ACTIONS(3276), - [aux_sym_char_token1] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_AT_DQUOTE] = ACTIONS(3278), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3278), - [sym_bool] = ACTIONS(3276), - [sym_unit] = ACTIONS(3278), - [anon_sym_LPAREN_PIPE] = ACTIONS(3276), - [sym_op_identifier] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_DOT] = ACTIONS(3278), - [anon_sym_DASH_DOT] = ACTIONS(3278), - [anon_sym_PERCENT] = ACTIONS(3278), - [anon_sym_AMP_AMP] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [aux_sym_prefix_op_token1] = ACTIONS(3278), - [sym_int] = ACTIONS(3276), - [sym_xint] = ACTIONS(3278), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3278), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3118] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5488), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3118), [sym_block_comment] = STATE(3118), [sym_line_comment] = STATE(3118), [sym_compiler_directive_decl] = STATE(3118), [sym_fsi_directive_decl] = STATE(3118), [sym_preproc_line] = STATE(3118), - [sym_identifier] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_let_BANG] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3282), - [anon_sym_null] = ACTIONS(3280), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_LBRACK_PIPE] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_LBRACE_PIPE] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_return_BANG] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_yield_BANG] = ACTIONS(3282), - [anon_sym_lazy] = ACTIONS(3280), - [anon_sym_assert] = ACTIONS(3280), - [anon_sym_upcast] = ACTIONS(3280), - [anon_sym_downcast] = ACTIONS(3280), - [anon_sym_LT_AT] = ACTIONS(3280), - [anon_sym_LT_AT_AT] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_fun] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3280), - [anon_sym_match_BANG] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_GT] = ACTIONS(3282), - [anon_sym_use] = ACTIONS(3280), - [anon_sym_use_BANG] = ACTIONS(3282), - [anon_sym_do_BANG] = ACTIONS(3282), - [anon_sym_begin] = ACTIONS(3280), - [aux_sym_char_token1] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [anon_sym_AT_DQUOTE] = ACTIONS(3282), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3282), - [sym_bool] = ACTIONS(3280), - [sym_unit] = ACTIONS(3282), - [anon_sym_LPAREN_PIPE] = ACTIONS(3280), - [sym_op_identifier] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS_DOT] = ACTIONS(3282), - [anon_sym_DASH_DOT] = ACTIONS(3282), - [anon_sym_PERCENT] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [aux_sym_prefix_op_token1] = ACTIONS(3282), - [sym_int] = ACTIONS(3280), - [sym_xint] = ACTIONS(3282), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3282), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3119] = { + [sym_attributes] = STATE(3108), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5509), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2005), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3119), [sym_block_comment] = STATE(3119), [sym_line_comment] = STATE(3119), [sym_compiler_directive_decl] = STATE(3119), [sym_fsi_directive_decl] = STATE(3119), [sym_preproc_line] = STATE(3119), - [sym_identifier] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_do] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3391), - [anon_sym_let_BANG] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_null] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_LBRACE_PIPE] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3391), - [anon_sym_return_BANG] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_yield_BANG] = ACTIONS(3393), - [anon_sym_lazy] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_upcast] = ACTIONS(3391), - [anon_sym_downcast] = ACTIONS(3391), - [anon_sym_LT_AT] = ACTIONS(3391), - [anon_sym_LT_AT_AT] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_fun] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_match_BANG] = ACTIONS(3393), - [anon_sym_function] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3393), - [anon_sym_use] = ACTIONS(3391), - [anon_sym_use_BANG] = ACTIONS(3393), - [anon_sym_do_BANG] = ACTIONS(3393), - [anon_sym_begin] = ACTIONS(3391), - [aux_sym_char_token1] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [anon_sym_AT_DQUOTE] = ACTIONS(3393), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3393), - [sym_bool] = ACTIONS(3391), - [sym_unit] = ACTIONS(3393), - [anon_sym_LPAREN_PIPE] = ACTIONS(3391), - [sym_op_identifier] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3393), - [anon_sym_DASH_DOT] = ACTIONS(3393), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_TILDE] = ACTIONS(3393), - [aux_sym_prefix_op_token1] = ACTIONS(3393), - [sym_int] = ACTIONS(3391), - [sym_xint] = ACTIONS(3393), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3393), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4740), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3120] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5809), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3120), [sym_block_comment] = STATE(3120), [sym_line_comment] = STATE(3120), [sym_compiler_directive_decl] = STATE(3120), [sym_fsi_directive_decl] = STATE(3120), [sym_preproc_line] = STATE(3120), - [sym_identifier] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_let_BANG] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_null] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LBRACK_PIPE] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_LBRACE_PIPE] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_return_BANG] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_yield_BANG] = ACTIONS(3255), - [anon_sym_lazy] = ACTIONS(3253), - [anon_sym_assert] = ACTIONS(3253), - [anon_sym_upcast] = ACTIONS(3253), - [anon_sym_downcast] = ACTIONS(3253), - [anon_sym_LT_AT] = ACTIONS(3253), - [anon_sym_LT_AT_AT] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_fun] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3253), - [anon_sym_match_BANG] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_use] = ACTIONS(3253), - [anon_sym_use_BANG] = ACTIONS(3255), - [anon_sym_do_BANG] = ACTIONS(3255), - [anon_sym_begin] = ACTIONS(3253), - [aux_sym_char_token1] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_AT_DQUOTE] = ACTIONS(3255), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3255), - [sym_bool] = ACTIONS(3253), - [sym_unit] = ACTIONS(3255), - [anon_sym_LPAREN_PIPE] = ACTIONS(3253), - [sym_op_identifier] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_PLUS_DOT] = ACTIONS(3255), - [anon_sym_DASH_DOT] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [aux_sym_prefix_op_token1] = ACTIONS(3255), - [sym_int] = ACTIONS(3253), - [sym_xint] = ACTIONS(3255), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3255), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3121] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5854), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3121), [sym_block_comment] = STATE(3121), [sym_line_comment] = STATE(3121), [sym_compiler_directive_decl] = STATE(3121), [sym_fsi_directive_decl] = STATE(3121), [sym_preproc_line] = STATE(3121), - [sym_identifier] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_let_BANG] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_LBRACE_PIPE] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_return_BANG] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_yield_BANG] = ACTIONS(3411), - [anon_sym_lazy] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_upcast] = ACTIONS(3409), - [anon_sym_downcast] = ACTIONS(3409), - [anon_sym_LT_AT] = ACTIONS(3409), - [anon_sym_LT_AT_AT] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_fun] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_match_BANG] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_use] = ACTIONS(3409), - [anon_sym_use_BANG] = ACTIONS(3411), - [anon_sym_do_BANG] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [aux_sym_char_token1] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_AT_DQUOTE] = ACTIONS(3411), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3411), - [sym_bool] = ACTIONS(3409), - [sym_unit] = ACTIONS(3411), - [anon_sym_LPAREN_PIPE] = ACTIONS(3409), - [sym_op_identifier] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_PLUS_DOT] = ACTIONS(3411), - [anon_sym_DASH_DOT] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [aux_sym_prefix_op_token1] = ACTIONS(3411), - [sym_int] = ACTIONS(3409), - [sym_xint] = ACTIONS(3411), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3411), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5458), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3122] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5813), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3122), [sym_block_comment] = STATE(3122), [sym_line_comment] = STATE(3122), [sym_compiler_directive_decl] = STATE(3122), [sym_fsi_directive_decl] = STATE(3122), [sym_preproc_line] = STATE(3122), - [sym_identifier] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_let_BANG] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_COMMA] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3284), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LBRACK_PIPE] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_LBRACE_PIPE] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_return_BANG] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_yield_BANG] = ACTIONS(3286), - [anon_sym_lazy] = ACTIONS(3284), - [anon_sym_assert] = ACTIONS(3284), - [anon_sym_upcast] = ACTIONS(3284), - [anon_sym_downcast] = ACTIONS(3284), - [anon_sym_LT_AT] = ACTIONS(3284), - [anon_sym_LT_AT_AT] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_fun] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_match] = ACTIONS(3284), - [anon_sym_match_BANG] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_GT] = ACTIONS(3286), - [anon_sym_use] = ACTIONS(3284), - [anon_sym_use_BANG] = ACTIONS(3286), - [anon_sym_do_BANG] = ACTIONS(3286), - [anon_sym_begin] = ACTIONS(3284), - [aux_sym_char_token1] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_AT_DQUOTE] = ACTIONS(3286), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3286), - [sym_bool] = ACTIONS(3284), - [sym_unit] = ACTIONS(3286), - [anon_sym_LPAREN_PIPE] = ACTIONS(3284), - [sym_op_identifier] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS_DOT] = ACTIONS(3286), - [anon_sym_DASH_DOT] = ACTIONS(3286), - [anon_sym_PERCENT] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [aux_sym_prefix_op_token1] = ACTIONS(3286), - [sym_int] = ACTIONS(3284), - [sym_xint] = ACTIONS(3286), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3286), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3123] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5724), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3123), [sym_block_comment] = STATE(3123), [sym_line_comment] = STATE(3123), [sym_compiler_directive_decl] = STATE(3123), [sym_fsi_directive_decl] = STATE(3123), [sym_preproc_line] = STATE(3123), - [sym_identifier] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_let_BANG] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_null] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_LBRACE_PIPE] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_return_BANG] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_yield_BANG] = ACTIONS(3419), - [anon_sym_lazy] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_upcast] = ACTIONS(3417), - [anon_sym_downcast] = ACTIONS(3417), - [anon_sym_LT_AT] = ACTIONS(3417), - [anon_sym_LT_AT_AT] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_fun] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_match_BANG] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_use] = ACTIONS(3417), - [anon_sym_use_BANG] = ACTIONS(3419), - [anon_sym_do_BANG] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [aux_sym_char_token1] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_AT_DQUOTE] = ACTIONS(3419), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), - [sym_bool] = ACTIONS(3417), - [sym_unit] = ACTIONS(3419), - [anon_sym_LPAREN_PIPE] = ACTIONS(3417), - [sym_op_identifier] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_PLUS_DOT] = ACTIONS(3419), - [anon_sym_DASH_DOT] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [aux_sym_prefix_op_token1] = ACTIONS(3419), - [sym_int] = ACTIONS(3417), - [sym_xint] = ACTIONS(3419), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3419), }, [3124] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5536), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3124), [sym_block_comment] = STATE(3124), [sym_line_comment] = STATE(3124), [sym_compiler_directive_decl] = STATE(3124), [sym_fsi_directive_decl] = STATE(3124), [sym_preproc_line] = STATE(3124), - [sym_identifier] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_let_BANG] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_COMMA] = ACTIONS(3290), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LBRACK_PIPE] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_LBRACE_PIPE] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_return_BANG] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_yield_BANG] = ACTIONS(3290), - [anon_sym_lazy] = ACTIONS(3288), - [anon_sym_assert] = ACTIONS(3288), - [anon_sym_upcast] = ACTIONS(3288), - [anon_sym_downcast] = ACTIONS(3288), - [anon_sym_LT_AT] = ACTIONS(3288), - [anon_sym_LT_AT_AT] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3288), - [anon_sym_match_BANG] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3290), - [anon_sym_use] = ACTIONS(3288), - [anon_sym_use_BANG] = ACTIONS(3290), - [anon_sym_do_BANG] = ACTIONS(3290), - [anon_sym_begin] = ACTIONS(3288), - [aux_sym_char_token1] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_AT_DQUOTE] = ACTIONS(3290), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3290), - [sym_bool] = ACTIONS(3288), - [sym_unit] = ACTIONS(3290), - [anon_sym_LPAREN_PIPE] = ACTIONS(3288), - [sym_op_identifier] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_DOT] = ACTIONS(3290), - [anon_sym_DASH_DOT] = ACTIONS(3290), - [anon_sym_PERCENT] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [aux_sym_prefix_op_token1] = ACTIONS(3290), - [sym_int] = ACTIONS(3288), - [sym_xint] = ACTIONS(3290), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3290), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3125] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5723), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3125), [sym_block_comment] = STATE(3125), [sym_line_comment] = STATE(3125), [sym_compiler_directive_decl] = STATE(3125), [sym_fsi_directive_decl] = STATE(3125), [sym_preproc_line] = STATE(3125), - [sym_identifier] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_let_BANG] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_null] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LBRACK_PIPE] = ACTIONS(3297), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_LBRACE_PIPE] = ACTIONS(3297), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_return_BANG] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_yield_BANG] = ACTIONS(3297), - [anon_sym_lazy] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_upcast] = ACTIONS(3295), - [anon_sym_downcast] = ACTIONS(3295), - [anon_sym_LT_AT] = ACTIONS(3295), - [anon_sym_LT_AT_AT] = ACTIONS(3297), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_fun] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_match_BANG] = ACTIONS(3297), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3297), - [anon_sym_use] = ACTIONS(3295), - [anon_sym_use_BANG] = ACTIONS(3297), - [anon_sym_do_BANG] = ACTIONS(3297), - [anon_sym_begin] = ACTIONS(3295), - [aux_sym_char_token1] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_AT_DQUOTE] = ACTIONS(3297), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3297), - [sym_bool] = ACTIONS(3295), - [sym_unit] = ACTIONS(3297), - [anon_sym_LPAREN_PIPE] = ACTIONS(3295), - [sym_op_identifier] = ACTIONS(3297), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_PLUS_DOT] = ACTIONS(3297), - [anon_sym_DASH_DOT] = ACTIONS(3297), - [anon_sym_PERCENT] = ACTIONS(3297), - [anon_sym_AMP_AMP] = ACTIONS(3297), - [anon_sym_TILDE] = ACTIONS(3297), - [aux_sym_prefix_op_token1] = ACTIONS(3297), - [sym_int] = ACTIONS(3295), - [sym_xint] = ACTIONS(3297), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3297), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3126] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5531), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3126), [sym_block_comment] = STATE(3126), [sym_line_comment] = STATE(3126), [sym_compiler_directive_decl] = STATE(3126), [sym_fsi_directive_decl] = STATE(3126), [sym_preproc_line] = STATE(3126), - [aux_sym__function_or_value_defns_repeat1] = STATE(3138), - [sym_identifier] = ACTIONS(5181), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_do] = ACTIONS(5181), - [anon_sym_and] = ACTIONS(5529), - [anon_sym_let] = ACTIONS(5181), - [anon_sym_let_BANG] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5181), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_LBRACK_PIPE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5181), - [anon_sym_LBRACE_PIPE] = ACTIONS(5179), - [anon_sym_new] = ACTIONS(5181), - [anon_sym_return_BANG] = ACTIONS(5179), - [anon_sym_yield] = ACTIONS(5181), - [anon_sym_yield_BANG] = ACTIONS(5179), - [anon_sym_lazy] = ACTIONS(5181), - [anon_sym_assert] = ACTIONS(5181), - [anon_sym_upcast] = ACTIONS(5181), - [anon_sym_downcast] = ACTIONS(5181), - [anon_sym_LT_AT] = ACTIONS(5181), - [anon_sym_LT_AT_AT] = ACTIONS(5179), - [anon_sym_for] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_match] = ACTIONS(5181), - [anon_sym_match_BANG] = ACTIONS(5179), - [anon_sym_function] = ACTIONS(5181), - [anon_sym_use] = ACTIONS(5181), - [anon_sym_use_BANG] = ACTIONS(5179), - [anon_sym_do_BANG] = ACTIONS(5179), - [anon_sym_begin] = ACTIONS(5181), - [aux_sym_char_token1] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5181), - [anon_sym_DQUOTE] = ACTIONS(5181), - [anon_sym_AT_DQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5179), - [sym_bool] = ACTIONS(5181), - [sym_unit] = ACTIONS(5179), - [anon_sym_LPAREN_PIPE] = ACTIONS(5181), - [sym_op_identifier] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_PLUS_DOT] = ACTIONS(5179), - [anon_sym_DASH_DOT] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [aux_sym_prefix_op_token1] = ACTIONS(5179), - [sym_int] = ACTIONS(5181), - [sym_xint] = ACTIONS(5179), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3127] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5874), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3127), [sym_block_comment] = STATE(3127), [sym_line_comment] = STATE(3127), [sym_compiler_directive_decl] = STATE(3127), [sym_fsi_directive_decl] = STATE(3127), [sym_preproc_line] = STATE(3127), - [sym_identifier] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_let_BANG] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_null] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_LBRACE_PIPE] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_return_BANG] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_yield_BANG] = ACTIONS(3423), - [anon_sym_lazy] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_upcast] = ACTIONS(3421), - [anon_sym_downcast] = ACTIONS(3421), - [anon_sym_LT_AT] = ACTIONS(3421), - [anon_sym_LT_AT_AT] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_fun] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_match_BANG] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_use] = ACTIONS(3421), - [anon_sym_use_BANG] = ACTIONS(3423), - [anon_sym_do_BANG] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [aux_sym_char_token1] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_AT_DQUOTE] = ACTIONS(3423), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3423), - [sym_bool] = ACTIONS(3421), - [sym_unit] = ACTIONS(3423), - [anon_sym_LPAREN_PIPE] = ACTIONS(3421), - [sym_op_identifier] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_PLUS_DOT] = ACTIONS(3423), - [anon_sym_DASH_DOT] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [aux_sym_prefix_op_token1] = ACTIONS(3423), - [sym_int] = ACTIONS(3421), - [sym_xint] = ACTIONS(3423), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3423), }, [3128] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5839), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3128), [sym_block_comment] = STATE(3128), [sym_line_comment] = STATE(3128), [sym_compiler_directive_decl] = STATE(3128), [sym_fsi_directive_decl] = STATE(3128), [sym_preproc_line] = STATE(3128), - [sym_identifier] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_let_BANG] = ACTIONS(3430), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_COMMA] = ACTIONS(3430), - [anon_sym_null] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_LBRACE_PIPE] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_return_BANG] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_yield_BANG] = ACTIONS(3430), - [anon_sym_lazy] = ACTIONS(3428), - [anon_sym_assert] = ACTIONS(3428), - [anon_sym_upcast] = ACTIONS(3428), - [anon_sym_downcast] = ACTIONS(3428), - [anon_sym_LT_AT] = ACTIONS(3428), - [anon_sym_LT_AT_AT] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_fun] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_match] = ACTIONS(3428), - [anon_sym_match_BANG] = ACTIONS(3430), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(3430), - [anon_sym_use] = ACTIONS(3428), - [anon_sym_use_BANG] = ACTIONS(3430), - [anon_sym_do_BANG] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(3428), - [aux_sym_char_token1] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_AT_DQUOTE] = ACTIONS(3430), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3430), - [sym_bool] = ACTIONS(3428), - [sym_unit] = ACTIONS(3430), - [anon_sym_LPAREN_PIPE] = ACTIONS(3428), - [sym_op_identifier] = ACTIONS(3430), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_PLUS_DOT] = ACTIONS(3430), - [anon_sym_DASH_DOT] = ACTIONS(3430), - [anon_sym_PERCENT] = ACTIONS(3430), - [anon_sym_AMP_AMP] = ACTIONS(3430), - [anon_sym_TILDE] = ACTIONS(3430), - [aux_sym_prefix_op_token1] = ACTIONS(3430), - [sym_int] = ACTIONS(3428), - [sym_xint] = ACTIONS(3430), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3430), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3129] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5838), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3129), [sym_block_comment] = STATE(3129), [sym_line_comment] = STATE(3129), [sym_compiler_directive_decl] = STATE(3129), [sym_fsi_directive_decl] = STATE(3129), [sym_preproc_line] = STATE(3129), - [sym_identifier] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_let_BANG] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_null] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LBRACE_PIPE] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_return_BANG] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3469), - [anon_sym_yield_BANG] = ACTIONS(3471), - [anon_sym_lazy] = ACTIONS(3469), - [anon_sym_assert] = ACTIONS(3469), - [anon_sym_upcast] = ACTIONS(3469), - [anon_sym_downcast] = ACTIONS(3469), - [anon_sym_LT_AT] = ACTIONS(3469), - [anon_sym_LT_AT_AT] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3469), - [anon_sym_while] = ACTIONS(3469), - [anon_sym_if] = ACTIONS(3469), - [anon_sym_fun] = ACTIONS(3469), - [anon_sym_try] = ACTIONS(3469), - [anon_sym_match] = ACTIONS(3469), - [anon_sym_match_BANG] = ACTIONS(3471), - [anon_sym_function] = ACTIONS(3469), - [anon_sym_GT] = ACTIONS(3471), - [anon_sym_use] = ACTIONS(3469), - [anon_sym_use_BANG] = ACTIONS(3471), - [anon_sym_do_BANG] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [aux_sym_char_token1] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [anon_sym_AT_DQUOTE] = ACTIONS(3471), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3471), - [sym_bool] = ACTIONS(3469), - [sym_unit] = ACTIONS(3471), - [anon_sym_LPAREN_PIPE] = ACTIONS(3469), - [sym_op_identifier] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_PLUS_DOT] = ACTIONS(3471), - [anon_sym_DASH_DOT] = ACTIONS(3471), - [anon_sym_PERCENT] = ACTIONS(3471), - [anon_sym_AMP_AMP] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3471), - [aux_sym_prefix_op_token1] = ACTIONS(3471), - [sym_int] = ACTIONS(3469), - [sym_xint] = ACTIONS(3471), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3471), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3130] = { [sym_xml_doc] = STATE(3130), @@ -364705,142 +373991,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3130), [sym_fsi_directive_decl] = STATE(3130), [sym_preproc_line] = STATE(3130), - [sym_identifier] = ACTIONS(5418), - [anon_sym_return] = ACTIONS(5418), - [anon_sym_do] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_let_BANG] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_null] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LBRACK_PIPE] = ACTIONS(5416), - [anon_sym_LBRACE] = ACTIONS(5418), - [anon_sym_LBRACE_PIPE] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_return_BANG] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_yield_BANG] = ACTIONS(5416), - [anon_sym_lazy] = ACTIONS(5418), - [anon_sym_assert] = ACTIONS(5418), - [anon_sym_upcast] = ACTIONS(5418), - [anon_sym_downcast] = ACTIONS(5418), - [anon_sym_LT_AT] = ACTIONS(5418), - [anon_sym_LT_AT_AT] = ACTIONS(5416), - [anon_sym_for] = ACTIONS(5418), - [anon_sym_while] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(5418), - [anon_sym_fun] = ACTIONS(5418), - [anon_sym_try] = ACTIONS(5418), - [anon_sym_match] = ACTIONS(5418), - [anon_sym_match_BANG] = ACTIONS(5416), - [anon_sym_function] = ACTIONS(5418), - [anon_sym_use] = ACTIONS(5418), - [anon_sym_use_BANG] = ACTIONS(5416), - [anon_sym_do_BANG] = ACTIONS(5416), - [anon_sym_begin] = ACTIONS(5418), - [aux_sym_char_token1] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5418), - [anon_sym_DQUOTE] = ACTIONS(5418), - [anon_sym_AT_DQUOTE] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [sym_bool] = ACTIONS(5418), - [sym_unit] = ACTIONS(5416), - [anon_sym_LPAREN_PIPE] = ACTIONS(5418), - [sym_op_identifier] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_PLUS_DOT] = ACTIONS(5416), - [anon_sym_DASH_DOT] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5416), - [aux_sym_prefix_op_token1] = ACTIONS(5416), - [sym_int] = ACTIONS(5418), - [sym_xint] = ACTIONS(5416), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5416), - [anon_sym_POUNDendif] = ACTIONS(5416), - [anon_sym_POUNDelse] = ACTIONS(5416), + [ts_builtin_sym_end] = ACTIONS(5129), + [sym_identifier] = ACTIONS(5131), + [anon_sym_namespace] = ACTIONS(5131), + [anon_sym_module] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_LBRACK_LT] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_type] = ACTIONS(5131), + [anon_sym_do] = ACTIONS(5131), + [anon_sym_and] = ACTIONS(5131), + [anon_sym_let] = ACTIONS(5131), + [anon_sym_let_BANG] = ACTIONS(5129), + [aux_sym_access_modifier_token1] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_LBRACK_PIPE] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_LT_AT] = ACTIONS(5131), + [anon_sym_LT_AT_AT] = ACTIONS(5129), + [anon_sym_LBRACE_PIPE] = ACTIONS(5129), + [anon_sym_new] = ACTIONS(5131), + [anon_sym_return_BANG] = ACTIONS(5129), + [anon_sym_yield] = ACTIONS(5131), + [anon_sym_yield_BANG] = ACTIONS(5129), + [anon_sym_lazy] = ACTIONS(5131), + [anon_sym_assert] = ACTIONS(5131), + [anon_sym_upcast] = ACTIONS(5131), + [anon_sym_downcast] = ACTIONS(5131), + [anon_sym_for] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_match] = ACTIONS(5131), + [anon_sym_match_BANG] = ACTIONS(5129), + [anon_sym_function] = ACTIONS(5131), + [anon_sym_use] = ACTIONS(5131), + [anon_sym_use_BANG] = ACTIONS(5129), + [anon_sym_do_BANG] = ACTIONS(5129), + [anon_sym_begin] = ACTIONS(5131), + [anon_sym_default] = ACTIONS(5131), + [anon_sym_static] = ACTIONS(5131), + [anon_sym_member] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_val] = ACTIONS(5131), + [aux_sym_char_token1] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5131), + [anon_sym_DQUOTE] = ACTIONS(5131), + [anon_sym_AT_DQUOTE] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [sym_bool] = ACTIONS(5131), + [sym_unit] = ACTIONS(5129), + [anon_sym_LPAREN_PIPE] = ACTIONS(5131), + [sym_op_identifier] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_PLUS_DOT] = ACTIONS(5129), + [anon_sym_DASH_DOT] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_TILDE] = ACTIONS(5129), + [aux_sym_prefix_op_token1] = ACTIONS(5129), + [sym_int] = ACTIONS(5131), + [sym_xint] = ACTIONS(5129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5129), + [anon_sym_POUNDload] = ACTIONS(5129), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5129), }, [3131] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5880), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3131), [sym_block_comment] = STATE(3131), [sym_line_comment] = STATE(3131), [sym_compiler_directive_decl] = STATE(3131), [sym_fsi_directive_decl] = STATE(3131), [sym_preproc_line] = STATE(3131), - [sym_identifier] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_BANG] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACK_PIPE] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LBRACE_PIPE] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_return_BANG] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_yield_BANG] = ACTIONS(2520), - [anon_sym_lazy] = ACTIONS(2518), - [anon_sym_assert] = ACTIONS(2518), - [anon_sym_upcast] = ACTIONS(2518), - [anon_sym_downcast] = ACTIONS(2518), - [anon_sym_LT_AT] = ACTIONS(2518), - [anon_sym_LT_AT_AT] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_fun] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_match_BANG] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_GT] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_use_BANG] = ACTIONS(2520), - [anon_sym_do_BANG] = ACTIONS(2520), - [anon_sym_begin] = ACTIONS(2518), - [aux_sym_char_token1] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_AT_DQUOTE] = ACTIONS(2520), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2520), - [sym_bool] = ACTIONS(2518), - [sym_unit] = ACTIONS(2520), - [anon_sym_LPAREN_PIPE] = ACTIONS(2518), - [sym_op_identifier] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS_DOT] = ACTIONS(2520), - [anon_sym_DASH_DOT] = ACTIONS(2520), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [aux_sym_prefix_op_token1] = ACTIONS(2520), - [sym_int] = ACTIONS(2518), - [sym_xint] = ACTIONS(2520), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(2520), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3132] = { [sym_xml_doc] = STATE(3132), @@ -364849,142 +374159,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3132), [sym_fsi_directive_decl] = STATE(3132), [sym_preproc_line] = STATE(3132), - [sym_identifier] = ACTIONS(5270), - [anon_sym_return] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_let_BANG] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_null] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LBRACK_PIPE] = ACTIONS(5268), - [anon_sym_LBRACE] = ACTIONS(5270), - [anon_sym_LBRACE_PIPE] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5270), - [anon_sym_return_BANG] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5270), - [anon_sym_yield_BANG] = ACTIONS(5268), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_assert] = ACTIONS(5270), - [anon_sym_upcast] = ACTIONS(5270), - [anon_sym_downcast] = ACTIONS(5270), - [anon_sym_LT_AT] = ACTIONS(5270), - [anon_sym_LT_AT_AT] = ACTIONS(5268), - [anon_sym_for] = ACTIONS(5270), - [anon_sym_while] = ACTIONS(5270), - [anon_sym_if] = ACTIONS(5270), - [anon_sym_fun] = ACTIONS(5270), - [anon_sym_try] = ACTIONS(5270), - [anon_sym_match] = ACTIONS(5270), - [anon_sym_match_BANG] = ACTIONS(5268), - [anon_sym_function] = ACTIONS(5270), - [anon_sym_use] = ACTIONS(5270), - [anon_sym_use_BANG] = ACTIONS(5268), - [anon_sym_do_BANG] = ACTIONS(5268), - [anon_sym_begin] = ACTIONS(5270), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_AT_DQUOTE] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [sym_bool] = ACTIONS(5270), - [sym_unit] = ACTIONS(5268), - [anon_sym_LPAREN_PIPE] = ACTIONS(5270), - [sym_op_identifier] = ACTIONS(5268), - [anon_sym_PLUS] = ACTIONS(5270), - [anon_sym_DASH] = ACTIONS(5270), - [anon_sym_PLUS_DOT] = ACTIONS(5268), - [anon_sym_DASH_DOT] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5268), - [aux_sym_prefix_op_token1] = ACTIONS(5268), - [sym_int] = ACTIONS(5270), - [sym_xint] = ACTIONS(5268), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5268), - [anon_sym_POUNDendif] = ACTIONS(5268), + [ts_builtin_sym_end] = ACTIONS(5478), + [sym_identifier] = ACTIONS(5480), + [anon_sym_namespace] = ACTIONS(5480), + [anon_sym_module] = ACTIONS(5480), + [anon_sym_open] = ACTIONS(5480), + [anon_sym_LBRACK_LT] = ACTIONS(5478), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_do] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_let] = ACTIONS(5480), + [anon_sym_let_BANG] = ACTIONS(5478), + [aux_sym_access_modifier_token1] = ACTIONS(5478), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_LBRACK_PIPE] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5480), + [anon_sym_LT_AT] = ACTIONS(5480), + [anon_sym_LT_AT_AT] = ACTIONS(5478), + [anon_sym_LBRACE_PIPE] = ACTIONS(5478), + [anon_sym_new] = ACTIONS(5480), + [anon_sym_return_BANG] = ACTIONS(5478), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_yield_BANG] = ACTIONS(5478), + [anon_sym_lazy] = ACTIONS(5480), + [anon_sym_assert] = ACTIONS(5480), + [anon_sym_upcast] = ACTIONS(5480), + [anon_sym_downcast] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_fun] = ACTIONS(5480), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_match_BANG] = ACTIONS(5478), + [anon_sym_function] = ACTIONS(5480), + [anon_sym_use] = ACTIONS(5480), + [anon_sym_use_BANG] = ACTIONS(5478), + [anon_sym_do_BANG] = ACTIONS(5478), + [anon_sym_begin] = ACTIONS(5480), + [anon_sym_default] = ACTIONS(5480), + [anon_sym_static] = ACTIONS(5480), + [anon_sym_member] = ACTIONS(5480), + [anon_sym_abstract] = ACTIONS(5480), + [anon_sym_override] = ACTIONS(5480), + [anon_sym_val] = ACTIONS(5480), + [aux_sym_char_token1] = ACTIONS(5478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5480), + [anon_sym_DQUOTE] = ACTIONS(5480), + [anon_sym_AT_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5478), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5478), + [sym_bool] = ACTIONS(5480), + [sym_unit] = ACTIONS(5478), + [anon_sym_LPAREN_PIPE] = ACTIONS(5480), + [sym_op_identifier] = ACTIONS(5478), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS_DOT] = ACTIONS(5478), + [anon_sym_DASH_DOT] = ACTIONS(5478), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [aux_sym_prefix_op_token1] = ACTIONS(5478), + [sym_int] = ACTIONS(5480), + [sym_xint] = ACTIONS(5478), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5478), + [anon_sym_POUNDload] = ACTIONS(5478), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5478), }, [3133] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5581), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3133), [sym_block_comment] = STATE(3133), [sym_line_comment] = STATE(3133), [sym_compiler_directive_decl] = STATE(3133), [sym_fsi_directive_decl] = STATE(3133), [sym_preproc_line] = STATE(3133), - [sym_identifier] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_let_BANG] = ACTIONS(3467), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_LBRACE_PIPE] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_return_BANG] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3465), - [anon_sym_yield_BANG] = ACTIONS(3467), - [anon_sym_lazy] = ACTIONS(3465), - [anon_sym_assert] = ACTIONS(3465), - [anon_sym_upcast] = ACTIONS(3465), - [anon_sym_downcast] = ACTIONS(3465), - [anon_sym_LT_AT] = ACTIONS(3465), - [anon_sym_LT_AT_AT] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_fun] = ACTIONS(3465), - [anon_sym_try] = ACTIONS(3465), - [anon_sym_match] = ACTIONS(3465), - [anon_sym_match_BANG] = ACTIONS(3467), - [anon_sym_function] = ACTIONS(3465), - [anon_sym_GT] = ACTIONS(3467), - [anon_sym_use] = ACTIONS(3465), - [anon_sym_use_BANG] = ACTIONS(3467), - [anon_sym_do_BANG] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [aux_sym_char_token1] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [anon_sym_AT_DQUOTE] = ACTIONS(3467), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3467), - [sym_bool] = ACTIONS(3465), - [sym_unit] = ACTIONS(3467), - [anon_sym_LPAREN_PIPE] = ACTIONS(3465), - [sym_op_identifier] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_PLUS_DOT] = ACTIONS(3467), - [anon_sym_DASH_DOT] = ACTIONS(3467), - [anon_sym_PERCENT] = ACTIONS(3467), - [anon_sym_AMP_AMP] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3467), - [aux_sym_prefix_op_token1] = ACTIONS(3467), - [sym_int] = ACTIONS(3465), - [sym_xint] = ACTIONS(3467), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3467), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3134] = { [sym_xml_doc] = STATE(3134), @@ -364993,430 +374327,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3134), [sym_fsi_directive_decl] = STATE(3134), [sym_preproc_line] = STATE(3134), - [sym_identifier] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_let_BANG] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3312), - [anon_sym_COMMA] = ACTIONS(3314), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_AMP] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3312), - [anon_sym_LBRACE_PIPE] = ACTIONS(3314), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_return_BANG] = ACTIONS(3314), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_yield_BANG] = ACTIONS(3314), - [anon_sym_lazy] = ACTIONS(3312), - [anon_sym_assert] = ACTIONS(3312), - [anon_sym_upcast] = ACTIONS(3312), - [anon_sym_downcast] = ACTIONS(3312), - [anon_sym_LT_AT] = ACTIONS(3312), - [anon_sym_LT_AT_AT] = ACTIONS(3314), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_match] = ACTIONS(3312), - [anon_sym_match_BANG] = ACTIONS(3314), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3314), - [anon_sym_use] = ACTIONS(3312), - [anon_sym_use_BANG] = ACTIONS(3314), - [anon_sym_do_BANG] = ACTIONS(3314), - [anon_sym_begin] = ACTIONS(3312), - [aux_sym_char_token1] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3312), - [anon_sym_DQUOTE] = ACTIONS(3312), - [anon_sym_AT_DQUOTE] = ACTIONS(3314), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3314), - [sym_bool] = ACTIONS(3312), - [sym_unit] = ACTIONS(3314), - [anon_sym_LPAREN_PIPE] = ACTIONS(3312), - [sym_op_identifier] = ACTIONS(3314), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_DOT] = ACTIONS(3314), - [anon_sym_DASH_DOT] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_AMP_AMP] = ACTIONS(3314), - [anon_sym_TILDE] = ACTIONS(3314), - [aux_sym_prefix_op_token1] = ACTIONS(3314), - [sym_int] = ACTIONS(3312), - [sym_xint] = ACTIONS(3314), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3314), + [ts_builtin_sym_end] = ACTIONS(5482), + [sym_identifier] = ACTIONS(5484), + [anon_sym_namespace] = ACTIONS(5484), + [anon_sym_module] = ACTIONS(5484), + [anon_sym_open] = ACTIONS(5484), + [anon_sym_LBRACK_LT] = ACTIONS(5482), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_do] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_let] = ACTIONS(5484), + [anon_sym_let_BANG] = ACTIONS(5482), + [aux_sym_access_modifier_token1] = ACTIONS(5482), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_LBRACK_PIPE] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5484), + [anon_sym_LT_AT] = ACTIONS(5484), + [anon_sym_LT_AT_AT] = ACTIONS(5482), + [anon_sym_LBRACE_PIPE] = ACTIONS(5482), + [anon_sym_new] = ACTIONS(5484), + [anon_sym_return_BANG] = ACTIONS(5482), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_yield_BANG] = ACTIONS(5482), + [anon_sym_lazy] = ACTIONS(5484), + [anon_sym_assert] = ACTIONS(5484), + [anon_sym_upcast] = ACTIONS(5484), + [anon_sym_downcast] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_fun] = ACTIONS(5484), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_match_BANG] = ACTIONS(5482), + [anon_sym_function] = ACTIONS(5484), + [anon_sym_use] = ACTIONS(5484), + [anon_sym_use_BANG] = ACTIONS(5482), + [anon_sym_do_BANG] = ACTIONS(5482), + [anon_sym_begin] = ACTIONS(5484), + [anon_sym_default] = ACTIONS(5484), + [anon_sym_static] = ACTIONS(5484), + [anon_sym_member] = ACTIONS(5484), + [anon_sym_abstract] = ACTIONS(5484), + [anon_sym_override] = ACTIONS(5484), + [anon_sym_val] = ACTIONS(5484), + [aux_sym_char_token1] = ACTIONS(5482), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5484), + [anon_sym_DQUOTE] = ACTIONS(5484), + [anon_sym_AT_DQUOTE] = ACTIONS(5482), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5482), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5482), + [sym_bool] = ACTIONS(5484), + [sym_unit] = ACTIONS(5482), + [anon_sym_LPAREN_PIPE] = ACTIONS(5484), + [sym_op_identifier] = ACTIONS(5482), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_PLUS_DOT] = ACTIONS(5482), + [anon_sym_DASH_DOT] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_TILDE] = ACTIONS(5482), + [aux_sym_prefix_op_token1] = ACTIONS(5482), + [sym_int] = ACTIONS(5484), + [sym_xint] = ACTIONS(5482), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5482), + [anon_sym_POUNDload] = ACTIONS(5482), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5482), }, [3135] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5801), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3135), [sym_block_comment] = STATE(3135), [sym_line_comment] = STATE(3135), [sym_compiler_directive_decl] = STATE(3135), [sym_fsi_directive_decl] = STATE(3135), [sym_preproc_line] = STATE(3135), - [sym_identifier] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_let_BANG] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_null] = ACTIONS(3326), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LBRACK_PIPE] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_LBRACE_PIPE] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_return_BANG] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_yield_BANG] = ACTIONS(3328), - [anon_sym_lazy] = ACTIONS(3326), - [anon_sym_assert] = ACTIONS(3326), - [anon_sym_upcast] = ACTIONS(3326), - [anon_sym_downcast] = ACTIONS(3326), - [anon_sym_LT_AT] = ACTIONS(3326), - [anon_sym_LT_AT_AT] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_fun] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3326), - [anon_sym_match_BANG] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_GT] = ACTIONS(3328), - [anon_sym_use] = ACTIONS(3326), - [anon_sym_use_BANG] = ACTIONS(3328), - [anon_sym_do_BANG] = ACTIONS(3328), - [anon_sym_begin] = ACTIONS(3326), - [aux_sym_char_token1] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_AT_DQUOTE] = ACTIONS(3328), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3328), - [sym_bool] = ACTIONS(3326), - [sym_unit] = ACTIONS(3328), - [anon_sym_LPAREN_PIPE] = ACTIONS(3326), - [sym_op_identifier] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_PLUS_DOT] = ACTIONS(3328), - [anon_sym_DASH_DOT] = ACTIONS(3328), - [anon_sym_PERCENT] = ACTIONS(3328), - [anon_sym_AMP_AMP] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [aux_sym_prefix_op_token1] = ACTIONS(3328), - [sym_int] = ACTIONS(3326), - [sym_xint] = ACTIONS(3328), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3328), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3136] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5526), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), [sym_xml_doc] = STATE(3136), [sym_block_comment] = STATE(3136), [sym_line_comment] = STATE(3136), [sym_compiler_directive_decl] = STATE(3136), [sym_fsi_directive_decl] = STATE(3136), [sym_preproc_line] = STATE(3136), - [sym_identifier] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_let_BANG] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_LBRACE_PIPE] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_return_BANG] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_yield_BANG] = ACTIONS(3341), - [anon_sym_lazy] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_upcast] = ACTIONS(3339), - [anon_sym_downcast] = ACTIONS(3339), - [anon_sym_LT_AT] = ACTIONS(3339), - [anon_sym_LT_AT_AT] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_fun] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_match_BANG] = ACTIONS(3341), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3341), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_use_BANG] = ACTIONS(3341), - [anon_sym_do_BANG] = ACTIONS(3341), - [anon_sym_begin] = ACTIONS(3339), - [aux_sym_char_token1] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_AT_DQUOTE] = ACTIONS(3341), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3341), - [sym_bool] = ACTIONS(3339), - [sym_unit] = ACTIONS(3341), - [anon_sym_LPAREN_PIPE] = ACTIONS(3339), - [sym_op_identifier] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [aux_sym_prefix_op_token1] = ACTIONS(3341), - [sym_int] = ACTIONS(3339), - [sym_xint] = ACTIONS(3341), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3341), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3137] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5824), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3137), [sym_block_comment] = STATE(3137), [sym_line_comment] = STATE(3137), [sym_compiler_directive_decl] = STATE(3137), [sym_fsi_directive_decl] = STATE(3137), [sym_preproc_line] = STATE(3137), - [aux_sym__function_or_value_defns_repeat1] = STATE(3126), - [sym_identifier] = ACTIONS(5126), - [anon_sym_return] = ACTIONS(5126), - [anon_sym_do] = ACTIONS(5126), - [anon_sym_and] = ACTIONS(5529), - [anon_sym_let] = ACTIONS(5126), - [anon_sym_let_BANG] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_null] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5126), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LBRACK_PIPE] = ACTIONS(5124), - [anon_sym_LBRACE] = ACTIONS(5126), - [anon_sym_LBRACE_PIPE] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5126), - [anon_sym_return_BANG] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5126), - [anon_sym_yield_BANG] = ACTIONS(5124), - [anon_sym_lazy] = ACTIONS(5126), - [anon_sym_assert] = ACTIONS(5126), - [anon_sym_upcast] = ACTIONS(5126), - [anon_sym_downcast] = ACTIONS(5126), - [anon_sym_LT_AT] = ACTIONS(5126), - [anon_sym_LT_AT_AT] = ACTIONS(5124), - [anon_sym_for] = ACTIONS(5126), - [anon_sym_while] = ACTIONS(5126), - [anon_sym_if] = ACTIONS(5126), - [anon_sym_fun] = ACTIONS(5126), - [anon_sym_try] = ACTIONS(5126), - [anon_sym_match] = ACTIONS(5126), - [anon_sym_match_BANG] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(5126), - [anon_sym_use] = ACTIONS(5126), - [anon_sym_use_BANG] = ACTIONS(5124), - [anon_sym_do_BANG] = ACTIONS(5124), - [anon_sym_begin] = ACTIONS(5126), - [aux_sym_char_token1] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5126), - [anon_sym_DQUOTE] = ACTIONS(5126), - [anon_sym_AT_DQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5124), - [sym_bool] = ACTIONS(5126), - [sym_unit] = ACTIONS(5124), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [sym_op_identifier] = ACTIONS(5124), - [anon_sym_PLUS] = ACTIONS(5126), - [anon_sym_DASH] = ACTIONS(5126), - [anon_sym_PLUS_DOT] = ACTIONS(5124), - [anon_sym_DASH_DOT] = ACTIONS(5124), - [anon_sym_PERCENT] = ACTIONS(5124), - [anon_sym_AMP_AMP] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5124), - [aux_sym_prefix_op_token1] = ACTIONS(5124), - [sym_int] = ACTIONS(5126), - [sym_xint] = ACTIONS(5124), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5124), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3138] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5833), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3138), [sym_block_comment] = STATE(3138), [sym_line_comment] = STATE(3138), [sym_compiler_directive_decl] = STATE(3138), [sym_fsi_directive_decl] = STATE(3138), [sym_preproc_line] = STATE(3138), - [aux_sym__function_or_value_defns_repeat1] = STATE(3138), - [sym_identifier] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_do] = ACTIONS(5197), - [anon_sym_and] = ACTIONS(5531), - [anon_sym_let] = ACTIONS(5197), - [anon_sym_let_BANG] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5197), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_AMP] = ACTIONS(5197), - [anon_sym_LBRACK] = ACTIONS(5197), - [anon_sym_LBRACK_PIPE] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5197), - [anon_sym_LBRACE_PIPE] = ACTIONS(5195), - [anon_sym_new] = ACTIONS(5197), - [anon_sym_return_BANG] = ACTIONS(5195), - [anon_sym_yield] = ACTIONS(5197), - [anon_sym_yield_BANG] = ACTIONS(5195), - [anon_sym_lazy] = ACTIONS(5197), - [anon_sym_assert] = ACTIONS(5197), - [anon_sym_upcast] = ACTIONS(5197), - [anon_sym_downcast] = ACTIONS(5197), - [anon_sym_LT_AT] = ACTIONS(5197), - [anon_sym_LT_AT_AT] = ACTIONS(5195), - [anon_sym_for] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_match] = ACTIONS(5197), - [anon_sym_match_BANG] = ACTIONS(5195), - [anon_sym_function] = ACTIONS(5197), - [anon_sym_use] = ACTIONS(5197), - [anon_sym_use_BANG] = ACTIONS(5195), - [anon_sym_do_BANG] = ACTIONS(5195), - [anon_sym_begin] = ACTIONS(5197), - [aux_sym_char_token1] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5197), - [anon_sym_DQUOTE] = ACTIONS(5197), - [anon_sym_AT_DQUOTE] = ACTIONS(5195), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5195), - [sym_bool] = ACTIONS(5197), - [sym_unit] = ACTIONS(5195), - [anon_sym_LPAREN_PIPE] = ACTIONS(5197), - [sym_op_identifier] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_PLUS_DOT] = ACTIONS(5195), - [anon_sym_DASH_DOT] = ACTIONS(5195), - [anon_sym_PERCENT] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_TILDE] = ACTIONS(5195), - [aux_sym_prefix_op_token1] = ACTIONS(5195), - [sym_int] = ACTIONS(5197), - [sym_xint] = ACTIONS(5195), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5195), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3139] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5721), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3139), [sym_block_comment] = STATE(3139), [sym_line_comment] = STATE(3139), [sym_compiler_directive_decl] = STATE(3139), [sym_fsi_directive_decl] = STATE(3139), [sym_preproc_line] = STATE(3139), - [sym_identifier] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_and] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_BANG] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LBRACK_PIPE] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACE_PIPE] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5235), - [anon_sym_return_BANG] = ACTIONS(5233), - [anon_sym_yield] = ACTIONS(5235), - [anon_sym_yield_BANG] = ACTIONS(5233), - [anon_sym_lazy] = ACTIONS(5235), - [anon_sym_assert] = ACTIONS(5235), - [anon_sym_upcast] = ACTIONS(5235), - [anon_sym_downcast] = ACTIONS(5235), - [anon_sym_LT_AT] = ACTIONS(5235), - [anon_sym_LT_AT_AT] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_match_BANG] = ACTIONS(5233), - [anon_sym_function] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_use_BANG] = ACTIONS(5233), - [anon_sym_do_BANG] = ACTIONS(5233), - [anon_sym_begin] = ACTIONS(5235), - [aux_sym_char_token1] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [anon_sym_AT_DQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [sym_bool] = ACTIONS(5235), - [sym_unit] = ACTIONS(5233), - [anon_sym_LPAREN_PIPE] = ACTIONS(5235), - [sym_op_identifier] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_PLUS_DOT] = ACTIONS(5233), - [anon_sym_DASH_DOT] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_TILDE] = ACTIONS(5233), - [aux_sym_prefix_op_token1] = ACTIONS(5233), - [sym_int] = ACTIONS(5235), - [sym_xint] = ACTIONS(5233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5233), - [anon_sym_POUNDendif] = ACTIONS(5233), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3140] = { [sym_xml_doc] = STATE(3140), @@ -365425,574 +374831,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3140), [sym_fsi_directive_decl] = STATE(3140), [sym_preproc_line] = STATE(3140), - [sym_identifier] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_let_BANG] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_LBRACE_PIPE] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_return_BANG] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_yield_BANG] = ACTIONS(3415), - [anon_sym_lazy] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_upcast] = ACTIONS(3413), - [anon_sym_downcast] = ACTIONS(3413), - [anon_sym_LT_AT] = ACTIONS(3413), - [anon_sym_LT_AT_AT] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_fun] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_match_BANG] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_use] = ACTIONS(3413), - [anon_sym_use_BANG] = ACTIONS(3415), - [anon_sym_do_BANG] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [aux_sym_char_token1] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_AT_DQUOTE] = ACTIONS(3415), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3415), - [sym_bool] = ACTIONS(3413), - [sym_unit] = ACTIONS(3415), - [anon_sym_LPAREN_PIPE] = ACTIONS(3413), - [sym_op_identifier] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_PLUS_DOT] = ACTIONS(3415), - [anon_sym_DASH_DOT] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [aux_sym_prefix_op_token1] = ACTIONS(3415), - [sym_int] = ACTIONS(3413), - [sym_xint] = ACTIONS(3415), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(5486), + [sym_identifier] = ACTIONS(5488), + [anon_sym_namespace] = ACTIONS(5488), + [anon_sym_module] = ACTIONS(5488), + [anon_sym_open] = ACTIONS(5488), + [anon_sym_LBRACK_LT] = ACTIONS(5486), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_do] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_let] = ACTIONS(5488), + [anon_sym_let_BANG] = ACTIONS(5486), + [aux_sym_access_modifier_token1] = ACTIONS(5486), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_LBRACK_PIPE] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5488), + [anon_sym_LT_AT] = ACTIONS(5488), + [anon_sym_LT_AT_AT] = ACTIONS(5486), + [anon_sym_LBRACE_PIPE] = ACTIONS(5486), + [anon_sym_new] = ACTIONS(5488), + [anon_sym_return_BANG] = ACTIONS(5486), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_yield_BANG] = ACTIONS(5486), + [anon_sym_lazy] = ACTIONS(5488), + [anon_sym_assert] = ACTIONS(5488), + [anon_sym_upcast] = ACTIONS(5488), + [anon_sym_downcast] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_fun] = ACTIONS(5488), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_match_BANG] = ACTIONS(5486), + [anon_sym_function] = ACTIONS(5488), + [anon_sym_use] = ACTIONS(5488), + [anon_sym_use_BANG] = ACTIONS(5486), + [anon_sym_do_BANG] = ACTIONS(5486), + [anon_sym_begin] = ACTIONS(5488), + [anon_sym_default] = ACTIONS(5488), + [anon_sym_static] = ACTIONS(5488), + [anon_sym_member] = ACTIONS(5488), + [anon_sym_abstract] = ACTIONS(5488), + [anon_sym_override] = ACTIONS(5488), + [anon_sym_val] = ACTIONS(5488), + [aux_sym_char_token1] = ACTIONS(5486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5488), + [anon_sym_DQUOTE] = ACTIONS(5488), + [anon_sym_AT_DQUOTE] = ACTIONS(5486), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5486), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5486), + [sym_bool] = ACTIONS(5488), + [sym_unit] = ACTIONS(5486), + [anon_sym_LPAREN_PIPE] = ACTIONS(5488), + [sym_op_identifier] = ACTIONS(5486), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_PLUS_DOT] = ACTIONS(5486), + [anon_sym_DASH_DOT] = ACTIONS(5486), + [anon_sym_PERCENT] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_TILDE] = ACTIONS(5486), + [aux_sym_prefix_op_token1] = ACTIONS(5486), + [sym_int] = ACTIONS(5488), + [sym_xint] = ACTIONS(5486), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5486), + [anon_sym_POUNDload] = ACTIONS(5486), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5486), }, [3141] = { + [sym_attributes] = STATE(3058), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(4150), + [sym__pattern] = STATE(4084), + [sym_optional_pattern] = STATE(4150), + [sym_type_check_pattern] = STATE(4150), + [sym_attribute_pattern] = STATE(4150), + [sym_paren_pattern] = STATE(4150), + [sym_as_pattern] = STATE(4150), + [sym_cons_pattern] = STATE(4150), + [sym_disjunct_pattern] = STATE(4150), + [sym_conjunct_pattern] = STATE(4150), + [sym_typed_pattern] = STATE(4150), + [sym_list_pattern] = STATE(4150), + [sym_array_pattern] = STATE(4150), + [sym_record_pattern] = STATE(4150), + [sym_identifier_pattern] = STATE(4150), + [sym_long_identifier_or_op] = STATE(2268), + [sym_char] = STATE(4119), + [sym_format_string] = STATE(4124), + [sym__string_literal] = STATE(4124), + [sym_string] = STATE(4119), + [sym_verbatim_string] = STATE(4119), + [sym_bytearray] = STATE(4119), + [sym_verbatim_bytearray] = STATE(4119), + [sym_format_triple_quoted_string] = STATE(4125), + [sym_triple_quoted_string] = STATE(4119), + [sym_const] = STATE(4150), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(4119), + [sym_byte] = STATE(4119), + [sym_int16] = STATE(4119), + [sym_uint16] = STATE(4119), + [sym_int32] = STATE(4119), + [sym_uint32] = STATE(4119), + [sym_nativeint] = STATE(4119), + [sym_unativeint] = STATE(4119), + [sym_int64] = STATE(4119), + [sym_uint64] = STATE(4119), + [sym_ieee32] = STATE(4119), + [sym_ieee64] = STATE(4119), + [sym_bignum] = STATE(4119), + [sym_decimal] = STATE(4119), + [sym_float] = STATE(4024), [sym_xml_doc] = STATE(3141), [sym_block_comment] = STATE(3141), [sym_line_comment] = STATE(3141), [sym_compiler_directive_decl] = STATE(3141), [sym_fsi_directive_decl] = STATE(3141), [sym_preproc_line] = STATE(3141), - [sym_identifier] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(3350), - [anon_sym_do] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3350), - [anon_sym_let_BANG] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_null] = ACTIONS(3350), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LBRACK_PIPE] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_LBRACE_PIPE] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3350), - [anon_sym_return_BANG] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3350), - [anon_sym_yield_BANG] = ACTIONS(3352), - [anon_sym_lazy] = ACTIONS(3350), - [anon_sym_assert] = ACTIONS(3350), - [anon_sym_upcast] = ACTIONS(3350), - [anon_sym_downcast] = ACTIONS(3350), - [anon_sym_LT_AT] = ACTIONS(3350), - [anon_sym_LT_AT_AT] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_while] = ACTIONS(3350), - [anon_sym_if] = ACTIONS(3350), - [anon_sym_fun] = ACTIONS(3350), - [anon_sym_try] = ACTIONS(3350), - [anon_sym_match] = ACTIONS(3350), - [anon_sym_match_BANG] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3352), - [anon_sym_use] = ACTIONS(3350), - [anon_sym_use_BANG] = ACTIONS(3352), - [anon_sym_do_BANG] = ACTIONS(3352), - [anon_sym_begin] = ACTIONS(3350), - [aux_sym_char_token1] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_AT_DQUOTE] = ACTIONS(3352), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3352), - [sym_bool] = ACTIONS(3350), - [sym_unit] = ACTIONS(3352), - [anon_sym_LPAREN_PIPE] = ACTIONS(3350), - [sym_op_identifier] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_PLUS_DOT] = ACTIONS(3352), - [anon_sym_DASH_DOT] = ACTIONS(3352), - [anon_sym_PERCENT] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3352), - [aux_sym_prefix_op_token1] = ACTIONS(3352), - [sym_int] = ACTIONS(3350), - [sym_xint] = ACTIONS(3352), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3352), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5402), + [anon_sym_null] = ACTIONS(5404), + [anon_sym__] = ACTIONS(5406), + [anon_sym_QMARK] = ACTIONS(4913), + [anon_sym_COLON_QMARK] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5408), + [anon_sym_LBRACK_PIPE] = ACTIONS(5410), + [anon_sym_LBRACE] = ACTIONS(5434), + [aux_sym_char_token1] = ACTIONS(5414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(5418), + [anon_sym_AT_DQUOTE] = ACTIONS(5420), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5422), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5424), + [sym_bool] = ACTIONS(5426), + [sym_unit] = ACTIONS(5428), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(5430), + [sym_xint] = ACTIONS(5432), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3142] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3955), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3142), [sym_block_comment] = STATE(3142), [sym_line_comment] = STATE(3142), [sym_compiler_directive_decl] = STATE(3142), [sym_fsi_directive_decl] = STATE(3142), [sym_preproc_line] = STATE(3142), - [sym_identifier] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_let_BANG] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_COMMA] = ACTIONS(3358), - [anon_sym_null] = ACTIONS(3356), - [anon_sym_AMP] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LBRACK_PIPE] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_LBRACE_PIPE] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_return_BANG] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_yield_BANG] = ACTIONS(3358), - [anon_sym_lazy] = ACTIONS(3356), - [anon_sym_assert] = ACTIONS(3356), - [anon_sym_upcast] = ACTIONS(3356), - [anon_sym_downcast] = ACTIONS(3356), - [anon_sym_LT_AT] = ACTIONS(3356), - [anon_sym_LT_AT_AT] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_fun] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_match] = ACTIONS(3356), - [anon_sym_match_BANG] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_GT] = ACTIONS(3358), - [anon_sym_use] = ACTIONS(3356), - [anon_sym_use_BANG] = ACTIONS(3358), - [anon_sym_do_BANG] = ACTIONS(3358), - [anon_sym_begin] = ACTIONS(3356), - [aux_sym_char_token1] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_AT_DQUOTE] = ACTIONS(3358), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), - [sym_bool] = ACTIONS(3356), - [sym_unit] = ACTIONS(3358), - [anon_sym_LPAREN_PIPE] = ACTIONS(3356), - [sym_op_identifier] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_PLUS_DOT] = ACTIONS(3358), - [anon_sym_DASH_DOT] = ACTIONS(3358), - [anon_sym_PERCENT] = ACTIONS(3358), - [anon_sym_AMP_AMP] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [aux_sym_prefix_op_token1] = ACTIONS(3358), - [sym_int] = ACTIONS(3356), - [sym_xint] = ACTIONS(3358), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3358), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3143] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3949), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3143), [sym_block_comment] = STATE(3143), [sym_line_comment] = STATE(3143), [sym_compiler_directive_decl] = STATE(3143), [sym_fsi_directive_decl] = STATE(3143), [sym_preproc_line] = STATE(3143), - [sym_identifier] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_let_BANG] = ACTIONS(3463), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_LBRACE_PIPE] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_return_BANG] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_yield_BANG] = ACTIONS(3463), - [anon_sym_lazy] = ACTIONS(3461), - [anon_sym_assert] = ACTIONS(3461), - [anon_sym_upcast] = ACTIONS(3461), - [anon_sym_downcast] = ACTIONS(3461), - [anon_sym_LT_AT] = ACTIONS(3461), - [anon_sym_LT_AT_AT] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_fun] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_match] = ACTIONS(3461), - [anon_sym_match_BANG] = ACTIONS(3463), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_GT] = ACTIONS(3463), - [anon_sym_use] = ACTIONS(3461), - [anon_sym_use_BANG] = ACTIONS(3463), - [anon_sym_do_BANG] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [aux_sym_char_token1] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_AT_DQUOTE] = ACTIONS(3463), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3463), - [sym_bool] = ACTIONS(3461), - [sym_unit] = ACTIONS(3463), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [sym_op_identifier] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_PLUS_DOT] = ACTIONS(3463), - [anon_sym_DASH_DOT] = ACTIONS(3463), - [anon_sym_PERCENT] = ACTIONS(3463), - [anon_sym_AMP_AMP] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3463), - [aux_sym_prefix_op_token1] = ACTIONS(3463), - [sym_int] = ACTIONS(3461), - [sym_xint] = ACTIONS(3463), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3463), }, [3144] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3948), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3144), [sym_block_comment] = STATE(3144), [sym_line_comment] = STATE(3144), [sym_compiler_directive_decl] = STATE(3144), [sym_fsi_directive_decl] = STATE(3144), [sym_preproc_line] = STATE(3144), - [sym_identifier] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_let_BANG] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_null] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_LBRACE_PIPE] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_return_BANG] = ACTIONS(3389), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_yield_BANG] = ACTIONS(3389), - [anon_sym_lazy] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_upcast] = ACTIONS(3387), - [anon_sym_downcast] = ACTIONS(3387), - [anon_sym_LT_AT] = ACTIONS(3387), - [anon_sym_LT_AT_AT] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_fun] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_match_BANG] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3389), - [anon_sym_use] = ACTIONS(3387), - [anon_sym_use_BANG] = ACTIONS(3389), - [anon_sym_do_BANG] = ACTIONS(3389), - [anon_sym_begin] = ACTIONS(3387), - [aux_sym_char_token1] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_AT_DQUOTE] = ACTIONS(3389), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), - [sym_bool] = ACTIONS(3387), - [sym_unit] = ACTIONS(3389), - [anon_sym_LPAREN_PIPE] = ACTIONS(3387), - [sym_op_identifier] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [aux_sym_prefix_op_token1] = ACTIONS(3389), - [sym_int] = ACTIONS(3387), - [sym_xint] = ACTIONS(3389), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3389), }, [3145] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3937), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), [sym_xml_doc] = STATE(3145), [sym_block_comment] = STATE(3145), [sym_line_comment] = STATE(3145), [sym_compiler_directive_decl] = STATE(3145), [sym_fsi_directive_decl] = STATE(3145), [sym_preproc_line] = STATE(3145), - [sym_identifier] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_let_BANG] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_LBRACE_PIPE] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_return_BANG] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_yield_BANG] = ACTIONS(3453), - [anon_sym_lazy] = ACTIONS(3451), - [anon_sym_assert] = ACTIONS(3451), - [anon_sym_upcast] = ACTIONS(3451), - [anon_sym_downcast] = ACTIONS(3451), - [anon_sym_LT_AT] = ACTIONS(3451), - [anon_sym_LT_AT_AT] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_fun] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_match] = ACTIONS(3451), - [anon_sym_match_BANG] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_GT] = ACTIONS(3453), - [anon_sym_use] = ACTIONS(3451), - [anon_sym_use_BANG] = ACTIONS(3453), - [anon_sym_do_BANG] = ACTIONS(3453), - [anon_sym_begin] = ACTIONS(3451), - [aux_sym_char_token1] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_AT_DQUOTE] = ACTIONS(3453), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), - [sym_bool] = ACTIONS(3451), - [sym_unit] = ACTIONS(3453), - [anon_sym_LPAREN_PIPE] = ACTIONS(3451), - [sym_op_identifier] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [anon_sym_PERCENT] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [aux_sym_prefix_op_token1] = ACTIONS(3453), - [sym_int] = ACTIONS(3451), - [sym_xint] = ACTIONS(3453), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3453), }, [3146] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5805), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3146), [sym_block_comment] = STATE(3146), [sym_line_comment] = STATE(3146), [sym_compiler_directive_decl] = STATE(3146), [sym_fsi_directive_decl] = STATE(3146), [sym_preproc_line] = STATE(3146), - [sym_identifier] = ACTIONS(5263), - [anon_sym_return] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(5263), - [anon_sym_and] = ACTIONS(5263), - [anon_sym_let] = ACTIONS(5263), - [anon_sym_let_BANG] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(5263), - [anon_sym_AMP] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_LBRACK_PIPE] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_LBRACE_PIPE] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5263), - [anon_sym_return_BANG] = ACTIONS(5261), - [anon_sym_yield] = ACTIONS(5263), - [anon_sym_yield_BANG] = ACTIONS(5261), - [anon_sym_lazy] = ACTIONS(5263), - [anon_sym_assert] = ACTIONS(5263), - [anon_sym_upcast] = ACTIONS(5263), - [anon_sym_downcast] = ACTIONS(5263), - [anon_sym_LT_AT] = ACTIONS(5263), - [anon_sym_LT_AT_AT] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5263), - [anon_sym_if] = ACTIONS(5263), - [anon_sym_fun] = ACTIONS(5263), - [anon_sym_try] = ACTIONS(5263), - [anon_sym_match] = ACTIONS(5263), - [anon_sym_match_BANG] = ACTIONS(5261), - [anon_sym_function] = ACTIONS(5263), - [anon_sym_use] = ACTIONS(5263), - [anon_sym_use_BANG] = ACTIONS(5261), - [anon_sym_do_BANG] = ACTIONS(5261), - [anon_sym_begin] = ACTIONS(5263), - [aux_sym_char_token1] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_AT_DQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [sym_bool] = ACTIONS(5263), - [sym_unit] = ACTIONS(5261), - [anon_sym_LPAREN_PIPE] = ACTIONS(5263), - [sym_op_identifier] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_PLUS_DOT] = ACTIONS(5261), - [anon_sym_DASH_DOT] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5261), - [aux_sym_prefix_op_token1] = ACTIONS(5261), - [sym_int] = ACTIONS(5263), - [sym_xint] = ACTIONS(5261), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5261), - [anon_sym_POUNDendif] = ACTIONS(5261), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3147] = { + [sym_attributes] = STATE(3046), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5720), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2081), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3147), [sym_block_comment] = STATE(3147), [sym_line_comment] = STATE(3147), [sym_compiler_directive_decl] = STATE(3147), [sym_fsi_directive_decl] = STATE(3147), [sym_preproc_line] = STATE(3147), - [sym_identifier] = ACTIONS(5402), - [anon_sym_return] = ACTIONS(5402), - [anon_sym_do] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_let_BANG] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_null] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_LBRACK_PIPE] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_LBRACE_PIPE] = ACTIONS(5400), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_return_BANG] = ACTIONS(5400), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_yield_BANG] = ACTIONS(5400), - [anon_sym_lazy] = ACTIONS(5402), - [anon_sym_assert] = ACTIONS(5402), - [anon_sym_upcast] = ACTIONS(5402), - [anon_sym_downcast] = ACTIONS(5402), - [anon_sym_LT_AT] = ACTIONS(5402), - [anon_sym_LT_AT_AT] = ACTIONS(5400), - [anon_sym_for] = ACTIONS(5402), - [anon_sym_while] = ACTIONS(5402), - [anon_sym_if] = ACTIONS(5402), - [anon_sym_fun] = ACTIONS(5402), - [anon_sym_try] = ACTIONS(5402), - [anon_sym_match] = ACTIONS(5402), - [anon_sym_match_BANG] = ACTIONS(5400), - [anon_sym_function] = ACTIONS(5402), - [anon_sym_use] = ACTIONS(5402), - [anon_sym_use_BANG] = ACTIONS(5400), - [anon_sym_do_BANG] = ACTIONS(5400), - [anon_sym_begin] = ACTIONS(5402), - [aux_sym_char_token1] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(5402), - [anon_sym_AT_DQUOTE] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [sym_bool] = ACTIONS(5402), - [sym_unit] = ACTIONS(5400), - [anon_sym_LPAREN_PIPE] = ACTIONS(5402), - [sym_op_identifier] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5402), - [anon_sym_PLUS_DOT] = ACTIONS(5400), - [anon_sym_DASH_DOT] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5400), - [anon_sym_AMP_AMP] = ACTIONS(5400), - [anon_sym_TILDE] = ACTIONS(5400), - [aux_sym_prefix_op_token1] = ACTIONS(5400), - [sym_int] = ACTIONS(5402), - [sym_xint] = ACTIONS(5400), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5400), - [anon_sym_POUNDendif] = ACTIONS(5400), - [anon_sym_POUNDelse] = ACTIONS(5400), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4792), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4796), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3148] = { [sym_xml_doc] = STATE(3148), @@ -366001,69 +375503,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3148), [sym_fsi_directive_decl] = STATE(3148), [sym_preproc_line] = STATE(3148), - [sym_identifier] = ACTIONS(5402), - [anon_sym_return] = ACTIONS(5402), - [anon_sym_do] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_let_BANG] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_null] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_LBRACK_PIPE] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_LBRACE_PIPE] = ACTIONS(5400), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_return_BANG] = ACTIONS(5400), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_yield_BANG] = ACTIONS(5400), - [anon_sym_lazy] = ACTIONS(5402), - [anon_sym_assert] = ACTIONS(5402), - [anon_sym_upcast] = ACTIONS(5402), - [anon_sym_downcast] = ACTIONS(5402), - [anon_sym_LT_AT] = ACTIONS(5402), - [anon_sym_LT_AT_AT] = ACTIONS(5400), - [anon_sym_for] = ACTIONS(5402), - [anon_sym_while] = ACTIONS(5402), - [anon_sym_if] = ACTIONS(5402), - [anon_sym_fun] = ACTIONS(5402), - [anon_sym_try] = ACTIONS(5402), - [anon_sym_match] = ACTIONS(5402), - [anon_sym_match_BANG] = ACTIONS(5400), - [anon_sym_function] = ACTIONS(5402), - [anon_sym_use] = ACTIONS(5402), - [anon_sym_use_BANG] = ACTIONS(5400), - [anon_sym_do_BANG] = ACTIONS(5400), - [anon_sym_begin] = ACTIONS(5402), - [aux_sym_char_token1] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(5402), - [anon_sym_AT_DQUOTE] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [sym_bool] = ACTIONS(5402), - [sym_unit] = ACTIONS(5400), - [anon_sym_LPAREN_PIPE] = ACTIONS(5402), - [sym_op_identifier] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5402), - [anon_sym_PLUS_DOT] = ACTIONS(5400), - [anon_sym_DASH_DOT] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5400), - [anon_sym_AMP_AMP] = ACTIONS(5400), - [anon_sym_TILDE] = ACTIONS(5400), - [aux_sym_prefix_op_token1] = ACTIONS(5400), - [sym_int] = ACTIONS(5402), - [sym_xint] = ACTIONS(5400), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5400), - [anon_sym_POUNDendif] = ACTIONS(5400), + [sym_identifier] = ACTIONS(5342), + [anon_sym_module] = ACTIONS(5342), + [anon_sym_open] = ACTIONS(5342), + [anon_sym_LBRACK_LT] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_do] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_let_BANG] = ACTIONS(5340), + [aux_sym_access_modifier_token1] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5490), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_LBRACK_PIPE] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_LT_AT] = ACTIONS(5342), + [anon_sym_LT_AT_AT] = ACTIONS(5340), + [anon_sym_LBRACE_PIPE] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5342), + [anon_sym_return_BANG] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_yield_BANG] = ACTIONS(5340), + [anon_sym_lazy] = ACTIONS(5342), + [anon_sym_assert] = ACTIONS(5342), + [anon_sym_upcast] = ACTIONS(5342), + [anon_sym_downcast] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_fun] = ACTIONS(5342), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_match_BANG] = ACTIONS(5340), + [anon_sym_function] = ACTIONS(5342), + [anon_sym_use] = ACTIONS(5342), + [anon_sym_use_BANG] = ACTIONS(5340), + [anon_sym_do_BANG] = ACTIONS(5340), + [anon_sym_begin] = ACTIONS(5342), + [anon_sym_default] = ACTIONS(5342), + [anon_sym_static] = ACTIONS(5342), + [anon_sym_member] = ACTIONS(5342), + [anon_sym_abstract] = ACTIONS(5342), + [anon_sym_override] = ACTIONS(5342), + [anon_sym_val] = ACTIONS(5342), + [aux_sym_char_token1] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5342), + [anon_sym_DQUOTE] = ACTIONS(5342), + [anon_sym_AT_DQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [sym_bool] = ACTIONS(5342), + [sym_unit] = ACTIONS(5340), + [anon_sym_LPAREN_PIPE] = ACTIONS(5342), + [sym_op_identifier] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS_DOT] = ACTIONS(5340), + [anon_sym_DASH_DOT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_AMP_AMP] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5340), + [aux_sym_prefix_op_token1] = ACTIONS(5340), + [sym_int] = ACTIONS(5342), + [sym_xint] = ACTIONS(5340), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5340), + [anon_sym_POUNDload] = ACTIONS(5340), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5340), + [sym__dedent] = ACTIONS(5340), }, [3149] = { [sym_xml_doc] = STATE(3149), @@ -366072,211 +375587,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3149), [sym_fsi_directive_decl] = STATE(3149), [sym_preproc_line] = STATE(3149), - [sym_identifier] = ACTIONS(5270), - [anon_sym_return] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_let_BANG] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_null] = ACTIONS(5270), - [anon_sym_AMP] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_LBRACK_PIPE] = ACTIONS(5268), - [anon_sym_LBRACE] = ACTIONS(5270), - [anon_sym_LBRACE_PIPE] = ACTIONS(5268), - [anon_sym_new] = ACTIONS(5270), - [anon_sym_return_BANG] = ACTIONS(5268), - [anon_sym_yield] = ACTIONS(5270), - [anon_sym_yield_BANG] = ACTIONS(5268), - [anon_sym_lazy] = ACTIONS(5270), - [anon_sym_assert] = ACTIONS(5270), - [anon_sym_upcast] = ACTIONS(5270), - [anon_sym_downcast] = ACTIONS(5270), - [anon_sym_LT_AT] = ACTIONS(5270), - [anon_sym_LT_AT_AT] = ACTIONS(5268), - [anon_sym_for] = ACTIONS(5270), - [anon_sym_while] = ACTIONS(5270), - [anon_sym_if] = ACTIONS(5270), - [anon_sym_fun] = ACTIONS(5270), - [anon_sym_try] = ACTIONS(5270), - [anon_sym_match] = ACTIONS(5270), - [anon_sym_match_BANG] = ACTIONS(5268), - [anon_sym_function] = ACTIONS(5270), - [anon_sym_use] = ACTIONS(5270), - [anon_sym_use_BANG] = ACTIONS(5268), - [anon_sym_do_BANG] = ACTIONS(5268), - [anon_sym_begin] = ACTIONS(5270), - [aux_sym_char_token1] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5270), - [anon_sym_DQUOTE] = ACTIONS(5270), - [anon_sym_AT_DQUOTE] = ACTIONS(5268), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5268), - [sym_bool] = ACTIONS(5270), - [sym_unit] = ACTIONS(5268), - [anon_sym_LPAREN_PIPE] = ACTIONS(5270), - [sym_op_identifier] = ACTIONS(5268), - [anon_sym_PLUS] = ACTIONS(5270), - [anon_sym_DASH] = ACTIONS(5270), - [anon_sym_PLUS_DOT] = ACTIONS(5268), - [anon_sym_DASH_DOT] = ACTIONS(5268), - [anon_sym_PERCENT] = ACTIONS(5268), - [anon_sym_AMP_AMP] = ACTIONS(5268), - [anon_sym_TILDE] = ACTIONS(5268), - [aux_sym_prefix_op_token1] = ACTIONS(5268), - [sym_int] = ACTIONS(5270), - [sym_xint] = ACTIONS(5268), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5268), + [ts_builtin_sym_end] = ACTIONS(5492), + [sym_identifier] = ACTIONS(5494), + [anon_sym_namespace] = ACTIONS(5494), + [anon_sym_module] = ACTIONS(5494), + [anon_sym_open] = ACTIONS(5494), + [anon_sym_LBRACK_LT] = ACTIONS(5492), + [anon_sym_return] = ACTIONS(5494), + [anon_sym_type] = ACTIONS(5494), + [anon_sym_do] = ACTIONS(5494), + [anon_sym_and] = ACTIONS(5494), + [anon_sym_let] = ACTIONS(5494), + [anon_sym_let_BANG] = ACTIONS(5492), + [aux_sym_access_modifier_token1] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_null] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_LBRACK_PIPE] = ACTIONS(5492), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_LT_AT] = ACTIONS(5494), + [anon_sym_LT_AT_AT] = ACTIONS(5492), + [anon_sym_LBRACE_PIPE] = ACTIONS(5492), + [anon_sym_new] = ACTIONS(5494), + [anon_sym_return_BANG] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5494), + [anon_sym_yield_BANG] = ACTIONS(5492), + [anon_sym_lazy] = ACTIONS(5494), + [anon_sym_assert] = ACTIONS(5494), + [anon_sym_upcast] = ACTIONS(5494), + [anon_sym_downcast] = ACTIONS(5494), + [anon_sym_for] = ACTIONS(5494), + [anon_sym_while] = ACTIONS(5494), + [anon_sym_if] = ACTIONS(5494), + [anon_sym_fun] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5494), + [anon_sym_match] = ACTIONS(5494), + [anon_sym_match_BANG] = ACTIONS(5492), + [anon_sym_function] = ACTIONS(5494), + [anon_sym_use] = ACTIONS(5494), + [anon_sym_use_BANG] = ACTIONS(5492), + [anon_sym_do_BANG] = ACTIONS(5492), + [anon_sym_begin] = ACTIONS(5494), + [anon_sym_default] = ACTIONS(5494), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_member] = ACTIONS(5494), + [anon_sym_abstract] = ACTIONS(5494), + [anon_sym_override] = ACTIONS(5494), + [anon_sym_val] = ACTIONS(5494), + [aux_sym_char_token1] = ACTIONS(5492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [anon_sym_AT_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5492), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5492), + [sym_bool] = ACTIONS(5494), + [sym_unit] = ACTIONS(5492), + [anon_sym_LPAREN_PIPE] = ACTIONS(5494), + [sym_op_identifier] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PLUS_DOT] = ACTIONS(5492), + [anon_sym_DASH_DOT] = ACTIONS(5492), + [anon_sym_PERCENT] = ACTIONS(5492), + [anon_sym_AMP_AMP] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5492), + [aux_sym_prefix_op_token1] = ACTIONS(5492), + [sym_int] = ACTIONS(5494), + [sym_xint] = ACTIONS(5492), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5492), + [anon_sym_POUNDload] = ACTIONS(5492), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5492), }, [3150] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5588), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3150), [sym_block_comment] = STATE(3150), [sym_line_comment] = STATE(3150), [sym_compiler_directive_decl] = STATE(3150), [sym_fsi_directive_decl] = STATE(3150), [sym_preproc_line] = STATE(3150), - [aux_sym_prefix_op_repeat1] = STATE(3150), - [sym_identifier] = ACTIONS(5534), - [anon_sym_return] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5534), - [anon_sym_let] = ACTIONS(5534), - [anon_sym_let_BANG] = ACTIONS(5536), - [anon_sym_LPAREN] = ACTIONS(5534), - [anon_sym_null] = ACTIONS(5534), - [anon_sym_AMP] = ACTIONS(5534), - [anon_sym_LBRACK] = ACTIONS(5534), - [anon_sym_LBRACK_PIPE] = ACTIONS(5536), - [anon_sym_LBRACE] = ACTIONS(5534), - [anon_sym_LBRACE_PIPE] = ACTIONS(5536), - [anon_sym_new] = ACTIONS(5534), - [anon_sym_return_BANG] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(5534), - [anon_sym_yield_BANG] = ACTIONS(5536), - [anon_sym_lazy] = ACTIONS(5534), - [anon_sym_assert] = ACTIONS(5534), - [anon_sym_upcast] = ACTIONS(5534), - [anon_sym_downcast] = ACTIONS(5534), - [anon_sym_LT_AT] = ACTIONS(5534), - [anon_sym_LT_AT_AT] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5534), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_if] = ACTIONS(5534), - [anon_sym_fun] = ACTIONS(5534), - [anon_sym_try] = ACTIONS(5534), - [anon_sym_match] = ACTIONS(5534), - [anon_sym_match_BANG] = ACTIONS(5536), - [anon_sym_function] = ACTIONS(5534), - [anon_sym_use] = ACTIONS(5534), - [anon_sym_use_BANG] = ACTIONS(5536), - [anon_sym_do_BANG] = ACTIONS(5536), - [anon_sym_begin] = ACTIONS(5534), - [aux_sym_char_token1] = ACTIONS(5536), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5534), - [anon_sym_DQUOTE] = ACTIONS(5534), - [anon_sym_AT_DQUOTE] = ACTIONS(5536), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), - [sym_bool] = ACTIONS(5534), - [sym_unit] = ACTIONS(5536), - [anon_sym_LPAREN_PIPE] = ACTIONS(5534), - [sym_op_identifier] = ACTIONS(5536), - [anon_sym_PLUS] = ACTIONS(5534), - [anon_sym_DASH] = ACTIONS(5534), - [anon_sym_PLUS_DOT] = ACTIONS(5536), - [anon_sym_DASH_DOT] = ACTIONS(5536), - [anon_sym_PERCENT] = ACTIONS(5536), - [anon_sym_AMP_AMP] = ACTIONS(5536), - [anon_sym_TILDE] = ACTIONS(5538), - [aux_sym_prefix_op_token1] = ACTIONS(5536), - [sym_int] = ACTIONS(5534), - [sym_xint] = ACTIONS(5536), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5536), }, [3151] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5863), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3151), [sym_block_comment] = STATE(3151), [sym_line_comment] = STATE(3151), [sym_compiler_directive_decl] = STATE(3151), [sym_fsi_directive_decl] = STATE(3151), [sym_preproc_line] = STATE(3151), - [aux_sym_prefix_op_repeat1] = STATE(3150), - [sym_identifier] = ACTIONS(5541), - [anon_sym_return] = ACTIONS(5541), - [anon_sym_do] = ACTIONS(5541), - [anon_sym_let] = ACTIONS(5541), - [anon_sym_let_BANG] = ACTIONS(5543), - [anon_sym_LPAREN] = ACTIONS(5541), - [anon_sym_null] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_LBRACK_PIPE] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5541), - [anon_sym_LBRACE_PIPE] = ACTIONS(5543), - [anon_sym_new] = ACTIONS(5541), - [anon_sym_return_BANG] = ACTIONS(5543), - [anon_sym_yield] = ACTIONS(5541), - [anon_sym_yield_BANG] = ACTIONS(5543), - [anon_sym_lazy] = ACTIONS(5541), - [anon_sym_assert] = ACTIONS(5541), - [anon_sym_upcast] = ACTIONS(5541), - [anon_sym_downcast] = ACTIONS(5541), - [anon_sym_LT_AT] = ACTIONS(5541), - [anon_sym_LT_AT_AT] = ACTIONS(5543), - [anon_sym_for] = ACTIONS(5541), - [anon_sym_while] = ACTIONS(5541), - [anon_sym_if] = ACTIONS(5541), - [anon_sym_fun] = ACTIONS(5541), - [anon_sym_try] = ACTIONS(5541), - [anon_sym_match] = ACTIONS(5541), - [anon_sym_match_BANG] = ACTIONS(5543), - [anon_sym_function] = ACTIONS(5541), - [anon_sym_use] = ACTIONS(5541), - [anon_sym_use_BANG] = ACTIONS(5543), - [anon_sym_do_BANG] = ACTIONS(5543), - [anon_sym_begin] = ACTIONS(5541), - [aux_sym_char_token1] = ACTIONS(5543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5541), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_AT_DQUOTE] = ACTIONS(5543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5543), - [sym_bool] = ACTIONS(5541), - [sym_unit] = ACTIONS(5543), - [anon_sym_LPAREN_PIPE] = ACTIONS(5541), - [sym_op_identifier] = ACTIONS(5543), - [anon_sym_PLUS] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5541), - [anon_sym_PLUS_DOT] = ACTIONS(5543), - [anon_sym_DASH_DOT] = ACTIONS(5543), - [anon_sym_PERCENT] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [aux_sym_prefix_op_token1] = ACTIONS(5543), - [sym_int] = ACTIONS(5541), - [sym_xint] = ACTIONS(5543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5543), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5474), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3152] = { [sym_xml_doc] = STATE(3152), @@ -366285,140 +375839,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3152), [sym_fsi_directive_decl] = STATE(3152), [sym_preproc_line] = STATE(3152), - [sym_identifier] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_and] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_let_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_null] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_LBRACE_PIPE] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_return_BANG] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_yield_BANG] = ACTIONS(3169), - [anon_sym_lazy] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_upcast] = ACTIONS(3167), - [anon_sym_downcast] = ACTIONS(3167), - [anon_sym_LT_AT] = ACTIONS(3167), - [anon_sym_LT_AT_AT] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_fun] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_match_BANG] = ACTIONS(3169), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_use] = ACTIONS(3167), - [anon_sym_use_BANG] = ACTIONS(3169), - [anon_sym_do_BANG] = ACTIONS(3169), - [anon_sym_begin] = ACTIONS(3167), - [aux_sym_char_token1] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_AT_DQUOTE] = ACTIONS(3169), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3169), - [sym_bool] = ACTIONS(3167), - [sym_unit] = ACTIONS(3169), - [anon_sym_LPAREN_PIPE] = ACTIONS(3167), - [sym_op_identifier] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [aux_sym_prefix_op_token1] = ACTIONS(3169), - [sym_int] = ACTIONS(3167), - [sym_xint] = ACTIONS(3169), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(3169), + [sym_identifier] = ACTIONS(5342), + [anon_sym_module] = ACTIONS(5342), + [anon_sym_open] = ACTIONS(5342), + [anon_sym_LBRACK_LT] = ACTIONS(5340), + [anon_sym_return] = ACTIONS(5342), + [anon_sym_type] = ACTIONS(5342), + [anon_sym_do] = ACTIONS(5342), + [anon_sym_and] = ACTIONS(5342), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_let_BANG] = ACTIONS(5340), + [aux_sym_access_modifier_token1] = ACTIONS(5340), + [anon_sym_LPAREN] = ACTIONS(5342), + [anon_sym_COMMA] = ACTIONS(5496), + [anon_sym_null] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(5342), + [anon_sym_LBRACK] = ACTIONS(5342), + [anon_sym_LBRACK_PIPE] = ACTIONS(5340), + [anon_sym_LBRACE] = ACTIONS(5342), + [anon_sym_LT_AT] = ACTIONS(5342), + [anon_sym_LT_AT_AT] = ACTIONS(5340), + [anon_sym_LBRACE_PIPE] = ACTIONS(5340), + [anon_sym_new] = ACTIONS(5342), + [anon_sym_return_BANG] = ACTIONS(5340), + [anon_sym_yield] = ACTIONS(5342), + [anon_sym_yield_BANG] = ACTIONS(5340), + [anon_sym_lazy] = ACTIONS(5342), + [anon_sym_assert] = ACTIONS(5342), + [anon_sym_upcast] = ACTIONS(5342), + [anon_sym_downcast] = ACTIONS(5342), + [anon_sym_for] = ACTIONS(5342), + [anon_sym_while] = ACTIONS(5342), + [anon_sym_if] = ACTIONS(5342), + [anon_sym_fun] = ACTIONS(5342), + [anon_sym_try] = ACTIONS(5342), + [anon_sym_match] = ACTIONS(5342), + [anon_sym_match_BANG] = ACTIONS(5340), + [anon_sym_function] = ACTIONS(5342), + [anon_sym_use] = ACTIONS(5342), + [anon_sym_use_BANG] = ACTIONS(5340), + [anon_sym_do_BANG] = ACTIONS(5340), + [anon_sym_begin] = ACTIONS(5342), + [anon_sym_default] = ACTIONS(5342), + [anon_sym_static] = ACTIONS(5342), + [anon_sym_member] = ACTIONS(5342), + [anon_sym_abstract] = ACTIONS(5342), + [anon_sym_override] = ACTIONS(5342), + [anon_sym_val] = ACTIONS(5342), + [aux_sym_char_token1] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5342), + [anon_sym_DQUOTE] = ACTIONS(5342), + [anon_sym_AT_DQUOTE] = ACTIONS(5340), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5340), + [sym_bool] = ACTIONS(5342), + [sym_unit] = ACTIONS(5340), + [anon_sym_LPAREN_PIPE] = ACTIONS(5342), + [sym_op_identifier] = ACTIONS(5340), + [anon_sym_PLUS] = ACTIONS(5342), + [anon_sym_DASH] = ACTIONS(5342), + [anon_sym_PLUS_DOT] = ACTIONS(5340), + [anon_sym_DASH_DOT] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_AMP_AMP] = ACTIONS(5340), + [anon_sym_TILDE] = ACTIONS(5340), + [aux_sym_prefix_op_token1] = ACTIONS(5340), + [sym_int] = ACTIONS(5342), + [sym_xint] = ACTIONS(5340), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5340), + [anon_sym_POUNDload] = ACTIONS(5340), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5340), + [sym__dedent] = ACTIONS(5340), }, [3153] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5572), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3244), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3153), [sym_block_comment] = STATE(3153), [sym_line_comment] = STATE(3153), [sym_compiler_directive_decl] = STATE(3153), [sym_fsi_directive_decl] = STATE(3153), [sym_preproc_line] = STATE(3153), - [sym_identifier] = ACTIONS(5263), - [anon_sym_return] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(5263), - [anon_sym_and] = ACTIONS(5263), - [anon_sym_let] = ACTIONS(5263), - [anon_sym_let_BANG] = ACTIONS(5261), - [anon_sym_LPAREN] = ACTIONS(5263), - [anon_sym_null] = ACTIONS(5263), - [anon_sym_AMP] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_LBRACK_PIPE] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5263), - [anon_sym_LBRACE_PIPE] = ACTIONS(5261), - [anon_sym_new] = ACTIONS(5263), - [anon_sym_return_BANG] = ACTIONS(5261), - [anon_sym_yield] = ACTIONS(5263), - [anon_sym_yield_BANG] = ACTIONS(5261), - [anon_sym_lazy] = ACTIONS(5263), - [anon_sym_assert] = ACTIONS(5263), - [anon_sym_upcast] = ACTIONS(5263), - [anon_sym_downcast] = ACTIONS(5263), - [anon_sym_LT_AT] = ACTIONS(5263), - [anon_sym_LT_AT_AT] = ACTIONS(5261), - [anon_sym_for] = ACTIONS(5263), - [anon_sym_while] = ACTIONS(5263), - [anon_sym_if] = ACTIONS(5263), - [anon_sym_fun] = ACTIONS(5263), - [anon_sym_try] = ACTIONS(5263), - [anon_sym_match] = ACTIONS(5263), - [anon_sym_match_BANG] = ACTIONS(5261), - [anon_sym_function] = ACTIONS(5263), - [anon_sym_use] = ACTIONS(5263), - [anon_sym_use_BANG] = ACTIONS(5261), - [anon_sym_do_BANG] = ACTIONS(5261), - [anon_sym_begin] = ACTIONS(5263), - [aux_sym_char_token1] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_AT_DQUOTE] = ACTIONS(5261), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5261), - [sym_bool] = ACTIONS(5263), - [sym_unit] = ACTIONS(5261), - [anon_sym_LPAREN_PIPE] = ACTIONS(5263), - [sym_op_identifier] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_PLUS_DOT] = ACTIONS(5261), - [anon_sym_DASH_DOT] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_AMP_AMP] = ACTIONS(5261), - [anon_sym_TILDE] = ACTIONS(5261), - [aux_sym_prefix_op_token1] = ACTIONS(5261), - [sym_int] = ACTIONS(5263), - [sym_xint] = ACTIONS(5261), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5261), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3154] = { [sym_xml_doc] = STATE(3154), @@ -366427,69 +376007,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3154), [sym_fsi_directive_decl] = STATE(3154), [sym_preproc_line] = STATE(3154), - [sym_identifier] = ACTIONS(5418), - [anon_sym_return] = ACTIONS(5418), - [anon_sym_do] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_let_BANG] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_null] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LBRACK_PIPE] = ACTIONS(5416), - [anon_sym_LBRACE] = ACTIONS(5418), - [anon_sym_LBRACE_PIPE] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_return_BANG] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_yield_BANG] = ACTIONS(5416), - [anon_sym_lazy] = ACTIONS(5418), - [anon_sym_assert] = ACTIONS(5418), - [anon_sym_upcast] = ACTIONS(5418), - [anon_sym_downcast] = ACTIONS(5418), - [anon_sym_LT_AT] = ACTIONS(5418), - [anon_sym_LT_AT_AT] = ACTIONS(5416), - [anon_sym_for] = ACTIONS(5418), - [anon_sym_while] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(5418), - [anon_sym_fun] = ACTIONS(5418), - [anon_sym_try] = ACTIONS(5418), - [anon_sym_match] = ACTIONS(5418), - [anon_sym_match_BANG] = ACTIONS(5416), - [anon_sym_function] = ACTIONS(5418), - [anon_sym_use] = ACTIONS(5418), - [anon_sym_use_BANG] = ACTIONS(5416), - [anon_sym_do_BANG] = ACTIONS(5416), - [anon_sym_begin] = ACTIONS(5418), - [aux_sym_char_token1] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5418), - [anon_sym_DQUOTE] = ACTIONS(5418), - [anon_sym_AT_DQUOTE] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [sym_bool] = ACTIONS(5418), - [sym_unit] = ACTIONS(5416), - [anon_sym_LPAREN_PIPE] = ACTIONS(5418), - [sym_op_identifier] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_PLUS_DOT] = ACTIONS(5416), - [anon_sym_DASH_DOT] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5416), - [aux_sym_prefix_op_token1] = ACTIONS(5416), - [sym_int] = ACTIONS(5418), - [sym_xint] = ACTIONS(5416), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5416), - [anon_sym_POUNDendif] = ACTIONS(5416), + [sym_identifier] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2770), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2770), + [anon_sym_DASH_DOT] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2770), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_y] = ACTIONS(5294), + [anon_sym_uy] = ACTIONS(5296), + [anon_sym_s] = ACTIONS(5298), + [anon_sym_us] = ACTIONS(5300), + [anon_sym_l] = ACTIONS(5302), + [aux_sym_uint32_token1] = ACTIONS(5304), + [anon_sym_n] = ACTIONS(5306), + [anon_sym_un] = ACTIONS(5308), + [anon_sym_L] = ACTIONS(5310), + [aux_sym_uint64_token1] = ACTIONS(5312), + [anon_sym_lf] = ACTIONS(5498), + [anon_sym_LF] = ACTIONS(5500), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), }, [3155] = { [sym_xml_doc] = STATE(3155), @@ -366498,2382 +376091,41704 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_compiler_directive_decl] = STATE(3155), [sym_fsi_directive_decl] = STATE(3155), [sym_preproc_line] = STATE(3155), - [sym_identifier] = ACTIONS(5235), - [anon_sym_return] = ACTIONS(5235), - [anon_sym_do] = ACTIONS(5235), - [anon_sym_and] = ACTIONS(5235), - [anon_sym_let] = ACTIONS(5235), - [anon_sym_let_BANG] = ACTIONS(5233), - [anon_sym_LPAREN] = ACTIONS(5235), - [anon_sym_null] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5235), - [anon_sym_LBRACK_PIPE] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACE_PIPE] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5235), - [anon_sym_return_BANG] = ACTIONS(5233), - [anon_sym_yield] = ACTIONS(5235), - [anon_sym_yield_BANG] = ACTIONS(5233), - [anon_sym_lazy] = ACTIONS(5235), - [anon_sym_assert] = ACTIONS(5235), - [anon_sym_upcast] = ACTIONS(5235), - [anon_sym_downcast] = ACTIONS(5235), - [anon_sym_LT_AT] = ACTIONS(5235), - [anon_sym_LT_AT_AT] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5235), - [anon_sym_while] = ACTIONS(5235), - [anon_sym_if] = ACTIONS(5235), - [anon_sym_fun] = ACTIONS(5235), - [anon_sym_try] = ACTIONS(5235), - [anon_sym_match] = ACTIONS(5235), - [anon_sym_match_BANG] = ACTIONS(5233), - [anon_sym_function] = ACTIONS(5235), - [anon_sym_use] = ACTIONS(5235), - [anon_sym_use_BANG] = ACTIONS(5233), - [anon_sym_do_BANG] = ACTIONS(5233), - [anon_sym_begin] = ACTIONS(5235), - [aux_sym_char_token1] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [anon_sym_AT_DQUOTE] = ACTIONS(5233), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5233), - [sym_bool] = ACTIONS(5235), - [sym_unit] = ACTIONS(5233), - [anon_sym_LPAREN_PIPE] = ACTIONS(5235), - [sym_op_identifier] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_PLUS_DOT] = ACTIONS(5233), - [anon_sym_DASH_DOT] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_AMP_AMP] = ACTIONS(5233), - [anon_sym_TILDE] = ACTIONS(5233), - [aux_sym_prefix_op_token1] = ACTIONS(5233), - [sym_int] = ACTIONS(5235), - [sym_xint] = ACTIONS(5233), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5233), + [ts_builtin_sym_end] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5504), + [anon_sym_namespace] = ACTIONS(5504), + [anon_sym_module] = ACTIONS(5504), + [anon_sym_open] = ACTIONS(5504), + [anon_sym_LBRACK_LT] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_do] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_let] = ACTIONS(5504), + [anon_sym_let_BANG] = ACTIONS(5502), + [aux_sym_access_modifier_token1] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_LBRACK_PIPE] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_LT_AT] = ACTIONS(5504), + [anon_sym_LT_AT_AT] = ACTIONS(5502), + [anon_sym_LBRACE_PIPE] = ACTIONS(5502), + [anon_sym_new] = ACTIONS(5504), + [anon_sym_return_BANG] = ACTIONS(5502), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_yield_BANG] = ACTIONS(5502), + [anon_sym_lazy] = ACTIONS(5504), + [anon_sym_assert] = ACTIONS(5504), + [anon_sym_upcast] = ACTIONS(5504), + [anon_sym_downcast] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_fun] = ACTIONS(5504), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_match_BANG] = ACTIONS(5502), + [anon_sym_function] = ACTIONS(5504), + [anon_sym_use] = ACTIONS(5504), + [anon_sym_use_BANG] = ACTIONS(5502), + [anon_sym_do_BANG] = ACTIONS(5502), + [anon_sym_begin] = ACTIONS(5504), + [anon_sym_default] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_member] = ACTIONS(5504), + [anon_sym_abstract] = ACTIONS(5504), + [anon_sym_override] = ACTIONS(5504), + [anon_sym_val] = ACTIONS(5504), + [aux_sym_char_token1] = ACTIONS(5502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5504), + [anon_sym_DQUOTE] = ACTIONS(5504), + [anon_sym_AT_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5502), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5502), + [sym_bool] = ACTIONS(5504), + [sym_unit] = ACTIONS(5502), + [anon_sym_LPAREN_PIPE] = ACTIONS(5504), + [sym_op_identifier] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_PLUS_DOT] = ACTIONS(5502), + [anon_sym_DASH_DOT] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_AMP_AMP] = ACTIONS(5502), + [anon_sym_TILDE] = ACTIONS(5502), + [aux_sym_prefix_op_token1] = ACTIONS(5502), + [sym_int] = ACTIONS(5504), + [sym_xint] = ACTIONS(5502), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5502), + [anon_sym_POUNDload] = ACTIONS(5502), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5502), }, [3156] = { + [sym_attributes] = STATE(3082), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5512), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1816), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3156), [sym_block_comment] = STATE(3156), [sym_line_comment] = STATE(3156), [sym_compiler_directive_decl] = STATE(3156), [sym_fsi_directive_decl] = STATE(3156), [sym_preproc_line] = STATE(3156), - [sym_identifier] = ACTIONS(5402), - [anon_sym_return] = ACTIONS(5402), - [anon_sym_do] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_let_BANG] = ACTIONS(5400), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_null] = ACTIONS(5402), - [anon_sym_AMP] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5402), - [anon_sym_LBRACK_PIPE] = ACTIONS(5400), - [anon_sym_LBRACE] = ACTIONS(5402), - [anon_sym_LBRACE_PIPE] = ACTIONS(5400), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_return_BANG] = ACTIONS(5400), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_yield_BANG] = ACTIONS(5400), - [anon_sym_lazy] = ACTIONS(5402), - [anon_sym_assert] = ACTIONS(5402), - [anon_sym_upcast] = ACTIONS(5402), - [anon_sym_downcast] = ACTIONS(5402), - [anon_sym_LT_AT] = ACTIONS(5402), - [anon_sym_LT_AT_AT] = ACTIONS(5400), - [anon_sym_for] = ACTIONS(5402), - [anon_sym_while] = ACTIONS(5402), - [anon_sym_if] = ACTIONS(5402), - [anon_sym_fun] = ACTIONS(5402), - [anon_sym_try] = ACTIONS(5402), - [anon_sym_match] = ACTIONS(5402), - [anon_sym_match_BANG] = ACTIONS(5400), - [anon_sym_function] = ACTIONS(5402), - [anon_sym_use] = ACTIONS(5402), - [anon_sym_use_BANG] = ACTIONS(5400), - [anon_sym_do_BANG] = ACTIONS(5400), - [anon_sym_begin] = ACTIONS(5402), - [aux_sym_char_token1] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(5402), - [anon_sym_AT_DQUOTE] = ACTIONS(5400), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5400), - [sym_bool] = ACTIONS(5402), - [sym_unit] = ACTIONS(5400), - [anon_sym_LPAREN_PIPE] = ACTIONS(5402), - [sym_op_identifier] = ACTIONS(5400), - [anon_sym_PLUS] = ACTIONS(5402), - [anon_sym_DASH] = ACTIONS(5402), - [anon_sym_PLUS_DOT] = ACTIONS(5400), - [anon_sym_DASH_DOT] = ACTIONS(5400), - [anon_sym_PERCENT] = ACTIONS(5400), - [anon_sym_AMP_AMP] = ACTIONS(5400), - [anon_sym_TILDE] = ACTIONS(5400), - [aux_sym_prefix_op_token1] = ACTIONS(5400), - [sym_int] = ACTIONS(5402), - [sym_xint] = ACTIONS(5400), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5400), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3157] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5807), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3157), [sym_block_comment] = STATE(3157), [sym_line_comment] = STATE(3157), [sym_compiler_directive_decl] = STATE(3157), [sym_fsi_directive_decl] = STATE(3157), [sym_preproc_line] = STATE(3157), - [sym_identifier] = ACTIONS(5545), - [anon_sym_return] = ACTIONS(5545), - [anon_sym_do] = ACTIONS(5545), - [anon_sym_let] = ACTIONS(5545), - [anon_sym_let_BANG] = ACTIONS(5547), - [anon_sym_LPAREN] = ACTIONS(5545), - [anon_sym_null] = ACTIONS(5545), - [anon_sym_AMP] = ACTIONS(5545), - [anon_sym_LBRACK] = ACTIONS(5545), - [anon_sym_LBRACK_PIPE] = ACTIONS(5547), - [anon_sym_LBRACE] = ACTIONS(5545), - [anon_sym_LBRACE_PIPE] = ACTIONS(5547), - [anon_sym_new] = ACTIONS(5545), - [anon_sym_return_BANG] = ACTIONS(5547), - [anon_sym_yield] = ACTIONS(5545), - [anon_sym_yield_BANG] = ACTIONS(5547), - [anon_sym_lazy] = ACTIONS(5545), - [anon_sym_assert] = ACTIONS(5545), - [anon_sym_upcast] = ACTIONS(5545), - [anon_sym_downcast] = ACTIONS(5545), - [anon_sym_LT_AT] = ACTIONS(5545), - [anon_sym_LT_AT_AT] = ACTIONS(5547), - [anon_sym_for] = ACTIONS(5545), - [anon_sym_while] = ACTIONS(5545), - [anon_sym_if] = ACTIONS(5545), - [anon_sym_fun] = ACTIONS(5545), - [anon_sym_try] = ACTIONS(5545), - [anon_sym_match] = ACTIONS(5545), - [anon_sym_match_BANG] = ACTIONS(5547), - [anon_sym_function] = ACTIONS(5545), - [anon_sym_use] = ACTIONS(5545), - [anon_sym_use_BANG] = ACTIONS(5547), - [anon_sym_do_BANG] = ACTIONS(5547), - [anon_sym_begin] = ACTIONS(5545), - [aux_sym_char_token1] = ACTIONS(5547), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5545), - [anon_sym_DQUOTE] = ACTIONS(5545), - [anon_sym_AT_DQUOTE] = ACTIONS(5547), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5547), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5547), - [sym_bool] = ACTIONS(5545), - [sym_unit] = ACTIONS(5547), - [anon_sym_LPAREN_PIPE] = ACTIONS(5545), - [sym_op_identifier] = ACTIONS(5547), - [anon_sym_PLUS] = ACTIONS(5545), - [anon_sym_DASH] = ACTIONS(5545), - [anon_sym_PLUS_DOT] = ACTIONS(5547), - [anon_sym_DASH_DOT] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5547), - [anon_sym_AMP_AMP] = ACTIONS(5547), - [anon_sym_TILDE] = ACTIONS(5547), - [aux_sym_prefix_op_token1] = ACTIONS(5547), - [sym_int] = ACTIONS(5545), - [sym_xint] = ACTIONS(5547), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5547), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3158] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5836), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3158), [sym_block_comment] = STATE(3158), [sym_line_comment] = STATE(3158), [sym_compiler_directive_decl] = STATE(3158), [sym_fsi_directive_decl] = STATE(3158), [sym_preproc_line] = STATE(3158), - [sym_identifier] = ACTIONS(5418), - [anon_sym_return] = ACTIONS(5418), - [anon_sym_do] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_let_BANG] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5418), - [anon_sym_null] = ACTIONS(5418), - [anon_sym_AMP] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5418), - [anon_sym_LBRACK_PIPE] = ACTIONS(5416), - [anon_sym_LBRACE] = ACTIONS(5418), - [anon_sym_LBRACE_PIPE] = ACTIONS(5416), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_return_BANG] = ACTIONS(5416), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_yield_BANG] = ACTIONS(5416), - [anon_sym_lazy] = ACTIONS(5418), - [anon_sym_assert] = ACTIONS(5418), - [anon_sym_upcast] = ACTIONS(5418), - [anon_sym_downcast] = ACTIONS(5418), - [anon_sym_LT_AT] = ACTIONS(5418), - [anon_sym_LT_AT_AT] = ACTIONS(5416), - [anon_sym_for] = ACTIONS(5418), - [anon_sym_while] = ACTIONS(5418), - [anon_sym_if] = ACTIONS(5418), - [anon_sym_fun] = ACTIONS(5418), - [anon_sym_try] = ACTIONS(5418), - [anon_sym_match] = ACTIONS(5418), - [anon_sym_match_BANG] = ACTIONS(5416), - [anon_sym_function] = ACTIONS(5418), - [anon_sym_use] = ACTIONS(5418), - [anon_sym_use_BANG] = ACTIONS(5416), - [anon_sym_do_BANG] = ACTIONS(5416), - [anon_sym_begin] = ACTIONS(5418), - [aux_sym_char_token1] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5418), - [anon_sym_DQUOTE] = ACTIONS(5418), - [anon_sym_AT_DQUOTE] = ACTIONS(5416), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5416), - [sym_bool] = ACTIONS(5418), - [sym_unit] = ACTIONS(5416), - [anon_sym_LPAREN_PIPE] = ACTIONS(5418), - [sym_op_identifier] = ACTIONS(5416), - [anon_sym_PLUS] = ACTIONS(5418), - [anon_sym_DASH] = ACTIONS(5418), - [anon_sym_PLUS_DOT] = ACTIONS(5416), - [anon_sym_DASH_DOT] = ACTIONS(5416), - [anon_sym_PERCENT] = ACTIONS(5416), - [anon_sym_AMP_AMP] = ACTIONS(5416), - [anon_sym_TILDE] = ACTIONS(5416), - [aux_sym_prefix_op_token1] = ACTIONS(5416), - [sym_int] = ACTIONS(5418), - [sym_xint] = ACTIONS(5416), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), [anon_sym_LPAREN_STAR] = ACTIONS(5), [anon_sym_SLASH_SLASH] = ACTIONS(7), [anon_sym_POUNDnowarn] = ACTIONS(9), [anon_sym_POUNDr] = ACTIONS(11), [anon_sym_POUNDload] = ACTIONS(13), [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5416), }, [3159] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5869), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3159), [sym_block_comment] = STATE(3159), [sym_line_comment] = STATE(3159), [sym_compiler_directive_decl] = STATE(3159), [sym_fsi_directive_decl] = STATE(3159), [sym_preproc_line] = STATE(3159), - [sym_identifier] = ACTIONS(5541), - [anon_sym_return] = ACTIONS(5541), - [anon_sym_do] = ACTIONS(5541), - [anon_sym_let] = ACTIONS(5541), - [anon_sym_let_BANG] = ACTIONS(5543), - [anon_sym_LPAREN] = ACTIONS(5541), - [anon_sym_null] = ACTIONS(5541), - [anon_sym_AMP] = ACTIONS(5541), - [anon_sym_LBRACK] = ACTIONS(5541), - [anon_sym_LBRACK_PIPE] = ACTIONS(5543), - [anon_sym_LBRACE] = ACTIONS(5541), - [anon_sym_LBRACE_PIPE] = ACTIONS(5543), - [anon_sym_new] = ACTIONS(5541), - [anon_sym_return_BANG] = ACTIONS(5543), - [anon_sym_yield] = ACTIONS(5541), - [anon_sym_yield_BANG] = ACTIONS(5543), - [anon_sym_lazy] = ACTIONS(5541), - [anon_sym_assert] = ACTIONS(5541), - [anon_sym_upcast] = ACTIONS(5541), - [anon_sym_downcast] = ACTIONS(5541), - [anon_sym_LT_AT] = ACTIONS(5541), - [anon_sym_LT_AT_AT] = ACTIONS(5543), - [anon_sym_for] = ACTIONS(5541), - [anon_sym_while] = ACTIONS(5541), - [anon_sym_if] = ACTIONS(5541), - [anon_sym_fun] = ACTIONS(5541), - [anon_sym_try] = ACTIONS(5541), - [anon_sym_match] = ACTIONS(5541), - [anon_sym_match_BANG] = ACTIONS(5543), - [anon_sym_function] = ACTIONS(5541), - [anon_sym_use] = ACTIONS(5541), - [anon_sym_use_BANG] = ACTIONS(5543), - [anon_sym_do_BANG] = ACTIONS(5543), - [anon_sym_begin] = ACTIONS(5541), - [aux_sym_char_token1] = ACTIONS(5543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5541), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_AT_DQUOTE] = ACTIONS(5543), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5543), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5543), - [sym_bool] = ACTIONS(5541), - [sym_unit] = ACTIONS(5543), - [anon_sym_LPAREN_PIPE] = ACTIONS(5541), - [sym_op_identifier] = ACTIONS(5543), - [anon_sym_PLUS] = ACTIONS(5541), - [anon_sym_DASH] = ACTIONS(5541), - [anon_sym_PLUS_DOT] = ACTIONS(5543), - [anon_sym_DASH_DOT] = ACTIONS(5543), - [anon_sym_PERCENT] = ACTIONS(5543), - [anon_sym_AMP_AMP] = ACTIONS(5543), - [anon_sym_TILDE] = ACTIONS(5543), - [aux_sym_prefix_op_token1] = ACTIONS(5543), - [sym_int] = ACTIONS(5541), - [sym_xint] = ACTIONS(5543), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5543), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3160] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5788), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3160), [sym_block_comment] = STATE(3160), [sym_line_comment] = STATE(3160), [sym_compiler_directive_decl] = STATE(3160), [sym_fsi_directive_decl] = STATE(3160), [sym_preproc_line] = STATE(3160), - [sym_identifier] = ACTIONS(5549), - [anon_sym_return] = ACTIONS(5549), - [anon_sym_do] = ACTIONS(5549), - [anon_sym_let] = ACTIONS(5549), - [anon_sym_let_BANG] = ACTIONS(5551), - [anon_sym_LPAREN] = ACTIONS(5549), - [anon_sym_null] = ACTIONS(5549), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_LBRACK_PIPE] = ACTIONS(5551), - [anon_sym_LBRACE] = ACTIONS(5549), - [anon_sym_LBRACE_PIPE] = ACTIONS(5551), - [anon_sym_new] = ACTIONS(5549), - [anon_sym_return_BANG] = ACTIONS(5551), - [anon_sym_yield] = ACTIONS(5549), - [anon_sym_yield_BANG] = ACTIONS(5551), - [anon_sym_lazy] = ACTIONS(5549), - [anon_sym_assert] = ACTIONS(5549), - [anon_sym_upcast] = ACTIONS(5549), - [anon_sym_downcast] = ACTIONS(5549), - [anon_sym_LT_AT] = ACTIONS(5549), - [anon_sym_LT_AT_AT] = ACTIONS(5551), - [anon_sym_for] = ACTIONS(5549), - [anon_sym_while] = ACTIONS(5549), - [anon_sym_if] = ACTIONS(5549), - [anon_sym_fun] = ACTIONS(5549), - [anon_sym_try] = ACTIONS(5549), - [anon_sym_match] = ACTIONS(5549), - [anon_sym_match_BANG] = ACTIONS(5551), - [anon_sym_function] = ACTIONS(5549), - [anon_sym_use] = ACTIONS(5549), - [anon_sym_use_BANG] = ACTIONS(5551), - [anon_sym_do_BANG] = ACTIONS(5551), - [anon_sym_begin] = ACTIONS(5549), - [aux_sym_char_token1] = ACTIONS(5551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5549), - [anon_sym_DQUOTE] = ACTIONS(5549), - [anon_sym_AT_DQUOTE] = ACTIONS(5551), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5551), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5551), - [sym_bool] = ACTIONS(5549), - [sym_unit] = ACTIONS(5551), - [anon_sym_LPAREN_PIPE] = ACTIONS(5549), - [sym_op_identifier] = ACTIONS(5551), - [anon_sym_PLUS] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_PLUS_DOT] = ACTIONS(5551), - [anon_sym_DASH_DOT] = ACTIONS(5551), - [anon_sym_PERCENT] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [aux_sym_prefix_op_token1] = ACTIONS(5551), - [sym_int] = ACTIONS(5549), - [sym_xint] = ACTIONS(5551), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5551), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, [3161] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5786), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), [sym_xml_doc] = STATE(3161), [sym_block_comment] = STATE(3161), [sym_line_comment] = STATE(3161), [sym_compiler_directive_decl] = STATE(3161), [sym_fsi_directive_decl] = STATE(3161), [sym_preproc_line] = STATE(3161), - [sym_identifier] = ACTIONS(5549), - [anon_sym_return] = ACTIONS(5549), - [anon_sym_do] = ACTIONS(5549), - [anon_sym_let] = ACTIONS(5549), - [anon_sym_let_BANG] = ACTIONS(5551), - [anon_sym_LPAREN] = ACTIONS(5549), - [anon_sym_null] = ACTIONS(5549), - [anon_sym_AMP] = ACTIONS(5549), - [anon_sym_LBRACK] = ACTIONS(5549), - [anon_sym_LBRACK_PIPE] = ACTIONS(5551), - [anon_sym_LBRACE] = ACTIONS(5549), - [anon_sym_LBRACE_PIPE] = ACTIONS(5551), - [anon_sym_new] = ACTIONS(5549), - [anon_sym_return_BANG] = ACTIONS(5551), - [anon_sym_yield] = ACTIONS(5549), - [anon_sym_yield_BANG] = ACTIONS(5551), - [anon_sym_lazy] = ACTIONS(5549), - [anon_sym_assert] = ACTIONS(5549), - [anon_sym_upcast] = ACTIONS(5549), - [anon_sym_downcast] = ACTIONS(5549), - [anon_sym_LT_AT] = ACTIONS(5549), - [anon_sym_LT_AT_AT] = ACTIONS(5551), - [anon_sym_for] = ACTIONS(5549), - [anon_sym_while] = ACTIONS(5549), - [anon_sym_if] = ACTIONS(5549), - [anon_sym_fun] = ACTIONS(5549), - [anon_sym_try] = ACTIONS(5549), - [anon_sym_match] = ACTIONS(5549), - [anon_sym_match_BANG] = ACTIONS(5551), - [anon_sym_function] = ACTIONS(5549), - [anon_sym_use] = ACTIONS(5549), - [anon_sym_use_BANG] = ACTIONS(5551), - [anon_sym_do_BANG] = ACTIONS(5551), - [anon_sym_begin] = ACTIONS(5549), - [aux_sym_char_token1] = ACTIONS(5551), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5549), - [anon_sym_DQUOTE] = ACTIONS(5549), - [anon_sym_AT_DQUOTE] = ACTIONS(5551), - [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5551), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5551), - [sym_bool] = ACTIONS(5549), - [sym_unit] = ACTIONS(5551), - [anon_sym_LPAREN_PIPE] = ACTIONS(5549), - [sym_op_identifier] = ACTIONS(5551), - [anon_sym_PLUS] = ACTIONS(5549), - [anon_sym_DASH] = ACTIONS(5549), - [anon_sym_PLUS_DOT] = ACTIONS(5551), - [anon_sym_DASH_DOT] = ACTIONS(5551), - [anon_sym_PERCENT] = ACTIONS(5551), - [anon_sym_AMP_AMP] = ACTIONS(5551), - [anon_sym_TILDE] = ACTIONS(5551), - [aux_sym_prefix_op_token1] = ACTIONS(5551), - [sym_int] = ACTIONS(5549), - [sym_xint] = ACTIONS(5551), - [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(111), - [anon_sym_LPAREN_STAR] = ACTIONS(5), - [anon_sym_SLASH_SLASH] = ACTIONS(7), - [anon_sym_POUNDnowarn] = ACTIONS(9), - [anon_sym_POUNDr] = ACTIONS(11), - [anon_sym_POUNDload] = ACTIONS(13), - [aux_sym_preproc_line_token1] = ACTIONS(13), - [anon_sym_POUNDif] = ACTIONS(5551), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3162] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5745), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3162), + [sym_block_comment] = STATE(3162), + [sym_line_comment] = STATE(3162), + [sym_compiler_directive_decl] = STATE(3162), + [sym_fsi_directive_decl] = STATE(3162), + [sym_preproc_line] = STATE(3162), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3163] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5862), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3163), + [sym_block_comment] = STATE(3163), + [sym_line_comment] = STATE(3163), + [sym_compiler_directive_decl] = STATE(3163), + [sym_fsi_directive_decl] = STATE(3163), + [sym_preproc_line] = STATE(3163), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5458), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3164] = { + [sym_xml_doc] = STATE(3164), + [sym_block_comment] = STATE(3164), + [sym_line_comment] = STATE(3164), + [sym_compiler_directive_decl] = STATE(3164), + [sym_fsi_directive_decl] = STATE(3164), + [sym_preproc_line] = STATE(3164), + [ts_builtin_sym_end] = ACTIONS(5506), + [sym_identifier] = ACTIONS(5508), + [anon_sym_namespace] = ACTIONS(5508), + [anon_sym_module] = ACTIONS(5508), + [anon_sym_open] = ACTIONS(5508), + [anon_sym_LBRACK_LT] = ACTIONS(5506), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_do] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_let_BANG] = ACTIONS(5506), + [aux_sym_access_modifier_token1] = ACTIONS(5506), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LBRACK_PIPE] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_LT_AT] = ACTIONS(5508), + [anon_sym_LT_AT_AT] = ACTIONS(5506), + [anon_sym_LBRACE_PIPE] = ACTIONS(5506), + [anon_sym_new] = ACTIONS(5508), + [anon_sym_return_BANG] = ACTIONS(5506), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_yield_BANG] = ACTIONS(5506), + [anon_sym_lazy] = ACTIONS(5508), + [anon_sym_assert] = ACTIONS(5508), + [anon_sym_upcast] = ACTIONS(5508), + [anon_sym_downcast] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_fun] = ACTIONS(5508), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_match_BANG] = ACTIONS(5506), + [anon_sym_function] = ACTIONS(5508), + [anon_sym_use] = ACTIONS(5508), + [anon_sym_use_BANG] = ACTIONS(5506), + [anon_sym_do_BANG] = ACTIONS(5506), + [anon_sym_begin] = ACTIONS(5508), + [anon_sym_default] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5508), + [anon_sym_member] = ACTIONS(5508), + [anon_sym_abstract] = ACTIONS(5508), + [anon_sym_override] = ACTIONS(5508), + [anon_sym_val] = ACTIONS(5508), + [aux_sym_char_token1] = ACTIONS(5506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5508), + [anon_sym_DQUOTE] = ACTIONS(5508), + [anon_sym_AT_DQUOTE] = ACTIONS(5506), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5506), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5506), + [sym_bool] = ACTIONS(5508), + [sym_unit] = ACTIONS(5506), + [anon_sym_LPAREN_PIPE] = ACTIONS(5508), + [sym_op_identifier] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_PLUS_DOT] = ACTIONS(5506), + [anon_sym_DASH_DOT] = ACTIONS(5506), + [anon_sym_PERCENT] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_TILDE] = ACTIONS(5506), + [aux_sym_prefix_op_token1] = ACTIONS(5506), + [sym_int] = ACTIONS(5508), + [sym_xint] = ACTIONS(5506), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5506), + [anon_sym_POUNDload] = ACTIONS(5506), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5506), + }, + [3165] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5841), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3165), + [sym_block_comment] = STATE(3165), + [sym_line_comment] = STATE(3165), + [sym_compiler_directive_decl] = STATE(3165), + [sym_fsi_directive_decl] = STATE(3165), + [sym_preproc_line] = STATE(3165), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3166] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5826), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3166), + [sym_block_comment] = STATE(3166), + [sym_line_comment] = STATE(3166), + [sym_compiler_directive_decl] = STATE(3166), + [sym_fsi_directive_decl] = STATE(3166), + [sym_preproc_line] = STATE(3166), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3167] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5782), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3167), + [sym_block_comment] = STATE(3167), + [sym_line_comment] = STATE(3167), + [sym_compiler_directive_decl] = STATE(3167), + [sym_fsi_directive_decl] = STATE(3167), + [sym_preproc_line] = STATE(3167), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3168] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5847), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3168), + [sym_block_comment] = STATE(3168), + [sym_line_comment] = STATE(3168), + [sym_compiler_directive_decl] = STATE(3168), + [sym_fsi_directive_decl] = STATE(3168), + [sym_preproc_line] = STATE(3168), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(5510), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3169] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5827), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3169), + [sym_block_comment] = STATE(3169), + [sym_line_comment] = STATE(3169), + [sym_compiler_directive_decl] = STATE(3169), + [sym_fsi_directive_decl] = STATE(3169), + [sym_preproc_line] = STATE(3169), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3170] = { + [sym_attributes] = STATE(3122), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5781), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2154), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3798), + [sym_active_pattern] = STATE(3820), + [sym__identifier_or_op] = STATE(3906), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3170), + [sym_block_comment] = STATE(3170), + [sym_line_comment] = STATE(3170), + [sym_compiler_directive_decl] = STATE(3170), + [sym_fsi_directive_decl] = STATE(3170), + [sym_preproc_line] = STATE(3170), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_COLON_QMARK] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4853), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4555), + [sym_op_identifier] = ACTIONS(4557), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3171] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5878), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3171), + [sym_block_comment] = STATE(3171), + [sym_line_comment] = STATE(3171), + [sym_compiler_directive_decl] = STATE(3171), + [sym_fsi_directive_decl] = STATE(3171), + [sym_preproc_line] = STATE(3171), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3172] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5343), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), + [sym_xml_doc] = STATE(3172), + [sym_block_comment] = STATE(3172), + [sym_line_comment] = STATE(3172), + [sym_compiler_directive_decl] = STATE(3172), + [sym_fsi_directive_decl] = STATE(3172), + [sym_preproc_line] = STATE(3172), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3173] = { + [sym_xml_doc] = STATE(3173), + [sym_block_comment] = STATE(3173), + [sym_line_comment] = STATE(3173), + [sym_compiler_directive_decl] = STATE(3173), + [sym_fsi_directive_decl] = STATE(3173), + [sym_preproc_line] = STATE(3173), + [ts_builtin_sym_end] = ACTIONS(5077), + [sym_identifier] = ACTIONS(5079), + [anon_sym_namespace] = ACTIONS(5079), + [anon_sym_module] = ACTIONS(5079), + [anon_sym_open] = ACTIONS(5079), + [anon_sym_LBRACK_LT] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5079), + [anon_sym_type] = ACTIONS(5079), + [anon_sym_do] = ACTIONS(5079), + [anon_sym_and] = ACTIONS(5079), + [anon_sym_let] = ACTIONS(5079), + [anon_sym_let_BANG] = ACTIONS(5077), + [aux_sym_access_modifier_token1] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_LBRACK_PIPE] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_LT_AT] = ACTIONS(5079), + [anon_sym_LT_AT_AT] = ACTIONS(5077), + [anon_sym_LBRACE_PIPE] = ACTIONS(5077), + [anon_sym_new] = ACTIONS(5079), + [anon_sym_return_BANG] = ACTIONS(5077), + [anon_sym_yield] = ACTIONS(5079), + [anon_sym_yield_BANG] = ACTIONS(5077), + [anon_sym_lazy] = ACTIONS(5079), + [anon_sym_assert] = ACTIONS(5079), + [anon_sym_upcast] = ACTIONS(5079), + [anon_sym_downcast] = ACTIONS(5079), + [anon_sym_for] = ACTIONS(5079), + [anon_sym_while] = ACTIONS(5079), + [anon_sym_if] = ACTIONS(5079), + [anon_sym_fun] = ACTIONS(5079), + [anon_sym_try] = ACTIONS(5079), + [anon_sym_match] = ACTIONS(5079), + [anon_sym_match_BANG] = ACTIONS(5077), + [anon_sym_function] = ACTIONS(5079), + [anon_sym_use] = ACTIONS(5079), + [anon_sym_use_BANG] = ACTIONS(5077), + [anon_sym_do_BANG] = ACTIONS(5077), + [anon_sym_begin] = ACTIONS(5079), + [anon_sym_default] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(5079), + [anon_sym_member] = ACTIONS(5079), + [anon_sym_abstract] = ACTIONS(5079), + [anon_sym_override] = ACTIONS(5079), + [anon_sym_val] = ACTIONS(5079), + [aux_sym_char_token1] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_AT_DQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [sym_bool] = ACTIONS(5079), + [sym_unit] = ACTIONS(5077), + [anon_sym_LPAREN_PIPE] = ACTIONS(5079), + [sym_op_identifier] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_PLUS_DOT] = ACTIONS(5077), + [anon_sym_DASH_DOT] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_AMP_AMP] = ACTIONS(5077), + [anon_sym_TILDE] = ACTIONS(5077), + [aux_sym_prefix_op_token1] = ACTIONS(5077), + [sym_int] = ACTIONS(5079), + [sym_xint] = ACTIONS(5077), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5077), + [anon_sym_POUNDload] = ACTIONS(5077), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5077), + }, + [3174] = { + [sym_attributes] = STATE(3065), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5469), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(1895), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3174), + [sym_block_comment] = STATE(3174), + [sym_line_comment] = STATE(3174), + [sym_compiler_directive_decl] = STATE(3174), + [sym_fsi_directive_decl] = STATE(3174), + [sym_preproc_line] = STATE(3174), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4647), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4651), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3175] = { + [sym_xml_doc] = STATE(3175), + [sym_block_comment] = STATE(3175), + [sym_line_comment] = STATE(3175), + [sym_compiler_directive_decl] = STATE(3175), + [sym_fsi_directive_decl] = STATE(3175), + [sym_preproc_line] = STATE(3175), + [sym_identifier] = ACTIONS(5336), + [anon_sym_module] = ACTIONS(5336), + [anon_sym_open] = ACTIONS(5336), + [anon_sym_LBRACK_LT] = ACTIONS(5334), + [anon_sym_return] = ACTIONS(5336), + [anon_sym_type] = ACTIONS(5336), + [anon_sym_do] = ACTIONS(5336), + [anon_sym_and] = ACTIONS(5336), + [anon_sym_let] = ACTIONS(5336), + [anon_sym_let_BANG] = ACTIONS(5334), + [aux_sym_access_modifier_token1] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5336), + [anon_sym_null] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(5336), + [anon_sym_LBRACK] = ACTIONS(5336), + [anon_sym_LBRACK_PIPE] = ACTIONS(5334), + [anon_sym_LBRACE] = ACTIONS(5336), + [anon_sym_LT_AT] = ACTIONS(5336), + [anon_sym_LT_AT_AT] = ACTIONS(5334), + [anon_sym_LBRACE_PIPE] = ACTIONS(5334), + [anon_sym_with] = ACTIONS(5512), + [anon_sym_new] = ACTIONS(5336), + [anon_sym_return_BANG] = ACTIONS(5334), + [anon_sym_yield] = ACTIONS(5336), + [anon_sym_yield_BANG] = ACTIONS(5334), + [anon_sym_lazy] = ACTIONS(5336), + [anon_sym_assert] = ACTIONS(5336), + [anon_sym_upcast] = ACTIONS(5336), + [anon_sym_downcast] = ACTIONS(5336), + [anon_sym_for] = ACTIONS(5336), + [anon_sym_while] = ACTIONS(5336), + [anon_sym_if] = ACTIONS(5336), + [anon_sym_fun] = ACTIONS(5336), + [anon_sym_try] = ACTIONS(5336), + [anon_sym_match] = ACTIONS(5336), + [anon_sym_match_BANG] = ACTIONS(5334), + [anon_sym_function] = ACTIONS(5336), + [anon_sym_use] = ACTIONS(5336), + [anon_sym_use_BANG] = ACTIONS(5334), + [anon_sym_do_BANG] = ACTIONS(5334), + [anon_sym_begin] = ACTIONS(5336), + [anon_sym_default] = ACTIONS(5336), + [anon_sym_static] = ACTIONS(5336), + [anon_sym_member] = ACTIONS(5336), + [anon_sym_abstract] = ACTIONS(5336), + [anon_sym_override] = ACTIONS(5336), + [anon_sym_val] = ACTIONS(5336), + [aux_sym_char_token1] = ACTIONS(5334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5336), + [anon_sym_DQUOTE] = ACTIONS(5336), + [anon_sym_AT_DQUOTE] = ACTIONS(5334), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5334), + [sym_bool] = ACTIONS(5336), + [sym_unit] = ACTIONS(5334), + [anon_sym_LPAREN_PIPE] = ACTIONS(5336), + [sym_op_identifier] = ACTIONS(5334), + [anon_sym_PLUS] = ACTIONS(5336), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_PLUS_DOT] = ACTIONS(5334), + [anon_sym_DASH_DOT] = ACTIONS(5334), + [anon_sym_PERCENT] = ACTIONS(5334), + [anon_sym_AMP_AMP] = ACTIONS(5334), + [anon_sym_TILDE] = ACTIONS(5334), + [aux_sym_prefix_op_token1] = ACTIONS(5334), + [sym_int] = ACTIONS(5336), + [sym_xint] = ACTIONS(5334), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5334), + [anon_sym_POUNDload] = ACTIONS(5334), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5334), + [sym__dedent] = ACTIONS(5334), + }, + [3176] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5860), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3176), + [sym_block_comment] = STATE(3176), + [sym_line_comment] = STATE(3176), + [sym_compiler_directive_decl] = STATE(3176), + [sym_fsi_directive_decl] = STATE(3176), + [sym_preproc_line] = STATE(3176), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3177] = { + [sym_attributes] = STATE(3162), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5722), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2284), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3177), + [sym_block_comment] = STATE(3177), + [sym_line_comment] = STATE(3177), + [sym_compiler_directive_decl] = STATE(3177), + [sym_fsi_directive_decl] = STATE(3177), + [sym_preproc_line] = STATE(3177), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4923), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4925), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3178] = { + [sym_attributes] = STATE(3165), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5849), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2736), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3912), + [sym_active_pattern] = STATE(3968), + [sym__identifier_or_op] = STATE(3971), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3178), + [sym_block_comment] = STATE(3178), + [sym_line_comment] = STATE(3178), + [sym_compiler_directive_decl] = STATE(3178), + [sym_fsi_directive_decl] = STATE(3178), + [sym_preproc_line] = STATE(3178), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4788), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(5003), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4814), + [sym_op_identifier] = ACTIONS(4816), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3179] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5832), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3179), + [sym_block_comment] = STATE(3179), + [sym_line_comment] = STATE(3179), + [sym_compiler_directive_decl] = STATE(3179), + [sym_fsi_directive_decl] = STATE(3179), + [sym_preproc_line] = STATE(3179), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3180] = { + [sym_xml_doc] = STATE(3180), + [sym_block_comment] = STATE(3180), + [sym_line_comment] = STATE(3180), + [sym_compiler_directive_decl] = STATE(3180), + [sym_fsi_directive_decl] = STATE(3180), + [sym_preproc_line] = STATE(3180), + [sym_identifier] = ACTIONS(5356), + [anon_sym_module] = ACTIONS(5356), + [anon_sym_open] = ACTIONS(5356), + [anon_sym_LBRACK_LT] = ACTIONS(5354), + [anon_sym_return] = ACTIONS(5356), + [anon_sym_type] = ACTIONS(5356), + [anon_sym_do] = ACTIONS(5356), + [anon_sym_and] = ACTIONS(5356), + [anon_sym_let] = ACTIONS(5356), + [anon_sym_let_BANG] = ACTIONS(5354), + [aux_sym_access_modifier_token1] = ACTIONS(5354), + [anon_sym_LPAREN] = ACTIONS(5356), + [anon_sym_null] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(5356), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_LBRACK_PIPE] = ACTIONS(5354), + [anon_sym_LBRACE] = ACTIONS(5356), + [anon_sym_LT_AT] = ACTIONS(5356), + [anon_sym_LT_AT_AT] = ACTIONS(5354), + [anon_sym_LBRACE_PIPE] = ACTIONS(5354), + [anon_sym_with] = ACTIONS(5514), + [anon_sym_new] = ACTIONS(5356), + [anon_sym_return_BANG] = ACTIONS(5354), + [anon_sym_yield] = ACTIONS(5356), + [anon_sym_yield_BANG] = ACTIONS(5354), + [anon_sym_lazy] = ACTIONS(5356), + [anon_sym_assert] = ACTIONS(5356), + [anon_sym_upcast] = ACTIONS(5356), + [anon_sym_downcast] = ACTIONS(5356), + [anon_sym_for] = ACTIONS(5356), + [anon_sym_while] = ACTIONS(5356), + [anon_sym_if] = ACTIONS(5356), + [anon_sym_fun] = ACTIONS(5356), + [anon_sym_try] = ACTIONS(5356), + [anon_sym_match] = ACTIONS(5356), + [anon_sym_match_BANG] = ACTIONS(5354), + [anon_sym_function] = ACTIONS(5356), + [anon_sym_use] = ACTIONS(5356), + [anon_sym_use_BANG] = ACTIONS(5354), + [anon_sym_do_BANG] = ACTIONS(5354), + [anon_sym_begin] = ACTIONS(5356), + [anon_sym_default] = ACTIONS(5356), + [anon_sym_static] = ACTIONS(5356), + [anon_sym_member] = ACTIONS(5356), + [anon_sym_abstract] = ACTIONS(5356), + [anon_sym_override] = ACTIONS(5356), + [anon_sym_val] = ACTIONS(5356), + [aux_sym_char_token1] = ACTIONS(5354), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5356), + [anon_sym_AT_DQUOTE] = ACTIONS(5354), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5354), + [sym_bool] = ACTIONS(5356), + [sym_unit] = ACTIONS(5354), + [anon_sym_LPAREN_PIPE] = ACTIONS(5356), + [sym_op_identifier] = ACTIONS(5354), + [anon_sym_PLUS] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_PLUS_DOT] = ACTIONS(5354), + [anon_sym_DASH_DOT] = ACTIONS(5354), + [anon_sym_PERCENT] = ACTIONS(5354), + [anon_sym_AMP_AMP] = ACTIONS(5354), + [anon_sym_TILDE] = ACTIONS(5354), + [aux_sym_prefix_op_token1] = ACTIONS(5354), + [sym_int] = ACTIONS(5356), + [sym_xint] = ACTIONS(5354), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5354), + [anon_sym_POUNDload] = ACTIONS(5354), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5354), + [sym__dedent] = ACTIONS(5354), + }, + [3181] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3938), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), + [sym_xml_doc] = STATE(3181), + [sym_block_comment] = STATE(3181), + [sym_line_comment] = STATE(3181), + [sym_compiler_directive_decl] = STATE(3181), + [sym_fsi_directive_decl] = STATE(3181), + [sym_preproc_line] = STATE(3181), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3182] = { + [sym_attributes] = STATE(3087), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5717), + [sym__pattern] = STATE(5529), + [sym_optional_pattern] = STATE(5717), + [sym_type_check_pattern] = STATE(5717), + [sym_attribute_pattern] = STATE(5717), + [sym_paren_pattern] = STATE(5717), + [sym_as_pattern] = STATE(5717), + [sym_cons_pattern] = STATE(5717), + [sym_disjunct_pattern] = STATE(5717), + [sym_conjunct_pattern] = STATE(5717), + [sym_typed_pattern] = STATE(5717), + [sym_list_pattern] = STATE(5717), + [sym_array_pattern] = STATE(5717), + [sym_record_pattern] = STATE(5717), + [sym_identifier_pattern] = STATE(5717), + [sym_long_identifier_or_op] = STATE(1820), + [sym_char] = STATE(5742), + [sym_format_string] = STATE(5744), + [sym__string_literal] = STATE(5744), + [sym_string] = STATE(5742), + [sym_verbatim_string] = STATE(5742), + [sym_bytearray] = STATE(5742), + [sym_verbatim_bytearray] = STATE(5742), + [sym_format_triple_quoted_string] = STATE(5757), + [sym_triple_quoted_string] = STATE(5742), + [sym_const] = STATE(5717), + [sym_long_identifier] = STATE(3763), + [sym_active_pattern] = STATE(3905), + [sym__identifier_or_op] = STATE(3853), + [sym_sbyte] = STATE(5742), + [sym_byte] = STATE(5742), + [sym_int16] = STATE(5742), + [sym_uint16] = STATE(5742), + [sym_int32] = STATE(5742), + [sym_uint32] = STATE(5742), + [sym_nativeint] = STATE(5742), + [sym_unativeint] = STATE(5742), + [sym_int64] = STATE(5742), + [sym_uint64] = STATE(5742), + [sym_ieee32] = STATE(5742), + [sym_ieee64] = STATE(5742), + [sym_bignum] = STATE(5742), + [sym_decimal] = STATE(5742), + [sym_float] = STATE(5398), + [sym_xml_doc] = STATE(3182), + [sym_block_comment] = STATE(3182), + [sym_line_comment] = STATE(3182), + [sym_compiler_directive_decl] = STATE(3182), + [sym_fsi_directive_decl] = STATE(3182), + [sym_preproc_line] = STATE(3182), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4569), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_COLON_QMARK] = ACTIONS(4573), + [anon_sym_LBRACK] = ACTIONS(4575), + [anon_sym_LBRACK_PIPE] = ACTIONS(4577), + [anon_sym_LBRACE] = ACTIONS(4579), + [aux_sym_char_token1] = ACTIONS(4857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4861), + [anon_sym_AT_DQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4865), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4867), + [sym_bool] = ACTIONS(4869), + [sym_unit] = ACTIONS(4871), + [anon_sym_LPAREN_PIPE] = ACTIONS(4597), + [sym_op_identifier] = ACTIONS(4599), + [sym_int] = ACTIONS(4873), + [sym_xint] = ACTIONS(4875), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3183] = { + [sym_xml_doc] = STATE(3183), + [sym_block_comment] = STATE(3183), + [sym_line_comment] = STATE(3183), + [sym_compiler_directive_decl] = STATE(3183), + [sym_fsi_directive_decl] = STATE(3183), + [sym_preproc_line] = STATE(3183), + [sym_identifier] = ACTIONS(5374), + [anon_sym_module] = ACTIONS(5374), + [anon_sym_open] = ACTIONS(5374), + [anon_sym_LBRACK_LT] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_do] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_let] = ACTIONS(5374), + [anon_sym_let_BANG] = ACTIONS(5372), + [aux_sym_access_modifier_token1] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5516), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_LBRACK_PIPE] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_LT_AT] = ACTIONS(5374), + [anon_sym_LT_AT_AT] = ACTIONS(5372), + [anon_sym_LBRACE_PIPE] = ACTIONS(5372), + [anon_sym_new] = ACTIONS(5374), + [anon_sym_return_BANG] = ACTIONS(5372), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_yield_BANG] = ACTIONS(5372), + [anon_sym_lazy] = ACTIONS(5374), + [anon_sym_assert] = ACTIONS(5374), + [anon_sym_upcast] = ACTIONS(5374), + [anon_sym_downcast] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_match_BANG] = ACTIONS(5372), + [anon_sym_function] = ACTIONS(5374), + [anon_sym_use] = ACTIONS(5374), + [anon_sym_use_BANG] = ACTIONS(5372), + [anon_sym_do_BANG] = ACTIONS(5372), + [anon_sym_begin] = ACTIONS(5374), + [anon_sym_default] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_member] = ACTIONS(5374), + [anon_sym_abstract] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + [anon_sym_val] = ACTIONS(5374), + [aux_sym_char_token1] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5374), + [anon_sym_DQUOTE] = ACTIONS(5374), + [anon_sym_AT_DQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5372), + [anon_sym_LPAREN_PIPE] = ACTIONS(5374), + [sym_op_identifier] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS_DOT] = ACTIONS(5372), + [anon_sym_DASH_DOT] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5372), + [anon_sym_AMP_AMP] = ACTIONS(5372), + [anon_sym_TILDE] = ACTIONS(5372), + [aux_sym_prefix_op_token1] = ACTIONS(5372), + [sym_int] = ACTIONS(5374), + [sym_xint] = ACTIONS(5372), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5372), + [anon_sym_POUNDload] = ACTIONS(5372), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5372), + [sym__dedent] = ACTIONS(5372), + }, + [3184] = { + [sym_xml_doc] = STATE(3184), + [sym_block_comment] = STATE(3184), + [sym_line_comment] = STATE(3184), + [sym_compiler_directive_decl] = STATE(3184), + [sym_fsi_directive_decl] = STATE(3184), + [sym_preproc_line] = STATE(3184), + [sym_identifier] = ACTIONS(5374), + [anon_sym_module] = ACTIONS(5374), + [anon_sym_open] = ACTIONS(5374), + [anon_sym_LBRACK_LT] = ACTIONS(5372), + [anon_sym_return] = ACTIONS(5374), + [anon_sym_type] = ACTIONS(5374), + [anon_sym_do] = ACTIONS(5374), + [anon_sym_and] = ACTIONS(5374), + [anon_sym_let] = ACTIONS(5374), + [anon_sym_let_BANG] = ACTIONS(5372), + [aux_sym_access_modifier_token1] = ACTIONS(5372), + [anon_sym_LPAREN] = ACTIONS(5374), + [anon_sym_COMMA] = ACTIONS(5518), + [anon_sym_null] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(5374), + [anon_sym_LBRACK] = ACTIONS(5374), + [anon_sym_LBRACK_PIPE] = ACTIONS(5372), + [anon_sym_LBRACE] = ACTIONS(5374), + [anon_sym_LT_AT] = ACTIONS(5374), + [anon_sym_LT_AT_AT] = ACTIONS(5372), + [anon_sym_LBRACE_PIPE] = ACTIONS(5372), + [anon_sym_new] = ACTIONS(5374), + [anon_sym_return_BANG] = ACTIONS(5372), + [anon_sym_yield] = ACTIONS(5374), + [anon_sym_yield_BANG] = ACTIONS(5372), + [anon_sym_lazy] = ACTIONS(5374), + [anon_sym_assert] = ACTIONS(5374), + [anon_sym_upcast] = ACTIONS(5374), + [anon_sym_downcast] = ACTIONS(5374), + [anon_sym_for] = ACTIONS(5374), + [anon_sym_while] = ACTIONS(5374), + [anon_sym_if] = ACTIONS(5374), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_try] = ACTIONS(5374), + [anon_sym_match] = ACTIONS(5374), + [anon_sym_match_BANG] = ACTIONS(5372), + [anon_sym_function] = ACTIONS(5374), + [anon_sym_use] = ACTIONS(5374), + [anon_sym_use_BANG] = ACTIONS(5372), + [anon_sym_do_BANG] = ACTIONS(5372), + [anon_sym_begin] = ACTIONS(5374), + [anon_sym_default] = ACTIONS(5374), + [anon_sym_static] = ACTIONS(5374), + [anon_sym_member] = ACTIONS(5374), + [anon_sym_abstract] = ACTIONS(5374), + [anon_sym_override] = ACTIONS(5374), + [anon_sym_val] = ACTIONS(5374), + [aux_sym_char_token1] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5374), + [anon_sym_DQUOTE] = ACTIONS(5374), + [anon_sym_AT_DQUOTE] = ACTIONS(5372), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5372), + [sym_bool] = ACTIONS(5374), + [sym_unit] = ACTIONS(5372), + [anon_sym_LPAREN_PIPE] = ACTIONS(5374), + [sym_op_identifier] = ACTIONS(5372), + [anon_sym_PLUS] = ACTIONS(5374), + [anon_sym_DASH] = ACTIONS(5374), + [anon_sym_PLUS_DOT] = ACTIONS(5372), + [anon_sym_DASH_DOT] = ACTIONS(5372), + [anon_sym_PERCENT] = ACTIONS(5372), + [anon_sym_AMP_AMP] = ACTIONS(5372), + [anon_sym_TILDE] = ACTIONS(5372), + [aux_sym_prefix_op_token1] = ACTIONS(5372), + [sym_int] = ACTIONS(5374), + [sym_xint] = ACTIONS(5372), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5372), + [anon_sym_POUNDload] = ACTIONS(5372), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5372), + [sym__dedent] = ACTIONS(5372), + }, + [3185] = { + [sym_attributes] = STATE(3185), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(3962), + [sym__pattern] = STATE(3932), + [sym_optional_pattern] = STATE(3962), + [sym_type_check_pattern] = STATE(3962), + [sym_attribute_pattern] = STATE(3962), + [sym_paren_pattern] = STATE(3962), + [sym_as_pattern] = STATE(3962), + [sym_cons_pattern] = STATE(3962), + [sym_disjunct_pattern] = STATE(3962), + [sym_conjunct_pattern] = STATE(3962), + [sym_typed_pattern] = STATE(3962), + [sym_list_pattern] = STATE(3962), + [sym_array_pattern] = STATE(3962), + [sym_record_pattern] = STATE(3962), + [sym_identifier_pattern] = STATE(3962), + [sym_long_identifier_or_op] = STATE(2698), + [sym_char] = STATE(3725), + [sym_format_string] = STATE(3740), + [sym__string_literal] = STATE(3740), + [sym_string] = STATE(3725), + [sym_verbatim_string] = STATE(3725), + [sym_bytearray] = STATE(3725), + [sym_verbatim_bytearray] = STATE(3725), + [sym_format_triple_quoted_string] = STATE(3687), + [sym_triple_quoted_string] = STATE(3725), + [sym_const] = STATE(3962), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(3725), + [sym_byte] = STATE(3725), + [sym_int16] = STATE(3725), + [sym_uint16] = STATE(3725), + [sym_int32] = STATE(3725), + [sym_uint32] = STATE(3725), + [sym_nativeint] = STATE(3725), + [sym_unativeint] = STATE(3725), + [sym_int64] = STATE(3725), + [sym_uint64] = STATE(3725), + [sym_ieee32] = STATE(3725), + [sym_ieee64] = STATE(3725), + [sym_bignum] = STATE(3725), + [sym_decimal] = STATE(3725), + [sym_float] = STATE(3624), + [sym_xml_doc] = STATE(3185), + [sym_block_comment] = STATE(3185), + [sym_line_comment] = STATE(3185), + [sym_compiler_directive_decl] = STATE(3185), + [sym_fsi_directive_decl] = STATE(3185), + [sym_preproc_line] = STATE(3185), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5011), + [anon_sym__] = ACTIONS(5013), + [anon_sym_QMARK] = ACTIONS(5015), + [anon_sym_COLON_QMARK] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACK_PIPE] = ACTIONS(5021), + [anon_sym_LBRACE] = ACTIONS(5023), + [aux_sym_char_token1] = ACTIONS(4653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(4657), + [anon_sym_AT_DQUOTE] = ACTIONS(4659), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4663), + [sym_bool] = ACTIONS(4665), + [sym_unit] = ACTIONS(4667), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4673), + [sym_xint] = ACTIONS(4675), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 33, + [3186] = { + [sym_xml_doc] = STATE(3186), + [sym_block_comment] = STATE(3186), + [sym_line_comment] = STATE(3186), + [sym_compiler_directive_decl] = STATE(3186), + [sym_fsi_directive_decl] = STATE(3186), + [sym_preproc_line] = STATE(3186), + [sym_identifier] = ACTIONS(5368), + [anon_sym_module] = ACTIONS(5368), + [anon_sym_open] = ACTIONS(5368), + [anon_sym_LBRACK_LT] = ACTIONS(5366), + [anon_sym_return] = ACTIONS(5368), + [anon_sym_type] = ACTIONS(5368), + [anon_sym_do] = ACTIONS(5368), + [anon_sym_and] = ACTIONS(5368), + [anon_sym_let] = ACTIONS(5368), + [anon_sym_let_BANG] = ACTIONS(5366), + [aux_sym_access_modifier_token1] = ACTIONS(5366), + [anon_sym_LPAREN] = ACTIONS(5368), + [anon_sym_null] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(5368), + [anon_sym_LBRACK] = ACTIONS(5368), + [anon_sym_LBRACK_PIPE] = ACTIONS(5366), + [anon_sym_LBRACE] = ACTIONS(5368), + [anon_sym_LT_AT] = ACTIONS(5368), + [anon_sym_LT_AT_AT] = ACTIONS(5366), + [anon_sym_LBRACE_PIPE] = ACTIONS(5366), + [anon_sym_with] = ACTIONS(5520), + [anon_sym_new] = ACTIONS(5368), + [anon_sym_return_BANG] = ACTIONS(5366), + [anon_sym_yield] = ACTIONS(5368), + [anon_sym_yield_BANG] = ACTIONS(5366), + [anon_sym_lazy] = ACTIONS(5368), + [anon_sym_assert] = ACTIONS(5368), + [anon_sym_upcast] = ACTIONS(5368), + [anon_sym_downcast] = ACTIONS(5368), + [anon_sym_for] = ACTIONS(5368), + [anon_sym_while] = ACTIONS(5368), + [anon_sym_if] = ACTIONS(5368), + [anon_sym_fun] = ACTIONS(5368), + [anon_sym_try] = ACTIONS(5368), + [anon_sym_match] = ACTIONS(5368), + [anon_sym_match_BANG] = ACTIONS(5366), + [anon_sym_function] = ACTIONS(5368), + [anon_sym_use] = ACTIONS(5368), + [anon_sym_use_BANG] = ACTIONS(5366), + [anon_sym_do_BANG] = ACTIONS(5366), + [anon_sym_begin] = ACTIONS(5368), + [anon_sym_default] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5368), + [anon_sym_member] = ACTIONS(5368), + [anon_sym_abstract] = ACTIONS(5368), + [anon_sym_override] = ACTIONS(5368), + [anon_sym_val] = ACTIONS(5368), + [aux_sym_char_token1] = ACTIONS(5366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5368), + [anon_sym_DQUOTE] = ACTIONS(5368), + [anon_sym_AT_DQUOTE] = ACTIONS(5366), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5366), + [sym_bool] = ACTIONS(5368), + [sym_unit] = ACTIONS(5366), + [anon_sym_LPAREN_PIPE] = ACTIONS(5368), + [sym_op_identifier] = ACTIONS(5366), + [anon_sym_PLUS] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_PLUS_DOT] = ACTIONS(5366), + [anon_sym_DASH_DOT] = ACTIONS(5366), + [anon_sym_PERCENT] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_TILDE] = ACTIONS(5366), + [aux_sym_prefix_op_token1] = ACTIONS(5366), + [sym_int] = ACTIONS(5368), + [sym_xint] = ACTIONS(5366), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5366), + [anon_sym_POUNDload] = ACTIONS(5366), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5366), + [sym__dedent] = ACTIONS(5366), + }, + [3187] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5867), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3187), + [sym_block_comment] = STATE(3187), + [sym_line_comment] = STATE(3187), + [sym_compiler_directive_decl] = STATE(3187), + [sym_fsi_directive_decl] = STATE(3187), + [sym_preproc_line] = STATE(3187), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3188] = { + [sym_xml_doc] = STATE(3188), + [sym_block_comment] = STATE(3188), + [sym_line_comment] = STATE(3188), + [sym_compiler_directive_decl] = STATE(3188), + [sym_fsi_directive_decl] = STATE(3188), + [sym_preproc_line] = STATE(3188), + [sym_identifier] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_open] = ACTIONS(3438), + [anon_sym_LBRACK_LT] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_and] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [aux_sym_access_modifier_token1] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_member] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_override] = ACTIONS(3438), + [anon_sym_val] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3440), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3440), + [anon_sym_DASH_DOT] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3440), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3440), + [anon_sym_POUNDload] = ACTIONS(3440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [sym__dedent] = ACTIONS(3440), + }, + [3189] = { + [sym_attributes] = STATE(3040), + [sym_attribute_set] = STATE(4118), + [sym_repeat_pattern] = STATE(5168), + [sym__pattern] = STATE(5859), + [sym_optional_pattern] = STATE(5168), + [sym_type_check_pattern] = STATE(5168), + [sym_attribute_pattern] = STATE(5168), + [sym_paren_pattern] = STATE(5168), + [sym_as_pattern] = STATE(5168), + [sym_cons_pattern] = STATE(5168), + [sym_disjunct_pattern] = STATE(5168), + [sym_conjunct_pattern] = STATE(5168), + [sym_typed_pattern] = STATE(5168), + [sym_list_pattern] = STATE(5168), + [sym_array_pattern] = STATE(5168), + [sym_record_pattern] = STATE(5168), + [sym_identifier_pattern] = STATE(5168), + [sym_long_identifier_or_op] = STATE(2316), + [sym_char] = STATE(5196), + [sym_format_string] = STATE(5193), + [sym__string_literal] = STATE(5193), + [sym_string] = STATE(5196), + [sym_verbatim_string] = STATE(5196), + [sym_bytearray] = STATE(5196), + [sym_verbatim_bytearray] = STATE(5196), + [sym_format_triple_quoted_string] = STATE(5192), + [sym_triple_quoted_string] = STATE(5196), + [sym_const] = STATE(5168), + [sym_long_identifier] = STATE(3671), + [sym_active_pattern] = STATE(3736), + [sym__identifier_or_op] = STATE(3692), + [sym_sbyte] = STATE(5196), + [sym_byte] = STATE(5196), + [sym_int16] = STATE(5196), + [sym_uint16] = STATE(5196), + [sym_int32] = STATE(5196), + [sym_uint32] = STATE(5196), + [sym_nativeint] = STATE(5196), + [sym_unativeint] = STATE(5196), + [sym_int64] = STATE(5196), + [sym_uint64] = STATE(5196), + [sym_ieee32] = STATE(5196), + [sym_ieee64] = STATE(5196), + [sym_bignum] = STATE(5196), + [sym_decimal] = STATE(5196), + [sym_float] = STATE(5049), + [sym_xml_doc] = STATE(3189), + [sym_block_comment] = STATE(3189), + [sym_line_comment] = STATE(3189), + [sym_compiler_directive_decl] = STATE(3189), + [sym_fsi_directive_decl] = STATE(3189), + [sym_preproc_line] = STATE(3189), + [aux_sym_attributes_repeat1] = STATE(4204), + [sym_identifier] = ACTIONS(4643), + [anon_sym_LBRACK_LT] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_null] = ACTIONS(4766), + [anon_sym__] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_LBRACK_PIPE] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4935), + [aux_sym_char_token1] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4770), + [anon_sym_DQUOTE] = ACTIONS(4772), + [anon_sym_AT_DQUOTE] = ACTIONS(4774), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4778), + [sym_bool] = ACTIONS(4780), + [sym_unit] = ACTIONS(4782), + [anon_sym_LPAREN_PIPE] = ACTIONS(4669), + [sym_op_identifier] = ACTIONS(4671), + [sym_int] = ACTIONS(4784), + [sym_xint] = ACTIONS(4786), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3190] = { + [sym_xml_doc] = STATE(3190), + [sym_block_comment] = STATE(3190), + [sym_line_comment] = STATE(3190), + [sym_compiler_directive_decl] = STATE(3190), + [sym_fsi_directive_decl] = STATE(3190), + [sym_preproc_line] = STATE(3190), + [sym_identifier] = ACTIONS(5350), + [anon_sym_module] = ACTIONS(5350), + [anon_sym_open] = ACTIONS(5350), + [anon_sym_LBRACK_LT] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_do] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_let] = ACTIONS(5350), + [anon_sym_let_BANG] = ACTIONS(5348), + [aux_sym_access_modifier_token1] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5522), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_LBRACK_PIPE] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_LT_AT] = ACTIONS(5350), + [anon_sym_LT_AT_AT] = ACTIONS(5348), + [anon_sym_LBRACE_PIPE] = ACTIONS(5348), + [anon_sym_new] = ACTIONS(5350), + [anon_sym_return_BANG] = ACTIONS(5348), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_yield_BANG] = ACTIONS(5348), + [anon_sym_lazy] = ACTIONS(5350), + [anon_sym_assert] = ACTIONS(5350), + [anon_sym_upcast] = ACTIONS(5350), + [anon_sym_downcast] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_fun] = ACTIONS(5350), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_match_BANG] = ACTIONS(5348), + [anon_sym_function] = ACTIONS(5350), + [anon_sym_use] = ACTIONS(5350), + [anon_sym_use_BANG] = ACTIONS(5348), + [anon_sym_do_BANG] = ACTIONS(5348), + [anon_sym_begin] = ACTIONS(5350), + [anon_sym_default] = ACTIONS(5350), + [anon_sym_static] = ACTIONS(5350), + [anon_sym_member] = ACTIONS(5350), + [anon_sym_abstract] = ACTIONS(5350), + [anon_sym_override] = ACTIONS(5350), + [anon_sym_val] = ACTIONS(5350), + [aux_sym_char_token1] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), + [anon_sym_DQUOTE] = ACTIONS(5350), + [anon_sym_AT_DQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [sym_bool] = ACTIONS(5350), + [sym_unit] = ACTIONS(5348), + [anon_sym_LPAREN_PIPE] = ACTIONS(5350), + [sym_op_identifier] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_PLUS_DOT] = ACTIONS(5348), + [anon_sym_DASH_DOT] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_TILDE] = ACTIONS(5348), + [aux_sym_prefix_op_token1] = ACTIONS(5348), + [sym_int] = ACTIONS(5350), + [sym_xint] = ACTIONS(5348), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5348), + [anon_sym_POUNDload] = ACTIONS(5348), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5348), + [sym__dedent] = ACTIONS(5348), + }, + [3191] = { + [sym_xml_doc] = STATE(3191), + [sym_block_comment] = STATE(3191), + [sym_line_comment] = STATE(3191), + [sym_compiler_directive_decl] = STATE(3191), + [sym_fsi_directive_decl] = STATE(3191), + [sym_preproc_line] = STATE(3191), + [sym_identifier] = ACTIONS(5350), + [anon_sym_module] = ACTIONS(5350), + [anon_sym_open] = ACTIONS(5350), + [anon_sym_LBRACK_LT] = ACTIONS(5348), + [anon_sym_return] = ACTIONS(5350), + [anon_sym_type] = ACTIONS(5350), + [anon_sym_do] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_let] = ACTIONS(5350), + [anon_sym_let_BANG] = ACTIONS(5348), + [aux_sym_access_modifier_token1] = ACTIONS(5348), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_COMMA] = ACTIONS(5524), + [anon_sym_null] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_LBRACK] = ACTIONS(5350), + [anon_sym_LBRACK_PIPE] = ACTIONS(5348), + [anon_sym_LBRACE] = ACTIONS(5350), + [anon_sym_LT_AT] = ACTIONS(5350), + [anon_sym_LT_AT_AT] = ACTIONS(5348), + [anon_sym_LBRACE_PIPE] = ACTIONS(5348), + [anon_sym_new] = ACTIONS(5350), + [anon_sym_return_BANG] = ACTIONS(5348), + [anon_sym_yield] = ACTIONS(5350), + [anon_sym_yield_BANG] = ACTIONS(5348), + [anon_sym_lazy] = ACTIONS(5350), + [anon_sym_assert] = ACTIONS(5350), + [anon_sym_upcast] = ACTIONS(5350), + [anon_sym_downcast] = ACTIONS(5350), + [anon_sym_for] = ACTIONS(5350), + [anon_sym_while] = ACTIONS(5350), + [anon_sym_if] = ACTIONS(5350), + [anon_sym_fun] = ACTIONS(5350), + [anon_sym_try] = ACTIONS(5350), + [anon_sym_match] = ACTIONS(5350), + [anon_sym_match_BANG] = ACTIONS(5348), + [anon_sym_function] = ACTIONS(5350), + [anon_sym_use] = ACTIONS(5350), + [anon_sym_use_BANG] = ACTIONS(5348), + [anon_sym_do_BANG] = ACTIONS(5348), + [anon_sym_begin] = ACTIONS(5350), + [anon_sym_default] = ACTIONS(5350), + [anon_sym_static] = ACTIONS(5350), + [anon_sym_member] = ACTIONS(5350), + [anon_sym_abstract] = ACTIONS(5350), + [anon_sym_override] = ACTIONS(5350), + [anon_sym_val] = ACTIONS(5350), + [aux_sym_char_token1] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5350), + [anon_sym_DQUOTE] = ACTIONS(5350), + [anon_sym_AT_DQUOTE] = ACTIONS(5348), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5348), + [sym_bool] = ACTIONS(5350), + [sym_unit] = ACTIONS(5348), + [anon_sym_LPAREN_PIPE] = ACTIONS(5350), + [sym_op_identifier] = ACTIONS(5348), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_PLUS_DOT] = ACTIONS(5348), + [anon_sym_DASH_DOT] = ACTIONS(5348), + [anon_sym_PERCENT] = ACTIONS(5348), + [anon_sym_AMP_AMP] = ACTIONS(5348), + [anon_sym_TILDE] = ACTIONS(5348), + [aux_sym_prefix_op_token1] = ACTIONS(5348), + [sym_int] = ACTIONS(5350), + [sym_xint] = ACTIONS(5348), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5348), + [anon_sym_POUNDload] = ACTIONS(5348), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5348), + [sym__dedent] = ACTIONS(5348), + }, + [3192] = { + [sym_xml_doc] = STATE(3192), + [sym_block_comment] = STATE(3192), + [sym_line_comment] = STATE(3192), + [sym_compiler_directive_decl] = STATE(3192), + [sym_fsi_directive_decl] = STATE(3192), + [sym_preproc_line] = STATE(3192), + [sym_identifier] = ACTIONS(5442), + [anon_sym_module] = ACTIONS(5442), + [anon_sym_open] = ACTIONS(5442), + [anon_sym_LBRACK_LT] = ACTIONS(5440), + [anon_sym_return] = ACTIONS(5442), + [anon_sym_type] = ACTIONS(5442), + [anon_sym_do] = ACTIONS(5442), + [anon_sym_and] = ACTIONS(5442), + [anon_sym_let] = ACTIONS(5442), + [anon_sym_let_BANG] = ACTIONS(5440), + [aux_sym_access_modifier_token1] = ACTIONS(5440), + [anon_sym_LPAREN] = ACTIONS(5442), + [anon_sym_null] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5442), + [anon_sym_LBRACK] = ACTIONS(5442), + [anon_sym_LBRACK_PIPE] = ACTIONS(5440), + [anon_sym_LBRACE] = ACTIONS(5442), + [anon_sym_LT_AT] = ACTIONS(5442), + [anon_sym_LT_AT_AT] = ACTIONS(5440), + [anon_sym_LBRACE_PIPE] = ACTIONS(5440), + [anon_sym_new] = ACTIONS(5442), + [anon_sym_return_BANG] = ACTIONS(5440), + [anon_sym_yield] = ACTIONS(5442), + [anon_sym_yield_BANG] = ACTIONS(5440), + [anon_sym_lazy] = ACTIONS(5442), + [anon_sym_assert] = ACTIONS(5442), + [anon_sym_upcast] = ACTIONS(5442), + [anon_sym_downcast] = ACTIONS(5442), + [anon_sym_for] = ACTIONS(5442), + [anon_sym_while] = ACTIONS(5442), + [anon_sym_if] = ACTIONS(5442), + [anon_sym_fun] = ACTIONS(5442), + [anon_sym_try] = ACTIONS(5442), + [anon_sym_match] = ACTIONS(5442), + [anon_sym_match_BANG] = ACTIONS(5440), + [anon_sym_function] = ACTIONS(5442), + [anon_sym_use] = ACTIONS(5442), + [anon_sym_use_BANG] = ACTIONS(5440), + [anon_sym_do_BANG] = ACTIONS(5440), + [anon_sym_begin] = ACTIONS(5442), + [anon_sym_default] = ACTIONS(5442), + [anon_sym_static] = ACTIONS(5442), + [anon_sym_member] = ACTIONS(5442), + [anon_sym_abstract] = ACTIONS(5442), + [anon_sym_override] = ACTIONS(5442), + [anon_sym_val] = ACTIONS(5442), + [aux_sym_char_token1] = ACTIONS(5440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_AT_DQUOTE] = ACTIONS(5440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5440), + [sym_bool] = ACTIONS(5442), + [sym_unit] = ACTIONS(5440), + [anon_sym_LPAREN_PIPE] = ACTIONS(5442), + [sym_op_identifier] = ACTIONS(5440), + [anon_sym_PLUS] = ACTIONS(5442), + [anon_sym_DASH] = ACTIONS(5442), + [anon_sym_PLUS_DOT] = ACTIONS(5440), + [anon_sym_DASH_DOT] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_AMP_AMP] = ACTIONS(5440), + [anon_sym_TILDE] = ACTIONS(5440), + [aux_sym_prefix_op_token1] = ACTIONS(5440), + [sym_int] = ACTIONS(5442), + [sym_xint] = ACTIONS(5440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5440), + [anon_sym_POUNDload] = ACTIONS(5440), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5440), + [sym__dedent] = ACTIONS(5440), + }, + [3193] = { + [sym_xml_doc] = STATE(3193), + [sym_block_comment] = STATE(3193), + [sym_line_comment] = STATE(3193), + [sym_compiler_directive_decl] = STATE(3193), + [sym_fsi_directive_decl] = STATE(3193), + [sym_preproc_line] = STATE(3193), + [sym_identifier] = ACTIONS(5438), + [anon_sym_module] = ACTIONS(5438), + [anon_sym_open] = ACTIONS(5438), + [anon_sym_LBRACK_LT] = ACTIONS(5436), + [anon_sym_return] = ACTIONS(5438), + [anon_sym_type] = ACTIONS(5438), + [anon_sym_do] = ACTIONS(5438), + [anon_sym_and] = ACTIONS(5438), + [anon_sym_let] = ACTIONS(5438), + [anon_sym_let_BANG] = ACTIONS(5436), + [aux_sym_access_modifier_token1] = ACTIONS(5436), + [anon_sym_LPAREN] = ACTIONS(5438), + [anon_sym_null] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5438), + [anon_sym_LBRACK] = ACTIONS(5438), + [anon_sym_LBRACK_PIPE] = ACTIONS(5436), + [anon_sym_LBRACE] = ACTIONS(5438), + [anon_sym_LT_AT] = ACTIONS(5438), + [anon_sym_LT_AT_AT] = ACTIONS(5436), + [anon_sym_LBRACE_PIPE] = ACTIONS(5436), + [anon_sym_new] = ACTIONS(5438), + [anon_sym_return_BANG] = ACTIONS(5436), + [anon_sym_yield] = ACTIONS(5438), + [anon_sym_yield_BANG] = ACTIONS(5436), + [anon_sym_lazy] = ACTIONS(5438), + [anon_sym_assert] = ACTIONS(5438), + [anon_sym_upcast] = ACTIONS(5438), + [anon_sym_downcast] = ACTIONS(5438), + [anon_sym_for] = ACTIONS(5438), + [anon_sym_while] = ACTIONS(5438), + [anon_sym_if] = ACTIONS(5438), + [anon_sym_fun] = ACTIONS(5438), + [anon_sym_try] = ACTIONS(5438), + [anon_sym_match] = ACTIONS(5438), + [anon_sym_match_BANG] = ACTIONS(5436), + [anon_sym_function] = ACTIONS(5438), + [anon_sym_use] = ACTIONS(5438), + [anon_sym_use_BANG] = ACTIONS(5436), + [anon_sym_do_BANG] = ACTIONS(5436), + [anon_sym_begin] = ACTIONS(5438), + [anon_sym_default] = ACTIONS(5438), + [anon_sym_static] = ACTIONS(5438), + [anon_sym_member] = ACTIONS(5438), + [anon_sym_abstract] = ACTIONS(5438), + [anon_sym_override] = ACTIONS(5438), + [anon_sym_val] = ACTIONS(5438), + [aux_sym_char_token1] = ACTIONS(5436), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5438), + [anon_sym_DQUOTE] = ACTIONS(5438), + [anon_sym_AT_DQUOTE] = ACTIONS(5436), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5436), + [sym_bool] = ACTIONS(5438), + [sym_unit] = ACTIONS(5436), + [anon_sym_LPAREN_PIPE] = ACTIONS(5438), + [sym_op_identifier] = ACTIONS(5436), + [anon_sym_PLUS] = ACTIONS(5438), + [anon_sym_DASH] = ACTIONS(5438), + [anon_sym_PLUS_DOT] = ACTIONS(5436), + [anon_sym_DASH_DOT] = ACTIONS(5436), + [anon_sym_PERCENT] = ACTIONS(5436), + [anon_sym_AMP_AMP] = ACTIONS(5436), + [anon_sym_TILDE] = ACTIONS(5436), + [aux_sym_prefix_op_token1] = ACTIONS(5436), + [sym_int] = ACTIONS(5438), + [sym_xint] = ACTIONS(5436), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5436), + [anon_sym_POUNDload] = ACTIONS(5436), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5436), + [sym__dedent] = ACTIONS(5436), + }, + [3194] = { + [sym_xml_doc] = STATE(3194), + [sym_block_comment] = STATE(3194), + [sym_line_comment] = STATE(3194), + [sym_compiler_directive_decl] = STATE(3194), + [sym_fsi_directive_decl] = STATE(3194), + [sym_preproc_line] = STATE(3194), + [sym_identifier] = ACTIONS(5464), + [anon_sym_module] = ACTIONS(5464), + [anon_sym_open] = ACTIONS(5464), + [anon_sym_LBRACK_LT] = ACTIONS(5462), + [anon_sym_return] = ACTIONS(5464), + [anon_sym_type] = ACTIONS(5464), + [anon_sym_do] = ACTIONS(5464), + [anon_sym_and] = ACTIONS(5464), + [anon_sym_let] = ACTIONS(5464), + [anon_sym_let_BANG] = ACTIONS(5462), + [aux_sym_access_modifier_token1] = ACTIONS(5462), + [anon_sym_LPAREN] = ACTIONS(5464), + [anon_sym_null] = ACTIONS(5464), + [anon_sym_AMP] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(5464), + [anon_sym_LBRACK_PIPE] = ACTIONS(5462), + [anon_sym_LBRACE] = ACTIONS(5464), + [anon_sym_LT_AT] = ACTIONS(5464), + [anon_sym_LT_AT_AT] = ACTIONS(5462), + [anon_sym_LBRACE_PIPE] = ACTIONS(5462), + [anon_sym_new] = ACTIONS(5464), + [anon_sym_return_BANG] = ACTIONS(5462), + [anon_sym_yield] = ACTIONS(5464), + [anon_sym_yield_BANG] = ACTIONS(5462), + [anon_sym_lazy] = ACTIONS(5464), + [anon_sym_assert] = ACTIONS(5464), + [anon_sym_upcast] = ACTIONS(5464), + [anon_sym_downcast] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(5464), + [anon_sym_while] = ACTIONS(5464), + [anon_sym_if] = ACTIONS(5464), + [anon_sym_fun] = ACTIONS(5464), + [anon_sym_try] = ACTIONS(5464), + [anon_sym_match] = ACTIONS(5464), + [anon_sym_match_BANG] = ACTIONS(5462), + [anon_sym_function] = ACTIONS(5464), + [anon_sym_use] = ACTIONS(5464), + [anon_sym_use_BANG] = ACTIONS(5462), + [anon_sym_do_BANG] = ACTIONS(5462), + [anon_sym_begin] = ACTIONS(5464), + [anon_sym_default] = ACTIONS(5464), + [anon_sym_static] = ACTIONS(5464), + [anon_sym_member] = ACTIONS(5464), + [anon_sym_abstract] = ACTIONS(5464), + [anon_sym_override] = ACTIONS(5464), + [anon_sym_val] = ACTIONS(5464), + [aux_sym_char_token1] = ACTIONS(5462), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5464), + [anon_sym_DQUOTE] = ACTIONS(5464), + [anon_sym_AT_DQUOTE] = ACTIONS(5462), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5462), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5462), + [sym_bool] = ACTIONS(5464), + [sym_unit] = ACTIONS(5462), + [anon_sym_LPAREN_PIPE] = ACTIONS(5464), + [sym_op_identifier] = ACTIONS(5462), + [anon_sym_PLUS] = ACTIONS(5464), + [anon_sym_DASH] = ACTIONS(5464), + [anon_sym_PLUS_DOT] = ACTIONS(5462), + [anon_sym_DASH_DOT] = ACTIONS(5462), + [anon_sym_PERCENT] = ACTIONS(5462), + [anon_sym_AMP_AMP] = ACTIONS(5462), + [anon_sym_TILDE] = ACTIONS(5462), + [aux_sym_prefix_op_token1] = ACTIONS(5462), + [sym_int] = ACTIONS(5464), + [sym_xint] = ACTIONS(5462), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5462), + [anon_sym_POUNDload] = ACTIONS(5462), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5462), + [sym__dedent] = ACTIONS(5462), + }, + [3195] = { + [sym_xml_doc] = STATE(3195), + [sym_block_comment] = STATE(3195), + [sym_line_comment] = STATE(3195), + [sym_compiler_directive_decl] = STATE(3195), + [sym_fsi_directive_decl] = STATE(3195), + [sym_preproc_line] = STATE(3195), + [sym_identifier] = ACTIONS(5131), + [anon_sym_module] = ACTIONS(5131), + [anon_sym_open] = ACTIONS(5131), + [anon_sym_LBRACK_LT] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5131), + [anon_sym_type] = ACTIONS(5131), + [anon_sym_do] = ACTIONS(5131), + [anon_sym_and] = ACTIONS(5131), + [anon_sym_let] = ACTIONS(5131), + [anon_sym_let_BANG] = ACTIONS(5129), + [aux_sym_access_modifier_token1] = ACTIONS(5129), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5131), + [anon_sym_AMP] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_LBRACK_PIPE] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_LT_AT] = ACTIONS(5131), + [anon_sym_LT_AT_AT] = ACTIONS(5129), + [anon_sym_LBRACE_PIPE] = ACTIONS(5129), + [anon_sym_new] = ACTIONS(5131), + [anon_sym_return_BANG] = ACTIONS(5129), + [anon_sym_yield] = ACTIONS(5131), + [anon_sym_yield_BANG] = ACTIONS(5129), + [anon_sym_lazy] = ACTIONS(5131), + [anon_sym_assert] = ACTIONS(5131), + [anon_sym_upcast] = ACTIONS(5131), + [anon_sym_downcast] = ACTIONS(5131), + [anon_sym_for] = ACTIONS(5131), + [anon_sym_while] = ACTIONS(5131), + [anon_sym_if] = ACTIONS(5131), + [anon_sym_fun] = ACTIONS(5131), + [anon_sym_try] = ACTIONS(5131), + [anon_sym_match] = ACTIONS(5131), + [anon_sym_match_BANG] = ACTIONS(5129), + [anon_sym_function] = ACTIONS(5131), + [anon_sym_use] = ACTIONS(5131), + [anon_sym_use_BANG] = ACTIONS(5129), + [anon_sym_do_BANG] = ACTIONS(5129), + [anon_sym_begin] = ACTIONS(5131), + [anon_sym_default] = ACTIONS(5131), + [anon_sym_static] = ACTIONS(5131), + [anon_sym_member] = ACTIONS(5131), + [anon_sym_abstract] = ACTIONS(5131), + [anon_sym_override] = ACTIONS(5131), + [anon_sym_val] = ACTIONS(5131), + [aux_sym_char_token1] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5131), + [anon_sym_DQUOTE] = ACTIONS(5131), + [anon_sym_AT_DQUOTE] = ACTIONS(5129), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5129), + [sym_bool] = ACTIONS(5131), + [sym_unit] = ACTIONS(5129), + [anon_sym_LPAREN_PIPE] = ACTIONS(5131), + [sym_op_identifier] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_PLUS_DOT] = ACTIONS(5129), + [anon_sym_DASH_DOT] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_AMP_AMP] = ACTIONS(5129), + [anon_sym_TILDE] = ACTIONS(5129), + [aux_sym_prefix_op_token1] = ACTIONS(5129), + [sym_int] = ACTIONS(5131), + [sym_xint] = ACTIONS(5129), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5129), + [anon_sym_POUNDload] = ACTIONS(5129), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5129), + [sym__dedent] = ACTIONS(5129), + }, + [3196] = { + [sym_xml_doc] = STATE(3196), + [sym_block_comment] = STATE(3196), + [sym_line_comment] = STATE(3196), + [sym_compiler_directive_decl] = STATE(3196), + [sym_fsi_directive_decl] = STATE(3196), + [sym_preproc_line] = STATE(3196), + [sym_identifier] = ACTIONS(5480), + [anon_sym_module] = ACTIONS(5480), + [anon_sym_open] = ACTIONS(5480), + [anon_sym_LBRACK_LT] = ACTIONS(5478), + [anon_sym_return] = ACTIONS(5480), + [anon_sym_type] = ACTIONS(5480), + [anon_sym_do] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_let] = ACTIONS(5480), + [anon_sym_let_BANG] = ACTIONS(5478), + [aux_sym_access_modifier_token1] = ACTIONS(5478), + [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_null] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5480), + [anon_sym_LBRACK_PIPE] = ACTIONS(5478), + [anon_sym_LBRACE] = ACTIONS(5480), + [anon_sym_LT_AT] = ACTIONS(5480), + [anon_sym_LT_AT_AT] = ACTIONS(5478), + [anon_sym_LBRACE_PIPE] = ACTIONS(5478), + [anon_sym_new] = ACTIONS(5480), + [anon_sym_return_BANG] = ACTIONS(5478), + [anon_sym_yield] = ACTIONS(5480), + [anon_sym_yield_BANG] = ACTIONS(5478), + [anon_sym_lazy] = ACTIONS(5480), + [anon_sym_assert] = ACTIONS(5480), + [anon_sym_upcast] = ACTIONS(5480), + [anon_sym_downcast] = ACTIONS(5480), + [anon_sym_for] = ACTIONS(5480), + [anon_sym_while] = ACTIONS(5480), + [anon_sym_if] = ACTIONS(5480), + [anon_sym_fun] = ACTIONS(5480), + [anon_sym_try] = ACTIONS(5480), + [anon_sym_match] = ACTIONS(5480), + [anon_sym_match_BANG] = ACTIONS(5478), + [anon_sym_function] = ACTIONS(5480), + [anon_sym_use] = ACTIONS(5480), + [anon_sym_use_BANG] = ACTIONS(5478), + [anon_sym_do_BANG] = ACTIONS(5478), + [anon_sym_begin] = ACTIONS(5480), + [anon_sym_default] = ACTIONS(5480), + [anon_sym_static] = ACTIONS(5480), + [anon_sym_member] = ACTIONS(5480), + [anon_sym_abstract] = ACTIONS(5480), + [anon_sym_override] = ACTIONS(5480), + [anon_sym_val] = ACTIONS(5480), + [aux_sym_char_token1] = ACTIONS(5478), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5480), + [anon_sym_DQUOTE] = ACTIONS(5480), + [anon_sym_AT_DQUOTE] = ACTIONS(5478), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5478), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5478), + [sym_bool] = ACTIONS(5480), + [sym_unit] = ACTIONS(5478), + [anon_sym_LPAREN_PIPE] = ACTIONS(5480), + [sym_op_identifier] = ACTIONS(5478), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS_DOT] = ACTIONS(5478), + [anon_sym_DASH_DOT] = ACTIONS(5478), + [anon_sym_PERCENT] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [aux_sym_prefix_op_token1] = ACTIONS(5478), + [sym_int] = ACTIONS(5480), + [sym_xint] = ACTIONS(5478), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5478), + [anon_sym_POUNDload] = ACTIONS(5478), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5478), + [sym__dedent] = ACTIONS(5478), + }, + [3197] = { + [sym_xml_doc] = STATE(3197), + [sym_block_comment] = STATE(3197), + [sym_line_comment] = STATE(3197), + [sym_compiler_directive_decl] = STATE(3197), + [sym_fsi_directive_decl] = STATE(3197), + [sym_preproc_line] = STATE(3197), + [sym_identifier] = ACTIONS(5079), + [anon_sym_module] = ACTIONS(5079), + [anon_sym_open] = ACTIONS(5079), + [anon_sym_LBRACK_LT] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5079), + [anon_sym_type] = ACTIONS(5079), + [anon_sym_do] = ACTIONS(5079), + [anon_sym_and] = ACTIONS(5079), + [anon_sym_let] = ACTIONS(5079), + [anon_sym_let_BANG] = ACTIONS(5077), + [aux_sym_access_modifier_token1] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5079), + [anon_sym_AMP] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_LBRACK_PIPE] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_LT_AT] = ACTIONS(5079), + [anon_sym_LT_AT_AT] = ACTIONS(5077), + [anon_sym_LBRACE_PIPE] = ACTIONS(5077), + [anon_sym_new] = ACTIONS(5079), + [anon_sym_return_BANG] = ACTIONS(5077), + [anon_sym_yield] = ACTIONS(5079), + [anon_sym_yield_BANG] = ACTIONS(5077), + [anon_sym_lazy] = ACTIONS(5079), + [anon_sym_assert] = ACTIONS(5079), + [anon_sym_upcast] = ACTIONS(5079), + [anon_sym_downcast] = ACTIONS(5079), + [anon_sym_for] = ACTIONS(5079), + [anon_sym_while] = ACTIONS(5079), + [anon_sym_if] = ACTIONS(5079), + [anon_sym_fun] = ACTIONS(5079), + [anon_sym_try] = ACTIONS(5079), + [anon_sym_match] = ACTIONS(5079), + [anon_sym_match_BANG] = ACTIONS(5077), + [anon_sym_function] = ACTIONS(5079), + [anon_sym_use] = ACTIONS(5079), + [anon_sym_use_BANG] = ACTIONS(5077), + [anon_sym_do_BANG] = ACTIONS(5077), + [anon_sym_begin] = ACTIONS(5079), + [anon_sym_default] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(5079), + [anon_sym_member] = ACTIONS(5079), + [anon_sym_abstract] = ACTIONS(5079), + [anon_sym_override] = ACTIONS(5079), + [anon_sym_val] = ACTIONS(5079), + [aux_sym_char_token1] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5079), + [anon_sym_DQUOTE] = ACTIONS(5079), + [anon_sym_AT_DQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5077), + [sym_bool] = ACTIONS(5079), + [sym_unit] = ACTIONS(5077), + [anon_sym_LPAREN_PIPE] = ACTIONS(5079), + [sym_op_identifier] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5079), + [anon_sym_DASH] = ACTIONS(5079), + [anon_sym_PLUS_DOT] = ACTIONS(5077), + [anon_sym_DASH_DOT] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_AMP_AMP] = ACTIONS(5077), + [anon_sym_TILDE] = ACTIONS(5077), + [aux_sym_prefix_op_token1] = ACTIONS(5077), + [sym_int] = ACTIONS(5079), + [sym_xint] = ACTIONS(5077), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5077), + [anon_sym_POUNDload] = ACTIONS(5077), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5077), + [sym__dedent] = ACTIONS(5077), + }, + [3198] = { + [sym_xml_doc] = STATE(3198), + [sym_block_comment] = STATE(3198), + [sym_line_comment] = STATE(3198), + [sym_compiler_directive_decl] = STATE(3198), + [sym_fsi_directive_decl] = STATE(3198), + [sym_preproc_line] = STATE(3198), + [sym_identifier] = ACTIONS(5488), + [anon_sym_module] = ACTIONS(5488), + [anon_sym_open] = ACTIONS(5488), + [anon_sym_LBRACK_LT] = ACTIONS(5486), + [anon_sym_return] = ACTIONS(5488), + [anon_sym_type] = ACTIONS(5488), + [anon_sym_do] = ACTIONS(5488), + [anon_sym_and] = ACTIONS(5488), + [anon_sym_let] = ACTIONS(5488), + [anon_sym_let_BANG] = ACTIONS(5486), + [aux_sym_access_modifier_token1] = ACTIONS(5486), + [anon_sym_LPAREN] = ACTIONS(5488), + [anon_sym_null] = ACTIONS(5488), + [anon_sym_AMP] = ACTIONS(5488), + [anon_sym_LBRACK] = ACTIONS(5488), + [anon_sym_LBRACK_PIPE] = ACTIONS(5486), + [anon_sym_LBRACE] = ACTIONS(5488), + [anon_sym_LT_AT] = ACTIONS(5488), + [anon_sym_LT_AT_AT] = ACTIONS(5486), + [anon_sym_LBRACE_PIPE] = ACTIONS(5486), + [anon_sym_new] = ACTIONS(5488), + [anon_sym_return_BANG] = ACTIONS(5486), + [anon_sym_yield] = ACTIONS(5488), + [anon_sym_yield_BANG] = ACTIONS(5486), + [anon_sym_lazy] = ACTIONS(5488), + [anon_sym_assert] = ACTIONS(5488), + [anon_sym_upcast] = ACTIONS(5488), + [anon_sym_downcast] = ACTIONS(5488), + [anon_sym_for] = ACTIONS(5488), + [anon_sym_while] = ACTIONS(5488), + [anon_sym_if] = ACTIONS(5488), + [anon_sym_fun] = ACTIONS(5488), + [anon_sym_try] = ACTIONS(5488), + [anon_sym_match] = ACTIONS(5488), + [anon_sym_match_BANG] = ACTIONS(5486), + [anon_sym_function] = ACTIONS(5488), + [anon_sym_use] = ACTIONS(5488), + [anon_sym_use_BANG] = ACTIONS(5486), + [anon_sym_do_BANG] = ACTIONS(5486), + [anon_sym_begin] = ACTIONS(5488), + [anon_sym_default] = ACTIONS(5488), + [anon_sym_static] = ACTIONS(5488), + [anon_sym_member] = ACTIONS(5488), + [anon_sym_abstract] = ACTIONS(5488), + [anon_sym_override] = ACTIONS(5488), + [anon_sym_val] = ACTIONS(5488), + [aux_sym_char_token1] = ACTIONS(5486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5488), + [anon_sym_DQUOTE] = ACTIONS(5488), + [anon_sym_AT_DQUOTE] = ACTIONS(5486), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5486), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5486), + [sym_bool] = ACTIONS(5488), + [sym_unit] = ACTIONS(5486), + [anon_sym_LPAREN_PIPE] = ACTIONS(5488), + [sym_op_identifier] = ACTIONS(5486), + [anon_sym_PLUS] = ACTIONS(5488), + [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_PLUS_DOT] = ACTIONS(5486), + [anon_sym_DASH_DOT] = ACTIONS(5486), + [anon_sym_PERCENT] = ACTIONS(5486), + [anon_sym_AMP_AMP] = ACTIONS(5486), + [anon_sym_TILDE] = ACTIONS(5486), + [aux_sym_prefix_op_token1] = ACTIONS(5486), + [sym_int] = ACTIONS(5488), + [sym_xint] = ACTIONS(5486), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5486), + [anon_sym_POUNDload] = ACTIONS(5486), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5486), + [sym__dedent] = ACTIONS(5486), + }, + [3199] = { + [sym_xml_doc] = STATE(3199), + [sym_block_comment] = STATE(3199), + [sym_line_comment] = STATE(3199), + [sym_compiler_directive_decl] = STATE(3199), + [sym_fsi_directive_decl] = STATE(3199), + [sym_preproc_line] = STATE(3199), + [sym_identifier] = ACTIONS(5400), + [anon_sym_module] = ACTIONS(5400), + [anon_sym_open] = ACTIONS(5400), + [anon_sym_LBRACK_LT] = ACTIONS(5398), + [anon_sym_return] = ACTIONS(5400), + [anon_sym_type] = ACTIONS(5400), + [anon_sym_do] = ACTIONS(5400), + [anon_sym_and] = ACTIONS(5400), + [anon_sym_let] = ACTIONS(5400), + [anon_sym_let_BANG] = ACTIONS(5398), + [aux_sym_access_modifier_token1] = ACTIONS(5398), + [anon_sym_LPAREN] = ACTIONS(5400), + [anon_sym_null] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(5400), + [anon_sym_LBRACK] = ACTIONS(5400), + [anon_sym_LBRACK_PIPE] = ACTIONS(5398), + [anon_sym_LBRACE] = ACTIONS(5400), + [anon_sym_LT_AT] = ACTIONS(5400), + [anon_sym_LT_AT_AT] = ACTIONS(5398), + [anon_sym_LBRACE_PIPE] = ACTIONS(5398), + [anon_sym_new] = ACTIONS(5400), + [anon_sym_return_BANG] = ACTIONS(5398), + [anon_sym_yield] = ACTIONS(5400), + [anon_sym_yield_BANG] = ACTIONS(5398), + [anon_sym_lazy] = ACTIONS(5400), + [anon_sym_assert] = ACTIONS(5400), + [anon_sym_upcast] = ACTIONS(5400), + [anon_sym_downcast] = ACTIONS(5400), + [anon_sym_for] = ACTIONS(5400), + [anon_sym_while] = ACTIONS(5400), + [anon_sym_if] = ACTIONS(5400), + [anon_sym_fun] = ACTIONS(5400), + [anon_sym_try] = ACTIONS(5400), + [anon_sym_match] = ACTIONS(5400), + [anon_sym_match_BANG] = ACTIONS(5398), + [anon_sym_function] = ACTIONS(5400), + [anon_sym_use] = ACTIONS(5400), + [anon_sym_use_BANG] = ACTIONS(5398), + [anon_sym_do_BANG] = ACTIONS(5398), + [anon_sym_begin] = ACTIONS(5400), + [anon_sym_default] = ACTIONS(5400), + [anon_sym_static] = ACTIONS(5400), + [anon_sym_member] = ACTIONS(5400), + [anon_sym_abstract] = ACTIONS(5400), + [anon_sym_override] = ACTIONS(5400), + [anon_sym_val] = ACTIONS(5400), + [aux_sym_char_token1] = ACTIONS(5398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_AT_DQUOTE] = ACTIONS(5398), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5398), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5398), + [sym_bool] = ACTIONS(5400), + [sym_unit] = ACTIONS(5398), + [anon_sym_LPAREN_PIPE] = ACTIONS(5400), + [sym_op_identifier] = ACTIONS(5398), + [anon_sym_PLUS] = ACTIONS(5400), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_PLUS_DOT] = ACTIONS(5398), + [anon_sym_DASH_DOT] = ACTIONS(5398), + [anon_sym_PERCENT] = ACTIONS(5398), + [anon_sym_AMP_AMP] = ACTIONS(5398), + [anon_sym_TILDE] = ACTIONS(5398), + [aux_sym_prefix_op_token1] = ACTIONS(5398), + [sym_int] = ACTIONS(5400), + [sym_xint] = ACTIONS(5398), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5398), + [anon_sym_POUNDload] = ACTIONS(5398), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5398), + [sym__dedent] = ACTIONS(5398), + }, + [3200] = { + [sym_xml_doc] = STATE(3200), + [sym_block_comment] = STATE(3200), + [sym_line_comment] = STATE(3200), + [sym_compiler_directive_decl] = STATE(3200), + [sym_fsi_directive_decl] = STATE(3200), + [sym_preproc_line] = STATE(3200), + [sym_identifier] = ACTIONS(5396), + [anon_sym_module] = ACTIONS(5396), + [anon_sym_open] = ACTIONS(5396), + [anon_sym_LBRACK_LT] = ACTIONS(5394), + [anon_sym_return] = ACTIONS(5396), + [anon_sym_type] = ACTIONS(5396), + [anon_sym_do] = ACTIONS(5396), + [anon_sym_and] = ACTIONS(5396), + [anon_sym_let] = ACTIONS(5396), + [anon_sym_let_BANG] = ACTIONS(5394), + [aux_sym_access_modifier_token1] = ACTIONS(5394), + [anon_sym_LPAREN] = ACTIONS(5396), + [anon_sym_null] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(5396), + [anon_sym_LBRACK] = ACTIONS(5396), + [anon_sym_LBRACK_PIPE] = ACTIONS(5394), + [anon_sym_LBRACE] = ACTIONS(5396), + [anon_sym_LT_AT] = ACTIONS(5396), + [anon_sym_LT_AT_AT] = ACTIONS(5394), + [anon_sym_LBRACE_PIPE] = ACTIONS(5394), + [anon_sym_new] = ACTIONS(5396), + [anon_sym_return_BANG] = ACTIONS(5394), + [anon_sym_yield] = ACTIONS(5396), + [anon_sym_yield_BANG] = ACTIONS(5394), + [anon_sym_lazy] = ACTIONS(5396), + [anon_sym_assert] = ACTIONS(5396), + [anon_sym_upcast] = ACTIONS(5396), + [anon_sym_downcast] = ACTIONS(5396), + [anon_sym_for] = ACTIONS(5396), + [anon_sym_while] = ACTIONS(5396), + [anon_sym_if] = ACTIONS(5396), + [anon_sym_fun] = ACTIONS(5396), + [anon_sym_try] = ACTIONS(5396), + [anon_sym_match] = ACTIONS(5396), + [anon_sym_match_BANG] = ACTIONS(5394), + [anon_sym_function] = ACTIONS(5396), + [anon_sym_use] = ACTIONS(5396), + [anon_sym_use_BANG] = ACTIONS(5394), + [anon_sym_do_BANG] = ACTIONS(5394), + [anon_sym_begin] = ACTIONS(5396), + [anon_sym_default] = ACTIONS(5396), + [anon_sym_static] = ACTIONS(5396), + [anon_sym_member] = ACTIONS(5396), + [anon_sym_abstract] = ACTIONS(5396), + [anon_sym_override] = ACTIONS(5396), + [anon_sym_val] = ACTIONS(5396), + [aux_sym_char_token1] = ACTIONS(5394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5396), + [anon_sym_DQUOTE] = ACTIONS(5396), + [anon_sym_AT_DQUOTE] = ACTIONS(5394), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5394), + [sym_bool] = ACTIONS(5396), + [sym_unit] = ACTIONS(5394), + [anon_sym_LPAREN_PIPE] = ACTIONS(5396), + [sym_op_identifier] = ACTIONS(5394), + [anon_sym_PLUS] = ACTIONS(5396), + [anon_sym_DASH] = ACTIONS(5396), + [anon_sym_PLUS_DOT] = ACTIONS(5394), + [anon_sym_DASH_DOT] = ACTIONS(5394), + [anon_sym_PERCENT] = ACTIONS(5394), + [anon_sym_AMP_AMP] = ACTIONS(5394), + [anon_sym_TILDE] = ACTIONS(5394), + [aux_sym_prefix_op_token1] = ACTIONS(5394), + [sym_int] = ACTIONS(5396), + [sym_xint] = ACTIONS(5394), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5394), + [anon_sym_POUNDload] = ACTIONS(5394), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5394), + [sym__dedent] = ACTIONS(5394), + }, + [3201] = { + [sym_xml_doc] = STATE(3201), + [sym_block_comment] = STATE(3201), + [sym_line_comment] = STATE(3201), + [sym_compiler_directive_decl] = STATE(3201), + [sym_fsi_directive_decl] = STATE(3201), + [sym_preproc_line] = STATE(3201), + [sym_identifier] = ACTIONS(5392), + [anon_sym_module] = ACTIONS(5392), + [anon_sym_open] = ACTIONS(5392), + [anon_sym_LBRACK_LT] = ACTIONS(5390), + [anon_sym_return] = ACTIONS(5392), + [anon_sym_type] = ACTIONS(5392), + [anon_sym_do] = ACTIONS(5392), + [anon_sym_and] = ACTIONS(5392), + [anon_sym_let] = ACTIONS(5392), + [anon_sym_let_BANG] = ACTIONS(5390), + [aux_sym_access_modifier_token1] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5392), + [anon_sym_null] = ACTIONS(5392), + [anon_sym_AMP] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5392), + [anon_sym_LBRACK_PIPE] = ACTIONS(5390), + [anon_sym_LBRACE] = ACTIONS(5392), + [anon_sym_LT_AT] = ACTIONS(5392), + [anon_sym_LT_AT_AT] = ACTIONS(5390), + [anon_sym_LBRACE_PIPE] = ACTIONS(5390), + [anon_sym_new] = ACTIONS(5392), + [anon_sym_return_BANG] = ACTIONS(5390), + [anon_sym_yield] = ACTIONS(5392), + [anon_sym_yield_BANG] = ACTIONS(5390), + [anon_sym_lazy] = ACTIONS(5392), + [anon_sym_assert] = ACTIONS(5392), + [anon_sym_upcast] = ACTIONS(5392), + [anon_sym_downcast] = ACTIONS(5392), + [anon_sym_for] = ACTIONS(5392), + [anon_sym_while] = ACTIONS(5392), + [anon_sym_if] = ACTIONS(5392), + [anon_sym_fun] = ACTIONS(5392), + [anon_sym_try] = ACTIONS(5392), + [anon_sym_match] = ACTIONS(5392), + [anon_sym_match_BANG] = ACTIONS(5390), + [anon_sym_function] = ACTIONS(5392), + [anon_sym_use] = ACTIONS(5392), + [anon_sym_use_BANG] = ACTIONS(5390), + [anon_sym_do_BANG] = ACTIONS(5390), + [anon_sym_begin] = ACTIONS(5392), + [anon_sym_default] = ACTIONS(5392), + [anon_sym_static] = ACTIONS(5392), + [anon_sym_member] = ACTIONS(5392), + [anon_sym_abstract] = ACTIONS(5392), + [anon_sym_override] = ACTIONS(5392), + [anon_sym_val] = ACTIONS(5392), + [aux_sym_char_token1] = ACTIONS(5390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5392), + [anon_sym_DQUOTE] = ACTIONS(5392), + [anon_sym_AT_DQUOTE] = ACTIONS(5390), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5390), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5390), + [sym_bool] = ACTIONS(5392), + [sym_unit] = ACTIONS(5390), + [anon_sym_LPAREN_PIPE] = ACTIONS(5392), + [sym_op_identifier] = ACTIONS(5390), + [anon_sym_PLUS] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5392), + [anon_sym_PLUS_DOT] = ACTIONS(5390), + [anon_sym_DASH_DOT] = ACTIONS(5390), + [anon_sym_PERCENT] = ACTIONS(5390), + [anon_sym_AMP_AMP] = ACTIONS(5390), + [anon_sym_TILDE] = ACTIONS(5390), + [aux_sym_prefix_op_token1] = ACTIONS(5390), + [sym_int] = ACTIONS(5392), + [sym_xint] = ACTIONS(5390), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5390), + [anon_sym_POUNDload] = ACTIONS(5390), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5390), + [sym__dedent] = ACTIONS(5390), + }, + [3202] = { + [sym_xml_doc] = STATE(3202), + [sym_block_comment] = STATE(3202), + [sym_line_comment] = STATE(3202), + [sym_compiler_directive_decl] = STATE(3202), + [sym_fsi_directive_decl] = STATE(3202), + [sym_preproc_line] = STATE(3202), + [sym_identifier] = ACTIONS(5494), + [anon_sym_module] = ACTIONS(5494), + [anon_sym_open] = ACTIONS(5494), + [anon_sym_LBRACK_LT] = ACTIONS(5492), + [anon_sym_return] = ACTIONS(5494), + [anon_sym_type] = ACTIONS(5494), + [anon_sym_do] = ACTIONS(5494), + [anon_sym_and] = ACTIONS(5494), + [anon_sym_let] = ACTIONS(5494), + [anon_sym_let_BANG] = ACTIONS(5492), + [aux_sym_access_modifier_token1] = ACTIONS(5492), + [anon_sym_LPAREN] = ACTIONS(5494), + [anon_sym_null] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(5494), + [anon_sym_LBRACK_PIPE] = ACTIONS(5492), + [anon_sym_LBRACE] = ACTIONS(5494), + [anon_sym_LT_AT] = ACTIONS(5494), + [anon_sym_LT_AT_AT] = ACTIONS(5492), + [anon_sym_LBRACE_PIPE] = ACTIONS(5492), + [anon_sym_new] = ACTIONS(5494), + [anon_sym_return_BANG] = ACTIONS(5492), + [anon_sym_yield] = ACTIONS(5494), + [anon_sym_yield_BANG] = ACTIONS(5492), + [anon_sym_lazy] = ACTIONS(5494), + [anon_sym_assert] = ACTIONS(5494), + [anon_sym_upcast] = ACTIONS(5494), + [anon_sym_downcast] = ACTIONS(5494), + [anon_sym_for] = ACTIONS(5494), + [anon_sym_while] = ACTIONS(5494), + [anon_sym_if] = ACTIONS(5494), + [anon_sym_fun] = ACTIONS(5494), + [anon_sym_try] = ACTIONS(5494), + [anon_sym_match] = ACTIONS(5494), + [anon_sym_match_BANG] = ACTIONS(5492), + [anon_sym_function] = ACTIONS(5494), + [anon_sym_use] = ACTIONS(5494), + [anon_sym_use_BANG] = ACTIONS(5492), + [anon_sym_do_BANG] = ACTIONS(5492), + [anon_sym_begin] = ACTIONS(5494), + [anon_sym_default] = ACTIONS(5494), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_member] = ACTIONS(5494), + [anon_sym_abstract] = ACTIONS(5494), + [anon_sym_override] = ACTIONS(5494), + [anon_sym_val] = ACTIONS(5494), + [aux_sym_char_token1] = ACTIONS(5492), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5494), + [anon_sym_DQUOTE] = ACTIONS(5494), + [anon_sym_AT_DQUOTE] = ACTIONS(5492), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5492), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5492), + [sym_bool] = ACTIONS(5494), + [sym_unit] = ACTIONS(5492), + [anon_sym_LPAREN_PIPE] = ACTIONS(5494), + [sym_op_identifier] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_PLUS_DOT] = ACTIONS(5492), + [anon_sym_DASH_DOT] = ACTIONS(5492), + [anon_sym_PERCENT] = ACTIONS(5492), + [anon_sym_AMP_AMP] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5492), + [aux_sym_prefix_op_token1] = ACTIONS(5492), + [sym_int] = ACTIONS(5494), + [sym_xint] = ACTIONS(5492), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5492), + [anon_sym_POUNDload] = ACTIONS(5492), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5492), + [sym__dedent] = ACTIONS(5492), + }, + [3203] = { + [sym_xml_doc] = STATE(3203), + [sym_block_comment] = STATE(3203), + [sym_line_comment] = STATE(3203), + [sym_compiler_directive_decl] = STATE(3203), + [sym_fsi_directive_decl] = STATE(3203), + [sym_preproc_line] = STATE(3203), + [sym_identifier] = ACTIONS(5075), + [anon_sym_module] = ACTIONS(5075), + [anon_sym_open] = ACTIONS(5075), + [anon_sym_LBRACK_LT] = ACTIONS(5073), + [anon_sym_return] = ACTIONS(5075), + [anon_sym_type] = ACTIONS(5075), + [anon_sym_do] = ACTIONS(5075), + [anon_sym_and] = ACTIONS(5075), + [anon_sym_let] = ACTIONS(5075), + [anon_sym_let_BANG] = ACTIONS(5073), + [aux_sym_access_modifier_token1] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_null] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_LBRACK_PIPE] = ACTIONS(5073), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_LT_AT] = ACTIONS(5075), + [anon_sym_LT_AT_AT] = ACTIONS(5073), + [anon_sym_LBRACE_PIPE] = ACTIONS(5073), + [anon_sym_new] = ACTIONS(5075), + [anon_sym_return_BANG] = ACTIONS(5073), + [anon_sym_yield] = ACTIONS(5075), + [anon_sym_yield_BANG] = ACTIONS(5073), + [anon_sym_lazy] = ACTIONS(5075), + [anon_sym_assert] = ACTIONS(5075), + [anon_sym_upcast] = ACTIONS(5075), + [anon_sym_downcast] = ACTIONS(5075), + [anon_sym_for] = ACTIONS(5075), + [anon_sym_while] = ACTIONS(5075), + [anon_sym_if] = ACTIONS(5075), + [anon_sym_fun] = ACTIONS(5075), + [anon_sym_try] = ACTIONS(5075), + [anon_sym_match] = ACTIONS(5075), + [anon_sym_match_BANG] = ACTIONS(5073), + [anon_sym_function] = ACTIONS(5075), + [anon_sym_use] = ACTIONS(5075), + [anon_sym_use_BANG] = ACTIONS(5073), + [anon_sym_do_BANG] = ACTIONS(5073), + [anon_sym_begin] = ACTIONS(5075), + [anon_sym_default] = ACTIONS(5075), + [anon_sym_static] = ACTIONS(5075), + [anon_sym_member] = ACTIONS(5075), + [anon_sym_abstract] = ACTIONS(5075), + [anon_sym_override] = ACTIONS(5075), + [anon_sym_val] = ACTIONS(5075), + [aux_sym_char_token1] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5075), + [anon_sym_DQUOTE] = ACTIONS(5075), + [anon_sym_AT_DQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5073), + [sym_bool] = ACTIONS(5075), + [sym_unit] = ACTIONS(5073), + [anon_sym_LPAREN_PIPE] = ACTIONS(5075), + [sym_op_identifier] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_PLUS_DOT] = ACTIONS(5073), + [anon_sym_DASH_DOT] = ACTIONS(5073), + [anon_sym_PERCENT] = ACTIONS(5073), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_TILDE] = ACTIONS(5073), + [aux_sym_prefix_op_token1] = ACTIONS(5073), + [sym_int] = ACTIONS(5075), + [sym_xint] = ACTIONS(5073), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5073), + [anon_sym_POUNDload] = ACTIONS(5073), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5073), + [sym__dedent] = ACTIONS(5073), + }, + [3204] = { + [sym_xml_doc] = STATE(3204), + [sym_block_comment] = STATE(3204), + [sym_line_comment] = STATE(3204), + [sym_compiler_directive_decl] = STATE(3204), + [sym_fsi_directive_decl] = STATE(3204), + [sym_preproc_line] = STATE(3204), + [sym_identifier] = ACTIONS(5468), + [anon_sym_module] = ACTIONS(5468), + [anon_sym_open] = ACTIONS(5468), + [anon_sym_LBRACK_LT] = ACTIONS(5466), + [anon_sym_return] = ACTIONS(5468), + [anon_sym_type] = ACTIONS(5468), + [anon_sym_do] = ACTIONS(5468), + [anon_sym_and] = ACTIONS(5468), + [anon_sym_let] = ACTIONS(5468), + [anon_sym_let_BANG] = ACTIONS(5466), + [aux_sym_access_modifier_token1] = ACTIONS(5466), + [anon_sym_LPAREN] = ACTIONS(5468), + [anon_sym_null] = ACTIONS(5468), + [anon_sym_AMP] = ACTIONS(5468), + [anon_sym_LBRACK] = ACTIONS(5468), + [anon_sym_LBRACK_PIPE] = ACTIONS(5466), + [anon_sym_LBRACE] = ACTIONS(5468), + [anon_sym_LT_AT] = ACTIONS(5468), + [anon_sym_LT_AT_AT] = ACTIONS(5466), + [anon_sym_LBRACE_PIPE] = ACTIONS(5466), + [anon_sym_new] = ACTIONS(5468), + [anon_sym_return_BANG] = ACTIONS(5466), + [anon_sym_yield] = ACTIONS(5468), + [anon_sym_yield_BANG] = ACTIONS(5466), + [anon_sym_lazy] = ACTIONS(5468), + [anon_sym_assert] = ACTIONS(5468), + [anon_sym_upcast] = ACTIONS(5468), + [anon_sym_downcast] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5468), + [anon_sym_while] = ACTIONS(5468), + [anon_sym_if] = ACTIONS(5468), + [anon_sym_fun] = ACTIONS(5468), + [anon_sym_try] = ACTIONS(5468), + [anon_sym_match] = ACTIONS(5468), + [anon_sym_match_BANG] = ACTIONS(5466), + [anon_sym_function] = ACTIONS(5468), + [anon_sym_use] = ACTIONS(5468), + [anon_sym_use_BANG] = ACTIONS(5466), + [anon_sym_do_BANG] = ACTIONS(5466), + [anon_sym_begin] = ACTIONS(5468), + [anon_sym_default] = ACTIONS(5468), + [anon_sym_static] = ACTIONS(5468), + [anon_sym_member] = ACTIONS(5468), + [anon_sym_abstract] = ACTIONS(5468), + [anon_sym_override] = ACTIONS(5468), + [anon_sym_val] = ACTIONS(5468), + [aux_sym_char_token1] = ACTIONS(5466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5468), + [anon_sym_DQUOTE] = ACTIONS(5468), + [anon_sym_AT_DQUOTE] = ACTIONS(5466), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5466), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5466), + [sym_bool] = ACTIONS(5468), + [sym_unit] = ACTIONS(5466), + [anon_sym_LPAREN_PIPE] = ACTIONS(5468), + [sym_op_identifier] = ACTIONS(5466), + [anon_sym_PLUS] = ACTIONS(5468), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_PLUS_DOT] = ACTIONS(5466), + [anon_sym_DASH_DOT] = ACTIONS(5466), + [anon_sym_PERCENT] = ACTIONS(5466), + [anon_sym_AMP_AMP] = ACTIONS(5466), + [anon_sym_TILDE] = ACTIONS(5466), + [aux_sym_prefix_op_token1] = ACTIONS(5466), + [sym_int] = ACTIONS(5468), + [sym_xint] = ACTIONS(5466), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5466), + [anon_sym_POUNDload] = ACTIONS(5466), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5466), + [sym__dedent] = ACTIONS(5466), + }, + [3205] = { + [sym_xml_doc] = STATE(3205), + [sym_block_comment] = STATE(3205), + [sym_line_comment] = STATE(3205), + [sym_compiler_directive_decl] = STATE(3205), + [sym_fsi_directive_decl] = STATE(3205), + [sym_preproc_line] = STATE(3205), + [sym_identifier] = ACTIONS(5484), + [anon_sym_module] = ACTIONS(5484), + [anon_sym_open] = ACTIONS(5484), + [anon_sym_LBRACK_LT] = ACTIONS(5482), + [anon_sym_return] = ACTIONS(5484), + [anon_sym_type] = ACTIONS(5484), + [anon_sym_do] = ACTIONS(5484), + [anon_sym_and] = ACTIONS(5484), + [anon_sym_let] = ACTIONS(5484), + [anon_sym_let_BANG] = ACTIONS(5482), + [aux_sym_access_modifier_token1] = ACTIONS(5482), + [anon_sym_LPAREN] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), + [anon_sym_AMP] = ACTIONS(5484), + [anon_sym_LBRACK] = ACTIONS(5484), + [anon_sym_LBRACK_PIPE] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5484), + [anon_sym_LT_AT] = ACTIONS(5484), + [anon_sym_LT_AT_AT] = ACTIONS(5482), + [anon_sym_LBRACE_PIPE] = ACTIONS(5482), + [anon_sym_new] = ACTIONS(5484), + [anon_sym_return_BANG] = ACTIONS(5482), + [anon_sym_yield] = ACTIONS(5484), + [anon_sym_yield_BANG] = ACTIONS(5482), + [anon_sym_lazy] = ACTIONS(5484), + [anon_sym_assert] = ACTIONS(5484), + [anon_sym_upcast] = ACTIONS(5484), + [anon_sym_downcast] = ACTIONS(5484), + [anon_sym_for] = ACTIONS(5484), + [anon_sym_while] = ACTIONS(5484), + [anon_sym_if] = ACTIONS(5484), + [anon_sym_fun] = ACTIONS(5484), + [anon_sym_try] = ACTIONS(5484), + [anon_sym_match] = ACTIONS(5484), + [anon_sym_match_BANG] = ACTIONS(5482), + [anon_sym_function] = ACTIONS(5484), + [anon_sym_use] = ACTIONS(5484), + [anon_sym_use_BANG] = ACTIONS(5482), + [anon_sym_do_BANG] = ACTIONS(5482), + [anon_sym_begin] = ACTIONS(5484), + [anon_sym_default] = ACTIONS(5484), + [anon_sym_static] = ACTIONS(5484), + [anon_sym_member] = ACTIONS(5484), + [anon_sym_abstract] = ACTIONS(5484), + [anon_sym_override] = ACTIONS(5484), + [anon_sym_val] = ACTIONS(5484), + [aux_sym_char_token1] = ACTIONS(5482), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5484), + [anon_sym_DQUOTE] = ACTIONS(5484), + [anon_sym_AT_DQUOTE] = ACTIONS(5482), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5482), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5482), + [sym_bool] = ACTIONS(5484), + [sym_unit] = ACTIONS(5482), + [anon_sym_LPAREN_PIPE] = ACTIONS(5484), + [sym_op_identifier] = ACTIONS(5482), + [anon_sym_PLUS] = ACTIONS(5484), + [anon_sym_DASH] = ACTIONS(5484), + [anon_sym_PLUS_DOT] = ACTIONS(5482), + [anon_sym_DASH_DOT] = ACTIONS(5482), + [anon_sym_PERCENT] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_TILDE] = ACTIONS(5482), + [aux_sym_prefix_op_token1] = ACTIONS(5482), + [sym_int] = ACTIONS(5484), + [sym_xint] = ACTIONS(5482), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5482), + [anon_sym_POUNDload] = ACTIONS(5482), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5482), + [sym__dedent] = ACTIONS(5482), + }, + [3206] = { + [sym_xml_doc] = STATE(3206), + [sym_block_comment] = STATE(3206), + [sym_line_comment] = STATE(3206), + [sym_compiler_directive_decl] = STATE(3206), + [sym_fsi_directive_decl] = STATE(3206), + [sym_preproc_line] = STATE(3206), + [sym_identifier] = ACTIONS(5454), + [anon_sym_module] = ACTIONS(5454), + [anon_sym_open] = ACTIONS(5454), + [anon_sym_LBRACK_LT] = ACTIONS(5452), + [anon_sym_return] = ACTIONS(5454), + [anon_sym_type] = ACTIONS(5454), + [anon_sym_do] = ACTIONS(5454), + [anon_sym_and] = ACTIONS(5454), + [anon_sym_let] = ACTIONS(5454), + [anon_sym_let_BANG] = ACTIONS(5452), + [aux_sym_access_modifier_token1] = ACTIONS(5452), + [anon_sym_LPAREN] = ACTIONS(5454), + [anon_sym_null] = ACTIONS(5454), + [anon_sym_AMP] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(5454), + [anon_sym_LBRACK_PIPE] = ACTIONS(5452), + [anon_sym_LBRACE] = ACTIONS(5454), + [anon_sym_LT_AT] = ACTIONS(5454), + [anon_sym_LT_AT_AT] = ACTIONS(5452), + [anon_sym_LBRACE_PIPE] = ACTIONS(5452), + [anon_sym_new] = ACTIONS(5454), + [anon_sym_return_BANG] = ACTIONS(5452), + [anon_sym_yield] = ACTIONS(5454), + [anon_sym_yield_BANG] = ACTIONS(5452), + [anon_sym_lazy] = ACTIONS(5454), + [anon_sym_assert] = ACTIONS(5454), + [anon_sym_upcast] = ACTIONS(5454), + [anon_sym_downcast] = ACTIONS(5454), + [anon_sym_for] = ACTIONS(5454), + [anon_sym_while] = ACTIONS(5454), + [anon_sym_if] = ACTIONS(5454), + [anon_sym_fun] = ACTIONS(5454), + [anon_sym_try] = ACTIONS(5454), + [anon_sym_match] = ACTIONS(5454), + [anon_sym_match_BANG] = ACTIONS(5452), + [anon_sym_function] = ACTIONS(5454), + [anon_sym_use] = ACTIONS(5454), + [anon_sym_use_BANG] = ACTIONS(5452), + [anon_sym_do_BANG] = ACTIONS(5452), + [anon_sym_begin] = ACTIONS(5454), + [anon_sym_default] = ACTIONS(5454), + [anon_sym_static] = ACTIONS(5454), + [anon_sym_member] = ACTIONS(5454), + [anon_sym_abstract] = ACTIONS(5454), + [anon_sym_override] = ACTIONS(5454), + [anon_sym_val] = ACTIONS(5454), + [aux_sym_char_token1] = ACTIONS(5452), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5454), + [anon_sym_AT_DQUOTE] = ACTIONS(5452), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5452), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5452), + [sym_bool] = ACTIONS(5454), + [sym_unit] = ACTIONS(5452), + [anon_sym_LPAREN_PIPE] = ACTIONS(5454), + [sym_op_identifier] = ACTIONS(5452), + [anon_sym_PLUS] = ACTIONS(5454), + [anon_sym_DASH] = ACTIONS(5454), + [anon_sym_PLUS_DOT] = ACTIONS(5452), + [anon_sym_DASH_DOT] = ACTIONS(5452), + [anon_sym_PERCENT] = ACTIONS(5452), + [anon_sym_AMP_AMP] = ACTIONS(5452), + [anon_sym_TILDE] = ACTIONS(5452), + [aux_sym_prefix_op_token1] = ACTIONS(5452), + [sym_int] = ACTIONS(5454), + [sym_xint] = ACTIONS(5452), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5452), + [anon_sym_POUNDload] = ACTIONS(5452), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5452), + [sym__dedent] = ACTIONS(5452), + }, + [3207] = { + [sym_xml_doc] = STATE(3207), + [sym_block_comment] = STATE(3207), + [sym_line_comment] = STATE(3207), + [sym_compiler_directive_decl] = STATE(3207), + [sym_fsi_directive_decl] = STATE(3207), + [sym_preproc_line] = STATE(3207), + [sym_identifier] = ACTIONS(5504), + [anon_sym_module] = ACTIONS(5504), + [anon_sym_open] = ACTIONS(5504), + [anon_sym_LBRACK_LT] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5504), + [anon_sym_type] = ACTIONS(5504), + [anon_sym_do] = ACTIONS(5504), + [anon_sym_and] = ACTIONS(5504), + [anon_sym_let] = ACTIONS(5504), + [anon_sym_let_BANG] = ACTIONS(5502), + [aux_sym_access_modifier_token1] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5504), + [anon_sym_null] = ACTIONS(5504), + [anon_sym_AMP] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_LBRACK_PIPE] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5504), + [anon_sym_LT_AT] = ACTIONS(5504), + [anon_sym_LT_AT_AT] = ACTIONS(5502), + [anon_sym_LBRACE_PIPE] = ACTIONS(5502), + [anon_sym_new] = ACTIONS(5504), + [anon_sym_return_BANG] = ACTIONS(5502), + [anon_sym_yield] = ACTIONS(5504), + [anon_sym_yield_BANG] = ACTIONS(5502), + [anon_sym_lazy] = ACTIONS(5504), + [anon_sym_assert] = ACTIONS(5504), + [anon_sym_upcast] = ACTIONS(5504), + [anon_sym_downcast] = ACTIONS(5504), + [anon_sym_for] = ACTIONS(5504), + [anon_sym_while] = ACTIONS(5504), + [anon_sym_if] = ACTIONS(5504), + [anon_sym_fun] = ACTIONS(5504), + [anon_sym_try] = ACTIONS(5504), + [anon_sym_match] = ACTIONS(5504), + [anon_sym_match_BANG] = ACTIONS(5502), + [anon_sym_function] = ACTIONS(5504), + [anon_sym_use] = ACTIONS(5504), + [anon_sym_use_BANG] = ACTIONS(5502), + [anon_sym_do_BANG] = ACTIONS(5502), + [anon_sym_begin] = ACTIONS(5504), + [anon_sym_default] = ACTIONS(5504), + [anon_sym_static] = ACTIONS(5504), + [anon_sym_member] = ACTIONS(5504), + [anon_sym_abstract] = ACTIONS(5504), + [anon_sym_override] = ACTIONS(5504), + [anon_sym_val] = ACTIONS(5504), + [aux_sym_char_token1] = ACTIONS(5502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5504), + [anon_sym_DQUOTE] = ACTIONS(5504), + [anon_sym_AT_DQUOTE] = ACTIONS(5502), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5502), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5502), + [sym_bool] = ACTIONS(5504), + [sym_unit] = ACTIONS(5502), + [anon_sym_LPAREN_PIPE] = ACTIONS(5504), + [sym_op_identifier] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5504), + [anon_sym_PLUS_DOT] = ACTIONS(5502), + [anon_sym_DASH_DOT] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_AMP_AMP] = ACTIONS(5502), + [anon_sym_TILDE] = ACTIONS(5502), + [aux_sym_prefix_op_token1] = ACTIONS(5502), + [sym_int] = ACTIONS(5504), + [sym_xint] = ACTIONS(5502), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5502), + [anon_sym_POUNDload] = ACTIONS(5502), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5502), + [sym__dedent] = ACTIONS(5502), + }, + [3208] = { + [sym_xml_doc] = STATE(3208), + [sym_block_comment] = STATE(3208), + [sym_line_comment] = STATE(3208), + [sym_compiler_directive_decl] = STATE(3208), + [sym_fsi_directive_decl] = STATE(3208), + [sym_preproc_line] = STATE(3208), + [sym_identifier] = ACTIONS(5508), + [anon_sym_module] = ACTIONS(5508), + [anon_sym_open] = ACTIONS(5508), + [anon_sym_LBRACK_LT] = ACTIONS(5506), + [anon_sym_return] = ACTIONS(5508), + [anon_sym_type] = ACTIONS(5508), + [anon_sym_do] = ACTIONS(5508), + [anon_sym_and] = ACTIONS(5508), + [anon_sym_let] = ACTIONS(5508), + [anon_sym_let_BANG] = ACTIONS(5506), + [aux_sym_access_modifier_token1] = ACTIONS(5506), + [anon_sym_LPAREN] = ACTIONS(5508), + [anon_sym_null] = ACTIONS(5508), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_LBRACK_PIPE] = ACTIONS(5506), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_LT_AT] = ACTIONS(5508), + [anon_sym_LT_AT_AT] = ACTIONS(5506), + [anon_sym_LBRACE_PIPE] = ACTIONS(5506), + [anon_sym_new] = ACTIONS(5508), + [anon_sym_return_BANG] = ACTIONS(5506), + [anon_sym_yield] = ACTIONS(5508), + [anon_sym_yield_BANG] = ACTIONS(5506), + [anon_sym_lazy] = ACTIONS(5508), + [anon_sym_assert] = ACTIONS(5508), + [anon_sym_upcast] = ACTIONS(5508), + [anon_sym_downcast] = ACTIONS(5508), + [anon_sym_for] = ACTIONS(5508), + [anon_sym_while] = ACTIONS(5508), + [anon_sym_if] = ACTIONS(5508), + [anon_sym_fun] = ACTIONS(5508), + [anon_sym_try] = ACTIONS(5508), + [anon_sym_match] = ACTIONS(5508), + [anon_sym_match_BANG] = ACTIONS(5506), + [anon_sym_function] = ACTIONS(5508), + [anon_sym_use] = ACTIONS(5508), + [anon_sym_use_BANG] = ACTIONS(5506), + [anon_sym_do_BANG] = ACTIONS(5506), + [anon_sym_begin] = ACTIONS(5508), + [anon_sym_default] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5508), + [anon_sym_member] = ACTIONS(5508), + [anon_sym_abstract] = ACTIONS(5508), + [anon_sym_override] = ACTIONS(5508), + [anon_sym_val] = ACTIONS(5508), + [aux_sym_char_token1] = ACTIONS(5506), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5508), + [anon_sym_DQUOTE] = ACTIONS(5508), + [anon_sym_AT_DQUOTE] = ACTIONS(5506), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5506), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5506), + [sym_bool] = ACTIONS(5508), + [sym_unit] = ACTIONS(5506), + [anon_sym_LPAREN_PIPE] = ACTIONS(5508), + [sym_op_identifier] = ACTIONS(5506), + [anon_sym_PLUS] = ACTIONS(5508), + [anon_sym_DASH] = ACTIONS(5508), + [anon_sym_PLUS_DOT] = ACTIONS(5506), + [anon_sym_DASH_DOT] = ACTIONS(5506), + [anon_sym_PERCENT] = ACTIONS(5506), + [anon_sym_AMP_AMP] = ACTIONS(5506), + [anon_sym_TILDE] = ACTIONS(5506), + [aux_sym_prefix_op_token1] = ACTIONS(5506), + [sym_int] = ACTIONS(5508), + [sym_xint] = ACTIONS(5506), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5506), + [anon_sym_POUNDload] = ACTIONS(5506), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5506), + [sym__dedent] = ACTIONS(5506), + }, + [3209] = { + [sym_attributes] = STATE(8336), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3209), + [sym_block_comment] = STATE(3209), + [sym_line_comment] = STATE(3209), + [sym_compiler_directive_decl] = STATE(3209), + [sym_fsi_directive_decl] = STATE(3209), + [sym_preproc_line] = STATE(3209), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3211), + [ts_builtin_sym_end] = ACTIONS(5526), + [sym_identifier] = ACTIONS(5528), + [anon_sym_namespace] = ACTIONS(5528), + [anon_sym_module] = ACTIONS(5528), + [anon_sym_open] = ACTIONS(5528), + [anon_sym_LBRACK_LT] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_do] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5530), + [anon_sym_let] = ACTIONS(5528), + [anon_sym_let_BANG] = ACTIONS(5526), + [anon_sym_LPAREN] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5528), + [anon_sym_LBRACK_PIPE] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5528), + [anon_sym_LT_AT] = ACTIONS(5528), + [anon_sym_LT_AT_AT] = ACTIONS(5526), + [anon_sym_LBRACE_PIPE] = ACTIONS(5526), + [anon_sym_new] = ACTIONS(5528), + [anon_sym_return_BANG] = ACTIONS(5526), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_yield_BANG] = ACTIONS(5526), + [anon_sym_lazy] = ACTIONS(5528), + [anon_sym_assert] = ACTIONS(5528), + [anon_sym_upcast] = ACTIONS(5528), + [anon_sym_downcast] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_fun] = ACTIONS(5528), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_match_BANG] = ACTIONS(5526), + [anon_sym_function] = ACTIONS(5528), + [anon_sym_use] = ACTIONS(5528), + [anon_sym_use_BANG] = ACTIONS(5526), + [anon_sym_do_BANG] = ACTIONS(5526), + [anon_sym_begin] = ACTIONS(5528), + [aux_sym_char_token1] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_AT_DQUOTE] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [sym_bool] = ACTIONS(5528), + [sym_unit] = ACTIONS(5526), + [anon_sym_LPAREN_PIPE] = ACTIONS(5528), + [sym_op_identifier] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_PLUS_DOT] = ACTIONS(5526), + [anon_sym_DASH_DOT] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_TILDE] = ACTIONS(5526), + [aux_sym_prefix_op_token1] = ACTIONS(5526), + [sym_int] = ACTIONS(5528), + [sym_xint] = ACTIONS(5526), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5526), + [anon_sym_POUNDload] = ACTIONS(5526), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5526), + }, + [3210] = { + [sym_attributes] = STATE(8336), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3210), + [sym_block_comment] = STATE(3210), + [sym_line_comment] = STATE(3210), + [sym_compiler_directive_decl] = STATE(3210), + [sym_fsi_directive_decl] = STATE(3210), + [sym_preproc_line] = STATE(3210), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3213), + [ts_builtin_sym_end] = ACTIONS(5532), + [sym_identifier] = ACTIONS(5534), + [anon_sym_namespace] = ACTIONS(5534), + [anon_sym_module] = ACTIONS(5534), + [anon_sym_open] = ACTIONS(5534), + [anon_sym_LBRACK_LT] = ACTIONS(5532), + [anon_sym_return] = ACTIONS(5534), + [anon_sym_type] = ACTIONS(5534), + [anon_sym_do] = ACTIONS(5534), + [anon_sym_and] = ACTIONS(5530), + [anon_sym_let] = ACTIONS(5534), + [anon_sym_let_BANG] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_null] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_LBRACK_PIPE] = ACTIONS(5532), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_LT_AT] = ACTIONS(5534), + [anon_sym_LT_AT_AT] = ACTIONS(5532), + [anon_sym_LBRACE_PIPE] = ACTIONS(5532), + [anon_sym_new] = ACTIONS(5534), + [anon_sym_return_BANG] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5534), + [anon_sym_yield_BANG] = ACTIONS(5532), + [anon_sym_lazy] = ACTIONS(5534), + [anon_sym_assert] = ACTIONS(5534), + [anon_sym_upcast] = ACTIONS(5534), + [anon_sym_downcast] = ACTIONS(5534), + [anon_sym_for] = ACTIONS(5534), + [anon_sym_while] = ACTIONS(5534), + [anon_sym_if] = ACTIONS(5534), + [anon_sym_fun] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5534), + [anon_sym_match] = ACTIONS(5534), + [anon_sym_match_BANG] = ACTIONS(5532), + [anon_sym_function] = ACTIONS(5534), + [anon_sym_use] = ACTIONS(5534), + [anon_sym_use_BANG] = ACTIONS(5532), + [anon_sym_do_BANG] = ACTIONS(5532), + [anon_sym_begin] = ACTIONS(5534), + [aux_sym_char_token1] = ACTIONS(5532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [anon_sym_AT_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5532), + [sym_bool] = ACTIONS(5534), + [sym_unit] = ACTIONS(5532), + [anon_sym_LPAREN_PIPE] = ACTIONS(5534), + [sym_op_identifier] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_PLUS_DOT] = ACTIONS(5532), + [anon_sym_DASH_DOT] = ACTIONS(5532), + [anon_sym_PERCENT] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5532), + [aux_sym_prefix_op_token1] = ACTIONS(5532), + [sym_int] = ACTIONS(5534), + [sym_xint] = ACTIONS(5532), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5532), + [anon_sym_POUNDload] = ACTIONS(5532), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5532), + }, + [3211] = { + [sym_attributes] = STATE(8336), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3211), + [sym_block_comment] = STATE(3211), + [sym_line_comment] = STATE(3211), + [sym_compiler_directive_decl] = STATE(3211), + [sym_fsi_directive_decl] = STATE(3211), + [sym_preproc_line] = STATE(3211), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3212), + [ts_builtin_sym_end] = ACTIONS(5536), + [sym_identifier] = ACTIONS(5538), + [anon_sym_namespace] = ACTIONS(5538), + [anon_sym_module] = ACTIONS(5538), + [anon_sym_open] = ACTIONS(5538), + [anon_sym_LBRACK_LT] = ACTIONS(5536), + [anon_sym_return] = ACTIONS(5538), + [anon_sym_type] = ACTIONS(5538), + [anon_sym_do] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5530), + [anon_sym_let] = ACTIONS(5538), + [anon_sym_let_BANG] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_null] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_LBRACK_PIPE] = ACTIONS(5536), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_LT_AT] = ACTIONS(5538), + [anon_sym_LT_AT_AT] = ACTIONS(5536), + [anon_sym_LBRACE_PIPE] = ACTIONS(5536), + [anon_sym_new] = ACTIONS(5538), + [anon_sym_return_BANG] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5538), + [anon_sym_yield_BANG] = ACTIONS(5536), + [anon_sym_lazy] = ACTIONS(5538), + [anon_sym_assert] = ACTIONS(5538), + [anon_sym_upcast] = ACTIONS(5538), + [anon_sym_downcast] = ACTIONS(5538), + [anon_sym_for] = ACTIONS(5538), + [anon_sym_while] = ACTIONS(5538), + [anon_sym_if] = ACTIONS(5538), + [anon_sym_fun] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5538), + [anon_sym_match] = ACTIONS(5538), + [anon_sym_match_BANG] = ACTIONS(5536), + [anon_sym_function] = ACTIONS(5538), + [anon_sym_use] = ACTIONS(5538), + [anon_sym_use_BANG] = ACTIONS(5536), + [anon_sym_do_BANG] = ACTIONS(5536), + [anon_sym_begin] = ACTIONS(5538), + [aux_sym_char_token1] = ACTIONS(5536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [anon_sym_AT_DQUOTE] = ACTIONS(5536), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), + [sym_bool] = ACTIONS(5538), + [sym_unit] = ACTIONS(5536), + [anon_sym_LPAREN_PIPE] = ACTIONS(5538), + [sym_op_identifier] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5538), + [anon_sym_PLUS_DOT] = ACTIONS(5536), + [anon_sym_DASH_DOT] = ACTIONS(5536), + [anon_sym_PERCENT] = ACTIONS(5536), + [anon_sym_AMP_AMP] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5536), + [aux_sym_prefix_op_token1] = ACTIONS(5536), + [sym_int] = ACTIONS(5538), + [sym_xint] = ACTIONS(5536), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5536), + [anon_sym_POUNDload] = ACTIONS(5536), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5536), + }, + [3212] = { + [sym_attributes] = STATE(8336), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3212), + [sym_block_comment] = STATE(3212), + [sym_line_comment] = STATE(3212), + [sym_compiler_directive_decl] = STATE(3212), + [sym_fsi_directive_decl] = STATE(3212), + [sym_preproc_line] = STATE(3212), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3212), + [ts_builtin_sym_end] = ACTIONS(5540), + [sym_identifier] = ACTIONS(5542), + [anon_sym_namespace] = ACTIONS(5542), + [anon_sym_module] = ACTIONS(5542), + [anon_sym_open] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_return] = ACTIONS(5542), + [anon_sym_type] = ACTIONS(5542), + [anon_sym_do] = ACTIONS(5542), + [anon_sym_and] = ACTIONS(5547), + [anon_sym_let] = ACTIONS(5542), + [anon_sym_let_BANG] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_null] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_LBRACK_PIPE] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_LT_AT] = ACTIONS(5542), + [anon_sym_LT_AT_AT] = ACTIONS(5540), + [anon_sym_LBRACE_PIPE] = ACTIONS(5540), + [anon_sym_new] = ACTIONS(5542), + [anon_sym_return_BANG] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5542), + [anon_sym_yield_BANG] = ACTIONS(5540), + [anon_sym_lazy] = ACTIONS(5542), + [anon_sym_assert] = ACTIONS(5542), + [anon_sym_upcast] = ACTIONS(5542), + [anon_sym_downcast] = ACTIONS(5542), + [anon_sym_for] = ACTIONS(5542), + [anon_sym_while] = ACTIONS(5542), + [anon_sym_if] = ACTIONS(5542), + [anon_sym_fun] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5542), + [anon_sym_match] = ACTIONS(5542), + [anon_sym_match_BANG] = ACTIONS(5540), + [anon_sym_function] = ACTIONS(5542), + [anon_sym_use] = ACTIONS(5542), + [anon_sym_use_BANG] = ACTIONS(5540), + [anon_sym_do_BANG] = ACTIONS(5540), + [anon_sym_begin] = ACTIONS(5542), + [aux_sym_char_token1] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_AT_DQUOTE] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [sym_bool] = ACTIONS(5542), + [sym_unit] = ACTIONS(5540), + [anon_sym_LPAREN_PIPE] = ACTIONS(5542), + [sym_op_identifier] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PLUS_DOT] = ACTIONS(5540), + [anon_sym_DASH_DOT] = ACTIONS(5540), + [anon_sym_PERCENT] = ACTIONS(5540), + [anon_sym_AMP_AMP] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5540), + [aux_sym_prefix_op_token1] = ACTIONS(5540), + [sym_int] = ACTIONS(5542), + [sym_xint] = ACTIONS(5540), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5540), + [anon_sym_POUNDload] = ACTIONS(5540), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5540), + }, + [3213] = { + [sym_attributes] = STATE(8336), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3213), + [sym_block_comment] = STATE(3213), + [sym_line_comment] = STATE(3213), + [sym_compiler_directive_decl] = STATE(3213), + [sym_fsi_directive_decl] = STATE(3213), + [sym_preproc_line] = STATE(3213), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3212), + [ts_builtin_sym_end] = ACTIONS(5526), + [sym_identifier] = ACTIONS(5528), + [anon_sym_namespace] = ACTIONS(5528), + [anon_sym_module] = ACTIONS(5528), + [anon_sym_open] = ACTIONS(5528), + [anon_sym_LBRACK_LT] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_do] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5530), + [anon_sym_let] = ACTIONS(5528), + [anon_sym_let_BANG] = ACTIONS(5526), + [anon_sym_LPAREN] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5528), + [anon_sym_LBRACK_PIPE] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5528), + [anon_sym_LT_AT] = ACTIONS(5528), + [anon_sym_LT_AT_AT] = ACTIONS(5526), + [anon_sym_LBRACE_PIPE] = ACTIONS(5526), + [anon_sym_new] = ACTIONS(5528), + [anon_sym_return_BANG] = ACTIONS(5526), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_yield_BANG] = ACTIONS(5526), + [anon_sym_lazy] = ACTIONS(5528), + [anon_sym_assert] = ACTIONS(5528), + [anon_sym_upcast] = ACTIONS(5528), + [anon_sym_downcast] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_fun] = ACTIONS(5528), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_match_BANG] = ACTIONS(5526), + [anon_sym_function] = ACTIONS(5528), + [anon_sym_use] = ACTIONS(5528), + [anon_sym_use_BANG] = ACTIONS(5526), + [anon_sym_do_BANG] = ACTIONS(5526), + [anon_sym_begin] = ACTIONS(5528), + [aux_sym_char_token1] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_AT_DQUOTE] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [sym_bool] = ACTIONS(5528), + [sym_unit] = ACTIONS(5526), + [anon_sym_LPAREN_PIPE] = ACTIONS(5528), + [sym_op_identifier] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_PLUS_DOT] = ACTIONS(5526), + [anon_sym_DASH_DOT] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_TILDE] = ACTIONS(5526), + [aux_sym_prefix_op_token1] = ACTIONS(5526), + [sym_int] = ACTIONS(5528), + [sym_xint] = ACTIONS(5526), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5526), + [anon_sym_POUNDload] = ACTIONS(5526), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5526), + }, + [3214] = { + [sym_interface_implementation] = STATE(3239), + [sym_xml_doc] = STATE(3214), + [sym_block_comment] = STATE(3214), + [sym_line_comment] = STATE(3214), + [sym_compiler_directive_decl] = STATE(3214), + [sym_fsi_directive_decl] = STATE(3214), + [sym_preproc_line] = STATE(3214), + [aux_sym__object_expression_inner_repeat1] = STATE(3214), + [ts_builtin_sym_end] = ACTIONS(5550), + [sym_identifier] = ACTIONS(5552), + [anon_sym_namespace] = ACTIONS(5552), + [anon_sym_module] = ACTIONS(5552), + [anon_sym_open] = ACTIONS(5552), + [anon_sym_LBRACK_LT] = ACTIONS(5550), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_let] = ACTIONS(5552), + [anon_sym_let_BANG] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_AMP] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5552), + [anon_sym_LBRACK_PIPE] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5552), + [anon_sym_LT_AT] = ACTIONS(5552), + [anon_sym_LT_AT_AT] = ACTIONS(5550), + [anon_sym_LBRACE_PIPE] = ACTIONS(5550), + [anon_sym_new] = ACTIONS(5552), + [anon_sym_return_BANG] = ACTIONS(5550), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_yield_BANG] = ACTIONS(5550), + [anon_sym_lazy] = ACTIONS(5552), + [anon_sym_assert] = ACTIONS(5552), + [anon_sym_upcast] = ACTIONS(5552), + [anon_sym_downcast] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_fun] = ACTIONS(5552), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_match_BANG] = ACTIONS(5550), + [anon_sym_function] = ACTIONS(5552), + [anon_sym_use] = ACTIONS(5552), + [anon_sym_use_BANG] = ACTIONS(5550), + [anon_sym_do_BANG] = ACTIONS(5550), + [anon_sym_begin] = ACTIONS(5552), + [anon_sym_interface] = ACTIONS(5554), + [aux_sym_char_token1] = ACTIONS(5550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5552), + [anon_sym_DQUOTE] = ACTIONS(5552), + [anon_sym_AT_DQUOTE] = ACTIONS(5550), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5550), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5550), + [sym_bool] = ACTIONS(5552), + [sym_unit] = ACTIONS(5550), + [anon_sym_LPAREN_PIPE] = ACTIONS(5552), + [sym_op_identifier] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5552), + [anon_sym_PLUS_DOT] = ACTIONS(5550), + [anon_sym_DASH_DOT] = ACTIONS(5550), + [anon_sym_PERCENT] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_TILDE] = ACTIONS(5550), + [aux_sym_prefix_op_token1] = ACTIONS(5550), + [sym_int] = ACTIONS(5552), + [sym_xint] = ACTIONS(5550), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5550), + [anon_sym_POUNDload] = ACTIONS(5550), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5550), + }, + [3215] = { + [sym_attributes] = STATE(7215), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3215), + [sym_block_comment] = STATE(3215), + [sym_line_comment] = STATE(3215), + [sym_compiler_directive_decl] = STATE(3215), + [sym_fsi_directive_decl] = STATE(3215), + [sym_preproc_line] = STATE(3215), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3215), + [sym_identifier] = ACTIONS(5542), + [anon_sym_module] = ACTIONS(5542), + [anon_sym_open] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5544), + [anon_sym_return] = ACTIONS(5542), + [anon_sym_type] = ACTIONS(5542), + [anon_sym_do] = ACTIONS(5542), + [anon_sym_and] = ACTIONS(5557), + [anon_sym_let] = ACTIONS(5542), + [anon_sym_let_BANG] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_null] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_LBRACK_PIPE] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_LT_AT] = ACTIONS(5542), + [anon_sym_LT_AT_AT] = ACTIONS(5540), + [anon_sym_LBRACE_PIPE] = ACTIONS(5540), + [anon_sym_new] = ACTIONS(5542), + [anon_sym_return_BANG] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5542), + [anon_sym_yield_BANG] = ACTIONS(5540), + [anon_sym_lazy] = ACTIONS(5542), + [anon_sym_assert] = ACTIONS(5542), + [anon_sym_upcast] = ACTIONS(5542), + [anon_sym_downcast] = ACTIONS(5542), + [anon_sym_for] = ACTIONS(5542), + [anon_sym_while] = ACTIONS(5542), + [anon_sym_if] = ACTIONS(5542), + [anon_sym_fun] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5542), + [anon_sym_match] = ACTIONS(5542), + [anon_sym_match_BANG] = ACTIONS(5540), + [anon_sym_function] = ACTIONS(5542), + [anon_sym_use] = ACTIONS(5542), + [anon_sym_use_BANG] = ACTIONS(5540), + [anon_sym_do_BANG] = ACTIONS(5540), + [anon_sym_begin] = ACTIONS(5542), + [aux_sym_char_token1] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_AT_DQUOTE] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [sym_bool] = ACTIONS(5542), + [sym_unit] = ACTIONS(5540), + [anon_sym_LPAREN_PIPE] = ACTIONS(5542), + [sym_op_identifier] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PLUS_DOT] = ACTIONS(5540), + [anon_sym_DASH_DOT] = ACTIONS(5540), + [anon_sym_PERCENT] = ACTIONS(5540), + [anon_sym_AMP_AMP] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5540), + [aux_sym_prefix_op_token1] = ACTIONS(5540), + [sym_int] = ACTIONS(5542), + [sym_xint] = ACTIONS(5540), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5540), + [anon_sym_POUNDload] = ACTIONS(5540), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5540), + [sym__dedent] = ACTIONS(5540), + }, + [3216] = { + [sym_attributes] = STATE(7215), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3216), + [sym_block_comment] = STATE(3216), + [sym_line_comment] = STATE(3216), + [sym_compiler_directive_decl] = STATE(3216), + [sym_fsi_directive_decl] = STATE(3216), + [sym_preproc_line] = STATE(3216), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3219), + [sym_identifier] = ACTIONS(5528), + [anon_sym_module] = ACTIONS(5528), + [anon_sym_open] = ACTIONS(5528), + [anon_sym_LBRACK_LT] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_do] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_let] = ACTIONS(5528), + [anon_sym_let_BANG] = ACTIONS(5526), + [anon_sym_LPAREN] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5528), + [anon_sym_LBRACK_PIPE] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5528), + [anon_sym_LT_AT] = ACTIONS(5528), + [anon_sym_LT_AT_AT] = ACTIONS(5526), + [anon_sym_LBRACE_PIPE] = ACTIONS(5526), + [anon_sym_new] = ACTIONS(5528), + [anon_sym_return_BANG] = ACTIONS(5526), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_yield_BANG] = ACTIONS(5526), + [anon_sym_lazy] = ACTIONS(5528), + [anon_sym_assert] = ACTIONS(5528), + [anon_sym_upcast] = ACTIONS(5528), + [anon_sym_downcast] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_fun] = ACTIONS(5528), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_match_BANG] = ACTIONS(5526), + [anon_sym_function] = ACTIONS(5528), + [anon_sym_use] = ACTIONS(5528), + [anon_sym_use_BANG] = ACTIONS(5526), + [anon_sym_do_BANG] = ACTIONS(5526), + [anon_sym_begin] = ACTIONS(5528), + [aux_sym_char_token1] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_AT_DQUOTE] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [sym_bool] = ACTIONS(5528), + [sym_unit] = ACTIONS(5526), + [anon_sym_LPAREN_PIPE] = ACTIONS(5528), + [sym_op_identifier] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_PLUS_DOT] = ACTIONS(5526), + [anon_sym_DASH_DOT] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_TILDE] = ACTIONS(5526), + [aux_sym_prefix_op_token1] = ACTIONS(5526), + [sym_int] = ACTIONS(5528), + [sym_xint] = ACTIONS(5526), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5526), + [anon_sym_POUNDload] = ACTIONS(5526), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5526), + [sym__dedent] = ACTIONS(5526), + }, + [3217] = { + [sym_attributes] = STATE(7215), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3217), + [sym_block_comment] = STATE(3217), + [sym_line_comment] = STATE(3217), + [sym_compiler_directive_decl] = STATE(3217), + [sym_fsi_directive_decl] = STATE(3217), + [sym_preproc_line] = STATE(3217), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3218), + [sym_identifier] = ACTIONS(5534), + [anon_sym_module] = ACTIONS(5534), + [anon_sym_open] = ACTIONS(5534), + [anon_sym_LBRACK_LT] = ACTIONS(5532), + [anon_sym_return] = ACTIONS(5534), + [anon_sym_type] = ACTIONS(5534), + [anon_sym_do] = ACTIONS(5534), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_let] = ACTIONS(5534), + [anon_sym_let_BANG] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5534), + [anon_sym_null] = ACTIONS(5534), + [anon_sym_AMP] = ACTIONS(5534), + [anon_sym_LBRACK] = ACTIONS(5534), + [anon_sym_LBRACK_PIPE] = ACTIONS(5532), + [anon_sym_LBRACE] = ACTIONS(5534), + [anon_sym_LT_AT] = ACTIONS(5534), + [anon_sym_LT_AT_AT] = ACTIONS(5532), + [anon_sym_LBRACE_PIPE] = ACTIONS(5532), + [anon_sym_new] = ACTIONS(5534), + [anon_sym_return_BANG] = ACTIONS(5532), + [anon_sym_yield] = ACTIONS(5534), + [anon_sym_yield_BANG] = ACTIONS(5532), + [anon_sym_lazy] = ACTIONS(5534), + [anon_sym_assert] = ACTIONS(5534), + [anon_sym_upcast] = ACTIONS(5534), + [anon_sym_downcast] = ACTIONS(5534), + [anon_sym_for] = ACTIONS(5534), + [anon_sym_while] = ACTIONS(5534), + [anon_sym_if] = ACTIONS(5534), + [anon_sym_fun] = ACTIONS(5534), + [anon_sym_try] = ACTIONS(5534), + [anon_sym_match] = ACTIONS(5534), + [anon_sym_match_BANG] = ACTIONS(5532), + [anon_sym_function] = ACTIONS(5534), + [anon_sym_use] = ACTIONS(5534), + [anon_sym_use_BANG] = ACTIONS(5532), + [anon_sym_do_BANG] = ACTIONS(5532), + [anon_sym_begin] = ACTIONS(5534), + [aux_sym_char_token1] = ACTIONS(5532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5534), + [anon_sym_DQUOTE] = ACTIONS(5534), + [anon_sym_AT_DQUOTE] = ACTIONS(5532), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5532), + [sym_bool] = ACTIONS(5534), + [sym_unit] = ACTIONS(5532), + [anon_sym_LPAREN_PIPE] = ACTIONS(5534), + [sym_op_identifier] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5534), + [anon_sym_DASH] = ACTIONS(5534), + [anon_sym_PLUS_DOT] = ACTIONS(5532), + [anon_sym_DASH_DOT] = ACTIONS(5532), + [anon_sym_PERCENT] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_TILDE] = ACTIONS(5532), + [aux_sym_prefix_op_token1] = ACTIONS(5532), + [sym_int] = ACTIONS(5534), + [sym_xint] = ACTIONS(5532), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5532), + [anon_sym_POUNDload] = ACTIONS(5532), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5532), + [sym__dedent] = ACTIONS(5532), + }, + [3218] = { + [sym_attributes] = STATE(7215), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3218), + [sym_block_comment] = STATE(3218), + [sym_line_comment] = STATE(3218), + [sym_compiler_directive_decl] = STATE(3218), + [sym_fsi_directive_decl] = STATE(3218), + [sym_preproc_line] = STATE(3218), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3215), + [sym_identifier] = ACTIONS(5528), + [anon_sym_module] = ACTIONS(5528), + [anon_sym_open] = ACTIONS(5528), + [anon_sym_LBRACK_LT] = ACTIONS(5526), + [anon_sym_return] = ACTIONS(5528), + [anon_sym_type] = ACTIONS(5528), + [anon_sym_do] = ACTIONS(5528), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_let] = ACTIONS(5528), + [anon_sym_let_BANG] = ACTIONS(5526), + [anon_sym_LPAREN] = ACTIONS(5528), + [anon_sym_null] = ACTIONS(5528), + [anon_sym_AMP] = ACTIONS(5528), + [anon_sym_LBRACK] = ACTIONS(5528), + [anon_sym_LBRACK_PIPE] = ACTIONS(5526), + [anon_sym_LBRACE] = ACTIONS(5528), + [anon_sym_LT_AT] = ACTIONS(5528), + [anon_sym_LT_AT_AT] = ACTIONS(5526), + [anon_sym_LBRACE_PIPE] = ACTIONS(5526), + [anon_sym_new] = ACTIONS(5528), + [anon_sym_return_BANG] = ACTIONS(5526), + [anon_sym_yield] = ACTIONS(5528), + [anon_sym_yield_BANG] = ACTIONS(5526), + [anon_sym_lazy] = ACTIONS(5528), + [anon_sym_assert] = ACTIONS(5528), + [anon_sym_upcast] = ACTIONS(5528), + [anon_sym_downcast] = ACTIONS(5528), + [anon_sym_for] = ACTIONS(5528), + [anon_sym_while] = ACTIONS(5528), + [anon_sym_if] = ACTIONS(5528), + [anon_sym_fun] = ACTIONS(5528), + [anon_sym_try] = ACTIONS(5528), + [anon_sym_match] = ACTIONS(5528), + [anon_sym_match_BANG] = ACTIONS(5526), + [anon_sym_function] = ACTIONS(5528), + [anon_sym_use] = ACTIONS(5528), + [anon_sym_use_BANG] = ACTIONS(5526), + [anon_sym_do_BANG] = ACTIONS(5526), + [anon_sym_begin] = ACTIONS(5528), + [aux_sym_char_token1] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5528), + [anon_sym_DQUOTE] = ACTIONS(5528), + [anon_sym_AT_DQUOTE] = ACTIONS(5526), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5526), + [sym_bool] = ACTIONS(5528), + [sym_unit] = ACTIONS(5526), + [anon_sym_LPAREN_PIPE] = ACTIONS(5528), + [sym_op_identifier] = ACTIONS(5526), + [anon_sym_PLUS] = ACTIONS(5528), + [anon_sym_DASH] = ACTIONS(5528), + [anon_sym_PLUS_DOT] = ACTIONS(5526), + [anon_sym_DASH_DOT] = ACTIONS(5526), + [anon_sym_PERCENT] = ACTIONS(5526), + [anon_sym_AMP_AMP] = ACTIONS(5526), + [anon_sym_TILDE] = ACTIONS(5526), + [aux_sym_prefix_op_token1] = ACTIONS(5526), + [sym_int] = ACTIONS(5528), + [sym_xint] = ACTIONS(5526), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5526), + [anon_sym_POUNDload] = ACTIONS(5526), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5526), + [sym__dedent] = ACTIONS(5526), + }, + [3219] = { + [sym_attributes] = STATE(7215), + [sym_attribute_set] = STATE(4720), + [sym_xml_doc] = STATE(3219), + [sym_block_comment] = STATE(3219), + [sym_line_comment] = STATE(3219), + [sym_compiler_directive_decl] = STATE(3219), + [sym_fsi_directive_decl] = STATE(3219), + [sym_preproc_line] = STATE(3219), + [aux_sym_attributes_repeat1] = STATE(4296), + [aux_sym_type_definition_repeat1] = STATE(3215), + [sym_identifier] = ACTIONS(5538), + [anon_sym_module] = ACTIONS(5538), + [anon_sym_open] = ACTIONS(5538), + [anon_sym_LBRACK_LT] = ACTIONS(5536), + [anon_sym_return] = ACTIONS(5538), + [anon_sym_type] = ACTIONS(5538), + [anon_sym_do] = ACTIONS(5538), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_let] = ACTIONS(5538), + [anon_sym_let_BANG] = ACTIONS(5536), + [anon_sym_LPAREN] = ACTIONS(5538), + [anon_sym_null] = ACTIONS(5538), + [anon_sym_AMP] = ACTIONS(5538), + [anon_sym_LBRACK] = ACTIONS(5538), + [anon_sym_LBRACK_PIPE] = ACTIONS(5536), + [anon_sym_LBRACE] = ACTIONS(5538), + [anon_sym_LT_AT] = ACTIONS(5538), + [anon_sym_LT_AT_AT] = ACTIONS(5536), + [anon_sym_LBRACE_PIPE] = ACTIONS(5536), + [anon_sym_new] = ACTIONS(5538), + [anon_sym_return_BANG] = ACTIONS(5536), + [anon_sym_yield] = ACTIONS(5538), + [anon_sym_yield_BANG] = ACTIONS(5536), + [anon_sym_lazy] = ACTIONS(5538), + [anon_sym_assert] = ACTIONS(5538), + [anon_sym_upcast] = ACTIONS(5538), + [anon_sym_downcast] = ACTIONS(5538), + [anon_sym_for] = ACTIONS(5538), + [anon_sym_while] = ACTIONS(5538), + [anon_sym_if] = ACTIONS(5538), + [anon_sym_fun] = ACTIONS(5538), + [anon_sym_try] = ACTIONS(5538), + [anon_sym_match] = ACTIONS(5538), + [anon_sym_match_BANG] = ACTIONS(5536), + [anon_sym_function] = ACTIONS(5538), + [anon_sym_use] = ACTIONS(5538), + [anon_sym_use_BANG] = ACTIONS(5536), + [anon_sym_do_BANG] = ACTIONS(5536), + [anon_sym_begin] = ACTIONS(5538), + [aux_sym_char_token1] = ACTIONS(5536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [anon_sym_AT_DQUOTE] = ACTIONS(5536), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5536), + [sym_bool] = ACTIONS(5538), + [sym_unit] = ACTIONS(5536), + [anon_sym_LPAREN_PIPE] = ACTIONS(5538), + [sym_op_identifier] = ACTIONS(5536), + [anon_sym_PLUS] = ACTIONS(5538), + [anon_sym_DASH] = ACTIONS(5538), + [anon_sym_PLUS_DOT] = ACTIONS(5536), + [anon_sym_DASH_DOT] = ACTIONS(5536), + [anon_sym_PERCENT] = ACTIONS(5536), + [anon_sym_AMP_AMP] = ACTIONS(5536), + [anon_sym_TILDE] = ACTIONS(5536), + [aux_sym_prefix_op_token1] = ACTIONS(5536), + [sym_int] = ACTIONS(5538), + [sym_xint] = ACTIONS(5536), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5536), + [anon_sym_POUNDload] = ACTIONS(5536), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5536), + [sym__dedent] = ACTIONS(5536), + }, + [3220] = { + [sym_interface_implementation] = STATE(3239), + [sym_xml_doc] = STATE(3220), + [sym_block_comment] = STATE(3220), + [sym_line_comment] = STATE(3220), + [sym_compiler_directive_decl] = STATE(3220), + [sym_fsi_directive_decl] = STATE(3220), + [sym_preproc_line] = STATE(3220), + [aux_sym__object_expression_inner_repeat1] = STATE(3214), + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_namespace] = ACTIONS(5564), + [anon_sym_module] = ACTIONS(5564), + [anon_sym_open] = ACTIONS(5564), + [anon_sym_LBRACK_LT] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_do] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_let] = ACTIONS(5564), + [anon_sym_let_BANG] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_LBRACK_PIPE] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5564), + [anon_sym_LT_AT] = ACTIONS(5564), + [anon_sym_LT_AT_AT] = ACTIONS(5562), + [anon_sym_LBRACE_PIPE] = ACTIONS(5562), + [anon_sym_new] = ACTIONS(5564), + [anon_sym_return_BANG] = ACTIONS(5562), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_yield_BANG] = ACTIONS(5562), + [anon_sym_lazy] = ACTIONS(5564), + [anon_sym_assert] = ACTIONS(5564), + [anon_sym_upcast] = ACTIONS(5564), + [anon_sym_downcast] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_fun] = ACTIONS(5564), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_match_BANG] = ACTIONS(5562), + [anon_sym_function] = ACTIONS(5564), + [anon_sym_use] = ACTIONS(5564), + [anon_sym_use_BANG] = ACTIONS(5562), + [anon_sym_do_BANG] = ACTIONS(5562), + [anon_sym_begin] = ACTIONS(5564), + [anon_sym_interface] = ACTIONS(5566), + [aux_sym_char_token1] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5564), + [anon_sym_DQUOTE] = ACTIONS(5564), + [anon_sym_AT_DQUOTE] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [sym_bool] = ACTIONS(5564), + [sym_unit] = ACTIONS(5562), + [anon_sym_LPAREN_PIPE] = ACTIONS(5564), + [sym_op_identifier] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS_DOT] = ACTIONS(5562), + [anon_sym_DASH_DOT] = ACTIONS(5562), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_TILDE] = ACTIONS(5562), + [aux_sym_prefix_op_token1] = ACTIONS(5562), + [sym_int] = ACTIONS(5564), + [sym_xint] = ACTIONS(5562), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5562), + [anon_sym_POUNDload] = ACTIONS(5562), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5562), + }, + [3221] = { + [sym_xml_doc] = STATE(3221), + [sym_block_comment] = STATE(3221), + [sym_line_comment] = STATE(3221), + [sym_compiler_directive_decl] = STATE(3221), + [sym_fsi_directive_decl] = STATE(3221), + [sym_preproc_line] = STATE(3221), + [aux_sym_type_argument_repeat1] = STATE(3221), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(5568), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + }, + [3222] = { + [sym_xml_doc] = STATE(3222), + [sym_block_comment] = STATE(3222), + [sym_line_comment] = STATE(3222), + [sym_compiler_directive_decl] = STATE(3222), + [sym_fsi_directive_decl] = STATE(3222), + [sym_preproc_line] = STATE(3222), + [aux_sym_type_argument_repeat1] = STATE(3231), + [sym_identifier] = ACTIONS(3230), + [anon_sym_GT_RBRACK] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(5571), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__newline] = ACTIONS(3232), + }, + [3223] = { + [sym_type_arguments] = STATE(3352), + [sym_long_identifier] = STATE(3355), + [sym_xml_doc] = STATE(3223), + [sym_block_comment] = STATE(3223), + [sym_line_comment] = STATE(3223), + [sym_compiler_directive_decl] = STATE(3223), + [sym_fsi_directive_decl] = STATE(3223), + [sym_preproc_line] = STATE(3223), + [aux_sym__compound_type_repeat1] = STATE(3272), + [sym_identifier] = ACTIONS(5573), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_with] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + }, + [3224] = { + [sym_interface_implementation] = STATE(3318), + [sym_xml_doc] = STATE(3224), + [sym_block_comment] = STATE(3224), + [sym_line_comment] = STATE(3224), + [sym_compiler_directive_decl] = STATE(3224), + [sym_fsi_directive_decl] = STATE(3224), + [sym_preproc_line] = STATE(3224), + [aux_sym__object_expression_inner_repeat1] = STATE(3226), + [sym_identifier] = ACTIONS(5564), + [anon_sym_module] = ACTIONS(5564), + [anon_sym_open] = ACTIONS(5564), + [anon_sym_LBRACK_LT] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_do] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_let] = ACTIONS(5564), + [anon_sym_let_BANG] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_LBRACK_PIPE] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5564), + [anon_sym_LT_AT] = ACTIONS(5564), + [anon_sym_LT_AT_AT] = ACTIONS(5562), + [anon_sym_LBRACE_PIPE] = ACTIONS(5562), + [anon_sym_new] = ACTIONS(5564), + [anon_sym_return_BANG] = ACTIONS(5562), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_yield_BANG] = ACTIONS(5562), + [anon_sym_lazy] = ACTIONS(5564), + [anon_sym_assert] = ACTIONS(5564), + [anon_sym_upcast] = ACTIONS(5564), + [anon_sym_downcast] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_fun] = ACTIONS(5564), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_match_BANG] = ACTIONS(5562), + [anon_sym_function] = ACTIONS(5564), + [anon_sym_use] = ACTIONS(5564), + [anon_sym_use_BANG] = ACTIONS(5562), + [anon_sym_do_BANG] = ACTIONS(5562), + [anon_sym_begin] = ACTIONS(5564), + [anon_sym_interface] = ACTIONS(5575), + [aux_sym_char_token1] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5564), + [anon_sym_DQUOTE] = ACTIONS(5564), + [anon_sym_AT_DQUOTE] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [sym_bool] = ACTIONS(5564), + [sym_unit] = ACTIONS(5562), + [anon_sym_LPAREN_PIPE] = ACTIONS(5564), + [sym_op_identifier] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS_DOT] = ACTIONS(5562), + [anon_sym_DASH_DOT] = ACTIONS(5562), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_TILDE] = ACTIONS(5562), + [aux_sym_prefix_op_token1] = ACTIONS(5562), + [sym_int] = ACTIONS(5564), + [sym_xint] = ACTIONS(5562), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5562), + [anon_sym_POUNDload] = ACTIONS(5562), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5562), + [sym__dedent] = ACTIONS(5562), + }, + [3225] = { + [sym_xml_doc] = STATE(3225), + [sym_block_comment] = STATE(3225), + [sym_line_comment] = STATE(3225), + [sym_compiler_directive_decl] = STATE(3225), + [sym_fsi_directive_decl] = STATE(3225), + [sym_preproc_line] = STATE(3225), + [aux_sym_type_argument_repeat1] = STATE(3221), + [sym_identifier] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(5577), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + }, + [3226] = { + [sym_interface_implementation] = STATE(3318), + [sym_xml_doc] = STATE(3226), + [sym_block_comment] = STATE(3226), + [sym_line_comment] = STATE(3226), + [sym_compiler_directive_decl] = STATE(3226), + [sym_fsi_directive_decl] = STATE(3226), + [sym_preproc_line] = STATE(3226), + [aux_sym__object_expression_inner_repeat1] = STATE(3226), + [sym_identifier] = ACTIONS(5552), + [anon_sym_module] = ACTIONS(5552), + [anon_sym_open] = ACTIONS(5552), + [anon_sym_LBRACK_LT] = ACTIONS(5550), + [anon_sym_return] = ACTIONS(5552), + [anon_sym_type] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5552), + [anon_sym_and] = ACTIONS(5552), + [anon_sym_let] = ACTIONS(5552), + [anon_sym_let_BANG] = ACTIONS(5550), + [anon_sym_LPAREN] = ACTIONS(5552), + [anon_sym_null] = ACTIONS(5552), + [anon_sym_AMP] = ACTIONS(5552), + [anon_sym_LBRACK] = ACTIONS(5552), + [anon_sym_LBRACK_PIPE] = ACTIONS(5550), + [anon_sym_LBRACE] = ACTIONS(5552), + [anon_sym_LT_AT] = ACTIONS(5552), + [anon_sym_LT_AT_AT] = ACTIONS(5550), + [anon_sym_LBRACE_PIPE] = ACTIONS(5550), + [anon_sym_new] = ACTIONS(5552), + [anon_sym_return_BANG] = ACTIONS(5550), + [anon_sym_yield] = ACTIONS(5552), + [anon_sym_yield_BANG] = ACTIONS(5550), + [anon_sym_lazy] = ACTIONS(5552), + [anon_sym_assert] = ACTIONS(5552), + [anon_sym_upcast] = ACTIONS(5552), + [anon_sym_downcast] = ACTIONS(5552), + [anon_sym_for] = ACTIONS(5552), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_if] = ACTIONS(5552), + [anon_sym_fun] = ACTIONS(5552), + [anon_sym_try] = ACTIONS(5552), + [anon_sym_match] = ACTIONS(5552), + [anon_sym_match_BANG] = ACTIONS(5550), + [anon_sym_function] = ACTIONS(5552), + [anon_sym_use] = ACTIONS(5552), + [anon_sym_use_BANG] = ACTIONS(5550), + [anon_sym_do_BANG] = ACTIONS(5550), + [anon_sym_begin] = ACTIONS(5552), + [anon_sym_interface] = ACTIONS(5579), + [aux_sym_char_token1] = ACTIONS(5550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5552), + [anon_sym_DQUOTE] = ACTIONS(5552), + [anon_sym_AT_DQUOTE] = ACTIONS(5550), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5550), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5550), + [sym_bool] = ACTIONS(5552), + [sym_unit] = ACTIONS(5550), + [anon_sym_LPAREN_PIPE] = ACTIONS(5552), + [sym_op_identifier] = ACTIONS(5550), + [anon_sym_PLUS] = ACTIONS(5552), + [anon_sym_DASH] = ACTIONS(5552), + [anon_sym_PLUS_DOT] = ACTIONS(5550), + [anon_sym_DASH_DOT] = ACTIONS(5550), + [anon_sym_PERCENT] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_TILDE] = ACTIONS(5550), + [aux_sym_prefix_op_token1] = ACTIONS(5550), + [sym_int] = ACTIONS(5552), + [sym_xint] = ACTIONS(5550), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5550), + [anon_sym_POUNDload] = ACTIONS(5550), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5550), + [sym__dedent] = ACTIONS(5550), + }, + [3227] = { + [sym_type_arguments] = STATE(3352), + [sym_long_identifier] = STATE(3355), + [sym_xml_doc] = STATE(3227), + [sym_block_comment] = STATE(3227), + [sym_line_comment] = STATE(3227), + [sym_compiler_directive_decl] = STATE(3227), + [sym_fsi_directive_decl] = STATE(3227), + [sym_preproc_line] = STATE(3227), + [aux_sym__compound_type_repeat1] = STATE(3272), + [sym_identifier] = ACTIONS(5573), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + }, + [3228] = { + [sym_xml_doc] = STATE(3228), + [sym_block_comment] = STATE(3228), + [sym_line_comment] = STATE(3228), + [sym_compiler_directive_decl] = STATE(3228), + [sym_fsi_directive_decl] = STATE(3228), + [sym_preproc_line] = STATE(3228), + [aux_sym_type_argument_repeat1] = STATE(3225), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(5577), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + }, + [3229] = { + [sym_type_arguments] = STATE(3352), + [sym_long_identifier] = STATE(3355), + [sym_xml_doc] = STATE(3229), + [sym_block_comment] = STATE(3229), + [sym_line_comment] = STATE(3229), + [sym_compiler_directive_decl] = STATE(3229), + [sym_fsi_directive_decl] = STATE(3229), + [sym_preproc_line] = STATE(3229), + [aux_sym__compound_type_repeat1] = STATE(3272), + [sym_identifier] = ACTIONS(5573), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + }, + [3230] = { + [sym_type_arguments] = STATE(3352), + [sym_long_identifier] = STATE(3355), + [sym_xml_doc] = STATE(3230), + [sym_block_comment] = STATE(3230), + [sym_line_comment] = STATE(3230), + [sym_compiler_directive_decl] = STATE(3230), + [sym_fsi_directive_decl] = STATE(3230), + [sym_preproc_line] = STATE(3230), + [aux_sym__compound_type_repeat1] = STATE(3272), + [sym_identifier] = ACTIONS(5573), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_with] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(2319), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2321), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + }, + [3231] = { + [sym_xml_doc] = STATE(3231), + [sym_block_comment] = STATE(3231), + [sym_line_comment] = STATE(3231), + [sym_compiler_directive_decl] = STATE(3231), + [sym_fsi_directive_decl] = STATE(3231), + [sym_preproc_line] = STATE(3231), + [aux_sym_type_argument_repeat1] = STATE(3231), + [sym_identifier] = ACTIONS(3274), + [anon_sym_GT_RBRACK] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(5582), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + }, + [3232] = { + [sym_type_arguments] = STATE(3367), + [sym_long_identifier] = STATE(3325), + [sym_xml_doc] = STATE(3232), + [sym_block_comment] = STATE(3232), + [sym_line_comment] = STATE(3232), + [sym_compiler_directive_decl] = STATE(3232), + [sym_fsi_directive_decl] = STATE(3232), + [sym_preproc_line] = STATE(3232), + [aux_sym__compound_type_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(5585), + [anon_sym_GT_RBRACK] = ACTIONS(3010), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(2299), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2301), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__newline] = ACTIONS(3010), + }, + [3233] = { + [sym_type_arguments] = STATE(3367), + [sym_long_identifier] = STATE(3325), + [sym_xml_doc] = STATE(3233), + [sym_block_comment] = STATE(3233), + [sym_line_comment] = STATE(3233), + [sym_compiler_directive_decl] = STATE(3233), + [sym_fsi_directive_decl] = STATE(3233), + [sym_preproc_line] = STATE(3233), + [aux_sym__compound_type_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(5585), + [anon_sym_GT_RBRACK] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(2299), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2301), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + }, + [3234] = { + [sym_type_arguments] = STATE(3367), + [sym_long_identifier] = STATE(3325), + [sym_xml_doc] = STATE(3234), + [sym_block_comment] = STATE(3234), + [sym_line_comment] = STATE(3234), + [sym_compiler_directive_decl] = STATE(3234), + [sym_fsi_directive_decl] = STATE(3234), + [sym_preproc_line] = STATE(3234), + [aux_sym__compound_type_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(5585), + [anon_sym_GT_RBRACK] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(2299), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2301), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__newline] = ACTIONS(3090), + }, + [3235] = { + [sym_xml_doc] = STATE(3235), + [sym_block_comment] = STATE(3235), + [sym_line_comment] = STATE(3235), + [sym_compiler_directive_decl] = STATE(3235), + [sym_fsi_directive_decl] = STATE(3235), + [sym_preproc_line] = STATE(3235), + [aux_sym_type_argument_repeat1] = STATE(3222), + [sym_identifier] = ACTIONS(3242), + [anon_sym_GT_RBRACK] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(5571), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + }, + [3236] = { + [sym_type_arguments] = STATE(3367), + [sym_long_identifier] = STATE(3325), + [sym_xml_doc] = STATE(3236), + [sym_block_comment] = STATE(3236), + [sym_line_comment] = STATE(3236), + [sym_compiler_directive_decl] = STATE(3236), + [sym_fsi_directive_decl] = STATE(3236), + [sym_preproc_line] = STATE(3236), + [aux_sym__compound_type_repeat1] = STATE(3277), + [sym_identifier] = ACTIONS(5585), + [anon_sym_GT_RBRACK] = ACTIONS(3022), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(2299), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2301), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__newline] = ACTIONS(3022), + }, + [3237] = { + [sym_xml_doc] = STATE(3237), + [sym_block_comment] = STATE(3237), + [sym_line_comment] = STATE(3237), + [sym_compiler_directive_decl] = STATE(3237), + [sym_fsi_directive_decl] = STATE(3237), + [sym_preproc_line] = STATE(3237), + [aux_sym_long_identifier_repeat1] = STATE(3264), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + }, + [3238] = { + [sym_type_arguments] = STATE(3431), + [sym_long_identifier] = STATE(3450), + [sym_xml_doc] = STATE(3238), + [sym_block_comment] = STATE(3238), + [sym_line_comment] = STATE(3238), + [sym_compiler_directive_decl] = STATE(3238), + [sym_fsi_directive_decl] = STATE(3238), + [sym_preproc_line] = STATE(3238), + [aux_sym__compound_type_repeat1] = STATE(3413), + [sym_identifier] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + [sym__dedent] = ACTIONS(3010), + }, + [3239] = { + [sym_xml_doc] = STATE(3239), + [sym_block_comment] = STATE(3239), + [sym_line_comment] = STATE(3239), + [sym_compiler_directive_decl] = STATE(3239), + [sym_fsi_directive_decl] = STATE(3239), + [sym_preproc_line] = STATE(3239), + [ts_builtin_sym_end] = ACTIONS(5591), + [sym_identifier] = ACTIONS(5593), + [anon_sym_namespace] = ACTIONS(5593), + [anon_sym_module] = ACTIONS(5593), + [anon_sym_open] = ACTIONS(5593), + [anon_sym_LBRACK_LT] = ACTIONS(5591), + [anon_sym_return] = ACTIONS(5593), + [anon_sym_type] = ACTIONS(5593), + [anon_sym_do] = ACTIONS(5593), + [anon_sym_and] = ACTIONS(5593), + [anon_sym_let] = ACTIONS(5593), + [anon_sym_let_BANG] = ACTIONS(5591), + [anon_sym_LPAREN] = ACTIONS(5593), + [anon_sym_null] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_LBRACK_PIPE] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_LT_AT] = ACTIONS(5593), + [anon_sym_LT_AT_AT] = ACTIONS(5591), + [anon_sym_LBRACE_PIPE] = ACTIONS(5591), + [anon_sym_new] = ACTIONS(5593), + [anon_sym_return_BANG] = ACTIONS(5591), + [anon_sym_yield] = ACTIONS(5593), + [anon_sym_yield_BANG] = ACTIONS(5591), + [anon_sym_lazy] = ACTIONS(5593), + [anon_sym_assert] = ACTIONS(5593), + [anon_sym_upcast] = ACTIONS(5593), + [anon_sym_downcast] = ACTIONS(5593), + [anon_sym_for] = ACTIONS(5593), + [anon_sym_while] = ACTIONS(5593), + [anon_sym_if] = ACTIONS(5593), + [anon_sym_fun] = ACTIONS(5593), + [anon_sym_try] = ACTIONS(5593), + [anon_sym_match] = ACTIONS(5593), + [anon_sym_match_BANG] = ACTIONS(5591), + [anon_sym_function] = ACTIONS(5593), + [anon_sym_use] = ACTIONS(5593), + [anon_sym_use_BANG] = ACTIONS(5591), + [anon_sym_do_BANG] = ACTIONS(5591), + [anon_sym_begin] = ACTIONS(5593), + [anon_sym_interface] = ACTIONS(5593), + [aux_sym_char_token1] = ACTIONS(5591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5593), + [anon_sym_DQUOTE] = ACTIONS(5593), + [anon_sym_AT_DQUOTE] = ACTIONS(5591), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5591), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5591), + [sym_bool] = ACTIONS(5593), + [sym_unit] = ACTIONS(5591), + [anon_sym_LPAREN_PIPE] = ACTIONS(5593), + [sym_op_identifier] = ACTIONS(5591), + [anon_sym_PLUS] = ACTIONS(5593), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_PLUS_DOT] = ACTIONS(5591), + [anon_sym_DASH_DOT] = ACTIONS(5591), + [anon_sym_PERCENT] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [aux_sym_prefix_op_token1] = ACTIONS(5591), + [sym_int] = ACTIONS(5593), + [sym_xint] = ACTIONS(5591), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5591), + [anon_sym_POUNDload] = ACTIONS(5591), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5591), + }, + [3240] = { + [sym_xml_doc] = STATE(3240), + [sym_block_comment] = STATE(3240), + [sym_line_comment] = STATE(3240), + [sym_compiler_directive_decl] = STATE(3240), + [sym_fsi_directive_decl] = STATE(3240), + [sym_preproc_line] = STATE(3240), + [aux_sym_long_identifier_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(3257), + [anon_sym_GT_RBRACK] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5595), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__newline] = ACTIONS(3259), + }, + [3241] = { + [sym_xml_doc] = STATE(3241), + [sym_block_comment] = STATE(3241), + [sym_line_comment] = STATE(3241), + [sym_compiler_directive_decl] = STATE(3241), + [sym_fsi_directive_decl] = STATE(3241), + [sym_preproc_line] = STATE(3241), + [ts_builtin_sym_end] = ACTIONS(5597), + [sym_identifier] = ACTIONS(5599), + [anon_sym_namespace] = ACTIONS(5599), + [anon_sym_module] = ACTIONS(5599), + [anon_sym_open] = ACTIONS(5599), + [anon_sym_LBRACK_LT] = ACTIONS(5597), + [anon_sym_return] = ACTIONS(5599), + [anon_sym_type] = ACTIONS(5599), + [anon_sym_do] = ACTIONS(5599), + [anon_sym_and] = ACTIONS(5599), + [anon_sym_let] = ACTIONS(5599), + [anon_sym_let_BANG] = ACTIONS(5597), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_null] = ACTIONS(5599), + [anon_sym_AMP] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5599), + [anon_sym_LBRACK_PIPE] = ACTIONS(5597), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_LT_AT] = ACTIONS(5599), + [anon_sym_LT_AT_AT] = ACTIONS(5597), + [anon_sym_LBRACE_PIPE] = ACTIONS(5597), + [anon_sym_new] = ACTIONS(5599), + [anon_sym_return_BANG] = ACTIONS(5597), + [anon_sym_yield] = ACTIONS(5599), + [anon_sym_yield_BANG] = ACTIONS(5597), + [anon_sym_lazy] = ACTIONS(5599), + [anon_sym_assert] = ACTIONS(5599), + [anon_sym_upcast] = ACTIONS(5599), + [anon_sym_downcast] = ACTIONS(5599), + [anon_sym_for] = ACTIONS(5599), + [anon_sym_while] = ACTIONS(5599), + [anon_sym_if] = ACTIONS(5599), + [anon_sym_fun] = ACTIONS(5599), + [anon_sym_try] = ACTIONS(5599), + [anon_sym_match] = ACTIONS(5599), + [anon_sym_match_BANG] = ACTIONS(5597), + [anon_sym_function] = ACTIONS(5599), + [anon_sym_use] = ACTIONS(5599), + [anon_sym_use_BANG] = ACTIONS(5597), + [anon_sym_do_BANG] = ACTIONS(5597), + [anon_sym_begin] = ACTIONS(5599), + [anon_sym_interface] = ACTIONS(5599), + [aux_sym_char_token1] = ACTIONS(5597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5599), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_AT_DQUOTE] = ACTIONS(5597), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5597), + [sym_bool] = ACTIONS(5599), + [sym_unit] = ACTIONS(5597), + [anon_sym_LPAREN_PIPE] = ACTIONS(5599), + [sym_op_identifier] = ACTIONS(5597), + [anon_sym_PLUS] = ACTIONS(5599), + [anon_sym_DASH] = ACTIONS(5599), + [anon_sym_PLUS_DOT] = ACTIONS(5597), + [anon_sym_DASH_DOT] = ACTIONS(5597), + [anon_sym_PERCENT] = ACTIONS(5597), + [anon_sym_AMP_AMP] = ACTIONS(5597), + [anon_sym_TILDE] = ACTIONS(5597), + [aux_sym_prefix_op_token1] = ACTIONS(5597), + [sym_int] = ACTIONS(5599), + [sym_xint] = ACTIONS(5597), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5597), + [anon_sym_POUNDload] = ACTIONS(5597), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5597), + }, + [3242] = { + [sym_xml_doc] = STATE(3242), + [sym_block_comment] = STATE(3242), + [sym_line_comment] = STATE(3242), + [sym_compiler_directive_decl] = STATE(3242), + [sym_fsi_directive_decl] = STATE(3242), + [sym_preproc_line] = STATE(3242), + [aux_sym_long_identifier_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + }, + [3243] = { + [sym_xml_doc] = STATE(3243), + [sym_block_comment] = STATE(3243), + [sym_line_comment] = STATE(3243), + [sym_compiler_directive_decl] = STATE(3243), + [sym_fsi_directive_decl] = STATE(3243), + [sym_preproc_line] = STATE(3243), + [aux_sym_long_identifier_repeat1] = STATE(3237), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(5603), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3244] = { + [sym_argument_patterns] = STATE(6607), + [sym__atomic_pattern] = STATE(4407), + [sym_list_pattern] = STATE(4440), + [sym_array_pattern] = STATE(4440), + [sym_record_pattern] = STATE(4440), + [sym_type_arguments] = STATE(3552), + [sym_char] = STATE(4700), + [sym_format_string] = STATE(4664), + [sym__string_literal] = STATE(4664), + [sym_string] = STATE(4700), + [sym_verbatim_string] = STATE(4700), + [sym_bytearray] = STATE(4700), + [sym_verbatim_bytearray] = STATE(4700), + [sym_format_triple_quoted_string] = STATE(4663), + [sym_triple_quoted_string] = STATE(4700), + [sym_const] = STATE(4440), + [sym_long_identifier] = STATE(4440), + [sym_sbyte] = STATE(4700), + [sym_byte] = STATE(4700), + [sym_int16] = STATE(4700), + [sym_uint16] = STATE(4700), + [sym_int32] = STATE(4700), + [sym_uint32] = STATE(4700), + [sym_nativeint] = STATE(4700), + [sym_unativeint] = STATE(4700), + [sym_int64] = STATE(4700), + [sym_uint64] = STATE(4700), + [sym_ieee32] = STATE(4700), + [sym_ieee64] = STATE(4700), + [sym_bignum] = STATE(4700), + [sym_decimal] = STATE(4700), + [sym_float] = STATE(4269), + [sym_xml_doc] = STATE(3244), + [sym_block_comment] = STATE(3244), + [sym_line_comment] = STATE(3244), + [sym_compiler_directive_decl] = STATE(3244), + [sym_fsi_directive_decl] = STATE(3244), + [sym_preproc_line] = STATE(3244), + [aux_sym_argument_patterns_repeat1] = STATE(3545), + [sym_identifier] = ACTIONS(5605), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_COLON_QMARK] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_LBRACK_PIPE] = ACTIONS(5613), + [anon_sym_LBRACE] = ACTIONS(5615), + [anon_sym_LT2] = ACTIONS(5617), + [aux_sym_char_token1] = ACTIONS(5619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(5623), + [anon_sym_AT_DQUOTE] = ACTIONS(5625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5629), + [sym_bool] = ACTIONS(5631), + [sym_unit] = ACTIONS(5633), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3312), + [sym_int] = ACTIONS(5635), + [sym_xint] = ACTIONS(5637), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3245] = { + [sym_xml_doc] = STATE(3245), + [sym_block_comment] = STATE(3245), + [sym_line_comment] = STATE(3245), + [sym_compiler_directive_decl] = STATE(3245), + [sym_fsi_directive_decl] = STATE(3245), + [sym_preproc_line] = STATE(3245), + [aux_sym_long_identifier_repeat1] = STATE(3237), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(5639), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3246] = { + [sym_xml_doc] = STATE(3246), + [sym_block_comment] = STATE(3246), + [sym_line_comment] = STATE(3246), + [sym_compiler_directive_decl] = STATE(3246), + [sym_fsi_directive_decl] = STATE(3246), + [sym_preproc_line] = STATE(3246), + [aux_sym_long_identifier_repeat1] = STATE(3246), + [sym_identifier] = ACTIONS(3285), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5641), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + }, + [3247] = { + [sym_xml_doc] = STATE(3247), + [sym_block_comment] = STATE(3247), + [sym_line_comment] = STATE(3247), + [sym_compiler_directive_decl] = STATE(3247), + [sym_fsi_directive_decl] = STATE(3247), + [sym_preproc_line] = STATE(3247), + [aux_sym_type_argument_repeat1] = STATE(3250), + [sym_identifier] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(5644), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + [sym__dedent] = ACTIONS(3232), + }, + [3248] = { + [sym_xml_doc] = STATE(3248), + [sym_block_comment] = STATE(3248), + [sym_line_comment] = STATE(3248), + [sym_compiler_directive_decl] = STATE(3248), + [sym_fsi_directive_decl] = STATE(3248), + [sym_preproc_line] = STATE(3248), + [aux_sym_long_identifier_repeat1] = STATE(3248), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5646), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3249] = { + [sym_xml_doc] = STATE(3249), + [sym_block_comment] = STATE(3249), + [sym_line_comment] = STATE(3249), + [sym_compiler_directive_decl] = STATE(3249), + [sym_fsi_directive_decl] = STATE(3249), + [sym_preproc_line] = STATE(3249), + [aux_sym__function_or_value_defns_repeat1] = STATE(3265), + [ts_builtin_sym_end] = ACTIONS(5649), + [sym_identifier] = ACTIONS(5651), + [anon_sym_namespace] = ACTIONS(5651), + [anon_sym_module] = ACTIONS(5651), + [anon_sym_open] = ACTIONS(5651), + [anon_sym_LBRACK_LT] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5651), + [anon_sym_assert] = ACTIONS(5651), + [anon_sym_upcast] = ACTIONS(5651), + [anon_sym_downcast] = ACTIONS(5651), + [anon_sym_for] = ACTIONS(5651), + [anon_sym_while] = ACTIONS(5651), + [anon_sym_if] = ACTIONS(5651), + [anon_sym_fun] = ACTIONS(5651), + [anon_sym_try] = ACTIONS(5651), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5649), + [anon_sym_DASH_DOT] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_TILDE] = ACTIONS(5649), + [aux_sym_prefix_op_token1] = ACTIONS(5649), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5649), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5649), + [anon_sym_POUNDload] = ACTIONS(5649), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5649), + }, + [3250] = { + [sym_xml_doc] = STATE(3250), + [sym_block_comment] = STATE(3250), + [sym_line_comment] = STATE(3250), + [sym_compiler_directive_decl] = STATE(3250), + [sym_fsi_directive_decl] = STATE(3250), + [sym_preproc_line] = STATE(3250), + [aux_sym_type_argument_repeat1] = STATE(3250), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(5655), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), + }, + [3251] = { + [sym_xml_doc] = STATE(3251), + [sym_block_comment] = STATE(3251), + [sym_line_comment] = STATE(3251), + [sym_compiler_directive_decl] = STATE(3251), + [sym_fsi_directive_decl] = STATE(3251), + [sym_preproc_line] = STATE(3251), + [aux_sym_long_identifier_repeat1] = STATE(3246), + [sym_identifier] = ACTIONS(3202), + [anon_sym_GT_RBRACK] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5595), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__newline] = ACTIONS(3204), + }, + [3252] = { + [sym_argument_patterns] = STATE(6586), + [sym__atomic_pattern] = STATE(4407), + [sym_list_pattern] = STATE(4440), + [sym_array_pattern] = STATE(4440), + [sym_record_pattern] = STATE(4440), + [sym_type_arguments] = STATE(3547), + [sym_char] = STATE(4700), + [sym_format_string] = STATE(4664), + [sym__string_literal] = STATE(4664), + [sym_string] = STATE(4700), + [sym_verbatim_string] = STATE(4700), + [sym_bytearray] = STATE(4700), + [sym_verbatim_bytearray] = STATE(4700), + [sym_format_triple_quoted_string] = STATE(4663), + [sym_triple_quoted_string] = STATE(4700), + [sym_const] = STATE(4440), + [sym_long_identifier] = STATE(4440), + [sym_sbyte] = STATE(4700), + [sym_byte] = STATE(4700), + [sym_int16] = STATE(4700), + [sym_uint16] = STATE(4700), + [sym_int32] = STATE(4700), + [sym_uint32] = STATE(4700), + [sym_nativeint] = STATE(4700), + [sym_unativeint] = STATE(4700), + [sym_int64] = STATE(4700), + [sym_uint64] = STATE(4700), + [sym_ieee32] = STATE(4700), + [sym_ieee64] = STATE(4700), + [sym_bignum] = STATE(4700), + [sym_decimal] = STATE(4700), + [sym_float] = STATE(4269), + [sym_xml_doc] = STATE(3252), + [sym_block_comment] = STATE(3252), + [sym_line_comment] = STATE(3252), + [sym_compiler_directive_decl] = STATE(3252), + [sym_fsi_directive_decl] = STATE(3252), + [sym_preproc_line] = STATE(3252), + [aux_sym_argument_patterns_repeat1] = STATE(3545), + [sym_identifier] = ACTIONS(5605), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_LBRACK_LT] = ACTIONS(3312), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(5607), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_null] = ACTIONS(5609), + [anon_sym__] = ACTIONS(5609), + [anon_sym_QMARK] = ACTIONS(3312), + [anon_sym_COLON_QMARK] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_LBRACK_PIPE] = ACTIONS(5613), + [anon_sym_LBRACE] = ACTIONS(5615), + [anon_sym_LT2] = ACTIONS(5617), + [aux_sym_char_token1] = ACTIONS(5619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(5623), + [anon_sym_AT_DQUOTE] = ACTIONS(5625), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5629), + [sym_bool] = ACTIONS(5631), + [sym_unit] = ACTIONS(5633), + [anon_sym_LPAREN_PIPE] = ACTIONS(3314), + [sym_op_identifier] = ACTIONS(3312), + [sym_int] = ACTIONS(5635), + [sym_xint] = ACTIONS(5637), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3253] = { + [sym_type_arguments] = STATE(3431), + [sym_long_identifier] = STATE(3450), + [sym_xml_doc] = STATE(3253), + [sym_block_comment] = STATE(3253), + [sym_line_comment] = STATE(3253), + [sym_compiler_directive_decl] = STATE(3253), + [sym_fsi_directive_decl] = STATE(3253), + [sym_preproc_line] = STATE(3253), + [aux_sym__compound_type_repeat1] = STATE(3413), + [sym_identifier] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), + }, + [3254] = { + [sym_xml_doc] = STATE(3254), + [sym_block_comment] = STATE(3254), + [sym_line_comment] = STATE(3254), + [sym_compiler_directive_decl] = STATE(3254), + [sym_fsi_directive_decl] = STATE(3254), + [sym_preproc_line] = STATE(3254), + [aux_sym__function_or_value_defns_repeat1] = STATE(3254), + [ts_builtin_sym_end] = ACTIONS(5658), + [sym_identifier] = ACTIONS(5660), + [anon_sym_namespace] = ACTIONS(5660), + [anon_sym_module] = ACTIONS(5660), + [anon_sym_open] = ACTIONS(5660), + [anon_sym_LBRACK_LT] = ACTIONS(5658), + [anon_sym_return] = ACTIONS(5660), + [anon_sym_type] = ACTIONS(5660), + [anon_sym_do] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5662), + [anon_sym_let] = ACTIONS(5660), + [anon_sym_let_BANG] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_null] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5660), + [anon_sym_LBRACK_PIPE] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5660), + [anon_sym_LT_AT] = ACTIONS(5660), + [anon_sym_LT_AT_AT] = ACTIONS(5658), + [anon_sym_LBRACE_PIPE] = ACTIONS(5658), + [anon_sym_new] = ACTIONS(5660), + [anon_sym_return_BANG] = ACTIONS(5658), + [anon_sym_yield] = ACTIONS(5660), + [anon_sym_yield_BANG] = ACTIONS(5658), + [anon_sym_lazy] = ACTIONS(5660), + [anon_sym_assert] = ACTIONS(5660), + [anon_sym_upcast] = ACTIONS(5660), + [anon_sym_downcast] = ACTIONS(5660), + [anon_sym_for] = ACTIONS(5660), + [anon_sym_while] = ACTIONS(5660), + [anon_sym_if] = ACTIONS(5660), + [anon_sym_fun] = ACTIONS(5660), + [anon_sym_try] = ACTIONS(5660), + [anon_sym_match] = ACTIONS(5660), + [anon_sym_match_BANG] = ACTIONS(5658), + [anon_sym_function] = ACTIONS(5660), + [anon_sym_use] = ACTIONS(5660), + [anon_sym_use_BANG] = ACTIONS(5658), + [anon_sym_do_BANG] = ACTIONS(5658), + [anon_sym_begin] = ACTIONS(5660), + [aux_sym_char_token1] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(5660), + [anon_sym_AT_DQUOTE] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [sym_bool] = ACTIONS(5660), + [sym_unit] = ACTIONS(5658), + [anon_sym_LPAREN_PIPE] = ACTIONS(5660), + [sym_op_identifier] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS_DOT] = ACTIONS(5658), + [anon_sym_DASH_DOT] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_TILDE] = ACTIONS(5658), + [aux_sym_prefix_op_token1] = ACTIONS(5658), + [sym_int] = ACTIONS(5660), + [sym_xint] = ACTIONS(5658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5658), + [anon_sym_POUNDload] = ACTIONS(5658), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5658), + }, + [3255] = { + [sym_type_arguments] = STATE(3431), + [sym_long_identifier] = STATE(3450), + [sym_xml_doc] = STATE(3255), + [sym_block_comment] = STATE(3255), + [sym_line_comment] = STATE(3255), + [sym_compiler_directive_decl] = STATE(3255), + [sym_fsi_directive_decl] = STATE(3255), + [sym_preproc_line] = STATE(3255), + [aux_sym__compound_type_repeat1] = STATE(3413), + [sym_identifier] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + [sym__dedent] = ACTIONS(3022), + }, + [3256] = { + [sym_xml_doc] = STATE(3256), + [sym_block_comment] = STATE(3256), + [sym_line_comment] = STATE(3256), + [sym_compiler_directive_decl] = STATE(3256), + [sym_fsi_directive_decl] = STATE(3256), + [sym_preproc_line] = STATE(3256), + [sym_identifier] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_as] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + }, + [3257] = { + [sym_xml_doc] = STATE(3257), + [sym_block_comment] = STATE(3257), + [sym_line_comment] = STATE(3257), + [sym_compiler_directive_decl] = STATE(3257), + [sym_fsi_directive_decl] = STATE(3257), + [sym_preproc_line] = STATE(3257), + [aux_sym_long_identifier_repeat1] = STATE(3237), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3258] = { + [sym_xml_doc] = STATE(3258), + [sym_block_comment] = STATE(3258), + [sym_line_comment] = STATE(3258), + [sym_compiler_directive_decl] = STATE(3258), + [sym_fsi_directive_decl] = STATE(3258), + [sym_preproc_line] = STATE(3258), + [aux_sym_type_argument_repeat1] = STATE(3247), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(5644), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), + }, + [3259] = { + [sym_xml_doc] = STATE(3259), + [sym_block_comment] = STATE(3259), + [sym_line_comment] = STATE(3259), + [sym_compiler_directive_decl] = STATE(3259), + [sym_fsi_directive_decl] = STATE(3259), + [sym_preproc_line] = STATE(3259), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_as] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + }, + [3260] = { + [sym_type_arguments] = STATE(3431), + [sym_long_identifier] = STATE(3450), + [sym_xml_doc] = STATE(3260), + [sym_block_comment] = STATE(3260), + [sym_line_comment] = STATE(3260), + [sym_compiler_directive_decl] = STATE(3260), + [sym_fsi_directive_decl] = STATE(3260), + [sym_preproc_line] = STATE(3260), + [aux_sym__compound_type_repeat1] = STATE(3413), + [sym_identifier] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2345), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + [sym__dedent] = ACTIONS(3090), + }, + [3261] = { + [sym_xml_doc] = STATE(3261), + [sym_block_comment] = STATE(3261), + [sym_line_comment] = STATE(3261), + [sym_compiler_directive_decl] = STATE(3261), + [sym_fsi_directive_decl] = STATE(3261), + [sym_preproc_line] = STATE(3261), + [aux_sym_long_identifier_repeat1] = STATE(3237), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(5667), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3262] = { + [sym_xml_doc] = STATE(3262), + [sym_block_comment] = STATE(3262), + [sym_line_comment] = STATE(3262), + [sym_compiler_directive_decl] = STATE(3262), + [sym_fsi_directive_decl] = STATE(3262), + [sym_preproc_line] = STATE(3262), + [aux_sym_long_identifier_repeat1] = STATE(3237), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3257), + [anon_sym_namespace] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3263] = { + [sym_xml_doc] = STATE(3263), + [sym_block_comment] = STATE(3263), + [sym_line_comment] = STATE(3263), + [sym_compiler_directive_decl] = STATE(3263), + [sym_fsi_directive_decl] = STATE(3263), + [sym_preproc_line] = STATE(3263), + [sym_identifier] = ACTIONS(3361), + [anon_sym_GT_RBRACK] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__newline] = ACTIONS(3363), + }, + [3264] = { + [sym_xml_doc] = STATE(3264), + [sym_block_comment] = STATE(3264), + [sym_line_comment] = STATE(3264), + [sym_compiler_directive_decl] = STATE(3264), + [sym_fsi_directive_decl] = STATE(3264), + [sym_preproc_line] = STATE(3264), + [aux_sym_long_identifier_repeat1] = STATE(3264), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5669), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3265] = { + [sym_xml_doc] = STATE(3265), + [sym_block_comment] = STATE(3265), + [sym_line_comment] = STATE(3265), + [sym_compiler_directive_decl] = STATE(3265), + [sym_fsi_directive_decl] = STATE(3265), + [sym_preproc_line] = STATE(3265), + [aux_sym__function_or_value_defns_repeat1] = STATE(3254), + [ts_builtin_sym_end] = ACTIONS(5672), + [sym_identifier] = ACTIONS(5674), + [anon_sym_namespace] = ACTIONS(5674), + [anon_sym_module] = ACTIONS(5674), + [anon_sym_open] = ACTIONS(5674), + [anon_sym_LBRACK_LT] = ACTIONS(5672), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_do] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_let] = ACTIONS(5674), + [anon_sym_let_BANG] = ACTIONS(5672), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LBRACK_PIPE] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_LT_AT] = ACTIONS(5674), + [anon_sym_LT_AT_AT] = ACTIONS(5672), + [anon_sym_LBRACE_PIPE] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5674), + [anon_sym_return_BANG] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_yield_BANG] = ACTIONS(5672), + [anon_sym_lazy] = ACTIONS(5674), + [anon_sym_assert] = ACTIONS(5674), + [anon_sym_upcast] = ACTIONS(5674), + [anon_sym_downcast] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_fun] = ACTIONS(5674), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_match_BANG] = ACTIONS(5672), + [anon_sym_function] = ACTIONS(5674), + [anon_sym_use] = ACTIONS(5674), + [anon_sym_use_BANG] = ACTIONS(5672), + [anon_sym_do_BANG] = ACTIONS(5672), + [anon_sym_begin] = ACTIONS(5674), + [aux_sym_char_token1] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [anon_sym_AT_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [sym_bool] = ACTIONS(5674), + [sym_unit] = ACTIONS(5672), + [anon_sym_LPAREN_PIPE] = ACTIONS(5674), + [sym_op_identifier] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS_DOT] = ACTIONS(5672), + [anon_sym_DASH_DOT] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_AMP_AMP] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5672), + [aux_sym_prefix_op_token1] = ACTIONS(5672), + [sym_int] = ACTIONS(5674), + [sym_xint] = ACTIONS(5672), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5672), + [anon_sym_POUNDload] = ACTIONS(5672), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5672), + }, + [3266] = { + [sym_xml_doc] = STATE(3266), + [sym_block_comment] = STATE(3266), + [sym_line_comment] = STATE(3266), + [sym_compiler_directive_decl] = STATE(3266), + [sym_fsi_directive_decl] = STATE(3266), + [sym_preproc_line] = STATE(3266), + [ts_builtin_sym_end] = ACTIONS(5676), + [sym_identifier] = ACTIONS(5678), + [anon_sym_namespace] = ACTIONS(5678), + [anon_sym_module] = ACTIONS(5678), + [anon_sym_open] = ACTIONS(5678), + [anon_sym_LBRACK_LT] = ACTIONS(5676), + [anon_sym_return] = ACTIONS(5678), + [anon_sym_type] = ACTIONS(5678), + [anon_sym_do] = ACTIONS(5678), + [anon_sym_and] = ACTIONS(5678), + [anon_sym_let] = ACTIONS(5678), + [anon_sym_let_BANG] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_null] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACK_PIPE] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LT_AT] = ACTIONS(5678), + [anon_sym_LT_AT_AT] = ACTIONS(5676), + [anon_sym_LBRACE_PIPE] = ACTIONS(5676), + [anon_sym_new] = ACTIONS(5678), + [anon_sym_return_BANG] = ACTIONS(5676), + [anon_sym_yield] = ACTIONS(5678), + [anon_sym_yield_BANG] = ACTIONS(5676), + [anon_sym_lazy] = ACTIONS(5678), + [anon_sym_assert] = ACTIONS(5678), + [anon_sym_upcast] = ACTIONS(5678), + [anon_sym_downcast] = ACTIONS(5678), + [anon_sym_for] = ACTIONS(5678), + [anon_sym_while] = ACTIONS(5678), + [anon_sym_if] = ACTIONS(5678), + [anon_sym_fun] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5678), + [anon_sym_match] = ACTIONS(5678), + [anon_sym_match_BANG] = ACTIONS(5676), + [anon_sym_function] = ACTIONS(5678), + [anon_sym_use] = ACTIONS(5678), + [anon_sym_use_BANG] = ACTIONS(5676), + [anon_sym_do_BANG] = ACTIONS(5676), + [anon_sym_begin] = ACTIONS(5678), + [anon_sym_interface] = ACTIONS(5678), + [aux_sym_char_token1] = ACTIONS(5676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [anon_sym_AT_DQUOTE] = ACTIONS(5676), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5676), + [sym_bool] = ACTIONS(5678), + [sym_unit] = ACTIONS(5676), + [anon_sym_LPAREN_PIPE] = ACTIONS(5678), + [sym_op_identifier] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_PLUS_DOT] = ACTIONS(5676), + [anon_sym_DASH_DOT] = ACTIONS(5676), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5676), + [aux_sym_prefix_op_token1] = ACTIONS(5676), + [sym_int] = ACTIONS(5678), + [sym_xint] = ACTIONS(5676), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5676), + [anon_sym_POUNDload] = ACTIONS(5676), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5676), + }, + [3267] = { + [sym_xml_doc] = STATE(3267), + [sym_block_comment] = STATE(3267), + [sym_line_comment] = STATE(3267), + [sym_compiler_directive_decl] = STATE(3267), + [sym_fsi_directive_decl] = STATE(3267), + [sym_preproc_line] = STATE(3267), + [aux_sym_long_identifier_repeat1] = STATE(3242), + [sym_identifier] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3257), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3268] = { + [sym_xml_doc] = STATE(3268), + [sym_block_comment] = STATE(3268), + [sym_line_comment] = STATE(3268), + [sym_compiler_directive_decl] = STATE(3268), + [sym_fsi_directive_decl] = STATE(3268), + [sym_preproc_line] = STATE(3268), + [sym_identifier] = ACTIONS(3274), + [anon_sym_GT_RBRACK] = ACTIONS(3276), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__newline] = ACTIONS(3276), + }, + [3269] = { + [sym_xml_doc] = STATE(3269), + [sym_block_comment] = STATE(3269), + [sym_line_comment] = STATE(3269), + [sym_compiler_directive_decl] = STATE(3269), + [sym_fsi_directive_decl] = STATE(3269), + [sym_preproc_line] = STATE(3269), + [ts_builtin_sym_end] = ACTIONS(5680), + [sym_identifier] = ACTIONS(5682), + [anon_sym_namespace] = ACTIONS(5682), + [anon_sym_module] = ACTIONS(5682), + [anon_sym_open] = ACTIONS(5682), + [anon_sym_LBRACK_LT] = ACTIONS(5680), + [anon_sym_return] = ACTIONS(5682), + [anon_sym_type] = ACTIONS(5682), + [anon_sym_do] = ACTIONS(5682), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_let_BANG] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5682), + [anon_sym_null] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACK_PIPE] = ACTIONS(5680), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LT_AT] = ACTIONS(5682), + [anon_sym_LT_AT_AT] = ACTIONS(5680), + [anon_sym_LBRACE_PIPE] = ACTIONS(5680), + [anon_sym_new] = ACTIONS(5682), + [anon_sym_return_BANG] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5682), + [anon_sym_yield_BANG] = ACTIONS(5680), + [anon_sym_lazy] = ACTIONS(5682), + [anon_sym_assert] = ACTIONS(5682), + [anon_sym_upcast] = ACTIONS(5682), + [anon_sym_downcast] = ACTIONS(5682), + [anon_sym_for] = ACTIONS(5682), + [anon_sym_while] = ACTIONS(5682), + [anon_sym_if] = ACTIONS(5682), + [anon_sym_fun] = ACTIONS(5682), + [anon_sym_try] = ACTIONS(5682), + [anon_sym_match] = ACTIONS(5682), + [anon_sym_match_BANG] = ACTIONS(5680), + [anon_sym_function] = ACTIONS(5682), + [anon_sym_use] = ACTIONS(5682), + [anon_sym_use_BANG] = ACTIONS(5680), + [anon_sym_do_BANG] = ACTIONS(5680), + [anon_sym_begin] = ACTIONS(5682), + [aux_sym_char_token1] = ACTIONS(5680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5682), + [anon_sym_DQUOTE] = ACTIONS(5682), + [anon_sym_AT_DQUOTE] = ACTIONS(5680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5680), + [sym_bool] = ACTIONS(5682), + [sym_unit] = ACTIONS(5680), + [anon_sym_LPAREN_PIPE] = ACTIONS(5682), + [sym_op_identifier] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_PLUS_DOT] = ACTIONS(5680), + [anon_sym_DASH_DOT] = ACTIONS(5680), + [anon_sym_PERCENT] = ACTIONS(5680), + [anon_sym_AMP_AMP] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5680), + [aux_sym_prefix_op_token1] = ACTIONS(5680), + [sym_int] = ACTIONS(5682), + [sym_xint] = ACTIONS(5680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5680), + [anon_sym_POUNDload] = ACTIONS(5680), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5680), + }, + [3270] = { + [sym_xml_doc] = STATE(3270), + [sym_block_comment] = STATE(3270), + [sym_line_comment] = STATE(3270), + [sym_compiler_directive_decl] = STATE(3270), + [sym_fsi_directive_decl] = STATE(3270), + [sym_preproc_line] = STATE(3270), + [ts_builtin_sym_end] = ACTIONS(5684), + [sym_identifier] = ACTIONS(5686), + [anon_sym_namespace] = ACTIONS(5686), + [anon_sym_module] = ACTIONS(5686), + [anon_sym_open] = ACTIONS(5686), + [anon_sym_LBRACK_LT] = ACTIONS(5684), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_do] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_let] = ACTIONS(5686), + [anon_sym_let_BANG] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5686), + [anon_sym_LBRACK_PIPE] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5686), + [anon_sym_LT_AT] = ACTIONS(5686), + [anon_sym_LT_AT_AT] = ACTIONS(5684), + [anon_sym_LBRACE_PIPE] = ACTIONS(5684), + [anon_sym_new] = ACTIONS(5686), + [anon_sym_return_BANG] = ACTIONS(5684), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_yield_BANG] = ACTIONS(5684), + [anon_sym_lazy] = ACTIONS(5686), + [anon_sym_assert] = ACTIONS(5686), + [anon_sym_upcast] = ACTIONS(5686), + [anon_sym_downcast] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_fun] = ACTIONS(5686), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_match_BANG] = ACTIONS(5684), + [anon_sym_function] = ACTIONS(5686), + [anon_sym_use] = ACTIONS(5686), + [anon_sym_use_BANG] = ACTIONS(5684), + [anon_sym_do_BANG] = ACTIONS(5684), + [anon_sym_begin] = ACTIONS(5686), + [aux_sym_char_token1] = ACTIONS(5684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5686), + [anon_sym_DQUOTE] = ACTIONS(5686), + [anon_sym_AT_DQUOTE] = ACTIONS(5684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5684), + [sym_bool] = ACTIONS(5686), + [sym_unit] = ACTIONS(5684), + [anon_sym_LPAREN_PIPE] = ACTIONS(5686), + [sym_op_identifier] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_PLUS_DOT] = ACTIONS(5684), + [anon_sym_DASH_DOT] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5684), + [anon_sym_TILDE] = ACTIONS(5684), + [aux_sym_prefix_op_token1] = ACTIONS(5684), + [sym_int] = ACTIONS(5686), + [sym_xint] = ACTIONS(5684), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5684), + [anon_sym_POUNDload] = ACTIONS(5684), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5684), + }, + [3271] = { + [sym_type_arguments] = STATE(3472), + [sym_long_identifier] = STATE(3471), + [sym_xml_doc] = STATE(3271), + [sym_block_comment] = STATE(3271), + [sym_line_comment] = STATE(3271), + [sym_compiler_directive_decl] = STATE(3271), + [sym_fsi_directive_decl] = STATE(3271), + [sym_preproc_line] = STATE(3271), + [aux_sym__compound_type_repeat1] = STATE(3440), + [sym_identifier] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_let] = ACTIONS(3012), + [anon_sym_let_BANG] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LBRACK_PIPE] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_LT_AT] = ACTIONS(3012), + [anon_sym_LT_AT_AT] = ACTIONS(3010), + [anon_sym_LBRACE_PIPE] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_return_BANG] = ACTIONS(3010), + [anon_sym_yield] = ACTIONS(3012), + [anon_sym_yield_BANG] = ACTIONS(3010), + [anon_sym_lazy] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_upcast] = ACTIONS(3012), + [anon_sym_downcast] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_match_BANG] = ACTIONS(3010), + [anon_sym_function] = ACTIONS(3012), + [anon_sym_use] = ACTIONS(3012), + [anon_sym_use_BANG] = ACTIONS(3010), + [anon_sym_do_BANG] = ACTIONS(3010), + [anon_sym_begin] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3012), + [anon_sym_DQUOTE] = ACTIONS(3012), + [anon_sym_AT_DQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3010), + [sym_bool] = ACTIONS(3012), + [sym_unit] = ACTIONS(3010), + [anon_sym_LPAREN_PIPE] = ACTIONS(3012), + [sym_op_identifier] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS_DOT] = ACTIONS(3010), + [anon_sym_DASH_DOT] = ACTIONS(3010), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [aux_sym_prefix_op_token1] = ACTIONS(3010), + [sym_int] = ACTIONS(3012), + [sym_xint] = ACTIONS(3010), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3010), + }, + [3272] = { + [sym_xml_doc] = STATE(3272), + [sym_block_comment] = STATE(3272), + [sym_line_comment] = STATE(3272), + [sym_compiler_directive_decl] = STATE(3272), + [sym_fsi_directive_decl] = STATE(3272), + [sym_preproc_line] = STATE(3272), + [aux_sym__compound_type_repeat1] = STATE(3290), + [sym_identifier] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + }, + [3273] = { + [sym_xml_doc] = STATE(3273), + [sym_block_comment] = STATE(3273), + [sym_line_comment] = STATE(3273), + [sym_compiler_directive_decl] = STATE(3273), + [sym_fsi_directive_decl] = STATE(3273), + [sym_preproc_line] = STATE(3273), + [aux_sym_long_identifier_repeat1] = STATE(3274), + [sym_identifier] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), + }, + [3274] = { + [sym_xml_doc] = STATE(3274), + [sym_block_comment] = STATE(3274), + [sym_line_comment] = STATE(3274), + [sym_compiler_directive_decl] = STATE(3274), + [sym_fsi_directive_decl] = STATE(3274), + [sym_preproc_line] = STATE(3274), + [aux_sym_long_identifier_repeat1] = STATE(3274), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5692), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), + }, + [3275] = { + [sym_xml_doc] = STATE(3275), + [sym_block_comment] = STATE(3275), + [sym_line_comment] = STATE(3275), + [sym_compiler_directive_decl] = STATE(3275), + [sym_fsi_directive_decl] = STATE(3275), + [sym_preproc_line] = STATE(3275), + [sym_identifier] = ACTIONS(5599), + [anon_sym_module] = ACTIONS(5599), + [anon_sym_open] = ACTIONS(5599), + [anon_sym_LBRACK_LT] = ACTIONS(5597), + [anon_sym_return] = ACTIONS(5599), + [anon_sym_type] = ACTIONS(5599), + [anon_sym_do] = ACTIONS(5599), + [anon_sym_and] = ACTIONS(5599), + [anon_sym_let] = ACTIONS(5599), + [anon_sym_let_BANG] = ACTIONS(5597), + [anon_sym_LPAREN] = ACTIONS(5599), + [anon_sym_null] = ACTIONS(5599), + [anon_sym_AMP] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(5599), + [anon_sym_LBRACK_PIPE] = ACTIONS(5597), + [anon_sym_LBRACE] = ACTIONS(5599), + [anon_sym_LT_AT] = ACTIONS(5599), + [anon_sym_LT_AT_AT] = ACTIONS(5597), + [anon_sym_LBRACE_PIPE] = ACTIONS(5597), + [anon_sym_new] = ACTIONS(5599), + [anon_sym_return_BANG] = ACTIONS(5597), + [anon_sym_yield] = ACTIONS(5599), + [anon_sym_yield_BANG] = ACTIONS(5597), + [anon_sym_lazy] = ACTIONS(5599), + [anon_sym_assert] = ACTIONS(5599), + [anon_sym_upcast] = ACTIONS(5599), + [anon_sym_downcast] = ACTIONS(5599), + [anon_sym_for] = ACTIONS(5599), + [anon_sym_while] = ACTIONS(5599), + [anon_sym_if] = ACTIONS(5599), + [anon_sym_fun] = ACTIONS(5599), + [anon_sym_try] = ACTIONS(5599), + [anon_sym_match] = ACTIONS(5599), + [anon_sym_match_BANG] = ACTIONS(5597), + [anon_sym_function] = ACTIONS(5599), + [anon_sym_use] = ACTIONS(5599), + [anon_sym_use_BANG] = ACTIONS(5597), + [anon_sym_do_BANG] = ACTIONS(5597), + [anon_sym_begin] = ACTIONS(5599), + [anon_sym_interface] = ACTIONS(5599), + [aux_sym_char_token1] = ACTIONS(5597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5599), + [anon_sym_DQUOTE] = ACTIONS(5599), + [anon_sym_AT_DQUOTE] = ACTIONS(5597), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5597), + [sym_bool] = ACTIONS(5599), + [sym_unit] = ACTIONS(5597), + [anon_sym_LPAREN_PIPE] = ACTIONS(5599), + [sym_op_identifier] = ACTIONS(5597), + [anon_sym_PLUS] = ACTIONS(5599), + [anon_sym_DASH] = ACTIONS(5599), + [anon_sym_PLUS_DOT] = ACTIONS(5597), + [anon_sym_DASH_DOT] = ACTIONS(5597), + [anon_sym_PERCENT] = ACTIONS(5597), + [anon_sym_AMP_AMP] = ACTIONS(5597), + [anon_sym_TILDE] = ACTIONS(5597), + [aux_sym_prefix_op_token1] = ACTIONS(5597), + [sym_int] = ACTIONS(5599), + [sym_xint] = ACTIONS(5597), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5597), + [anon_sym_POUNDload] = ACTIONS(5597), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5597), + [sym__dedent] = ACTIONS(5597), + }, + [3276] = { + [sym_xml_doc] = STATE(3276), + [sym_block_comment] = STATE(3276), + [sym_line_comment] = STATE(3276), + [sym_compiler_directive_decl] = STATE(3276), + [sym_fsi_directive_decl] = STATE(3276), + [sym_preproc_line] = STATE(3276), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3277] = { + [sym_xml_doc] = STATE(3277), + [sym_block_comment] = STATE(3277), + [sym_line_comment] = STATE(3277), + [sym_compiler_directive_decl] = STATE(3277), + [sym_fsi_directive_decl] = STATE(3277), + [sym_preproc_line] = STATE(3277), + [aux_sym__compound_type_repeat1] = STATE(3291), + [sym_identifier] = ACTIONS(3212), + [anon_sym_GT_RBRACK] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__newline] = ACTIONS(3214), + }, + [3278] = { + [sym_type_arguments] = STATE(3472), + [sym_long_identifier] = STATE(3471), + [sym_xml_doc] = STATE(3278), + [sym_block_comment] = STATE(3278), + [sym_line_comment] = STATE(3278), + [sym_compiler_directive_decl] = STATE(3278), + [sym_fsi_directive_decl] = STATE(3278), + [sym_preproc_line] = STATE(3278), + [aux_sym__compound_type_repeat1] = STATE(3440), + [sym_identifier] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_let_BANG] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_null] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_LBRACK_PIPE] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_LT_AT] = ACTIONS(3092), + [anon_sym_LT_AT_AT] = ACTIONS(3090), + [anon_sym_LBRACE_PIPE] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_return_BANG] = ACTIONS(3090), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_yield_BANG] = ACTIONS(3090), + [anon_sym_lazy] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_upcast] = ACTIONS(3092), + [anon_sym_downcast] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_fun] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_match_BANG] = ACTIONS(3090), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_use] = ACTIONS(3092), + [anon_sym_use_BANG] = ACTIONS(3090), + [anon_sym_do_BANG] = ACTIONS(3090), + [anon_sym_begin] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [anon_sym_AT_DQUOTE] = ACTIONS(3090), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3090), + [sym_bool] = ACTIONS(3092), + [sym_unit] = ACTIONS(3090), + [anon_sym_LPAREN_PIPE] = ACTIONS(3092), + [sym_op_identifier] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_PLUS_DOT] = ACTIONS(3090), + [anon_sym_DASH_DOT] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [aux_sym_prefix_op_token1] = ACTIONS(3090), + [sym_int] = ACTIONS(3092), + [sym_xint] = ACTIONS(3090), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3090), + }, + [3279] = { + [sym_xml_doc] = STATE(3279), + [sym_block_comment] = STATE(3279), + [sym_line_comment] = STATE(3279), + [sym_compiler_directive_decl] = STATE(3279), + [sym_fsi_directive_decl] = STATE(3279), + [sym_preproc_line] = STATE(3279), + [aux_sym_long_identifier_repeat1] = STATE(3297), + [sym_identifier] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_open] = ACTIONS(3202), + [anon_sym_LBRACK_LT] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5695), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3204), + [anon_sym_POUNDload] = ACTIONS(3204), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + [sym__dedent] = ACTIONS(3204), + }, + [3280] = { + [sym_xml_doc] = STATE(3280), + [sym_block_comment] = STATE(3280), + [sym_line_comment] = STATE(3280), + [sym_compiler_directive_decl] = STATE(3280), + [sym_fsi_directive_decl] = STATE(3280), + [sym_preproc_line] = STATE(3280), + [ts_builtin_sym_end] = ACTIONS(5697), + [sym_identifier] = ACTIONS(5699), + [anon_sym_namespace] = ACTIONS(5699), + [anon_sym_module] = ACTIONS(5699), + [anon_sym_open] = ACTIONS(5699), + [anon_sym_LBRACK_LT] = ACTIONS(5697), + [anon_sym_return] = ACTIONS(5699), + [anon_sym_type] = ACTIONS(5699), + [anon_sym_do] = ACTIONS(5699), + [anon_sym_and] = ACTIONS(5699), + [anon_sym_let] = ACTIONS(5699), + [anon_sym_let_BANG] = ACTIONS(5697), + [anon_sym_LPAREN] = ACTIONS(5699), + [anon_sym_null] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_LBRACK_PIPE] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_LT_AT] = ACTIONS(5699), + [anon_sym_LT_AT_AT] = ACTIONS(5697), + [anon_sym_LBRACE_PIPE] = ACTIONS(5697), + [anon_sym_new] = ACTIONS(5699), + [anon_sym_return_BANG] = ACTIONS(5697), + [anon_sym_yield] = ACTIONS(5699), + [anon_sym_yield_BANG] = ACTIONS(5697), + [anon_sym_lazy] = ACTIONS(5699), + [anon_sym_assert] = ACTIONS(5699), + [anon_sym_upcast] = ACTIONS(5699), + [anon_sym_downcast] = ACTIONS(5699), + [anon_sym_for] = ACTIONS(5699), + [anon_sym_while] = ACTIONS(5699), + [anon_sym_if] = ACTIONS(5699), + [anon_sym_fun] = ACTIONS(5699), + [anon_sym_try] = ACTIONS(5699), + [anon_sym_match] = ACTIONS(5699), + [anon_sym_match_BANG] = ACTIONS(5697), + [anon_sym_function] = ACTIONS(5699), + [anon_sym_use] = ACTIONS(5699), + [anon_sym_use_BANG] = ACTIONS(5697), + [anon_sym_do_BANG] = ACTIONS(5697), + [anon_sym_begin] = ACTIONS(5699), + [aux_sym_char_token1] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_AT_DQUOTE] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [sym_bool] = ACTIONS(5699), + [sym_unit] = ACTIONS(5697), + [anon_sym_LPAREN_PIPE] = ACTIONS(5699), + [sym_op_identifier] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_PLUS_DOT] = ACTIONS(5697), + [anon_sym_DASH_DOT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_AMP_AMP] = ACTIONS(5697), + [anon_sym_TILDE] = ACTIONS(5697), + [aux_sym_prefix_op_token1] = ACTIONS(5697), + [sym_int] = ACTIONS(5699), + [sym_xint] = ACTIONS(5697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5697), + [anon_sym_POUNDload] = ACTIONS(5697), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5697), + }, + [3281] = { + [sym_xml_doc] = STATE(3281), + [sym_block_comment] = STATE(3281), + [sym_line_comment] = STATE(3281), + [sym_compiler_directive_decl] = STATE(3281), + [sym_fsi_directive_decl] = STATE(3281), + [sym_preproc_line] = STATE(3281), + [aux_sym_long_identifier_repeat1] = STATE(3273), + [sym_identifier] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5690), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), + }, + [3282] = { + [sym_xml_doc] = STATE(3282), + [sym_block_comment] = STATE(3282), + [sym_line_comment] = STATE(3282), + [sym_compiler_directive_decl] = STATE(3282), + [sym_fsi_directive_decl] = STATE(3282), + [sym_preproc_line] = STATE(3282), + [ts_builtin_sym_end] = ACTIONS(5701), + [sym_identifier] = ACTIONS(5703), + [anon_sym_namespace] = ACTIONS(5703), + [anon_sym_module] = ACTIONS(5703), + [anon_sym_open] = ACTIONS(5703), + [anon_sym_LBRACK_LT] = ACTIONS(5701), + [anon_sym_return] = ACTIONS(5703), + [anon_sym_type] = ACTIONS(5703), + [anon_sym_do] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_let] = ACTIONS(5703), + [anon_sym_let_BANG] = ACTIONS(5701), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_null] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_LBRACK_PIPE] = ACTIONS(5701), + [anon_sym_LBRACE] = ACTIONS(5703), + [anon_sym_LT_AT] = ACTIONS(5703), + [anon_sym_LT_AT_AT] = ACTIONS(5701), + [anon_sym_LBRACE_PIPE] = ACTIONS(5701), + [anon_sym_new] = ACTIONS(5703), + [anon_sym_return_BANG] = ACTIONS(5701), + [anon_sym_yield] = ACTIONS(5703), + [anon_sym_yield_BANG] = ACTIONS(5701), + [anon_sym_lazy] = ACTIONS(5703), + [anon_sym_assert] = ACTIONS(5703), + [anon_sym_upcast] = ACTIONS(5703), + [anon_sym_downcast] = ACTIONS(5703), + [anon_sym_for] = ACTIONS(5703), + [anon_sym_while] = ACTIONS(5703), + [anon_sym_if] = ACTIONS(5703), + [anon_sym_fun] = ACTIONS(5703), + [anon_sym_try] = ACTIONS(5703), + [anon_sym_match] = ACTIONS(5703), + [anon_sym_match_BANG] = ACTIONS(5701), + [anon_sym_function] = ACTIONS(5703), + [anon_sym_use] = ACTIONS(5703), + [anon_sym_use_BANG] = ACTIONS(5701), + [anon_sym_do_BANG] = ACTIONS(5701), + [anon_sym_begin] = ACTIONS(5703), + [aux_sym_char_token1] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_DQUOTE] = ACTIONS(5703), + [anon_sym_AT_DQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5701), + [sym_bool] = ACTIONS(5703), + [sym_unit] = ACTIONS(5701), + [anon_sym_LPAREN_PIPE] = ACTIONS(5703), + [sym_op_identifier] = ACTIONS(5701), + [anon_sym_PLUS] = ACTIONS(5703), + [anon_sym_DASH] = ACTIONS(5703), + [anon_sym_PLUS_DOT] = ACTIONS(5701), + [anon_sym_DASH_DOT] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5701), + [anon_sym_AMP_AMP] = ACTIONS(5701), + [anon_sym_TILDE] = ACTIONS(5701), + [aux_sym_prefix_op_token1] = ACTIONS(5701), + [sym_int] = ACTIONS(5703), + [sym_xint] = ACTIONS(5701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5701), + [anon_sym_POUNDload] = ACTIONS(5701), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5701), + }, + [3283] = { + [sym_xml_doc] = STATE(3283), + [sym_block_comment] = STATE(3283), + [sym_line_comment] = STATE(3283), + [sym_compiler_directive_decl] = STATE(3283), + [sym_fsi_directive_decl] = STATE(3283), + [sym_preproc_line] = STATE(3283), + [ts_builtin_sym_end] = ACTIONS(5705), + [sym_identifier] = ACTIONS(5707), + [anon_sym_namespace] = ACTIONS(5707), + [anon_sym_module] = ACTIONS(5707), + [anon_sym_open] = ACTIONS(5707), + [anon_sym_LBRACK_LT] = ACTIONS(5705), + [anon_sym_return] = ACTIONS(5707), + [anon_sym_type] = ACTIONS(5707), + [anon_sym_do] = ACTIONS(5707), + [anon_sym_and] = ACTIONS(5707), + [anon_sym_let] = ACTIONS(5707), + [anon_sym_let_BANG] = ACTIONS(5705), + [anon_sym_LPAREN] = ACTIONS(5707), + [anon_sym_null] = ACTIONS(5707), + [anon_sym_AMP] = ACTIONS(5707), + [anon_sym_LBRACK] = ACTIONS(5707), + [anon_sym_LBRACK_PIPE] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(5707), + [anon_sym_LT_AT] = ACTIONS(5707), + [anon_sym_LT_AT_AT] = ACTIONS(5705), + [anon_sym_LBRACE_PIPE] = ACTIONS(5705), + [anon_sym_new] = ACTIONS(5707), + [anon_sym_return_BANG] = ACTIONS(5705), + [anon_sym_yield] = ACTIONS(5707), + [anon_sym_yield_BANG] = ACTIONS(5705), + [anon_sym_lazy] = ACTIONS(5707), + [anon_sym_assert] = ACTIONS(5707), + [anon_sym_upcast] = ACTIONS(5707), + [anon_sym_downcast] = ACTIONS(5707), + [anon_sym_for] = ACTIONS(5707), + [anon_sym_while] = ACTIONS(5707), + [anon_sym_if] = ACTIONS(5707), + [anon_sym_fun] = ACTIONS(5707), + [anon_sym_try] = ACTIONS(5707), + [anon_sym_match] = ACTIONS(5707), + [anon_sym_match_BANG] = ACTIONS(5705), + [anon_sym_function] = ACTIONS(5707), + [anon_sym_use] = ACTIONS(5707), + [anon_sym_use_BANG] = ACTIONS(5705), + [anon_sym_do_BANG] = ACTIONS(5705), + [anon_sym_begin] = ACTIONS(5707), + [aux_sym_char_token1] = ACTIONS(5705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5707), + [anon_sym_DQUOTE] = ACTIONS(5707), + [anon_sym_AT_DQUOTE] = ACTIONS(5705), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5705), + [sym_bool] = ACTIONS(5707), + [sym_unit] = ACTIONS(5705), + [anon_sym_LPAREN_PIPE] = ACTIONS(5707), + [sym_op_identifier] = ACTIONS(5705), + [anon_sym_PLUS] = ACTIONS(5707), + [anon_sym_DASH] = ACTIONS(5707), + [anon_sym_PLUS_DOT] = ACTIONS(5705), + [anon_sym_DASH_DOT] = ACTIONS(5705), + [anon_sym_PERCENT] = ACTIONS(5705), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_TILDE] = ACTIONS(5705), + [aux_sym_prefix_op_token1] = ACTIONS(5705), + [sym_int] = ACTIONS(5707), + [sym_xint] = ACTIONS(5705), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5705), + [anon_sym_POUNDload] = ACTIONS(5705), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5705), + }, + [3284] = { + [sym_xml_doc] = STATE(3284), + [sym_block_comment] = STATE(3284), + [sym_line_comment] = STATE(3284), + [sym_compiler_directive_decl] = STATE(3284), + [sym_fsi_directive_decl] = STATE(3284), + [sym_preproc_line] = STATE(3284), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + }, + [3285] = { + [sym_xml_doc] = STATE(3285), + [sym_block_comment] = STATE(3285), + [sym_line_comment] = STATE(3285), + [sym_compiler_directive_decl] = STATE(3285), + [sym_fsi_directive_decl] = STATE(3285), + [sym_preproc_line] = STATE(3285), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + [sym__dedent] = ACTIONS(3276), + }, + [3286] = { + [sym_xml_doc] = STATE(3286), + [sym_block_comment] = STATE(3286), + [sym_line_comment] = STATE(3286), + [sym_compiler_directive_decl] = STATE(3286), + [sym_fsi_directive_decl] = STATE(3286), + [sym_preproc_line] = STATE(3286), + [aux_sym_type_argument_repeat1] = STATE(3316), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(5709), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + }, + [3287] = { + [sym_xml_doc] = STATE(3287), + [sym_block_comment] = STATE(3287), + [sym_line_comment] = STATE(3287), + [sym_compiler_directive_decl] = STATE(3287), + [sym_fsi_directive_decl] = STATE(3287), + [sym_preproc_line] = STATE(3287), + [ts_builtin_sym_end] = ACTIONS(5711), + [sym_identifier] = ACTIONS(5713), + [anon_sym_namespace] = ACTIONS(5713), + [anon_sym_module] = ACTIONS(5713), + [anon_sym_open] = ACTIONS(5713), + [anon_sym_LBRACK_LT] = ACTIONS(5711), + [anon_sym_return] = ACTIONS(5713), + [anon_sym_type] = ACTIONS(5713), + [anon_sym_do] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_let_BANG] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_null] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LBRACK_PIPE] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT_AT] = ACTIONS(5713), + [anon_sym_LT_AT_AT] = ACTIONS(5711), + [anon_sym_LBRACE_PIPE] = ACTIONS(5711), + [anon_sym_new] = ACTIONS(5713), + [anon_sym_return_BANG] = ACTIONS(5711), + [anon_sym_yield] = ACTIONS(5713), + [anon_sym_yield_BANG] = ACTIONS(5711), + [anon_sym_lazy] = ACTIONS(5713), + [anon_sym_assert] = ACTIONS(5713), + [anon_sym_upcast] = ACTIONS(5713), + [anon_sym_downcast] = ACTIONS(5713), + [anon_sym_for] = ACTIONS(5713), + [anon_sym_while] = ACTIONS(5713), + [anon_sym_if] = ACTIONS(5713), + [anon_sym_fun] = ACTIONS(5713), + [anon_sym_try] = ACTIONS(5713), + [anon_sym_match] = ACTIONS(5713), + [anon_sym_match_BANG] = ACTIONS(5711), + [anon_sym_function] = ACTIONS(5713), + [anon_sym_use] = ACTIONS(5713), + [anon_sym_use_BANG] = ACTIONS(5711), + [anon_sym_do_BANG] = ACTIONS(5711), + [anon_sym_begin] = ACTIONS(5713), + [aux_sym_char_token1] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5713), + [anon_sym_DQUOTE] = ACTIONS(5713), + [anon_sym_AT_DQUOTE] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [sym_bool] = ACTIONS(5713), + [sym_unit] = ACTIONS(5711), + [anon_sym_LPAREN_PIPE] = ACTIONS(5713), + [sym_op_identifier] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS_DOT] = ACTIONS(5711), + [anon_sym_DASH_DOT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_TILDE] = ACTIONS(5711), + [aux_sym_prefix_op_token1] = ACTIONS(5711), + [sym_int] = ACTIONS(5713), + [sym_xint] = ACTIONS(5711), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5711), + [anon_sym_POUNDload] = ACTIONS(5711), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5711), + }, + [3288] = { + [sym_xml_doc] = STATE(3288), + [sym_block_comment] = STATE(3288), + [sym_line_comment] = STATE(3288), + [sym_compiler_directive_decl] = STATE(3288), + [sym_fsi_directive_decl] = STATE(3288), + [sym_preproc_line] = STATE(3288), + [ts_builtin_sym_end] = ACTIONS(5715), + [sym_identifier] = ACTIONS(5717), + [anon_sym_namespace] = ACTIONS(5717), + [anon_sym_module] = ACTIONS(5717), + [anon_sym_open] = ACTIONS(5717), + [anon_sym_LBRACK_LT] = ACTIONS(5715), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_do] = ACTIONS(5717), + [anon_sym_and] = ACTIONS(5717), + [anon_sym_let] = ACTIONS(5717), + [anon_sym_let_BANG] = ACTIONS(5715), + [anon_sym_LPAREN] = ACTIONS(5717), + [anon_sym_null] = ACTIONS(5717), + [anon_sym_AMP] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5717), + [anon_sym_LBRACK_PIPE] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_LT_AT] = ACTIONS(5717), + [anon_sym_LT_AT_AT] = ACTIONS(5715), + [anon_sym_LBRACE_PIPE] = ACTIONS(5715), + [anon_sym_new] = ACTIONS(5717), + [anon_sym_return_BANG] = ACTIONS(5715), + [anon_sym_yield] = ACTIONS(5717), + [anon_sym_yield_BANG] = ACTIONS(5715), + [anon_sym_lazy] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym_upcast] = ACTIONS(5717), + [anon_sym_downcast] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_fun] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_match_BANG] = ACTIONS(5715), + [anon_sym_function] = ACTIONS(5717), + [anon_sym_use] = ACTIONS(5717), + [anon_sym_use_BANG] = ACTIONS(5715), + [anon_sym_do_BANG] = ACTIONS(5715), + [anon_sym_begin] = ACTIONS(5717), + [aux_sym_char_token1] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5717), + [anon_sym_DQUOTE] = ACTIONS(5717), + [anon_sym_AT_DQUOTE] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [sym_bool] = ACTIONS(5717), + [sym_unit] = ACTIONS(5715), + [anon_sym_LPAREN_PIPE] = ACTIONS(5717), + [sym_op_identifier] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5717), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_PLUS_DOT] = ACTIONS(5715), + [anon_sym_DASH_DOT] = ACTIONS(5715), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_TILDE] = ACTIONS(5715), + [aux_sym_prefix_op_token1] = ACTIONS(5715), + [sym_int] = ACTIONS(5717), + [sym_xint] = ACTIONS(5715), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5715), + [anon_sym_POUNDload] = ACTIONS(5715), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5715), + }, + [3289] = { + [sym_xml_doc] = STATE(3289), + [sym_block_comment] = STATE(3289), + [sym_line_comment] = STATE(3289), + [sym_compiler_directive_decl] = STATE(3289), + [sym_fsi_directive_decl] = STATE(3289), + [sym_preproc_line] = STATE(3289), + [aux_sym__function_or_value_defns_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(5660), + [anon_sym_module] = ACTIONS(5660), + [anon_sym_open] = ACTIONS(5660), + [anon_sym_LBRACK_LT] = ACTIONS(5658), + [anon_sym_return] = ACTIONS(5660), + [anon_sym_type] = ACTIONS(5660), + [anon_sym_do] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(5719), + [anon_sym_let] = ACTIONS(5660), + [anon_sym_let_BANG] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_null] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5660), + [anon_sym_LBRACK_PIPE] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5660), + [anon_sym_LT_AT] = ACTIONS(5660), + [anon_sym_LT_AT_AT] = ACTIONS(5658), + [anon_sym_LBRACE_PIPE] = ACTIONS(5658), + [anon_sym_new] = ACTIONS(5660), + [anon_sym_return_BANG] = ACTIONS(5658), + [anon_sym_yield] = ACTIONS(5660), + [anon_sym_yield_BANG] = ACTIONS(5658), + [anon_sym_lazy] = ACTIONS(5660), + [anon_sym_assert] = ACTIONS(5660), + [anon_sym_upcast] = ACTIONS(5660), + [anon_sym_downcast] = ACTIONS(5660), + [anon_sym_for] = ACTIONS(5660), + [anon_sym_while] = ACTIONS(5660), + [anon_sym_if] = ACTIONS(5660), + [anon_sym_fun] = ACTIONS(5660), + [anon_sym_try] = ACTIONS(5660), + [anon_sym_match] = ACTIONS(5660), + [anon_sym_match_BANG] = ACTIONS(5658), + [anon_sym_function] = ACTIONS(5660), + [anon_sym_use] = ACTIONS(5660), + [anon_sym_use_BANG] = ACTIONS(5658), + [anon_sym_do_BANG] = ACTIONS(5658), + [anon_sym_begin] = ACTIONS(5660), + [aux_sym_char_token1] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(5660), + [anon_sym_AT_DQUOTE] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [sym_bool] = ACTIONS(5660), + [sym_unit] = ACTIONS(5658), + [anon_sym_LPAREN_PIPE] = ACTIONS(5660), + [sym_op_identifier] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS_DOT] = ACTIONS(5658), + [anon_sym_DASH_DOT] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_TILDE] = ACTIONS(5658), + [aux_sym_prefix_op_token1] = ACTIONS(5658), + [sym_int] = ACTIONS(5660), + [sym_xint] = ACTIONS(5658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5658), + [anon_sym_POUNDload] = ACTIONS(5658), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5658), + [sym__dedent] = ACTIONS(5658), + }, + [3290] = { + [sym_xml_doc] = STATE(3290), + [sym_block_comment] = STATE(3290), + [sym_line_comment] = STATE(3290), + [sym_compiler_directive_decl] = STATE(3290), + [sym_fsi_directive_decl] = STATE(3290), + [sym_preproc_line] = STATE(3290), + [aux_sym__compound_type_repeat1] = STATE(3290), + [sym_identifier] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_with] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5722), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + }, + [3291] = { + [sym_xml_doc] = STATE(3291), + [sym_block_comment] = STATE(3291), + [sym_line_comment] = STATE(3291), + [sym_compiler_directive_decl] = STATE(3291), + [sym_fsi_directive_decl] = STATE(3291), + [sym_preproc_line] = STATE(3291), + [aux_sym__compound_type_repeat1] = STATE(3291), + [sym_identifier] = ACTIONS(3032), + [anon_sym_GT_RBRACK] = ACTIONS(3030), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5725), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__newline] = ACTIONS(3030), + }, + [3292] = { + [sym_xml_doc] = STATE(3292), + [sym_block_comment] = STATE(3292), + [sym_line_comment] = STATE(3292), + [sym_compiler_directive_decl] = STATE(3292), + [sym_fsi_directive_decl] = STATE(3292), + [sym_preproc_line] = STATE(3292), + [sym_identifier] = ACTIONS(3242), + [anon_sym_GT_RBRACK] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__newline] = ACTIONS(3244), + }, + [3293] = { + [sym_xml_doc] = STATE(3293), + [sym_block_comment] = STATE(3293), + [sym_line_comment] = STATE(3293), + [sym_compiler_directive_decl] = STATE(3293), + [sym_fsi_directive_decl] = STATE(3293), + [sym_preproc_line] = STATE(3293), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5728), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + }, + [3294] = { + [sym_xml_doc] = STATE(3294), + [sym_block_comment] = STATE(3294), + [sym_line_comment] = STATE(3294), + [sym_compiler_directive_decl] = STATE(3294), + [sym_fsi_directive_decl] = STATE(3294), + [sym_preproc_line] = STATE(3294), + [ts_builtin_sym_end] = ACTIONS(5562), + [sym_identifier] = ACTIONS(5564), + [anon_sym_namespace] = ACTIONS(5564), + [anon_sym_module] = ACTIONS(5564), + [anon_sym_open] = ACTIONS(5564), + [anon_sym_LBRACK_LT] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_do] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_let] = ACTIONS(5564), + [anon_sym_let_BANG] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_LBRACK_PIPE] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5564), + [anon_sym_LT_AT] = ACTIONS(5564), + [anon_sym_LT_AT_AT] = ACTIONS(5562), + [anon_sym_LBRACE_PIPE] = ACTIONS(5562), + [anon_sym_new] = ACTIONS(5564), + [anon_sym_return_BANG] = ACTIONS(5562), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_yield_BANG] = ACTIONS(5562), + [anon_sym_lazy] = ACTIONS(5564), + [anon_sym_assert] = ACTIONS(5564), + [anon_sym_upcast] = ACTIONS(5564), + [anon_sym_downcast] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_fun] = ACTIONS(5564), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_match_BANG] = ACTIONS(5562), + [anon_sym_function] = ACTIONS(5564), + [anon_sym_use] = ACTIONS(5564), + [anon_sym_use_BANG] = ACTIONS(5562), + [anon_sym_do_BANG] = ACTIONS(5562), + [anon_sym_begin] = ACTIONS(5564), + [aux_sym_char_token1] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5564), + [anon_sym_DQUOTE] = ACTIONS(5564), + [anon_sym_AT_DQUOTE] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [sym_bool] = ACTIONS(5564), + [sym_unit] = ACTIONS(5562), + [anon_sym_LPAREN_PIPE] = ACTIONS(5564), + [sym_op_identifier] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS_DOT] = ACTIONS(5562), + [anon_sym_DASH_DOT] = ACTIONS(5562), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_TILDE] = ACTIONS(5562), + [aux_sym_prefix_op_token1] = ACTIONS(5562), + [sym_int] = ACTIONS(5564), + [sym_xint] = ACTIONS(5562), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5562), + [anon_sym_POUNDload] = ACTIONS(5562), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5562), + }, + [3295] = { + [sym_xml_doc] = STATE(3295), + [sym_block_comment] = STATE(3295), + [sym_line_comment] = STATE(3295), + [sym_compiler_directive_decl] = STATE(3295), + [sym_fsi_directive_decl] = STATE(3295), + [sym_preproc_line] = STATE(3295), + [sym_identifier] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + [sym__dedent] = ACTIONS(3363), + }, + [3296] = { + [sym_xml_doc] = STATE(3296), + [sym_block_comment] = STATE(3296), + [sym_line_comment] = STATE(3296), + [sym_compiler_directive_decl] = STATE(3296), + [sym_fsi_directive_decl] = STATE(3296), + [sym_preproc_line] = STATE(3296), + [ts_builtin_sym_end] = ACTIONS(5730), + [sym_identifier] = ACTIONS(5732), + [anon_sym_namespace] = ACTIONS(5732), + [anon_sym_module] = ACTIONS(5732), + [anon_sym_open] = ACTIONS(5732), + [anon_sym_LBRACK_LT] = ACTIONS(5730), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_let] = ACTIONS(5732), + [anon_sym_let_BANG] = ACTIONS(5730), + [anon_sym_LPAREN] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_LBRACK_PIPE] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5732), + [anon_sym_LT_AT] = ACTIONS(5732), + [anon_sym_LT_AT_AT] = ACTIONS(5730), + [anon_sym_LBRACE_PIPE] = ACTIONS(5730), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_return_BANG] = ACTIONS(5730), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_yield_BANG] = ACTIONS(5730), + [anon_sym_lazy] = ACTIONS(5732), + [anon_sym_assert] = ACTIONS(5732), + [anon_sym_upcast] = ACTIONS(5732), + [anon_sym_downcast] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_fun] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_match_BANG] = ACTIONS(5730), + [anon_sym_function] = ACTIONS(5732), + [anon_sym_use] = ACTIONS(5732), + [anon_sym_use_BANG] = ACTIONS(5730), + [anon_sym_do_BANG] = ACTIONS(5730), + [anon_sym_begin] = ACTIONS(5732), + [aux_sym_char_token1] = ACTIONS(5730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5732), + [anon_sym_AT_DQUOTE] = ACTIONS(5730), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5730), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5730), + [sym_bool] = ACTIONS(5732), + [sym_unit] = ACTIONS(5730), + [anon_sym_LPAREN_PIPE] = ACTIONS(5732), + [sym_op_identifier] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_DASH] = ACTIONS(5732), + [anon_sym_PLUS_DOT] = ACTIONS(5730), + [anon_sym_DASH_DOT] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_AMP_AMP] = ACTIONS(5730), + [anon_sym_TILDE] = ACTIONS(5730), + [aux_sym_prefix_op_token1] = ACTIONS(5730), + [sym_int] = ACTIONS(5732), + [sym_xint] = ACTIONS(5730), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5730), + [anon_sym_POUNDload] = ACTIONS(5730), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5730), + }, + [3297] = { + [sym_xml_doc] = STATE(3297), + [sym_block_comment] = STATE(3297), + [sym_line_comment] = STATE(3297), + [sym_compiler_directive_decl] = STATE(3297), + [sym_fsi_directive_decl] = STATE(3297), + [sym_preproc_line] = STATE(3297), + [aux_sym_long_identifier_repeat1] = STATE(3297), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5734), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), + }, + [3298] = { + [sym_xml_doc] = STATE(3298), + [sym_block_comment] = STATE(3298), + [sym_line_comment] = STATE(3298), + [sym_compiler_directive_decl] = STATE(3298), + [sym_fsi_directive_decl] = STATE(3298), + [sym_preproc_line] = STATE(3298), + [ts_builtin_sym_end] = ACTIONS(5540), + [sym_identifier] = ACTIONS(5542), + [anon_sym_namespace] = ACTIONS(5542), + [anon_sym_module] = ACTIONS(5542), + [anon_sym_open] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5540), + [anon_sym_return] = ACTIONS(5542), + [anon_sym_type] = ACTIONS(5542), + [anon_sym_do] = ACTIONS(5542), + [anon_sym_and] = ACTIONS(5542), + [anon_sym_let] = ACTIONS(5542), + [anon_sym_let_BANG] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_null] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_LBRACK_PIPE] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_LT_AT] = ACTIONS(5542), + [anon_sym_LT_AT_AT] = ACTIONS(5540), + [anon_sym_LBRACE_PIPE] = ACTIONS(5540), + [anon_sym_new] = ACTIONS(5542), + [anon_sym_return_BANG] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5542), + [anon_sym_yield_BANG] = ACTIONS(5540), + [anon_sym_lazy] = ACTIONS(5542), + [anon_sym_assert] = ACTIONS(5542), + [anon_sym_upcast] = ACTIONS(5542), + [anon_sym_downcast] = ACTIONS(5542), + [anon_sym_for] = ACTIONS(5542), + [anon_sym_while] = ACTIONS(5542), + [anon_sym_if] = ACTIONS(5542), + [anon_sym_fun] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5542), + [anon_sym_match] = ACTIONS(5542), + [anon_sym_match_BANG] = ACTIONS(5540), + [anon_sym_function] = ACTIONS(5542), + [anon_sym_use] = ACTIONS(5542), + [anon_sym_use_BANG] = ACTIONS(5540), + [anon_sym_do_BANG] = ACTIONS(5540), + [anon_sym_begin] = ACTIONS(5542), + [aux_sym_char_token1] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_AT_DQUOTE] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [sym_bool] = ACTIONS(5542), + [sym_unit] = ACTIONS(5540), + [anon_sym_LPAREN_PIPE] = ACTIONS(5542), + [sym_op_identifier] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PLUS_DOT] = ACTIONS(5540), + [anon_sym_DASH_DOT] = ACTIONS(5540), + [anon_sym_PERCENT] = ACTIONS(5540), + [anon_sym_AMP_AMP] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5540), + [aux_sym_prefix_op_token1] = ACTIONS(5540), + [sym_int] = ACTIONS(5542), + [sym_xint] = ACTIONS(5540), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5540), + [anon_sym_POUNDload] = ACTIONS(5540), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5540), + }, + [3299] = { + [sym_xml_doc] = STATE(3299), + [sym_block_comment] = STATE(3299), + [sym_line_comment] = STATE(3299), + [sym_compiler_directive_decl] = STATE(3299), + [sym_fsi_directive_decl] = STATE(3299), + [sym_preproc_line] = STATE(3299), + [aux_sym__function_or_value_defns_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(5674), + [anon_sym_module] = ACTIONS(5674), + [anon_sym_open] = ACTIONS(5674), + [anon_sym_LBRACK_LT] = ACTIONS(5672), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_type] = ACTIONS(5674), + [anon_sym_do] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5674), + [anon_sym_let_BANG] = ACTIONS(5672), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LBRACK_PIPE] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_LT_AT] = ACTIONS(5674), + [anon_sym_LT_AT_AT] = ACTIONS(5672), + [anon_sym_LBRACE_PIPE] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5674), + [anon_sym_return_BANG] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_yield_BANG] = ACTIONS(5672), + [anon_sym_lazy] = ACTIONS(5674), + [anon_sym_assert] = ACTIONS(5674), + [anon_sym_upcast] = ACTIONS(5674), + [anon_sym_downcast] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_fun] = ACTIONS(5674), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_match_BANG] = ACTIONS(5672), + [anon_sym_function] = ACTIONS(5674), + [anon_sym_use] = ACTIONS(5674), + [anon_sym_use_BANG] = ACTIONS(5672), + [anon_sym_do_BANG] = ACTIONS(5672), + [anon_sym_begin] = ACTIONS(5674), + [aux_sym_char_token1] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [anon_sym_AT_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [sym_bool] = ACTIONS(5674), + [sym_unit] = ACTIONS(5672), + [anon_sym_LPAREN_PIPE] = ACTIONS(5674), + [sym_op_identifier] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS_DOT] = ACTIONS(5672), + [anon_sym_DASH_DOT] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_AMP_AMP] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5672), + [aux_sym_prefix_op_token1] = ACTIONS(5672), + [sym_int] = ACTIONS(5674), + [sym_xint] = ACTIONS(5672), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5672), + [anon_sym_POUNDload] = ACTIONS(5672), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5672), + [sym__dedent] = ACTIONS(5672), + }, + [3300] = { + [sym_xml_doc] = STATE(3300), + [sym_block_comment] = STATE(3300), + [sym_line_comment] = STATE(3300), + [sym_compiler_directive_decl] = STATE(3300), + [sym_fsi_directive_decl] = STATE(3300), + [sym_preproc_line] = STATE(3300), + [sym_identifier] = ACTIONS(3285), + [anon_sym_GT_RBRACK] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__newline] = ACTIONS(3287), + }, + [3301] = { + [sym_type_arguments] = STATE(3472), + [sym_long_identifier] = STATE(3471), + [sym_xml_doc] = STATE(3301), + [sym_block_comment] = STATE(3301), + [sym_line_comment] = STATE(3301), + [sym_compiler_directive_decl] = STATE(3301), + [sym_fsi_directive_decl] = STATE(3301), + [sym_preproc_line] = STATE(3301), + [aux_sym__compound_type_repeat1] = STATE(3440), + [sym_identifier] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_let] = ACTIONS(3024), + [anon_sym_let_BANG] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_null] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_LBRACK_PIPE] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_LT_AT] = ACTIONS(3024), + [anon_sym_LT_AT_AT] = ACTIONS(3022), + [anon_sym_LBRACE_PIPE] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_return_BANG] = ACTIONS(3022), + [anon_sym_yield] = ACTIONS(3024), + [anon_sym_yield_BANG] = ACTIONS(3022), + [anon_sym_lazy] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_upcast] = ACTIONS(3024), + [anon_sym_downcast] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_fun] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_match_BANG] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_use] = ACTIONS(3024), + [anon_sym_use_BANG] = ACTIONS(3022), + [anon_sym_do_BANG] = ACTIONS(3022), + [anon_sym_begin] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3024), + [anon_sym_DQUOTE] = ACTIONS(3024), + [anon_sym_AT_DQUOTE] = ACTIONS(3022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3022), + [sym_bool] = ACTIONS(3024), + [sym_unit] = ACTIONS(3022), + [anon_sym_LPAREN_PIPE] = ACTIONS(3024), + [sym_op_identifier] = ACTIONS(3022), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS_DOT] = ACTIONS(3022), + [anon_sym_DASH_DOT] = ACTIONS(3022), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [aux_sym_prefix_op_token1] = ACTIONS(3022), + [sym_int] = ACTIONS(3024), + [sym_xint] = ACTIONS(3022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3022), + }, + [3302] = { + [sym_xml_doc] = STATE(3302), + [sym_block_comment] = STATE(3302), + [sym_line_comment] = STATE(3302), + [sym_compiler_directive_decl] = STATE(3302), + [sym_fsi_directive_decl] = STATE(3302), + [sym_preproc_line] = STATE(3302), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3303] = { + [sym_xml_doc] = STATE(3303), + [sym_block_comment] = STATE(3303), + [sym_line_comment] = STATE(3303), + [sym_compiler_directive_decl] = STATE(3303), + [sym_fsi_directive_decl] = STATE(3303), + [sym_preproc_line] = STATE(3303), + [ts_builtin_sym_end] = ACTIONS(5739), + [sym_identifier] = ACTIONS(5741), + [anon_sym_namespace] = ACTIONS(5741), + [anon_sym_module] = ACTIONS(5741), + [anon_sym_open] = ACTIONS(5741), + [anon_sym_LBRACK_LT] = ACTIONS(5739), + [anon_sym_return] = ACTIONS(5741), + [anon_sym_type] = ACTIONS(5741), + [anon_sym_do] = ACTIONS(5741), + [anon_sym_and] = ACTIONS(5741), + [anon_sym_let] = ACTIONS(5741), + [anon_sym_let_BANG] = ACTIONS(5739), + [anon_sym_LPAREN] = ACTIONS(5741), + [anon_sym_null] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [anon_sym_LBRACK_PIPE] = ACTIONS(5739), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LT_AT] = ACTIONS(5741), + [anon_sym_LT_AT_AT] = ACTIONS(5739), + [anon_sym_LBRACE_PIPE] = ACTIONS(5739), + [anon_sym_new] = ACTIONS(5741), + [anon_sym_return_BANG] = ACTIONS(5739), + [anon_sym_yield] = ACTIONS(5741), + [anon_sym_yield_BANG] = ACTIONS(5739), + [anon_sym_lazy] = ACTIONS(5741), + [anon_sym_assert] = ACTIONS(5741), + [anon_sym_upcast] = ACTIONS(5741), + [anon_sym_downcast] = ACTIONS(5741), + [anon_sym_for] = ACTIONS(5741), + [anon_sym_while] = ACTIONS(5741), + [anon_sym_if] = ACTIONS(5741), + [anon_sym_fun] = ACTIONS(5741), + [anon_sym_try] = ACTIONS(5741), + [anon_sym_match] = ACTIONS(5741), + [anon_sym_match_BANG] = ACTIONS(5739), + [anon_sym_function] = ACTIONS(5741), + [anon_sym_use] = ACTIONS(5741), + [anon_sym_use_BANG] = ACTIONS(5739), + [anon_sym_do_BANG] = ACTIONS(5739), + [anon_sym_begin] = ACTIONS(5741), + [aux_sym_char_token1] = ACTIONS(5739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5741), + [anon_sym_DQUOTE] = ACTIONS(5741), + [anon_sym_AT_DQUOTE] = ACTIONS(5739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5739), + [sym_bool] = ACTIONS(5741), + [sym_unit] = ACTIONS(5739), + [anon_sym_LPAREN_PIPE] = ACTIONS(5741), + [sym_op_identifier] = ACTIONS(5739), + [anon_sym_PLUS] = ACTIONS(5741), + [anon_sym_DASH] = ACTIONS(5741), + [anon_sym_PLUS_DOT] = ACTIONS(5739), + [anon_sym_DASH_DOT] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [aux_sym_prefix_op_token1] = ACTIONS(5739), + [sym_int] = ACTIONS(5741), + [sym_xint] = ACTIONS(5739), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5739), + [anon_sym_POUNDload] = ACTIONS(5739), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5739), + }, + [3304] = { + [sym_xml_doc] = STATE(3304), + [sym_block_comment] = STATE(3304), + [sym_line_comment] = STATE(3304), + [sym_compiler_directive_decl] = STATE(3304), + [sym_fsi_directive_decl] = STATE(3304), + [sym_preproc_line] = STATE(3304), + [ts_builtin_sym_end] = ACTIONS(5743), + [sym_identifier] = ACTIONS(5745), + [anon_sym_namespace] = ACTIONS(5745), + [anon_sym_module] = ACTIONS(5745), + [anon_sym_open] = ACTIONS(5745), + [anon_sym_LBRACK_LT] = ACTIONS(5743), + [anon_sym_return] = ACTIONS(5745), + [anon_sym_type] = ACTIONS(5745), + [anon_sym_do] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_let] = ACTIONS(5745), + [anon_sym_let_BANG] = ACTIONS(5743), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_LBRACK_PIPE] = ACTIONS(5743), + [anon_sym_LBRACE] = ACTIONS(5745), + [anon_sym_LT_AT] = ACTIONS(5745), + [anon_sym_LT_AT_AT] = ACTIONS(5743), + [anon_sym_LBRACE_PIPE] = ACTIONS(5743), + [anon_sym_new] = ACTIONS(5745), + [anon_sym_return_BANG] = ACTIONS(5743), + [anon_sym_yield] = ACTIONS(5745), + [anon_sym_yield_BANG] = ACTIONS(5743), + [anon_sym_lazy] = ACTIONS(5745), + [anon_sym_assert] = ACTIONS(5745), + [anon_sym_upcast] = ACTIONS(5745), + [anon_sym_downcast] = ACTIONS(5745), + [anon_sym_for] = ACTIONS(5745), + [anon_sym_while] = ACTIONS(5745), + [anon_sym_if] = ACTIONS(5745), + [anon_sym_fun] = ACTIONS(5745), + [anon_sym_try] = ACTIONS(5745), + [anon_sym_match] = ACTIONS(5745), + [anon_sym_match_BANG] = ACTIONS(5743), + [anon_sym_function] = ACTIONS(5745), + [anon_sym_use] = ACTIONS(5745), + [anon_sym_use_BANG] = ACTIONS(5743), + [anon_sym_do_BANG] = ACTIONS(5743), + [anon_sym_begin] = ACTIONS(5745), + [aux_sym_char_token1] = ACTIONS(5743), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5745), + [anon_sym_DQUOTE] = ACTIONS(5745), + [anon_sym_AT_DQUOTE] = ACTIONS(5743), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5743), + [sym_bool] = ACTIONS(5745), + [sym_unit] = ACTIONS(5743), + [anon_sym_LPAREN_PIPE] = ACTIONS(5745), + [sym_op_identifier] = ACTIONS(5743), + [anon_sym_PLUS] = ACTIONS(5745), + [anon_sym_DASH] = ACTIONS(5745), + [anon_sym_PLUS_DOT] = ACTIONS(5743), + [anon_sym_DASH_DOT] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5743), + [anon_sym_AMP_AMP] = ACTIONS(5743), + [anon_sym_TILDE] = ACTIONS(5743), + [aux_sym_prefix_op_token1] = ACTIONS(5743), + [sym_int] = ACTIONS(5745), + [sym_xint] = ACTIONS(5743), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5743), + [anon_sym_POUNDload] = ACTIONS(5743), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5743), + }, + [3305] = { + [sym_xml_doc] = STATE(3305), + [sym_block_comment] = STATE(3305), + [sym_line_comment] = STATE(3305), + [sym_compiler_directive_decl] = STATE(3305), + [sym_fsi_directive_decl] = STATE(3305), + [sym_preproc_line] = STATE(3305), + [aux_sym_long_identifier_repeat1] = STATE(3279), + [sym_identifier] = ACTIONS(3257), + [anon_sym_module] = ACTIONS(3257), + [anon_sym_open] = ACTIONS(3257), + [anon_sym_LBRACK_LT] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5695), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3259), + [anon_sym_POUNDload] = ACTIONS(3259), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3259), + }, + [3306] = { + [sym_xml_doc] = STATE(3306), + [sym_block_comment] = STATE(3306), + [sym_line_comment] = STATE(3306), + [sym_compiler_directive_decl] = STATE(3306), + [sym_fsi_directive_decl] = STATE(3306), + [sym_preproc_line] = STATE(3306), + [aux_sym__function_or_value_defns_repeat1] = STATE(3299), + [sym_identifier] = ACTIONS(5651), + [anon_sym_module] = ACTIONS(5651), + [anon_sym_open] = ACTIONS(5651), + [anon_sym_LBRACK_LT] = ACTIONS(5649), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_type] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(5737), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5651), + [anon_sym_assert] = ACTIONS(5651), + [anon_sym_upcast] = ACTIONS(5651), + [anon_sym_downcast] = ACTIONS(5651), + [anon_sym_for] = ACTIONS(5651), + [anon_sym_while] = ACTIONS(5651), + [anon_sym_if] = ACTIONS(5651), + [anon_sym_fun] = ACTIONS(5651), + [anon_sym_try] = ACTIONS(5651), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5649), + [anon_sym_DASH_DOT] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_TILDE] = ACTIONS(5649), + [aux_sym_prefix_op_token1] = ACTIONS(5649), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5649), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5649), + [anon_sym_POUNDload] = ACTIONS(5649), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5649), + [sym__dedent] = ACTIONS(5649), + }, + [3307] = { + [sym_xml_doc] = STATE(3307), + [sym_block_comment] = STATE(3307), + [sym_line_comment] = STATE(3307), + [sym_compiler_directive_decl] = STATE(3307), + [sym_fsi_directive_decl] = STATE(3307), + [sym_preproc_line] = STATE(3307), + [ts_builtin_sym_end] = ACTIONS(5747), + [sym_identifier] = ACTIONS(5749), + [anon_sym_namespace] = ACTIONS(5749), + [anon_sym_module] = ACTIONS(5749), + [anon_sym_open] = ACTIONS(5749), + [anon_sym_LBRACK_LT] = ACTIONS(5747), + [anon_sym_return] = ACTIONS(5749), + [anon_sym_type] = ACTIONS(5749), + [anon_sym_do] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_let] = ACTIONS(5749), + [anon_sym_let_BANG] = ACTIONS(5747), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_null] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_LBRACK_PIPE] = ACTIONS(5747), + [anon_sym_LBRACE] = ACTIONS(5749), + [anon_sym_LT_AT] = ACTIONS(5749), + [anon_sym_LT_AT_AT] = ACTIONS(5747), + [anon_sym_LBRACE_PIPE] = ACTIONS(5747), + [anon_sym_new] = ACTIONS(5749), + [anon_sym_return_BANG] = ACTIONS(5747), + [anon_sym_yield] = ACTIONS(5749), + [anon_sym_yield_BANG] = ACTIONS(5747), + [anon_sym_lazy] = ACTIONS(5749), + [anon_sym_assert] = ACTIONS(5749), + [anon_sym_upcast] = ACTIONS(5749), + [anon_sym_downcast] = ACTIONS(5749), + [anon_sym_for] = ACTIONS(5749), + [anon_sym_while] = ACTIONS(5749), + [anon_sym_if] = ACTIONS(5749), + [anon_sym_fun] = ACTIONS(5749), + [anon_sym_try] = ACTIONS(5749), + [anon_sym_match] = ACTIONS(5749), + [anon_sym_match_BANG] = ACTIONS(5747), + [anon_sym_function] = ACTIONS(5749), + [anon_sym_use] = ACTIONS(5749), + [anon_sym_use_BANG] = ACTIONS(5747), + [anon_sym_do_BANG] = ACTIONS(5747), + [anon_sym_begin] = ACTIONS(5749), + [aux_sym_char_token1] = ACTIONS(5747), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5749), + [anon_sym_DQUOTE] = ACTIONS(5749), + [anon_sym_AT_DQUOTE] = ACTIONS(5747), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5747), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5747), + [sym_bool] = ACTIONS(5749), + [sym_unit] = ACTIONS(5747), + [anon_sym_LPAREN_PIPE] = ACTIONS(5749), + [sym_op_identifier] = ACTIONS(5747), + [anon_sym_PLUS] = ACTIONS(5749), + [anon_sym_DASH] = ACTIONS(5749), + [anon_sym_PLUS_DOT] = ACTIONS(5747), + [anon_sym_DASH_DOT] = ACTIONS(5747), + [anon_sym_PERCENT] = ACTIONS(5747), + [anon_sym_AMP_AMP] = ACTIONS(5747), + [anon_sym_TILDE] = ACTIONS(5747), + [aux_sym_prefix_op_token1] = ACTIONS(5747), + [sym_int] = ACTIONS(5749), + [sym_xint] = ACTIONS(5747), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5747), + [anon_sym_POUNDload] = ACTIONS(5747), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5747), + }, + [3308] = { + [sym_xml_doc] = STATE(3308), + [sym_block_comment] = STATE(3308), + [sym_line_comment] = STATE(3308), + [sym_compiler_directive_decl] = STATE(3308), + [sym_fsi_directive_decl] = STATE(3308), + [sym_preproc_line] = STATE(3308), + [ts_builtin_sym_end] = ACTIONS(5751), + [sym_identifier] = ACTIONS(5753), + [anon_sym_namespace] = ACTIONS(5753), + [anon_sym_module] = ACTIONS(5753), + [anon_sym_open] = ACTIONS(5753), + [anon_sym_LBRACK_LT] = ACTIONS(5751), + [anon_sym_return] = ACTIONS(5753), + [anon_sym_type] = ACTIONS(5753), + [anon_sym_do] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_let] = ACTIONS(5753), + [anon_sym_let_BANG] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_null] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_LBRACK_PIPE] = ACTIONS(5751), + [anon_sym_LBRACE] = ACTIONS(5753), + [anon_sym_LT_AT] = ACTIONS(5753), + [anon_sym_LT_AT_AT] = ACTIONS(5751), + [anon_sym_LBRACE_PIPE] = ACTIONS(5751), + [anon_sym_new] = ACTIONS(5753), + [anon_sym_return_BANG] = ACTIONS(5751), + [anon_sym_yield] = ACTIONS(5753), + [anon_sym_yield_BANG] = ACTIONS(5751), + [anon_sym_lazy] = ACTIONS(5753), + [anon_sym_assert] = ACTIONS(5753), + [anon_sym_upcast] = ACTIONS(5753), + [anon_sym_downcast] = ACTIONS(5753), + [anon_sym_for] = ACTIONS(5753), + [anon_sym_while] = ACTIONS(5753), + [anon_sym_if] = ACTIONS(5753), + [anon_sym_fun] = ACTIONS(5753), + [anon_sym_try] = ACTIONS(5753), + [anon_sym_match] = ACTIONS(5753), + [anon_sym_match_BANG] = ACTIONS(5751), + [anon_sym_function] = ACTIONS(5753), + [anon_sym_use] = ACTIONS(5753), + [anon_sym_use_BANG] = ACTIONS(5751), + [anon_sym_do_BANG] = ACTIONS(5751), + [anon_sym_begin] = ACTIONS(5753), + [aux_sym_char_token1] = ACTIONS(5751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5753), + [anon_sym_AT_DQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5751), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5751), + [sym_bool] = ACTIONS(5753), + [sym_unit] = ACTIONS(5751), + [anon_sym_LPAREN_PIPE] = ACTIONS(5753), + [sym_op_identifier] = ACTIONS(5751), + [anon_sym_PLUS] = ACTIONS(5753), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_PLUS_DOT] = ACTIONS(5751), + [anon_sym_DASH_DOT] = ACTIONS(5751), + [anon_sym_PERCENT] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(5751), + [anon_sym_TILDE] = ACTIONS(5751), + [aux_sym_prefix_op_token1] = ACTIONS(5751), + [sym_int] = ACTIONS(5753), + [sym_xint] = ACTIONS(5751), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5751), + [anon_sym_POUNDload] = ACTIONS(5751), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5751), + }, + [3309] = { + [sym_xml_doc] = STATE(3309), + [sym_block_comment] = STATE(3309), + [sym_line_comment] = STATE(3309), + [sym_compiler_directive_decl] = STATE(3309), + [sym_fsi_directive_decl] = STATE(3309), + [sym_preproc_line] = STATE(3309), + [sym_identifier] = ACTIONS(5678), + [anon_sym_module] = ACTIONS(5678), + [anon_sym_open] = ACTIONS(5678), + [anon_sym_LBRACK_LT] = ACTIONS(5676), + [anon_sym_return] = ACTIONS(5678), + [anon_sym_type] = ACTIONS(5678), + [anon_sym_do] = ACTIONS(5678), + [anon_sym_and] = ACTIONS(5678), + [anon_sym_let] = ACTIONS(5678), + [anon_sym_let_BANG] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(5678), + [anon_sym_null] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACK_PIPE] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LT_AT] = ACTIONS(5678), + [anon_sym_LT_AT_AT] = ACTIONS(5676), + [anon_sym_LBRACE_PIPE] = ACTIONS(5676), + [anon_sym_new] = ACTIONS(5678), + [anon_sym_return_BANG] = ACTIONS(5676), + [anon_sym_yield] = ACTIONS(5678), + [anon_sym_yield_BANG] = ACTIONS(5676), + [anon_sym_lazy] = ACTIONS(5678), + [anon_sym_assert] = ACTIONS(5678), + [anon_sym_upcast] = ACTIONS(5678), + [anon_sym_downcast] = ACTIONS(5678), + [anon_sym_for] = ACTIONS(5678), + [anon_sym_while] = ACTIONS(5678), + [anon_sym_if] = ACTIONS(5678), + [anon_sym_fun] = ACTIONS(5678), + [anon_sym_try] = ACTIONS(5678), + [anon_sym_match] = ACTIONS(5678), + [anon_sym_match_BANG] = ACTIONS(5676), + [anon_sym_function] = ACTIONS(5678), + [anon_sym_use] = ACTIONS(5678), + [anon_sym_use_BANG] = ACTIONS(5676), + [anon_sym_do_BANG] = ACTIONS(5676), + [anon_sym_begin] = ACTIONS(5678), + [anon_sym_interface] = ACTIONS(5678), + [aux_sym_char_token1] = ACTIONS(5676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5678), + [anon_sym_DQUOTE] = ACTIONS(5678), + [anon_sym_AT_DQUOTE] = ACTIONS(5676), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5676), + [sym_bool] = ACTIONS(5678), + [sym_unit] = ACTIONS(5676), + [anon_sym_LPAREN_PIPE] = ACTIONS(5678), + [sym_op_identifier] = ACTIONS(5676), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_PLUS_DOT] = ACTIONS(5676), + [anon_sym_DASH_DOT] = ACTIONS(5676), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5676), + [aux_sym_prefix_op_token1] = ACTIONS(5676), + [sym_int] = ACTIONS(5678), + [sym_xint] = ACTIONS(5676), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5676), + [anon_sym_POUNDload] = ACTIONS(5676), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5676), + [sym__dedent] = ACTIONS(5676), + }, + [3310] = { + [sym_xml_doc] = STATE(3310), + [sym_block_comment] = STATE(3310), + [sym_line_comment] = STATE(3310), + [sym_compiler_directive_decl] = STATE(3310), + [sym_fsi_directive_decl] = STATE(3310), + [sym_preproc_line] = STATE(3310), + [ts_builtin_sym_end] = ACTIONS(5755), + [sym_identifier] = ACTIONS(5757), + [anon_sym_namespace] = ACTIONS(5757), + [anon_sym_module] = ACTIONS(5757), + [anon_sym_open] = ACTIONS(5757), + [anon_sym_LBRACK_LT] = ACTIONS(5755), + [anon_sym_return] = ACTIONS(5757), + [anon_sym_type] = ACTIONS(5757), + [anon_sym_do] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_let] = ACTIONS(5757), + [anon_sym_let_BANG] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_null] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_LBRACK_PIPE] = ACTIONS(5755), + [anon_sym_LBRACE] = ACTIONS(5757), + [anon_sym_LT_AT] = ACTIONS(5757), + [anon_sym_LT_AT_AT] = ACTIONS(5755), + [anon_sym_LBRACE_PIPE] = ACTIONS(5755), + [anon_sym_new] = ACTIONS(5757), + [anon_sym_return_BANG] = ACTIONS(5755), + [anon_sym_yield] = ACTIONS(5757), + [anon_sym_yield_BANG] = ACTIONS(5755), + [anon_sym_lazy] = ACTIONS(5757), + [anon_sym_assert] = ACTIONS(5757), + [anon_sym_upcast] = ACTIONS(5757), + [anon_sym_downcast] = ACTIONS(5757), + [anon_sym_for] = ACTIONS(5757), + [anon_sym_while] = ACTIONS(5757), + [anon_sym_if] = ACTIONS(5757), + [anon_sym_fun] = ACTIONS(5757), + [anon_sym_try] = ACTIONS(5757), + [anon_sym_match] = ACTIONS(5757), + [anon_sym_match_BANG] = ACTIONS(5755), + [anon_sym_function] = ACTIONS(5757), + [anon_sym_use] = ACTIONS(5757), + [anon_sym_use_BANG] = ACTIONS(5755), + [anon_sym_do_BANG] = ACTIONS(5755), + [anon_sym_begin] = ACTIONS(5757), + [aux_sym_char_token1] = ACTIONS(5755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5757), + [anon_sym_DQUOTE] = ACTIONS(5757), + [anon_sym_AT_DQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5755), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5755), + [sym_bool] = ACTIONS(5757), + [sym_unit] = ACTIONS(5755), + [anon_sym_LPAREN_PIPE] = ACTIONS(5757), + [sym_op_identifier] = ACTIONS(5755), + [anon_sym_PLUS] = ACTIONS(5757), + [anon_sym_DASH] = ACTIONS(5757), + [anon_sym_PLUS_DOT] = ACTIONS(5755), + [anon_sym_DASH_DOT] = ACTIONS(5755), + [anon_sym_PERCENT] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5755), + [anon_sym_TILDE] = ACTIONS(5755), + [aux_sym_prefix_op_token1] = ACTIONS(5755), + [sym_int] = ACTIONS(5757), + [sym_xint] = ACTIONS(5755), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5755), + [anon_sym_POUNDload] = ACTIONS(5755), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5755), + }, + [3311] = { + [sym_xml_doc] = STATE(3311), + [sym_block_comment] = STATE(3311), + [sym_line_comment] = STATE(3311), + [sym_compiler_directive_decl] = STATE(3311), + [sym_fsi_directive_decl] = STATE(3311), + [sym_preproc_line] = STATE(3311), + [ts_builtin_sym_end] = ACTIONS(5759), + [sym_identifier] = ACTIONS(5761), + [anon_sym_namespace] = ACTIONS(5761), + [anon_sym_module] = ACTIONS(5761), + [anon_sym_open] = ACTIONS(5761), + [anon_sym_LBRACK_LT] = ACTIONS(5759), + [anon_sym_return] = ACTIONS(5761), + [anon_sym_type] = ACTIONS(5761), + [anon_sym_do] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_let] = ACTIONS(5761), + [anon_sym_let_BANG] = ACTIONS(5759), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_null] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_LBRACK_PIPE] = ACTIONS(5759), + [anon_sym_LBRACE] = ACTIONS(5761), + [anon_sym_LT_AT] = ACTIONS(5761), + [anon_sym_LT_AT_AT] = ACTIONS(5759), + [anon_sym_LBRACE_PIPE] = ACTIONS(5759), + [anon_sym_new] = ACTIONS(5761), + [anon_sym_return_BANG] = ACTIONS(5759), + [anon_sym_yield] = ACTIONS(5761), + [anon_sym_yield_BANG] = ACTIONS(5759), + [anon_sym_lazy] = ACTIONS(5761), + [anon_sym_assert] = ACTIONS(5761), + [anon_sym_upcast] = ACTIONS(5761), + [anon_sym_downcast] = ACTIONS(5761), + [anon_sym_for] = ACTIONS(5761), + [anon_sym_while] = ACTIONS(5761), + [anon_sym_if] = ACTIONS(5761), + [anon_sym_fun] = ACTIONS(5761), + [anon_sym_try] = ACTIONS(5761), + [anon_sym_match] = ACTIONS(5761), + [anon_sym_match_BANG] = ACTIONS(5759), + [anon_sym_function] = ACTIONS(5761), + [anon_sym_use] = ACTIONS(5761), + [anon_sym_use_BANG] = ACTIONS(5759), + [anon_sym_do_BANG] = ACTIONS(5759), + [anon_sym_begin] = ACTIONS(5761), + [aux_sym_char_token1] = ACTIONS(5759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(5761), + [anon_sym_AT_DQUOTE] = ACTIONS(5759), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5759), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5759), + [sym_bool] = ACTIONS(5761), + [sym_unit] = ACTIONS(5759), + [anon_sym_LPAREN_PIPE] = ACTIONS(5761), + [sym_op_identifier] = ACTIONS(5759), + [anon_sym_PLUS] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5761), + [anon_sym_PLUS_DOT] = ACTIONS(5759), + [anon_sym_DASH_DOT] = ACTIONS(5759), + [anon_sym_PERCENT] = ACTIONS(5759), + [anon_sym_AMP_AMP] = ACTIONS(5759), + [anon_sym_TILDE] = ACTIONS(5759), + [aux_sym_prefix_op_token1] = ACTIONS(5759), + [sym_int] = ACTIONS(5761), + [sym_xint] = ACTIONS(5759), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5759), + [anon_sym_POUNDload] = ACTIONS(5759), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5759), + }, + [3312] = { + [sym_xml_doc] = STATE(3312), + [sym_block_comment] = STATE(3312), + [sym_line_comment] = STATE(3312), + [sym_compiler_directive_decl] = STATE(3312), + [sym_fsi_directive_decl] = STATE(3312), + [sym_preproc_line] = STATE(3312), + [aux_sym_type_argument_repeat1] = STATE(3312), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(5763), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + }, + [3313] = { + [sym_xml_doc] = STATE(3313), + [sym_block_comment] = STATE(3313), + [sym_line_comment] = STATE(3313), + [sym_compiler_directive_decl] = STATE(3313), + [sym_fsi_directive_decl] = STATE(3313), + [sym_preproc_line] = STATE(3313), + [sym_identifier] = ACTIONS(3351), + [anon_sym_GT_RBRACK] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5766), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + }, + [3314] = { + [sym_xml_doc] = STATE(3314), + [sym_block_comment] = STATE(3314), + [sym_line_comment] = STATE(3314), + [sym_compiler_directive_decl] = STATE(3314), + [sym_fsi_directive_decl] = STATE(3314), + [sym_preproc_line] = STATE(3314), + [ts_builtin_sym_end] = ACTIONS(5768), + [sym_identifier] = ACTIONS(5770), + [anon_sym_namespace] = ACTIONS(5770), + [anon_sym_module] = ACTIONS(5770), + [anon_sym_open] = ACTIONS(5770), + [anon_sym_LBRACK_LT] = ACTIONS(5768), + [anon_sym_return] = ACTIONS(5770), + [anon_sym_type] = ACTIONS(5770), + [anon_sym_do] = ACTIONS(5770), + [anon_sym_and] = ACTIONS(5770), + [anon_sym_let] = ACTIONS(5770), + [anon_sym_let_BANG] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_null] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_LBRACK_PIPE] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_LT_AT] = ACTIONS(5770), + [anon_sym_LT_AT_AT] = ACTIONS(5768), + [anon_sym_LBRACE_PIPE] = ACTIONS(5768), + [anon_sym_new] = ACTIONS(5770), + [anon_sym_return_BANG] = ACTIONS(5768), + [anon_sym_yield] = ACTIONS(5770), + [anon_sym_yield_BANG] = ACTIONS(5768), + [anon_sym_lazy] = ACTIONS(5770), + [anon_sym_assert] = ACTIONS(5770), + [anon_sym_upcast] = ACTIONS(5770), + [anon_sym_downcast] = ACTIONS(5770), + [anon_sym_for] = ACTIONS(5770), + [anon_sym_while] = ACTIONS(5770), + [anon_sym_if] = ACTIONS(5770), + [anon_sym_fun] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5770), + [anon_sym_match] = ACTIONS(5770), + [anon_sym_match_BANG] = ACTIONS(5768), + [anon_sym_function] = ACTIONS(5770), + [anon_sym_use] = ACTIONS(5770), + [anon_sym_use_BANG] = ACTIONS(5768), + [anon_sym_do_BANG] = ACTIONS(5768), + [anon_sym_begin] = ACTIONS(5770), + [aux_sym_char_token1] = ACTIONS(5768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [anon_sym_AT_DQUOTE] = ACTIONS(5768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5768), + [sym_bool] = ACTIONS(5770), + [sym_unit] = ACTIONS(5768), + [anon_sym_LPAREN_PIPE] = ACTIONS(5770), + [sym_op_identifier] = ACTIONS(5768), + [anon_sym_PLUS] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_PLUS_DOT] = ACTIONS(5768), + [anon_sym_DASH_DOT] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(5768), + [anon_sym_AMP_AMP] = ACTIONS(5768), + [anon_sym_TILDE] = ACTIONS(5768), + [aux_sym_prefix_op_token1] = ACTIONS(5768), + [sym_int] = ACTIONS(5770), + [sym_xint] = ACTIONS(5768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5768), + [anon_sym_POUNDload] = ACTIONS(5768), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5768), + }, + [3315] = { + [sym_xml_doc] = STATE(3315), + [sym_block_comment] = STATE(3315), + [sym_line_comment] = STATE(3315), + [sym_compiler_directive_decl] = STATE(3315), + [sym_fsi_directive_decl] = STATE(3315), + [sym_preproc_line] = STATE(3315), + [ts_builtin_sym_end] = ACTIONS(5772), + [sym_identifier] = ACTIONS(5774), + [anon_sym_namespace] = ACTIONS(5774), + [anon_sym_module] = ACTIONS(5774), + [anon_sym_open] = ACTIONS(5774), + [anon_sym_LBRACK_LT] = ACTIONS(5772), + [anon_sym_return] = ACTIONS(5774), + [anon_sym_type] = ACTIONS(5774), + [anon_sym_do] = ACTIONS(5774), + [anon_sym_and] = ACTIONS(5774), + [anon_sym_let] = ACTIONS(5774), + [anon_sym_let_BANG] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_null] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_LBRACK_PIPE] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_LT_AT] = ACTIONS(5774), + [anon_sym_LT_AT_AT] = ACTIONS(5772), + [anon_sym_LBRACE_PIPE] = ACTIONS(5772), + [anon_sym_new] = ACTIONS(5774), + [anon_sym_return_BANG] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5774), + [anon_sym_yield_BANG] = ACTIONS(5772), + [anon_sym_lazy] = ACTIONS(5774), + [anon_sym_assert] = ACTIONS(5774), + [anon_sym_upcast] = ACTIONS(5774), + [anon_sym_downcast] = ACTIONS(5774), + [anon_sym_for] = ACTIONS(5774), + [anon_sym_while] = ACTIONS(5774), + [anon_sym_if] = ACTIONS(5774), + [anon_sym_fun] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5774), + [anon_sym_match] = ACTIONS(5774), + [anon_sym_match_BANG] = ACTIONS(5772), + [anon_sym_function] = ACTIONS(5774), + [anon_sym_use] = ACTIONS(5774), + [anon_sym_use_BANG] = ACTIONS(5772), + [anon_sym_do_BANG] = ACTIONS(5772), + [anon_sym_begin] = ACTIONS(5774), + [aux_sym_char_token1] = ACTIONS(5772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [anon_sym_AT_DQUOTE] = ACTIONS(5772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5772), + [sym_bool] = ACTIONS(5774), + [sym_unit] = ACTIONS(5772), + [anon_sym_LPAREN_PIPE] = ACTIONS(5774), + [sym_op_identifier] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_PLUS_DOT] = ACTIONS(5772), + [anon_sym_DASH_DOT] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5772), + [anon_sym_AMP_AMP] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5772), + [aux_sym_prefix_op_token1] = ACTIONS(5772), + [sym_int] = ACTIONS(5774), + [sym_xint] = ACTIONS(5772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5772), + [anon_sym_POUNDload] = ACTIONS(5772), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5772), + }, + [3316] = { + [sym_xml_doc] = STATE(3316), + [sym_block_comment] = STATE(3316), + [sym_line_comment] = STATE(3316), + [sym_compiler_directive_decl] = STATE(3316), + [sym_fsi_directive_decl] = STATE(3316), + [sym_preproc_line] = STATE(3316), + [aux_sym_type_argument_repeat1] = STATE(3312), + [sym_identifier] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_let_BANG] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LBRACK_PIPE] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_LT_AT] = ACTIONS(3230), + [anon_sym_LT_AT_AT] = ACTIONS(3232), + [anon_sym_LBRACE_PIPE] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_return_BANG] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_yield_BANG] = ACTIONS(3232), + [anon_sym_lazy] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_upcast] = ACTIONS(3230), + [anon_sym_downcast] = ACTIONS(3230), + [anon_sym_COLON_GT] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_fun] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_match_BANG] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_use] = ACTIONS(3230), + [anon_sym_use_BANG] = ACTIONS(3232), + [anon_sym_do_BANG] = ACTIONS(3232), + [anon_sym_begin] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_LT2] = ACTIONS(3230), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(5709), + [aux_sym_char_token1] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_AT_DQUOTE] = ACTIONS(3232), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3232), + [sym_bool] = ACTIONS(3230), + [sym_unit] = ACTIONS(3232), + [anon_sym_LPAREN_PIPE] = ACTIONS(3230), + [sym_op_identifier] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS_DOT] = ACTIONS(3232), + [anon_sym_DASH_DOT] = ACTIONS(3232), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [aux_sym_prefix_op_token1] = ACTIONS(3232), + [sym_int] = ACTIONS(3230), + [sym_xint] = ACTIONS(3232), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3232), + }, + [3317] = { + [sym_type_arguments] = STATE(3472), + [sym_long_identifier] = STATE(3471), + [sym_xml_doc] = STATE(3317), + [sym_block_comment] = STATE(3317), + [sym_line_comment] = STATE(3317), + [sym_compiler_directive_decl] = STATE(3317), + [sym_fsi_directive_decl] = STATE(3317), + [sym_preproc_line] = STATE(3317), + [aux_sym__compound_type_repeat1] = STATE(3440), + [sym_identifier] = ACTIONS(5688), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2371), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + }, + [3318] = { + [sym_xml_doc] = STATE(3318), + [sym_block_comment] = STATE(3318), + [sym_line_comment] = STATE(3318), + [sym_compiler_directive_decl] = STATE(3318), + [sym_fsi_directive_decl] = STATE(3318), + [sym_preproc_line] = STATE(3318), + [sym_identifier] = ACTIONS(5593), + [anon_sym_module] = ACTIONS(5593), + [anon_sym_open] = ACTIONS(5593), + [anon_sym_LBRACK_LT] = ACTIONS(5591), + [anon_sym_return] = ACTIONS(5593), + [anon_sym_type] = ACTIONS(5593), + [anon_sym_do] = ACTIONS(5593), + [anon_sym_and] = ACTIONS(5593), + [anon_sym_let] = ACTIONS(5593), + [anon_sym_let_BANG] = ACTIONS(5591), + [anon_sym_LPAREN] = ACTIONS(5593), + [anon_sym_null] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_LBRACK_PIPE] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_LT_AT] = ACTIONS(5593), + [anon_sym_LT_AT_AT] = ACTIONS(5591), + [anon_sym_LBRACE_PIPE] = ACTIONS(5591), + [anon_sym_new] = ACTIONS(5593), + [anon_sym_return_BANG] = ACTIONS(5591), + [anon_sym_yield] = ACTIONS(5593), + [anon_sym_yield_BANG] = ACTIONS(5591), + [anon_sym_lazy] = ACTIONS(5593), + [anon_sym_assert] = ACTIONS(5593), + [anon_sym_upcast] = ACTIONS(5593), + [anon_sym_downcast] = ACTIONS(5593), + [anon_sym_for] = ACTIONS(5593), + [anon_sym_while] = ACTIONS(5593), + [anon_sym_if] = ACTIONS(5593), + [anon_sym_fun] = ACTIONS(5593), + [anon_sym_try] = ACTIONS(5593), + [anon_sym_match] = ACTIONS(5593), + [anon_sym_match_BANG] = ACTIONS(5591), + [anon_sym_function] = ACTIONS(5593), + [anon_sym_use] = ACTIONS(5593), + [anon_sym_use_BANG] = ACTIONS(5591), + [anon_sym_do_BANG] = ACTIONS(5591), + [anon_sym_begin] = ACTIONS(5593), + [anon_sym_interface] = ACTIONS(5593), + [aux_sym_char_token1] = ACTIONS(5591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5593), + [anon_sym_DQUOTE] = ACTIONS(5593), + [anon_sym_AT_DQUOTE] = ACTIONS(5591), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5591), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5591), + [sym_bool] = ACTIONS(5593), + [sym_unit] = ACTIONS(5591), + [anon_sym_LPAREN_PIPE] = ACTIONS(5593), + [sym_op_identifier] = ACTIONS(5591), + [anon_sym_PLUS] = ACTIONS(5593), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_PLUS_DOT] = ACTIONS(5591), + [anon_sym_DASH_DOT] = ACTIONS(5591), + [anon_sym_PERCENT] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [aux_sym_prefix_op_token1] = ACTIONS(5591), + [sym_int] = ACTIONS(5593), + [sym_xint] = ACTIONS(5591), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5591), + [anon_sym_POUNDload] = ACTIONS(5591), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5591), + [sym__dedent] = ACTIONS(5591), + }, + [3319] = { + [sym_xml_doc] = STATE(3319), + [sym_block_comment] = STATE(3319), + [sym_line_comment] = STATE(3319), + [sym_compiler_directive_decl] = STATE(3319), + [sym_fsi_directive_decl] = STATE(3319), + [sym_preproc_line] = STATE(3319), + [ts_builtin_sym_end] = ACTIONS(5776), + [sym_identifier] = ACTIONS(5778), + [anon_sym_namespace] = ACTIONS(5778), + [anon_sym_module] = ACTIONS(5778), + [anon_sym_open] = ACTIONS(5778), + [anon_sym_LBRACK_LT] = ACTIONS(5776), + [anon_sym_return] = ACTIONS(5778), + [anon_sym_type] = ACTIONS(5778), + [anon_sym_do] = ACTIONS(5778), + [anon_sym_and] = ACTIONS(5778), + [anon_sym_let] = ACTIONS(5778), + [anon_sym_let_BANG] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_null] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_LBRACK_PIPE] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_LT_AT] = ACTIONS(5778), + [anon_sym_LT_AT_AT] = ACTIONS(5776), + [anon_sym_LBRACE_PIPE] = ACTIONS(5776), + [anon_sym_new] = ACTIONS(5778), + [anon_sym_return_BANG] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5778), + [anon_sym_yield_BANG] = ACTIONS(5776), + [anon_sym_lazy] = ACTIONS(5778), + [anon_sym_assert] = ACTIONS(5778), + [anon_sym_upcast] = ACTIONS(5778), + [anon_sym_downcast] = ACTIONS(5778), + [anon_sym_for] = ACTIONS(5778), + [anon_sym_while] = ACTIONS(5778), + [anon_sym_if] = ACTIONS(5778), + [anon_sym_fun] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5778), + [anon_sym_match] = ACTIONS(5778), + [anon_sym_match_BANG] = ACTIONS(5776), + [anon_sym_function] = ACTIONS(5778), + [anon_sym_use] = ACTIONS(5778), + [anon_sym_use_BANG] = ACTIONS(5776), + [anon_sym_do_BANG] = ACTIONS(5776), + [anon_sym_begin] = ACTIONS(5778), + [aux_sym_char_token1] = ACTIONS(5776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [anon_sym_AT_DQUOTE] = ACTIONS(5776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5776), + [sym_bool] = ACTIONS(5778), + [sym_unit] = ACTIONS(5776), + [anon_sym_LPAREN_PIPE] = ACTIONS(5778), + [sym_op_identifier] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_PLUS_DOT] = ACTIONS(5776), + [anon_sym_DASH_DOT] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_AMP_AMP] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5776), + [aux_sym_prefix_op_token1] = ACTIONS(5776), + [sym_int] = ACTIONS(5778), + [sym_xint] = ACTIONS(5776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5776), + [anon_sym_POUNDload] = ACTIONS(5776), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5776), + }, + [3320] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7260), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3320), + [sym_block_comment] = STATE(3320), + [sym_line_comment] = STATE(3320), + [sym_compiler_directive_decl] = STATE(3320), + [sym_fsi_directive_decl] = STATE(3320), + [sym_preproc_line] = STATE(3320), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5786), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3321] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7967), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3321), + [sym_block_comment] = STATE(3321), + [sym_line_comment] = STATE(3321), + [sym_compiler_directive_decl] = STATE(3321), + [sym_fsi_directive_decl] = STATE(3321), + [sym_preproc_line] = STATE(3321), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3322] = { + [sym_xml_doc] = STATE(3322), + [sym_block_comment] = STATE(3322), + [sym_line_comment] = STATE(3322), + [sym_compiler_directive_decl] = STATE(3322), + [sym_fsi_directive_decl] = STATE(3322), + [sym_preproc_line] = STATE(3322), + [aux_sym_long_identifier_repeat1] = STATE(3348), + [sym_identifier] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_do] = ACTIONS(3257), + [anon_sym_let] = ACTIONS(3257), + [anon_sym_let_BANG] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACK_PIPE] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_LT_AT] = ACTIONS(3257), + [anon_sym_LT_AT_AT] = ACTIONS(3259), + [anon_sym_DOT] = ACTIONS(5816), + [anon_sym_LBRACE_PIPE] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3257), + [anon_sym_return_BANG] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3257), + [anon_sym_yield_BANG] = ACTIONS(3259), + [anon_sym_lazy] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_upcast] = ACTIONS(3257), + [anon_sym_downcast] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_fun] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_match_BANG] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3257), + [anon_sym_use] = ACTIONS(3257), + [anon_sym_use_BANG] = ACTIONS(3259), + [anon_sym_do_BANG] = ACTIONS(3259), + [anon_sym_begin] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_LT2] = ACTIONS(3257), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3259), + [aux_sym_char_token1] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3257), + [anon_sym_AT_DQUOTE] = ACTIONS(3259), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3259), + [sym_bool] = ACTIONS(3257), + [sym_unit] = ACTIONS(3259), + [anon_sym_LPAREN_PIPE] = ACTIONS(3257), + [sym_op_identifier] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_PLUS_DOT] = ACTIONS(3259), + [anon_sym_DASH_DOT] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3259), + [aux_sym_prefix_op_token1] = ACTIONS(3259), + [sym_int] = ACTIONS(3257), + [sym_xint] = ACTIONS(3259), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3259), + }, + [3323] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8271), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3323), + [sym_block_comment] = STATE(3323), + [sym_line_comment] = STATE(3323), + [sym_compiler_directive_decl] = STATE(3323), + [sym_fsi_directive_decl] = STATE(3323), + [sym_preproc_line] = STATE(3323), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5818), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3324] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7871), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3324), + [sym_block_comment] = STATE(3324), + [sym_line_comment] = STATE(3324), + [sym_compiler_directive_decl] = STATE(3324), + [sym_fsi_directive_decl] = STATE(3324), + [sym_preproc_line] = STATE(3324), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5820), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3325] = { + [sym_xml_doc] = STATE(3325), + [sym_block_comment] = STATE(3325), + [sym_line_comment] = STATE(3325), + [sym_compiler_directive_decl] = STATE(3325), + [sym_fsi_directive_decl] = STATE(3325), + [sym_preproc_line] = STATE(3325), + [sym_identifier] = ACTIONS(3296), + [anon_sym_GT_RBRACK] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__newline] = ACTIONS(3298), + }, + [3326] = { + [sym_xml_doc] = STATE(3326), + [sym_block_comment] = STATE(3326), + [sym_line_comment] = STATE(3326), + [sym_compiler_directive_decl] = STATE(3326), + [sym_fsi_directive_decl] = STATE(3326), + [sym_preproc_line] = STATE(3326), + [ts_builtin_sym_end] = ACTIONS(4173), + [sym_identifier] = ACTIONS(4175), + [anon_sym_namespace] = ACTIONS(4175), + [anon_sym_module] = ACTIONS(4175), + [anon_sym_open] = ACTIONS(4175), + [anon_sym_LBRACK_LT] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_do] = ACTIONS(4175), + [anon_sym_let] = ACTIONS(4175), + [anon_sym_let_BANG] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_LBRACK_PIPE] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_LT_AT] = ACTIONS(4175), + [anon_sym_LT_AT_AT] = ACTIONS(4173), + [anon_sym_LBRACE_PIPE] = ACTIONS(4173), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_return_BANG] = ACTIONS(4173), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_yield_BANG] = ACTIONS(4173), + [anon_sym_lazy] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_upcast] = ACTIONS(4175), + [anon_sym_downcast] = ACTIONS(4175), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_fun] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_match_BANG] = ACTIONS(4173), + [anon_sym_function] = ACTIONS(4175), + [anon_sym_use] = ACTIONS(4175), + [anon_sym_use_BANG] = ACTIONS(4173), + [anon_sym_do_BANG] = ACTIONS(4173), + [anon_sym_begin] = ACTIONS(4175), + [aux_sym_char_token1] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(4175), + [anon_sym_AT_DQUOTE] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [sym_bool] = ACTIONS(4175), + [sym_unit] = ACTIONS(4173), + [anon_sym_LPAREN_PIPE] = ACTIONS(4175), + [sym_op_identifier] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4175), + [anon_sym_DASH] = ACTIONS(4175), + [anon_sym_PLUS_DOT] = ACTIONS(4173), + [anon_sym_DASH_DOT] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [aux_sym_prefix_op_token1] = ACTIONS(4173), + [sym_int] = ACTIONS(4175), + [sym_xint] = ACTIONS(4173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4173), + [anon_sym_POUNDload] = ACTIONS(4173), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4173), + }, + [3327] = { + [sym_xml_doc] = STATE(3327), + [sym_block_comment] = STATE(3327), + [sym_line_comment] = STATE(3327), + [sym_compiler_directive_decl] = STATE(3327), + [sym_fsi_directive_decl] = STATE(3327), + [sym_preproc_line] = STATE(3327), + [sym_identifier] = ACTIONS(5564), + [anon_sym_module] = ACTIONS(5564), + [anon_sym_open] = ACTIONS(5564), + [anon_sym_LBRACK_LT] = ACTIONS(5562), + [anon_sym_return] = ACTIONS(5564), + [anon_sym_type] = ACTIONS(5564), + [anon_sym_do] = ACTIONS(5564), + [anon_sym_and] = ACTIONS(5564), + [anon_sym_let] = ACTIONS(5564), + [anon_sym_let_BANG] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5564), + [anon_sym_null] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_LBRACK_PIPE] = ACTIONS(5562), + [anon_sym_LBRACE] = ACTIONS(5564), + [anon_sym_LT_AT] = ACTIONS(5564), + [anon_sym_LT_AT_AT] = ACTIONS(5562), + [anon_sym_LBRACE_PIPE] = ACTIONS(5562), + [anon_sym_new] = ACTIONS(5564), + [anon_sym_return_BANG] = ACTIONS(5562), + [anon_sym_yield] = ACTIONS(5564), + [anon_sym_yield_BANG] = ACTIONS(5562), + [anon_sym_lazy] = ACTIONS(5564), + [anon_sym_assert] = ACTIONS(5564), + [anon_sym_upcast] = ACTIONS(5564), + [anon_sym_downcast] = ACTIONS(5564), + [anon_sym_for] = ACTIONS(5564), + [anon_sym_while] = ACTIONS(5564), + [anon_sym_if] = ACTIONS(5564), + [anon_sym_fun] = ACTIONS(5564), + [anon_sym_try] = ACTIONS(5564), + [anon_sym_match] = ACTIONS(5564), + [anon_sym_match_BANG] = ACTIONS(5562), + [anon_sym_function] = ACTIONS(5564), + [anon_sym_use] = ACTIONS(5564), + [anon_sym_use_BANG] = ACTIONS(5562), + [anon_sym_do_BANG] = ACTIONS(5562), + [anon_sym_begin] = ACTIONS(5564), + [aux_sym_char_token1] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5564), + [anon_sym_DQUOTE] = ACTIONS(5564), + [anon_sym_AT_DQUOTE] = ACTIONS(5562), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5562), + [sym_bool] = ACTIONS(5564), + [sym_unit] = ACTIONS(5562), + [anon_sym_LPAREN_PIPE] = ACTIONS(5564), + [sym_op_identifier] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [anon_sym_PLUS_DOT] = ACTIONS(5562), + [anon_sym_DASH_DOT] = ACTIONS(5562), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_TILDE] = ACTIONS(5562), + [aux_sym_prefix_op_token1] = ACTIONS(5562), + [sym_int] = ACTIONS(5564), + [sym_xint] = ACTIONS(5562), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5562), + [anon_sym_POUNDload] = ACTIONS(5562), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5562), + [sym__dedent] = ACTIONS(5562), + }, + [3328] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7612), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3328), + [sym_block_comment] = STATE(3328), + [sym_line_comment] = STATE(3328), + [sym_compiler_directive_decl] = STATE(3328), + [sym_fsi_directive_decl] = STATE(3328), + [sym_preproc_line] = STATE(3328), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5822), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3329] = { + [sym_xml_doc] = STATE(3329), + [sym_block_comment] = STATE(3329), + [sym_line_comment] = STATE(3329), + [sym_compiler_directive_decl] = STATE(3329), + [sym_fsi_directive_decl] = STATE(3329), + [sym_preproc_line] = STATE(3329), + [sym_identifier] = ACTIONS(5753), + [anon_sym_module] = ACTIONS(5753), + [anon_sym_open] = ACTIONS(5753), + [anon_sym_LBRACK_LT] = ACTIONS(5751), + [anon_sym_return] = ACTIONS(5753), + [anon_sym_type] = ACTIONS(5753), + [anon_sym_do] = ACTIONS(5753), + [anon_sym_and] = ACTIONS(5753), + [anon_sym_let] = ACTIONS(5753), + [anon_sym_let_BANG] = ACTIONS(5751), + [anon_sym_LPAREN] = ACTIONS(5753), + [anon_sym_null] = ACTIONS(5753), + [anon_sym_AMP] = ACTIONS(5753), + [anon_sym_LBRACK] = ACTIONS(5753), + [anon_sym_LBRACK_PIPE] = ACTIONS(5751), + [anon_sym_LBRACE] = ACTIONS(5753), + [anon_sym_LT_AT] = ACTIONS(5753), + [anon_sym_LT_AT_AT] = ACTIONS(5751), + [anon_sym_LBRACE_PIPE] = ACTIONS(5751), + [anon_sym_new] = ACTIONS(5753), + [anon_sym_return_BANG] = ACTIONS(5751), + [anon_sym_yield] = ACTIONS(5753), + [anon_sym_yield_BANG] = ACTIONS(5751), + [anon_sym_lazy] = ACTIONS(5753), + [anon_sym_assert] = ACTIONS(5753), + [anon_sym_upcast] = ACTIONS(5753), + [anon_sym_downcast] = ACTIONS(5753), + [anon_sym_for] = ACTIONS(5753), + [anon_sym_while] = ACTIONS(5753), + [anon_sym_if] = ACTIONS(5753), + [anon_sym_fun] = ACTIONS(5753), + [anon_sym_try] = ACTIONS(5753), + [anon_sym_match] = ACTIONS(5753), + [anon_sym_match_BANG] = ACTIONS(5751), + [anon_sym_function] = ACTIONS(5753), + [anon_sym_use] = ACTIONS(5753), + [anon_sym_use_BANG] = ACTIONS(5751), + [anon_sym_do_BANG] = ACTIONS(5751), + [anon_sym_begin] = ACTIONS(5753), + [aux_sym_char_token1] = ACTIONS(5751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5753), + [anon_sym_AT_DQUOTE] = ACTIONS(5751), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5751), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5751), + [sym_bool] = ACTIONS(5753), + [sym_unit] = ACTIONS(5751), + [anon_sym_LPAREN_PIPE] = ACTIONS(5753), + [sym_op_identifier] = ACTIONS(5751), + [anon_sym_PLUS] = ACTIONS(5753), + [anon_sym_DASH] = ACTIONS(5753), + [anon_sym_PLUS_DOT] = ACTIONS(5751), + [anon_sym_DASH_DOT] = ACTIONS(5751), + [anon_sym_PERCENT] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(5751), + [anon_sym_TILDE] = ACTIONS(5751), + [aux_sym_prefix_op_token1] = ACTIONS(5751), + [sym_int] = ACTIONS(5753), + [sym_xint] = ACTIONS(5751), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5751), + [anon_sym_POUNDload] = ACTIONS(5751), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5751), + [sym__dedent] = ACTIONS(5751), + }, + [3330] = { + [sym_xml_doc] = STATE(3330), + [sym_block_comment] = STATE(3330), + [sym_line_comment] = STATE(3330), + [sym_compiler_directive_decl] = STATE(3330), + [sym_fsi_directive_decl] = STATE(3330), + [sym_preproc_line] = STATE(3330), + [ts_builtin_sym_end] = ACTIONS(5824), + [sym_identifier] = ACTIONS(5826), + [anon_sym_namespace] = ACTIONS(5826), + [anon_sym_module] = ACTIONS(5826), + [anon_sym_open] = ACTIONS(5826), + [anon_sym_LBRACK_LT] = ACTIONS(5824), + [anon_sym_return] = ACTIONS(5826), + [anon_sym_type] = ACTIONS(5826), + [anon_sym_do] = ACTIONS(5826), + [anon_sym_let] = ACTIONS(5826), + [anon_sym_let_BANG] = ACTIONS(5824), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_LBRACK_PIPE] = ACTIONS(5824), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_LT_AT] = ACTIONS(5826), + [anon_sym_LT_AT_AT] = ACTIONS(5824), + [anon_sym_LBRACE_PIPE] = ACTIONS(5824), + [anon_sym_new] = ACTIONS(5826), + [anon_sym_return_BANG] = ACTIONS(5824), + [anon_sym_yield] = ACTIONS(5826), + [anon_sym_yield_BANG] = ACTIONS(5824), + [anon_sym_lazy] = ACTIONS(5826), + [anon_sym_assert] = ACTIONS(5826), + [anon_sym_upcast] = ACTIONS(5826), + [anon_sym_downcast] = ACTIONS(5826), + [anon_sym_for] = ACTIONS(5826), + [anon_sym_while] = ACTIONS(5826), + [anon_sym_if] = ACTIONS(5826), + [anon_sym_fun] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5826), + [anon_sym_match] = ACTIONS(5826), + [anon_sym_match_BANG] = ACTIONS(5824), + [anon_sym_function] = ACTIONS(5826), + [anon_sym_use] = ACTIONS(5826), + [anon_sym_use_BANG] = ACTIONS(5824), + [anon_sym_do_BANG] = ACTIONS(5824), + [anon_sym_begin] = ACTIONS(5826), + [aux_sym_char_token1] = ACTIONS(5824), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [anon_sym_AT_DQUOTE] = ACTIONS(5824), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5824), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5824), + [sym_bool] = ACTIONS(5826), + [sym_unit] = ACTIONS(5824), + [anon_sym_LPAREN_PIPE] = ACTIONS(5826), + [sym_op_identifier] = ACTIONS(5824), + [anon_sym_PLUS] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5826), + [anon_sym_PLUS_DOT] = ACTIONS(5824), + [anon_sym_DASH_DOT] = ACTIONS(5824), + [anon_sym_PERCENT] = ACTIONS(5824), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_TILDE] = ACTIONS(5824), + [aux_sym_prefix_op_token1] = ACTIONS(5824), + [sym_int] = ACTIONS(5826), + [sym_xint] = ACTIONS(5824), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5824), + [anon_sym_POUNDload] = ACTIONS(5824), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5824), + }, + [3331] = { + [sym_xml_doc] = STATE(3331), + [sym_block_comment] = STATE(3331), + [sym_line_comment] = STATE(3331), + [sym_compiler_directive_decl] = STATE(3331), + [sym_fsi_directive_decl] = STATE(3331), + [sym_preproc_line] = STATE(3331), + [sym_identifier] = ACTIONS(3304), + [anon_sym_GT_RBRACK] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__newline] = ACTIONS(3306), + }, + [3332] = { + [sym_xml_doc] = STATE(3332), + [sym_block_comment] = STATE(3332), + [sym_line_comment] = STATE(3332), + [sym_compiler_directive_decl] = STATE(3332), + [sym_fsi_directive_decl] = STATE(3332), + [sym_preproc_line] = STATE(3332), + [sym_identifier] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_let_BANG] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_null] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LBRACK_PIPE] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LT_AT] = ACTIONS(3274), + [anon_sym_LT_AT_AT] = ACTIONS(3276), + [anon_sym_LBRACE_PIPE] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_return_BANG] = ACTIONS(3276), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_yield_BANG] = ACTIONS(3276), + [anon_sym_lazy] = ACTIONS(3274), + [anon_sym_assert] = ACTIONS(3274), + [anon_sym_upcast] = ACTIONS(3274), + [anon_sym_downcast] = ACTIONS(3274), + [anon_sym_COLON_GT] = ACTIONS(3276), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_fun] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(3276), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_match] = ACTIONS(3274), + [anon_sym_match_BANG] = ACTIONS(3276), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_use] = ACTIONS(3274), + [anon_sym_use_BANG] = ACTIONS(3276), + [anon_sym_do_BANG] = ACTIONS(3276), + [anon_sym_begin] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_LT2] = ACTIONS(3274), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3276), + [anon_sym_or] = ACTIONS(3274), + [aux_sym_char_token1] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_AT_DQUOTE] = ACTIONS(3276), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3276), + [sym_bool] = ACTIONS(3274), + [sym_unit] = ACTIONS(3276), + [anon_sym_LPAREN_PIPE] = ACTIONS(3274), + [sym_op_identifier] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS_DOT] = ACTIONS(3276), + [anon_sym_DASH_DOT] = ACTIONS(3276), + [anon_sym_PERCENT] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [aux_sym_prefix_op_token1] = ACTIONS(3276), + [sym_int] = ACTIONS(3274), + [sym_xint] = ACTIONS(3276), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3276), + }, + [3333] = { + [sym_xml_doc] = STATE(3333), + [sym_block_comment] = STATE(3333), + [sym_line_comment] = STATE(3333), + [sym_compiler_directive_decl] = STATE(3333), + [sym_fsi_directive_decl] = STATE(3333), + [sym_preproc_line] = STATE(3333), + [sym_identifier] = ACTIONS(5542), + [anon_sym_module] = ACTIONS(5542), + [anon_sym_open] = ACTIONS(5542), + [anon_sym_LBRACK_LT] = ACTIONS(5540), + [anon_sym_return] = ACTIONS(5542), + [anon_sym_type] = ACTIONS(5542), + [anon_sym_do] = ACTIONS(5542), + [anon_sym_and] = ACTIONS(5542), + [anon_sym_let] = ACTIONS(5542), + [anon_sym_let_BANG] = ACTIONS(5540), + [anon_sym_LPAREN] = ACTIONS(5542), + [anon_sym_null] = ACTIONS(5542), + [anon_sym_AMP] = ACTIONS(5542), + [anon_sym_LBRACK] = ACTIONS(5542), + [anon_sym_LBRACK_PIPE] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_LT_AT] = ACTIONS(5542), + [anon_sym_LT_AT_AT] = ACTIONS(5540), + [anon_sym_LBRACE_PIPE] = ACTIONS(5540), + [anon_sym_new] = ACTIONS(5542), + [anon_sym_return_BANG] = ACTIONS(5540), + [anon_sym_yield] = ACTIONS(5542), + [anon_sym_yield_BANG] = ACTIONS(5540), + [anon_sym_lazy] = ACTIONS(5542), + [anon_sym_assert] = ACTIONS(5542), + [anon_sym_upcast] = ACTIONS(5542), + [anon_sym_downcast] = ACTIONS(5542), + [anon_sym_for] = ACTIONS(5542), + [anon_sym_while] = ACTIONS(5542), + [anon_sym_if] = ACTIONS(5542), + [anon_sym_fun] = ACTIONS(5542), + [anon_sym_try] = ACTIONS(5542), + [anon_sym_match] = ACTIONS(5542), + [anon_sym_match_BANG] = ACTIONS(5540), + [anon_sym_function] = ACTIONS(5542), + [anon_sym_use] = ACTIONS(5542), + [anon_sym_use_BANG] = ACTIONS(5540), + [anon_sym_do_BANG] = ACTIONS(5540), + [anon_sym_begin] = ACTIONS(5542), + [aux_sym_char_token1] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5542), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_AT_DQUOTE] = ACTIONS(5540), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5540), + [sym_bool] = ACTIONS(5542), + [sym_unit] = ACTIONS(5540), + [anon_sym_LPAREN_PIPE] = ACTIONS(5542), + [sym_op_identifier] = ACTIONS(5540), + [anon_sym_PLUS] = ACTIONS(5542), + [anon_sym_DASH] = ACTIONS(5542), + [anon_sym_PLUS_DOT] = ACTIONS(5540), + [anon_sym_DASH_DOT] = ACTIONS(5540), + [anon_sym_PERCENT] = ACTIONS(5540), + [anon_sym_AMP_AMP] = ACTIONS(5540), + [anon_sym_TILDE] = ACTIONS(5540), + [aux_sym_prefix_op_token1] = ACTIONS(5540), + [sym_int] = ACTIONS(5542), + [sym_xint] = ACTIONS(5540), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5540), + [anon_sym_POUNDload] = ACTIONS(5540), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5540), + [sym__dedent] = ACTIONS(5540), + }, + [3334] = { + [sym_xml_doc] = STATE(3334), + [sym_block_comment] = STATE(3334), + [sym_line_comment] = STATE(3334), + [sym_compiler_directive_decl] = STATE(3334), + [sym_fsi_directive_decl] = STATE(3334), + [sym_preproc_line] = STATE(3334), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + [sym__dedent] = ACTIONS(3244), + }, + [3335] = { + [sym_xml_doc] = STATE(3335), + [sym_block_comment] = STATE(3335), + [sym_line_comment] = STATE(3335), + [sym_compiler_directive_decl] = STATE(3335), + [sym_fsi_directive_decl] = STATE(3335), + [sym_preproc_line] = STATE(3335), + [sym_identifier] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_open] = ACTIONS(3285), + [anon_sym_LBRACK_LT] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(3287), + [anon_sym_POUNDload] = ACTIONS(3287), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), + }, + [3336] = { + [sym_xml_doc] = STATE(3336), + [sym_block_comment] = STATE(3336), + [sym_line_comment] = STATE(3336), + [sym_compiler_directive_decl] = STATE(3336), + [sym_fsi_directive_decl] = STATE(3336), + [sym_preproc_line] = STATE(3336), + [ts_builtin_sym_end] = ACTIONS(5828), + [sym_identifier] = ACTIONS(5830), + [anon_sym_namespace] = ACTIONS(5830), + [anon_sym_module] = ACTIONS(5830), + [anon_sym_open] = ACTIONS(5830), + [anon_sym_LBRACK_LT] = ACTIONS(5828), + [anon_sym_return] = ACTIONS(5830), + [anon_sym_type] = ACTIONS(5830), + [anon_sym_do] = ACTIONS(5830), + [anon_sym_let] = ACTIONS(5830), + [anon_sym_let_BANG] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_null] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_LBRACK_PIPE] = ACTIONS(5828), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_LT_AT] = ACTIONS(5830), + [anon_sym_LT_AT_AT] = ACTIONS(5828), + [anon_sym_LBRACE_PIPE] = ACTIONS(5828), + [anon_sym_new] = ACTIONS(5830), + [anon_sym_return_BANG] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5830), + [anon_sym_yield_BANG] = ACTIONS(5828), + [anon_sym_lazy] = ACTIONS(5830), + [anon_sym_assert] = ACTIONS(5830), + [anon_sym_upcast] = ACTIONS(5830), + [anon_sym_downcast] = ACTIONS(5830), + [anon_sym_for] = ACTIONS(5830), + [anon_sym_while] = ACTIONS(5830), + [anon_sym_if] = ACTIONS(5830), + [anon_sym_fun] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5830), + [anon_sym_match] = ACTIONS(5830), + [anon_sym_match_BANG] = ACTIONS(5828), + [anon_sym_function] = ACTIONS(5830), + [anon_sym_use] = ACTIONS(5830), + [anon_sym_use_BANG] = ACTIONS(5828), + [anon_sym_do_BANG] = ACTIONS(5828), + [anon_sym_begin] = ACTIONS(5830), + [aux_sym_char_token1] = ACTIONS(5828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [anon_sym_AT_DQUOTE] = ACTIONS(5828), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5828), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5828), + [sym_bool] = ACTIONS(5830), + [sym_unit] = ACTIONS(5828), + [anon_sym_LPAREN_PIPE] = ACTIONS(5830), + [sym_op_identifier] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [anon_sym_PLUS_DOT] = ACTIONS(5828), + [anon_sym_DASH_DOT] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5828), + [aux_sym_prefix_op_token1] = ACTIONS(5828), + [sym_int] = ACTIONS(5830), + [sym_xint] = ACTIONS(5828), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5828), + [anon_sym_POUNDload] = ACTIONS(5828), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5828), + }, + [3337] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8281), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3337), + [sym_block_comment] = STATE(3337), + [sym_line_comment] = STATE(3337), + [sym_compiler_directive_decl] = STATE(3337), + [sym_fsi_directive_decl] = STATE(3337), + [sym_preproc_line] = STATE(3337), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5832), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3338] = { + [sym_xml_doc] = STATE(3338), + [sym_block_comment] = STATE(3338), + [sym_line_comment] = STATE(3338), + [sym_compiler_directive_decl] = STATE(3338), + [sym_fsi_directive_decl] = STATE(3338), + [sym_preproc_line] = STATE(3338), + [sym_identifier] = ACTIONS(3300), + [anon_sym_GT_RBRACK] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__newline] = ACTIONS(3302), + }, + [3339] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7390), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3339), + [sym_block_comment] = STATE(3339), + [sym_line_comment] = STATE(3339), + [sym_compiler_directive_decl] = STATE(3339), + [sym_fsi_directive_decl] = STATE(3339), + [sym_preproc_line] = STATE(3339), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5834), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3340] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7869), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3340), + [sym_block_comment] = STATE(3340), + [sym_line_comment] = STATE(3340), + [sym_compiler_directive_decl] = STATE(3340), + [sym_fsi_directive_decl] = STATE(3340), + [sym_preproc_line] = STATE(3340), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5836), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3341] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8280), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3341), + [sym_block_comment] = STATE(3341), + [sym_line_comment] = STATE(3341), + [sym_compiler_directive_decl] = STATE(3341), + [sym_fsi_directive_decl] = STATE(3341), + [sym_preproc_line] = STATE(3341), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5838), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3342] = { + [sym_xml_doc] = STATE(3342), + [sym_block_comment] = STATE(3342), + [sym_line_comment] = STATE(3342), + [sym_compiler_directive_decl] = STATE(3342), + [sym_fsi_directive_decl] = STATE(3342), + [sym_preproc_line] = STATE(3342), + [sym_identifier] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + }, + [3343] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8029), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3343), + [sym_block_comment] = STATE(3343), + [sym_line_comment] = STATE(3343), + [sym_compiler_directive_decl] = STATE(3343), + [sym_fsi_directive_decl] = STATE(3343), + [sym_preproc_line] = STATE(3343), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5840), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3344] = { + [sym_xml_doc] = STATE(3344), + [sym_block_comment] = STATE(3344), + [sym_line_comment] = STATE(3344), + [sym_compiler_directive_decl] = STATE(3344), + [sym_fsi_directive_decl] = STATE(3344), + [sym_preproc_line] = STATE(3344), + [sym_identifier] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + }, + [3345] = { + [sym_xml_doc] = STATE(3345), + [sym_block_comment] = STATE(3345), + [sym_line_comment] = STATE(3345), + [sym_compiler_directive_decl] = STATE(3345), + [sym_fsi_directive_decl] = STATE(3345), + [sym_preproc_line] = STATE(3345), + [ts_builtin_sym_end] = ACTIONS(5842), + [sym_identifier] = ACTIONS(5844), + [anon_sym_namespace] = ACTIONS(5844), + [anon_sym_module] = ACTIONS(5844), + [anon_sym_open] = ACTIONS(5844), + [anon_sym_LBRACK_LT] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_do] = ACTIONS(5844), + [anon_sym_let] = ACTIONS(5844), + [anon_sym_let_BANG] = ACTIONS(5842), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5844), + [anon_sym_LBRACK_PIPE] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5844), + [anon_sym_LT_AT] = ACTIONS(5844), + [anon_sym_LT_AT_AT] = ACTIONS(5842), + [anon_sym_LBRACE_PIPE] = ACTIONS(5842), + [anon_sym_new] = ACTIONS(5844), + [anon_sym_return_BANG] = ACTIONS(5842), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_yield_BANG] = ACTIONS(5842), + [anon_sym_lazy] = ACTIONS(5844), + [anon_sym_assert] = ACTIONS(5844), + [anon_sym_upcast] = ACTIONS(5844), + [anon_sym_downcast] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_fun] = ACTIONS(5844), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_match_BANG] = ACTIONS(5842), + [anon_sym_function] = ACTIONS(5844), + [anon_sym_use] = ACTIONS(5844), + [anon_sym_use_BANG] = ACTIONS(5842), + [anon_sym_do_BANG] = ACTIONS(5842), + [anon_sym_begin] = ACTIONS(5844), + [aux_sym_char_token1] = ACTIONS(5842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(5844), + [anon_sym_AT_DQUOTE] = ACTIONS(5842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5842), + [sym_bool] = ACTIONS(5844), + [sym_unit] = ACTIONS(5842), + [anon_sym_LPAREN_PIPE] = ACTIONS(5844), + [sym_op_identifier] = ACTIONS(5842), + [anon_sym_PLUS] = ACTIONS(5844), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_PLUS_DOT] = ACTIONS(5842), + [anon_sym_DASH_DOT] = ACTIONS(5842), + [anon_sym_PERCENT] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5842), + [anon_sym_TILDE] = ACTIONS(5842), + [aux_sym_prefix_op_token1] = ACTIONS(5842), + [sym_int] = ACTIONS(5844), + [sym_xint] = ACTIONS(5842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5842), + [anon_sym_POUNDload] = ACTIONS(5842), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5842), + }, + [3346] = { + [sym_xml_doc] = STATE(3346), + [sym_block_comment] = STATE(3346), + [sym_line_comment] = STATE(3346), + [sym_compiler_directive_decl] = STATE(3346), + [sym_fsi_directive_decl] = STATE(3346), + [sym_preproc_line] = STATE(3346), + [sym_identifier] = ACTIONS(3355), + [anon_sym_GT_RBRACK] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5846), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__newline] = ACTIONS(3357), + }, + [3347] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8060), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3347), + [sym_block_comment] = STATE(3347), + [sym_line_comment] = STATE(3347), + [sym_compiler_directive_decl] = STATE(3347), + [sym_fsi_directive_decl] = STATE(3347), + [sym_preproc_line] = STATE(3347), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5848), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3348] = { + [sym_xml_doc] = STATE(3348), + [sym_block_comment] = STATE(3348), + [sym_line_comment] = STATE(3348), + [sym_compiler_directive_decl] = STATE(3348), + [sym_fsi_directive_decl] = STATE(3348), + [sym_preproc_line] = STATE(3348), + [aux_sym_long_identifier_repeat1] = STATE(3386), + [sym_identifier] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_let_BANG] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_null] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LBRACK_PIPE] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_LT_AT] = ACTIONS(3202), + [anon_sym_LT_AT_AT] = ACTIONS(3204), + [anon_sym_DOT] = ACTIONS(5816), + [anon_sym_LBRACE_PIPE] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_return_BANG] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_yield_BANG] = ACTIONS(3204), + [anon_sym_lazy] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_upcast] = ACTIONS(3202), + [anon_sym_downcast] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_fun] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_match_BANG] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_use] = ACTIONS(3202), + [anon_sym_use_BANG] = ACTIONS(3204), + [anon_sym_do_BANG] = ACTIONS(3204), + [anon_sym_begin] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_LT2] = ACTIONS(3202), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3204), + [aux_sym_char_token1] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_AT_DQUOTE] = ACTIONS(3204), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3204), + [sym_bool] = ACTIONS(3202), + [sym_unit] = ACTIONS(3204), + [anon_sym_LPAREN_PIPE] = ACTIONS(3202), + [sym_op_identifier] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_PLUS_DOT] = ACTIONS(3204), + [anon_sym_DASH_DOT] = ACTIONS(3204), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [aux_sym_prefix_op_token1] = ACTIONS(3204), + [sym_int] = ACTIONS(3202), + [sym_xint] = ACTIONS(3204), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3204), + }, + [3349] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7755), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3349), + [sym_block_comment] = STATE(3349), + [sym_line_comment] = STATE(3349), + [sym_compiler_directive_decl] = STATE(3349), + [sym_fsi_directive_decl] = STATE(3349), + [sym_preproc_line] = STATE(3349), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5850), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3350] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7763), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3350), + [sym_block_comment] = STATE(3350), + [sym_line_comment] = STATE(3350), + [sym_compiler_directive_decl] = STATE(3350), + [sym_fsi_directive_decl] = STATE(3350), + [sym_preproc_line] = STATE(3350), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5852), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3351] = { + [sym_xml_doc] = STATE(3351), + [sym_block_comment] = STATE(3351), + [sym_line_comment] = STATE(3351), + [sym_compiler_directive_decl] = STATE(3351), + [sym_fsi_directive_decl] = STATE(3351), + [sym_preproc_line] = STATE(3351), + [ts_builtin_sym_end] = ACTIONS(5854), + [sym_identifier] = ACTIONS(5856), + [anon_sym_namespace] = ACTIONS(5856), + [anon_sym_module] = ACTIONS(5856), + [anon_sym_open] = ACTIONS(5856), + [anon_sym_LBRACK_LT] = ACTIONS(5854), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_do] = ACTIONS(5856), + [anon_sym_let] = ACTIONS(5856), + [anon_sym_let_BANG] = ACTIONS(5854), + [anon_sym_LPAREN] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5856), + [anon_sym_LBRACK_PIPE] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5856), + [anon_sym_LT_AT] = ACTIONS(5856), + [anon_sym_LT_AT_AT] = ACTIONS(5854), + [anon_sym_LBRACE_PIPE] = ACTIONS(5854), + [anon_sym_new] = ACTIONS(5856), + [anon_sym_return_BANG] = ACTIONS(5854), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_yield_BANG] = ACTIONS(5854), + [anon_sym_lazy] = ACTIONS(5856), + [anon_sym_assert] = ACTIONS(5856), + [anon_sym_upcast] = ACTIONS(5856), + [anon_sym_downcast] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_fun] = ACTIONS(5856), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_match_BANG] = ACTIONS(5854), + [anon_sym_function] = ACTIONS(5856), + [anon_sym_use] = ACTIONS(5856), + [anon_sym_use_BANG] = ACTIONS(5854), + [anon_sym_do_BANG] = ACTIONS(5854), + [anon_sym_begin] = ACTIONS(5856), + [aux_sym_char_token1] = ACTIONS(5854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5856), + [anon_sym_DQUOTE] = ACTIONS(5856), + [anon_sym_AT_DQUOTE] = ACTIONS(5854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5854), + [sym_bool] = ACTIONS(5856), + [sym_unit] = ACTIONS(5854), + [anon_sym_LPAREN_PIPE] = ACTIONS(5856), + [sym_op_identifier] = ACTIONS(5854), + [anon_sym_PLUS] = ACTIONS(5856), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_PLUS_DOT] = ACTIONS(5854), + [anon_sym_DASH_DOT] = ACTIONS(5854), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_AMP_AMP] = ACTIONS(5854), + [anon_sym_TILDE] = ACTIONS(5854), + [aux_sym_prefix_op_token1] = ACTIONS(5854), + [sym_int] = ACTIONS(5856), + [sym_xint] = ACTIONS(5854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5854), + [anon_sym_POUNDload] = ACTIONS(5854), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5854), + }, + [3352] = { + [sym_xml_doc] = STATE(3352), + [sym_block_comment] = STATE(3352), + [sym_line_comment] = STATE(3352), + [sym_compiler_directive_decl] = STATE(3352), + [sym_fsi_directive_decl] = STATE(3352), + [sym_preproc_line] = STATE(3352), + [sym_identifier] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + }, + [3353] = { + [sym_xml_doc] = STATE(3353), + [sym_block_comment] = STATE(3353), + [sym_line_comment] = STATE(3353), + [sym_compiler_directive_decl] = STATE(3353), + [sym_fsi_directive_decl] = STATE(3353), + [sym_preproc_line] = STATE(3353), + [ts_builtin_sym_end] = ACTIONS(5858), + [sym_identifier] = ACTIONS(5860), + [anon_sym_namespace] = ACTIONS(5860), + [anon_sym_module] = ACTIONS(5860), + [anon_sym_open] = ACTIONS(5860), + [anon_sym_LBRACK_LT] = ACTIONS(5858), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_let] = ACTIONS(5860), + [anon_sym_let_BANG] = ACTIONS(5858), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_LBRACK_PIPE] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5860), + [anon_sym_LT_AT] = ACTIONS(5860), + [anon_sym_LT_AT_AT] = ACTIONS(5858), + [anon_sym_LBRACE_PIPE] = ACTIONS(5858), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_return_BANG] = ACTIONS(5858), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_yield_BANG] = ACTIONS(5858), + [anon_sym_lazy] = ACTIONS(5860), + [anon_sym_assert] = ACTIONS(5860), + [anon_sym_upcast] = ACTIONS(5860), + [anon_sym_downcast] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_fun] = ACTIONS(5860), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_match_BANG] = ACTIONS(5858), + [anon_sym_function] = ACTIONS(5860), + [anon_sym_use] = ACTIONS(5860), + [anon_sym_use_BANG] = ACTIONS(5858), + [anon_sym_do_BANG] = ACTIONS(5858), + [anon_sym_begin] = ACTIONS(5860), + [aux_sym_char_token1] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(5860), + [anon_sym_AT_DQUOTE] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [sym_bool] = ACTIONS(5860), + [sym_unit] = ACTIONS(5858), + [anon_sym_LPAREN_PIPE] = ACTIONS(5860), + [sym_op_identifier] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_PLUS_DOT] = ACTIONS(5858), + [anon_sym_DASH_DOT] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [aux_sym_prefix_op_token1] = ACTIONS(5858), + [sym_int] = ACTIONS(5860), + [sym_xint] = ACTIONS(5858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5858), + [anon_sym_POUNDload] = ACTIONS(5858), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5858), + }, + [3354] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7656), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3354), + [sym_block_comment] = STATE(3354), + [sym_line_comment] = STATE(3354), + [sym_compiler_directive_decl] = STATE(3354), + [sym_fsi_directive_decl] = STATE(3354), + [sym_preproc_line] = STATE(3354), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3355] = { + [sym_xml_doc] = STATE(3355), + [sym_block_comment] = STATE(3355), + [sym_line_comment] = STATE(3355), + [sym_compiler_directive_decl] = STATE(3355), + [sym_fsi_directive_decl] = STATE(3355), + [sym_preproc_line] = STATE(3355), + [sym_identifier] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + }, + [3356] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7794), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3356), + [sym_block_comment] = STATE(3356), + [sym_line_comment] = STATE(3356), + [sym_compiler_directive_decl] = STATE(3356), + [sym_fsi_directive_decl] = STATE(3356), + [sym_preproc_line] = STATE(3356), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3357] = { + [sym_xml_doc] = STATE(3357), + [sym_block_comment] = STATE(3357), + [sym_line_comment] = STATE(3357), + [sym_compiler_directive_decl] = STATE(3357), + [sym_fsi_directive_decl] = STATE(3357), + [sym_preproc_line] = STATE(3357), + [ts_builtin_sym_end] = ACTIONS(5866), + [sym_identifier] = ACTIONS(5868), + [anon_sym_namespace] = ACTIONS(5868), + [anon_sym_module] = ACTIONS(5868), + [anon_sym_open] = ACTIONS(5868), + [anon_sym_LBRACK_LT] = ACTIONS(5866), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_BANG] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LBRACK_PIPE] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_LT_AT] = ACTIONS(5868), + [anon_sym_LT_AT_AT] = ACTIONS(5866), + [anon_sym_LBRACE_PIPE] = ACTIONS(5866), + [anon_sym_new] = ACTIONS(5868), + [anon_sym_return_BANG] = ACTIONS(5866), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_yield_BANG] = ACTIONS(5866), + [anon_sym_lazy] = ACTIONS(5868), + [anon_sym_assert] = ACTIONS(5868), + [anon_sym_upcast] = ACTIONS(5868), + [anon_sym_downcast] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_fun] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_match_BANG] = ACTIONS(5866), + [anon_sym_function] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_use_BANG] = ACTIONS(5866), + [anon_sym_do_BANG] = ACTIONS(5866), + [anon_sym_begin] = ACTIONS(5868), + [aux_sym_char_token1] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [anon_sym_AT_DQUOTE] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [sym_bool] = ACTIONS(5868), + [sym_unit] = ACTIONS(5866), + [anon_sym_LPAREN_PIPE] = ACTIONS(5868), + [sym_op_identifier] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_PLUS_DOT] = ACTIONS(5866), + [anon_sym_DASH_DOT] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [aux_sym_prefix_op_token1] = ACTIONS(5866), + [sym_int] = ACTIONS(5868), + [sym_xint] = ACTIONS(5866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5866), + [anon_sym_POUNDload] = ACTIONS(5866), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5866), + }, + [3358] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8164), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3358), + [sym_block_comment] = STATE(3358), + [sym_line_comment] = STATE(3358), + [sym_compiler_directive_decl] = STATE(3358), + [sym_fsi_directive_decl] = STATE(3358), + [sym_preproc_line] = STATE(3358), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5870), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3359] = { + [sym_xml_doc] = STATE(3359), + [sym_block_comment] = STATE(3359), + [sym_line_comment] = STATE(3359), + [sym_compiler_directive_decl] = STATE(3359), + [sym_fsi_directive_decl] = STATE(3359), + [sym_preproc_line] = STATE(3359), + [sym_identifier] = ACTIONS(3292), + [anon_sym_GT_RBRACK] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__newline] = ACTIONS(3294), + }, + [3360] = { + [sym_xml_doc] = STATE(3360), + [sym_block_comment] = STATE(3360), + [sym_line_comment] = STATE(3360), + [sym_compiler_directive_decl] = STATE(3360), + [sym_fsi_directive_decl] = STATE(3360), + [sym_preproc_line] = STATE(3360), + [sym_identifier] = ACTIONS(3322), + [anon_sym_GT_RBRACK] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__newline] = ACTIONS(3324), + }, + [3361] = { + [sym_xml_doc] = STATE(3361), + [sym_block_comment] = STATE(3361), + [sym_line_comment] = STATE(3361), + [sym_compiler_directive_decl] = STATE(3361), + [sym_fsi_directive_decl] = STATE(3361), + [sym_preproc_line] = STATE(3361), + [ts_builtin_sym_end] = ACTIONS(5872), + [sym_identifier] = ACTIONS(5874), + [anon_sym_namespace] = ACTIONS(5874), + [anon_sym_module] = ACTIONS(5874), + [anon_sym_open] = ACTIONS(5874), + [anon_sym_LBRACK_LT] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5874), + [anon_sym_type] = ACTIONS(5874), + [anon_sym_do] = ACTIONS(5874), + [anon_sym_let] = ACTIONS(5874), + [anon_sym_let_BANG] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_null] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_LBRACK_PIPE] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_LT_AT] = ACTIONS(5874), + [anon_sym_LT_AT_AT] = ACTIONS(5872), + [anon_sym_LBRACE_PIPE] = ACTIONS(5872), + [anon_sym_new] = ACTIONS(5874), + [anon_sym_return_BANG] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5874), + [anon_sym_yield_BANG] = ACTIONS(5872), + [anon_sym_lazy] = ACTIONS(5874), + [anon_sym_assert] = ACTIONS(5874), + [anon_sym_upcast] = ACTIONS(5874), + [anon_sym_downcast] = ACTIONS(5874), + [anon_sym_for] = ACTIONS(5874), + [anon_sym_while] = ACTIONS(5874), + [anon_sym_if] = ACTIONS(5874), + [anon_sym_fun] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5874), + [anon_sym_match] = ACTIONS(5874), + [anon_sym_match_BANG] = ACTIONS(5872), + [anon_sym_function] = ACTIONS(5874), + [anon_sym_use] = ACTIONS(5874), + [anon_sym_use_BANG] = ACTIONS(5872), + [anon_sym_do_BANG] = ACTIONS(5872), + [anon_sym_begin] = ACTIONS(5874), + [aux_sym_char_token1] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [anon_sym_AT_DQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5872), + [sym_bool] = ACTIONS(5874), + [sym_unit] = ACTIONS(5872), + [anon_sym_LPAREN_PIPE] = ACTIONS(5874), + [sym_op_identifier] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_PLUS_DOT] = ACTIONS(5872), + [anon_sym_DASH_DOT] = ACTIONS(5872), + [anon_sym_PERCENT] = ACTIONS(5872), + [anon_sym_AMP_AMP] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5872), + [aux_sym_prefix_op_token1] = ACTIONS(5872), + [sym_int] = ACTIONS(5874), + [sym_xint] = ACTIONS(5872), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5872), + [anon_sym_POUNDload] = ACTIONS(5872), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5872), + }, + [3362] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7999), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3362), + [sym_block_comment] = STATE(3362), + [sym_line_comment] = STATE(3362), + [sym_compiler_directive_decl] = STATE(3362), + [sym_fsi_directive_decl] = STATE(3362), + [sym_preproc_line] = STATE(3362), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5876), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3363] = { + [sym_xml_doc] = STATE(3363), + [sym_block_comment] = STATE(3363), + [sym_line_comment] = STATE(3363), + [sym_compiler_directive_decl] = STATE(3363), + [sym_fsi_directive_decl] = STATE(3363), + [sym_preproc_line] = STATE(3363), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_as] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + }, + [3364] = { + [sym_xml_doc] = STATE(3364), + [sym_block_comment] = STATE(3364), + [sym_line_comment] = STATE(3364), + [sym_compiler_directive_decl] = STATE(3364), + [sym_fsi_directive_decl] = STATE(3364), + [sym_preproc_line] = STATE(3364), + [sym_identifier] = ACTIONS(5745), + [anon_sym_module] = ACTIONS(5745), + [anon_sym_open] = ACTIONS(5745), + [anon_sym_LBRACK_LT] = ACTIONS(5743), + [anon_sym_return] = ACTIONS(5745), + [anon_sym_type] = ACTIONS(5745), + [anon_sym_do] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_let] = ACTIONS(5745), + [anon_sym_let_BANG] = ACTIONS(5743), + [anon_sym_LPAREN] = ACTIONS(5745), + [anon_sym_null] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5745), + [anon_sym_LBRACK_PIPE] = ACTIONS(5743), + [anon_sym_LBRACE] = ACTIONS(5745), + [anon_sym_LT_AT] = ACTIONS(5745), + [anon_sym_LT_AT_AT] = ACTIONS(5743), + [anon_sym_LBRACE_PIPE] = ACTIONS(5743), + [anon_sym_new] = ACTIONS(5745), + [anon_sym_return_BANG] = ACTIONS(5743), + [anon_sym_yield] = ACTIONS(5745), + [anon_sym_yield_BANG] = ACTIONS(5743), + [anon_sym_lazy] = ACTIONS(5745), + [anon_sym_assert] = ACTIONS(5745), + [anon_sym_upcast] = ACTIONS(5745), + [anon_sym_downcast] = ACTIONS(5745), + [anon_sym_for] = ACTIONS(5745), + [anon_sym_while] = ACTIONS(5745), + [anon_sym_if] = ACTIONS(5745), + [anon_sym_fun] = ACTIONS(5745), + [anon_sym_try] = ACTIONS(5745), + [anon_sym_match] = ACTIONS(5745), + [anon_sym_match_BANG] = ACTIONS(5743), + [anon_sym_function] = ACTIONS(5745), + [anon_sym_use] = ACTIONS(5745), + [anon_sym_use_BANG] = ACTIONS(5743), + [anon_sym_do_BANG] = ACTIONS(5743), + [anon_sym_begin] = ACTIONS(5745), + [aux_sym_char_token1] = ACTIONS(5743), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5745), + [anon_sym_DQUOTE] = ACTIONS(5745), + [anon_sym_AT_DQUOTE] = ACTIONS(5743), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5743), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5743), + [sym_bool] = ACTIONS(5745), + [sym_unit] = ACTIONS(5743), + [anon_sym_LPAREN_PIPE] = ACTIONS(5745), + [sym_op_identifier] = ACTIONS(5743), + [anon_sym_PLUS] = ACTIONS(5745), + [anon_sym_DASH] = ACTIONS(5745), + [anon_sym_PLUS_DOT] = ACTIONS(5743), + [anon_sym_DASH_DOT] = ACTIONS(5743), + [anon_sym_PERCENT] = ACTIONS(5743), + [anon_sym_AMP_AMP] = ACTIONS(5743), + [anon_sym_TILDE] = ACTIONS(5743), + [aux_sym_prefix_op_token1] = ACTIONS(5743), + [sym_int] = ACTIONS(5745), + [sym_xint] = ACTIONS(5743), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5743), + [anon_sym_POUNDload] = ACTIONS(5743), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5743), + [sym__dedent] = ACTIONS(5743), + }, + [3365] = { + [sym_xml_doc] = STATE(3365), + [sym_block_comment] = STATE(3365), + [sym_line_comment] = STATE(3365), + [sym_compiler_directive_decl] = STATE(3365), + [sym_fsi_directive_decl] = STATE(3365), + [sym_preproc_line] = STATE(3365), + [ts_builtin_sym_end] = ACTIONS(5878), + [sym_identifier] = ACTIONS(5880), + [anon_sym_namespace] = ACTIONS(5880), + [anon_sym_module] = ACTIONS(5880), + [anon_sym_open] = ACTIONS(5880), + [anon_sym_LBRACK_LT] = ACTIONS(5878), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_do] = ACTIONS(5880), + [anon_sym_let] = ACTIONS(5880), + [anon_sym_let_BANG] = ACTIONS(5878), + [anon_sym_LPAREN] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_LBRACK_PIPE] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5880), + [anon_sym_LT_AT] = ACTIONS(5880), + [anon_sym_LT_AT_AT] = ACTIONS(5878), + [anon_sym_LBRACE_PIPE] = ACTIONS(5878), + [anon_sym_new] = ACTIONS(5880), + [anon_sym_return_BANG] = ACTIONS(5878), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_yield_BANG] = ACTIONS(5878), + [anon_sym_lazy] = ACTIONS(5880), + [anon_sym_assert] = ACTIONS(5880), + [anon_sym_upcast] = ACTIONS(5880), + [anon_sym_downcast] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_fun] = ACTIONS(5880), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_match_BANG] = ACTIONS(5878), + [anon_sym_function] = ACTIONS(5880), + [anon_sym_use] = ACTIONS(5880), + [anon_sym_use_BANG] = ACTIONS(5878), + [anon_sym_do_BANG] = ACTIONS(5878), + [anon_sym_begin] = ACTIONS(5880), + [aux_sym_char_token1] = ACTIONS(5878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5880), + [anon_sym_DQUOTE] = ACTIONS(5880), + [anon_sym_AT_DQUOTE] = ACTIONS(5878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5878), + [sym_bool] = ACTIONS(5880), + [sym_unit] = ACTIONS(5878), + [anon_sym_LPAREN_PIPE] = ACTIONS(5880), + [sym_op_identifier] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5880), + [anon_sym_DASH] = ACTIONS(5880), + [anon_sym_PLUS_DOT] = ACTIONS(5878), + [anon_sym_DASH_DOT] = ACTIONS(5878), + [anon_sym_PERCENT] = ACTIONS(5878), + [anon_sym_AMP_AMP] = ACTIONS(5878), + [anon_sym_TILDE] = ACTIONS(5878), + [aux_sym_prefix_op_token1] = ACTIONS(5878), + [sym_int] = ACTIONS(5880), + [sym_xint] = ACTIONS(5878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5878), + [anon_sym_POUNDload] = ACTIONS(5878), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5878), + }, + [3366] = { + [sym_xml_doc] = STATE(3366), + [sym_block_comment] = STATE(3366), + [sym_line_comment] = STATE(3366), + [sym_compiler_directive_decl] = STATE(3366), + [sym_fsi_directive_decl] = STATE(3366), + [sym_preproc_line] = STATE(3366), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3287), + }, + [3367] = { + [sym_xml_doc] = STATE(3367), + [sym_block_comment] = STATE(3367), + [sym_line_comment] = STATE(3367), + [sym_compiler_directive_decl] = STATE(3367), + [sym_fsi_directive_decl] = STATE(3367), + [sym_preproc_line] = STATE(3367), + [sym_identifier] = ACTIONS(3336), + [anon_sym_GT_RBRACK] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__newline] = ACTIONS(3338), + }, + [3368] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7613), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3368), + [sym_block_comment] = STATE(3368), + [sym_line_comment] = STATE(3368), + [sym_compiler_directive_decl] = STATE(3368), + [sym_fsi_directive_decl] = STATE(3368), + [sym_preproc_line] = STATE(3368), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3369] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7663), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3369), + [sym_block_comment] = STATE(3369), + [sym_line_comment] = STATE(3369), + [sym_compiler_directive_decl] = STATE(3369), + [sym_fsi_directive_decl] = STATE(3369), + [sym_preproc_line] = STATE(3369), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5884), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3370] = { + [sym_xml_doc] = STATE(3370), + [sym_block_comment] = STATE(3370), + [sym_line_comment] = STATE(3370), + [sym_compiler_directive_decl] = STATE(3370), + [sym_fsi_directive_decl] = STATE(3370), + [sym_preproc_line] = STATE(3370), + [ts_builtin_sym_end] = ACTIONS(5886), + [sym_identifier] = ACTIONS(5888), + [anon_sym_namespace] = ACTIONS(5888), + [anon_sym_module] = ACTIONS(5888), + [anon_sym_open] = ACTIONS(5888), + [anon_sym_LBRACK_LT] = ACTIONS(5886), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_do] = ACTIONS(5888), + [anon_sym_let] = ACTIONS(5888), + [anon_sym_let_BANG] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_LBRACK_PIPE] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5888), + [anon_sym_LT_AT] = ACTIONS(5888), + [anon_sym_LT_AT_AT] = ACTIONS(5886), + [anon_sym_LBRACE_PIPE] = ACTIONS(5886), + [anon_sym_new] = ACTIONS(5888), + [anon_sym_return_BANG] = ACTIONS(5886), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_yield_BANG] = ACTIONS(5886), + [anon_sym_lazy] = ACTIONS(5888), + [anon_sym_assert] = ACTIONS(5888), + [anon_sym_upcast] = ACTIONS(5888), + [anon_sym_downcast] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_fun] = ACTIONS(5888), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_match_BANG] = ACTIONS(5886), + [anon_sym_function] = ACTIONS(5888), + [anon_sym_use] = ACTIONS(5888), + [anon_sym_use_BANG] = ACTIONS(5886), + [anon_sym_do_BANG] = ACTIONS(5886), + [anon_sym_begin] = ACTIONS(5888), + [aux_sym_char_token1] = ACTIONS(5886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5888), + [anon_sym_DQUOTE] = ACTIONS(5888), + [anon_sym_AT_DQUOTE] = ACTIONS(5886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5886), + [sym_bool] = ACTIONS(5888), + [sym_unit] = ACTIONS(5886), + [anon_sym_LPAREN_PIPE] = ACTIONS(5888), + [sym_op_identifier] = ACTIONS(5886), + [anon_sym_PLUS] = ACTIONS(5888), + [anon_sym_DASH] = ACTIONS(5888), + [anon_sym_PLUS_DOT] = ACTIONS(5886), + [anon_sym_DASH_DOT] = ACTIONS(5886), + [anon_sym_PERCENT] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5886), + [anon_sym_TILDE] = ACTIONS(5886), + [aux_sym_prefix_op_token1] = ACTIONS(5886), + [sym_int] = ACTIONS(5888), + [sym_xint] = ACTIONS(5886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5886), + [anon_sym_POUNDload] = ACTIONS(5886), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5886), + }, + [3371] = { + [sym_xml_doc] = STATE(3371), + [sym_block_comment] = STATE(3371), + [sym_line_comment] = STATE(3371), + [sym_compiler_directive_decl] = STATE(3371), + [sym_fsi_directive_decl] = STATE(3371), + [sym_preproc_line] = STATE(3371), + [sym_identifier] = ACTIONS(5707), + [anon_sym_module] = ACTIONS(5707), + [anon_sym_open] = ACTIONS(5707), + [anon_sym_LBRACK_LT] = ACTIONS(5705), + [anon_sym_return] = ACTIONS(5707), + [anon_sym_type] = ACTIONS(5707), + [anon_sym_do] = ACTIONS(5707), + [anon_sym_and] = ACTIONS(5707), + [anon_sym_let] = ACTIONS(5707), + [anon_sym_let_BANG] = ACTIONS(5705), + [anon_sym_LPAREN] = ACTIONS(5707), + [anon_sym_null] = ACTIONS(5707), + [anon_sym_AMP] = ACTIONS(5707), + [anon_sym_LBRACK] = ACTIONS(5707), + [anon_sym_LBRACK_PIPE] = ACTIONS(5705), + [anon_sym_LBRACE] = ACTIONS(5707), + [anon_sym_LT_AT] = ACTIONS(5707), + [anon_sym_LT_AT_AT] = ACTIONS(5705), + [anon_sym_LBRACE_PIPE] = ACTIONS(5705), + [anon_sym_new] = ACTIONS(5707), + [anon_sym_return_BANG] = ACTIONS(5705), + [anon_sym_yield] = ACTIONS(5707), + [anon_sym_yield_BANG] = ACTIONS(5705), + [anon_sym_lazy] = ACTIONS(5707), + [anon_sym_assert] = ACTIONS(5707), + [anon_sym_upcast] = ACTIONS(5707), + [anon_sym_downcast] = ACTIONS(5707), + [anon_sym_for] = ACTIONS(5707), + [anon_sym_while] = ACTIONS(5707), + [anon_sym_if] = ACTIONS(5707), + [anon_sym_fun] = ACTIONS(5707), + [anon_sym_try] = ACTIONS(5707), + [anon_sym_match] = ACTIONS(5707), + [anon_sym_match_BANG] = ACTIONS(5705), + [anon_sym_function] = ACTIONS(5707), + [anon_sym_use] = ACTIONS(5707), + [anon_sym_use_BANG] = ACTIONS(5705), + [anon_sym_do_BANG] = ACTIONS(5705), + [anon_sym_begin] = ACTIONS(5707), + [aux_sym_char_token1] = ACTIONS(5705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5707), + [anon_sym_DQUOTE] = ACTIONS(5707), + [anon_sym_AT_DQUOTE] = ACTIONS(5705), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5705), + [sym_bool] = ACTIONS(5707), + [sym_unit] = ACTIONS(5705), + [anon_sym_LPAREN_PIPE] = ACTIONS(5707), + [sym_op_identifier] = ACTIONS(5705), + [anon_sym_PLUS] = ACTIONS(5707), + [anon_sym_DASH] = ACTIONS(5707), + [anon_sym_PLUS_DOT] = ACTIONS(5705), + [anon_sym_DASH_DOT] = ACTIONS(5705), + [anon_sym_PERCENT] = ACTIONS(5705), + [anon_sym_AMP_AMP] = ACTIONS(5705), + [anon_sym_TILDE] = ACTIONS(5705), + [aux_sym_prefix_op_token1] = ACTIONS(5705), + [sym_int] = ACTIONS(5707), + [sym_xint] = ACTIONS(5705), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5705), + [anon_sym_POUNDload] = ACTIONS(5705), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5705), + [sym__dedent] = ACTIONS(5705), + }, + [3372] = { + [sym_xml_doc] = STATE(3372), + [sym_block_comment] = STATE(3372), + [sym_line_comment] = STATE(3372), + [sym_compiler_directive_decl] = STATE(3372), + [sym_fsi_directive_decl] = STATE(3372), + [sym_preproc_line] = STATE(3372), + [sym_identifier] = ACTIONS(3340), + [anon_sym_GT_RBRACK] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__newline] = ACTIONS(3342), + }, + [3373] = { + [sym_xml_doc] = STATE(3373), + [sym_block_comment] = STATE(3373), + [sym_line_comment] = STATE(3373), + [sym_compiler_directive_decl] = STATE(3373), + [sym_fsi_directive_decl] = STATE(3373), + [sym_preproc_line] = STATE(3373), + [sym_identifier] = ACTIONS(5741), + [anon_sym_module] = ACTIONS(5741), + [anon_sym_open] = ACTIONS(5741), + [anon_sym_LBRACK_LT] = ACTIONS(5739), + [anon_sym_return] = ACTIONS(5741), + [anon_sym_type] = ACTIONS(5741), + [anon_sym_do] = ACTIONS(5741), + [anon_sym_and] = ACTIONS(5741), + [anon_sym_let] = ACTIONS(5741), + [anon_sym_let_BANG] = ACTIONS(5739), + [anon_sym_LPAREN] = ACTIONS(5741), + [anon_sym_null] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5741), + [anon_sym_LBRACK] = ACTIONS(5741), + [anon_sym_LBRACK_PIPE] = ACTIONS(5739), + [anon_sym_LBRACE] = ACTIONS(5741), + [anon_sym_LT_AT] = ACTIONS(5741), + [anon_sym_LT_AT_AT] = ACTIONS(5739), + [anon_sym_LBRACE_PIPE] = ACTIONS(5739), + [anon_sym_new] = ACTIONS(5741), + [anon_sym_return_BANG] = ACTIONS(5739), + [anon_sym_yield] = ACTIONS(5741), + [anon_sym_yield_BANG] = ACTIONS(5739), + [anon_sym_lazy] = ACTIONS(5741), + [anon_sym_assert] = ACTIONS(5741), + [anon_sym_upcast] = ACTIONS(5741), + [anon_sym_downcast] = ACTIONS(5741), + [anon_sym_for] = ACTIONS(5741), + [anon_sym_while] = ACTIONS(5741), + [anon_sym_if] = ACTIONS(5741), + [anon_sym_fun] = ACTIONS(5741), + [anon_sym_try] = ACTIONS(5741), + [anon_sym_match] = ACTIONS(5741), + [anon_sym_match_BANG] = ACTIONS(5739), + [anon_sym_function] = ACTIONS(5741), + [anon_sym_use] = ACTIONS(5741), + [anon_sym_use_BANG] = ACTIONS(5739), + [anon_sym_do_BANG] = ACTIONS(5739), + [anon_sym_begin] = ACTIONS(5741), + [aux_sym_char_token1] = ACTIONS(5739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5741), + [anon_sym_DQUOTE] = ACTIONS(5741), + [anon_sym_AT_DQUOTE] = ACTIONS(5739), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5739), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5739), + [sym_bool] = ACTIONS(5741), + [sym_unit] = ACTIONS(5739), + [anon_sym_LPAREN_PIPE] = ACTIONS(5741), + [sym_op_identifier] = ACTIONS(5739), + [anon_sym_PLUS] = ACTIONS(5741), + [anon_sym_DASH] = ACTIONS(5741), + [anon_sym_PLUS_DOT] = ACTIONS(5739), + [anon_sym_DASH_DOT] = ACTIONS(5739), + [anon_sym_PERCENT] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5739), + [anon_sym_TILDE] = ACTIONS(5739), + [aux_sym_prefix_op_token1] = ACTIONS(5739), + [sym_int] = ACTIONS(5741), + [sym_xint] = ACTIONS(5739), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5739), + [anon_sym_POUNDload] = ACTIONS(5739), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5739), + [sym__dedent] = ACTIONS(5739), + }, + [3374] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7200), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3374), + [sym_block_comment] = STATE(3374), + [sym_line_comment] = STATE(3374), + [sym_compiler_directive_decl] = STATE(3374), + [sym_fsi_directive_decl] = STATE(3374), + [sym_preproc_line] = STATE(3374), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5890), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3375] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7476), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3375), + [sym_block_comment] = STATE(3375), + [sym_line_comment] = STATE(3375), + [sym_compiler_directive_decl] = STATE(3375), + [sym_fsi_directive_decl] = STATE(3375), + [sym_preproc_line] = STATE(3375), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5892), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3376] = { + [sym_xml_doc] = STATE(3376), + [sym_block_comment] = STATE(3376), + [sym_line_comment] = STATE(3376), + [sym_compiler_directive_decl] = STATE(3376), + [sym_fsi_directive_decl] = STATE(3376), + [sym_preproc_line] = STATE(3376), + [sym_identifier] = ACTIONS(5682), + [anon_sym_module] = ACTIONS(5682), + [anon_sym_open] = ACTIONS(5682), + [anon_sym_LBRACK_LT] = ACTIONS(5680), + [anon_sym_return] = ACTIONS(5682), + [anon_sym_type] = ACTIONS(5682), + [anon_sym_do] = ACTIONS(5682), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_let] = ACTIONS(5682), + [anon_sym_let_BANG] = ACTIONS(5680), + [anon_sym_LPAREN] = ACTIONS(5682), + [anon_sym_null] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACK_PIPE] = ACTIONS(5680), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LT_AT] = ACTIONS(5682), + [anon_sym_LT_AT_AT] = ACTIONS(5680), + [anon_sym_LBRACE_PIPE] = ACTIONS(5680), + [anon_sym_new] = ACTIONS(5682), + [anon_sym_return_BANG] = ACTIONS(5680), + [anon_sym_yield] = ACTIONS(5682), + [anon_sym_yield_BANG] = ACTIONS(5680), + [anon_sym_lazy] = ACTIONS(5682), + [anon_sym_assert] = ACTIONS(5682), + [anon_sym_upcast] = ACTIONS(5682), + [anon_sym_downcast] = ACTIONS(5682), + [anon_sym_for] = ACTIONS(5682), + [anon_sym_while] = ACTIONS(5682), + [anon_sym_if] = ACTIONS(5682), + [anon_sym_fun] = ACTIONS(5682), + [anon_sym_try] = ACTIONS(5682), + [anon_sym_match] = ACTIONS(5682), + [anon_sym_match_BANG] = ACTIONS(5680), + [anon_sym_function] = ACTIONS(5682), + [anon_sym_use] = ACTIONS(5682), + [anon_sym_use_BANG] = ACTIONS(5680), + [anon_sym_do_BANG] = ACTIONS(5680), + [anon_sym_begin] = ACTIONS(5682), + [aux_sym_char_token1] = ACTIONS(5680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5682), + [anon_sym_DQUOTE] = ACTIONS(5682), + [anon_sym_AT_DQUOTE] = ACTIONS(5680), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5680), + [sym_bool] = ACTIONS(5682), + [sym_unit] = ACTIONS(5680), + [anon_sym_LPAREN_PIPE] = ACTIONS(5682), + [sym_op_identifier] = ACTIONS(5680), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_PLUS_DOT] = ACTIONS(5680), + [anon_sym_DASH_DOT] = ACTIONS(5680), + [anon_sym_PERCENT] = ACTIONS(5680), + [anon_sym_AMP_AMP] = ACTIONS(5680), + [anon_sym_TILDE] = ACTIONS(5680), + [aux_sym_prefix_op_token1] = ACTIONS(5680), + [sym_int] = ACTIONS(5682), + [sym_xint] = ACTIONS(5680), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5680), + [anon_sym_POUNDload] = ACTIONS(5680), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5680), + [sym__dedent] = ACTIONS(5680), + }, + [3377] = { + [sym_xml_doc] = STATE(3377), + [sym_block_comment] = STATE(3377), + [sym_line_comment] = STATE(3377), + [sym_compiler_directive_decl] = STATE(3377), + [sym_fsi_directive_decl] = STATE(3377), + [sym_preproc_line] = STATE(3377), + [sym_identifier] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + }, + [3378] = { + [sym_xml_doc] = STATE(3378), + [sym_block_comment] = STATE(3378), + [sym_line_comment] = STATE(3378), + [sym_compiler_directive_decl] = STATE(3378), + [sym_fsi_directive_decl] = STATE(3378), + [sym_preproc_line] = STATE(3378), + [sym_identifier] = ACTIONS(5778), + [anon_sym_module] = ACTIONS(5778), + [anon_sym_open] = ACTIONS(5778), + [anon_sym_LBRACK_LT] = ACTIONS(5776), + [anon_sym_return] = ACTIONS(5778), + [anon_sym_type] = ACTIONS(5778), + [anon_sym_do] = ACTIONS(5778), + [anon_sym_and] = ACTIONS(5778), + [anon_sym_let] = ACTIONS(5778), + [anon_sym_let_BANG] = ACTIONS(5776), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_null] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_LBRACK_PIPE] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_LT_AT] = ACTIONS(5778), + [anon_sym_LT_AT_AT] = ACTIONS(5776), + [anon_sym_LBRACE_PIPE] = ACTIONS(5776), + [anon_sym_new] = ACTIONS(5778), + [anon_sym_return_BANG] = ACTIONS(5776), + [anon_sym_yield] = ACTIONS(5778), + [anon_sym_yield_BANG] = ACTIONS(5776), + [anon_sym_lazy] = ACTIONS(5778), + [anon_sym_assert] = ACTIONS(5778), + [anon_sym_upcast] = ACTIONS(5778), + [anon_sym_downcast] = ACTIONS(5778), + [anon_sym_for] = ACTIONS(5778), + [anon_sym_while] = ACTIONS(5778), + [anon_sym_if] = ACTIONS(5778), + [anon_sym_fun] = ACTIONS(5778), + [anon_sym_try] = ACTIONS(5778), + [anon_sym_match] = ACTIONS(5778), + [anon_sym_match_BANG] = ACTIONS(5776), + [anon_sym_function] = ACTIONS(5778), + [anon_sym_use] = ACTIONS(5778), + [anon_sym_use_BANG] = ACTIONS(5776), + [anon_sym_do_BANG] = ACTIONS(5776), + [anon_sym_begin] = ACTIONS(5778), + [aux_sym_char_token1] = ACTIONS(5776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(5778), + [anon_sym_AT_DQUOTE] = ACTIONS(5776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5776), + [sym_bool] = ACTIONS(5778), + [sym_unit] = ACTIONS(5776), + [anon_sym_LPAREN_PIPE] = ACTIONS(5778), + [sym_op_identifier] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5778), + [anon_sym_PLUS_DOT] = ACTIONS(5776), + [anon_sym_DASH_DOT] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_AMP_AMP] = ACTIONS(5776), + [anon_sym_TILDE] = ACTIONS(5776), + [aux_sym_prefix_op_token1] = ACTIONS(5776), + [sym_int] = ACTIONS(5778), + [sym_xint] = ACTIONS(5776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5776), + [anon_sym_POUNDload] = ACTIONS(5776), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5776), + [sym__dedent] = ACTIONS(5776), + }, + [3379] = { + [sym_xml_doc] = STATE(3379), + [sym_block_comment] = STATE(3379), + [sym_line_comment] = STATE(3379), + [sym_compiler_directive_decl] = STATE(3379), + [sym_fsi_directive_decl] = STATE(3379), + [sym_preproc_line] = STATE(3379), + [sym_identifier] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + }, + [3380] = { + [sym_xml_doc] = STATE(3380), + [sym_block_comment] = STATE(3380), + [sym_line_comment] = STATE(3380), + [sym_compiler_directive_decl] = STATE(3380), + [sym_fsi_directive_decl] = STATE(3380), + [sym_preproc_line] = STATE(3380), + [sym_identifier] = ACTIONS(5703), + [anon_sym_module] = ACTIONS(5703), + [anon_sym_open] = ACTIONS(5703), + [anon_sym_LBRACK_LT] = ACTIONS(5701), + [anon_sym_return] = ACTIONS(5703), + [anon_sym_type] = ACTIONS(5703), + [anon_sym_do] = ACTIONS(5703), + [anon_sym_and] = ACTIONS(5703), + [anon_sym_let] = ACTIONS(5703), + [anon_sym_let_BANG] = ACTIONS(5701), + [anon_sym_LPAREN] = ACTIONS(5703), + [anon_sym_null] = ACTIONS(5703), + [anon_sym_AMP] = ACTIONS(5703), + [anon_sym_LBRACK] = ACTIONS(5703), + [anon_sym_LBRACK_PIPE] = ACTIONS(5701), + [anon_sym_LBRACE] = ACTIONS(5703), + [anon_sym_LT_AT] = ACTIONS(5703), + [anon_sym_LT_AT_AT] = ACTIONS(5701), + [anon_sym_LBRACE_PIPE] = ACTIONS(5701), + [anon_sym_new] = ACTIONS(5703), + [anon_sym_return_BANG] = ACTIONS(5701), + [anon_sym_yield] = ACTIONS(5703), + [anon_sym_yield_BANG] = ACTIONS(5701), + [anon_sym_lazy] = ACTIONS(5703), + [anon_sym_assert] = ACTIONS(5703), + [anon_sym_upcast] = ACTIONS(5703), + [anon_sym_downcast] = ACTIONS(5703), + [anon_sym_for] = ACTIONS(5703), + [anon_sym_while] = ACTIONS(5703), + [anon_sym_if] = ACTIONS(5703), + [anon_sym_fun] = ACTIONS(5703), + [anon_sym_try] = ACTIONS(5703), + [anon_sym_match] = ACTIONS(5703), + [anon_sym_match_BANG] = ACTIONS(5701), + [anon_sym_function] = ACTIONS(5703), + [anon_sym_use] = ACTIONS(5703), + [anon_sym_use_BANG] = ACTIONS(5701), + [anon_sym_do_BANG] = ACTIONS(5701), + [anon_sym_begin] = ACTIONS(5703), + [aux_sym_char_token1] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5703), + [anon_sym_DQUOTE] = ACTIONS(5703), + [anon_sym_AT_DQUOTE] = ACTIONS(5701), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5701), + [sym_bool] = ACTIONS(5703), + [sym_unit] = ACTIONS(5701), + [anon_sym_LPAREN_PIPE] = ACTIONS(5703), + [sym_op_identifier] = ACTIONS(5701), + [anon_sym_PLUS] = ACTIONS(5703), + [anon_sym_DASH] = ACTIONS(5703), + [anon_sym_PLUS_DOT] = ACTIONS(5701), + [anon_sym_DASH_DOT] = ACTIONS(5701), + [anon_sym_PERCENT] = ACTIONS(5701), + [anon_sym_AMP_AMP] = ACTIONS(5701), + [anon_sym_TILDE] = ACTIONS(5701), + [aux_sym_prefix_op_token1] = ACTIONS(5701), + [sym_int] = ACTIONS(5703), + [sym_xint] = ACTIONS(5701), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5701), + [anon_sym_POUNDload] = ACTIONS(5701), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5701), + [sym__dedent] = ACTIONS(5701), + }, + [3381] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7314), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3381), + [sym_block_comment] = STATE(3381), + [sym_line_comment] = STATE(3381), + [sym_compiler_directive_decl] = STATE(3381), + [sym_fsi_directive_decl] = STATE(3381), + [sym_preproc_line] = STATE(3381), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5894), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3382] = { + [sym_xml_doc] = STATE(3382), + [sym_block_comment] = STATE(3382), + [sym_line_comment] = STATE(3382), + [sym_compiler_directive_decl] = STATE(3382), + [sym_fsi_directive_decl] = STATE(3382), + [sym_preproc_line] = STATE(3382), + [sym_identifier] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + }, + [3383] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7632), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3383), + [sym_block_comment] = STATE(3383), + [sym_line_comment] = STATE(3383), + [sym_compiler_directive_decl] = STATE(3383), + [sym_fsi_directive_decl] = STATE(3383), + [sym_preproc_line] = STATE(3383), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5896), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3384] = { + [sym_xml_doc] = STATE(3384), + [sym_block_comment] = STATE(3384), + [sym_line_comment] = STATE(3384), + [sym_compiler_directive_decl] = STATE(3384), + [sym_fsi_directive_decl] = STATE(3384), + [sym_preproc_line] = STATE(3384), + [sym_identifier] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_as] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5898), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + }, + [3385] = { + [sym_xml_doc] = STATE(3385), + [sym_block_comment] = STATE(3385), + [sym_line_comment] = STATE(3385), + [sym_compiler_directive_decl] = STATE(3385), + [sym_fsi_directive_decl] = STATE(3385), + [sym_preproc_line] = STATE(3385), + [sym_identifier] = ACTIONS(3318), + [anon_sym_GT_RBRACK] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), + }, + [3386] = { + [sym_xml_doc] = STATE(3386), + [sym_block_comment] = STATE(3386), + [sym_line_comment] = STATE(3386), + [sym_compiler_directive_decl] = STATE(3386), + [sym_fsi_directive_decl] = STATE(3386), + [sym_preproc_line] = STATE(3386), + [aux_sym_long_identifier_repeat1] = STATE(3386), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(5900), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3387] = { + [sym_xml_doc] = STATE(3387), + [sym_block_comment] = STATE(3387), + [sym_line_comment] = STATE(3387), + [sym_compiler_directive_decl] = STATE(3387), + [sym_fsi_directive_decl] = STATE(3387), + [sym_preproc_line] = STATE(3387), + [ts_builtin_sym_end] = ACTIONS(5903), + [sym_identifier] = ACTIONS(5905), + [anon_sym_namespace] = ACTIONS(5905), + [anon_sym_module] = ACTIONS(5905), + [anon_sym_open] = ACTIONS(5905), + [anon_sym_LBRACK_LT] = ACTIONS(5903), + [anon_sym_return] = ACTIONS(5905), + [anon_sym_type] = ACTIONS(5905), + [anon_sym_do] = ACTIONS(5905), + [anon_sym_let] = ACTIONS(5905), + [anon_sym_let_BANG] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_null] = ACTIONS(5905), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_LBRACK_PIPE] = ACTIONS(5903), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_LT_AT] = ACTIONS(5905), + [anon_sym_LT_AT_AT] = ACTIONS(5903), + [anon_sym_LBRACE_PIPE] = ACTIONS(5903), + [anon_sym_new] = ACTIONS(5905), + [anon_sym_return_BANG] = ACTIONS(5903), + [anon_sym_yield] = ACTIONS(5905), + [anon_sym_yield_BANG] = ACTIONS(5903), + [anon_sym_lazy] = ACTIONS(5905), + [anon_sym_assert] = ACTIONS(5905), + [anon_sym_upcast] = ACTIONS(5905), + [anon_sym_downcast] = ACTIONS(5905), + [anon_sym_for] = ACTIONS(5905), + [anon_sym_while] = ACTIONS(5905), + [anon_sym_if] = ACTIONS(5905), + [anon_sym_fun] = ACTIONS(5905), + [anon_sym_try] = ACTIONS(5905), + [anon_sym_match] = ACTIONS(5905), + [anon_sym_match_BANG] = ACTIONS(5903), + [anon_sym_function] = ACTIONS(5905), + [anon_sym_use] = ACTIONS(5905), + [anon_sym_use_BANG] = ACTIONS(5903), + [anon_sym_do_BANG] = ACTIONS(5903), + [anon_sym_begin] = ACTIONS(5905), + [aux_sym_char_token1] = ACTIONS(5903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5905), + [anon_sym_DQUOTE] = ACTIONS(5905), + [anon_sym_AT_DQUOTE] = ACTIONS(5903), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5903), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5903), + [sym_bool] = ACTIONS(5905), + [sym_unit] = ACTIONS(5903), + [anon_sym_LPAREN_PIPE] = ACTIONS(5905), + [sym_op_identifier] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [anon_sym_PLUS_DOT] = ACTIONS(5903), + [anon_sym_DASH_DOT] = ACTIONS(5903), + [anon_sym_PERCENT] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_TILDE] = ACTIONS(5903), + [aux_sym_prefix_op_token1] = ACTIONS(5903), + [sym_int] = ACTIONS(5905), + [sym_xint] = ACTIONS(5903), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5903), + [anon_sym_POUNDload] = ACTIONS(5903), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5903), + }, + [3388] = { + [sym_xml_doc] = STATE(3388), + [sym_block_comment] = STATE(3388), + [sym_line_comment] = STATE(3388), + [sym_compiler_directive_decl] = STATE(3388), + [sym_fsi_directive_decl] = STATE(3388), + [sym_preproc_line] = STATE(3388), + [sym_identifier] = ACTIONS(5713), + [anon_sym_module] = ACTIONS(5713), + [anon_sym_open] = ACTIONS(5713), + [anon_sym_LBRACK_LT] = ACTIONS(5711), + [anon_sym_return] = ACTIONS(5713), + [anon_sym_type] = ACTIONS(5713), + [anon_sym_do] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_let_BANG] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_null] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LBRACK_PIPE] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT_AT] = ACTIONS(5713), + [anon_sym_LT_AT_AT] = ACTIONS(5711), + [anon_sym_LBRACE_PIPE] = ACTIONS(5711), + [anon_sym_new] = ACTIONS(5713), + [anon_sym_return_BANG] = ACTIONS(5711), + [anon_sym_yield] = ACTIONS(5713), + [anon_sym_yield_BANG] = ACTIONS(5711), + [anon_sym_lazy] = ACTIONS(5713), + [anon_sym_assert] = ACTIONS(5713), + [anon_sym_upcast] = ACTIONS(5713), + [anon_sym_downcast] = ACTIONS(5713), + [anon_sym_for] = ACTIONS(5713), + [anon_sym_while] = ACTIONS(5713), + [anon_sym_if] = ACTIONS(5713), + [anon_sym_fun] = ACTIONS(5713), + [anon_sym_try] = ACTIONS(5713), + [anon_sym_match] = ACTIONS(5713), + [anon_sym_match_BANG] = ACTIONS(5711), + [anon_sym_function] = ACTIONS(5713), + [anon_sym_use] = ACTIONS(5713), + [anon_sym_use_BANG] = ACTIONS(5711), + [anon_sym_do_BANG] = ACTIONS(5711), + [anon_sym_begin] = ACTIONS(5713), + [aux_sym_char_token1] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5713), + [anon_sym_DQUOTE] = ACTIONS(5713), + [anon_sym_AT_DQUOTE] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [sym_bool] = ACTIONS(5713), + [sym_unit] = ACTIONS(5711), + [anon_sym_LPAREN_PIPE] = ACTIONS(5713), + [sym_op_identifier] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS_DOT] = ACTIONS(5711), + [anon_sym_DASH_DOT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_TILDE] = ACTIONS(5711), + [aux_sym_prefix_op_token1] = ACTIONS(5711), + [sym_int] = ACTIONS(5713), + [sym_xint] = ACTIONS(5711), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5711), + [anon_sym_POUNDload] = ACTIONS(5711), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5711), + [sym__dedent] = ACTIONS(5711), + }, + [3389] = { + [sym_xml_doc] = STATE(3389), + [sym_block_comment] = STATE(3389), + [sym_line_comment] = STATE(3389), + [sym_compiler_directive_decl] = STATE(3389), + [sym_fsi_directive_decl] = STATE(3389), + [sym_preproc_line] = STATE(3389), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2415), + [anon_sym_namespace] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_open] = ACTIONS(2415), + [anon_sym_LBRACK_LT] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACK_PIPE] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LT_AT] = ACTIONS(2415), + [anon_sym_LT_AT_AT] = ACTIONS(2413), + [anon_sym_LBRACE_PIPE] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_return_BANG] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_yield_BANG] = ACTIONS(2413), + [anon_sym_lazy] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_upcast] = ACTIONS(2415), + [anon_sym_downcast] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_match_BANG] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_use_BANG] = ACTIONS(2413), + [anon_sym_do_BANG] = ACTIONS(2413), + [anon_sym_begin] = ACTIONS(2415), + [aux_sym_char_token1] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [anon_sym_AT_DQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [sym_bool] = ACTIONS(2415), + [sym_unit] = ACTIONS(2413), + [anon_sym_LPAREN_PIPE] = ACTIONS(2415), + [sym_op_identifier] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS_DOT] = ACTIONS(2413), + [anon_sym_DASH_DOT] = ACTIONS(2413), + [anon_sym_PERCENT] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [aux_sym_prefix_op_token1] = ACTIONS(2413), + [sym_int] = ACTIONS(2415), + [sym_xint] = ACTIONS(2413), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2413), + [anon_sym_POUNDload] = ACTIONS(2413), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2413), + }, + [3390] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7860), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3390), + [sym_block_comment] = STATE(3390), + [sym_line_comment] = STATE(3390), + [sym_compiler_directive_decl] = STATE(3390), + [sym_fsi_directive_decl] = STATE(3390), + [sym_preproc_line] = STATE(3390), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5907), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3391] = { + [sym_xml_doc] = STATE(3391), + [sym_block_comment] = STATE(3391), + [sym_line_comment] = STATE(3391), + [sym_compiler_directive_decl] = STATE(3391), + [sym_fsi_directive_decl] = STATE(3391), + [sym_preproc_line] = STATE(3391), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(299), + [anon_sym_namespace] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_open] = ACTIONS(299), + [anon_sym_LBRACK_LT] = ACTIONS(297), + [anon_sym_return] = ACTIONS(299), + [anon_sym_type] = ACTIONS(299), + [anon_sym_do] = ACTIONS(299), + [anon_sym_let] = ACTIONS(299), + [anon_sym_let_BANG] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_null] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LBRACK_PIPE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_LT_AT] = ACTIONS(299), + [anon_sym_LT_AT_AT] = ACTIONS(297), + [anon_sym_LBRACE_PIPE] = ACTIONS(297), + [anon_sym_new] = ACTIONS(299), + [anon_sym_return_BANG] = ACTIONS(297), + [anon_sym_yield] = ACTIONS(299), + [anon_sym_yield_BANG] = ACTIONS(297), + [anon_sym_lazy] = ACTIONS(299), + [anon_sym_assert] = ACTIONS(299), + [anon_sym_upcast] = ACTIONS(299), + [anon_sym_downcast] = ACTIONS(299), + [anon_sym_for] = ACTIONS(299), + [anon_sym_while] = ACTIONS(299), + [anon_sym_if] = ACTIONS(299), + [anon_sym_fun] = ACTIONS(299), + [anon_sym_try] = ACTIONS(299), + [anon_sym_match] = ACTIONS(299), + [anon_sym_match_BANG] = ACTIONS(297), + [anon_sym_function] = ACTIONS(299), + [anon_sym_use] = ACTIONS(299), + [anon_sym_use_BANG] = ACTIONS(297), + [anon_sym_do_BANG] = ACTIONS(297), + [anon_sym_begin] = ACTIONS(299), + [aux_sym_char_token1] = ACTIONS(297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(299), + [anon_sym_AT_DQUOTE] = ACTIONS(297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(297), + [anon_sym_LPAREN_PIPE] = ACTIONS(299), + [sym_op_identifier] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PLUS_DOT] = ACTIONS(297), + [anon_sym_DASH_DOT] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(297), + [aux_sym_prefix_op_token1] = ACTIONS(297), + [sym_int] = ACTIONS(299), + [sym_xint] = ACTIONS(297), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(297), + [anon_sym_POUNDload] = ACTIONS(297), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(297), + }, + [3392] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8199), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3392), + [sym_block_comment] = STATE(3392), + [sym_line_comment] = STATE(3392), + [sym_compiler_directive_decl] = STATE(3392), + [sym_fsi_directive_decl] = STATE(3392), + [sym_preproc_line] = STATE(3392), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3393] = { + [sym_xml_doc] = STATE(3393), + [sym_block_comment] = STATE(3393), + [sym_line_comment] = STATE(3393), + [sym_compiler_directive_decl] = STATE(3393), + [sym_fsi_directive_decl] = STATE(3393), + [sym_preproc_line] = STATE(3393), + [ts_builtin_sym_end] = ACTIONS(5911), + [sym_identifier] = ACTIONS(5913), + [anon_sym_namespace] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_open] = ACTIONS(5913), + [anon_sym_LBRACK_LT] = ACTIONS(5911), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_type] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_BANG] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LBRACK_PIPE] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_LT_AT] = ACTIONS(5913), + [anon_sym_LT_AT_AT] = ACTIONS(5911), + [anon_sym_LBRACE_PIPE] = ACTIONS(5911), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_return_BANG] = ACTIONS(5911), + [anon_sym_yield] = ACTIONS(5913), + [anon_sym_yield_BANG] = ACTIONS(5911), + [anon_sym_lazy] = ACTIONS(5913), + [anon_sym_assert] = ACTIONS(5913), + [anon_sym_upcast] = ACTIONS(5913), + [anon_sym_downcast] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_fun] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_match_BANG] = ACTIONS(5911), + [anon_sym_function] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_use_BANG] = ACTIONS(5911), + [anon_sym_do_BANG] = ACTIONS(5911), + [anon_sym_begin] = ACTIONS(5913), + [aux_sym_char_token1] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [anon_sym_AT_DQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [sym_bool] = ACTIONS(5913), + [sym_unit] = ACTIONS(5911), + [anon_sym_LPAREN_PIPE] = ACTIONS(5913), + [sym_op_identifier] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS_DOT] = ACTIONS(5911), + [anon_sym_DASH_DOT] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_TILDE] = ACTIONS(5911), + [aux_sym_prefix_op_token1] = ACTIONS(5911), + [sym_int] = ACTIONS(5913), + [sym_xint] = ACTIONS(5911), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5911), + [anon_sym_POUNDload] = ACTIONS(5911), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5911), + }, + [3394] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8282), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3394), + [sym_block_comment] = STATE(3394), + [sym_line_comment] = STATE(3394), + [sym_compiler_directive_decl] = STATE(3394), + [sym_fsi_directive_decl] = STATE(3394), + [sym_preproc_line] = STATE(3394), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3395] = { + [sym_xml_doc] = STATE(3395), + [sym_block_comment] = STATE(3395), + [sym_line_comment] = STATE(3395), + [sym_compiler_directive_decl] = STATE(3395), + [sym_fsi_directive_decl] = STATE(3395), + [sym_preproc_line] = STATE(3395), + [sym_identifier] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_let_BANG] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACK_PIPE] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_LT_AT] = ACTIONS(3361), + [anon_sym_LT_AT_AT] = ACTIONS(3363), + [anon_sym_LBRACE_PIPE] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_return_BANG] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_yield_BANG] = ACTIONS(3363), + [anon_sym_lazy] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_upcast] = ACTIONS(3361), + [anon_sym_downcast] = ACTIONS(3361), + [anon_sym_COLON_GT] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_fun] = ACTIONS(3361), + [anon_sym_DASH_GT] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_match_BANG] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_use] = ACTIONS(3361), + [anon_sym_use_BANG] = ACTIONS(3363), + [anon_sym_do_BANG] = ACTIONS(3363), + [anon_sym_begin] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_LT2] = ACTIONS(3361), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3363), + [anon_sym_or] = ACTIONS(3361), + [aux_sym_char_token1] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_AT_DQUOTE] = ACTIONS(3363), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3363), + [sym_bool] = ACTIONS(3361), + [sym_unit] = ACTIONS(3363), + [anon_sym_LPAREN_PIPE] = ACTIONS(3361), + [sym_op_identifier] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_PLUS_DOT] = ACTIONS(3363), + [anon_sym_DASH_DOT] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_AMP_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [aux_sym_prefix_op_token1] = ACTIONS(3363), + [sym_int] = ACTIONS(3361), + [sym_xint] = ACTIONS(3363), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3363), + }, + [3396] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8092), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3396), + [sym_block_comment] = STATE(3396), + [sym_line_comment] = STATE(3396), + [sym_compiler_directive_decl] = STATE(3396), + [sym_fsi_directive_decl] = STATE(3396), + [sym_preproc_line] = STATE(3396), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5917), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3397] = { + [sym_xml_doc] = STATE(3397), + [sym_block_comment] = STATE(3397), + [sym_line_comment] = STATE(3397), + [sym_compiler_directive_decl] = STATE(3397), + [sym_fsi_directive_decl] = STATE(3397), + [sym_preproc_line] = STATE(3397), + [sym_identifier] = ACTIONS(5761), + [anon_sym_module] = ACTIONS(5761), + [anon_sym_open] = ACTIONS(5761), + [anon_sym_LBRACK_LT] = ACTIONS(5759), + [anon_sym_return] = ACTIONS(5761), + [anon_sym_type] = ACTIONS(5761), + [anon_sym_do] = ACTIONS(5761), + [anon_sym_and] = ACTIONS(5761), + [anon_sym_let] = ACTIONS(5761), + [anon_sym_let_BANG] = ACTIONS(5759), + [anon_sym_LPAREN] = ACTIONS(5761), + [anon_sym_null] = ACTIONS(5761), + [anon_sym_AMP] = ACTIONS(5761), + [anon_sym_LBRACK] = ACTIONS(5761), + [anon_sym_LBRACK_PIPE] = ACTIONS(5759), + [anon_sym_LBRACE] = ACTIONS(5761), + [anon_sym_LT_AT] = ACTIONS(5761), + [anon_sym_LT_AT_AT] = ACTIONS(5759), + [anon_sym_LBRACE_PIPE] = ACTIONS(5759), + [anon_sym_new] = ACTIONS(5761), + [anon_sym_return_BANG] = ACTIONS(5759), + [anon_sym_yield] = ACTIONS(5761), + [anon_sym_yield_BANG] = ACTIONS(5759), + [anon_sym_lazy] = ACTIONS(5761), + [anon_sym_assert] = ACTIONS(5761), + [anon_sym_upcast] = ACTIONS(5761), + [anon_sym_downcast] = ACTIONS(5761), + [anon_sym_for] = ACTIONS(5761), + [anon_sym_while] = ACTIONS(5761), + [anon_sym_if] = ACTIONS(5761), + [anon_sym_fun] = ACTIONS(5761), + [anon_sym_try] = ACTIONS(5761), + [anon_sym_match] = ACTIONS(5761), + [anon_sym_match_BANG] = ACTIONS(5759), + [anon_sym_function] = ACTIONS(5761), + [anon_sym_use] = ACTIONS(5761), + [anon_sym_use_BANG] = ACTIONS(5759), + [anon_sym_do_BANG] = ACTIONS(5759), + [anon_sym_begin] = ACTIONS(5761), + [aux_sym_char_token1] = ACTIONS(5759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5761), + [anon_sym_DQUOTE] = ACTIONS(5761), + [anon_sym_AT_DQUOTE] = ACTIONS(5759), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5759), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5759), + [sym_bool] = ACTIONS(5761), + [sym_unit] = ACTIONS(5759), + [anon_sym_LPAREN_PIPE] = ACTIONS(5761), + [sym_op_identifier] = ACTIONS(5759), + [anon_sym_PLUS] = ACTIONS(5761), + [anon_sym_DASH] = ACTIONS(5761), + [anon_sym_PLUS_DOT] = ACTIONS(5759), + [anon_sym_DASH_DOT] = ACTIONS(5759), + [anon_sym_PERCENT] = ACTIONS(5759), + [anon_sym_AMP_AMP] = ACTIONS(5759), + [anon_sym_TILDE] = ACTIONS(5759), + [aux_sym_prefix_op_token1] = ACTIONS(5759), + [sym_int] = ACTIONS(5761), + [sym_xint] = ACTIONS(5759), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5759), + [anon_sym_POUNDload] = ACTIONS(5759), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5759), + [sym__dedent] = ACTIONS(5759), + }, + [3398] = { + [sym_xml_doc] = STATE(3398), + [sym_block_comment] = STATE(3398), + [sym_line_comment] = STATE(3398), + [sym_compiler_directive_decl] = STATE(3398), + [sym_fsi_directive_decl] = STATE(3398), + [sym_preproc_line] = STATE(3398), + [ts_builtin_sym_end] = ACTIONS(5911), + [sym_identifier] = ACTIONS(5913), + [anon_sym_namespace] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_open] = ACTIONS(5913), + [anon_sym_LBRACK_LT] = ACTIONS(5911), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_type] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_BANG] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LBRACK_PIPE] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_LT_AT] = ACTIONS(5913), + [anon_sym_LT_AT_AT] = ACTIONS(5911), + [anon_sym_LBRACE_PIPE] = ACTIONS(5911), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_return_BANG] = ACTIONS(5911), + [anon_sym_yield] = ACTIONS(5913), + [anon_sym_yield_BANG] = ACTIONS(5911), + [anon_sym_lazy] = ACTIONS(5913), + [anon_sym_assert] = ACTIONS(5913), + [anon_sym_upcast] = ACTIONS(5913), + [anon_sym_downcast] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_fun] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_match_BANG] = ACTIONS(5911), + [anon_sym_function] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_use_BANG] = ACTIONS(5911), + [anon_sym_do_BANG] = ACTIONS(5911), + [anon_sym_begin] = ACTIONS(5913), + [aux_sym_char_token1] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [anon_sym_AT_DQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [sym_bool] = ACTIONS(5913), + [sym_unit] = ACTIONS(5911), + [anon_sym_LPAREN_PIPE] = ACTIONS(5913), + [sym_op_identifier] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS_DOT] = ACTIONS(5911), + [anon_sym_DASH_DOT] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_TILDE] = ACTIONS(5911), + [aux_sym_prefix_op_token1] = ACTIONS(5911), + [sym_int] = ACTIONS(5913), + [sym_xint] = ACTIONS(5911), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5911), + [anon_sym_POUNDload] = ACTIONS(5911), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5911), + }, + [3399] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7693), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3399), + [sym_block_comment] = STATE(3399), + [sym_line_comment] = STATE(3399), + [sym_compiler_directive_decl] = STATE(3399), + [sym_fsi_directive_decl] = STATE(3399), + [sym_preproc_line] = STATE(3399), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3400] = { + [sym_xml_doc] = STATE(3400), + [sym_block_comment] = STATE(3400), + [sym_line_comment] = STATE(3400), + [sym_compiler_directive_decl] = STATE(3400), + [sym_fsi_directive_decl] = STATE(3400), + [sym_preproc_line] = STATE(3400), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5921), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), + }, + [3401] = { + [sym_xml_doc] = STATE(3401), + [sym_block_comment] = STATE(3401), + [sym_line_comment] = STATE(3401), + [sym_compiler_directive_decl] = STATE(3401), + [sym_fsi_directive_decl] = STATE(3401), + [sym_preproc_line] = STATE(3401), + [sym_identifier] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + }, + [3402] = { + [sym_xml_doc] = STATE(3402), + [sym_block_comment] = STATE(3402), + [sym_line_comment] = STATE(3402), + [sym_compiler_directive_decl] = STATE(3402), + [sym_fsi_directive_decl] = STATE(3402), + [sym_preproc_line] = STATE(3402), + [sym_identifier] = ACTIONS(3351), + [anon_sym_GT_RBRACK] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__newline] = ACTIONS(3353), + }, + [3403] = { + [sym_xml_doc] = STATE(3403), + [sym_block_comment] = STATE(3403), + [sym_line_comment] = STATE(3403), + [sym_compiler_directive_decl] = STATE(3403), + [sym_fsi_directive_decl] = STATE(3403), + [sym_preproc_line] = STATE(3403), + [sym_identifier] = ACTIONS(5699), + [anon_sym_module] = ACTIONS(5699), + [anon_sym_open] = ACTIONS(5699), + [anon_sym_LBRACK_LT] = ACTIONS(5697), + [anon_sym_return] = ACTIONS(5699), + [anon_sym_type] = ACTIONS(5699), + [anon_sym_do] = ACTIONS(5699), + [anon_sym_and] = ACTIONS(5699), + [anon_sym_let] = ACTIONS(5699), + [anon_sym_let_BANG] = ACTIONS(5697), + [anon_sym_LPAREN] = ACTIONS(5699), + [anon_sym_null] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_LBRACK_PIPE] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_LT_AT] = ACTIONS(5699), + [anon_sym_LT_AT_AT] = ACTIONS(5697), + [anon_sym_LBRACE_PIPE] = ACTIONS(5697), + [anon_sym_new] = ACTIONS(5699), + [anon_sym_return_BANG] = ACTIONS(5697), + [anon_sym_yield] = ACTIONS(5699), + [anon_sym_yield_BANG] = ACTIONS(5697), + [anon_sym_lazy] = ACTIONS(5699), + [anon_sym_assert] = ACTIONS(5699), + [anon_sym_upcast] = ACTIONS(5699), + [anon_sym_downcast] = ACTIONS(5699), + [anon_sym_for] = ACTIONS(5699), + [anon_sym_while] = ACTIONS(5699), + [anon_sym_if] = ACTIONS(5699), + [anon_sym_fun] = ACTIONS(5699), + [anon_sym_try] = ACTIONS(5699), + [anon_sym_match] = ACTIONS(5699), + [anon_sym_match_BANG] = ACTIONS(5697), + [anon_sym_function] = ACTIONS(5699), + [anon_sym_use] = ACTIONS(5699), + [anon_sym_use_BANG] = ACTIONS(5697), + [anon_sym_do_BANG] = ACTIONS(5697), + [anon_sym_begin] = ACTIONS(5699), + [aux_sym_char_token1] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_AT_DQUOTE] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [sym_bool] = ACTIONS(5699), + [sym_unit] = ACTIONS(5697), + [anon_sym_LPAREN_PIPE] = ACTIONS(5699), + [sym_op_identifier] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_PLUS_DOT] = ACTIONS(5697), + [anon_sym_DASH_DOT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_AMP_AMP] = ACTIONS(5697), + [anon_sym_TILDE] = ACTIONS(5697), + [aux_sym_prefix_op_token1] = ACTIONS(5697), + [sym_int] = ACTIONS(5699), + [sym_xint] = ACTIONS(5697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5697), + [anon_sym_POUNDload] = ACTIONS(5697), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5697), + [sym__dedent] = ACTIONS(5697), + }, + [3404] = { + [sym_xml_doc] = STATE(3404), + [sym_block_comment] = STATE(3404), + [sym_line_comment] = STATE(3404), + [sym_compiler_directive_decl] = STATE(3404), + [sym_fsi_directive_decl] = STATE(3404), + [sym_preproc_line] = STATE(3404), + [sym_identifier] = ACTIONS(3308), + [anon_sym_GT_RBRACK] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__newline] = ACTIONS(3310), + }, + [3405] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7891), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3405), + [sym_block_comment] = STATE(3405), + [sym_line_comment] = STATE(3405), + [sym_compiler_directive_decl] = STATE(3405), + [sym_fsi_directive_decl] = STATE(3405), + [sym_preproc_line] = STATE(3405), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5923), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3406] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8385), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3406), + [sym_block_comment] = STATE(3406), + [sym_line_comment] = STATE(3406), + [sym_compiler_directive_decl] = STATE(3406), + [sym_fsi_directive_decl] = STATE(3406), + [sym_preproc_line] = STATE(3406), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3407] = { + [sym_xml_doc] = STATE(3407), + [sym_block_comment] = STATE(3407), + [sym_line_comment] = STATE(3407), + [sym_compiler_directive_decl] = STATE(3407), + [sym_fsi_directive_decl] = STATE(3407), + [sym_preproc_line] = STATE(3407), + [sym_identifier] = ACTIONS(5732), + [anon_sym_module] = ACTIONS(5732), + [anon_sym_open] = ACTIONS(5732), + [anon_sym_LBRACK_LT] = ACTIONS(5730), + [anon_sym_return] = ACTIONS(5732), + [anon_sym_type] = ACTIONS(5732), + [anon_sym_do] = ACTIONS(5732), + [anon_sym_and] = ACTIONS(5732), + [anon_sym_let] = ACTIONS(5732), + [anon_sym_let_BANG] = ACTIONS(5730), + [anon_sym_LPAREN] = ACTIONS(5732), + [anon_sym_null] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_LBRACK_PIPE] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5732), + [anon_sym_LT_AT] = ACTIONS(5732), + [anon_sym_LT_AT_AT] = ACTIONS(5730), + [anon_sym_LBRACE_PIPE] = ACTIONS(5730), + [anon_sym_new] = ACTIONS(5732), + [anon_sym_return_BANG] = ACTIONS(5730), + [anon_sym_yield] = ACTIONS(5732), + [anon_sym_yield_BANG] = ACTIONS(5730), + [anon_sym_lazy] = ACTIONS(5732), + [anon_sym_assert] = ACTIONS(5732), + [anon_sym_upcast] = ACTIONS(5732), + [anon_sym_downcast] = ACTIONS(5732), + [anon_sym_for] = ACTIONS(5732), + [anon_sym_while] = ACTIONS(5732), + [anon_sym_if] = ACTIONS(5732), + [anon_sym_fun] = ACTIONS(5732), + [anon_sym_try] = ACTIONS(5732), + [anon_sym_match] = ACTIONS(5732), + [anon_sym_match_BANG] = ACTIONS(5730), + [anon_sym_function] = ACTIONS(5732), + [anon_sym_use] = ACTIONS(5732), + [anon_sym_use_BANG] = ACTIONS(5730), + [anon_sym_do_BANG] = ACTIONS(5730), + [anon_sym_begin] = ACTIONS(5732), + [aux_sym_char_token1] = ACTIONS(5730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5732), + [anon_sym_DQUOTE] = ACTIONS(5732), + [anon_sym_AT_DQUOTE] = ACTIONS(5730), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5730), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5730), + [sym_bool] = ACTIONS(5732), + [sym_unit] = ACTIONS(5730), + [anon_sym_LPAREN_PIPE] = ACTIONS(5732), + [sym_op_identifier] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5732), + [anon_sym_DASH] = ACTIONS(5732), + [anon_sym_PLUS_DOT] = ACTIONS(5730), + [anon_sym_DASH_DOT] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_AMP_AMP] = ACTIONS(5730), + [anon_sym_TILDE] = ACTIONS(5730), + [aux_sym_prefix_op_token1] = ACTIONS(5730), + [sym_int] = ACTIONS(5732), + [sym_xint] = ACTIONS(5730), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5730), + [anon_sym_POUNDload] = ACTIONS(5730), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5730), + [sym__dedent] = ACTIONS(5730), + }, + [3408] = { + [sym_xml_doc] = STATE(3408), + [sym_block_comment] = STATE(3408), + [sym_line_comment] = STATE(3408), + [sym_compiler_directive_decl] = STATE(3408), + [sym_fsi_directive_decl] = STATE(3408), + [sym_preproc_line] = STATE(3408), + [sym_identifier] = ACTIONS(5749), + [anon_sym_module] = ACTIONS(5749), + [anon_sym_open] = ACTIONS(5749), + [anon_sym_LBRACK_LT] = ACTIONS(5747), + [anon_sym_return] = ACTIONS(5749), + [anon_sym_type] = ACTIONS(5749), + [anon_sym_do] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_let] = ACTIONS(5749), + [anon_sym_let_BANG] = ACTIONS(5747), + [anon_sym_LPAREN] = ACTIONS(5749), + [anon_sym_null] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5749), + [anon_sym_LBRACK_PIPE] = ACTIONS(5747), + [anon_sym_LBRACE] = ACTIONS(5749), + [anon_sym_LT_AT] = ACTIONS(5749), + [anon_sym_LT_AT_AT] = ACTIONS(5747), + [anon_sym_LBRACE_PIPE] = ACTIONS(5747), + [anon_sym_new] = ACTIONS(5749), + [anon_sym_return_BANG] = ACTIONS(5747), + [anon_sym_yield] = ACTIONS(5749), + [anon_sym_yield_BANG] = ACTIONS(5747), + [anon_sym_lazy] = ACTIONS(5749), + [anon_sym_assert] = ACTIONS(5749), + [anon_sym_upcast] = ACTIONS(5749), + [anon_sym_downcast] = ACTIONS(5749), + [anon_sym_for] = ACTIONS(5749), + [anon_sym_while] = ACTIONS(5749), + [anon_sym_if] = ACTIONS(5749), + [anon_sym_fun] = ACTIONS(5749), + [anon_sym_try] = ACTIONS(5749), + [anon_sym_match] = ACTIONS(5749), + [anon_sym_match_BANG] = ACTIONS(5747), + [anon_sym_function] = ACTIONS(5749), + [anon_sym_use] = ACTIONS(5749), + [anon_sym_use_BANG] = ACTIONS(5747), + [anon_sym_do_BANG] = ACTIONS(5747), + [anon_sym_begin] = ACTIONS(5749), + [aux_sym_char_token1] = ACTIONS(5747), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5749), + [anon_sym_DQUOTE] = ACTIONS(5749), + [anon_sym_AT_DQUOTE] = ACTIONS(5747), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5747), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5747), + [sym_bool] = ACTIONS(5749), + [sym_unit] = ACTIONS(5747), + [anon_sym_LPAREN_PIPE] = ACTIONS(5749), + [sym_op_identifier] = ACTIONS(5747), + [anon_sym_PLUS] = ACTIONS(5749), + [anon_sym_DASH] = ACTIONS(5749), + [anon_sym_PLUS_DOT] = ACTIONS(5747), + [anon_sym_DASH_DOT] = ACTIONS(5747), + [anon_sym_PERCENT] = ACTIONS(5747), + [anon_sym_AMP_AMP] = ACTIONS(5747), + [anon_sym_TILDE] = ACTIONS(5747), + [aux_sym_prefix_op_token1] = ACTIONS(5747), + [sym_int] = ACTIONS(5749), + [sym_xint] = ACTIONS(5747), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5747), + [anon_sym_POUNDload] = ACTIONS(5747), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5747), + [sym__dedent] = ACTIONS(5747), + }, + [3409] = { + [sym_xml_doc] = STATE(3409), + [sym_block_comment] = STATE(3409), + [sym_line_comment] = STATE(3409), + [sym_compiler_directive_decl] = STATE(3409), + [sym_fsi_directive_decl] = STATE(3409), + [sym_preproc_line] = STATE(3409), + [sym_identifier] = ACTIONS(5774), + [anon_sym_module] = ACTIONS(5774), + [anon_sym_open] = ACTIONS(5774), + [anon_sym_LBRACK_LT] = ACTIONS(5772), + [anon_sym_return] = ACTIONS(5774), + [anon_sym_type] = ACTIONS(5774), + [anon_sym_do] = ACTIONS(5774), + [anon_sym_and] = ACTIONS(5774), + [anon_sym_let] = ACTIONS(5774), + [anon_sym_let_BANG] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(5774), + [anon_sym_null] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_LBRACK_PIPE] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_LT_AT] = ACTIONS(5774), + [anon_sym_LT_AT_AT] = ACTIONS(5772), + [anon_sym_LBRACE_PIPE] = ACTIONS(5772), + [anon_sym_new] = ACTIONS(5774), + [anon_sym_return_BANG] = ACTIONS(5772), + [anon_sym_yield] = ACTIONS(5774), + [anon_sym_yield_BANG] = ACTIONS(5772), + [anon_sym_lazy] = ACTIONS(5774), + [anon_sym_assert] = ACTIONS(5774), + [anon_sym_upcast] = ACTIONS(5774), + [anon_sym_downcast] = ACTIONS(5774), + [anon_sym_for] = ACTIONS(5774), + [anon_sym_while] = ACTIONS(5774), + [anon_sym_if] = ACTIONS(5774), + [anon_sym_fun] = ACTIONS(5774), + [anon_sym_try] = ACTIONS(5774), + [anon_sym_match] = ACTIONS(5774), + [anon_sym_match_BANG] = ACTIONS(5772), + [anon_sym_function] = ACTIONS(5774), + [anon_sym_use] = ACTIONS(5774), + [anon_sym_use_BANG] = ACTIONS(5772), + [anon_sym_do_BANG] = ACTIONS(5772), + [anon_sym_begin] = ACTIONS(5774), + [aux_sym_char_token1] = ACTIONS(5772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5774), + [anon_sym_AT_DQUOTE] = ACTIONS(5772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5772), + [sym_bool] = ACTIONS(5774), + [sym_unit] = ACTIONS(5772), + [anon_sym_LPAREN_PIPE] = ACTIONS(5774), + [sym_op_identifier] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_PLUS_DOT] = ACTIONS(5772), + [anon_sym_DASH_DOT] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5772), + [anon_sym_AMP_AMP] = ACTIONS(5772), + [anon_sym_TILDE] = ACTIONS(5772), + [aux_sym_prefix_op_token1] = ACTIONS(5772), + [sym_int] = ACTIONS(5774), + [sym_xint] = ACTIONS(5772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5772), + [anon_sym_POUNDload] = ACTIONS(5772), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5772), + [sym__dedent] = ACTIONS(5772), + }, + [3410] = { + [sym_xml_doc] = STATE(3410), + [sym_block_comment] = STATE(3410), + [sym_line_comment] = STATE(3410), + [sym_compiler_directive_decl] = STATE(3410), + [sym_fsi_directive_decl] = STATE(3410), + [sym_preproc_line] = STATE(3410), + [sym_identifier] = ACTIONS(5770), + [anon_sym_module] = ACTIONS(5770), + [anon_sym_open] = ACTIONS(5770), + [anon_sym_LBRACK_LT] = ACTIONS(5768), + [anon_sym_return] = ACTIONS(5770), + [anon_sym_type] = ACTIONS(5770), + [anon_sym_do] = ACTIONS(5770), + [anon_sym_and] = ACTIONS(5770), + [anon_sym_let] = ACTIONS(5770), + [anon_sym_let_BANG] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(5770), + [anon_sym_null] = ACTIONS(5770), + [anon_sym_AMP] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5770), + [anon_sym_LBRACK_PIPE] = ACTIONS(5768), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_LT_AT] = ACTIONS(5770), + [anon_sym_LT_AT_AT] = ACTIONS(5768), + [anon_sym_LBRACE_PIPE] = ACTIONS(5768), + [anon_sym_new] = ACTIONS(5770), + [anon_sym_return_BANG] = ACTIONS(5768), + [anon_sym_yield] = ACTIONS(5770), + [anon_sym_yield_BANG] = ACTIONS(5768), + [anon_sym_lazy] = ACTIONS(5770), + [anon_sym_assert] = ACTIONS(5770), + [anon_sym_upcast] = ACTIONS(5770), + [anon_sym_downcast] = ACTIONS(5770), + [anon_sym_for] = ACTIONS(5770), + [anon_sym_while] = ACTIONS(5770), + [anon_sym_if] = ACTIONS(5770), + [anon_sym_fun] = ACTIONS(5770), + [anon_sym_try] = ACTIONS(5770), + [anon_sym_match] = ACTIONS(5770), + [anon_sym_match_BANG] = ACTIONS(5768), + [anon_sym_function] = ACTIONS(5770), + [anon_sym_use] = ACTIONS(5770), + [anon_sym_use_BANG] = ACTIONS(5768), + [anon_sym_do_BANG] = ACTIONS(5768), + [anon_sym_begin] = ACTIONS(5770), + [aux_sym_char_token1] = ACTIONS(5768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(5770), + [anon_sym_AT_DQUOTE] = ACTIONS(5768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5768), + [sym_bool] = ACTIONS(5770), + [sym_unit] = ACTIONS(5768), + [anon_sym_LPAREN_PIPE] = ACTIONS(5770), + [sym_op_identifier] = ACTIONS(5768), + [anon_sym_PLUS] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_PLUS_DOT] = ACTIONS(5768), + [anon_sym_DASH_DOT] = ACTIONS(5768), + [anon_sym_PERCENT] = ACTIONS(5768), + [anon_sym_AMP_AMP] = ACTIONS(5768), + [anon_sym_TILDE] = ACTIONS(5768), + [aux_sym_prefix_op_token1] = ACTIONS(5768), + [sym_int] = ACTIONS(5770), + [sym_xint] = ACTIONS(5768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5768), + [anon_sym_POUNDload] = ACTIONS(5768), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5768), + [sym__dedent] = ACTIONS(5768), + }, + [3411] = { + [sym_xml_doc] = STATE(3411), + [sym_block_comment] = STATE(3411), + [sym_line_comment] = STATE(3411), + [sym_compiler_directive_decl] = STATE(3411), + [sym_fsi_directive_decl] = STATE(3411), + [sym_preproc_line] = STATE(3411), + [sym_identifier] = ACTIONS(5757), + [anon_sym_module] = ACTIONS(5757), + [anon_sym_open] = ACTIONS(5757), + [anon_sym_LBRACK_LT] = ACTIONS(5755), + [anon_sym_return] = ACTIONS(5757), + [anon_sym_type] = ACTIONS(5757), + [anon_sym_do] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_let] = ACTIONS(5757), + [anon_sym_let_BANG] = ACTIONS(5755), + [anon_sym_LPAREN] = ACTIONS(5757), + [anon_sym_null] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5757), + [anon_sym_LBRACK_PIPE] = ACTIONS(5755), + [anon_sym_LBRACE] = ACTIONS(5757), + [anon_sym_LT_AT] = ACTIONS(5757), + [anon_sym_LT_AT_AT] = ACTIONS(5755), + [anon_sym_LBRACE_PIPE] = ACTIONS(5755), + [anon_sym_new] = ACTIONS(5757), + [anon_sym_return_BANG] = ACTIONS(5755), + [anon_sym_yield] = ACTIONS(5757), + [anon_sym_yield_BANG] = ACTIONS(5755), + [anon_sym_lazy] = ACTIONS(5757), + [anon_sym_assert] = ACTIONS(5757), + [anon_sym_upcast] = ACTIONS(5757), + [anon_sym_downcast] = ACTIONS(5757), + [anon_sym_for] = ACTIONS(5757), + [anon_sym_while] = ACTIONS(5757), + [anon_sym_if] = ACTIONS(5757), + [anon_sym_fun] = ACTIONS(5757), + [anon_sym_try] = ACTIONS(5757), + [anon_sym_match] = ACTIONS(5757), + [anon_sym_match_BANG] = ACTIONS(5755), + [anon_sym_function] = ACTIONS(5757), + [anon_sym_use] = ACTIONS(5757), + [anon_sym_use_BANG] = ACTIONS(5755), + [anon_sym_do_BANG] = ACTIONS(5755), + [anon_sym_begin] = ACTIONS(5757), + [aux_sym_char_token1] = ACTIONS(5755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5757), + [anon_sym_DQUOTE] = ACTIONS(5757), + [anon_sym_AT_DQUOTE] = ACTIONS(5755), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5755), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5755), + [sym_bool] = ACTIONS(5757), + [sym_unit] = ACTIONS(5755), + [anon_sym_LPAREN_PIPE] = ACTIONS(5757), + [sym_op_identifier] = ACTIONS(5755), + [anon_sym_PLUS] = ACTIONS(5757), + [anon_sym_DASH] = ACTIONS(5757), + [anon_sym_PLUS_DOT] = ACTIONS(5755), + [anon_sym_DASH_DOT] = ACTIONS(5755), + [anon_sym_PERCENT] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5755), + [anon_sym_TILDE] = ACTIONS(5755), + [aux_sym_prefix_op_token1] = ACTIONS(5755), + [sym_int] = ACTIONS(5757), + [sym_xint] = ACTIONS(5755), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5755), + [anon_sym_POUNDload] = ACTIONS(5755), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5755), + [sym__dedent] = ACTIONS(5755), + }, + [3412] = { + [sym_xml_doc] = STATE(3412), + [sym_block_comment] = STATE(3412), + [sym_line_comment] = STATE(3412), + [sym_compiler_directive_decl] = STATE(3412), + [sym_fsi_directive_decl] = STATE(3412), + [sym_preproc_line] = STATE(3412), + [sym_identifier] = ACTIONS(5686), + [anon_sym_module] = ACTIONS(5686), + [anon_sym_open] = ACTIONS(5686), + [anon_sym_LBRACK_LT] = ACTIONS(5684), + [anon_sym_return] = ACTIONS(5686), + [anon_sym_type] = ACTIONS(5686), + [anon_sym_do] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_let] = ACTIONS(5686), + [anon_sym_let_BANG] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5686), + [anon_sym_null] = ACTIONS(5686), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5686), + [anon_sym_LBRACK_PIPE] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5686), + [anon_sym_LT_AT] = ACTIONS(5686), + [anon_sym_LT_AT_AT] = ACTIONS(5684), + [anon_sym_LBRACE_PIPE] = ACTIONS(5684), + [anon_sym_new] = ACTIONS(5686), + [anon_sym_return_BANG] = ACTIONS(5684), + [anon_sym_yield] = ACTIONS(5686), + [anon_sym_yield_BANG] = ACTIONS(5684), + [anon_sym_lazy] = ACTIONS(5686), + [anon_sym_assert] = ACTIONS(5686), + [anon_sym_upcast] = ACTIONS(5686), + [anon_sym_downcast] = ACTIONS(5686), + [anon_sym_for] = ACTIONS(5686), + [anon_sym_while] = ACTIONS(5686), + [anon_sym_if] = ACTIONS(5686), + [anon_sym_fun] = ACTIONS(5686), + [anon_sym_try] = ACTIONS(5686), + [anon_sym_match] = ACTIONS(5686), + [anon_sym_match_BANG] = ACTIONS(5684), + [anon_sym_function] = ACTIONS(5686), + [anon_sym_use] = ACTIONS(5686), + [anon_sym_use_BANG] = ACTIONS(5684), + [anon_sym_do_BANG] = ACTIONS(5684), + [anon_sym_begin] = ACTIONS(5686), + [aux_sym_char_token1] = ACTIONS(5684), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5686), + [anon_sym_DQUOTE] = ACTIONS(5686), + [anon_sym_AT_DQUOTE] = ACTIONS(5684), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5684), + [sym_bool] = ACTIONS(5686), + [sym_unit] = ACTIONS(5684), + [anon_sym_LPAREN_PIPE] = ACTIONS(5686), + [sym_op_identifier] = ACTIONS(5684), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_PLUS_DOT] = ACTIONS(5684), + [anon_sym_DASH_DOT] = ACTIONS(5684), + [anon_sym_PERCENT] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5684), + [anon_sym_TILDE] = ACTIONS(5684), + [aux_sym_prefix_op_token1] = ACTIONS(5684), + [sym_int] = ACTIONS(5686), + [sym_xint] = ACTIONS(5684), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5684), + [anon_sym_POUNDload] = ACTIONS(5684), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5684), + [sym__dedent] = ACTIONS(5684), + }, + [3413] = { + [sym_xml_doc] = STATE(3413), + [sym_block_comment] = STATE(3413), + [sym_line_comment] = STATE(3413), + [sym_compiler_directive_decl] = STATE(3413), + [sym_fsi_directive_decl] = STATE(3413), + [sym_preproc_line] = STATE(3413), + [aux_sym__compound_type_repeat1] = STATE(3417), + [sym_identifier] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + [sym__dedent] = ACTIONS(3214), + }, + [3414] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7814), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3414), + [sym_block_comment] = STATE(3414), + [sym_line_comment] = STATE(3414), + [sym_compiler_directive_decl] = STATE(3414), + [sym_fsi_directive_decl] = STATE(3414), + [sym_preproc_line] = STATE(3414), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5927), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3415] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7725), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3415), + [sym_block_comment] = STATE(3415), + [sym_line_comment] = STATE(3415), + [sym_compiler_directive_decl] = STATE(3415), + [sym_fsi_directive_decl] = STATE(3415), + [sym_preproc_line] = STATE(3415), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5929), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3416] = { + [sym_xml_doc] = STATE(3416), + [sym_block_comment] = STATE(3416), + [sym_line_comment] = STATE(3416), + [sym_compiler_directive_decl] = STATE(3416), + [sym_fsi_directive_decl] = STATE(3416), + [sym_preproc_line] = STATE(3416), + [sym_identifier] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + }, + [3417] = { + [sym_xml_doc] = STATE(3417), + [sym_block_comment] = STATE(3417), + [sym_line_comment] = STATE(3417), + [sym_compiler_directive_decl] = STATE(3417), + [sym_fsi_directive_decl] = STATE(3417), + [sym_preproc_line] = STATE(3417), + [aux_sym__compound_type_repeat1] = STATE(3417), + [sym_identifier] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + [sym__dedent] = ACTIONS(3030), + }, + [3418] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7789), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3418), + [sym_block_comment] = STATE(3418), + [sym_line_comment] = STATE(3418), + [sym_compiler_directive_decl] = STATE(3418), + [sym_fsi_directive_decl] = STATE(3418), + [sym_preproc_line] = STATE(3418), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_GT] = ACTIONS(5934), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3419] = { + [sym_xml_doc] = STATE(3419), + [sym_block_comment] = STATE(3419), + [sym_line_comment] = STATE(3419), + [sym_compiler_directive_decl] = STATE(3419), + [sym_fsi_directive_decl] = STATE(3419), + [sym_preproc_line] = STATE(3419), + [sym_identifier] = ACTIONS(5717), + [anon_sym_module] = ACTIONS(5717), + [anon_sym_open] = ACTIONS(5717), + [anon_sym_LBRACK_LT] = ACTIONS(5715), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_type] = ACTIONS(5717), + [anon_sym_do] = ACTIONS(5717), + [anon_sym_and] = ACTIONS(5717), + [anon_sym_let] = ACTIONS(5717), + [anon_sym_let_BANG] = ACTIONS(5715), + [anon_sym_LPAREN] = ACTIONS(5717), + [anon_sym_null] = ACTIONS(5717), + [anon_sym_AMP] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5717), + [anon_sym_LBRACK_PIPE] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_LT_AT] = ACTIONS(5717), + [anon_sym_LT_AT_AT] = ACTIONS(5715), + [anon_sym_LBRACE_PIPE] = ACTIONS(5715), + [anon_sym_new] = ACTIONS(5717), + [anon_sym_return_BANG] = ACTIONS(5715), + [anon_sym_yield] = ACTIONS(5717), + [anon_sym_yield_BANG] = ACTIONS(5715), + [anon_sym_lazy] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym_upcast] = ACTIONS(5717), + [anon_sym_downcast] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_fun] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_match_BANG] = ACTIONS(5715), + [anon_sym_function] = ACTIONS(5717), + [anon_sym_use] = ACTIONS(5717), + [anon_sym_use_BANG] = ACTIONS(5715), + [anon_sym_do_BANG] = ACTIONS(5715), + [anon_sym_begin] = ACTIONS(5717), + [aux_sym_char_token1] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5717), + [anon_sym_DQUOTE] = ACTIONS(5717), + [anon_sym_AT_DQUOTE] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [sym_bool] = ACTIONS(5717), + [sym_unit] = ACTIONS(5715), + [anon_sym_LPAREN_PIPE] = ACTIONS(5717), + [sym_op_identifier] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5717), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_PLUS_DOT] = ACTIONS(5715), + [anon_sym_DASH_DOT] = ACTIONS(5715), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_TILDE] = ACTIONS(5715), + [aux_sym_prefix_op_token1] = ACTIONS(5715), + [sym_int] = ACTIONS(5717), + [sym_xint] = ACTIONS(5715), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5715), + [anon_sym_POUNDload] = ACTIONS(5715), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5715), + [sym__dedent] = ACTIONS(5715), + }, + [3420] = { + [sym_xml_doc] = STATE(3420), + [sym_block_comment] = STATE(3420), + [sym_line_comment] = STATE(3420), + [sym_compiler_directive_decl] = STATE(3420), + [sym_fsi_directive_decl] = STATE(3420), + [sym_preproc_line] = STATE(3420), + [ts_builtin_sym_end] = ACTIONS(5936), + [sym_identifier] = ACTIONS(5938), + [anon_sym_namespace] = ACTIONS(5938), + [anon_sym_module] = ACTIONS(5938), + [anon_sym_open] = ACTIONS(5938), + [anon_sym_LBRACK_LT] = ACTIONS(5936), + [anon_sym_return] = ACTIONS(5938), + [anon_sym_type] = ACTIONS(5938), + [anon_sym_do] = ACTIONS(5938), + [anon_sym_let] = ACTIONS(5938), + [anon_sym_let_BANG] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_null] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_LBRACK_PIPE] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_LT_AT] = ACTIONS(5938), + [anon_sym_LT_AT_AT] = ACTIONS(5936), + [anon_sym_LBRACE_PIPE] = ACTIONS(5936), + [anon_sym_new] = ACTIONS(5938), + [anon_sym_return_BANG] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5938), + [anon_sym_yield_BANG] = ACTIONS(5936), + [anon_sym_lazy] = ACTIONS(5938), + [anon_sym_assert] = ACTIONS(5938), + [anon_sym_upcast] = ACTIONS(5938), + [anon_sym_downcast] = ACTIONS(5938), + [anon_sym_for] = ACTIONS(5938), + [anon_sym_while] = ACTIONS(5938), + [anon_sym_if] = ACTIONS(5938), + [anon_sym_fun] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5938), + [anon_sym_match] = ACTIONS(5938), + [anon_sym_match_BANG] = ACTIONS(5936), + [anon_sym_function] = ACTIONS(5938), + [anon_sym_use] = ACTIONS(5938), + [anon_sym_use_BANG] = ACTIONS(5936), + [anon_sym_do_BANG] = ACTIONS(5936), + [anon_sym_begin] = ACTIONS(5938), + [aux_sym_char_token1] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [anon_sym_AT_DQUOTE] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5936), + [sym_bool] = ACTIONS(5938), + [sym_unit] = ACTIONS(5936), + [anon_sym_LPAREN_PIPE] = ACTIONS(5938), + [sym_op_identifier] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PLUS_DOT] = ACTIONS(5936), + [anon_sym_DASH_DOT] = ACTIONS(5936), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_AMP_AMP] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5936), + [aux_sym_prefix_op_token1] = ACTIONS(5936), + [sym_int] = ACTIONS(5938), + [sym_xint] = ACTIONS(5936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5936), + [anon_sym_POUNDload] = ACTIONS(5936), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5936), + }, + [3421] = { + [sym_xml_doc] = STATE(3421), + [sym_block_comment] = STATE(3421), + [sym_line_comment] = STATE(3421), + [sym_compiler_directive_decl] = STATE(3421), + [sym_fsi_directive_decl] = STATE(3421), + [sym_preproc_line] = STATE(3421), + [sym_identifier] = ACTIONS(5880), + [anon_sym_module] = ACTIONS(5880), + [anon_sym_open] = ACTIONS(5880), + [anon_sym_LBRACK_LT] = ACTIONS(5878), + [anon_sym_return] = ACTIONS(5880), + [anon_sym_type] = ACTIONS(5880), + [anon_sym_do] = ACTIONS(5880), + [anon_sym_let] = ACTIONS(5880), + [anon_sym_let_BANG] = ACTIONS(5878), + [anon_sym_LPAREN] = ACTIONS(5880), + [anon_sym_null] = ACTIONS(5880), + [anon_sym_AMP] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5880), + [anon_sym_LBRACK_PIPE] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(5880), + [anon_sym_LT_AT] = ACTIONS(5880), + [anon_sym_LT_AT_AT] = ACTIONS(5878), + [anon_sym_LBRACE_PIPE] = ACTIONS(5878), + [anon_sym_new] = ACTIONS(5880), + [anon_sym_return_BANG] = ACTIONS(5878), + [anon_sym_yield] = ACTIONS(5880), + [anon_sym_yield_BANG] = ACTIONS(5878), + [anon_sym_lazy] = ACTIONS(5880), + [anon_sym_assert] = ACTIONS(5880), + [anon_sym_upcast] = ACTIONS(5880), + [anon_sym_downcast] = ACTIONS(5880), + [anon_sym_for] = ACTIONS(5880), + [anon_sym_while] = ACTIONS(5880), + [anon_sym_if] = ACTIONS(5880), + [anon_sym_fun] = ACTIONS(5880), + [anon_sym_try] = ACTIONS(5880), + [anon_sym_match] = ACTIONS(5880), + [anon_sym_match_BANG] = ACTIONS(5878), + [anon_sym_function] = ACTIONS(5880), + [anon_sym_use] = ACTIONS(5880), + [anon_sym_use_BANG] = ACTIONS(5878), + [anon_sym_do_BANG] = ACTIONS(5878), + [anon_sym_begin] = ACTIONS(5880), + [aux_sym_char_token1] = ACTIONS(5878), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5880), + [anon_sym_DQUOTE] = ACTIONS(5880), + [anon_sym_AT_DQUOTE] = ACTIONS(5878), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5878), + [sym_bool] = ACTIONS(5880), + [sym_unit] = ACTIONS(5878), + [anon_sym_LPAREN_PIPE] = ACTIONS(5880), + [sym_op_identifier] = ACTIONS(5878), + [anon_sym_PLUS] = ACTIONS(5880), + [anon_sym_DASH] = ACTIONS(5880), + [anon_sym_PLUS_DOT] = ACTIONS(5878), + [anon_sym_DASH_DOT] = ACTIONS(5878), + [anon_sym_PERCENT] = ACTIONS(5878), + [anon_sym_AMP_AMP] = ACTIONS(5878), + [anon_sym_TILDE] = ACTIONS(5878), + [aux_sym_prefix_op_token1] = ACTIONS(5878), + [sym_int] = ACTIONS(5880), + [sym_xint] = ACTIONS(5878), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5878), + [anon_sym_POUNDload] = ACTIONS(5878), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5878), + [sym__dedent] = ACTIONS(5878), + }, + [3422] = { + [sym_xml_doc] = STATE(3422), + [sym_block_comment] = STATE(3422), + [sym_line_comment] = STATE(3422), + [sym_compiler_directive_decl] = STATE(3422), + [sym_fsi_directive_decl] = STATE(3422), + [sym_preproc_line] = STATE(3422), + [sym_identifier] = ACTIONS(5905), + [anon_sym_module] = ACTIONS(5905), + [anon_sym_open] = ACTIONS(5905), + [anon_sym_LBRACK_LT] = ACTIONS(5903), + [anon_sym_return] = ACTIONS(5905), + [anon_sym_type] = ACTIONS(5905), + [anon_sym_do] = ACTIONS(5905), + [anon_sym_let] = ACTIONS(5905), + [anon_sym_let_BANG] = ACTIONS(5903), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_null] = ACTIONS(5905), + [anon_sym_AMP] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_LBRACK_PIPE] = ACTIONS(5903), + [anon_sym_LBRACE] = ACTIONS(5905), + [anon_sym_LT_AT] = ACTIONS(5905), + [anon_sym_LT_AT_AT] = ACTIONS(5903), + [anon_sym_LBRACE_PIPE] = ACTIONS(5903), + [anon_sym_new] = ACTIONS(5905), + [anon_sym_return_BANG] = ACTIONS(5903), + [anon_sym_yield] = ACTIONS(5905), + [anon_sym_yield_BANG] = ACTIONS(5903), + [anon_sym_lazy] = ACTIONS(5905), + [anon_sym_assert] = ACTIONS(5905), + [anon_sym_upcast] = ACTIONS(5905), + [anon_sym_downcast] = ACTIONS(5905), + [anon_sym_for] = ACTIONS(5905), + [anon_sym_while] = ACTIONS(5905), + [anon_sym_if] = ACTIONS(5905), + [anon_sym_fun] = ACTIONS(5905), + [anon_sym_try] = ACTIONS(5905), + [anon_sym_match] = ACTIONS(5905), + [anon_sym_match_BANG] = ACTIONS(5903), + [anon_sym_function] = ACTIONS(5905), + [anon_sym_use] = ACTIONS(5905), + [anon_sym_use_BANG] = ACTIONS(5903), + [anon_sym_do_BANG] = ACTIONS(5903), + [anon_sym_begin] = ACTIONS(5905), + [aux_sym_char_token1] = ACTIONS(5903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5905), + [anon_sym_DQUOTE] = ACTIONS(5905), + [anon_sym_AT_DQUOTE] = ACTIONS(5903), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5903), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5903), + [sym_bool] = ACTIONS(5905), + [sym_unit] = ACTIONS(5903), + [anon_sym_LPAREN_PIPE] = ACTIONS(5905), + [sym_op_identifier] = ACTIONS(5903), + [anon_sym_PLUS] = ACTIONS(5905), + [anon_sym_DASH] = ACTIONS(5905), + [anon_sym_PLUS_DOT] = ACTIONS(5903), + [anon_sym_DASH_DOT] = ACTIONS(5903), + [anon_sym_PERCENT] = ACTIONS(5903), + [anon_sym_AMP_AMP] = ACTIONS(5903), + [anon_sym_TILDE] = ACTIONS(5903), + [aux_sym_prefix_op_token1] = ACTIONS(5903), + [sym_int] = ACTIONS(5905), + [sym_xint] = ACTIONS(5903), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5903), + [anon_sym_POUNDload] = ACTIONS(5903), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5903), + [sym__dedent] = ACTIONS(5903), + }, + [3423] = { + [sym_xml_doc] = STATE(3423), + [sym_block_comment] = STATE(3423), + [sym_line_comment] = STATE(3423), + [sym_compiler_directive_decl] = STATE(3423), + [sym_fsi_directive_decl] = STATE(3423), + [sym_preproc_line] = STATE(3423), + [sym_identifier] = ACTIONS(5874), + [anon_sym_module] = ACTIONS(5874), + [anon_sym_open] = ACTIONS(5874), + [anon_sym_LBRACK_LT] = ACTIONS(5872), + [anon_sym_return] = ACTIONS(5874), + [anon_sym_type] = ACTIONS(5874), + [anon_sym_do] = ACTIONS(5874), + [anon_sym_let] = ACTIONS(5874), + [anon_sym_let_BANG] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(5874), + [anon_sym_null] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(5874), + [anon_sym_LBRACK_PIPE] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(5874), + [anon_sym_LT_AT] = ACTIONS(5874), + [anon_sym_LT_AT_AT] = ACTIONS(5872), + [anon_sym_LBRACE_PIPE] = ACTIONS(5872), + [anon_sym_new] = ACTIONS(5874), + [anon_sym_return_BANG] = ACTIONS(5872), + [anon_sym_yield] = ACTIONS(5874), + [anon_sym_yield_BANG] = ACTIONS(5872), + [anon_sym_lazy] = ACTIONS(5874), + [anon_sym_assert] = ACTIONS(5874), + [anon_sym_upcast] = ACTIONS(5874), + [anon_sym_downcast] = ACTIONS(5874), + [anon_sym_for] = ACTIONS(5874), + [anon_sym_while] = ACTIONS(5874), + [anon_sym_if] = ACTIONS(5874), + [anon_sym_fun] = ACTIONS(5874), + [anon_sym_try] = ACTIONS(5874), + [anon_sym_match] = ACTIONS(5874), + [anon_sym_match_BANG] = ACTIONS(5872), + [anon_sym_function] = ACTIONS(5874), + [anon_sym_use] = ACTIONS(5874), + [anon_sym_use_BANG] = ACTIONS(5872), + [anon_sym_do_BANG] = ACTIONS(5872), + [anon_sym_begin] = ACTIONS(5874), + [aux_sym_char_token1] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(5874), + [anon_sym_AT_DQUOTE] = ACTIONS(5872), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5872), + [sym_bool] = ACTIONS(5874), + [sym_unit] = ACTIONS(5872), + [anon_sym_LPAREN_PIPE] = ACTIONS(5874), + [sym_op_identifier] = ACTIONS(5872), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_PLUS_DOT] = ACTIONS(5872), + [anon_sym_DASH_DOT] = ACTIONS(5872), + [anon_sym_PERCENT] = ACTIONS(5872), + [anon_sym_AMP_AMP] = ACTIONS(5872), + [anon_sym_TILDE] = ACTIONS(5872), + [aux_sym_prefix_op_token1] = ACTIONS(5872), + [sym_int] = ACTIONS(5874), + [sym_xint] = ACTIONS(5872), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5872), + [anon_sym_POUNDload] = ACTIONS(5872), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5872), + [sym__dedent] = ACTIONS(5872), + }, + [3424] = { + [sym_xml_doc] = STATE(3424), + [sym_block_comment] = STATE(3424), + [sym_line_comment] = STATE(3424), + [sym_compiler_directive_decl] = STATE(3424), + [sym_fsi_directive_decl] = STATE(3424), + [sym_preproc_line] = STATE(3424), + [sym_identifier] = ACTIONS(5938), + [anon_sym_module] = ACTIONS(5938), + [anon_sym_open] = ACTIONS(5938), + [anon_sym_LBRACK_LT] = ACTIONS(5936), + [anon_sym_return] = ACTIONS(5938), + [anon_sym_type] = ACTIONS(5938), + [anon_sym_do] = ACTIONS(5938), + [anon_sym_let] = ACTIONS(5938), + [anon_sym_let_BANG] = ACTIONS(5936), + [anon_sym_LPAREN] = ACTIONS(5938), + [anon_sym_null] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(5938), + [anon_sym_LBRACK_PIPE] = ACTIONS(5936), + [anon_sym_LBRACE] = ACTIONS(5938), + [anon_sym_LT_AT] = ACTIONS(5938), + [anon_sym_LT_AT_AT] = ACTIONS(5936), + [anon_sym_LBRACE_PIPE] = ACTIONS(5936), + [anon_sym_new] = ACTIONS(5938), + [anon_sym_return_BANG] = ACTIONS(5936), + [anon_sym_yield] = ACTIONS(5938), + [anon_sym_yield_BANG] = ACTIONS(5936), + [anon_sym_lazy] = ACTIONS(5938), + [anon_sym_assert] = ACTIONS(5938), + [anon_sym_upcast] = ACTIONS(5938), + [anon_sym_downcast] = ACTIONS(5938), + [anon_sym_for] = ACTIONS(5938), + [anon_sym_while] = ACTIONS(5938), + [anon_sym_if] = ACTIONS(5938), + [anon_sym_fun] = ACTIONS(5938), + [anon_sym_try] = ACTIONS(5938), + [anon_sym_match] = ACTIONS(5938), + [anon_sym_match_BANG] = ACTIONS(5936), + [anon_sym_function] = ACTIONS(5938), + [anon_sym_use] = ACTIONS(5938), + [anon_sym_use_BANG] = ACTIONS(5936), + [anon_sym_do_BANG] = ACTIONS(5936), + [anon_sym_begin] = ACTIONS(5938), + [aux_sym_char_token1] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5938), + [anon_sym_DQUOTE] = ACTIONS(5938), + [anon_sym_AT_DQUOTE] = ACTIONS(5936), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5936), + [sym_bool] = ACTIONS(5938), + [sym_unit] = ACTIONS(5936), + [anon_sym_LPAREN_PIPE] = ACTIONS(5938), + [sym_op_identifier] = ACTIONS(5936), + [anon_sym_PLUS] = ACTIONS(5938), + [anon_sym_DASH] = ACTIONS(5938), + [anon_sym_PLUS_DOT] = ACTIONS(5936), + [anon_sym_DASH_DOT] = ACTIONS(5936), + [anon_sym_PERCENT] = ACTIONS(5936), + [anon_sym_AMP_AMP] = ACTIONS(5936), + [anon_sym_TILDE] = ACTIONS(5936), + [aux_sym_prefix_op_token1] = ACTIONS(5936), + [sym_int] = ACTIONS(5938), + [sym_xint] = ACTIONS(5936), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5936), + [anon_sym_POUNDload] = ACTIONS(5936), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5936), + [sym__dedent] = ACTIONS(5936), + }, + [3425] = { + [sym_xml_doc] = STATE(3425), + [sym_block_comment] = STATE(3425), + [sym_line_comment] = STATE(3425), + [sym_compiler_directive_decl] = STATE(3425), + [sym_fsi_directive_decl] = STATE(3425), + [sym_preproc_line] = STATE(3425), + [sym_identifier] = ACTIONS(4175), + [anon_sym_module] = ACTIONS(4175), + [anon_sym_open] = ACTIONS(4175), + [anon_sym_LBRACK_LT] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4175), + [anon_sym_type] = ACTIONS(4175), + [anon_sym_do] = ACTIONS(4175), + [anon_sym_let] = ACTIONS(4175), + [anon_sym_let_BANG] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4175), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_LBRACK_PIPE] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_LT_AT] = ACTIONS(4175), + [anon_sym_LT_AT_AT] = ACTIONS(4173), + [anon_sym_LBRACE_PIPE] = ACTIONS(4173), + [anon_sym_new] = ACTIONS(4175), + [anon_sym_return_BANG] = ACTIONS(4173), + [anon_sym_yield] = ACTIONS(4175), + [anon_sym_yield_BANG] = ACTIONS(4173), + [anon_sym_lazy] = ACTIONS(4175), + [anon_sym_assert] = ACTIONS(4175), + [anon_sym_upcast] = ACTIONS(4175), + [anon_sym_downcast] = ACTIONS(4175), + [anon_sym_for] = ACTIONS(4175), + [anon_sym_while] = ACTIONS(4175), + [anon_sym_if] = ACTIONS(4175), + [anon_sym_fun] = ACTIONS(4175), + [anon_sym_try] = ACTIONS(4175), + [anon_sym_match] = ACTIONS(4175), + [anon_sym_match_BANG] = ACTIONS(4173), + [anon_sym_function] = ACTIONS(4175), + [anon_sym_use] = ACTIONS(4175), + [anon_sym_use_BANG] = ACTIONS(4173), + [anon_sym_do_BANG] = ACTIONS(4173), + [anon_sym_begin] = ACTIONS(4175), + [aux_sym_char_token1] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(4175), + [anon_sym_AT_DQUOTE] = ACTIONS(4173), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4173), + [sym_bool] = ACTIONS(4175), + [sym_unit] = ACTIONS(4173), + [anon_sym_LPAREN_PIPE] = ACTIONS(4175), + [sym_op_identifier] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4175), + [anon_sym_DASH] = ACTIONS(4175), + [anon_sym_PLUS_DOT] = ACTIONS(4173), + [anon_sym_DASH_DOT] = ACTIONS(4173), + [anon_sym_PERCENT] = ACTIONS(4173), + [anon_sym_AMP_AMP] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [aux_sym_prefix_op_token1] = ACTIONS(4173), + [sym_int] = ACTIONS(4175), + [sym_xint] = ACTIONS(4173), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(4173), + [anon_sym_POUNDload] = ACTIONS(4173), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(4173), + [sym__dedent] = ACTIONS(4173), + }, + [3426] = { + [sym_xml_doc] = STATE(3426), + [sym_block_comment] = STATE(3426), + [sym_line_comment] = STATE(3426), + [sym_compiler_directive_decl] = STATE(3426), + [sym_fsi_directive_decl] = STATE(3426), + [sym_preproc_line] = STATE(3426), + [sym_identifier] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_open] = ACTIONS(299), + [anon_sym_LBRACK_LT] = ACTIONS(297), + [anon_sym_return] = ACTIONS(299), + [anon_sym_type] = ACTIONS(299), + [anon_sym_do] = ACTIONS(299), + [anon_sym_let] = ACTIONS(299), + [anon_sym_let_BANG] = ACTIONS(297), + [anon_sym_LPAREN] = ACTIONS(299), + [anon_sym_null] = ACTIONS(299), + [anon_sym_AMP] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LBRACK_PIPE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_LT_AT] = ACTIONS(299), + [anon_sym_LT_AT_AT] = ACTIONS(297), + [anon_sym_LBRACE_PIPE] = ACTIONS(297), + [anon_sym_new] = ACTIONS(299), + [anon_sym_return_BANG] = ACTIONS(297), + [anon_sym_yield] = ACTIONS(299), + [anon_sym_yield_BANG] = ACTIONS(297), + [anon_sym_lazy] = ACTIONS(299), + [anon_sym_assert] = ACTIONS(299), + [anon_sym_upcast] = ACTIONS(299), + [anon_sym_downcast] = ACTIONS(299), + [anon_sym_for] = ACTIONS(299), + [anon_sym_while] = ACTIONS(299), + [anon_sym_if] = ACTIONS(299), + [anon_sym_fun] = ACTIONS(299), + [anon_sym_try] = ACTIONS(299), + [anon_sym_match] = ACTIONS(299), + [anon_sym_match_BANG] = ACTIONS(297), + [anon_sym_function] = ACTIONS(299), + [anon_sym_use] = ACTIONS(299), + [anon_sym_use_BANG] = ACTIONS(297), + [anon_sym_do_BANG] = ACTIONS(297), + [anon_sym_begin] = ACTIONS(299), + [aux_sym_char_token1] = ACTIONS(297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(299), + [anon_sym_AT_DQUOTE] = ACTIONS(297), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(297), + [sym_bool] = ACTIONS(299), + [sym_unit] = ACTIONS(297), + [anon_sym_LPAREN_PIPE] = ACTIONS(299), + [sym_op_identifier] = ACTIONS(297), + [anon_sym_PLUS] = ACTIONS(299), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_PLUS_DOT] = ACTIONS(297), + [anon_sym_DASH_DOT] = ACTIONS(297), + [anon_sym_PERCENT] = ACTIONS(297), + [anon_sym_AMP_AMP] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(297), + [aux_sym_prefix_op_token1] = ACTIONS(297), + [sym_int] = ACTIONS(299), + [sym_xint] = ACTIONS(297), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(297), + [anon_sym_POUNDload] = ACTIONS(297), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(297), + [sym__dedent] = ACTIONS(297), + }, + [3427] = { + [sym_xml_doc] = STATE(3427), + [sym_block_comment] = STATE(3427), + [sym_line_comment] = STATE(3427), + [sym_compiler_directive_decl] = STATE(3427), + [sym_fsi_directive_decl] = STATE(3427), + [sym_preproc_line] = STATE(3427), + [sym_identifier] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_open] = ACTIONS(5913), + [anon_sym_LBRACK_LT] = ACTIONS(5911), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_type] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_BANG] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LBRACK_PIPE] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_LT_AT] = ACTIONS(5913), + [anon_sym_LT_AT_AT] = ACTIONS(5911), + [anon_sym_LBRACE_PIPE] = ACTIONS(5911), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_return_BANG] = ACTIONS(5911), + [anon_sym_yield] = ACTIONS(5913), + [anon_sym_yield_BANG] = ACTIONS(5911), + [anon_sym_lazy] = ACTIONS(5913), + [anon_sym_assert] = ACTIONS(5913), + [anon_sym_upcast] = ACTIONS(5913), + [anon_sym_downcast] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_fun] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_match_BANG] = ACTIONS(5911), + [anon_sym_function] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_use_BANG] = ACTIONS(5911), + [anon_sym_do_BANG] = ACTIONS(5911), + [anon_sym_begin] = ACTIONS(5913), + [aux_sym_char_token1] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [anon_sym_AT_DQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [sym_bool] = ACTIONS(5913), + [sym_unit] = ACTIONS(5911), + [anon_sym_LPAREN_PIPE] = ACTIONS(5913), + [sym_op_identifier] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS_DOT] = ACTIONS(5911), + [anon_sym_DASH_DOT] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_TILDE] = ACTIONS(5911), + [aux_sym_prefix_op_token1] = ACTIONS(5911), + [sym_int] = ACTIONS(5913), + [sym_xint] = ACTIONS(5911), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5911), + [anon_sym_POUNDload] = ACTIONS(5911), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5911), + [sym__dedent] = ACTIONS(5911), + }, + [3428] = { + [sym_xml_doc] = STATE(3428), + [sym_block_comment] = STATE(3428), + [sym_line_comment] = STATE(3428), + [sym_compiler_directive_decl] = STATE(3428), + [sym_fsi_directive_decl] = STATE(3428), + [sym_preproc_line] = STATE(3428), + [sym_identifier] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + [sym__dedent] = ACTIONS(3324), + }, + [3429] = { + [sym_xml_doc] = STATE(3429), + [sym_block_comment] = STATE(3429), + [sym_line_comment] = STATE(3429), + [sym_compiler_directive_decl] = STATE(3429), + [sym_fsi_directive_decl] = STATE(3429), + [sym_preproc_line] = STATE(3429), + [sym_identifier] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3389), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_GT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3389), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3389), + [anon_sym_DASH_DOT] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3389), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(5940), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + }, + [3430] = { + [sym_xml_doc] = STATE(3430), + [sym_block_comment] = STATE(3430), + [sym_line_comment] = STATE(3430), + [sym_compiler_directive_decl] = STATE(3430), + [sym_fsi_directive_decl] = STATE(3430), + [sym_preproc_line] = STATE(3430), + [sym_identifier] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + [sym__dedent] = ACTIONS(3342), + }, + [3431] = { + [sym_xml_doc] = STATE(3431), + [sym_block_comment] = STATE(3431), + [sym_line_comment] = STATE(3431), + [sym_compiler_directive_decl] = STATE(3431), + [sym_fsi_directive_decl] = STATE(3431), + [sym_preproc_line] = STATE(3431), + [sym_identifier] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + [sym__dedent] = ACTIONS(3338), + }, + [3432] = { + [sym_xml_doc] = STATE(3432), + [sym_block_comment] = STATE(3432), + [sym_line_comment] = STATE(3432), + [sym_compiler_directive_decl] = STATE(3432), + [sym_fsi_directive_decl] = STATE(3432), + [sym_preproc_line] = STATE(3432), + [aux_sym__compound_type_repeat1] = STATE(3432), + [sym_identifier] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_let] = ACTIONS(3032), + [anon_sym_let_BANG] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_LBRACK_PIPE] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_LT_AT] = ACTIONS(3032), + [anon_sym_LT_AT_AT] = ACTIONS(3030), + [anon_sym_LBRACE_PIPE] = ACTIONS(3030), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_return_BANG] = ACTIONS(3030), + [anon_sym_yield] = ACTIONS(3032), + [anon_sym_yield_BANG] = ACTIONS(3030), + [anon_sym_lazy] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_upcast] = ACTIONS(3032), + [anon_sym_downcast] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_fun] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3030), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_match_BANG] = ACTIONS(3030), + [anon_sym_function] = ACTIONS(3032), + [anon_sym_use] = ACTIONS(3032), + [anon_sym_use_BANG] = ACTIONS(3030), + [anon_sym_do_BANG] = ACTIONS(3030), + [anon_sym_begin] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(5942), + [anon_sym_LT2] = ACTIONS(3032), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3030), + [aux_sym_char_token1] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3032), + [anon_sym_DQUOTE] = ACTIONS(3032), + [anon_sym_AT_DQUOTE] = ACTIONS(3030), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3030), + [sym_bool] = ACTIONS(3032), + [sym_unit] = ACTIONS(3030), + [anon_sym_LPAREN_PIPE] = ACTIONS(3032), + [sym_op_identifier] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS_DOT] = ACTIONS(3030), + [anon_sym_DASH_DOT] = ACTIONS(3030), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [aux_sym_prefix_op_token1] = ACTIONS(3030), + [sym_int] = ACTIONS(3032), + [sym_xint] = ACTIONS(3030), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3030), + }, + [3433] = { + [sym_xml_doc] = STATE(3433), + [sym_block_comment] = STATE(3433), + [sym_line_comment] = STATE(3433), + [sym_compiler_directive_decl] = STATE(3433), + [sym_fsi_directive_decl] = STATE(3433), + [sym_preproc_line] = STATE(3433), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_COLON_GT] = ACTIONS(5945), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + }, + [3434] = { + [sym_xml_doc] = STATE(3434), + [sym_block_comment] = STATE(3434), + [sym_line_comment] = STATE(3434), + [sym_compiler_directive_decl] = STATE(3434), + [sym_fsi_directive_decl] = STATE(3434), + [sym_preproc_line] = STATE(3434), + [sym_identifier] = ACTIONS(5830), + [anon_sym_module] = ACTIONS(5830), + [anon_sym_open] = ACTIONS(5830), + [anon_sym_LBRACK_LT] = ACTIONS(5828), + [anon_sym_return] = ACTIONS(5830), + [anon_sym_type] = ACTIONS(5830), + [anon_sym_do] = ACTIONS(5830), + [anon_sym_let] = ACTIONS(5830), + [anon_sym_let_BANG] = ACTIONS(5828), + [anon_sym_LPAREN] = ACTIONS(5830), + [anon_sym_null] = ACTIONS(5830), + [anon_sym_AMP] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(5830), + [anon_sym_LBRACK_PIPE] = ACTIONS(5828), + [anon_sym_LBRACE] = ACTIONS(5830), + [anon_sym_LT_AT] = ACTIONS(5830), + [anon_sym_LT_AT_AT] = ACTIONS(5828), + [anon_sym_LBRACE_PIPE] = ACTIONS(5828), + [anon_sym_new] = ACTIONS(5830), + [anon_sym_return_BANG] = ACTIONS(5828), + [anon_sym_yield] = ACTIONS(5830), + [anon_sym_yield_BANG] = ACTIONS(5828), + [anon_sym_lazy] = ACTIONS(5830), + [anon_sym_assert] = ACTIONS(5830), + [anon_sym_upcast] = ACTIONS(5830), + [anon_sym_downcast] = ACTIONS(5830), + [anon_sym_for] = ACTIONS(5830), + [anon_sym_while] = ACTIONS(5830), + [anon_sym_if] = ACTIONS(5830), + [anon_sym_fun] = ACTIONS(5830), + [anon_sym_try] = ACTIONS(5830), + [anon_sym_match] = ACTIONS(5830), + [anon_sym_match_BANG] = ACTIONS(5828), + [anon_sym_function] = ACTIONS(5830), + [anon_sym_use] = ACTIONS(5830), + [anon_sym_use_BANG] = ACTIONS(5828), + [anon_sym_do_BANG] = ACTIONS(5828), + [anon_sym_begin] = ACTIONS(5830), + [aux_sym_char_token1] = ACTIONS(5828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5830), + [anon_sym_DQUOTE] = ACTIONS(5830), + [anon_sym_AT_DQUOTE] = ACTIONS(5828), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5828), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5828), + [sym_bool] = ACTIONS(5830), + [sym_unit] = ACTIONS(5828), + [anon_sym_LPAREN_PIPE] = ACTIONS(5830), + [sym_op_identifier] = ACTIONS(5828), + [anon_sym_PLUS] = ACTIONS(5830), + [anon_sym_DASH] = ACTIONS(5830), + [anon_sym_PLUS_DOT] = ACTIONS(5828), + [anon_sym_DASH_DOT] = ACTIONS(5828), + [anon_sym_PERCENT] = ACTIONS(5828), + [anon_sym_AMP_AMP] = ACTIONS(5828), + [anon_sym_TILDE] = ACTIONS(5828), + [aux_sym_prefix_op_token1] = ACTIONS(5828), + [sym_int] = ACTIONS(5830), + [sym_xint] = ACTIONS(5828), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5828), + [anon_sym_POUNDload] = ACTIONS(5828), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5828), + [sym__dedent] = ACTIONS(5828), + }, + [3435] = { + [sym_xml_doc] = STATE(3435), + [sym_block_comment] = STATE(3435), + [sym_line_comment] = STATE(3435), + [sym_compiler_directive_decl] = STATE(3435), + [sym_fsi_directive_decl] = STATE(3435), + [sym_preproc_line] = STATE(3435), + [sym_identifier] = ACTIONS(5913), + [anon_sym_module] = ACTIONS(5913), + [anon_sym_open] = ACTIONS(5913), + [anon_sym_LBRACK_LT] = ACTIONS(5911), + [anon_sym_return] = ACTIONS(5913), + [anon_sym_type] = ACTIONS(5913), + [anon_sym_do] = ACTIONS(5913), + [anon_sym_let] = ACTIONS(5913), + [anon_sym_let_BANG] = ACTIONS(5911), + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_null] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_LBRACK_PIPE] = ACTIONS(5911), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_LT_AT] = ACTIONS(5913), + [anon_sym_LT_AT_AT] = ACTIONS(5911), + [anon_sym_LBRACE_PIPE] = ACTIONS(5911), + [anon_sym_new] = ACTIONS(5913), + [anon_sym_return_BANG] = ACTIONS(5911), + [anon_sym_yield] = ACTIONS(5913), + [anon_sym_yield_BANG] = ACTIONS(5911), + [anon_sym_lazy] = ACTIONS(5913), + [anon_sym_assert] = ACTIONS(5913), + [anon_sym_upcast] = ACTIONS(5913), + [anon_sym_downcast] = ACTIONS(5913), + [anon_sym_for] = ACTIONS(5913), + [anon_sym_while] = ACTIONS(5913), + [anon_sym_if] = ACTIONS(5913), + [anon_sym_fun] = ACTIONS(5913), + [anon_sym_try] = ACTIONS(5913), + [anon_sym_match] = ACTIONS(5913), + [anon_sym_match_BANG] = ACTIONS(5911), + [anon_sym_function] = ACTIONS(5913), + [anon_sym_use] = ACTIONS(5913), + [anon_sym_use_BANG] = ACTIONS(5911), + [anon_sym_do_BANG] = ACTIONS(5911), + [anon_sym_begin] = ACTIONS(5913), + [aux_sym_char_token1] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5913), + [anon_sym_DQUOTE] = ACTIONS(5913), + [anon_sym_AT_DQUOTE] = ACTIONS(5911), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5911), + [sym_bool] = ACTIONS(5913), + [sym_unit] = ACTIONS(5911), + [anon_sym_LPAREN_PIPE] = ACTIONS(5913), + [sym_op_identifier] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS_DOT] = ACTIONS(5911), + [anon_sym_DASH_DOT] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_TILDE] = ACTIONS(5911), + [aux_sym_prefix_op_token1] = ACTIONS(5911), + [sym_int] = ACTIONS(5913), + [sym_xint] = ACTIONS(5911), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5911), + [anon_sym_POUNDload] = ACTIONS(5911), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5911), + [sym__dedent] = ACTIONS(5911), + }, + [3436] = { + [sym_xml_doc] = STATE(3436), + [sym_block_comment] = STATE(3436), + [sym_line_comment] = STATE(3436), + [sym_compiler_directive_decl] = STATE(3436), + [sym_fsi_directive_decl] = STATE(3436), + [sym_preproc_line] = STATE(3436), + [sym_identifier] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_open] = ACTIONS(2415), + [anon_sym_LBRACK_LT] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_BANG] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_null] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_LBRACK_PIPE] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_LT_AT] = ACTIONS(2415), + [anon_sym_LT_AT_AT] = ACTIONS(2413), + [anon_sym_LBRACE_PIPE] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_return_BANG] = ACTIONS(2413), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_yield_BANG] = ACTIONS(2413), + [anon_sym_lazy] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_upcast] = ACTIONS(2415), + [anon_sym_downcast] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_fun] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_match_BANG] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_use_BANG] = ACTIONS(2413), + [anon_sym_do_BANG] = ACTIONS(2413), + [anon_sym_begin] = ACTIONS(2415), + [aux_sym_char_token1] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [anon_sym_AT_DQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2413), + [sym_bool] = ACTIONS(2415), + [sym_unit] = ACTIONS(2413), + [anon_sym_LPAREN_PIPE] = ACTIONS(2415), + [sym_op_identifier] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS_DOT] = ACTIONS(2413), + [anon_sym_DASH_DOT] = ACTIONS(2413), + [anon_sym_PERCENT] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [aux_sym_prefix_op_token1] = ACTIONS(2413), + [sym_int] = ACTIONS(2415), + [sym_xint] = ACTIONS(2413), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(2413), + [anon_sym_POUNDload] = ACTIONS(2413), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2413), + [sym__dedent] = ACTIONS(2413), + }, + [3437] = { + [sym_xml_doc] = STATE(3437), + [sym_block_comment] = STATE(3437), + [sym_line_comment] = STATE(3437), + [sym_compiler_directive_decl] = STATE(3437), + [sym_fsi_directive_decl] = STATE(3437), + [sym_preproc_line] = STATE(3437), + [sym_identifier] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5947), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3357), + }, + [3438] = { + [sym_xml_doc] = STATE(3438), + [sym_block_comment] = STATE(3438), + [sym_line_comment] = STATE(3438), + [sym_compiler_directive_decl] = STATE(3438), + [sym_fsi_directive_decl] = STATE(3438), + [sym_preproc_line] = STATE(3438), + [sym_identifier] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_let_BANG] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_null] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACK_PIPE] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_LT_AT] = ACTIONS(3242), + [anon_sym_LT_AT_AT] = ACTIONS(3244), + [anon_sym_LBRACE_PIPE] = ACTIONS(3244), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_return_BANG] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_yield_BANG] = ACTIONS(3244), + [anon_sym_lazy] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_upcast] = ACTIONS(3242), + [anon_sym_downcast] = ACTIONS(3242), + [anon_sym_COLON_GT] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_fun] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_match_BANG] = ACTIONS(3244), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_use] = ACTIONS(3242), + [anon_sym_use_BANG] = ACTIONS(3244), + [anon_sym_do_BANG] = ACTIONS(3244), + [anon_sym_begin] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_LT2] = ACTIONS(3242), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3244), + [aux_sym_char_token1] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_AT_DQUOTE] = ACTIONS(3244), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3244), + [sym_bool] = ACTIONS(3242), + [sym_unit] = ACTIONS(3244), + [anon_sym_LPAREN_PIPE] = ACTIONS(3242), + [sym_op_identifier] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS_DOT] = ACTIONS(3244), + [anon_sym_DASH_DOT] = ACTIONS(3244), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [aux_sym_prefix_op_token1] = ACTIONS(3244), + [sym_int] = ACTIONS(3242), + [sym_xint] = ACTIONS(3244), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3244), + }, + [3439] = { + [sym_xml_doc] = STATE(3439), + [sym_block_comment] = STATE(3439), + [sym_line_comment] = STATE(3439), + [sym_compiler_directive_decl] = STATE(3439), + [sym_fsi_directive_decl] = STATE(3439), + [sym_preproc_line] = STATE(3439), + [sym_identifier] = ACTIONS(5860), + [anon_sym_module] = ACTIONS(5860), + [anon_sym_open] = ACTIONS(5860), + [anon_sym_LBRACK_LT] = ACTIONS(5858), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_type] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_let] = ACTIONS(5860), + [anon_sym_let_BANG] = ACTIONS(5858), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_LBRACK_PIPE] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5860), + [anon_sym_LT_AT] = ACTIONS(5860), + [anon_sym_LT_AT_AT] = ACTIONS(5858), + [anon_sym_LBRACE_PIPE] = ACTIONS(5858), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_return_BANG] = ACTIONS(5858), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_yield_BANG] = ACTIONS(5858), + [anon_sym_lazy] = ACTIONS(5860), + [anon_sym_assert] = ACTIONS(5860), + [anon_sym_upcast] = ACTIONS(5860), + [anon_sym_downcast] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_fun] = ACTIONS(5860), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_match_BANG] = ACTIONS(5858), + [anon_sym_function] = ACTIONS(5860), + [anon_sym_use] = ACTIONS(5860), + [anon_sym_use_BANG] = ACTIONS(5858), + [anon_sym_do_BANG] = ACTIONS(5858), + [anon_sym_begin] = ACTIONS(5860), + [aux_sym_char_token1] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(5860), + [anon_sym_AT_DQUOTE] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [sym_bool] = ACTIONS(5860), + [sym_unit] = ACTIONS(5858), + [anon_sym_LPAREN_PIPE] = ACTIONS(5860), + [sym_op_identifier] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_PLUS_DOT] = ACTIONS(5858), + [anon_sym_DASH_DOT] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [aux_sym_prefix_op_token1] = ACTIONS(5858), + [sym_int] = ACTIONS(5860), + [sym_xint] = ACTIONS(5858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5858), + [anon_sym_POUNDload] = ACTIONS(5858), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5858), + [sym__dedent] = ACTIONS(5858), + }, + [3440] = { + [sym_xml_doc] = STATE(3440), + [sym_block_comment] = STATE(3440), + [sym_line_comment] = STATE(3440), + [sym_compiler_directive_decl] = STATE(3440), + [sym_fsi_directive_decl] = STATE(3440), + [sym_preproc_line] = STATE(3440), + [aux_sym__compound_type_repeat1] = STATE(3432), + [sym_identifier] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_let_BANG] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LBRACK_PIPE] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_LT_AT] = ACTIONS(3212), + [anon_sym_LT_AT_AT] = ACTIONS(3214), + [anon_sym_LBRACE_PIPE] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_return_BANG] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_yield_BANG] = ACTIONS(3214), + [anon_sym_lazy] = ACTIONS(3212), + [anon_sym_assert] = ACTIONS(3212), + [anon_sym_upcast] = ACTIONS(3212), + [anon_sym_downcast] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_fun] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3212), + [anon_sym_match_BANG] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_use] = ACTIONS(3212), + [anon_sym_use_BANG] = ACTIONS(3214), + [anon_sym_do_BANG] = ACTIONS(3214), + [anon_sym_begin] = ACTIONS(3212), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(3212), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3214), + [aux_sym_char_token1] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_AT_DQUOTE] = ACTIONS(3214), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3214), + [sym_bool] = ACTIONS(3212), + [sym_unit] = ACTIONS(3214), + [anon_sym_LPAREN_PIPE] = ACTIONS(3212), + [sym_op_identifier] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_PLUS_DOT] = ACTIONS(3214), + [anon_sym_DASH_DOT] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [aux_sym_prefix_op_token1] = ACTIONS(3214), + [sym_int] = ACTIONS(3212), + [sym_xint] = ACTIONS(3214), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3214), + }, + [3441] = { + [sym_xml_doc] = STATE(3441), + [sym_block_comment] = STATE(3441), + [sym_line_comment] = STATE(3441), + [sym_compiler_directive_decl] = STATE(3441), + [sym_fsi_directive_decl] = STATE(3441), + [sym_preproc_line] = STATE(3441), + [sym_identifier] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + [sym__dedent] = ACTIONS(3310), + }, + [3442] = { + [sym_xml_doc] = STATE(3442), + [sym_block_comment] = STATE(3442), + [sym_line_comment] = STATE(3442), + [sym_compiler_directive_decl] = STATE(3442), + [sym_fsi_directive_decl] = STATE(3442), + [sym_preproc_line] = STATE(3442), + [sym_identifier] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + [sym__dedent] = ACTIONS(3306), + }, + [3443] = { + [sym_xml_doc] = STATE(3443), + [sym_block_comment] = STATE(3443), + [sym_line_comment] = STATE(3443), + [sym_compiler_directive_decl] = STATE(3443), + [sym_fsi_directive_decl] = STATE(3443), + [sym_preproc_line] = STATE(3443), + [sym_identifier] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + [sym__dedent] = ACTIONS(3302), + }, + [3444] = { + [sym_xml_doc] = STATE(3444), + [sym_block_comment] = STATE(3444), + [sym_line_comment] = STATE(3444), + [sym_compiler_directive_decl] = STATE(3444), + [sym_fsi_directive_decl] = STATE(3444), + [sym_preproc_line] = STATE(3444), + [sym_identifier] = ACTIONS(5888), + [anon_sym_module] = ACTIONS(5888), + [anon_sym_open] = ACTIONS(5888), + [anon_sym_LBRACK_LT] = ACTIONS(5886), + [anon_sym_return] = ACTIONS(5888), + [anon_sym_type] = ACTIONS(5888), + [anon_sym_do] = ACTIONS(5888), + [anon_sym_let] = ACTIONS(5888), + [anon_sym_let_BANG] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(5888), + [anon_sym_null] = ACTIONS(5888), + [anon_sym_AMP] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(5888), + [anon_sym_LBRACK_PIPE] = ACTIONS(5886), + [anon_sym_LBRACE] = ACTIONS(5888), + [anon_sym_LT_AT] = ACTIONS(5888), + [anon_sym_LT_AT_AT] = ACTIONS(5886), + [anon_sym_LBRACE_PIPE] = ACTIONS(5886), + [anon_sym_new] = ACTIONS(5888), + [anon_sym_return_BANG] = ACTIONS(5886), + [anon_sym_yield] = ACTIONS(5888), + [anon_sym_yield_BANG] = ACTIONS(5886), + [anon_sym_lazy] = ACTIONS(5888), + [anon_sym_assert] = ACTIONS(5888), + [anon_sym_upcast] = ACTIONS(5888), + [anon_sym_downcast] = ACTIONS(5888), + [anon_sym_for] = ACTIONS(5888), + [anon_sym_while] = ACTIONS(5888), + [anon_sym_if] = ACTIONS(5888), + [anon_sym_fun] = ACTIONS(5888), + [anon_sym_try] = ACTIONS(5888), + [anon_sym_match] = ACTIONS(5888), + [anon_sym_match_BANG] = ACTIONS(5886), + [anon_sym_function] = ACTIONS(5888), + [anon_sym_use] = ACTIONS(5888), + [anon_sym_use_BANG] = ACTIONS(5886), + [anon_sym_do_BANG] = ACTIONS(5886), + [anon_sym_begin] = ACTIONS(5888), + [aux_sym_char_token1] = ACTIONS(5886), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5888), + [anon_sym_DQUOTE] = ACTIONS(5888), + [anon_sym_AT_DQUOTE] = ACTIONS(5886), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5886), + [sym_bool] = ACTIONS(5888), + [sym_unit] = ACTIONS(5886), + [anon_sym_LPAREN_PIPE] = ACTIONS(5888), + [sym_op_identifier] = ACTIONS(5886), + [anon_sym_PLUS] = ACTIONS(5888), + [anon_sym_DASH] = ACTIONS(5888), + [anon_sym_PLUS_DOT] = ACTIONS(5886), + [anon_sym_DASH_DOT] = ACTIONS(5886), + [anon_sym_PERCENT] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5886), + [anon_sym_TILDE] = ACTIONS(5886), + [aux_sym_prefix_op_token1] = ACTIONS(5886), + [sym_int] = ACTIONS(5888), + [sym_xint] = ACTIONS(5886), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5886), + [anon_sym_POUNDload] = ACTIONS(5886), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5886), + [sym__dedent] = ACTIONS(5886), + }, + [3445] = { + [sym_xml_doc] = STATE(3445), + [sym_block_comment] = STATE(3445), + [sym_line_comment] = STATE(3445), + [sym_compiler_directive_decl] = STATE(3445), + [sym_fsi_directive_decl] = STATE(3445), + [sym_preproc_line] = STATE(3445), + [sym_identifier] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + [sym__dedent] = ACTIONS(3294), + }, + [3446] = { + [sym_xml_doc] = STATE(3446), + [sym_block_comment] = STATE(3446), + [sym_line_comment] = STATE(3446), + [sym_compiler_directive_decl] = STATE(3446), + [sym_fsi_directive_decl] = STATE(3446), + [sym_preproc_line] = STATE(3446), + [sym_identifier] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + [sym__dedent] = ACTIONS(3320), + }, + [3447] = { + [sym_xml_doc] = STATE(3447), + [sym_block_comment] = STATE(3447), + [sym_line_comment] = STATE(3447), + [sym_compiler_directive_decl] = STATE(3447), + [sym_fsi_directive_decl] = STATE(3447), + [sym_preproc_line] = STATE(3447), + [sym_identifier] = ACTIONS(5856), + [anon_sym_module] = ACTIONS(5856), + [anon_sym_open] = ACTIONS(5856), + [anon_sym_LBRACK_LT] = ACTIONS(5854), + [anon_sym_return] = ACTIONS(5856), + [anon_sym_type] = ACTIONS(5856), + [anon_sym_do] = ACTIONS(5856), + [anon_sym_let] = ACTIONS(5856), + [anon_sym_let_BANG] = ACTIONS(5854), + [anon_sym_LPAREN] = ACTIONS(5856), + [anon_sym_null] = ACTIONS(5856), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_LBRACK] = ACTIONS(5856), + [anon_sym_LBRACK_PIPE] = ACTIONS(5854), + [anon_sym_LBRACE] = ACTIONS(5856), + [anon_sym_LT_AT] = ACTIONS(5856), + [anon_sym_LT_AT_AT] = ACTIONS(5854), + [anon_sym_LBRACE_PIPE] = ACTIONS(5854), + [anon_sym_new] = ACTIONS(5856), + [anon_sym_return_BANG] = ACTIONS(5854), + [anon_sym_yield] = ACTIONS(5856), + [anon_sym_yield_BANG] = ACTIONS(5854), + [anon_sym_lazy] = ACTIONS(5856), + [anon_sym_assert] = ACTIONS(5856), + [anon_sym_upcast] = ACTIONS(5856), + [anon_sym_downcast] = ACTIONS(5856), + [anon_sym_for] = ACTIONS(5856), + [anon_sym_while] = ACTIONS(5856), + [anon_sym_if] = ACTIONS(5856), + [anon_sym_fun] = ACTIONS(5856), + [anon_sym_try] = ACTIONS(5856), + [anon_sym_match] = ACTIONS(5856), + [anon_sym_match_BANG] = ACTIONS(5854), + [anon_sym_function] = ACTIONS(5856), + [anon_sym_use] = ACTIONS(5856), + [anon_sym_use_BANG] = ACTIONS(5854), + [anon_sym_do_BANG] = ACTIONS(5854), + [anon_sym_begin] = ACTIONS(5856), + [aux_sym_char_token1] = ACTIONS(5854), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5856), + [anon_sym_DQUOTE] = ACTIONS(5856), + [anon_sym_AT_DQUOTE] = ACTIONS(5854), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5854), + [sym_bool] = ACTIONS(5856), + [sym_unit] = ACTIONS(5854), + [anon_sym_LPAREN_PIPE] = ACTIONS(5856), + [sym_op_identifier] = ACTIONS(5854), + [anon_sym_PLUS] = ACTIONS(5856), + [anon_sym_DASH] = ACTIONS(5856), + [anon_sym_PLUS_DOT] = ACTIONS(5854), + [anon_sym_DASH_DOT] = ACTIONS(5854), + [anon_sym_PERCENT] = ACTIONS(5854), + [anon_sym_AMP_AMP] = ACTIONS(5854), + [anon_sym_TILDE] = ACTIONS(5854), + [aux_sym_prefix_op_token1] = ACTIONS(5854), + [sym_int] = ACTIONS(5856), + [sym_xint] = ACTIONS(5854), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5854), + [anon_sym_POUNDload] = ACTIONS(5854), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5854), + [sym__dedent] = ACTIONS(5854), + }, + [3448] = { + [sym_xml_doc] = STATE(3448), + [sym_block_comment] = STATE(3448), + [sym_line_comment] = STATE(3448), + [sym_compiler_directive_decl] = STATE(3448), + [sym_fsi_directive_decl] = STATE(3448), + [sym_preproc_line] = STATE(3448), + [sym_identifier] = ACTIONS(5844), + [anon_sym_module] = ACTIONS(5844), + [anon_sym_open] = ACTIONS(5844), + [anon_sym_LBRACK_LT] = ACTIONS(5842), + [anon_sym_return] = ACTIONS(5844), + [anon_sym_type] = ACTIONS(5844), + [anon_sym_do] = ACTIONS(5844), + [anon_sym_let] = ACTIONS(5844), + [anon_sym_let_BANG] = ACTIONS(5842), + [anon_sym_LPAREN] = ACTIONS(5844), + [anon_sym_null] = ACTIONS(5844), + [anon_sym_AMP] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(5844), + [anon_sym_LBRACK_PIPE] = ACTIONS(5842), + [anon_sym_LBRACE] = ACTIONS(5844), + [anon_sym_LT_AT] = ACTIONS(5844), + [anon_sym_LT_AT_AT] = ACTIONS(5842), + [anon_sym_LBRACE_PIPE] = ACTIONS(5842), + [anon_sym_new] = ACTIONS(5844), + [anon_sym_return_BANG] = ACTIONS(5842), + [anon_sym_yield] = ACTIONS(5844), + [anon_sym_yield_BANG] = ACTIONS(5842), + [anon_sym_lazy] = ACTIONS(5844), + [anon_sym_assert] = ACTIONS(5844), + [anon_sym_upcast] = ACTIONS(5844), + [anon_sym_downcast] = ACTIONS(5844), + [anon_sym_for] = ACTIONS(5844), + [anon_sym_while] = ACTIONS(5844), + [anon_sym_if] = ACTIONS(5844), + [anon_sym_fun] = ACTIONS(5844), + [anon_sym_try] = ACTIONS(5844), + [anon_sym_match] = ACTIONS(5844), + [anon_sym_match_BANG] = ACTIONS(5842), + [anon_sym_function] = ACTIONS(5844), + [anon_sym_use] = ACTIONS(5844), + [anon_sym_use_BANG] = ACTIONS(5842), + [anon_sym_do_BANG] = ACTIONS(5842), + [anon_sym_begin] = ACTIONS(5844), + [aux_sym_char_token1] = ACTIONS(5842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5844), + [anon_sym_DQUOTE] = ACTIONS(5844), + [anon_sym_AT_DQUOTE] = ACTIONS(5842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5842), + [sym_bool] = ACTIONS(5844), + [sym_unit] = ACTIONS(5842), + [anon_sym_LPAREN_PIPE] = ACTIONS(5844), + [sym_op_identifier] = ACTIONS(5842), + [anon_sym_PLUS] = ACTIONS(5844), + [anon_sym_DASH] = ACTIONS(5844), + [anon_sym_PLUS_DOT] = ACTIONS(5842), + [anon_sym_DASH_DOT] = ACTIONS(5842), + [anon_sym_PERCENT] = ACTIONS(5842), + [anon_sym_AMP_AMP] = ACTIONS(5842), + [anon_sym_TILDE] = ACTIONS(5842), + [aux_sym_prefix_op_token1] = ACTIONS(5842), + [sym_int] = ACTIONS(5844), + [sym_xint] = ACTIONS(5842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5842), + [anon_sym_POUNDload] = ACTIONS(5842), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5842), + [sym__dedent] = ACTIONS(5842), + }, + [3449] = { + [sym_xml_doc] = STATE(3449), + [sym_block_comment] = STATE(3449), + [sym_line_comment] = STATE(3449), + [sym_compiler_directive_decl] = STATE(3449), + [sym_fsi_directive_decl] = STATE(3449), + [sym_preproc_line] = STATE(3449), + [sym_identifier] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_let_BANG] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACK_PIPE] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_LT_AT] = ACTIONS(3285), + [anon_sym_LT_AT_AT] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_LBRACE_PIPE] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_return_BANG] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_yield_BANG] = ACTIONS(3287), + [anon_sym_lazy] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_upcast] = ACTIONS(3285), + [anon_sym_downcast] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_fun] = ACTIONS(3285), + [anon_sym_DASH_GT] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_match_BANG] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_use] = ACTIONS(3285), + [anon_sym_use_BANG] = ACTIONS(3287), + [anon_sym_do_BANG] = ACTIONS(3287), + [anon_sym_begin] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_LT2] = ACTIONS(3285), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3287), + [aux_sym_char_token1] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_AT_DQUOTE] = ACTIONS(3287), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3287), + [sym_bool] = ACTIONS(3285), + [sym_unit] = ACTIONS(3287), + [anon_sym_LPAREN_PIPE] = ACTIONS(3285), + [sym_op_identifier] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_PLUS_DOT] = ACTIONS(3287), + [anon_sym_DASH_DOT] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [aux_sym_prefix_op_token1] = ACTIONS(3287), + [sym_int] = ACTIONS(3285), + [sym_xint] = ACTIONS(3287), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3287), + }, + [3450] = { + [sym_xml_doc] = STATE(3450), + [sym_block_comment] = STATE(3450), + [sym_line_comment] = STATE(3450), + [sym_compiler_directive_decl] = STATE(3450), + [sym_fsi_directive_decl] = STATE(3450), + [sym_preproc_line] = STATE(3450), + [sym_identifier] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + [sym__dedent] = ACTIONS(3298), + }, + [3451] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7773), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3451), + [sym_block_comment] = STATE(3451), + [sym_line_comment] = STATE(3451), + [sym_compiler_directive_decl] = STATE(3451), + [sym_fsi_directive_decl] = STATE(3451), + [sym_preproc_line] = STATE(3451), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3452] = { + [sym_xml_doc] = STATE(3452), + [sym_block_comment] = STATE(3452), + [sym_line_comment] = STATE(3452), + [sym_compiler_directive_decl] = STATE(3452), + [sym_fsi_directive_decl] = STATE(3452), + [sym_preproc_line] = STATE(3452), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + [sym__dedent] = ACTIONS(3353), + }, + [3453] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7430), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3453), + [sym_block_comment] = STATE(3453), + [sym_line_comment] = STATE(3453), + [sym_compiler_directive_decl] = STATE(3453), + [sym_fsi_directive_decl] = STATE(3453), + [sym_preproc_line] = STATE(3453), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3454] = { + [sym_xml_doc] = STATE(3454), + [sym_block_comment] = STATE(3454), + [sym_line_comment] = STATE(3454), + [sym_compiler_directive_decl] = STATE(3454), + [sym_fsi_directive_decl] = STATE(3454), + [sym_preproc_line] = STATE(3454), + [sym_identifier] = ACTIONS(5826), + [anon_sym_module] = ACTIONS(5826), + [anon_sym_open] = ACTIONS(5826), + [anon_sym_LBRACK_LT] = ACTIONS(5824), + [anon_sym_return] = ACTIONS(5826), + [anon_sym_type] = ACTIONS(5826), + [anon_sym_do] = ACTIONS(5826), + [anon_sym_let] = ACTIONS(5826), + [anon_sym_let_BANG] = ACTIONS(5824), + [anon_sym_LPAREN] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(5826), + [anon_sym_AMP] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(5826), + [anon_sym_LBRACK_PIPE] = ACTIONS(5824), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_LT_AT] = ACTIONS(5826), + [anon_sym_LT_AT_AT] = ACTIONS(5824), + [anon_sym_LBRACE_PIPE] = ACTIONS(5824), + [anon_sym_new] = ACTIONS(5826), + [anon_sym_return_BANG] = ACTIONS(5824), + [anon_sym_yield] = ACTIONS(5826), + [anon_sym_yield_BANG] = ACTIONS(5824), + [anon_sym_lazy] = ACTIONS(5826), + [anon_sym_assert] = ACTIONS(5826), + [anon_sym_upcast] = ACTIONS(5826), + [anon_sym_downcast] = ACTIONS(5826), + [anon_sym_for] = ACTIONS(5826), + [anon_sym_while] = ACTIONS(5826), + [anon_sym_if] = ACTIONS(5826), + [anon_sym_fun] = ACTIONS(5826), + [anon_sym_try] = ACTIONS(5826), + [anon_sym_match] = ACTIONS(5826), + [anon_sym_match_BANG] = ACTIONS(5824), + [anon_sym_function] = ACTIONS(5826), + [anon_sym_use] = ACTIONS(5826), + [anon_sym_use_BANG] = ACTIONS(5824), + [anon_sym_do_BANG] = ACTIONS(5824), + [anon_sym_begin] = ACTIONS(5826), + [aux_sym_char_token1] = ACTIONS(5824), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5826), + [anon_sym_DQUOTE] = ACTIONS(5826), + [anon_sym_AT_DQUOTE] = ACTIONS(5824), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5824), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5824), + [sym_bool] = ACTIONS(5826), + [sym_unit] = ACTIONS(5824), + [anon_sym_LPAREN_PIPE] = ACTIONS(5826), + [sym_op_identifier] = ACTIONS(5824), + [anon_sym_PLUS] = ACTIONS(5826), + [anon_sym_DASH] = ACTIONS(5826), + [anon_sym_PLUS_DOT] = ACTIONS(5824), + [anon_sym_DASH_DOT] = ACTIONS(5824), + [anon_sym_PERCENT] = ACTIONS(5824), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_TILDE] = ACTIONS(5824), + [aux_sym_prefix_op_token1] = ACTIONS(5824), + [sym_int] = ACTIONS(5826), + [sym_xint] = ACTIONS(5824), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5824), + [anon_sym_POUNDload] = ACTIONS(5824), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5824), + [sym__dedent] = ACTIONS(5824), + }, + [3455] = { + [sym_xml_doc] = STATE(3455), + [sym_block_comment] = STATE(3455), + [sym_line_comment] = STATE(3455), + [sym_compiler_directive_decl] = STATE(3455), + [sym_fsi_directive_decl] = STATE(3455), + [sym_preproc_line] = STATE(3455), + [sym_identifier] = ACTIONS(5868), + [anon_sym_module] = ACTIONS(5868), + [anon_sym_open] = ACTIONS(5868), + [anon_sym_LBRACK_LT] = ACTIONS(5866), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_type] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_BANG] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LBRACK_PIPE] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_LT_AT] = ACTIONS(5868), + [anon_sym_LT_AT_AT] = ACTIONS(5866), + [anon_sym_LBRACE_PIPE] = ACTIONS(5866), + [anon_sym_new] = ACTIONS(5868), + [anon_sym_return_BANG] = ACTIONS(5866), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_yield_BANG] = ACTIONS(5866), + [anon_sym_lazy] = ACTIONS(5868), + [anon_sym_assert] = ACTIONS(5868), + [anon_sym_upcast] = ACTIONS(5868), + [anon_sym_downcast] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_fun] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_match_BANG] = ACTIONS(5866), + [anon_sym_function] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_use_BANG] = ACTIONS(5866), + [anon_sym_do_BANG] = ACTIONS(5866), + [anon_sym_begin] = ACTIONS(5868), + [aux_sym_char_token1] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [anon_sym_AT_DQUOTE] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [sym_bool] = ACTIONS(5868), + [sym_unit] = ACTIONS(5866), + [anon_sym_LPAREN_PIPE] = ACTIONS(5868), + [sym_op_identifier] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_PLUS_DOT] = ACTIONS(5866), + [anon_sym_DASH_DOT] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [aux_sym_prefix_op_token1] = ACTIONS(5866), + [sym_int] = ACTIONS(5868), + [sym_xint] = ACTIONS(5866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(5866), + [anon_sym_POUNDload] = ACTIONS(5866), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5866), + [sym__dedent] = ACTIONS(5866), + }, + [3456] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(8174), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3456), + [sym_block_comment] = STATE(3456), + [sym_line_comment] = STATE(3456), + [sym_compiler_directive_decl] = STATE(3456), + [sym_fsi_directive_decl] = STATE(3456), + [sym_preproc_line] = STATE(3456), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3457] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6433), + [sym_type_attributes] = STATE(7614), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3457), + [sym_block_comment] = STATE(3457), + [sym_line_comment] = STATE(3457), + [sym_compiler_directive_decl] = STATE(3457), + [sym_fsi_directive_decl] = STATE(3457), + [sym_preproc_line] = STATE(3457), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3458] = { + [sym_xml_doc] = STATE(3458), + [sym_block_comment] = STATE(3458), + [sym_line_comment] = STATE(3458), + [sym_compiler_directive_decl] = STATE(3458), + [sym_fsi_directive_decl] = STATE(3458), + [sym_preproc_line] = STATE(3458), + [sym_identifier] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2770), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2770), + [anon_sym_DASH_DOT] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2770), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_f] = ACTIONS(5498), + [aux_sym_decimal_token1] = ACTIONS(5316), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + }, + [3459] = { + [sym_xml_doc] = STATE(3459), + [sym_block_comment] = STATE(3459), + [sym_line_comment] = STATE(3459), + [sym_compiler_directive_decl] = STATE(3459), + [sym_fsi_directive_decl] = STATE(3459), + [sym_preproc_line] = STATE(3459), + [sym_identifier] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_let_BANG] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LBRACK_PIPE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LT_AT] = ACTIONS(3340), + [anon_sym_LT_AT_AT] = ACTIONS(3342), + [anon_sym_LBRACE_PIPE] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_return_BANG] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_yield_BANG] = ACTIONS(3342), + [anon_sym_lazy] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_upcast] = ACTIONS(3340), + [anon_sym_downcast] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_fun] = ACTIONS(3340), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_match_BANG] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_use] = ACTIONS(3340), + [anon_sym_use_BANG] = ACTIONS(3342), + [anon_sym_do_BANG] = ACTIONS(3342), + [anon_sym_begin] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LT2] = ACTIONS(3340), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3342), + [aux_sym_char_token1] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_AT_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [sym_bool] = ACTIONS(3340), + [sym_unit] = ACTIONS(3342), + [anon_sym_LPAREN_PIPE] = ACTIONS(3340), + [sym_op_identifier] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS_DOT] = ACTIONS(3342), + [anon_sym_DASH_DOT] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [aux_sym_prefix_op_token1] = ACTIONS(3342), + [sym_int] = ACTIONS(3340), + [sym_xint] = ACTIONS(3342), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3342), + }, + [3460] = { + [sym_xml_doc] = STATE(3460), + [sym_block_comment] = STATE(3460), + [sym_line_comment] = STATE(3460), + [sym_compiler_directive_decl] = STATE(3460), + [sym_fsi_directive_decl] = STATE(3460), + [sym_preproc_line] = STATE(3460), + [sym_identifier] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_let_BANG] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LBRACK_PIPE] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_LT_AT] = ACTIONS(3451), + [anon_sym_LT_AT_AT] = ACTIONS(3453), + [anon_sym_LBRACE_PIPE] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_return_BANG] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_yield_BANG] = ACTIONS(3453), + [anon_sym_lazy] = ACTIONS(3451), + [anon_sym_assert] = ACTIONS(3451), + [anon_sym_upcast] = ACTIONS(3451), + [anon_sym_downcast] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_fun] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_match_BANG] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_GT] = ACTIONS(3453), + [anon_sym_use] = ACTIONS(3451), + [anon_sym_use_BANG] = ACTIONS(3453), + [anon_sym_do_BANG] = ACTIONS(3453), + [anon_sym_begin] = ACTIONS(3451), + [aux_sym_char_token1] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_AT_DQUOTE] = ACTIONS(3453), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3453), + [sym_bool] = ACTIONS(3451), + [sym_unit] = ACTIONS(3453), + [anon_sym_LPAREN_PIPE] = ACTIONS(3451), + [sym_op_identifier] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS_DOT] = ACTIONS(3453), + [anon_sym_DASH_DOT] = ACTIONS(3453), + [anon_sym_PERCENT] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [aux_sym_prefix_op_token1] = ACTIONS(3453), + [sym_int] = ACTIONS(3451), + [sym_xint] = ACTIONS(3453), + [anon_sym_f] = ACTIONS(3451), + [aux_sym_decimal_token1] = ACTIONS(3451), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3453), + }, + [3461] = { + [sym_xml_doc] = STATE(3461), + [sym_block_comment] = STATE(3461), + [sym_line_comment] = STATE(3461), + [sym_compiler_directive_decl] = STATE(3461), + [sym_fsi_directive_decl] = STATE(3461), + [sym_preproc_line] = STATE(3461), + [sym_identifier] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_let_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LBRACK_PIPE] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LT_AT] = ACTIONS(3417), + [anon_sym_LT_AT_AT] = ACTIONS(3419), + [anon_sym_LBRACE_PIPE] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_return_BANG] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_yield_BANG] = ACTIONS(3419), + [anon_sym_lazy] = ACTIONS(3417), + [anon_sym_assert] = ACTIONS(3417), + [anon_sym_upcast] = ACTIONS(3417), + [anon_sym_downcast] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_fun] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_match] = ACTIONS(3417), + [anon_sym_match_BANG] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_GT] = ACTIONS(3419), + [anon_sym_use] = ACTIONS(3417), + [anon_sym_use_BANG] = ACTIONS(3419), + [anon_sym_do_BANG] = ACTIONS(3419), + [anon_sym_begin] = ACTIONS(3417), + [aux_sym_char_token1] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_AT_DQUOTE] = ACTIONS(3419), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3419), + [sym_bool] = ACTIONS(3417), + [sym_unit] = ACTIONS(3419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3417), + [sym_op_identifier] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_DOT] = ACTIONS(3419), + [anon_sym_DASH_DOT] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [aux_sym_prefix_op_token1] = ACTIONS(3419), + [sym_int] = ACTIONS(5949), + [sym_xint] = ACTIONS(3419), + [anon_sym_f] = ACTIONS(3417), + [aux_sym_decimal_token1] = ACTIONS(3417), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3419), + }, + [3462] = { + [sym_attributes] = STATE(5059), + [sym_attribute_set] = STATE(5160), + [sym_function_or_value_defn] = STATE(6629), + [sym_access_modifier] = STATE(7834), + [sym_type] = STATE(5730), + [sym__simple_type] = STATE(4892), + [sym__generic_type] = STATE(4892), + [sym__paren_type] = STATE(4892), + [sym__function_type] = STATE(4892), + [sym__compound_type] = STATE(4892), + [sym__postfix_type] = STATE(4892), + [sym__list_type] = STATE(4892), + [sym__static_type] = STATE(4892), + [sym__constrained_type] = STATE(4892), + [sym__flexible_type] = STATE(4892), + [sym__static_type_identifier] = STATE(4284), + [sym_type_argument] = STATE(4769), + [sym_delegate_signature] = STATE(7551), + [sym__class_type_body_inner] = STATE(6486), + [sym__class_type_body] = STATE(7629), + [sym_enum_type_cases] = STATE(7628), + [sym_enum_type_case] = STATE(8203), + [sym_union_type_cases] = STATE(4228), + [sym_union_type_case] = STATE(5097), + [sym__class_function_or_value_defn] = STATE(6633), + [sym__type_defn_elements] = STATE(6633), + [sym_interface_implementation] = STATE(6553), + [sym__member_defns] = STATE(6718), + [sym_member_defn] = STATE(4881), + [sym_additional_constr_defn] = STATE(5387), + [sym_class_inherits_decl] = STATE(6633), + [sym_long_identifier] = STATE(4888), + [sym_xml_doc] = STATE(3462), + [sym_block_comment] = STATE(3462), + [sym_line_comment] = STATE(3462), + [sym_compiler_directive_decl] = STATE(3462), + [sym_fsi_directive_decl] = STATE(3462), + [sym_preproc_line] = STATE(3462), + [sym_preproc_if_in_class_definition] = STATE(6633), + [aux_sym_attributes_repeat1] = STATE(5030), + [aux_sym__object_expression_inner_repeat1] = STATE(5999), + [sym_identifier] = ACTIONS(5951), + [anon_sym_LBRACK_LT] = ACTIONS(5953), + [anon_sym_do] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5957), + [anon_sym_let_BANG] = ACTIONS(5959), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_LBRACE] = ACTIONS(5967), + [anon_sym_new] = ACTIONS(5969), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_CARET] = ACTIONS(5973), + [anon_sym_SQUOTE] = ACTIONS(5973), + [anon_sym_delegate] = ACTIONS(5975), + [anon_sym_default] = ACTIONS(5977), + [anon_sym_static] = ACTIONS(5979), + [anon_sym_member] = ACTIONS(5981), + [anon_sym_interface] = ACTIONS(5983), + [anon_sym_abstract] = ACTIONS(5985), + [anon_sym_override] = ACTIONS(5977), + [anon_sym_val] = ACTIONS(5987), + [anon_sym_inherit] = ACTIONS(5989), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5991), + }, + [3463] = { + [sym_xml_doc] = STATE(3463), + [sym_block_comment] = STATE(3463), + [sym_line_comment] = STATE(3463), + [sym_compiler_directive_decl] = STATE(3463), + [sym_fsi_directive_decl] = STATE(3463), + [sym_preproc_line] = STATE(3463), + [sym_identifier] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_let_BANG] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_null] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LBRACK_PIPE] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_LT_AT] = ACTIONS(3387), + [anon_sym_LT_AT_AT] = ACTIONS(3389), + [anon_sym_LBRACE_PIPE] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_return_BANG] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_yield_BANG] = ACTIONS(3389), + [anon_sym_lazy] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_upcast] = ACTIONS(3387), + [anon_sym_downcast] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_fun] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_match_BANG] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_GT] = ACTIONS(3389), + [anon_sym_use] = ACTIONS(3387), + [anon_sym_use_BANG] = ACTIONS(3389), + [anon_sym_do_BANG] = ACTIONS(3389), + [anon_sym_begin] = ACTIONS(3387), + [aux_sym_char_token1] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_AT_DQUOTE] = ACTIONS(3389), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3389), + [sym_bool] = ACTIONS(3387), + [sym_unit] = ACTIONS(3389), + [anon_sym_LPAREN_PIPE] = ACTIONS(3387), + [sym_op_identifier] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_PLUS_DOT] = ACTIONS(3389), + [anon_sym_DASH_DOT] = ACTIONS(3389), + [anon_sym_PERCENT] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [aux_sym_prefix_op_token1] = ACTIONS(3389), + [sym_int] = ACTIONS(3387), + [sym_xint] = ACTIONS(3389), + [anon_sym_f] = ACTIONS(3387), + [aux_sym_decimal_token1] = ACTIONS(3387), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3389), + }, + [3464] = { + [sym_xml_doc] = STATE(3464), + [sym_block_comment] = STATE(3464), + [sym_line_comment] = STATE(3464), + [sym_compiler_directive_decl] = STATE(3464), + [sym_fsi_directive_decl] = STATE(3464), + [sym_preproc_line] = STATE(3464), + [sym_identifier] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_let_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_null] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LBRACK_PIPE] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_LT_AT] = ACTIONS(3355), + [anon_sym_LT_AT_AT] = ACTIONS(3357), + [anon_sym_LBRACE_PIPE] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_return_BANG] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_yield_BANG] = ACTIONS(3357), + [anon_sym_lazy] = ACTIONS(3355), + [anon_sym_assert] = ACTIONS(3355), + [anon_sym_upcast] = ACTIONS(3355), + [anon_sym_downcast] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_fun] = ACTIONS(3355), + [anon_sym_DASH_GT] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_match_BANG] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_use_BANG] = ACTIONS(3357), + [anon_sym_do_BANG] = ACTIONS(3357), + [anon_sym_begin] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_LT2] = ACTIONS(5993), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3357), + [aux_sym_char_token1] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_AT_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3357), + [sym_bool] = ACTIONS(3355), + [sym_unit] = ACTIONS(3357), + [anon_sym_LPAREN_PIPE] = ACTIONS(3355), + [sym_op_identifier] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_PLUS_DOT] = ACTIONS(3357), + [anon_sym_DASH_DOT] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [aux_sym_prefix_op_token1] = ACTIONS(3357), + [sym_int] = ACTIONS(3355), + [sym_xint] = ACTIONS(3357), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3357), + }, + [3465] = { + [sym_attributes] = STATE(5059), + [sym_attribute_set] = STATE(5160), + [sym_function_or_value_defn] = STATE(6629), + [sym_access_modifier] = STATE(7834), + [sym_type] = STATE(5676), + [sym__simple_type] = STATE(4892), + [sym__generic_type] = STATE(4892), + [sym__paren_type] = STATE(4892), + [sym__function_type] = STATE(4892), + [sym__compound_type] = STATE(4892), + [sym__postfix_type] = STATE(4892), + [sym__list_type] = STATE(4892), + [sym__static_type] = STATE(4892), + [sym__constrained_type] = STATE(4892), + [sym__flexible_type] = STATE(4892), + [sym__static_type_identifier] = STATE(4284), + [sym_type_argument] = STATE(4769), + [sym_delegate_signature] = STATE(7448), + [sym__class_type_body_inner] = STATE(6486), + [sym__class_type_body] = STATE(7447), + [sym_enum_type_cases] = STATE(7445), + [sym_enum_type_case] = STATE(8203), + [sym_union_type_cases] = STATE(4222), + [sym_union_type_case] = STATE(5097), + [sym__class_function_or_value_defn] = STATE(6633), + [sym__type_defn_elements] = STATE(6633), + [sym_interface_implementation] = STATE(6553), + [sym__member_defns] = STATE(6718), + [sym_member_defn] = STATE(4881), + [sym_additional_constr_defn] = STATE(5387), + [sym_class_inherits_decl] = STATE(6633), + [sym_long_identifier] = STATE(4888), + [sym_xml_doc] = STATE(3465), + [sym_block_comment] = STATE(3465), + [sym_line_comment] = STATE(3465), + [sym_compiler_directive_decl] = STATE(3465), + [sym_fsi_directive_decl] = STATE(3465), + [sym_preproc_line] = STATE(3465), + [sym_preproc_if_in_class_definition] = STATE(6633), + [aux_sym_attributes_repeat1] = STATE(5030), + [aux_sym__object_expression_inner_repeat1] = STATE(5999), + [sym_identifier] = ACTIONS(5951), + [anon_sym_LBRACK_LT] = ACTIONS(5953), + [anon_sym_do] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5957), + [anon_sym_let_BANG] = ACTIONS(5959), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_LBRACE] = ACTIONS(5995), + [anon_sym_new] = ACTIONS(5969), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_CARET] = ACTIONS(5973), + [anon_sym_SQUOTE] = ACTIONS(5973), + [anon_sym_delegate] = ACTIONS(5975), + [anon_sym_default] = ACTIONS(5977), + [anon_sym_static] = ACTIONS(5979), + [anon_sym_member] = ACTIONS(5981), + [anon_sym_interface] = ACTIONS(5983), + [anon_sym_abstract] = ACTIONS(5985), + [anon_sym_override] = ACTIONS(5977), + [anon_sym_val] = ACTIONS(5987), + [anon_sym_inherit] = ACTIONS(5989), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5991), + }, + [3466] = { + [sym_xml_doc] = STATE(3466), + [sym_block_comment] = STATE(3466), + [sym_line_comment] = STATE(3466), + [sym_compiler_directive_decl] = STATE(3466), + [sym_fsi_directive_decl] = STATE(3466), + [sym_preproc_line] = STATE(3466), + [sym_identifier] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_let_BANG] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_null] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LBRACK_PIPE] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_LT_AT] = ACTIONS(3308), + [anon_sym_LT_AT_AT] = ACTIONS(3310), + [anon_sym_LBRACE_PIPE] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_return_BANG] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_yield_BANG] = ACTIONS(3310), + [anon_sym_lazy] = ACTIONS(3308), + [anon_sym_assert] = ACTIONS(3308), + [anon_sym_upcast] = ACTIONS(3308), + [anon_sym_downcast] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_fun] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3308), + [anon_sym_match_BANG] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_use] = ACTIONS(3308), + [anon_sym_use_BANG] = ACTIONS(3310), + [anon_sym_do_BANG] = ACTIONS(3310), + [anon_sym_begin] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_LT2] = ACTIONS(3308), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3310), + [aux_sym_char_token1] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_AT_DQUOTE] = ACTIONS(3310), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3310), + [sym_bool] = ACTIONS(3308), + [sym_unit] = ACTIONS(3310), + [anon_sym_LPAREN_PIPE] = ACTIONS(3308), + [sym_op_identifier] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS_DOT] = ACTIONS(3310), + [anon_sym_DASH_DOT] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [aux_sym_prefix_op_token1] = ACTIONS(3310), + [sym_int] = ACTIONS(3308), + [sym_xint] = ACTIONS(3310), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3310), + }, + [3467] = { + [sym_xml_doc] = STATE(3467), + [sym_block_comment] = STATE(3467), + [sym_line_comment] = STATE(3467), + [sym_compiler_directive_decl] = STATE(3467), + [sym_fsi_directive_decl] = STATE(3467), + [sym_preproc_line] = STATE(3467), + [aux_sym__function_or_value_defns_repeat1] = STATE(3480), + [sym_identifier] = ACTIONS(5651), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(5997), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5651), + [anon_sym_assert] = ACTIONS(5651), + [anon_sym_upcast] = ACTIONS(5651), + [anon_sym_downcast] = ACTIONS(5651), + [anon_sym_for] = ACTIONS(5651), + [anon_sym_while] = ACTIONS(5651), + [anon_sym_if] = ACTIONS(5651), + [anon_sym_fun] = ACTIONS(5651), + [anon_sym_try] = ACTIONS(5651), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5649), + [anon_sym_DASH_DOT] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_TILDE] = ACTIONS(5649), + [aux_sym_prefix_op_token1] = ACTIONS(5649), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5649), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5649), + [anon_sym_POUNDendif] = ACTIONS(5649), + [anon_sym_POUNDelse] = ACTIONS(5649), + }, + [3468] = { + [sym_xml_doc] = STATE(3468), + [sym_block_comment] = STATE(3468), + [sym_line_comment] = STATE(3468), + [sym_compiler_directive_decl] = STATE(3468), + [sym_fsi_directive_decl] = STATE(3468), + [sym_preproc_line] = STATE(3468), + [sym_identifier] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_let_BANG] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_null] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LBRACK_PIPE] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LT_AT] = ACTIONS(3322), + [anon_sym_LT_AT_AT] = ACTIONS(3324), + [anon_sym_LBRACE_PIPE] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_return_BANG] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_yield_BANG] = ACTIONS(3324), + [anon_sym_lazy] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_upcast] = ACTIONS(3322), + [anon_sym_downcast] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_fun] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_match_BANG] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_use] = ACTIONS(3322), + [anon_sym_use_BANG] = ACTIONS(3324), + [anon_sym_do_BANG] = ACTIONS(3324), + [anon_sym_begin] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_LT2] = ACTIONS(3322), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3324), + [aux_sym_char_token1] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_AT_DQUOTE] = ACTIONS(3324), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3324), + [sym_bool] = ACTIONS(3322), + [sym_unit] = ACTIONS(3324), + [anon_sym_LPAREN_PIPE] = ACTIONS(3322), + [sym_op_identifier] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS_DOT] = ACTIONS(3324), + [anon_sym_DASH_DOT] = ACTIONS(3324), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [aux_sym_prefix_op_token1] = ACTIONS(3324), + [sym_int] = ACTIONS(3322), + [sym_xint] = ACTIONS(3324), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3324), + }, + [3469] = { + [sym_xml_doc] = STATE(3469), + [sym_block_comment] = STATE(3469), + [sym_line_comment] = STATE(3469), + [sym_compiler_directive_decl] = STATE(3469), + [sym_fsi_directive_decl] = STATE(3469), + [sym_preproc_line] = STATE(3469), + [sym_identifier] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_let_BANG] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_null] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LBRACK_PIPE] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LT_AT] = ACTIONS(3292), + [anon_sym_LT_AT_AT] = ACTIONS(3294), + [anon_sym_LBRACE_PIPE] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_return_BANG] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_yield_BANG] = ACTIONS(3294), + [anon_sym_lazy] = ACTIONS(3292), + [anon_sym_assert] = ACTIONS(3292), + [anon_sym_upcast] = ACTIONS(3292), + [anon_sym_downcast] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_fun] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3292), + [anon_sym_match_BANG] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_use] = ACTIONS(3292), + [anon_sym_use_BANG] = ACTIONS(3294), + [anon_sym_do_BANG] = ACTIONS(3294), + [anon_sym_begin] = ACTIONS(3292), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LT2] = ACTIONS(3292), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3294), + [aux_sym_char_token1] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_AT_DQUOTE] = ACTIONS(3294), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3294), + [sym_bool] = ACTIONS(3292), + [sym_unit] = ACTIONS(3294), + [anon_sym_LPAREN_PIPE] = ACTIONS(3292), + [sym_op_identifier] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_PLUS_DOT] = ACTIONS(3294), + [anon_sym_DASH_DOT] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [aux_sym_prefix_op_token1] = ACTIONS(3294), + [sym_int] = ACTIONS(3292), + [sym_xint] = ACTIONS(3294), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3294), + }, + [3470] = { + [sym_attributes] = STATE(5059), + [sym_attribute_set] = STATE(5160), + [sym_function_or_value_defn] = STATE(6629), + [sym_access_modifier] = STATE(7834), + [sym_type] = STATE(5712), + [sym__simple_type] = STATE(4892), + [sym__generic_type] = STATE(4892), + [sym__paren_type] = STATE(4892), + [sym__function_type] = STATE(4892), + [sym__compound_type] = STATE(4892), + [sym__postfix_type] = STATE(4892), + [sym__list_type] = STATE(4892), + [sym__static_type] = STATE(4892), + [sym__constrained_type] = STATE(4892), + [sym__flexible_type] = STATE(4892), + [sym__static_type_identifier] = STATE(4284), + [sym_type_argument] = STATE(4769), + [sym_delegate_signature] = STATE(7781), + [sym__class_type_body_inner] = STATE(6486), + [sym__class_type_body] = STATE(7780), + [sym_enum_type_cases] = STATE(7779), + [sym_enum_type_case] = STATE(8203), + [sym_union_type_cases] = STATE(4223), + [sym_union_type_case] = STATE(5097), + [sym__class_function_or_value_defn] = STATE(6633), + [sym__type_defn_elements] = STATE(6633), + [sym_interface_implementation] = STATE(6553), + [sym__member_defns] = STATE(6718), + [sym_member_defn] = STATE(4881), + [sym_additional_constr_defn] = STATE(5387), + [sym_class_inherits_decl] = STATE(6633), + [sym_long_identifier] = STATE(4888), + [sym_xml_doc] = STATE(3470), + [sym_block_comment] = STATE(3470), + [sym_line_comment] = STATE(3470), + [sym_compiler_directive_decl] = STATE(3470), + [sym_fsi_directive_decl] = STATE(3470), + [sym_preproc_line] = STATE(3470), + [sym_preproc_if_in_class_definition] = STATE(6633), + [aux_sym_attributes_repeat1] = STATE(5030), + [aux_sym__object_expression_inner_repeat1] = STATE(5999), + [sym_identifier] = ACTIONS(5951), + [anon_sym_LBRACK_LT] = ACTIONS(5953), + [anon_sym_do] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5957), + [anon_sym_let_BANG] = ACTIONS(5959), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_LBRACE] = ACTIONS(5999), + [anon_sym_new] = ACTIONS(5969), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_CARET] = ACTIONS(5973), + [anon_sym_SQUOTE] = ACTIONS(5973), + [anon_sym_delegate] = ACTIONS(5975), + [anon_sym_default] = ACTIONS(5977), + [anon_sym_static] = ACTIONS(5979), + [anon_sym_member] = ACTIONS(5981), + [anon_sym_interface] = ACTIONS(5983), + [anon_sym_abstract] = ACTIONS(5985), + [anon_sym_override] = ACTIONS(5977), + [anon_sym_val] = ACTIONS(5987), + [anon_sym_inherit] = ACTIONS(5989), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5991), + }, + [3471] = { + [sym_xml_doc] = STATE(3471), + [sym_block_comment] = STATE(3471), + [sym_line_comment] = STATE(3471), + [sym_compiler_directive_decl] = STATE(3471), + [sym_fsi_directive_decl] = STATE(3471), + [sym_preproc_line] = STATE(3471), + [sym_identifier] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_let_BANG] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LBRACK_PIPE] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_LT_AT] = ACTIONS(3296), + [anon_sym_LT_AT_AT] = ACTIONS(3298), + [anon_sym_LBRACE_PIPE] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_return_BANG] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_yield_BANG] = ACTIONS(3298), + [anon_sym_lazy] = ACTIONS(3296), + [anon_sym_assert] = ACTIONS(3296), + [anon_sym_upcast] = ACTIONS(3296), + [anon_sym_downcast] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3296), + [anon_sym_match_BANG] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_use] = ACTIONS(3296), + [anon_sym_use_BANG] = ACTIONS(3298), + [anon_sym_do_BANG] = ACTIONS(3298), + [anon_sym_begin] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_LT2] = ACTIONS(3296), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3298), + [aux_sym_char_token1] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_AT_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3298), + [sym_bool] = ACTIONS(3296), + [sym_unit] = ACTIONS(3298), + [anon_sym_LPAREN_PIPE] = ACTIONS(3296), + [sym_op_identifier] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_DOT] = ACTIONS(3298), + [anon_sym_DASH_DOT] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [aux_sym_prefix_op_token1] = ACTIONS(3298), + [sym_int] = ACTIONS(3296), + [sym_xint] = ACTIONS(3298), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3298), + }, + [3472] = { + [sym_xml_doc] = STATE(3472), + [sym_block_comment] = STATE(3472), + [sym_line_comment] = STATE(3472), + [sym_compiler_directive_decl] = STATE(3472), + [sym_fsi_directive_decl] = STATE(3472), + [sym_preproc_line] = STATE(3472), + [sym_identifier] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_let_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LBRACK_PIPE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_LT_AT] = ACTIONS(3336), + [anon_sym_LT_AT_AT] = ACTIONS(3338), + [anon_sym_LBRACE_PIPE] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_return_BANG] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_yield_BANG] = ACTIONS(3338), + [anon_sym_lazy] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_upcast] = ACTIONS(3336), + [anon_sym_downcast] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_fun] = ACTIONS(3336), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_match_BANG] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_use] = ACTIONS(3336), + [anon_sym_use_BANG] = ACTIONS(3338), + [anon_sym_do_BANG] = ACTIONS(3338), + [anon_sym_begin] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_LT2] = ACTIONS(3336), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3338), + [aux_sym_char_token1] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_AT_DQUOTE] = ACTIONS(3338), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [sym_bool] = ACTIONS(3336), + [sym_unit] = ACTIONS(3338), + [anon_sym_LPAREN_PIPE] = ACTIONS(3336), + [sym_op_identifier] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS_DOT] = ACTIONS(3338), + [anon_sym_DASH_DOT] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [aux_sym_prefix_op_token1] = ACTIONS(3338), + [sym_int] = ACTIONS(3336), + [sym_xint] = ACTIONS(3338), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3338), + }, + [3473] = { + [sym_xml_doc] = STATE(3473), + [sym_block_comment] = STATE(3473), + [sym_line_comment] = STATE(3473), + [sym_compiler_directive_decl] = STATE(3473), + [sym_fsi_directive_decl] = STATE(3473), + [sym_preproc_line] = STATE(3473), + [aux_sym__function_or_value_defns_repeat1] = STATE(3473), + [sym_identifier] = ACTIONS(5660), + [anon_sym_return] = ACTIONS(5660), + [anon_sym_do] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(6001), + [anon_sym_let] = ACTIONS(5660), + [anon_sym_let_BANG] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_null] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5660), + [anon_sym_LBRACK_PIPE] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5660), + [anon_sym_LT_AT] = ACTIONS(5660), + [anon_sym_LT_AT_AT] = ACTIONS(5658), + [anon_sym_LBRACE_PIPE] = ACTIONS(5658), + [anon_sym_new] = ACTIONS(5660), + [anon_sym_return_BANG] = ACTIONS(5658), + [anon_sym_yield] = ACTIONS(5660), + [anon_sym_yield_BANG] = ACTIONS(5658), + [anon_sym_lazy] = ACTIONS(5660), + [anon_sym_assert] = ACTIONS(5660), + [anon_sym_upcast] = ACTIONS(5660), + [anon_sym_downcast] = ACTIONS(5660), + [anon_sym_for] = ACTIONS(5660), + [anon_sym_while] = ACTIONS(5660), + [anon_sym_if] = ACTIONS(5660), + [anon_sym_fun] = ACTIONS(5660), + [anon_sym_try] = ACTIONS(5660), + [anon_sym_match] = ACTIONS(5660), + [anon_sym_match_BANG] = ACTIONS(5658), + [anon_sym_function] = ACTIONS(5660), + [anon_sym_use] = ACTIONS(5660), + [anon_sym_use_BANG] = ACTIONS(5658), + [anon_sym_do_BANG] = ACTIONS(5658), + [anon_sym_begin] = ACTIONS(5660), + [aux_sym_char_token1] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(5660), + [anon_sym_AT_DQUOTE] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [sym_bool] = ACTIONS(5660), + [sym_unit] = ACTIONS(5658), + [anon_sym_LPAREN_PIPE] = ACTIONS(5660), + [sym_op_identifier] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS_DOT] = ACTIONS(5658), + [anon_sym_DASH_DOT] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_TILDE] = ACTIONS(5658), + [aux_sym_prefix_op_token1] = ACTIONS(5658), + [sym_int] = ACTIONS(5660), + [sym_xint] = ACTIONS(5658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5658), + [anon_sym_POUNDendif] = ACTIONS(5658), + [anon_sym_POUNDelse] = ACTIONS(5658), + }, + [3474] = { + [sym_xml_doc] = STATE(3474), + [sym_block_comment] = STATE(3474), + [sym_line_comment] = STATE(3474), + [sym_compiler_directive_decl] = STATE(3474), + [sym_fsi_directive_decl] = STATE(3474), + [sym_preproc_line] = STATE(3474), + [sym_identifier] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_let_BANG] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_null] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LBRACK_PIPE] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LT_AT] = ACTIONS(3318), + [anon_sym_LT_AT_AT] = ACTIONS(3320), + [anon_sym_LBRACE_PIPE] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_return_BANG] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_yield_BANG] = ACTIONS(3320), + [anon_sym_lazy] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_upcast] = ACTIONS(3318), + [anon_sym_downcast] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_fun] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_match_BANG] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_use] = ACTIONS(3318), + [anon_sym_use_BANG] = ACTIONS(3320), + [anon_sym_do_BANG] = ACTIONS(3320), + [anon_sym_begin] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_LT2] = ACTIONS(3318), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3320), + [aux_sym_char_token1] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_AT_DQUOTE] = ACTIONS(3320), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3320), + [sym_bool] = ACTIONS(3318), + [sym_unit] = ACTIONS(3320), + [anon_sym_LPAREN_PIPE] = ACTIONS(3318), + [sym_op_identifier] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS_DOT] = ACTIONS(3320), + [anon_sym_DASH_DOT] = ACTIONS(3320), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [aux_sym_prefix_op_token1] = ACTIONS(3320), + [sym_int] = ACTIONS(3318), + [sym_xint] = ACTIONS(3320), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3320), + }, + [3475] = { + [sym_xml_doc] = STATE(3475), + [sym_block_comment] = STATE(3475), + [sym_line_comment] = STATE(3475), + [sym_compiler_directive_decl] = STATE(3475), + [sym_fsi_directive_decl] = STATE(3475), + [sym_preproc_line] = STATE(3475), + [sym_identifier] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_let_BANG] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_null] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LBRACK_PIPE] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_LT_AT] = ACTIONS(3304), + [anon_sym_LT_AT_AT] = ACTIONS(3306), + [anon_sym_LBRACE_PIPE] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_return_BANG] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_yield_BANG] = ACTIONS(3306), + [anon_sym_lazy] = ACTIONS(3304), + [anon_sym_assert] = ACTIONS(3304), + [anon_sym_upcast] = ACTIONS(3304), + [anon_sym_downcast] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_fun] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3304), + [anon_sym_match_BANG] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_use_BANG] = ACTIONS(3306), + [anon_sym_do_BANG] = ACTIONS(3306), + [anon_sym_begin] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_LT2] = ACTIONS(3304), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3306), + [aux_sym_char_token1] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_AT_DQUOTE] = ACTIONS(3306), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3306), + [sym_bool] = ACTIONS(3304), + [sym_unit] = ACTIONS(3306), + [anon_sym_LPAREN_PIPE] = ACTIONS(3304), + [sym_op_identifier] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS_DOT] = ACTIONS(3306), + [anon_sym_DASH_DOT] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [aux_sym_prefix_op_token1] = ACTIONS(3306), + [sym_int] = ACTIONS(3304), + [sym_xint] = ACTIONS(3306), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3306), + }, + [3476] = { + [sym_xml_doc] = STATE(3476), + [sym_block_comment] = STATE(3476), + [sym_line_comment] = STATE(3476), + [sym_compiler_directive_decl] = STATE(3476), + [sym_fsi_directive_decl] = STATE(3476), + [sym_preproc_line] = STATE(3476), + [sym_identifier] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_let_BANG] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LBRACK_PIPE] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_LT_AT] = ACTIONS(3300), + [anon_sym_LT_AT_AT] = ACTIONS(3302), + [anon_sym_LBRACE_PIPE] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_return_BANG] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_yield_BANG] = ACTIONS(3302), + [anon_sym_lazy] = ACTIONS(3300), + [anon_sym_assert] = ACTIONS(3300), + [anon_sym_upcast] = ACTIONS(3300), + [anon_sym_downcast] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_fun] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3300), + [anon_sym_match_BANG] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_use] = ACTIONS(3300), + [anon_sym_use_BANG] = ACTIONS(3302), + [anon_sym_do_BANG] = ACTIONS(3302), + [anon_sym_begin] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_LT2] = ACTIONS(3300), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3302), + [aux_sym_char_token1] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_AT_DQUOTE] = ACTIONS(3302), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3302), + [sym_bool] = ACTIONS(3300), + [sym_unit] = ACTIONS(3302), + [anon_sym_LPAREN_PIPE] = ACTIONS(3300), + [sym_op_identifier] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS_DOT] = ACTIONS(3302), + [anon_sym_DASH_DOT] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [aux_sym_prefix_op_token1] = ACTIONS(3302), + [sym_int] = ACTIONS(3300), + [sym_xint] = ACTIONS(3302), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3302), + }, + [3477] = { + [sym_type] = STATE(5477), + [sym__simple_type] = STATE(5514), + [sym__generic_type] = STATE(5514), + [sym__paren_type] = STATE(5514), + [sym__function_type] = STATE(5514), + [sym__compound_type] = STATE(5514), + [sym__postfix_type] = STATE(5514), + [sym__list_type] = STATE(5514), + [sym__static_type] = STATE(5514), + [sym__constrained_type] = STATE(5514), + [sym__flexible_type] = STATE(5514), + [sym__static_type_identifier] = STATE(5138), + [sym__static_parameter] = STATE(6600), + [sym_named_static_parameter] = STATE(6603), + [sym_static_parameter_value] = STATE(6603), + [sym_type_attribute] = STATE(6668), + [sym_type_argument] = STATE(5378), + [sym_char] = STATE(3497), + [sym_format_string] = STATE(3518), + [sym__string_literal] = STATE(3518), + [sym_string] = STATE(3497), + [sym_verbatim_string] = STATE(3497), + [sym_bytearray] = STATE(3497), + [sym_verbatim_bytearray] = STATE(3497), + [sym_format_triple_quoted_string] = STATE(3509), + [sym_triple_quoted_string] = STATE(3497), + [sym_const] = STATE(534), + [sym_long_identifier] = STATE(5501), + [sym_sbyte] = STATE(3497), + [sym_byte] = STATE(3497), + [sym_int16] = STATE(3497), + [sym_uint16] = STATE(3497), + [sym_int32] = STATE(3497), + [sym_uint32] = STATE(3497), + [sym_nativeint] = STATE(3497), + [sym_unativeint] = STATE(3497), + [sym_int64] = STATE(3497), + [sym_uint64] = STATE(3497), + [sym_ieee32] = STATE(3497), + [sym_ieee64] = STATE(3497), + [sym_bignum] = STATE(3497), + [sym_decimal] = STATE(3497), + [sym_float] = STATE(3458), + [sym_xml_doc] = STATE(3477), + [sym_block_comment] = STATE(3477), + [sym_line_comment] = STATE(3477), + [sym_compiler_directive_decl] = STATE(3477), + [sym_fsi_directive_decl] = STATE(3477), + [sym_preproc_line] = STATE(3477), + [sym_identifier] = ACTIONS(5780), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym__] = ACTIONS(5784), + [anon_sym_POUND] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5790), + [anon_sym_SQUOTE] = ACTIONS(5790), + [aux_sym_char_token1] = ACTIONS(5792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5794), + [anon_sym_DQUOTE] = ACTIONS(5796), + [anon_sym_AT_DQUOTE] = ACTIONS(5798), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5802), + [sym_bool] = ACTIONS(5804), + [sym_unit] = ACTIONS(5806), + [sym_int] = ACTIONS(5808), + [sym_xint] = ACTIONS(5810), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + }, + [3478] = { + [sym_attributes] = STATE(5059), + [sym_attribute_set] = STATE(5160), + [sym_function_or_value_defn] = STATE(6629), + [sym_access_modifier] = STATE(7834), + [sym_type] = STATE(5688), + [sym__simple_type] = STATE(4892), + [sym__generic_type] = STATE(4892), + [sym__paren_type] = STATE(4892), + [sym__function_type] = STATE(4892), + [sym__compound_type] = STATE(4892), + [sym__postfix_type] = STATE(4892), + [sym__list_type] = STATE(4892), + [sym__static_type] = STATE(4892), + [sym__constrained_type] = STATE(4892), + [sym__flexible_type] = STATE(4892), + [sym__static_type_identifier] = STATE(4284), + [sym_type_argument] = STATE(4769), + [sym_delegate_signature] = STATE(8206), + [sym__class_type_body_inner] = STATE(6486), + [sym__class_type_body] = STATE(8205), + [sym_enum_type_cases] = STATE(8204), + [sym_enum_type_case] = STATE(8203), + [sym_union_type_cases] = STATE(4209), + [sym_union_type_case] = STATE(5097), + [sym__class_function_or_value_defn] = STATE(6633), + [sym__type_defn_elements] = STATE(6633), + [sym_interface_implementation] = STATE(6553), + [sym__member_defns] = STATE(6718), + [sym_member_defn] = STATE(4881), + [sym_additional_constr_defn] = STATE(5387), + [sym_class_inherits_decl] = STATE(6633), + [sym_long_identifier] = STATE(4888), + [sym_xml_doc] = STATE(3478), + [sym_block_comment] = STATE(3478), + [sym_line_comment] = STATE(3478), + [sym_compiler_directive_decl] = STATE(3478), + [sym_fsi_directive_decl] = STATE(3478), + [sym_preproc_line] = STATE(3478), + [sym_preproc_if_in_class_definition] = STATE(6633), + [aux_sym_attributes_repeat1] = STATE(5030), + [aux_sym__object_expression_inner_repeat1] = STATE(5999), + [sym_identifier] = ACTIONS(5951), + [anon_sym_LBRACK_LT] = ACTIONS(5953), + [anon_sym_do] = ACTIONS(5955), + [anon_sym_let] = ACTIONS(5957), + [anon_sym_let_BANG] = ACTIONS(5959), + [aux_sym_access_modifier_token1] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(5961), + [anon_sym__] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_new] = ACTIONS(5969), + [anon_sym_POUND] = ACTIONS(5971), + [anon_sym_CARET] = ACTIONS(5973), + [anon_sym_SQUOTE] = ACTIONS(5973), + [anon_sym_delegate] = ACTIONS(5975), + [anon_sym_default] = ACTIONS(5977), + [anon_sym_static] = ACTIONS(5979), + [anon_sym_member] = ACTIONS(5981), + [anon_sym_interface] = ACTIONS(5983), + [anon_sym_abstract] = ACTIONS(5985), + [anon_sym_override] = ACTIONS(5977), + [anon_sym_val] = ACTIONS(5987), + [anon_sym_inherit] = ACTIONS(5989), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5812), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5991), + }, + [3479] = { + [sym_xml_doc] = STATE(3479), + [sym_block_comment] = STATE(3479), + [sym_line_comment] = STATE(3479), + [sym_compiler_directive_decl] = STATE(3479), + [sym_fsi_directive_decl] = STATE(3479), + [sym_preproc_line] = STATE(3479), + [sym_identifier] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_let_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LBRACK_PIPE] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_LT_AT] = ACTIONS(3351), + [anon_sym_LT_AT_AT] = ACTIONS(3353), + [anon_sym_LBRACE_PIPE] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_return_BANG] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_yield_BANG] = ACTIONS(3353), + [anon_sym_lazy] = ACTIONS(3351), + [anon_sym_assert] = ACTIONS(3351), + [anon_sym_upcast] = ACTIONS(3351), + [anon_sym_downcast] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_fun] = ACTIONS(3351), + [anon_sym_DASH_GT] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_match_BANG] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_use_BANG] = ACTIONS(3353), + [anon_sym_do_BANG] = ACTIONS(3353), + [anon_sym_begin] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_LT2] = ACTIONS(3351), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3353), + [aux_sym_char_token1] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_AT_DQUOTE] = ACTIONS(3353), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3353), + [sym_bool] = ACTIONS(3351), + [sym_unit] = ACTIONS(3353), + [anon_sym_LPAREN_PIPE] = ACTIONS(3351), + [sym_op_identifier] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_DOT] = ACTIONS(3353), + [anon_sym_DASH_DOT] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [aux_sym_prefix_op_token1] = ACTIONS(3353), + [sym_int] = ACTIONS(3351), + [sym_xint] = ACTIONS(3353), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3353), + }, + [3480] = { + [sym_xml_doc] = STATE(3480), + [sym_block_comment] = STATE(3480), + [sym_line_comment] = STATE(3480), + [sym_compiler_directive_decl] = STATE(3480), + [sym_fsi_directive_decl] = STATE(3480), + [sym_preproc_line] = STATE(3480), + [aux_sym__function_or_value_defns_repeat1] = STATE(3473), + [sym_identifier] = ACTIONS(5674), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_do] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5997), + [anon_sym_let] = ACTIONS(5674), + [anon_sym_let_BANG] = ACTIONS(5672), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LBRACK_PIPE] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_LT_AT] = ACTIONS(5674), + [anon_sym_LT_AT_AT] = ACTIONS(5672), + [anon_sym_LBRACE_PIPE] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5674), + [anon_sym_return_BANG] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_yield_BANG] = ACTIONS(5672), + [anon_sym_lazy] = ACTIONS(5674), + [anon_sym_assert] = ACTIONS(5674), + [anon_sym_upcast] = ACTIONS(5674), + [anon_sym_downcast] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_fun] = ACTIONS(5674), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_match_BANG] = ACTIONS(5672), + [anon_sym_function] = ACTIONS(5674), + [anon_sym_use] = ACTIONS(5674), + [anon_sym_use_BANG] = ACTIONS(5672), + [anon_sym_do_BANG] = ACTIONS(5672), + [anon_sym_begin] = ACTIONS(5674), + [aux_sym_char_token1] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [anon_sym_AT_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [sym_bool] = ACTIONS(5674), + [sym_unit] = ACTIONS(5672), + [anon_sym_LPAREN_PIPE] = ACTIONS(5674), + [sym_op_identifier] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS_DOT] = ACTIONS(5672), + [anon_sym_DASH_DOT] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_AMP_AMP] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5672), + [aux_sym_prefix_op_token1] = ACTIONS(5672), + [sym_int] = ACTIONS(5674), + [sym_xint] = ACTIONS(5672), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5672), + [anon_sym_POUNDendif] = ACTIONS(5672), + [anon_sym_POUNDelse] = ACTIONS(5672), + }, + [3481] = { + [sym_xml_doc] = STATE(3481), + [sym_block_comment] = STATE(3481), + [sym_line_comment] = STATE(3481), + [sym_compiler_directive_decl] = STATE(3481), + [sym_fsi_directive_decl] = STATE(3481), + [sym_preproc_line] = STATE(3481), + [sym_identifier] = ACTIONS(5699), + [anon_sym_return] = ACTIONS(5699), + [anon_sym_do] = ACTIONS(5699), + [anon_sym_and] = ACTIONS(5699), + [anon_sym_let] = ACTIONS(5699), + [anon_sym_let_BANG] = ACTIONS(5697), + [anon_sym_LPAREN] = ACTIONS(5699), + [anon_sym_null] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_LBRACK_PIPE] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_LT_AT] = ACTIONS(5699), + [anon_sym_LT_AT_AT] = ACTIONS(5697), + [anon_sym_LBRACE_PIPE] = ACTIONS(5697), + [anon_sym_new] = ACTIONS(5699), + [anon_sym_return_BANG] = ACTIONS(5697), + [anon_sym_yield] = ACTIONS(5699), + [anon_sym_yield_BANG] = ACTIONS(5697), + [anon_sym_lazy] = ACTIONS(5699), + [anon_sym_assert] = ACTIONS(5699), + [anon_sym_upcast] = ACTIONS(5699), + [anon_sym_downcast] = ACTIONS(5699), + [anon_sym_for] = ACTIONS(5699), + [anon_sym_while] = ACTIONS(5699), + [anon_sym_if] = ACTIONS(5699), + [anon_sym_fun] = ACTIONS(5699), + [anon_sym_try] = ACTIONS(5699), + [anon_sym_match] = ACTIONS(5699), + [anon_sym_match_BANG] = ACTIONS(5697), + [anon_sym_function] = ACTIONS(5699), + [anon_sym_use] = ACTIONS(5699), + [anon_sym_use_BANG] = ACTIONS(5697), + [anon_sym_do_BANG] = ACTIONS(5697), + [anon_sym_begin] = ACTIONS(5699), + [aux_sym_char_token1] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_AT_DQUOTE] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [sym_bool] = ACTIONS(5699), + [sym_unit] = ACTIONS(5697), + [anon_sym_LPAREN_PIPE] = ACTIONS(5699), + [sym_op_identifier] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_PLUS_DOT] = ACTIONS(5697), + [anon_sym_DASH_DOT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_AMP_AMP] = ACTIONS(5697), + [anon_sym_TILDE] = ACTIONS(5697), + [aux_sym_prefix_op_token1] = ACTIONS(5697), + [sym_int] = ACTIONS(5699), + [sym_xint] = ACTIONS(5697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5697), + [anon_sym_POUNDendif] = ACTIONS(5697), + [anon_sym_POUNDelse] = ACTIONS(5697), + }, + [3482] = { + [sym_xml_doc] = STATE(3482), + [sym_block_comment] = STATE(3482), + [sym_line_comment] = STATE(3482), + [sym_compiler_directive_decl] = STATE(3482), + [sym_fsi_directive_decl] = STATE(3482), + [sym_preproc_line] = STATE(3482), + [sym_identifier] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_and] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3440), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3440), + [anon_sym_DASH_DOT] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3440), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + [anon_sym_POUNDelse] = ACTIONS(3440), + }, + [3483] = { + [sym_xml_doc] = STATE(3483), + [sym_block_comment] = STATE(3483), + [sym_line_comment] = STATE(3483), + [sym_compiler_directive_decl] = STATE(3483), + [sym_fsi_directive_decl] = STATE(3483), + [sym_preproc_line] = STATE(3483), + [sym_identifier] = ACTIONS(5713), + [anon_sym_return] = ACTIONS(5713), + [anon_sym_do] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_let_BANG] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_null] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LBRACK_PIPE] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT_AT] = ACTIONS(5713), + [anon_sym_LT_AT_AT] = ACTIONS(5711), + [anon_sym_LBRACE_PIPE] = ACTIONS(5711), + [anon_sym_new] = ACTIONS(5713), + [anon_sym_return_BANG] = ACTIONS(5711), + [anon_sym_yield] = ACTIONS(5713), + [anon_sym_yield_BANG] = ACTIONS(5711), + [anon_sym_lazy] = ACTIONS(5713), + [anon_sym_assert] = ACTIONS(5713), + [anon_sym_upcast] = ACTIONS(5713), + [anon_sym_downcast] = ACTIONS(5713), + [anon_sym_for] = ACTIONS(5713), + [anon_sym_while] = ACTIONS(5713), + [anon_sym_if] = ACTIONS(5713), + [anon_sym_fun] = ACTIONS(5713), + [anon_sym_try] = ACTIONS(5713), + [anon_sym_match] = ACTIONS(5713), + [anon_sym_match_BANG] = ACTIONS(5711), + [anon_sym_function] = ACTIONS(5713), + [anon_sym_use] = ACTIONS(5713), + [anon_sym_use_BANG] = ACTIONS(5711), + [anon_sym_do_BANG] = ACTIONS(5711), + [anon_sym_begin] = ACTIONS(5713), + [aux_sym_char_token1] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5713), + [anon_sym_DQUOTE] = ACTIONS(5713), + [anon_sym_AT_DQUOTE] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [sym_bool] = ACTIONS(5713), + [sym_unit] = ACTIONS(5711), + [anon_sym_LPAREN_PIPE] = ACTIONS(5713), + [sym_op_identifier] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS_DOT] = ACTIONS(5711), + [anon_sym_DASH_DOT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_TILDE] = ACTIONS(5711), + [aux_sym_prefix_op_token1] = ACTIONS(5711), + [sym_int] = ACTIONS(5713), + [sym_xint] = ACTIONS(5711), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5711), + [anon_sym_POUNDendif] = ACTIONS(5711), + [anon_sym_POUNDelse] = ACTIONS(5711), + }, + [3484] = { + [sym_xml_doc] = STATE(3484), + [sym_block_comment] = STATE(3484), + [sym_line_comment] = STATE(3484), + [sym_compiler_directive_decl] = STATE(3484), + [sym_fsi_directive_decl] = STATE(3484), + [sym_preproc_line] = STATE(3484), + [aux_sym__function_or_value_defns_repeat1] = STATE(3485), + [sym_identifier] = ACTIONS(5674), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_do] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_let] = ACTIONS(5674), + [anon_sym_let_BANG] = ACTIONS(5672), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LBRACK_PIPE] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_LT_AT] = ACTIONS(5674), + [anon_sym_LT_AT_AT] = ACTIONS(5672), + [anon_sym_LBRACE_PIPE] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5674), + [anon_sym_return_BANG] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_yield_BANG] = ACTIONS(5672), + [anon_sym_lazy] = ACTIONS(5674), + [anon_sym_assert] = ACTIONS(5674), + [anon_sym_upcast] = ACTIONS(5674), + [anon_sym_downcast] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_fun] = ACTIONS(5674), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_match_BANG] = ACTIONS(5672), + [anon_sym_function] = ACTIONS(5674), + [anon_sym_use] = ACTIONS(5674), + [anon_sym_use_BANG] = ACTIONS(5672), + [anon_sym_do_BANG] = ACTIONS(5672), + [anon_sym_begin] = ACTIONS(5674), + [aux_sym_char_token1] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [anon_sym_AT_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [sym_bool] = ACTIONS(5674), + [sym_unit] = ACTIONS(5672), + [anon_sym_LPAREN_PIPE] = ACTIONS(5674), + [sym_op_identifier] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS_DOT] = ACTIONS(5672), + [anon_sym_DASH_DOT] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_AMP_AMP] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5672), + [aux_sym_prefix_op_token1] = ACTIONS(5672), + [sym_int] = ACTIONS(5674), + [sym_xint] = ACTIONS(5672), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5672), + [anon_sym_POUNDendif] = ACTIONS(5672), + }, + [3485] = { + [sym_xml_doc] = STATE(3485), + [sym_block_comment] = STATE(3485), + [sym_line_comment] = STATE(3485), + [sym_compiler_directive_decl] = STATE(3485), + [sym_fsi_directive_decl] = STATE(3485), + [sym_preproc_line] = STATE(3485), + [aux_sym__function_or_value_defns_repeat1] = STATE(3485), + [sym_identifier] = ACTIONS(5660), + [anon_sym_return] = ACTIONS(5660), + [anon_sym_do] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(6008), + [anon_sym_let] = ACTIONS(5660), + [anon_sym_let_BANG] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_null] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5660), + [anon_sym_LBRACK_PIPE] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5660), + [anon_sym_LT_AT] = ACTIONS(5660), + [anon_sym_LT_AT_AT] = ACTIONS(5658), + [anon_sym_LBRACE_PIPE] = ACTIONS(5658), + [anon_sym_new] = ACTIONS(5660), + [anon_sym_return_BANG] = ACTIONS(5658), + [anon_sym_yield] = ACTIONS(5660), + [anon_sym_yield_BANG] = ACTIONS(5658), + [anon_sym_lazy] = ACTIONS(5660), + [anon_sym_assert] = ACTIONS(5660), + [anon_sym_upcast] = ACTIONS(5660), + [anon_sym_downcast] = ACTIONS(5660), + [anon_sym_for] = ACTIONS(5660), + [anon_sym_while] = ACTIONS(5660), + [anon_sym_if] = ACTIONS(5660), + [anon_sym_fun] = ACTIONS(5660), + [anon_sym_try] = ACTIONS(5660), + [anon_sym_match] = ACTIONS(5660), + [anon_sym_match_BANG] = ACTIONS(5658), + [anon_sym_function] = ACTIONS(5660), + [anon_sym_use] = ACTIONS(5660), + [anon_sym_use_BANG] = ACTIONS(5658), + [anon_sym_do_BANG] = ACTIONS(5658), + [anon_sym_begin] = ACTIONS(5660), + [aux_sym_char_token1] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(5660), + [anon_sym_AT_DQUOTE] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [sym_bool] = ACTIONS(5660), + [sym_unit] = ACTIONS(5658), + [anon_sym_LPAREN_PIPE] = ACTIONS(5660), + [sym_op_identifier] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS_DOT] = ACTIONS(5658), + [anon_sym_DASH_DOT] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_TILDE] = ACTIONS(5658), + [aux_sym_prefix_op_token1] = ACTIONS(5658), + [sym_int] = ACTIONS(5660), + [sym_xint] = ACTIONS(5658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5658), + [anon_sym_POUNDendif] = ACTIONS(5658), + }, + [3486] = { + [sym_xml_doc] = STATE(3486), + [sym_block_comment] = STATE(3486), + [sym_line_comment] = STATE(3486), + [sym_compiler_directive_decl] = STATE(3486), + [sym_fsi_directive_decl] = STATE(3486), + [sym_preproc_line] = STATE(3486), + [aux_sym__function_or_value_defns_repeat1] = STATE(3484), + [sym_identifier] = ACTIONS(5651), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(6006), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5651), + [anon_sym_assert] = ACTIONS(5651), + [anon_sym_upcast] = ACTIONS(5651), + [anon_sym_downcast] = ACTIONS(5651), + [anon_sym_for] = ACTIONS(5651), + [anon_sym_while] = ACTIONS(5651), + [anon_sym_if] = ACTIONS(5651), + [anon_sym_fun] = ACTIONS(5651), + [anon_sym_try] = ACTIONS(5651), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5649), + [anon_sym_DASH_DOT] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_TILDE] = ACTIONS(5649), + [aux_sym_prefix_op_token1] = ACTIONS(5649), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5649), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5649), + [anon_sym_POUNDendif] = ACTIONS(5649), + }, + [3487] = { + [sym_xml_doc] = STATE(3487), + [sym_block_comment] = STATE(3487), + [sym_line_comment] = STATE(3487), + [sym_compiler_directive_decl] = STATE(3487), + [sym_fsi_directive_decl] = STATE(3487), + [sym_preproc_line] = STATE(3487), + [sym_identifier] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_do] = ACTIONS(5717), + [anon_sym_and] = ACTIONS(5717), + [anon_sym_let] = ACTIONS(5717), + [anon_sym_let_BANG] = ACTIONS(5715), + [anon_sym_LPAREN] = ACTIONS(5717), + [anon_sym_null] = ACTIONS(5717), + [anon_sym_AMP] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5717), + [anon_sym_LBRACK_PIPE] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_LT_AT] = ACTIONS(5717), + [anon_sym_LT_AT_AT] = ACTIONS(5715), + [anon_sym_LBRACE_PIPE] = ACTIONS(5715), + [anon_sym_new] = ACTIONS(5717), + [anon_sym_return_BANG] = ACTIONS(5715), + [anon_sym_yield] = ACTIONS(5717), + [anon_sym_yield_BANG] = ACTIONS(5715), + [anon_sym_lazy] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym_upcast] = ACTIONS(5717), + [anon_sym_downcast] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_fun] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_match_BANG] = ACTIONS(5715), + [anon_sym_function] = ACTIONS(5717), + [anon_sym_use] = ACTIONS(5717), + [anon_sym_use_BANG] = ACTIONS(5715), + [anon_sym_do_BANG] = ACTIONS(5715), + [anon_sym_begin] = ACTIONS(5717), + [aux_sym_char_token1] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5717), + [anon_sym_DQUOTE] = ACTIONS(5717), + [anon_sym_AT_DQUOTE] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [sym_bool] = ACTIONS(5717), + [sym_unit] = ACTIONS(5715), + [anon_sym_LPAREN_PIPE] = ACTIONS(5717), + [sym_op_identifier] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5717), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_PLUS_DOT] = ACTIONS(5715), + [anon_sym_DASH_DOT] = ACTIONS(5715), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_TILDE] = ACTIONS(5715), + [aux_sym_prefix_op_token1] = ACTIONS(5715), + [sym_int] = ACTIONS(5717), + [sym_xint] = ACTIONS(5715), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5715), + [anon_sym_POUNDendif] = ACTIONS(5715), + [anon_sym_POUNDelse] = ACTIONS(5715), + }, + [3488] = { + [sym_xml_doc] = STATE(3488), + [sym_block_comment] = STATE(3488), + [sym_line_comment] = STATE(3488), + [sym_compiler_directive_decl] = STATE(3488), + [sym_fsi_directive_decl] = STATE(3488), + [sym_preproc_line] = STATE(3488), + [sym_identifier] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_let_BANG] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_COMMA] = ACTIONS(3662), + [anon_sym_null] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LBRACK_PIPE] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_LT_AT] = ACTIONS(3660), + [anon_sym_LT_AT_AT] = ACTIONS(3662), + [anon_sym_LBRACE_PIPE] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_return_BANG] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_yield_BANG] = ACTIONS(3662), + [anon_sym_lazy] = ACTIONS(3660), + [anon_sym_assert] = ACTIONS(3660), + [anon_sym_upcast] = ACTIONS(3660), + [anon_sym_downcast] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_fun] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_match_BANG] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_GT] = ACTIONS(3662), + [anon_sym_use] = ACTIONS(3660), + [anon_sym_use_BANG] = ACTIONS(3662), + [anon_sym_do_BANG] = ACTIONS(3662), + [anon_sym_begin] = ACTIONS(3660), + [aux_sym_char_token1] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_AT_DQUOTE] = ACTIONS(3662), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3662), + [sym_bool] = ACTIONS(3660), + [sym_unit] = ACTIONS(3662), + [anon_sym_LPAREN_PIPE] = ACTIONS(3660), + [sym_op_identifier] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS_DOT] = ACTIONS(3662), + [anon_sym_DASH_DOT] = ACTIONS(3662), + [anon_sym_PERCENT] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [aux_sym_prefix_op_token1] = ACTIONS(3662), + [sym_int] = ACTIONS(3660), + [sym_xint] = ACTIONS(3662), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3662), + }, + [3489] = { + [sym_xml_doc] = STATE(3489), + [sym_block_comment] = STATE(3489), + [sym_line_comment] = STATE(3489), + [sym_compiler_directive_decl] = STATE(3489), + [sym_fsi_directive_decl] = STATE(3489), + [sym_preproc_line] = STATE(3489), + [sym_identifier] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_let] = ACTIONS(3726), + [anon_sym_let_BANG] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3726), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_null] = ACTIONS(3726), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_LBRACK_PIPE] = ACTIONS(3728), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_LT_AT] = ACTIONS(3726), + [anon_sym_LT_AT_AT] = ACTIONS(3728), + [anon_sym_LBRACE_PIPE] = ACTIONS(3728), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_return_BANG] = ACTIONS(3728), + [anon_sym_yield] = ACTIONS(3726), + [anon_sym_yield_BANG] = ACTIONS(3728), + [anon_sym_lazy] = ACTIONS(3726), + [anon_sym_assert] = ACTIONS(3726), + [anon_sym_upcast] = ACTIONS(3726), + [anon_sym_downcast] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_fun] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_match] = ACTIONS(3726), + [anon_sym_match_BANG] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(3726), + [anon_sym_GT] = ACTIONS(3728), + [anon_sym_use] = ACTIONS(3726), + [anon_sym_use_BANG] = ACTIONS(3728), + [anon_sym_do_BANG] = ACTIONS(3728), + [anon_sym_begin] = ACTIONS(3726), + [aux_sym_char_token1] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(3726), + [anon_sym_AT_DQUOTE] = ACTIONS(3728), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3728), + [sym_bool] = ACTIONS(3726), + [sym_unit] = ACTIONS(3728), + [anon_sym_LPAREN_PIPE] = ACTIONS(3726), + [sym_op_identifier] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS_DOT] = ACTIONS(3728), + [anon_sym_DASH_DOT] = ACTIONS(3728), + [anon_sym_PERCENT] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [aux_sym_prefix_op_token1] = ACTIONS(3728), + [sym_int] = ACTIONS(3726), + [sym_xint] = ACTIONS(3728), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3728), + }, + [3490] = { + [sym_xml_doc] = STATE(3490), + [sym_block_comment] = STATE(3490), + [sym_line_comment] = STATE(3490), + [sym_compiler_directive_decl] = STATE(3490), + [sym_fsi_directive_decl] = STATE(3490), + [sym_preproc_line] = STATE(3490), + [sym_identifier] = ACTIONS(3794), + [anon_sym_return] = ACTIONS(3794), + [anon_sym_do] = ACTIONS(3794), + [anon_sym_let] = ACTIONS(3794), + [anon_sym_let_BANG] = ACTIONS(3796), + [anon_sym_LPAREN] = ACTIONS(3794), + [anon_sym_COMMA] = ACTIONS(3796), + [anon_sym_null] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LBRACK] = ACTIONS(3794), + [anon_sym_LBRACK_PIPE] = ACTIONS(3796), + [anon_sym_LBRACE] = ACTIONS(3794), + [anon_sym_LT_AT] = ACTIONS(3794), + [anon_sym_LT_AT_AT] = ACTIONS(3796), + [anon_sym_LBRACE_PIPE] = ACTIONS(3796), + [anon_sym_new] = ACTIONS(3794), + [anon_sym_return_BANG] = ACTIONS(3796), + [anon_sym_yield] = ACTIONS(3794), + [anon_sym_yield_BANG] = ACTIONS(3796), + [anon_sym_lazy] = ACTIONS(3794), + [anon_sym_assert] = ACTIONS(3794), + [anon_sym_upcast] = ACTIONS(3794), + [anon_sym_downcast] = ACTIONS(3794), + [anon_sym_for] = ACTIONS(3794), + [anon_sym_while] = ACTIONS(3794), + [anon_sym_if] = ACTIONS(3794), + [anon_sym_fun] = ACTIONS(3794), + [anon_sym_try] = ACTIONS(3794), + [anon_sym_match] = ACTIONS(3794), + [anon_sym_match_BANG] = ACTIONS(3796), + [anon_sym_function] = ACTIONS(3794), + [anon_sym_GT] = ACTIONS(3796), + [anon_sym_use] = ACTIONS(3794), + [anon_sym_use_BANG] = ACTIONS(3796), + [anon_sym_do_BANG] = ACTIONS(3796), + [anon_sym_begin] = ACTIONS(3794), + [aux_sym_char_token1] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3794), + [anon_sym_DQUOTE] = ACTIONS(3794), + [anon_sym_AT_DQUOTE] = ACTIONS(3796), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3796), + [sym_bool] = ACTIONS(3794), + [sym_unit] = ACTIONS(3796), + [anon_sym_LPAREN_PIPE] = ACTIONS(3794), + [sym_op_identifier] = ACTIONS(3796), + [anon_sym_PLUS] = ACTIONS(3794), + [anon_sym_DASH] = ACTIONS(3794), + [anon_sym_PLUS_DOT] = ACTIONS(3796), + [anon_sym_DASH_DOT] = ACTIONS(3796), + [anon_sym_PERCENT] = ACTIONS(3796), + [anon_sym_AMP_AMP] = ACTIONS(3796), + [anon_sym_TILDE] = ACTIONS(3796), + [aux_sym_prefix_op_token1] = ACTIONS(3796), + [sym_int] = ACTIONS(3794), + [sym_xint] = ACTIONS(3796), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3796), + }, + [3491] = { + [sym_xml_doc] = STATE(3491), + [sym_block_comment] = STATE(3491), + [sym_line_comment] = STATE(3491), + [sym_compiler_directive_decl] = STATE(3491), + [sym_fsi_directive_decl] = STATE(3491), + [sym_preproc_line] = STATE(3491), + [sym_identifier] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_BANG] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LBRACK_PIPE] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_LT_AT] = ACTIONS(5868), + [anon_sym_LT_AT_AT] = ACTIONS(5866), + [anon_sym_LBRACE_PIPE] = ACTIONS(5866), + [anon_sym_new] = ACTIONS(5868), + [anon_sym_return_BANG] = ACTIONS(5866), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_yield_BANG] = ACTIONS(5866), + [anon_sym_lazy] = ACTIONS(5868), + [anon_sym_assert] = ACTIONS(5868), + [anon_sym_upcast] = ACTIONS(5868), + [anon_sym_downcast] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_fun] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_match_BANG] = ACTIONS(5866), + [anon_sym_function] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_use_BANG] = ACTIONS(5866), + [anon_sym_do_BANG] = ACTIONS(5866), + [anon_sym_begin] = ACTIONS(5868), + [aux_sym_char_token1] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [anon_sym_AT_DQUOTE] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [sym_bool] = ACTIONS(5868), + [sym_unit] = ACTIONS(5866), + [anon_sym_LPAREN_PIPE] = ACTIONS(5868), + [sym_op_identifier] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_PLUS_DOT] = ACTIONS(5866), + [anon_sym_DASH_DOT] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [aux_sym_prefix_op_token1] = ACTIONS(5866), + [sym_int] = ACTIONS(5868), + [sym_xint] = ACTIONS(5866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5866), + [anon_sym_POUNDendif] = ACTIONS(5866), + [anon_sym_POUNDelse] = ACTIONS(5866), + }, + [3492] = { + [sym_xml_doc] = STATE(3492), + [sym_block_comment] = STATE(3492), + [sym_line_comment] = STATE(3492), + [sym_compiler_directive_decl] = STATE(3492), + [sym_fsi_directive_decl] = STATE(3492), + [sym_preproc_line] = STATE(3492), + [sym_identifier] = ACTIONS(3701), + [anon_sym_return] = ACTIONS(3701), + [anon_sym_do] = ACTIONS(3701), + [anon_sym_let] = ACTIONS(3701), + [anon_sym_let_BANG] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_COMMA] = ACTIONS(3703), + [anon_sym_null] = ACTIONS(3701), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_LBRACK_PIPE] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_LT_AT] = ACTIONS(3701), + [anon_sym_LT_AT_AT] = ACTIONS(3703), + [anon_sym_LBRACE_PIPE] = ACTIONS(3703), + [anon_sym_new] = ACTIONS(3701), + [anon_sym_return_BANG] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3701), + [anon_sym_yield_BANG] = ACTIONS(3703), + [anon_sym_lazy] = ACTIONS(3701), + [anon_sym_assert] = ACTIONS(3701), + [anon_sym_upcast] = ACTIONS(3701), + [anon_sym_downcast] = ACTIONS(3701), + [anon_sym_for] = ACTIONS(3701), + [anon_sym_while] = ACTIONS(3701), + [anon_sym_if] = ACTIONS(3701), + [anon_sym_fun] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3701), + [anon_sym_match] = ACTIONS(3701), + [anon_sym_match_BANG] = ACTIONS(3703), + [anon_sym_function] = ACTIONS(3701), + [anon_sym_GT] = ACTIONS(3703), + [anon_sym_use] = ACTIONS(3701), + [anon_sym_use_BANG] = ACTIONS(3703), + [anon_sym_do_BANG] = ACTIONS(3703), + [anon_sym_begin] = ACTIONS(3701), + [aux_sym_char_token1] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [anon_sym_AT_DQUOTE] = ACTIONS(3703), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3703), + [sym_bool] = ACTIONS(3701), + [sym_unit] = ACTIONS(3703), + [anon_sym_LPAREN_PIPE] = ACTIONS(3701), + [sym_op_identifier] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_PLUS_DOT] = ACTIONS(3703), + [anon_sym_DASH_DOT] = ACTIONS(3703), + [anon_sym_PERCENT] = ACTIONS(3703), + [anon_sym_AMP_AMP] = ACTIONS(3703), + [anon_sym_TILDE] = ACTIONS(3703), + [aux_sym_prefix_op_token1] = ACTIONS(3703), + [sym_int] = ACTIONS(3701), + [sym_xint] = ACTIONS(3703), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3703), + }, + [3493] = { + [sym_xml_doc] = STATE(3493), + [sym_block_comment] = STATE(3493), + [sym_line_comment] = STATE(3493), + [sym_compiler_directive_decl] = STATE(3493), + [sym_fsi_directive_decl] = STATE(3493), + [sym_preproc_line] = STATE(3493), + [sym_identifier] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_let_BANG] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3600), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LBRACK_PIPE] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_LT_AT] = ACTIONS(3598), + [anon_sym_LT_AT_AT] = ACTIONS(3600), + [anon_sym_LBRACE_PIPE] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_return_BANG] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_yield_BANG] = ACTIONS(3600), + [anon_sym_lazy] = ACTIONS(3598), + [anon_sym_assert] = ACTIONS(3598), + [anon_sym_upcast] = ACTIONS(3598), + [anon_sym_downcast] = ACTIONS(3598), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_fun] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_match] = ACTIONS(3598), + [anon_sym_match_BANG] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_GT] = ACTIONS(3600), + [anon_sym_use] = ACTIONS(3598), + [anon_sym_use_BANG] = ACTIONS(3600), + [anon_sym_do_BANG] = ACTIONS(3600), + [anon_sym_begin] = ACTIONS(3598), + [aux_sym_char_token1] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_AT_DQUOTE] = ACTIONS(3600), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3600), + [sym_bool] = ACTIONS(3598), + [sym_unit] = ACTIONS(3600), + [anon_sym_LPAREN_PIPE] = ACTIONS(3598), + [sym_op_identifier] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_PLUS_DOT] = ACTIONS(3600), + [anon_sym_DASH_DOT] = ACTIONS(3600), + [anon_sym_PERCENT] = ACTIONS(3600), + [anon_sym_AMP_AMP] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [aux_sym_prefix_op_token1] = ACTIONS(3600), + [sym_int] = ACTIONS(3598), + [sym_xint] = ACTIONS(3600), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3600), + }, + [3494] = { + [sym_xml_doc] = STATE(3494), + [sym_block_comment] = STATE(3494), + [sym_line_comment] = STATE(3494), + [sym_compiler_directive_decl] = STATE(3494), + [sym_fsi_directive_decl] = STATE(3494), + [sym_preproc_line] = STATE(3494), + [sym_identifier] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_and] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3440), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3440), + [anon_sym_DASH_DOT] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3440), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + [anon_sym_POUNDendif] = ACTIONS(3440), + }, + [3495] = { + [sym_xml_doc] = STATE(3495), + [sym_block_comment] = STATE(3495), + [sym_line_comment] = STATE(3495), + [sym_compiler_directive_decl] = STATE(3495), + [sym_fsi_directive_decl] = STATE(3495), + [sym_preproc_line] = STATE(3495), + [sym_identifier] = ACTIONS(5860), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_let] = ACTIONS(5860), + [anon_sym_let_BANG] = ACTIONS(5858), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_LBRACK_PIPE] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5860), + [anon_sym_LT_AT] = ACTIONS(5860), + [anon_sym_LT_AT_AT] = ACTIONS(5858), + [anon_sym_LBRACE_PIPE] = ACTIONS(5858), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_return_BANG] = ACTIONS(5858), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_yield_BANG] = ACTIONS(5858), + [anon_sym_lazy] = ACTIONS(5860), + [anon_sym_assert] = ACTIONS(5860), + [anon_sym_upcast] = ACTIONS(5860), + [anon_sym_downcast] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_fun] = ACTIONS(5860), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_match_BANG] = ACTIONS(5858), + [anon_sym_function] = ACTIONS(5860), + [anon_sym_use] = ACTIONS(5860), + [anon_sym_use_BANG] = ACTIONS(5858), + [anon_sym_do_BANG] = ACTIONS(5858), + [anon_sym_begin] = ACTIONS(5860), + [aux_sym_char_token1] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(5860), + [anon_sym_AT_DQUOTE] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [sym_bool] = ACTIONS(5860), + [sym_unit] = ACTIONS(5858), + [anon_sym_LPAREN_PIPE] = ACTIONS(5860), + [sym_op_identifier] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_PLUS_DOT] = ACTIONS(5858), + [anon_sym_DASH_DOT] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [aux_sym_prefix_op_token1] = ACTIONS(5858), + [sym_int] = ACTIONS(5860), + [sym_xint] = ACTIONS(5858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5858), + [anon_sym_POUNDendif] = ACTIONS(5858), + [anon_sym_POUNDelse] = ACTIONS(5858), + }, + [3496] = { + [sym_xml_doc] = STATE(3496), + [sym_block_comment] = STATE(3496), + [sym_line_comment] = STATE(3496), + [sym_compiler_directive_decl] = STATE(3496), + [sym_fsi_directive_decl] = STATE(3496), + [sym_preproc_line] = STATE(3496), + [aux_sym__function_or_value_defns_repeat1] = STATE(3513), + [sym_identifier] = ACTIONS(5674), + [anon_sym_return] = ACTIONS(5674), + [anon_sym_do] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_let] = ACTIONS(5674), + [anon_sym_let_BANG] = ACTIONS(5672), + [anon_sym_LPAREN] = ACTIONS(5674), + [anon_sym_null] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5674), + [anon_sym_LBRACK_PIPE] = ACTIONS(5672), + [anon_sym_LBRACE] = ACTIONS(5674), + [anon_sym_LT_AT] = ACTIONS(5674), + [anon_sym_LT_AT_AT] = ACTIONS(5672), + [anon_sym_LBRACE_PIPE] = ACTIONS(5672), + [anon_sym_new] = ACTIONS(5674), + [anon_sym_return_BANG] = ACTIONS(5672), + [anon_sym_yield] = ACTIONS(5674), + [anon_sym_yield_BANG] = ACTIONS(5672), + [anon_sym_lazy] = ACTIONS(5674), + [anon_sym_assert] = ACTIONS(5674), + [anon_sym_upcast] = ACTIONS(5674), + [anon_sym_downcast] = ACTIONS(5674), + [anon_sym_for] = ACTIONS(5674), + [anon_sym_while] = ACTIONS(5674), + [anon_sym_if] = ACTIONS(5674), + [anon_sym_fun] = ACTIONS(5674), + [anon_sym_try] = ACTIONS(5674), + [anon_sym_match] = ACTIONS(5674), + [anon_sym_match_BANG] = ACTIONS(5672), + [anon_sym_function] = ACTIONS(5674), + [anon_sym_use] = ACTIONS(5674), + [anon_sym_use_BANG] = ACTIONS(5672), + [anon_sym_do_BANG] = ACTIONS(5672), + [anon_sym_begin] = ACTIONS(5674), + [aux_sym_char_token1] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5674), + [anon_sym_DQUOTE] = ACTIONS(5674), + [anon_sym_AT_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5672), + [sym_bool] = ACTIONS(5674), + [sym_unit] = ACTIONS(5672), + [anon_sym_LPAREN_PIPE] = ACTIONS(5674), + [sym_op_identifier] = ACTIONS(5672), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS_DOT] = ACTIONS(5672), + [anon_sym_DASH_DOT] = ACTIONS(5672), + [anon_sym_PERCENT] = ACTIONS(5672), + [anon_sym_AMP_AMP] = ACTIONS(5672), + [anon_sym_TILDE] = ACTIONS(5672), + [aux_sym_prefix_op_token1] = ACTIONS(5672), + [sym_int] = ACTIONS(5674), + [sym_xint] = ACTIONS(5672), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5672), + }, + [3497] = { + [sym_xml_doc] = STATE(3497), + [sym_block_comment] = STATE(3497), + [sym_line_comment] = STATE(3497), + [sym_compiler_directive_decl] = STATE(3497), + [sym_fsi_directive_decl] = STATE(3497), + [sym_preproc_line] = STATE(3497), + [sym_identifier] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_let_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_COMMA] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACK_PIPE] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_LT_AT] = ACTIONS(2768), + [anon_sym_LT_AT_AT] = ACTIONS(2770), + [anon_sym_LBRACE_PIPE] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_return_BANG] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_yield_BANG] = ACTIONS(2770), + [anon_sym_lazy] = ACTIONS(2768), + [anon_sym_assert] = ACTIONS(2768), + [anon_sym_upcast] = ACTIONS(2768), + [anon_sym_downcast] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_fun] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_match_BANG] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_use_BANG] = ACTIONS(2770), + [anon_sym_do_BANG] = ACTIONS(2770), + [anon_sym_begin] = ACTIONS(2768), + [aux_sym_char_token1] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_AT_DQUOTE] = ACTIONS(2770), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2770), + [sym_bool] = ACTIONS(2768), + [sym_unit] = ACTIONS(2770), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_op_identifier] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_PLUS_DOT] = ACTIONS(2770), + [anon_sym_DASH_DOT] = ACTIONS(2770), + [anon_sym_PERCENT] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [aux_sym_prefix_op_token1] = ACTIONS(2770), + [sym_int] = ACTIONS(2768), + [sym_xint] = ACTIONS(2770), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(2770), + }, + [3498] = { + [sym_xml_doc] = STATE(3498), + [sym_block_comment] = STATE(3498), + [sym_line_comment] = STATE(3498), + [sym_compiler_directive_decl] = STATE(3498), + [sym_fsi_directive_decl] = STATE(3498), + [sym_preproc_line] = STATE(3498), + [sym_identifier] = ACTIONS(3585), + [anon_sym_return] = ACTIONS(3585), + [anon_sym_do] = ACTIONS(3585), + [anon_sym_let] = ACTIONS(3585), + [anon_sym_let_BANG] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_COMMA] = ACTIONS(3587), + [anon_sym_null] = ACTIONS(3585), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_LBRACK_PIPE] = ACTIONS(3587), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_LT_AT] = ACTIONS(3585), + [anon_sym_LT_AT_AT] = ACTIONS(3587), + [anon_sym_LBRACE_PIPE] = ACTIONS(3587), + [anon_sym_new] = ACTIONS(3585), + [anon_sym_return_BANG] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3585), + [anon_sym_yield_BANG] = ACTIONS(3587), + [anon_sym_lazy] = ACTIONS(3585), + [anon_sym_assert] = ACTIONS(3585), + [anon_sym_upcast] = ACTIONS(3585), + [anon_sym_downcast] = ACTIONS(3585), + [anon_sym_for] = ACTIONS(3585), + [anon_sym_while] = ACTIONS(3585), + [anon_sym_if] = ACTIONS(3585), + [anon_sym_fun] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3585), + [anon_sym_match] = ACTIONS(3585), + [anon_sym_match_BANG] = ACTIONS(3587), + [anon_sym_function] = ACTIONS(3585), + [anon_sym_GT] = ACTIONS(3587), + [anon_sym_use] = ACTIONS(3585), + [anon_sym_use_BANG] = ACTIONS(3587), + [anon_sym_do_BANG] = ACTIONS(3587), + [anon_sym_begin] = ACTIONS(3585), + [aux_sym_char_token1] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_AT_DQUOTE] = ACTIONS(3587), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3587), + [sym_bool] = ACTIONS(3585), + [sym_unit] = ACTIONS(3587), + [anon_sym_LPAREN_PIPE] = ACTIONS(3585), + [sym_op_identifier] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_PLUS_DOT] = ACTIONS(3587), + [anon_sym_DASH_DOT] = ACTIONS(3587), + [anon_sym_PERCENT] = ACTIONS(3587), + [anon_sym_AMP_AMP] = ACTIONS(3587), + [anon_sym_TILDE] = ACTIONS(3587), + [aux_sym_prefix_op_token1] = ACTIONS(3587), + [sym_int] = ACTIONS(3585), + [sym_xint] = ACTIONS(3587), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3587), + }, + [3499] = { + [sym_xml_doc] = STATE(3499), + [sym_block_comment] = STATE(3499), + [sym_line_comment] = STATE(3499), + [sym_compiler_directive_decl] = STATE(3499), + [sym_fsi_directive_decl] = STATE(3499), + [sym_preproc_line] = STATE(3499), + [sym_identifier] = ACTIONS(3840), + [anon_sym_return] = ACTIONS(3840), + [anon_sym_do] = ACTIONS(3840), + [anon_sym_let] = ACTIONS(3840), + [anon_sym_let_BANG] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_null] = ACTIONS(3840), + [anon_sym_AMP] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3840), + [anon_sym_LBRACK_PIPE] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3840), + [anon_sym_LT_AT] = ACTIONS(3840), + [anon_sym_LT_AT_AT] = ACTIONS(3842), + [anon_sym_LBRACE_PIPE] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3840), + [anon_sym_return_BANG] = ACTIONS(3842), + [anon_sym_yield] = ACTIONS(3840), + [anon_sym_yield_BANG] = ACTIONS(3842), + [anon_sym_lazy] = ACTIONS(3840), + [anon_sym_assert] = ACTIONS(3840), + [anon_sym_upcast] = ACTIONS(3840), + [anon_sym_downcast] = ACTIONS(3840), + [anon_sym_for] = ACTIONS(3840), + [anon_sym_while] = ACTIONS(3840), + [anon_sym_if] = ACTIONS(3840), + [anon_sym_fun] = ACTIONS(3840), + [anon_sym_try] = ACTIONS(3840), + [anon_sym_match] = ACTIONS(3840), + [anon_sym_match_BANG] = ACTIONS(3842), + [anon_sym_function] = ACTIONS(3840), + [anon_sym_GT] = ACTIONS(3842), + [anon_sym_use] = ACTIONS(3840), + [anon_sym_use_BANG] = ACTIONS(3842), + [anon_sym_do_BANG] = ACTIONS(3842), + [anon_sym_begin] = ACTIONS(3840), + [aux_sym_char_token1] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3840), + [anon_sym_DQUOTE] = ACTIONS(3840), + [anon_sym_AT_DQUOTE] = ACTIONS(3842), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3842), + [sym_bool] = ACTIONS(3840), + [sym_unit] = ACTIONS(3842), + [anon_sym_LPAREN_PIPE] = ACTIONS(3840), + [sym_op_identifier] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3840), + [anon_sym_DASH] = ACTIONS(3840), + [anon_sym_PLUS_DOT] = ACTIONS(3842), + [anon_sym_DASH_DOT] = ACTIONS(3842), + [anon_sym_PERCENT] = ACTIONS(3842), + [anon_sym_AMP_AMP] = ACTIONS(3842), + [anon_sym_TILDE] = ACTIONS(3842), + [aux_sym_prefix_op_token1] = ACTIONS(3842), + [sym_int] = ACTIONS(3840), + [sym_xint] = ACTIONS(3842), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3842), + }, + [3500] = { + [sym_xml_doc] = STATE(3500), + [sym_block_comment] = STATE(3500), + [sym_line_comment] = STATE(3500), + [sym_compiler_directive_decl] = STATE(3500), + [sym_fsi_directive_decl] = STATE(3500), + [sym_preproc_line] = STATE(3500), + [sym_identifier] = ACTIONS(3581), + [anon_sym_return] = ACTIONS(3581), + [anon_sym_do] = ACTIONS(3581), + [anon_sym_let] = ACTIONS(3581), + [anon_sym_let_BANG] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_COMMA] = ACTIONS(3583), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_LBRACK_PIPE] = ACTIONS(3583), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_LT_AT] = ACTIONS(3581), + [anon_sym_LT_AT_AT] = ACTIONS(3583), + [anon_sym_LBRACE_PIPE] = ACTIONS(3583), + [anon_sym_new] = ACTIONS(3581), + [anon_sym_return_BANG] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3581), + [anon_sym_yield_BANG] = ACTIONS(3583), + [anon_sym_lazy] = ACTIONS(3581), + [anon_sym_assert] = ACTIONS(3581), + [anon_sym_upcast] = ACTIONS(3581), + [anon_sym_downcast] = ACTIONS(3581), + [anon_sym_for] = ACTIONS(3581), + [anon_sym_while] = ACTIONS(3581), + [anon_sym_if] = ACTIONS(3581), + [anon_sym_fun] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3581), + [anon_sym_match] = ACTIONS(3581), + [anon_sym_match_BANG] = ACTIONS(3583), + [anon_sym_function] = ACTIONS(3581), + [anon_sym_GT] = ACTIONS(3583), + [anon_sym_use] = ACTIONS(3581), + [anon_sym_use_BANG] = ACTIONS(3583), + [anon_sym_do_BANG] = ACTIONS(3583), + [anon_sym_begin] = ACTIONS(3581), + [aux_sym_char_token1] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_AT_DQUOTE] = ACTIONS(3583), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3583), + [sym_bool] = ACTIONS(3581), + [sym_unit] = ACTIONS(3583), + [anon_sym_LPAREN_PIPE] = ACTIONS(3581), + [sym_op_identifier] = ACTIONS(3583), + [anon_sym_PLUS] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_PLUS_DOT] = ACTIONS(3583), + [anon_sym_DASH_DOT] = ACTIONS(3583), + [anon_sym_PERCENT] = ACTIONS(3583), + [anon_sym_AMP_AMP] = ACTIONS(3583), + [anon_sym_TILDE] = ACTIONS(3583), + [aux_sym_prefix_op_token1] = ACTIONS(3583), + [sym_int] = ACTIONS(3581), + [sym_xint] = ACTIONS(3583), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3583), + }, + [3501] = { + [sym_xml_doc] = STATE(3501), + [sym_block_comment] = STATE(3501), + [sym_line_comment] = STATE(3501), + [sym_compiler_directive_decl] = STATE(3501), + [sym_fsi_directive_decl] = STATE(3501), + [sym_preproc_line] = STATE(3501), + [sym_identifier] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_let] = ACTIONS(3774), + [anon_sym_let_BANG] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_null] = ACTIONS(3774), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_LBRACK_PIPE] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_LT_AT] = ACTIONS(3774), + [anon_sym_LT_AT_AT] = ACTIONS(3776), + [anon_sym_LBRACE_PIPE] = ACTIONS(3776), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_return_BANG] = ACTIONS(3776), + [anon_sym_yield] = ACTIONS(3774), + [anon_sym_yield_BANG] = ACTIONS(3776), + [anon_sym_lazy] = ACTIONS(3774), + [anon_sym_assert] = ACTIONS(3774), + [anon_sym_upcast] = ACTIONS(3774), + [anon_sym_downcast] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_fun] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_match] = ACTIONS(3774), + [anon_sym_match_BANG] = ACTIONS(3776), + [anon_sym_function] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3776), + [anon_sym_use] = ACTIONS(3774), + [anon_sym_use_BANG] = ACTIONS(3776), + [anon_sym_do_BANG] = ACTIONS(3776), + [anon_sym_begin] = ACTIONS(3774), + [aux_sym_char_token1] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3774), + [anon_sym_DQUOTE] = ACTIONS(3774), + [anon_sym_AT_DQUOTE] = ACTIONS(3776), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3776), + [sym_bool] = ACTIONS(3774), + [sym_unit] = ACTIONS(3776), + [anon_sym_LPAREN_PIPE] = ACTIONS(3774), + [sym_op_identifier] = ACTIONS(3776), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS_DOT] = ACTIONS(3776), + [anon_sym_DASH_DOT] = ACTIONS(3776), + [anon_sym_PERCENT] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [aux_sym_prefix_op_token1] = ACTIONS(3776), + [sym_int] = ACTIONS(3774), + [sym_xint] = ACTIONS(3776), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3776), + }, + [3502] = { + [sym_xml_doc] = STATE(3502), + [sym_block_comment] = STATE(3502), + [sym_line_comment] = STATE(3502), + [sym_compiler_directive_decl] = STATE(3502), + [sym_fsi_directive_decl] = STATE(3502), + [sym_preproc_line] = STATE(3502), + [aux_sym__function_or_value_defns_repeat1] = STATE(3496), + [sym_identifier] = ACTIONS(5651), + [anon_sym_return] = ACTIONS(5651), + [anon_sym_do] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(6011), + [anon_sym_let] = ACTIONS(5651), + [anon_sym_let_BANG] = ACTIONS(5649), + [anon_sym_LPAREN] = ACTIONS(5651), + [anon_sym_null] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5651), + [anon_sym_LBRACK_PIPE] = ACTIONS(5649), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_LT_AT] = ACTIONS(5651), + [anon_sym_LT_AT_AT] = ACTIONS(5649), + [anon_sym_LBRACE_PIPE] = ACTIONS(5649), + [anon_sym_new] = ACTIONS(5651), + [anon_sym_return_BANG] = ACTIONS(5649), + [anon_sym_yield] = ACTIONS(5651), + [anon_sym_yield_BANG] = ACTIONS(5649), + [anon_sym_lazy] = ACTIONS(5651), + [anon_sym_assert] = ACTIONS(5651), + [anon_sym_upcast] = ACTIONS(5651), + [anon_sym_downcast] = ACTIONS(5651), + [anon_sym_for] = ACTIONS(5651), + [anon_sym_while] = ACTIONS(5651), + [anon_sym_if] = ACTIONS(5651), + [anon_sym_fun] = ACTIONS(5651), + [anon_sym_try] = ACTIONS(5651), + [anon_sym_match] = ACTIONS(5651), + [anon_sym_match_BANG] = ACTIONS(5649), + [anon_sym_function] = ACTIONS(5651), + [anon_sym_use] = ACTIONS(5651), + [anon_sym_use_BANG] = ACTIONS(5649), + [anon_sym_do_BANG] = ACTIONS(5649), + [anon_sym_begin] = ACTIONS(5651), + [aux_sym_char_token1] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5651), + [anon_sym_DQUOTE] = ACTIONS(5651), + [anon_sym_AT_DQUOTE] = ACTIONS(5649), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5649), + [sym_bool] = ACTIONS(5651), + [sym_unit] = ACTIONS(5649), + [anon_sym_LPAREN_PIPE] = ACTIONS(5651), + [sym_op_identifier] = ACTIONS(5649), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS_DOT] = ACTIONS(5649), + [anon_sym_DASH_DOT] = ACTIONS(5649), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_TILDE] = ACTIONS(5649), + [aux_sym_prefix_op_token1] = ACTIONS(5649), + [sym_int] = ACTIONS(5651), + [sym_xint] = ACTIONS(5649), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5649), + }, + [3503] = { + [sym_xml_doc] = STATE(3503), + [sym_block_comment] = STATE(3503), + [sym_line_comment] = STATE(3503), + [sym_compiler_directive_decl] = STATE(3503), + [sym_fsi_directive_decl] = STATE(3503), + [sym_preproc_line] = STATE(3503), + [sym_identifier] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_let_BANG] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LBRACK_PIPE] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_LT_AT] = ACTIONS(3602), + [anon_sym_LT_AT_AT] = ACTIONS(3604), + [anon_sym_LBRACE_PIPE] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_return_BANG] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_yield_BANG] = ACTIONS(3604), + [anon_sym_lazy] = ACTIONS(3602), + [anon_sym_assert] = ACTIONS(3602), + [anon_sym_upcast] = ACTIONS(3602), + [anon_sym_downcast] = ACTIONS(3602), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_fun] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_match_BANG] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_GT] = ACTIONS(3604), + [anon_sym_use] = ACTIONS(3602), + [anon_sym_use_BANG] = ACTIONS(3604), + [anon_sym_do_BANG] = ACTIONS(3604), + [anon_sym_begin] = ACTIONS(3602), + [aux_sym_char_token1] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_AT_DQUOTE] = ACTIONS(3604), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3604), + [sym_bool] = ACTIONS(3602), + [sym_unit] = ACTIONS(3604), + [anon_sym_LPAREN_PIPE] = ACTIONS(3602), + [sym_op_identifier] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_PLUS_DOT] = ACTIONS(3604), + [anon_sym_DASH_DOT] = ACTIONS(3604), + [anon_sym_PERCENT] = ACTIONS(3604), + [anon_sym_AMP_AMP] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [aux_sym_prefix_op_token1] = ACTIONS(3604), + [sym_int] = ACTIONS(3602), + [sym_xint] = ACTIONS(3604), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3604), + }, + [3504] = { + [sym_xml_doc] = STATE(3504), + [sym_block_comment] = STATE(3504), + [sym_line_comment] = STATE(3504), + [sym_compiler_directive_decl] = STATE(3504), + [sym_fsi_directive_decl] = STATE(3504), + [sym_preproc_line] = STATE(3504), + [sym_identifier] = ACTIONS(5699), + [anon_sym_return] = ACTIONS(5699), + [anon_sym_do] = ACTIONS(5699), + [anon_sym_and] = ACTIONS(5699), + [anon_sym_let] = ACTIONS(5699), + [anon_sym_let_BANG] = ACTIONS(5697), + [anon_sym_LPAREN] = ACTIONS(5699), + [anon_sym_null] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_LBRACK_PIPE] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_LT_AT] = ACTIONS(5699), + [anon_sym_LT_AT_AT] = ACTIONS(5697), + [anon_sym_LBRACE_PIPE] = ACTIONS(5697), + [anon_sym_new] = ACTIONS(5699), + [anon_sym_return_BANG] = ACTIONS(5697), + [anon_sym_yield] = ACTIONS(5699), + [anon_sym_yield_BANG] = ACTIONS(5697), + [anon_sym_lazy] = ACTIONS(5699), + [anon_sym_assert] = ACTIONS(5699), + [anon_sym_upcast] = ACTIONS(5699), + [anon_sym_downcast] = ACTIONS(5699), + [anon_sym_for] = ACTIONS(5699), + [anon_sym_while] = ACTIONS(5699), + [anon_sym_if] = ACTIONS(5699), + [anon_sym_fun] = ACTIONS(5699), + [anon_sym_try] = ACTIONS(5699), + [anon_sym_match] = ACTIONS(5699), + [anon_sym_match_BANG] = ACTIONS(5697), + [anon_sym_function] = ACTIONS(5699), + [anon_sym_use] = ACTIONS(5699), + [anon_sym_use_BANG] = ACTIONS(5697), + [anon_sym_do_BANG] = ACTIONS(5697), + [anon_sym_begin] = ACTIONS(5699), + [aux_sym_char_token1] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_AT_DQUOTE] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [sym_bool] = ACTIONS(5699), + [sym_unit] = ACTIONS(5697), + [anon_sym_LPAREN_PIPE] = ACTIONS(5699), + [sym_op_identifier] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_PLUS_DOT] = ACTIONS(5697), + [anon_sym_DASH_DOT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_AMP_AMP] = ACTIONS(5697), + [anon_sym_TILDE] = ACTIONS(5697), + [aux_sym_prefix_op_token1] = ACTIONS(5697), + [sym_int] = ACTIONS(5699), + [sym_xint] = ACTIONS(5697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5697), + [anon_sym_POUNDendif] = ACTIONS(5697), + }, + [3505] = { + [sym_xml_doc] = STATE(3505), + [sym_block_comment] = STATE(3505), + [sym_line_comment] = STATE(3505), + [sym_compiler_directive_decl] = STATE(3505), + [sym_fsi_directive_decl] = STATE(3505), + [sym_preproc_line] = STATE(3505), + [sym_identifier] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_let_BANG] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_COMMA] = ACTIONS(3618), + [anon_sym_null] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LBRACK_PIPE] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_LT_AT] = ACTIONS(3616), + [anon_sym_LT_AT_AT] = ACTIONS(3618), + [anon_sym_LBRACE_PIPE] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_return_BANG] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_yield_BANG] = ACTIONS(3618), + [anon_sym_lazy] = ACTIONS(3616), + [anon_sym_assert] = ACTIONS(3616), + [anon_sym_upcast] = ACTIONS(3616), + [anon_sym_downcast] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_fun] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_match] = ACTIONS(3616), + [anon_sym_match_BANG] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_GT] = ACTIONS(3618), + [anon_sym_use] = ACTIONS(3616), + [anon_sym_use_BANG] = ACTIONS(3618), + [anon_sym_do_BANG] = ACTIONS(3618), + [anon_sym_begin] = ACTIONS(3616), + [aux_sym_char_token1] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_AT_DQUOTE] = ACTIONS(3618), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3618), + [sym_bool] = ACTIONS(3616), + [sym_unit] = ACTIONS(3618), + [anon_sym_LPAREN_PIPE] = ACTIONS(3616), + [sym_op_identifier] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS_DOT] = ACTIONS(3618), + [anon_sym_DASH_DOT] = ACTIONS(3618), + [anon_sym_PERCENT] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [aux_sym_prefix_op_token1] = ACTIONS(3618), + [sym_int] = ACTIONS(3616), + [sym_xint] = ACTIONS(3618), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3618), + }, + [3506] = { + [sym_xml_doc] = STATE(3506), + [sym_block_comment] = STATE(3506), + [sym_line_comment] = STATE(3506), + [sym_compiler_directive_decl] = STATE(3506), + [sym_fsi_directive_decl] = STATE(3506), + [sym_preproc_line] = STATE(3506), + [sym_identifier] = ACTIONS(3802), + [anon_sym_return] = ACTIONS(3802), + [anon_sym_do] = ACTIONS(3802), + [anon_sym_let] = ACTIONS(3802), + [anon_sym_let_BANG] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3802), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_null] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_LBRACK_PIPE] = ACTIONS(3804), + [anon_sym_LBRACE] = ACTIONS(3802), + [anon_sym_LT_AT] = ACTIONS(3802), + [anon_sym_LT_AT_AT] = ACTIONS(3804), + [anon_sym_LBRACE_PIPE] = ACTIONS(3804), + [anon_sym_new] = ACTIONS(3802), + [anon_sym_return_BANG] = ACTIONS(3804), + [anon_sym_yield] = ACTIONS(3802), + [anon_sym_yield_BANG] = ACTIONS(3804), + [anon_sym_lazy] = ACTIONS(3802), + [anon_sym_assert] = ACTIONS(3802), + [anon_sym_upcast] = ACTIONS(3802), + [anon_sym_downcast] = ACTIONS(3802), + [anon_sym_for] = ACTIONS(3802), + [anon_sym_while] = ACTIONS(3802), + [anon_sym_if] = ACTIONS(3802), + [anon_sym_fun] = ACTIONS(3802), + [anon_sym_try] = ACTIONS(3802), + [anon_sym_match] = ACTIONS(3802), + [anon_sym_match_BANG] = ACTIONS(3804), + [anon_sym_function] = ACTIONS(3802), + [anon_sym_GT] = ACTIONS(3804), + [anon_sym_use] = ACTIONS(3802), + [anon_sym_use_BANG] = ACTIONS(3804), + [anon_sym_do_BANG] = ACTIONS(3804), + [anon_sym_begin] = ACTIONS(3802), + [aux_sym_char_token1] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3802), + [anon_sym_DQUOTE] = ACTIONS(3802), + [anon_sym_AT_DQUOTE] = ACTIONS(3804), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3804), + [sym_bool] = ACTIONS(3802), + [sym_unit] = ACTIONS(3804), + [anon_sym_LPAREN_PIPE] = ACTIONS(3802), + [sym_op_identifier] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3802), + [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_PLUS_DOT] = ACTIONS(3804), + [anon_sym_DASH_DOT] = ACTIONS(3804), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_AMP_AMP] = ACTIONS(3804), + [anon_sym_TILDE] = ACTIONS(3804), + [aux_sym_prefix_op_token1] = ACTIONS(3804), + [sym_int] = ACTIONS(3802), + [sym_xint] = ACTIONS(3804), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3804), + }, + [3507] = { + [sym_xml_doc] = STATE(3507), + [sym_block_comment] = STATE(3507), + [sym_line_comment] = STATE(3507), + [sym_compiler_directive_decl] = STATE(3507), + [sym_fsi_directive_decl] = STATE(3507), + [sym_preproc_line] = STATE(3507), + [sym_identifier] = ACTIONS(3798), + [anon_sym_return] = ACTIONS(3798), + [anon_sym_do] = ACTIONS(3798), + [anon_sym_let] = ACTIONS(3798), + [anon_sym_let_BANG] = ACTIONS(3800), + [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_COMMA] = ACTIONS(3800), + [anon_sym_null] = ACTIONS(3798), + [anon_sym_AMP] = ACTIONS(3798), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_LBRACK_PIPE] = ACTIONS(3800), + [anon_sym_LBRACE] = ACTIONS(3798), + [anon_sym_LT_AT] = ACTIONS(3798), + [anon_sym_LT_AT_AT] = ACTIONS(3800), + [anon_sym_LBRACE_PIPE] = ACTIONS(3800), + [anon_sym_new] = ACTIONS(3798), + [anon_sym_return_BANG] = ACTIONS(3800), + [anon_sym_yield] = ACTIONS(3798), + [anon_sym_yield_BANG] = ACTIONS(3800), + [anon_sym_lazy] = ACTIONS(3798), + [anon_sym_assert] = ACTIONS(3798), + [anon_sym_upcast] = ACTIONS(3798), + [anon_sym_downcast] = ACTIONS(3798), + [anon_sym_for] = ACTIONS(3798), + [anon_sym_while] = ACTIONS(3798), + [anon_sym_if] = ACTIONS(3798), + [anon_sym_fun] = ACTIONS(3798), + [anon_sym_try] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3798), + [anon_sym_match_BANG] = ACTIONS(3800), + [anon_sym_function] = ACTIONS(3798), + [anon_sym_GT] = ACTIONS(3800), + [anon_sym_use] = ACTIONS(3798), + [anon_sym_use_BANG] = ACTIONS(3800), + [anon_sym_do_BANG] = ACTIONS(3800), + [anon_sym_begin] = ACTIONS(3798), + [aux_sym_char_token1] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(3798), + [anon_sym_AT_DQUOTE] = ACTIONS(3800), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3800), + [sym_bool] = ACTIONS(3798), + [sym_unit] = ACTIONS(3800), + [anon_sym_LPAREN_PIPE] = ACTIONS(3798), + [sym_op_identifier] = ACTIONS(3800), + [anon_sym_PLUS] = ACTIONS(3798), + [anon_sym_DASH] = ACTIONS(3798), + [anon_sym_PLUS_DOT] = ACTIONS(3800), + [anon_sym_DASH_DOT] = ACTIONS(3800), + [anon_sym_PERCENT] = ACTIONS(3800), + [anon_sym_AMP_AMP] = ACTIONS(3800), + [anon_sym_TILDE] = ACTIONS(3800), + [aux_sym_prefix_op_token1] = ACTIONS(3800), + [sym_int] = ACTIONS(3798), + [sym_xint] = ACTIONS(3800), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3800), + }, + [3508] = { + [sym_xml_doc] = STATE(3508), + [sym_block_comment] = STATE(3508), + [sym_line_comment] = STATE(3508), + [sym_compiler_directive_decl] = STATE(3508), + [sym_fsi_directive_decl] = STATE(3508), + [sym_preproc_line] = STATE(3508), + [sym_identifier] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_do] = ACTIONS(5717), + [anon_sym_and] = ACTIONS(5717), + [anon_sym_let] = ACTIONS(5717), + [anon_sym_let_BANG] = ACTIONS(5715), + [anon_sym_LPAREN] = ACTIONS(5717), + [anon_sym_null] = ACTIONS(5717), + [anon_sym_AMP] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5717), + [anon_sym_LBRACK_PIPE] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_LT_AT] = ACTIONS(5717), + [anon_sym_LT_AT_AT] = ACTIONS(5715), + [anon_sym_LBRACE_PIPE] = ACTIONS(5715), + [anon_sym_new] = ACTIONS(5717), + [anon_sym_return_BANG] = ACTIONS(5715), + [anon_sym_yield] = ACTIONS(5717), + [anon_sym_yield_BANG] = ACTIONS(5715), + [anon_sym_lazy] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym_upcast] = ACTIONS(5717), + [anon_sym_downcast] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_fun] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_match_BANG] = ACTIONS(5715), + [anon_sym_function] = ACTIONS(5717), + [anon_sym_use] = ACTIONS(5717), + [anon_sym_use_BANG] = ACTIONS(5715), + [anon_sym_do_BANG] = ACTIONS(5715), + [anon_sym_begin] = ACTIONS(5717), + [aux_sym_char_token1] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5717), + [anon_sym_DQUOTE] = ACTIONS(5717), + [anon_sym_AT_DQUOTE] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [sym_bool] = ACTIONS(5717), + [sym_unit] = ACTIONS(5715), + [anon_sym_LPAREN_PIPE] = ACTIONS(5717), + [sym_op_identifier] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5717), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_PLUS_DOT] = ACTIONS(5715), + [anon_sym_DASH_DOT] = ACTIONS(5715), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_TILDE] = ACTIONS(5715), + [aux_sym_prefix_op_token1] = ACTIONS(5715), + [sym_int] = ACTIONS(5717), + [sym_xint] = ACTIONS(5715), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5715), + [anon_sym_POUNDendif] = ACTIONS(5715), + }, + [3509] = { + [sym_xml_doc] = STATE(3509), + [sym_block_comment] = STATE(3509), + [sym_line_comment] = STATE(3509), + [sym_compiler_directive_decl] = STATE(3509), + [sym_fsi_directive_decl] = STATE(3509), + [sym_preproc_line] = STATE(3509), + [sym_identifier] = ACTIONS(3825), + [anon_sym_return] = ACTIONS(3825), + [anon_sym_do] = ACTIONS(3825), + [anon_sym_let] = ACTIONS(3825), + [anon_sym_let_BANG] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_COMMA] = ACTIONS(3827), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK_PIPE] = ACTIONS(3827), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_LT_AT] = ACTIONS(3825), + [anon_sym_LT_AT_AT] = ACTIONS(3827), + [anon_sym_LBRACE_PIPE] = ACTIONS(3827), + [anon_sym_new] = ACTIONS(3825), + [anon_sym_return_BANG] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3825), + [anon_sym_yield_BANG] = ACTIONS(3827), + [anon_sym_lazy] = ACTIONS(3825), + [anon_sym_assert] = ACTIONS(3825), + [anon_sym_upcast] = ACTIONS(3825), + [anon_sym_downcast] = ACTIONS(3825), + [anon_sym_for] = ACTIONS(3825), + [anon_sym_while] = ACTIONS(3825), + [anon_sym_if] = ACTIONS(3825), + [anon_sym_fun] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3825), + [anon_sym_match] = ACTIONS(3825), + [anon_sym_match_BANG] = ACTIONS(3827), + [anon_sym_function] = ACTIONS(3825), + [anon_sym_GT] = ACTIONS(3827), + [anon_sym_use] = ACTIONS(3825), + [anon_sym_use_BANG] = ACTIONS(3827), + [anon_sym_do_BANG] = ACTIONS(3827), + [anon_sym_begin] = ACTIONS(3825), + [aux_sym_char_token1] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [anon_sym_AT_DQUOTE] = ACTIONS(3827), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3827), + [sym_bool] = ACTIONS(3825), + [sym_unit] = ACTIONS(3827), + [anon_sym_LPAREN_PIPE] = ACTIONS(3825), + [sym_op_identifier] = ACTIONS(3827), + [anon_sym_PLUS] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_PLUS_DOT] = ACTIONS(3827), + [anon_sym_DASH_DOT] = ACTIONS(3827), + [anon_sym_PERCENT] = ACTIONS(3827), + [anon_sym_AMP_AMP] = ACTIONS(3827), + [anon_sym_TILDE] = ACTIONS(3827), + [aux_sym_prefix_op_token1] = ACTIONS(3827), + [sym_int] = ACTIONS(3825), + [sym_xint] = ACTIONS(3827), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3827), + }, + [3510] = { + [sym_xml_doc] = STATE(3510), + [sym_block_comment] = STATE(3510), + [sym_line_comment] = STATE(3510), + [sym_compiler_directive_decl] = STATE(3510), + [sym_fsi_directive_decl] = STATE(3510), + [sym_preproc_line] = STATE(3510), + [sym_identifier] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_let_BANG] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_null] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LBRACK_PIPE] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_LT_AT] = ACTIONS(3656), + [anon_sym_LT_AT_AT] = ACTIONS(3658), + [anon_sym_LBRACE_PIPE] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_return_BANG] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_yield_BANG] = ACTIONS(3658), + [anon_sym_lazy] = ACTIONS(3656), + [anon_sym_assert] = ACTIONS(3656), + [anon_sym_upcast] = ACTIONS(3656), + [anon_sym_downcast] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_fun] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_match] = ACTIONS(3656), + [anon_sym_match_BANG] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_use] = ACTIONS(3656), + [anon_sym_use_BANG] = ACTIONS(3658), + [anon_sym_do_BANG] = ACTIONS(3658), + [anon_sym_begin] = ACTIONS(3656), + [aux_sym_char_token1] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_AT_DQUOTE] = ACTIONS(3658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3658), + [sym_bool] = ACTIONS(3656), + [sym_unit] = ACTIONS(3658), + [anon_sym_LPAREN_PIPE] = ACTIONS(3656), + [sym_op_identifier] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS_DOT] = ACTIONS(3658), + [anon_sym_DASH_DOT] = ACTIONS(3658), + [anon_sym_PERCENT] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [aux_sym_prefix_op_token1] = ACTIONS(3658), + [sym_int] = ACTIONS(3656), + [sym_xint] = ACTIONS(3658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3658), + }, + [3511] = { + [sym_xml_doc] = STATE(3511), + [sym_block_comment] = STATE(3511), + [sym_line_comment] = STATE(3511), + [sym_compiler_directive_decl] = STATE(3511), + [sym_fsi_directive_decl] = STATE(3511), + [sym_preproc_line] = STATE(3511), + [sym_identifier] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_let] = ACTIONS(3693), + [anon_sym_let_BANG] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_null] = ACTIONS(3693), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACK_PIPE] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_LT_AT] = ACTIONS(3693), + [anon_sym_LT_AT_AT] = ACTIONS(3695), + [anon_sym_LBRACE_PIPE] = ACTIONS(3695), + [anon_sym_new] = ACTIONS(3693), + [anon_sym_return_BANG] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3693), + [anon_sym_yield_BANG] = ACTIONS(3695), + [anon_sym_lazy] = ACTIONS(3693), + [anon_sym_assert] = ACTIONS(3693), + [anon_sym_upcast] = ACTIONS(3693), + [anon_sym_downcast] = ACTIONS(3693), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_fun] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3693), + [anon_sym_match] = ACTIONS(3693), + [anon_sym_match_BANG] = ACTIONS(3695), + [anon_sym_function] = ACTIONS(3693), + [anon_sym_GT] = ACTIONS(3695), + [anon_sym_use] = ACTIONS(3693), + [anon_sym_use_BANG] = ACTIONS(3695), + [anon_sym_do_BANG] = ACTIONS(3695), + [anon_sym_begin] = ACTIONS(3693), + [aux_sym_char_token1] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [anon_sym_AT_DQUOTE] = ACTIONS(3695), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3695), + [sym_bool] = ACTIONS(3693), + [sym_unit] = ACTIONS(3695), + [anon_sym_LPAREN_PIPE] = ACTIONS(3693), + [sym_op_identifier] = ACTIONS(3695), + [anon_sym_PLUS] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_PLUS_DOT] = ACTIONS(3695), + [anon_sym_DASH_DOT] = ACTIONS(3695), + [anon_sym_PERCENT] = ACTIONS(3695), + [anon_sym_AMP_AMP] = ACTIONS(3695), + [anon_sym_TILDE] = ACTIONS(3695), + [aux_sym_prefix_op_token1] = ACTIONS(3695), + [sym_int] = ACTIONS(3693), + [sym_xint] = ACTIONS(3695), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3695), + }, + [3512] = { + [sym_xml_doc] = STATE(3512), + [sym_block_comment] = STATE(3512), + [sym_line_comment] = STATE(3512), + [sym_compiler_directive_decl] = STATE(3512), + [sym_fsi_directive_decl] = STATE(3512), + [sym_preproc_line] = STATE(3512), + [sym_identifier] = ACTIONS(3790), + [anon_sym_return] = ACTIONS(3790), + [anon_sym_do] = ACTIONS(3790), + [anon_sym_let] = ACTIONS(3790), + [anon_sym_let_BANG] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3790), + [anon_sym_COMMA] = ACTIONS(3792), + [anon_sym_null] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LBRACK] = ACTIONS(3790), + [anon_sym_LBRACK_PIPE] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_LT_AT] = ACTIONS(3790), + [anon_sym_LT_AT_AT] = ACTIONS(3792), + [anon_sym_LBRACE_PIPE] = ACTIONS(3792), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_return_BANG] = ACTIONS(3792), + [anon_sym_yield] = ACTIONS(3790), + [anon_sym_yield_BANG] = ACTIONS(3792), + [anon_sym_lazy] = ACTIONS(3790), + [anon_sym_assert] = ACTIONS(3790), + [anon_sym_upcast] = ACTIONS(3790), + [anon_sym_downcast] = ACTIONS(3790), + [anon_sym_for] = ACTIONS(3790), + [anon_sym_while] = ACTIONS(3790), + [anon_sym_if] = ACTIONS(3790), + [anon_sym_fun] = ACTIONS(3790), + [anon_sym_try] = ACTIONS(3790), + [anon_sym_match] = ACTIONS(3790), + [anon_sym_match_BANG] = ACTIONS(3792), + [anon_sym_function] = ACTIONS(3790), + [anon_sym_GT] = ACTIONS(3792), + [anon_sym_use] = ACTIONS(3790), + [anon_sym_use_BANG] = ACTIONS(3792), + [anon_sym_do_BANG] = ACTIONS(3792), + [anon_sym_begin] = ACTIONS(3790), + [aux_sym_char_token1] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [anon_sym_AT_DQUOTE] = ACTIONS(3792), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3792), + [sym_bool] = ACTIONS(3790), + [sym_unit] = ACTIONS(3792), + [anon_sym_LPAREN_PIPE] = ACTIONS(3790), + [sym_op_identifier] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS_DOT] = ACTIONS(3792), + [anon_sym_DASH_DOT] = ACTIONS(3792), + [anon_sym_PERCENT] = ACTIONS(3792), + [anon_sym_AMP_AMP] = ACTIONS(3792), + [anon_sym_TILDE] = ACTIONS(3792), + [aux_sym_prefix_op_token1] = ACTIONS(3792), + [sym_int] = ACTIONS(3790), + [sym_xint] = ACTIONS(3792), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3792), + }, + [3513] = { + [sym_xml_doc] = STATE(3513), + [sym_block_comment] = STATE(3513), + [sym_line_comment] = STATE(3513), + [sym_compiler_directive_decl] = STATE(3513), + [sym_fsi_directive_decl] = STATE(3513), + [sym_preproc_line] = STATE(3513), + [aux_sym__function_or_value_defns_repeat1] = STATE(3513), + [sym_identifier] = ACTIONS(5660), + [anon_sym_return] = ACTIONS(5660), + [anon_sym_do] = ACTIONS(5660), + [anon_sym_and] = ACTIONS(6013), + [anon_sym_let] = ACTIONS(5660), + [anon_sym_let_BANG] = ACTIONS(5658), + [anon_sym_LPAREN] = ACTIONS(5660), + [anon_sym_null] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5660), + [anon_sym_LBRACK] = ACTIONS(5660), + [anon_sym_LBRACK_PIPE] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(5660), + [anon_sym_LT_AT] = ACTIONS(5660), + [anon_sym_LT_AT_AT] = ACTIONS(5658), + [anon_sym_LBRACE_PIPE] = ACTIONS(5658), + [anon_sym_new] = ACTIONS(5660), + [anon_sym_return_BANG] = ACTIONS(5658), + [anon_sym_yield] = ACTIONS(5660), + [anon_sym_yield_BANG] = ACTIONS(5658), + [anon_sym_lazy] = ACTIONS(5660), + [anon_sym_assert] = ACTIONS(5660), + [anon_sym_upcast] = ACTIONS(5660), + [anon_sym_downcast] = ACTIONS(5660), + [anon_sym_for] = ACTIONS(5660), + [anon_sym_while] = ACTIONS(5660), + [anon_sym_if] = ACTIONS(5660), + [anon_sym_fun] = ACTIONS(5660), + [anon_sym_try] = ACTIONS(5660), + [anon_sym_match] = ACTIONS(5660), + [anon_sym_match_BANG] = ACTIONS(5658), + [anon_sym_function] = ACTIONS(5660), + [anon_sym_use] = ACTIONS(5660), + [anon_sym_use_BANG] = ACTIONS(5658), + [anon_sym_do_BANG] = ACTIONS(5658), + [anon_sym_begin] = ACTIONS(5660), + [aux_sym_char_token1] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5660), + [anon_sym_DQUOTE] = ACTIONS(5660), + [anon_sym_AT_DQUOTE] = ACTIONS(5658), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5658), + [sym_bool] = ACTIONS(5660), + [sym_unit] = ACTIONS(5658), + [anon_sym_LPAREN_PIPE] = ACTIONS(5660), + [sym_op_identifier] = ACTIONS(5658), + [anon_sym_PLUS] = ACTIONS(5660), + [anon_sym_DASH] = ACTIONS(5660), + [anon_sym_PLUS_DOT] = ACTIONS(5658), + [anon_sym_DASH_DOT] = ACTIONS(5658), + [anon_sym_PERCENT] = ACTIONS(5658), + [anon_sym_AMP_AMP] = ACTIONS(5658), + [anon_sym_TILDE] = ACTIONS(5658), + [aux_sym_prefix_op_token1] = ACTIONS(5658), + [sym_int] = ACTIONS(5660), + [sym_xint] = ACTIONS(5658), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5658), + }, + [3514] = { + [sym_xml_doc] = STATE(3514), + [sym_block_comment] = STATE(3514), + [sym_line_comment] = STATE(3514), + [sym_compiler_directive_decl] = STATE(3514), + [sym_fsi_directive_decl] = STATE(3514), + [sym_preproc_line] = STATE(3514), + [sym_identifier] = ACTIONS(3786), + [anon_sym_return] = ACTIONS(3786), + [anon_sym_do] = ACTIONS(3786), + [anon_sym_let] = ACTIONS(3786), + [anon_sym_let_BANG] = ACTIONS(3788), + [anon_sym_LPAREN] = ACTIONS(3786), + [anon_sym_COMMA] = ACTIONS(3788), + [anon_sym_null] = ACTIONS(3786), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_LBRACK] = ACTIONS(3786), + [anon_sym_LBRACK_PIPE] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LT_AT] = ACTIONS(3786), + [anon_sym_LT_AT_AT] = ACTIONS(3788), + [anon_sym_LBRACE_PIPE] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3786), + [anon_sym_return_BANG] = ACTIONS(3788), + [anon_sym_yield] = ACTIONS(3786), + [anon_sym_yield_BANG] = ACTIONS(3788), + [anon_sym_lazy] = ACTIONS(3786), + [anon_sym_assert] = ACTIONS(3786), + [anon_sym_upcast] = ACTIONS(3786), + [anon_sym_downcast] = ACTIONS(3786), + [anon_sym_for] = ACTIONS(3786), + [anon_sym_while] = ACTIONS(3786), + [anon_sym_if] = ACTIONS(3786), + [anon_sym_fun] = ACTIONS(3786), + [anon_sym_try] = ACTIONS(3786), + [anon_sym_match] = ACTIONS(3786), + [anon_sym_match_BANG] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(3786), + [anon_sym_GT] = ACTIONS(3788), + [anon_sym_use] = ACTIONS(3786), + [anon_sym_use_BANG] = ACTIONS(3788), + [anon_sym_do_BANG] = ACTIONS(3788), + [anon_sym_begin] = ACTIONS(3786), + [aux_sym_char_token1] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [anon_sym_AT_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3788), + [sym_bool] = ACTIONS(3786), + [sym_unit] = ACTIONS(3788), + [anon_sym_LPAREN_PIPE] = ACTIONS(3786), + [sym_op_identifier] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3786), + [anon_sym_DASH] = ACTIONS(3786), + [anon_sym_PLUS_DOT] = ACTIONS(3788), + [anon_sym_DASH_DOT] = ACTIONS(3788), + [anon_sym_PERCENT] = ACTIONS(3788), + [anon_sym_AMP_AMP] = ACTIONS(3788), + [anon_sym_TILDE] = ACTIONS(3788), + [aux_sym_prefix_op_token1] = ACTIONS(3788), + [sym_int] = ACTIONS(3786), + [sym_xint] = ACTIONS(3788), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3788), + }, + [3515] = { + [sym_xml_doc] = STATE(3515), + [sym_block_comment] = STATE(3515), + [sym_line_comment] = STATE(3515), + [sym_compiler_directive_decl] = STATE(3515), + [sym_fsi_directive_decl] = STATE(3515), + [sym_preproc_line] = STATE(3515), + [sym_identifier] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_let_BANG] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LBRACK_PIPE] = ACTIONS(3724), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_LT_AT] = ACTIONS(3722), + [anon_sym_LT_AT_AT] = ACTIONS(3724), + [anon_sym_LBRACE_PIPE] = ACTIONS(3724), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_return_BANG] = ACTIONS(3724), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_yield_BANG] = ACTIONS(3724), + [anon_sym_lazy] = ACTIONS(3722), + [anon_sym_assert] = ACTIONS(3722), + [anon_sym_upcast] = ACTIONS(3722), + [anon_sym_downcast] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_fun] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_match] = ACTIONS(3722), + [anon_sym_match_BANG] = ACTIONS(3724), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_GT] = ACTIONS(3724), + [anon_sym_use] = ACTIONS(3722), + [anon_sym_use_BANG] = ACTIONS(3724), + [anon_sym_do_BANG] = ACTIONS(3724), + [anon_sym_begin] = ACTIONS(3722), + [aux_sym_char_token1] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_AT_DQUOTE] = ACTIONS(3724), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3724), + [sym_bool] = ACTIONS(3722), + [sym_unit] = ACTIONS(3724), + [anon_sym_LPAREN_PIPE] = ACTIONS(3722), + [sym_op_identifier] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS_DOT] = ACTIONS(3724), + [anon_sym_DASH_DOT] = ACTIONS(3724), + [anon_sym_PERCENT] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [aux_sym_prefix_op_token1] = ACTIONS(3724), + [sym_int] = ACTIONS(3722), + [sym_xint] = ACTIONS(3724), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3724), + }, + [3516] = { + [sym_xml_doc] = STATE(3516), + [sym_block_comment] = STATE(3516), + [sym_line_comment] = STATE(3516), + [sym_compiler_directive_decl] = STATE(3516), + [sym_fsi_directive_decl] = STATE(3516), + [sym_preproc_line] = STATE(3516), + [sym_identifier] = ACTIONS(5713), + [anon_sym_return] = ACTIONS(5713), + [anon_sym_do] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_let_BANG] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_null] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LBRACK_PIPE] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT_AT] = ACTIONS(5713), + [anon_sym_LT_AT_AT] = ACTIONS(5711), + [anon_sym_LBRACE_PIPE] = ACTIONS(5711), + [anon_sym_new] = ACTIONS(5713), + [anon_sym_return_BANG] = ACTIONS(5711), + [anon_sym_yield] = ACTIONS(5713), + [anon_sym_yield_BANG] = ACTIONS(5711), + [anon_sym_lazy] = ACTIONS(5713), + [anon_sym_assert] = ACTIONS(5713), + [anon_sym_upcast] = ACTIONS(5713), + [anon_sym_downcast] = ACTIONS(5713), + [anon_sym_for] = ACTIONS(5713), + [anon_sym_while] = ACTIONS(5713), + [anon_sym_if] = ACTIONS(5713), + [anon_sym_fun] = ACTIONS(5713), + [anon_sym_try] = ACTIONS(5713), + [anon_sym_match] = ACTIONS(5713), + [anon_sym_match_BANG] = ACTIONS(5711), + [anon_sym_function] = ACTIONS(5713), + [anon_sym_use] = ACTIONS(5713), + [anon_sym_use_BANG] = ACTIONS(5711), + [anon_sym_do_BANG] = ACTIONS(5711), + [anon_sym_begin] = ACTIONS(5713), + [aux_sym_char_token1] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5713), + [anon_sym_DQUOTE] = ACTIONS(5713), + [anon_sym_AT_DQUOTE] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [sym_bool] = ACTIONS(5713), + [sym_unit] = ACTIONS(5711), + [anon_sym_LPAREN_PIPE] = ACTIONS(5713), + [sym_op_identifier] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS_DOT] = ACTIONS(5711), + [anon_sym_DASH_DOT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_TILDE] = ACTIONS(5711), + [aux_sym_prefix_op_token1] = ACTIONS(5711), + [sym_int] = ACTIONS(5713), + [sym_xint] = ACTIONS(5711), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5711), + [anon_sym_POUNDendif] = ACTIONS(5711), + }, + [3517] = { + [sym_xml_doc] = STATE(3517), + [sym_block_comment] = STATE(3517), + [sym_line_comment] = STATE(3517), + [sym_compiler_directive_decl] = STATE(3517), + [sym_fsi_directive_decl] = STATE(3517), + [sym_preproc_line] = STATE(3517), + [sym_identifier] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_let_BANG] = ACTIONS(3784), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_null] = ACTIONS(3782), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LBRACK_PIPE] = ACTIONS(3784), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_LT_AT] = ACTIONS(3782), + [anon_sym_LT_AT_AT] = ACTIONS(3784), + [anon_sym_LBRACE_PIPE] = ACTIONS(3784), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_return_BANG] = ACTIONS(3784), + [anon_sym_yield] = ACTIONS(3782), + [anon_sym_yield_BANG] = ACTIONS(3784), + [anon_sym_lazy] = ACTIONS(3782), + [anon_sym_assert] = ACTIONS(3782), + [anon_sym_upcast] = ACTIONS(3782), + [anon_sym_downcast] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_fun] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_match_BANG] = ACTIONS(3784), + [anon_sym_function] = ACTIONS(3782), + [anon_sym_GT] = ACTIONS(3784), + [anon_sym_use] = ACTIONS(3782), + [anon_sym_use_BANG] = ACTIONS(3784), + [anon_sym_do_BANG] = ACTIONS(3784), + [anon_sym_begin] = ACTIONS(3782), + [aux_sym_char_token1] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [anon_sym_AT_DQUOTE] = ACTIONS(3784), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3784), + [sym_bool] = ACTIONS(3782), + [sym_unit] = ACTIONS(3784), + [anon_sym_LPAREN_PIPE] = ACTIONS(3782), + [sym_op_identifier] = ACTIONS(3784), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS_DOT] = ACTIONS(3784), + [anon_sym_DASH_DOT] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [aux_sym_prefix_op_token1] = ACTIONS(3784), + [sym_int] = ACTIONS(3782), + [sym_xint] = ACTIONS(3784), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3784), + }, + [3518] = { + [sym_xml_doc] = STATE(3518), + [sym_block_comment] = STATE(3518), + [sym_line_comment] = STATE(3518), + [sym_compiler_directive_decl] = STATE(3518), + [sym_fsi_directive_decl] = STATE(3518), + [sym_preproc_line] = STATE(3518), + [sym_identifier] = ACTIONS(3836), + [anon_sym_return] = ACTIONS(3836), + [anon_sym_do] = ACTIONS(3836), + [anon_sym_let] = ACTIONS(3836), + [anon_sym_let_BANG] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3836), + [anon_sym_COMMA] = ACTIONS(3838), + [anon_sym_null] = ACTIONS(3836), + [anon_sym_AMP] = ACTIONS(3836), + [anon_sym_LBRACK] = ACTIONS(3836), + [anon_sym_LBRACK_PIPE] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_LT_AT] = ACTIONS(3836), + [anon_sym_LT_AT_AT] = ACTIONS(3838), + [anon_sym_LBRACE_PIPE] = ACTIONS(3838), + [anon_sym_new] = ACTIONS(3836), + [anon_sym_return_BANG] = ACTIONS(3838), + [anon_sym_yield] = ACTIONS(3836), + [anon_sym_yield_BANG] = ACTIONS(3838), + [anon_sym_lazy] = ACTIONS(3836), + [anon_sym_assert] = ACTIONS(3836), + [anon_sym_upcast] = ACTIONS(3836), + [anon_sym_downcast] = ACTIONS(3836), + [anon_sym_for] = ACTIONS(3836), + [anon_sym_while] = ACTIONS(3836), + [anon_sym_if] = ACTIONS(3836), + [anon_sym_fun] = ACTIONS(3836), + [anon_sym_try] = ACTIONS(3836), + [anon_sym_match] = ACTIONS(3836), + [anon_sym_match_BANG] = ACTIONS(3838), + [anon_sym_function] = ACTIONS(3836), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_use] = ACTIONS(3836), + [anon_sym_use_BANG] = ACTIONS(3838), + [anon_sym_do_BANG] = ACTIONS(3838), + [anon_sym_begin] = ACTIONS(3836), + [aux_sym_char_token1] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3836), + [anon_sym_AT_DQUOTE] = ACTIONS(3838), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3838), + [sym_bool] = ACTIONS(3836), + [sym_unit] = ACTIONS(3838), + [anon_sym_LPAREN_PIPE] = ACTIONS(3836), + [sym_op_identifier] = ACTIONS(3838), + [anon_sym_PLUS] = ACTIONS(3836), + [anon_sym_DASH] = ACTIONS(3836), + [anon_sym_PLUS_DOT] = ACTIONS(3838), + [anon_sym_DASH_DOT] = ACTIONS(3838), + [anon_sym_PERCENT] = ACTIONS(3838), + [anon_sym_AMP_AMP] = ACTIONS(3838), + [anon_sym_TILDE] = ACTIONS(3838), + [aux_sym_prefix_op_token1] = ACTIONS(3838), + [sym_int] = ACTIONS(3836), + [sym_xint] = ACTIONS(3838), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3838), + }, + [3519] = { + [sym_xml_doc] = STATE(3519), + [sym_block_comment] = STATE(3519), + [sym_line_comment] = STATE(3519), + [sym_compiler_directive_decl] = STATE(3519), + [sym_fsi_directive_decl] = STATE(3519), + [sym_preproc_line] = STATE(3519), + [sym_identifier] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_let] = ACTIONS(3778), + [anon_sym_let_BANG] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3778), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACK_PIPE] = ACTIONS(3780), + [anon_sym_LBRACE] = ACTIONS(3778), + [anon_sym_LT_AT] = ACTIONS(3778), + [anon_sym_LT_AT_AT] = ACTIONS(3780), + [anon_sym_LBRACE_PIPE] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_return_BANG] = ACTIONS(3780), + [anon_sym_yield] = ACTIONS(3778), + [anon_sym_yield_BANG] = ACTIONS(3780), + [anon_sym_lazy] = ACTIONS(3778), + [anon_sym_assert] = ACTIONS(3778), + [anon_sym_upcast] = ACTIONS(3778), + [anon_sym_downcast] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_fun] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_match] = ACTIONS(3778), + [anon_sym_match_BANG] = ACTIONS(3780), + [anon_sym_function] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3780), + [anon_sym_use] = ACTIONS(3778), + [anon_sym_use_BANG] = ACTIONS(3780), + [anon_sym_do_BANG] = ACTIONS(3780), + [anon_sym_begin] = ACTIONS(3778), + [aux_sym_char_token1] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(3778), + [anon_sym_AT_DQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3780), + [sym_bool] = ACTIONS(3778), + [sym_unit] = ACTIONS(3780), + [anon_sym_LPAREN_PIPE] = ACTIONS(3778), + [sym_op_identifier] = ACTIONS(3780), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS_DOT] = ACTIONS(3780), + [anon_sym_DASH_DOT] = ACTIONS(3780), + [anon_sym_PERCENT] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [aux_sym_prefix_op_token1] = ACTIONS(3780), + [sym_int] = ACTIONS(3778), + [sym_xint] = ACTIONS(3780), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3780), + }, + [3520] = { + [sym_xml_doc] = STATE(3520), + [sym_block_comment] = STATE(3520), + [sym_line_comment] = STATE(3520), + [sym_compiler_directive_decl] = STATE(3520), + [sym_fsi_directive_decl] = STATE(3520), + [sym_preproc_line] = STATE(3520), + [sym_identifier] = ACTIONS(3577), + [anon_sym_return] = ACTIONS(3577), + [anon_sym_do] = ACTIONS(3577), + [anon_sym_let] = ACTIONS(3577), + [anon_sym_let_BANG] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_COMMA] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3577), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_LBRACK_PIPE] = ACTIONS(3579), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_LT_AT] = ACTIONS(3577), + [anon_sym_LT_AT_AT] = ACTIONS(3579), + [anon_sym_LBRACE_PIPE] = ACTIONS(3579), + [anon_sym_new] = ACTIONS(3577), + [anon_sym_return_BANG] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3577), + [anon_sym_yield_BANG] = ACTIONS(3579), + [anon_sym_lazy] = ACTIONS(3577), + [anon_sym_assert] = ACTIONS(3577), + [anon_sym_upcast] = ACTIONS(3577), + [anon_sym_downcast] = ACTIONS(3577), + [anon_sym_for] = ACTIONS(3577), + [anon_sym_while] = ACTIONS(3577), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_fun] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3577), + [anon_sym_match_BANG] = ACTIONS(3579), + [anon_sym_function] = ACTIONS(3577), + [anon_sym_GT] = ACTIONS(3579), + [anon_sym_use] = ACTIONS(3577), + [anon_sym_use_BANG] = ACTIONS(3579), + [anon_sym_do_BANG] = ACTIONS(3579), + [anon_sym_begin] = ACTIONS(3577), + [aux_sym_char_token1] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [anon_sym_AT_DQUOTE] = ACTIONS(3579), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3579), + [sym_bool] = ACTIONS(3577), + [sym_unit] = ACTIONS(3579), + [anon_sym_LPAREN_PIPE] = ACTIONS(3577), + [sym_op_identifier] = ACTIONS(3579), + [anon_sym_PLUS] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_PLUS_DOT] = ACTIONS(3579), + [anon_sym_DASH_DOT] = ACTIONS(3579), + [anon_sym_PERCENT] = ACTIONS(3579), + [anon_sym_AMP_AMP] = ACTIONS(3579), + [anon_sym_TILDE] = ACTIONS(3579), + [aux_sym_prefix_op_token1] = ACTIONS(3579), + [sym_int] = ACTIONS(3577), + [sym_xint] = ACTIONS(3579), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3579), + }, + [3521] = { + [sym_xml_doc] = STATE(3521), + [sym_block_comment] = STATE(3521), + [sym_line_comment] = STATE(3521), + [sym_compiler_directive_decl] = STATE(3521), + [sym_fsi_directive_decl] = STATE(3521), + [sym_preproc_line] = STATE(3521), + [sym_identifier] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_let] = ACTIONS(3734), + [anon_sym_let_BANG] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(3734), + [anon_sym_COMMA] = ACTIONS(3736), + [anon_sym_null] = ACTIONS(3734), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_LBRACK_PIPE] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3734), + [anon_sym_LT_AT] = ACTIONS(3734), + [anon_sym_LT_AT_AT] = ACTIONS(3736), + [anon_sym_LBRACE_PIPE] = ACTIONS(3736), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_return_BANG] = ACTIONS(3736), + [anon_sym_yield] = ACTIONS(3734), + [anon_sym_yield_BANG] = ACTIONS(3736), + [anon_sym_lazy] = ACTIONS(3734), + [anon_sym_assert] = ACTIONS(3734), + [anon_sym_upcast] = ACTIONS(3734), + [anon_sym_downcast] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_match] = ACTIONS(3734), + [anon_sym_match_BANG] = ACTIONS(3736), + [anon_sym_function] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_use] = ACTIONS(3734), + [anon_sym_use_BANG] = ACTIONS(3736), + [anon_sym_do_BANG] = ACTIONS(3736), + [anon_sym_begin] = ACTIONS(3734), + [aux_sym_char_token1] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3734), + [anon_sym_DQUOTE] = ACTIONS(3734), + [anon_sym_AT_DQUOTE] = ACTIONS(3736), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3736), + [sym_bool] = ACTIONS(3734), + [sym_unit] = ACTIONS(3736), + [anon_sym_LPAREN_PIPE] = ACTIONS(3734), + [sym_op_identifier] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS_DOT] = ACTIONS(3736), + [anon_sym_DASH_DOT] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [aux_sym_prefix_op_token1] = ACTIONS(3736), + [sym_int] = ACTIONS(3734), + [sym_xint] = ACTIONS(3736), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3736), + }, + [3522] = { + [sym_xml_doc] = STATE(3522), + [sym_block_comment] = STATE(3522), + [sym_line_comment] = STATE(3522), + [sym_compiler_directive_decl] = STATE(3522), + [sym_fsi_directive_decl] = STATE(3522), + [sym_preproc_line] = STATE(3522), + [sym_identifier] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_let_BANG] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LBRACK_PIPE] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LT_AT] = ACTIONS(3642), + [anon_sym_LT_AT_AT] = ACTIONS(3644), + [anon_sym_LBRACE_PIPE] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_return_BANG] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_yield_BANG] = ACTIONS(3644), + [anon_sym_lazy] = ACTIONS(3642), + [anon_sym_assert] = ACTIONS(3642), + [anon_sym_upcast] = ACTIONS(3642), + [anon_sym_downcast] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_fun] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_match] = ACTIONS(3642), + [anon_sym_match_BANG] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_GT] = ACTIONS(3644), + [anon_sym_use] = ACTIONS(3642), + [anon_sym_use_BANG] = ACTIONS(3644), + [anon_sym_do_BANG] = ACTIONS(3644), + [anon_sym_begin] = ACTIONS(3642), + [aux_sym_char_token1] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_AT_DQUOTE] = ACTIONS(3644), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3644), + [sym_bool] = ACTIONS(3642), + [sym_unit] = ACTIONS(3644), + [anon_sym_LPAREN_PIPE] = ACTIONS(3642), + [sym_op_identifier] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS_DOT] = ACTIONS(3644), + [anon_sym_DASH_DOT] = ACTIONS(3644), + [anon_sym_PERCENT] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [aux_sym_prefix_op_token1] = ACTIONS(3644), + [sym_int] = ACTIONS(3642), + [sym_xint] = ACTIONS(3644), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3644), + }, + [3523] = { + [sym_xml_doc] = STATE(3523), + [sym_block_comment] = STATE(3523), + [sym_line_comment] = STATE(3523), + [sym_compiler_directive_decl] = STATE(3523), + [sym_fsi_directive_decl] = STATE(3523), + [sym_preproc_line] = STATE(3523), + [sym_identifier] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_let_BANG] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3740), + [anon_sym_null] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_LBRACK_PIPE] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LT_AT] = ACTIONS(3738), + [anon_sym_LT_AT_AT] = ACTIONS(3740), + [anon_sym_LBRACE_PIPE] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_return_BANG] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3738), + [anon_sym_yield_BANG] = ACTIONS(3740), + [anon_sym_lazy] = ACTIONS(3738), + [anon_sym_assert] = ACTIONS(3738), + [anon_sym_upcast] = ACTIONS(3738), + [anon_sym_downcast] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_fun] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_match_BANG] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_use] = ACTIONS(3738), + [anon_sym_use_BANG] = ACTIONS(3740), + [anon_sym_do_BANG] = ACTIONS(3740), + [anon_sym_begin] = ACTIONS(3738), + [aux_sym_char_token1] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_AT_DQUOTE] = ACTIONS(3740), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3740), + [sym_bool] = ACTIONS(3738), + [sym_unit] = ACTIONS(3740), + [anon_sym_LPAREN_PIPE] = ACTIONS(3738), + [sym_op_identifier] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS_DOT] = ACTIONS(3740), + [anon_sym_DASH_DOT] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [aux_sym_prefix_op_token1] = ACTIONS(3740), + [sym_int] = ACTIONS(3738), + [sym_xint] = ACTIONS(3740), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3740), + }, + [3524] = { + [sym_xml_doc] = STATE(3524), + [sym_block_comment] = STATE(3524), + [sym_line_comment] = STATE(3524), + [sym_compiler_directive_decl] = STATE(3524), + [sym_fsi_directive_decl] = STATE(3524), + [sym_preproc_line] = STATE(3524), + [sym_identifier] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_let_BANG] = ACTIONS(3748), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3748), + [anon_sym_null] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LBRACK_PIPE] = ACTIONS(3748), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LT_AT] = ACTIONS(3746), + [anon_sym_LT_AT_AT] = ACTIONS(3748), + [anon_sym_LBRACE_PIPE] = ACTIONS(3748), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_return_BANG] = ACTIONS(3748), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_yield_BANG] = ACTIONS(3748), + [anon_sym_lazy] = ACTIONS(3746), + [anon_sym_assert] = ACTIONS(3746), + [anon_sym_upcast] = ACTIONS(3746), + [anon_sym_downcast] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_fun] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_match] = ACTIONS(3746), + [anon_sym_match_BANG] = ACTIONS(3748), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3748), + [anon_sym_use] = ACTIONS(3746), + [anon_sym_use_BANG] = ACTIONS(3748), + [anon_sym_do_BANG] = ACTIONS(3748), + [anon_sym_begin] = ACTIONS(3746), + [aux_sym_char_token1] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_AT_DQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3748), + [sym_bool] = ACTIONS(3746), + [sym_unit] = ACTIONS(3748), + [anon_sym_LPAREN_PIPE] = ACTIONS(3746), + [sym_op_identifier] = ACTIONS(3748), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS_DOT] = ACTIONS(3748), + [anon_sym_DASH_DOT] = ACTIONS(3748), + [anon_sym_PERCENT] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [aux_sym_prefix_op_token1] = ACTIONS(3748), + [sym_int] = ACTIONS(3746), + [sym_xint] = ACTIONS(3748), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3748), + }, + [3525] = { + [sym_xml_doc] = STATE(3525), + [sym_block_comment] = STATE(3525), + [sym_line_comment] = STATE(3525), + [sym_compiler_directive_decl] = STATE(3525), + [sym_fsi_directive_decl] = STATE(3525), + [sym_preproc_line] = STATE(3525), + [sym_identifier] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_let] = ACTIONS(3766), + [anon_sym_let_BANG] = ACTIONS(3768), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3766), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LBRACK_PIPE] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LT_AT] = ACTIONS(3766), + [anon_sym_LT_AT_AT] = ACTIONS(3768), + [anon_sym_LBRACE_PIPE] = ACTIONS(3768), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_return_BANG] = ACTIONS(3768), + [anon_sym_yield] = ACTIONS(3766), + [anon_sym_yield_BANG] = ACTIONS(3768), + [anon_sym_lazy] = ACTIONS(3766), + [anon_sym_assert] = ACTIONS(3766), + [anon_sym_upcast] = ACTIONS(3766), + [anon_sym_downcast] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_fun] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3766), + [anon_sym_match_BANG] = ACTIONS(3768), + [anon_sym_function] = ACTIONS(3766), + [anon_sym_GT] = ACTIONS(3768), + [anon_sym_use] = ACTIONS(3766), + [anon_sym_use_BANG] = ACTIONS(3768), + [anon_sym_do_BANG] = ACTIONS(3768), + [anon_sym_begin] = ACTIONS(3766), + [aux_sym_char_token1] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [anon_sym_AT_DQUOTE] = ACTIONS(3768), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3768), + [sym_bool] = ACTIONS(3766), + [sym_unit] = ACTIONS(3768), + [anon_sym_LPAREN_PIPE] = ACTIONS(3766), + [sym_op_identifier] = ACTIONS(3768), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS_DOT] = ACTIONS(3768), + [anon_sym_DASH_DOT] = ACTIONS(3768), + [anon_sym_PERCENT] = ACTIONS(3768), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [aux_sym_prefix_op_token1] = ACTIONS(3768), + [sym_int] = ACTIONS(3766), + [sym_xint] = ACTIONS(3768), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3768), + }, + [3526] = { + [sym_xml_doc] = STATE(3526), + [sym_block_comment] = STATE(3526), + [sym_line_comment] = STATE(3526), + [sym_compiler_directive_decl] = STATE(3526), + [sym_fsi_directive_decl] = STATE(3526), + [sym_preproc_line] = STATE(3526), + [sym_identifier] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_let] = ACTIONS(3770), + [anon_sym_let_BANG] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LBRACK_PIPE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3770), + [anon_sym_LT_AT] = ACTIONS(3770), + [anon_sym_LT_AT_AT] = ACTIONS(3772), + [anon_sym_LBRACE_PIPE] = ACTIONS(3772), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_return_BANG] = ACTIONS(3772), + [anon_sym_yield] = ACTIONS(3770), + [anon_sym_yield_BANG] = ACTIONS(3772), + [anon_sym_lazy] = ACTIONS(3770), + [anon_sym_assert] = ACTIONS(3770), + [anon_sym_upcast] = ACTIONS(3770), + [anon_sym_downcast] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_fun] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_match] = ACTIONS(3770), + [anon_sym_match_BANG] = ACTIONS(3772), + [anon_sym_function] = ACTIONS(3770), + [anon_sym_GT] = ACTIONS(3772), + [anon_sym_use] = ACTIONS(3770), + [anon_sym_use_BANG] = ACTIONS(3772), + [anon_sym_do_BANG] = ACTIONS(3772), + [anon_sym_begin] = ACTIONS(3770), + [aux_sym_char_token1] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [anon_sym_AT_DQUOTE] = ACTIONS(3772), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3772), + [sym_bool] = ACTIONS(3770), + [sym_unit] = ACTIONS(3772), + [anon_sym_LPAREN_PIPE] = ACTIONS(3770), + [sym_op_identifier] = ACTIONS(3772), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS_DOT] = ACTIONS(3772), + [anon_sym_DASH_DOT] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3772), + [anon_sym_AMP_AMP] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [aux_sym_prefix_op_token1] = ACTIONS(3772), + [sym_int] = ACTIONS(3770), + [sym_xint] = ACTIONS(3772), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3772), + }, + [3527] = { + [sym_xml_doc] = STATE(3527), + [sym_block_comment] = STATE(3527), + [sym_line_comment] = STATE(3527), + [sym_compiler_directive_decl] = STATE(3527), + [sym_fsi_directive_decl] = STATE(3527), + [sym_preproc_line] = STATE(3527), + [aux_sym_prefix_op_repeat1] = STATE(3532), + [sym_identifier] = ACTIONS(6016), + [anon_sym_return] = ACTIONS(6016), + [anon_sym_do] = ACTIONS(6016), + [anon_sym_let] = ACTIONS(6016), + [anon_sym_let_BANG] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_null] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_LBRACK_PIPE] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_LT_AT] = ACTIONS(6016), + [anon_sym_LT_AT_AT] = ACTIONS(6018), + [anon_sym_LBRACE_PIPE] = ACTIONS(6018), + [anon_sym_new] = ACTIONS(6016), + [anon_sym_return_BANG] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6016), + [anon_sym_yield_BANG] = ACTIONS(6018), + [anon_sym_lazy] = ACTIONS(6016), + [anon_sym_assert] = ACTIONS(6016), + [anon_sym_upcast] = ACTIONS(6016), + [anon_sym_downcast] = ACTIONS(6016), + [anon_sym_for] = ACTIONS(6016), + [anon_sym_while] = ACTIONS(6016), + [anon_sym_if] = ACTIONS(6016), + [anon_sym_fun] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6016), + [anon_sym_match] = ACTIONS(6016), + [anon_sym_match_BANG] = ACTIONS(6018), + [anon_sym_function] = ACTIONS(6016), + [anon_sym_use] = ACTIONS(6016), + [anon_sym_use_BANG] = ACTIONS(6018), + [anon_sym_do_BANG] = ACTIONS(6018), + [anon_sym_begin] = ACTIONS(6016), + [aux_sym_char_token1] = ACTIONS(6018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_AT_DQUOTE] = ACTIONS(6018), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6018), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6018), + [sym_bool] = ACTIONS(6016), + [sym_unit] = ACTIONS(6018), + [anon_sym_LPAREN_PIPE] = ACTIONS(6016), + [sym_op_identifier] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_PLUS_DOT] = ACTIONS(6018), + [anon_sym_DASH_DOT] = ACTIONS(6018), + [anon_sym_PERCENT] = ACTIONS(6018), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6018), + [aux_sym_prefix_op_token1] = ACTIONS(6018), + [sym_int] = ACTIONS(6016), + [sym_xint] = ACTIONS(6018), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6018), + }, + [3528] = { + [sym_xml_doc] = STATE(3528), + [sym_block_comment] = STATE(3528), + [sym_line_comment] = STATE(3528), + [sym_compiler_directive_decl] = STATE(3528), + [sym_fsi_directive_decl] = STATE(3528), + [sym_preproc_line] = STATE(3528), + [sym_identifier] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_BANG] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LBRACK_PIPE] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_LT_AT] = ACTIONS(5868), + [anon_sym_LT_AT_AT] = ACTIONS(5866), + [anon_sym_LBRACE_PIPE] = ACTIONS(5866), + [anon_sym_new] = ACTIONS(5868), + [anon_sym_return_BANG] = ACTIONS(5866), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_yield_BANG] = ACTIONS(5866), + [anon_sym_lazy] = ACTIONS(5868), + [anon_sym_assert] = ACTIONS(5868), + [anon_sym_upcast] = ACTIONS(5868), + [anon_sym_downcast] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_fun] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_match_BANG] = ACTIONS(5866), + [anon_sym_function] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_use_BANG] = ACTIONS(5866), + [anon_sym_do_BANG] = ACTIONS(5866), + [anon_sym_begin] = ACTIONS(5868), + [aux_sym_char_token1] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [anon_sym_AT_DQUOTE] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [sym_bool] = ACTIONS(5868), + [sym_unit] = ACTIONS(5866), + [anon_sym_LPAREN_PIPE] = ACTIONS(5868), + [sym_op_identifier] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_PLUS_DOT] = ACTIONS(5866), + [anon_sym_DASH_DOT] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [aux_sym_prefix_op_token1] = ACTIONS(5866), + [sym_int] = ACTIONS(5868), + [sym_xint] = ACTIONS(5866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5866), + [anon_sym_POUNDendif] = ACTIONS(5866), + }, + [3529] = { + [sym_xml_doc] = STATE(3529), + [sym_block_comment] = STATE(3529), + [sym_line_comment] = STATE(3529), + [sym_compiler_directive_decl] = STATE(3529), + [sym_fsi_directive_decl] = STATE(3529), + [sym_preproc_line] = STATE(3529), + [sym_identifier] = ACTIONS(5717), + [anon_sym_return] = ACTIONS(5717), + [anon_sym_do] = ACTIONS(5717), + [anon_sym_and] = ACTIONS(5717), + [anon_sym_let] = ACTIONS(5717), + [anon_sym_let_BANG] = ACTIONS(5715), + [anon_sym_LPAREN] = ACTIONS(5717), + [anon_sym_null] = ACTIONS(5717), + [anon_sym_AMP] = ACTIONS(5717), + [anon_sym_LBRACK] = ACTIONS(5717), + [anon_sym_LBRACK_PIPE] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5717), + [anon_sym_LT_AT] = ACTIONS(5717), + [anon_sym_LT_AT_AT] = ACTIONS(5715), + [anon_sym_LBRACE_PIPE] = ACTIONS(5715), + [anon_sym_new] = ACTIONS(5717), + [anon_sym_return_BANG] = ACTIONS(5715), + [anon_sym_yield] = ACTIONS(5717), + [anon_sym_yield_BANG] = ACTIONS(5715), + [anon_sym_lazy] = ACTIONS(5717), + [anon_sym_assert] = ACTIONS(5717), + [anon_sym_upcast] = ACTIONS(5717), + [anon_sym_downcast] = ACTIONS(5717), + [anon_sym_for] = ACTIONS(5717), + [anon_sym_while] = ACTIONS(5717), + [anon_sym_if] = ACTIONS(5717), + [anon_sym_fun] = ACTIONS(5717), + [anon_sym_try] = ACTIONS(5717), + [anon_sym_match] = ACTIONS(5717), + [anon_sym_match_BANG] = ACTIONS(5715), + [anon_sym_function] = ACTIONS(5717), + [anon_sym_use] = ACTIONS(5717), + [anon_sym_use_BANG] = ACTIONS(5715), + [anon_sym_do_BANG] = ACTIONS(5715), + [anon_sym_begin] = ACTIONS(5717), + [aux_sym_char_token1] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5717), + [anon_sym_DQUOTE] = ACTIONS(5717), + [anon_sym_AT_DQUOTE] = ACTIONS(5715), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5715), + [sym_bool] = ACTIONS(5717), + [sym_unit] = ACTIONS(5715), + [anon_sym_LPAREN_PIPE] = ACTIONS(5717), + [sym_op_identifier] = ACTIONS(5715), + [anon_sym_PLUS] = ACTIONS(5717), + [anon_sym_DASH] = ACTIONS(5717), + [anon_sym_PLUS_DOT] = ACTIONS(5715), + [anon_sym_DASH_DOT] = ACTIONS(5715), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_TILDE] = ACTIONS(5715), + [aux_sym_prefix_op_token1] = ACTIONS(5715), + [sym_int] = ACTIONS(5717), + [sym_xint] = ACTIONS(5715), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5715), + }, + [3530] = { + [sym_xml_doc] = STATE(3530), + [sym_block_comment] = STATE(3530), + [sym_line_comment] = STATE(3530), + [sym_compiler_directive_decl] = STATE(3530), + [sym_fsi_directive_decl] = STATE(3530), + [sym_preproc_line] = STATE(3530), + [sym_identifier] = ACTIONS(5699), + [anon_sym_return] = ACTIONS(5699), + [anon_sym_do] = ACTIONS(5699), + [anon_sym_and] = ACTIONS(5699), + [anon_sym_let] = ACTIONS(5699), + [anon_sym_let_BANG] = ACTIONS(5697), + [anon_sym_LPAREN] = ACTIONS(5699), + [anon_sym_null] = ACTIONS(5699), + [anon_sym_AMP] = ACTIONS(5699), + [anon_sym_LBRACK] = ACTIONS(5699), + [anon_sym_LBRACK_PIPE] = ACTIONS(5697), + [anon_sym_LBRACE] = ACTIONS(5699), + [anon_sym_LT_AT] = ACTIONS(5699), + [anon_sym_LT_AT_AT] = ACTIONS(5697), + [anon_sym_LBRACE_PIPE] = ACTIONS(5697), + [anon_sym_new] = ACTIONS(5699), + [anon_sym_return_BANG] = ACTIONS(5697), + [anon_sym_yield] = ACTIONS(5699), + [anon_sym_yield_BANG] = ACTIONS(5697), + [anon_sym_lazy] = ACTIONS(5699), + [anon_sym_assert] = ACTIONS(5699), + [anon_sym_upcast] = ACTIONS(5699), + [anon_sym_downcast] = ACTIONS(5699), + [anon_sym_for] = ACTIONS(5699), + [anon_sym_while] = ACTIONS(5699), + [anon_sym_if] = ACTIONS(5699), + [anon_sym_fun] = ACTIONS(5699), + [anon_sym_try] = ACTIONS(5699), + [anon_sym_match] = ACTIONS(5699), + [anon_sym_match_BANG] = ACTIONS(5697), + [anon_sym_function] = ACTIONS(5699), + [anon_sym_use] = ACTIONS(5699), + [anon_sym_use_BANG] = ACTIONS(5697), + [anon_sym_do_BANG] = ACTIONS(5697), + [anon_sym_begin] = ACTIONS(5699), + [aux_sym_char_token1] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5699), + [anon_sym_DQUOTE] = ACTIONS(5699), + [anon_sym_AT_DQUOTE] = ACTIONS(5697), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5697), + [sym_bool] = ACTIONS(5699), + [sym_unit] = ACTIONS(5697), + [anon_sym_LPAREN_PIPE] = ACTIONS(5699), + [sym_op_identifier] = ACTIONS(5697), + [anon_sym_PLUS] = ACTIONS(5699), + [anon_sym_DASH] = ACTIONS(5699), + [anon_sym_PLUS_DOT] = ACTIONS(5697), + [anon_sym_DASH_DOT] = ACTIONS(5697), + [anon_sym_PERCENT] = ACTIONS(5697), + [anon_sym_AMP_AMP] = ACTIONS(5697), + [anon_sym_TILDE] = ACTIONS(5697), + [aux_sym_prefix_op_token1] = ACTIONS(5697), + [sym_int] = ACTIONS(5699), + [sym_xint] = ACTIONS(5697), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5697), + }, + [3531] = { + [sym_xml_doc] = STATE(3531), + [sym_block_comment] = STATE(3531), + [sym_line_comment] = STATE(3531), + [sym_compiler_directive_decl] = STATE(3531), + [sym_fsi_directive_decl] = STATE(3531), + [sym_preproc_line] = STATE(3531), + [sym_identifier] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_and] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_let_BANG] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_null] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LBRACK_PIPE] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_LT_AT] = ACTIONS(3438), + [anon_sym_LT_AT_AT] = ACTIONS(3440), + [anon_sym_LBRACE_PIPE] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_return_BANG] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_yield_BANG] = ACTIONS(3440), + [anon_sym_lazy] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_upcast] = ACTIONS(3438), + [anon_sym_downcast] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_fun] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_match_BANG] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_use] = ACTIONS(3438), + [anon_sym_use_BANG] = ACTIONS(3440), + [anon_sym_do_BANG] = ACTIONS(3440), + [anon_sym_begin] = ACTIONS(3438), + [aux_sym_char_token1] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(3438), + [anon_sym_AT_DQUOTE] = ACTIONS(3440), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3440), + [sym_bool] = ACTIONS(3438), + [sym_unit] = ACTIONS(3440), + [anon_sym_LPAREN_PIPE] = ACTIONS(3438), + [sym_op_identifier] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_PLUS_DOT] = ACTIONS(3440), + [anon_sym_DASH_DOT] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [aux_sym_prefix_op_token1] = ACTIONS(3440), + [sym_int] = ACTIONS(3438), + [sym_xint] = ACTIONS(3440), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(3440), + }, + [3532] = { + [sym_xml_doc] = STATE(3532), + [sym_block_comment] = STATE(3532), + [sym_line_comment] = STATE(3532), + [sym_compiler_directive_decl] = STATE(3532), + [sym_fsi_directive_decl] = STATE(3532), + [sym_preproc_line] = STATE(3532), + [aux_sym_prefix_op_repeat1] = STATE(3532), + [sym_identifier] = ACTIONS(6020), + [anon_sym_return] = ACTIONS(6020), + [anon_sym_do] = ACTIONS(6020), + [anon_sym_let] = ACTIONS(6020), + [anon_sym_let_BANG] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(6020), + [anon_sym_null] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6020), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_LBRACK_PIPE] = ACTIONS(6022), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_LT_AT] = ACTIONS(6020), + [anon_sym_LT_AT_AT] = ACTIONS(6022), + [anon_sym_LBRACE_PIPE] = ACTIONS(6022), + [anon_sym_new] = ACTIONS(6020), + [anon_sym_return_BANG] = ACTIONS(6022), + [anon_sym_yield] = ACTIONS(6020), + [anon_sym_yield_BANG] = ACTIONS(6022), + [anon_sym_lazy] = ACTIONS(6020), + [anon_sym_assert] = ACTIONS(6020), + [anon_sym_upcast] = ACTIONS(6020), + [anon_sym_downcast] = ACTIONS(6020), + [anon_sym_for] = ACTIONS(6020), + [anon_sym_while] = ACTIONS(6020), + [anon_sym_if] = ACTIONS(6020), + [anon_sym_fun] = ACTIONS(6020), + [anon_sym_try] = ACTIONS(6020), + [anon_sym_match] = ACTIONS(6020), + [anon_sym_match_BANG] = ACTIONS(6022), + [anon_sym_function] = ACTIONS(6020), + [anon_sym_use] = ACTIONS(6020), + [anon_sym_use_BANG] = ACTIONS(6022), + [anon_sym_do_BANG] = ACTIONS(6022), + [anon_sym_begin] = ACTIONS(6020), + [aux_sym_char_token1] = ACTIONS(6022), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6020), + [anon_sym_DQUOTE] = ACTIONS(6020), + [anon_sym_AT_DQUOTE] = ACTIONS(6022), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6022), + [sym_bool] = ACTIONS(6020), + [sym_unit] = ACTIONS(6022), + [anon_sym_LPAREN_PIPE] = ACTIONS(6020), + [sym_op_identifier] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6020), + [anon_sym_PLUS_DOT] = ACTIONS(6022), + [anon_sym_DASH_DOT] = ACTIONS(6022), + [anon_sym_PERCENT] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6022), + [anon_sym_TILDE] = ACTIONS(6024), + [aux_sym_prefix_op_token1] = ACTIONS(6022), + [sym_int] = ACTIONS(6020), + [sym_xint] = ACTIONS(6022), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6022), + }, + [3533] = { + [sym_xml_doc] = STATE(3533), + [sym_block_comment] = STATE(3533), + [sym_line_comment] = STATE(3533), + [sym_compiler_directive_decl] = STATE(3533), + [sym_fsi_directive_decl] = STATE(3533), + [sym_preproc_line] = STATE(3533), + [sym_identifier] = ACTIONS(5860), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_let] = ACTIONS(5860), + [anon_sym_let_BANG] = ACTIONS(5858), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_LBRACK_PIPE] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5860), + [anon_sym_LT_AT] = ACTIONS(5860), + [anon_sym_LT_AT_AT] = ACTIONS(5858), + [anon_sym_LBRACE_PIPE] = ACTIONS(5858), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_return_BANG] = ACTIONS(5858), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_yield_BANG] = ACTIONS(5858), + [anon_sym_lazy] = ACTIONS(5860), + [anon_sym_assert] = ACTIONS(5860), + [anon_sym_upcast] = ACTIONS(5860), + [anon_sym_downcast] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_fun] = ACTIONS(5860), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_match_BANG] = ACTIONS(5858), + [anon_sym_function] = ACTIONS(5860), + [anon_sym_use] = ACTIONS(5860), + [anon_sym_use_BANG] = ACTIONS(5858), + [anon_sym_do_BANG] = ACTIONS(5858), + [anon_sym_begin] = ACTIONS(5860), + [aux_sym_char_token1] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(5860), + [anon_sym_AT_DQUOTE] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [sym_bool] = ACTIONS(5860), + [sym_unit] = ACTIONS(5858), + [anon_sym_LPAREN_PIPE] = ACTIONS(5860), + [sym_op_identifier] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_PLUS_DOT] = ACTIONS(5858), + [anon_sym_DASH_DOT] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [aux_sym_prefix_op_token1] = ACTIONS(5858), + [sym_int] = ACTIONS(5860), + [sym_xint] = ACTIONS(5858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5858), + [anon_sym_POUNDendif] = ACTIONS(5858), + }, + [3534] = { + [sym_xml_doc] = STATE(3534), + [sym_block_comment] = STATE(3534), + [sym_line_comment] = STATE(3534), + [sym_compiler_directive_decl] = STATE(3534), + [sym_fsi_directive_decl] = STATE(3534), + [sym_preproc_line] = STATE(3534), + [sym_identifier] = ACTIONS(5713), + [anon_sym_return] = ACTIONS(5713), + [anon_sym_do] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_let] = ACTIONS(5713), + [anon_sym_let_BANG] = ACTIONS(5711), + [anon_sym_LPAREN] = ACTIONS(5713), + [anon_sym_null] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_LBRACK_PIPE] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_LT_AT] = ACTIONS(5713), + [anon_sym_LT_AT_AT] = ACTIONS(5711), + [anon_sym_LBRACE_PIPE] = ACTIONS(5711), + [anon_sym_new] = ACTIONS(5713), + [anon_sym_return_BANG] = ACTIONS(5711), + [anon_sym_yield] = ACTIONS(5713), + [anon_sym_yield_BANG] = ACTIONS(5711), + [anon_sym_lazy] = ACTIONS(5713), + [anon_sym_assert] = ACTIONS(5713), + [anon_sym_upcast] = ACTIONS(5713), + [anon_sym_downcast] = ACTIONS(5713), + [anon_sym_for] = ACTIONS(5713), + [anon_sym_while] = ACTIONS(5713), + [anon_sym_if] = ACTIONS(5713), + [anon_sym_fun] = ACTIONS(5713), + [anon_sym_try] = ACTIONS(5713), + [anon_sym_match] = ACTIONS(5713), + [anon_sym_match_BANG] = ACTIONS(5711), + [anon_sym_function] = ACTIONS(5713), + [anon_sym_use] = ACTIONS(5713), + [anon_sym_use_BANG] = ACTIONS(5711), + [anon_sym_do_BANG] = ACTIONS(5711), + [anon_sym_begin] = ACTIONS(5713), + [aux_sym_char_token1] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5713), + [anon_sym_DQUOTE] = ACTIONS(5713), + [anon_sym_AT_DQUOTE] = ACTIONS(5711), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5711), + [sym_bool] = ACTIONS(5713), + [sym_unit] = ACTIONS(5711), + [anon_sym_LPAREN_PIPE] = ACTIONS(5713), + [sym_op_identifier] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS_DOT] = ACTIONS(5711), + [anon_sym_DASH_DOT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_TILDE] = ACTIONS(5711), + [aux_sym_prefix_op_token1] = ACTIONS(5711), + [sym_int] = ACTIONS(5713), + [sym_xint] = ACTIONS(5711), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5711), + }, + [3535] = { + [sym_xml_doc] = STATE(3535), + [sym_block_comment] = STATE(3535), + [sym_line_comment] = STATE(3535), + [sym_compiler_directive_decl] = STATE(3535), + [sym_fsi_directive_decl] = STATE(3535), + [sym_preproc_line] = STATE(3535), + [sym_identifier] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_BANG] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LBRACK_PIPE] = ACTIONS(6029), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_LT_AT] = ACTIONS(6027), + [anon_sym_LT_AT_AT] = ACTIONS(6029), + [anon_sym_LBRACE_PIPE] = ACTIONS(6029), + [anon_sym_new] = ACTIONS(6027), + [anon_sym_return_BANG] = ACTIONS(6029), + [anon_sym_yield] = ACTIONS(6027), + [anon_sym_yield_BANG] = ACTIONS(6029), + [anon_sym_lazy] = ACTIONS(6027), + [anon_sym_assert] = ACTIONS(6027), + [anon_sym_upcast] = ACTIONS(6027), + [anon_sym_downcast] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_fun] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_match_BANG] = ACTIONS(6029), + [anon_sym_function] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_use_BANG] = ACTIONS(6029), + [anon_sym_do_BANG] = ACTIONS(6029), + [anon_sym_begin] = ACTIONS(6027), + [aux_sym_char_token1] = ACTIONS(6029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_AT_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6029), + [sym_bool] = ACTIONS(6027), + [sym_unit] = ACTIONS(6029), + [anon_sym_LPAREN_PIPE] = ACTIONS(6027), + [sym_op_identifier] = ACTIONS(6029), + [anon_sym_PLUS] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_PLUS_DOT] = ACTIONS(6029), + [anon_sym_DASH_DOT] = ACTIONS(6029), + [anon_sym_PERCENT] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_TILDE] = ACTIONS(6029), + [aux_sym_prefix_op_token1] = ACTIONS(6029), + [sym_int] = ACTIONS(6027), + [sym_xint] = ACTIONS(6029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6029), + }, + [3536] = { + [sym_xml_doc] = STATE(3536), + [sym_block_comment] = STATE(3536), + [sym_line_comment] = STATE(3536), + [sym_compiler_directive_decl] = STATE(3536), + [sym_fsi_directive_decl] = STATE(3536), + [sym_preproc_line] = STATE(3536), + [sym_identifier] = ACTIONS(6027), + [anon_sym_return] = ACTIONS(6027), + [anon_sym_do] = ACTIONS(6027), + [anon_sym_let] = ACTIONS(6027), + [anon_sym_let_BANG] = ACTIONS(6029), + [anon_sym_LPAREN] = ACTIONS(6027), + [anon_sym_null] = ACTIONS(6027), + [anon_sym_AMP] = ACTIONS(6027), + [anon_sym_LBRACK] = ACTIONS(6027), + [anon_sym_LBRACK_PIPE] = ACTIONS(6029), + [anon_sym_LBRACE] = ACTIONS(6027), + [anon_sym_LT_AT] = ACTIONS(6027), + [anon_sym_LT_AT_AT] = ACTIONS(6029), + [anon_sym_LBRACE_PIPE] = ACTIONS(6029), + [anon_sym_new] = ACTIONS(6027), + [anon_sym_return_BANG] = ACTIONS(6029), + [anon_sym_yield] = ACTIONS(6027), + [anon_sym_yield_BANG] = ACTIONS(6029), + [anon_sym_lazy] = ACTIONS(6027), + [anon_sym_assert] = ACTIONS(6027), + [anon_sym_upcast] = ACTIONS(6027), + [anon_sym_downcast] = ACTIONS(6027), + [anon_sym_for] = ACTIONS(6027), + [anon_sym_while] = ACTIONS(6027), + [anon_sym_if] = ACTIONS(6027), + [anon_sym_fun] = ACTIONS(6027), + [anon_sym_try] = ACTIONS(6027), + [anon_sym_match] = ACTIONS(6027), + [anon_sym_match_BANG] = ACTIONS(6029), + [anon_sym_function] = ACTIONS(6027), + [anon_sym_use] = ACTIONS(6027), + [anon_sym_use_BANG] = ACTIONS(6029), + [anon_sym_do_BANG] = ACTIONS(6029), + [anon_sym_begin] = ACTIONS(6027), + [aux_sym_char_token1] = ACTIONS(6029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6027), + [anon_sym_DQUOTE] = ACTIONS(6027), + [anon_sym_AT_DQUOTE] = ACTIONS(6029), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6029), + [sym_bool] = ACTIONS(6027), + [sym_unit] = ACTIONS(6029), + [anon_sym_LPAREN_PIPE] = ACTIONS(6027), + [sym_op_identifier] = ACTIONS(6029), + [anon_sym_PLUS] = ACTIONS(6027), + [anon_sym_DASH] = ACTIONS(6027), + [anon_sym_PLUS_DOT] = ACTIONS(6029), + [anon_sym_DASH_DOT] = ACTIONS(6029), + [anon_sym_PERCENT] = ACTIONS(6029), + [anon_sym_AMP_AMP] = ACTIONS(6029), + [anon_sym_TILDE] = ACTIONS(6029), + [aux_sym_prefix_op_token1] = ACTIONS(6029), + [sym_int] = ACTIONS(6027), + [sym_xint] = ACTIONS(6029), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6029), + }, + [3537] = { + [sym_xml_doc] = STATE(3537), + [sym_block_comment] = STATE(3537), + [sym_line_comment] = STATE(3537), + [sym_compiler_directive_decl] = STATE(3537), + [sym_fsi_directive_decl] = STATE(3537), + [sym_preproc_line] = STATE(3537), + [sym_identifier] = ACTIONS(5860), + [anon_sym_return] = ACTIONS(5860), + [anon_sym_do] = ACTIONS(5860), + [anon_sym_let] = ACTIONS(5860), + [anon_sym_let_BANG] = ACTIONS(5858), + [anon_sym_LPAREN] = ACTIONS(5860), + [anon_sym_null] = ACTIONS(5860), + [anon_sym_AMP] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5860), + [anon_sym_LBRACK_PIPE] = ACTIONS(5858), + [anon_sym_LBRACE] = ACTIONS(5860), + [anon_sym_LT_AT] = ACTIONS(5860), + [anon_sym_LT_AT_AT] = ACTIONS(5858), + [anon_sym_LBRACE_PIPE] = ACTIONS(5858), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_return_BANG] = ACTIONS(5858), + [anon_sym_yield] = ACTIONS(5860), + [anon_sym_yield_BANG] = ACTIONS(5858), + [anon_sym_lazy] = ACTIONS(5860), + [anon_sym_assert] = ACTIONS(5860), + [anon_sym_upcast] = ACTIONS(5860), + [anon_sym_downcast] = ACTIONS(5860), + [anon_sym_for] = ACTIONS(5860), + [anon_sym_while] = ACTIONS(5860), + [anon_sym_if] = ACTIONS(5860), + [anon_sym_fun] = ACTIONS(5860), + [anon_sym_try] = ACTIONS(5860), + [anon_sym_match] = ACTIONS(5860), + [anon_sym_match_BANG] = ACTIONS(5858), + [anon_sym_function] = ACTIONS(5860), + [anon_sym_use] = ACTIONS(5860), + [anon_sym_use_BANG] = ACTIONS(5858), + [anon_sym_do_BANG] = ACTIONS(5858), + [anon_sym_begin] = ACTIONS(5860), + [aux_sym_char_token1] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(5860), + [anon_sym_AT_DQUOTE] = ACTIONS(5858), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5858), + [sym_bool] = ACTIONS(5860), + [sym_unit] = ACTIONS(5858), + [anon_sym_LPAREN_PIPE] = ACTIONS(5860), + [sym_op_identifier] = ACTIONS(5858), + [anon_sym_PLUS] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_PLUS_DOT] = ACTIONS(5858), + [anon_sym_DASH_DOT] = ACTIONS(5858), + [anon_sym_PERCENT] = ACTIONS(5858), + [anon_sym_AMP_AMP] = ACTIONS(5858), + [anon_sym_TILDE] = ACTIONS(5858), + [aux_sym_prefix_op_token1] = ACTIONS(5858), + [sym_int] = ACTIONS(5860), + [sym_xint] = ACTIONS(5858), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5858), + }, + [3538] = { + [sym_xml_doc] = STATE(3538), + [sym_block_comment] = STATE(3538), + [sym_line_comment] = STATE(3538), + [sym_compiler_directive_decl] = STATE(3538), + [sym_fsi_directive_decl] = STATE(3538), + [sym_preproc_line] = STATE(3538), + [sym_identifier] = ACTIONS(5868), + [anon_sym_return] = ACTIONS(5868), + [anon_sym_do] = ACTIONS(5868), + [anon_sym_let] = ACTIONS(5868), + [anon_sym_let_BANG] = ACTIONS(5866), + [anon_sym_LPAREN] = ACTIONS(5868), + [anon_sym_null] = ACTIONS(5868), + [anon_sym_AMP] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(5868), + [anon_sym_LBRACK_PIPE] = ACTIONS(5866), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_LT_AT] = ACTIONS(5868), + [anon_sym_LT_AT_AT] = ACTIONS(5866), + [anon_sym_LBRACE_PIPE] = ACTIONS(5866), + [anon_sym_new] = ACTIONS(5868), + [anon_sym_return_BANG] = ACTIONS(5866), + [anon_sym_yield] = ACTIONS(5868), + [anon_sym_yield_BANG] = ACTIONS(5866), + [anon_sym_lazy] = ACTIONS(5868), + [anon_sym_assert] = ACTIONS(5868), + [anon_sym_upcast] = ACTIONS(5868), + [anon_sym_downcast] = ACTIONS(5868), + [anon_sym_for] = ACTIONS(5868), + [anon_sym_while] = ACTIONS(5868), + [anon_sym_if] = ACTIONS(5868), + [anon_sym_fun] = ACTIONS(5868), + [anon_sym_try] = ACTIONS(5868), + [anon_sym_match] = ACTIONS(5868), + [anon_sym_match_BANG] = ACTIONS(5866), + [anon_sym_function] = ACTIONS(5868), + [anon_sym_use] = ACTIONS(5868), + [anon_sym_use_BANG] = ACTIONS(5866), + [anon_sym_do_BANG] = ACTIONS(5866), + [anon_sym_begin] = ACTIONS(5868), + [aux_sym_char_token1] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(5868), + [anon_sym_AT_DQUOTE] = ACTIONS(5866), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5866), + [sym_bool] = ACTIONS(5868), + [sym_unit] = ACTIONS(5866), + [anon_sym_LPAREN_PIPE] = ACTIONS(5868), + [sym_op_identifier] = ACTIONS(5866), + [anon_sym_PLUS] = ACTIONS(5868), + [anon_sym_DASH] = ACTIONS(5868), + [anon_sym_PLUS_DOT] = ACTIONS(5866), + [anon_sym_DASH_DOT] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_TILDE] = ACTIONS(5866), + [aux_sym_prefix_op_token1] = ACTIONS(5866), + [sym_int] = ACTIONS(5868), + [sym_xint] = ACTIONS(5866), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(5866), + }, + [3539] = { + [sym_xml_doc] = STATE(3539), + [sym_block_comment] = STATE(3539), + [sym_line_comment] = STATE(3539), + [sym_compiler_directive_decl] = STATE(3539), + [sym_fsi_directive_decl] = STATE(3539), + [sym_preproc_line] = STATE(3539), + [sym_identifier] = ACTIONS(6016), + [anon_sym_return] = ACTIONS(6016), + [anon_sym_do] = ACTIONS(6016), + [anon_sym_let] = ACTIONS(6016), + [anon_sym_let_BANG] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(6016), + [anon_sym_null] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_LBRACK_PIPE] = ACTIONS(6018), + [anon_sym_LBRACE] = ACTIONS(6016), + [anon_sym_LT_AT] = ACTIONS(6016), + [anon_sym_LT_AT_AT] = ACTIONS(6018), + [anon_sym_LBRACE_PIPE] = ACTIONS(6018), + [anon_sym_new] = ACTIONS(6016), + [anon_sym_return_BANG] = ACTIONS(6018), + [anon_sym_yield] = ACTIONS(6016), + [anon_sym_yield_BANG] = ACTIONS(6018), + [anon_sym_lazy] = ACTIONS(6016), + [anon_sym_assert] = ACTIONS(6016), + [anon_sym_upcast] = ACTIONS(6016), + [anon_sym_downcast] = ACTIONS(6016), + [anon_sym_for] = ACTIONS(6016), + [anon_sym_while] = ACTIONS(6016), + [anon_sym_if] = ACTIONS(6016), + [anon_sym_fun] = ACTIONS(6016), + [anon_sym_try] = ACTIONS(6016), + [anon_sym_match] = ACTIONS(6016), + [anon_sym_match_BANG] = ACTIONS(6018), + [anon_sym_function] = ACTIONS(6016), + [anon_sym_use] = ACTIONS(6016), + [anon_sym_use_BANG] = ACTIONS(6018), + [anon_sym_do_BANG] = ACTIONS(6018), + [anon_sym_begin] = ACTIONS(6016), + [aux_sym_char_token1] = ACTIONS(6018), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(6016), + [anon_sym_AT_DQUOTE] = ACTIONS(6018), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6018), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6018), + [sym_bool] = ACTIONS(6016), + [sym_unit] = ACTIONS(6018), + [anon_sym_LPAREN_PIPE] = ACTIONS(6016), + [sym_op_identifier] = ACTIONS(6018), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_PLUS_DOT] = ACTIONS(6018), + [anon_sym_DASH_DOT] = ACTIONS(6018), + [anon_sym_PERCENT] = ACTIONS(6018), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_TILDE] = ACTIONS(6018), + [aux_sym_prefix_op_token1] = ACTIONS(6018), + [sym_int] = ACTIONS(6016), + [sym_xint] = ACTIONS(6018), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6018), + }, + [3540] = { + [sym_xml_doc] = STATE(3540), + [sym_block_comment] = STATE(3540), + [sym_line_comment] = STATE(3540), + [sym_compiler_directive_decl] = STATE(3540), + [sym_fsi_directive_decl] = STATE(3540), + [sym_preproc_line] = STATE(3540), + [sym_identifier] = ACTIONS(6031), + [anon_sym_return] = ACTIONS(6031), + [anon_sym_do] = ACTIONS(6031), + [anon_sym_let] = ACTIONS(6031), + [anon_sym_let_BANG] = ACTIONS(6033), + [anon_sym_LPAREN] = ACTIONS(6031), + [anon_sym_null] = ACTIONS(6031), + [anon_sym_AMP] = ACTIONS(6031), + [anon_sym_LBRACK] = ACTIONS(6031), + [anon_sym_LBRACK_PIPE] = ACTIONS(6033), + [anon_sym_LBRACE] = ACTIONS(6031), + [anon_sym_LT_AT] = ACTIONS(6031), + [anon_sym_LT_AT_AT] = ACTIONS(6033), + [anon_sym_LBRACE_PIPE] = ACTIONS(6033), + [anon_sym_new] = ACTIONS(6031), + [anon_sym_return_BANG] = ACTIONS(6033), + [anon_sym_yield] = ACTIONS(6031), + [anon_sym_yield_BANG] = ACTIONS(6033), + [anon_sym_lazy] = ACTIONS(6031), + [anon_sym_assert] = ACTIONS(6031), + [anon_sym_upcast] = ACTIONS(6031), + [anon_sym_downcast] = ACTIONS(6031), + [anon_sym_for] = ACTIONS(6031), + [anon_sym_while] = ACTIONS(6031), + [anon_sym_if] = ACTIONS(6031), + [anon_sym_fun] = ACTIONS(6031), + [anon_sym_try] = ACTIONS(6031), + [anon_sym_match] = ACTIONS(6031), + [anon_sym_match_BANG] = ACTIONS(6033), + [anon_sym_function] = ACTIONS(6031), + [anon_sym_use] = ACTIONS(6031), + [anon_sym_use_BANG] = ACTIONS(6033), + [anon_sym_do_BANG] = ACTIONS(6033), + [anon_sym_begin] = ACTIONS(6031), + [aux_sym_char_token1] = ACTIONS(6033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6031), + [anon_sym_DQUOTE] = ACTIONS(6031), + [anon_sym_AT_DQUOTE] = ACTIONS(6033), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6033), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6033), + [sym_bool] = ACTIONS(6031), + [sym_unit] = ACTIONS(6033), + [anon_sym_LPAREN_PIPE] = ACTIONS(6031), + [sym_op_identifier] = ACTIONS(6033), + [anon_sym_PLUS] = ACTIONS(6031), + [anon_sym_DASH] = ACTIONS(6031), + [anon_sym_PLUS_DOT] = ACTIONS(6033), + [anon_sym_DASH_DOT] = ACTIONS(6033), + [anon_sym_PERCENT] = ACTIONS(6033), + [anon_sym_AMP_AMP] = ACTIONS(6033), + [anon_sym_TILDE] = ACTIONS(6033), + [aux_sym_prefix_op_token1] = ACTIONS(6033), + [sym_int] = ACTIONS(6031), + [sym_xint] = ACTIONS(6033), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6033), + }, + [3541] = { + [sym_xml_doc] = STATE(3541), + [sym_block_comment] = STATE(3541), + [sym_line_comment] = STATE(3541), + [sym_compiler_directive_decl] = STATE(3541), + [sym_fsi_directive_decl] = STATE(3541), + [sym_preproc_line] = STATE(3541), + [sym_identifier] = ACTIONS(6035), + [anon_sym_return] = ACTIONS(6035), + [anon_sym_do] = ACTIONS(6035), + [anon_sym_let] = ACTIONS(6035), + [anon_sym_let_BANG] = ACTIONS(6037), + [anon_sym_LPAREN] = ACTIONS(6035), + [anon_sym_null] = ACTIONS(6035), + [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_LBRACK] = ACTIONS(6035), + [anon_sym_LBRACK_PIPE] = ACTIONS(6037), + [anon_sym_LBRACE] = ACTIONS(6035), + [anon_sym_LT_AT] = ACTIONS(6035), + [anon_sym_LT_AT_AT] = ACTIONS(6037), + [anon_sym_LBRACE_PIPE] = ACTIONS(6037), + [anon_sym_new] = ACTIONS(6035), + [anon_sym_return_BANG] = ACTIONS(6037), + [anon_sym_yield] = ACTIONS(6035), + [anon_sym_yield_BANG] = ACTIONS(6037), + [anon_sym_lazy] = ACTIONS(6035), + [anon_sym_assert] = ACTIONS(6035), + [anon_sym_upcast] = ACTIONS(6035), + [anon_sym_downcast] = ACTIONS(6035), + [anon_sym_for] = ACTIONS(6035), + [anon_sym_while] = ACTIONS(6035), + [anon_sym_if] = ACTIONS(6035), + [anon_sym_fun] = ACTIONS(6035), + [anon_sym_try] = ACTIONS(6035), + [anon_sym_match] = ACTIONS(6035), + [anon_sym_match_BANG] = ACTIONS(6037), + [anon_sym_function] = ACTIONS(6035), + [anon_sym_use] = ACTIONS(6035), + [anon_sym_use_BANG] = ACTIONS(6037), + [anon_sym_do_BANG] = ACTIONS(6037), + [anon_sym_begin] = ACTIONS(6035), + [aux_sym_char_token1] = ACTIONS(6037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(6035), + [anon_sym_DQUOTE] = ACTIONS(6035), + [anon_sym_AT_DQUOTE] = ACTIONS(6037), + [anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6037), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6037), + [sym_bool] = ACTIONS(6035), + [sym_unit] = ACTIONS(6037), + [anon_sym_LPAREN_PIPE] = ACTIONS(6035), + [sym_op_identifier] = ACTIONS(6037), + [anon_sym_PLUS] = ACTIONS(6035), + [anon_sym_DASH] = ACTIONS(6035), + [anon_sym_PLUS_DOT] = ACTIONS(6037), + [anon_sym_DASH_DOT] = ACTIONS(6037), + [anon_sym_PERCENT] = ACTIONS(6037), + [anon_sym_AMP_AMP] = ACTIONS(6037), + [anon_sym_TILDE] = ACTIONS(6037), + [aux_sym_prefix_op_token1] = ACTIONS(6037), + [sym_int] = ACTIONS(6035), + [sym_xint] = ACTIONS(6037), + [anon_sym_SLASH_SLASH_SLASH] = ACTIONS(113), + [anon_sym_LPAREN_STAR] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(7), + [anon_sym_POUNDnowarn] = ACTIONS(9), + [anon_sym_POUNDr] = ACTIONS(11), + [anon_sym_POUNDload] = ACTIONS(13), + [aux_sym_preproc_line_token1] = ACTIONS(13), + [anon_sym_POUNDif] = ACTIONS(6037), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 33, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5617), 1, + anon_sym_LT2, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3545), 1, + aux_sym_argument_patterns_repeat1, + STATE(3552), 1, + sym_type_arguments, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(6607), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3542), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [131] = 33, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5617), 1, + anon_sym_LT2, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3545), 1, + aux_sym_argument_patterns_repeat1, + STATE(3548), 1, + sym_type_arguments, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(6657), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3543), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [262] = 30, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6044), 1, + anon_sym_LPAREN, + ACTIONS(6050), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(6056), 1, + anon_sym_LBRACE, + ACTIONS(6059), 1, + aux_sym_char_token1, + ACTIONS(6062), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6065), 1, + anon_sym_DQUOTE, + ACTIONS(6068), 1, + anon_sym_AT_DQUOTE, + ACTIONS(6071), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6074), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6077), 1, + sym_bool, + ACTIONS(6080), 1, + sym_unit, + ACTIONS(6083), 1, + sym_int, + ACTIONS(6086), 1, + sym_xint, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6042), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6047), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3544), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_argument_patterns_repeat1, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [386] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3544), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + ACTIONS(6089), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3545), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [512] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7578), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3546), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [637] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3545), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(6607), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3547), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [762] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3545), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(6672), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3548), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [887] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(8355), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3549), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1012] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7276), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3550), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1137] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7651), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3551), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1262] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3545), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(6657), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3552), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1387] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7392), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3553), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1512] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7540), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3554), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1637] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7336), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3555), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1762] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7446), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3556), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [1887] = 30, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6042), 1, + anon_sym_DASH_GT, + ACTIONS(6044), 1, + anon_sym_LPAREN, + ACTIONS(6050), 1, + anon_sym_LBRACK, + ACTIONS(6053), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(6059), 1, + aux_sym_char_token1, + ACTIONS(6062), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6065), 1, + anon_sym_DQUOTE, + ACTIONS(6068), 1, + anon_sym_AT_DQUOTE, + ACTIONS(6071), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6074), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6077), 1, + sym_bool, + ACTIONS(6080), 1, + sym_unit, + ACTIONS(6083), 1, + sym_int, + ACTIONS(6086), 1, + sym_xint, + ACTIONS(6093), 1, + anon_sym_LBRACE, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6047), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3557), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_argument_patterns_repeat1, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2010] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7429), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3558), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2135] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6089), 1, + anon_sym_DASH_GT, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3557), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3559), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2260] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7615), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3560), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2385] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7234), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3561), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2510] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7201), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3562), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2635] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, + anon_sym_LBRACK_PIPE, + ACTIONS(5619), 1, + aux_sym_char_token1, + ACTIONS(5621), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(5625), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5631), 1, + sym_bool, + ACTIONS(5633), 1, + sym_unit, + ACTIONS(5635), 1, + sym_int, + ACTIONS(5637), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6091), 1, + anon_sym_LBRACE, + STATE(3559), 1, + aux_sym_argument_patterns_repeat1, + STATE(4269), 1, + sym_float, + STATE(4407), 1, + sym__atomic_pattern, + STATE(4663), 1, + sym_format_triple_quoted_string, + STATE(7500), 1, + sym_argument_patterns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5609), 2, + anon_sym_null, + anon_sym__, + STATE(4664), 2, + sym_format_string, + sym__string_literal, + STATE(4440), 5, + sym_list_pattern, + sym_array_pattern, + sym_record_pattern, + sym_const, + sym_long_identifier, + STATE(3563), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4700), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [2760] = 23, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6096), 1, + anon_sym_y, + ACTIONS(6098), 1, + anon_sym_uy, + ACTIONS(6100), 1, + anon_sym_s, + ACTIONS(6102), 1, + anon_sym_us, + ACTIONS(6104), 1, + anon_sym_l, + ACTIONS(6106), 1, + aux_sym_uint32_token1, + ACTIONS(6108), 1, + anon_sym_n, + ACTIONS(6110), 1, + anon_sym_un, + ACTIONS(6112), 1, + anon_sym_L, + ACTIONS(6114), 1, + aux_sym_uint64_token1, + ACTIONS(6116), 1, + aux_sym_bignum_token1, + ACTIONS(6118), 1, + aux_sym_decimal_token1, + ACTIONS(6120), 1, + anon_sym_DOT2, + ACTIONS(6122), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3564), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [2867] = 23, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6124), 1, + anon_sym_y, + ACTIONS(6126), 1, + anon_sym_uy, + ACTIONS(6128), 1, + anon_sym_s, + ACTIONS(6130), 1, + anon_sym_us, + ACTIONS(6132), 1, + anon_sym_l, + ACTIONS(6134), 1, + aux_sym_uint32_token1, + ACTIONS(6136), 1, + anon_sym_n, + ACTIONS(6138), 1, + anon_sym_un, + ACTIONS(6140), 1, + anon_sym_L, + ACTIONS(6142), 1, + aux_sym_uint64_token1, + ACTIONS(6144), 1, + aux_sym_bignum_token1, + ACTIONS(6146), 1, + aux_sym_decimal_token1, + ACTIONS(6148), 1, + anon_sym_DOT2, + ACTIONS(6150), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3565), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [2972] = 23, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6152), 1, + anon_sym_y, + ACTIONS(6154), 1, + anon_sym_uy, + ACTIONS(6156), 1, + anon_sym_s, + ACTIONS(6158), 1, + anon_sym_us, + ACTIONS(6160), 1, + anon_sym_l, + ACTIONS(6162), 1, + aux_sym_uint32_token1, + ACTIONS(6164), 1, + anon_sym_n, + ACTIONS(6166), 1, + anon_sym_un, + ACTIONS(6168), 1, + anon_sym_L, + ACTIONS(6170), 1, + aux_sym_uint64_token1, + ACTIONS(6172), 1, + aux_sym_bignum_token1, + ACTIONS(6174), 1, + aux_sym_decimal_token1, + ACTIONS(6176), 1, + anon_sym_DOT2, + ACTIONS(6178), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3566), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3077] = 21, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6096), 1, + anon_sym_y, + ACTIONS(6098), 1, + anon_sym_uy, + ACTIONS(6100), 1, + anon_sym_s, + ACTIONS(6102), 1, + anon_sym_us, + ACTIONS(6104), 1, + anon_sym_l, + ACTIONS(6106), 1, + aux_sym_uint32_token1, + ACTIONS(6108), 1, + anon_sym_n, + ACTIONS(6110), 1, + anon_sym_un, + ACTIONS(6112), 1, + anon_sym_L, + ACTIONS(6114), 1, + aux_sym_uint64_token1, + ACTIONS(6180), 1, + anon_sym_lf, + ACTIONS(6182), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3567), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3178] = 23, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6184), 1, + anon_sym_y, + ACTIONS(6186), 1, + anon_sym_uy, + ACTIONS(6188), 1, + anon_sym_s, + ACTIONS(6190), 1, + anon_sym_us, + ACTIONS(6192), 1, + anon_sym_l, + ACTIONS(6194), 1, + aux_sym_uint32_token1, + ACTIONS(6196), 1, + anon_sym_n, + ACTIONS(6198), 1, + anon_sym_un, + ACTIONS(6200), 1, + anon_sym_L, + ACTIONS(6202), 1, + aux_sym_uint64_token1, + ACTIONS(6204), 1, + aux_sym_bignum_token1, + ACTIONS(6206), 1, + aux_sym_decimal_token1, + ACTIONS(6208), 1, + anon_sym_DOT2, + ACTIONS(6210), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3568), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 17, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3282] = 21, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6124), 1, + anon_sym_y, + ACTIONS(6126), 1, + anon_sym_uy, + ACTIONS(6128), 1, + anon_sym_s, + ACTIONS(6130), 1, + anon_sym_us, + ACTIONS(6132), 1, + anon_sym_l, + ACTIONS(6134), 1, + aux_sym_uint32_token1, + ACTIONS(6136), 1, + anon_sym_n, + ACTIONS(6138), 1, + anon_sym_un, + ACTIONS(6140), 1, + anon_sym_L, + ACTIONS(6142), 1, + aux_sym_uint64_token1, + ACTIONS(6212), 1, + anon_sym_lf, + ACTIONS(6214), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3569), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3381] = 21, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6152), 1, + anon_sym_y, + ACTIONS(6154), 1, + anon_sym_uy, + ACTIONS(6156), 1, + anon_sym_s, + ACTIONS(6158), 1, + anon_sym_us, + ACTIONS(6160), 1, + anon_sym_l, + ACTIONS(6162), 1, + aux_sym_uint32_token1, + ACTIONS(6164), 1, + anon_sym_n, + ACTIONS(6166), 1, + anon_sym_un, + ACTIONS(6168), 1, + anon_sym_L, + ACTIONS(6170), 1, + aux_sym_uint64_token1, + ACTIONS(6216), 1, + anon_sym_lf, + ACTIONS(6218), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3570), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3480] = 21, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6184), 1, + anon_sym_y, + ACTIONS(6186), 1, + anon_sym_uy, + ACTIONS(6188), 1, + anon_sym_s, + ACTIONS(6190), 1, + anon_sym_us, + ACTIONS(6192), 1, + anon_sym_l, + ACTIONS(6194), 1, + aux_sym_uint32_token1, + ACTIONS(6196), 1, + anon_sym_n, + ACTIONS(6198), 1, + anon_sym_un, + ACTIONS(6200), 1, + anon_sym_L, + ACTIONS(6202), 1, + aux_sym_uint64_token1, + ACTIONS(6220), 1, + anon_sym_lf, + ACTIONS(6222), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3571), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 17, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3578] = 23, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6224), 1, + anon_sym_y, + ACTIONS(6226), 1, + anon_sym_uy, + ACTIONS(6228), 1, + anon_sym_s, + ACTIONS(6230), 1, + anon_sym_us, + ACTIONS(6232), 1, + anon_sym_l, + ACTIONS(6234), 1, + aux_sym_uint32_token1, + ACTIONS(6236), 1, + anon_sym_n, + ACTIONS(6238), 1, + anon_sym_un, + ACTIONS(6240), 1, + anon_sym_L, + ACTIONS(6242), 1, + aux_sym_uint64_token1, + ACTIONS(6244), 1, + aux_sym_bignum_token1, + ACTIONS(6246), 1, + aux_sym_decimal_token1, + ACTIONS(6248), 1, + anon_sym_DOT2, + ACTIONS(6250), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3572), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 11, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2770), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [3678] = 19, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6258), 1, + anon_sym_DASH_GT, + ACTIONS(6260), 1, + anon_sym_when, + ACTIONS(6262), 1, + anon_sym_STAR, + ACTIONS(6264), 1, + anon_sym_LT2, + ACTIONS(6266), 1, + anon_sym_LBRACK_RBRACK, + STATE(3606), 1, + aux_sym__compound_type_repeat1, + STATE(3636), 1, + sym_type_arguments, + STATE(3645), 1, + sym_long_identifier, + STATE(3950), 1, + sym_type_argument_constraints, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3573), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6256), 11, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(6254), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3769] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6268), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3574), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3276), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3841] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3575), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3032), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3030), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [3927] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3576), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3024), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3022), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4013] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6281), 1, + anon_sym_or, + STATE(3588), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3577), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3230), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3232), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4087] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6258), 1, + anon_sym_DASH_GT, + ACTIONS(6262), 1, + anon_sym_STAR, + ACTIONS(6264), 1, + anon_sym_LT2, + ACTIONS(6266), 1, + anon_sym_LBRACK_RBRACK, + STATE(3606), 1, + aux_sym__compound_type_repeat1, + STATE(3636), 1, + sym_type_arguments, + STATE(3645), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3578), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3024), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3022), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4173] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6258), 1, + anon_sym_DASH_GT, + ACTIONS(6262), 1, + anon_sym_STAR, + ACTIONS(6264), 1, + anon_sym_LT2, + ACTIONS(6266), 1, + anon_sym_LBRACK_RBRACK, + STATE(3606), 1, + aux_sym__compound_type_repeat1, + STATE(3636), 1, + sym_type_arguments, + STATE(3645), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3579), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3032), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3030), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4259] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6258), 1, + anon_sym_DASH_GT, + ACTIONS(6262), 1, + anon_sym_STAR, + ACTIONS(6264), 1, + anon_sym_LT2, + ACTIONS(6266), 1, + anon_sym_LBRACK_RBRACK, + STATE(3606), 1, + aux_sym__compound_type_repeat1, + STATE(3636), 1, + sym_type_arguments, + STATE(3645), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3580), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3012), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3010), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4345] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3581), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3090), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4431] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6283), 1, + anon_sym_or, + STATE(3587), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3582), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3244), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4505] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3583), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6287), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4589] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6281), 1, + anon_sym_or, + STATE(3577), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3584), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3244), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4663] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6224), 1, + anon_sym_y, + ACTIONS(6226), 1, + anon_sym_uy, + ACTIONS(6228), 1, + anon_sym_s, + ACTIONS(6230), 1, + anon_sym_us, + ACTIONS(6232), 1, + anon_sym_l, + ACTIONS(6234), 1, + aux_sym_uint32_token1, + ACTIONS(6236), 1, + anon_sym_n, + ACTIONS(6238), 1, + anon_sym_un, + ACTIONS(6240), 1, + anon_sym_L, + ACTIONS(6242), 1, + aux_sym_uint64_token1, + ACTIONS(6289), 1, + anon_sym_lf, + ACTIONS(6291), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3585), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 11, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2770), 15, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [4757] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3586), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6293), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6295), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4841] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6283), 1, + anon_sym_or, + STATE(3574), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3587), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3230), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3232), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4915] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6297), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3588), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3276), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [4987] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3589), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3012), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3010), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5073] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(6258), 1, + anon_sym_DASH_GT, + ACTIONS(6262), 1, + anon_sym_STAR, + ACTIONS(6264), 1, + anon_sym_LT2, + ACTIONS(6266), 1, + anon_sym_LBRACK_RBRACK, + STATE(3606), 1, + aux_sym__compound_type_repeat1, + STATE(3636), 1, + sym_type_arguments, + STATE(3645), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3590), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(3090), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5159] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3591), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3274), 14, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3276), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5228] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6300), 1, + anon_sym_DOT, + STATE(3595), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3592), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3202), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3204), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5301] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6302), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3593), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5372] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3594), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3361), 14, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3363), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5441] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6305), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3595), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5512] = 17, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(6273), 1, + anon_sym_DASH_GT, + ACTIONS(6275), 1, + anon_sym_STAR, + ACTIONS(6277), 1, + anon_sym_LT2, + ACTIONS(6279), 1, + anon_sym_LBRACK_RBRACK, + STATE(3604), 1, + aux_sym__compound_type_repeat1, + STATE(3620), 1, + sym_long_identifier, + STATE(3638), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3596), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6310), 11, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + ACTIONS(6308), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5597] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3597), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3274), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3276), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5666] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3598), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3361), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3363), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5735] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6300), 1, + anon_sym_DOT, + STATE(3592), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3599), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3257), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3259), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5808] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3593), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3600), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3202), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3204), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5881] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6312), 1, + anon_sym_DOT, + STATE(3600), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3601), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3257), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3259), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [5954] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6314), 1, + anon_sym_COLON_GT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3602), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3351), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3353), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6024] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3603), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3244), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6092] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6275), 1, + anon_sym_STAR, + STATE(3611), 1, + aux_sym__compound_type_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3604), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3212), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3214), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6164] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6316), 1, + anon_sym_COLON_GT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3605), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3351), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3353), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6234] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6262), 1, + anon_sym_STAR, + STATE(3609), 1, + aux_sym__compound_type_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3606), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3212), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3214), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6306] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3607), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3244), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6374] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3608), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6442] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3609), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3030), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6512] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6321), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3610), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6582] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6323), 1, + anon_sym_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3611), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3030), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6652] = 22, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5794), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5796), 1, + anon_sym_DQUOTE, + ACTIONS(5798), 1, + anon_sym_AT_DQUOTE, + ACTIONS(5800), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5802), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5808), 1, + sym_int, + ACTIONS(5810), 1, + sym_xint, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6326), 1, + aux_sym_char_token1, + STATE(534), 1, + sym_const, + STATE(3458), 1, + sym_float, + STATE(3509), 1, + sym_format_triple_quoted_string, + STATE(6656), 1, + sym_static_parameter_value, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5806), 2, + sym_bool, + sym_unit, + STATE(3518), 2, + sym_format_string, + sym__string_literal, + STATE(3612), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3497), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [6746] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3613), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 23, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6814] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3614), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3351), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3353), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [6881] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6328), 1, + aux_sym_char_token1, + ACTIONS(6330), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6332), 1, + anon_sym_DQUOTE, + ACTIONS(6334), 1, + anon_sym_AT_DQUOTE, + ACTIONS(6336), 1, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6338), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6342), 1, + sym_int, + ACTIONS(6344), 1, + sym_xint, + STATE(6226), 1, + sym_float, + STATE(6681), 1, + sym_const, + STATE(6764), 1, + sym_format_triple_quoted_string, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6340), 2, + sym_bool, + sym_unit, + STATE(6763), 2, + sym_format_string, + sym__string_literal, + STATE(3615), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6791), 20, + sym_char, + sym_string, + sym_verbatim_string, + sym_bytearray, + sym_verbatim_bytearray, + sym_triple_quoted_string, + sym_sbyte, + sym_byte, + sym_int16, + sym_uint16, + sym_int32, + sym_uint32, + sym_nativeint, + sym_unativeint, + sym_int64, + sym_uint64, + sym_ieee32, + sym_ieee64, + sym_bignum, + sym_decimal, + [6972] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3616), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3032), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3030), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [7055] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3617), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3308), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3310), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7122] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6380), 1, + anon_sym_POUNDendif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + STATE(3634), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, + STATE(8049), 1, + sym_preproc_else_in_class_definition, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3618), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [7247] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3619), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3304), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3306), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7314] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3620), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3296), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3298), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7381] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + ACTIONS(6386), 1, + anon_sym_POUNDendif, + STATE(3644), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(7744), 1, + sym_preproc_else_in_class_definition, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3621), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [7506] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6388), 1, + anon_sym_LT2, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3622), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3355), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3357), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7575] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3623), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3300), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3302), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7642] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6118), 1, + aux_sym_decimal_token1, + ACTIONS(6180), 1, + anon_sym_f, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3624), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7713] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3625), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3292), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3294), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7780] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3626), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3318), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3320), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7847] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3627), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3322), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3324), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [7914] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + ACTIONS(6390), 1, + anon_sym_POUNDendif, + STATE(3648), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(7558), 1, + sym_preproc_else_in_class_definition, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3628), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [8039] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3629), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3451), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3453), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8106] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6392), 1, + anon_sym_or, + STATE(3653), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3630), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3244), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [8177] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3631), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3012), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3010), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [8260] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3632), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3024), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3022), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [8343] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6394), 1, + anon_sym_LT2, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3633), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3355), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3357), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8412] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + ACTIONS(6396), 1, + anon_sym_POUNDendif, + STATE(3666), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(8026), 1, + sym_preproc_else_in_class_definition, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3634), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [8537] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3635), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3340), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3342), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8604] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3636), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3336), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3338), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8671] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3637), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3340), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3342), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8738] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3638), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3336), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3338), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8805] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6398), 1, + anon_sym_DOT, + STATE(3656), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3639), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3261), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3264), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8876] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3640), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3351), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3353), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [8943] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3641), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3318), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3320), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9010] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6400), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3642), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3276), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [9079] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3643), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3322), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3324), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9146] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + ACTIONS(6403), 1, + anon_sym_POUNDendif, + STATE(3666), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(7739), 1, + sym_preproc_else_in_class_definition, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3644), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [9271] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3645), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3296), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3298), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9338] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3646), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3090), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [9421] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6405), 1, + sym_int, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3647), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3417), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3419), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9490] = 38, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + ACTIONS(6382), 1, + anon_sym_POUNDelse, + ACTIONS(6384), 1, + sym__newline, + ACTIONS(6407), 1, + anon_sym_POUNDendif, + STATE(3666), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(7553), 1, + sym_preproc_else_in_class_definition, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3648), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [9615] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3649), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3308), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3310), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9682] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6409), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3650), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9751] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3651), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3292), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3294), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9818] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3652), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [9885] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6392), 1, + anon_sym_or, + STATE(3642), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3653), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3230), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3232), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [9956] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3654), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3300), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3302), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10023] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3655), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3304), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3306), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10090] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6398), 1, + anon_sym_DOT, + STATE(3650), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3656), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3202), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3204), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10161] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3657), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3361), 14, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3363), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10227] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3658), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3285), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 22, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10293] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3659), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3032), 11, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3030), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10375] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3660), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 11, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3090), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10457] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3661), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3274), 14, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3276), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10523] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6422), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3662), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 15, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10591] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6428), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3663), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6424), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6426), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [10659] = 19, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6430), 1, + anon_sym_when, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + STATE(4094), 1, + sym_type_argument_constraints, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3664), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6256), 10, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(6254), 14, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10745] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6432), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3665), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3287), 19, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [10813] = 35, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6435), 1, + anon_sym_LBRACK_LT, + ACTIONS(6438), 1, + anon_sym_do, + ACTIONS(6441), 1, + anon_sym_let, + ACTIONS(6444), 1, + anon_sym_let_BANG, + ACTIONS(6447), 1, + aux_sym_access_modifier_token1, + ACTIONS(6450), 1, + anon_sym_new, + ACTIONS(6456), 1, + anon_sym_static, + ACTIONS(6459), 1, + anon_sym_member, + ACTIONS(6462), 1, + anon_sym_interface, + ACTIONS(6465), 1, + anon_sym_abstract, + ACTIONS(6468), 1, + anon_sym_val, + ACTIONS(6471), 1, + anon_sym_inherit, + ACTIONS(6474), 1, + anon_sym_POUNDif, + ACTIONS(6479), 1, + sym__newline, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4884), 1, + sym__class_type_body_inner, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(5104), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6453), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(6477), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3666), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_preproc_if_in_class_definition_repeat1, + [10931] = 23, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6482), 1, + anon_sym_y, + ACTIONS(6484), 1, + anon_sym_uy, + ACTIONS(6486), 1, + anon_sym_s, + ACTIONS(6488), 1, + anon_sym_us, + ACTIONS(6490), 1, + anon_sym_l, + ACTIONS(6492), 1, + aux_sym_uint32_token1, + ACTIONS(6494), 1, + anon_sym_n, + ACTIONS(6496), 1, + anon_sym_un, + ACTIONS(6498), 1, + anon_sym_L, + ACTIONS(6500), 1, + aux_sym_uint64_token1, + ACTIONS(6502), 1, + aux_sym_bignum_token1, + ACTIONS(6504), 1, + aux_sym_decimal_token1, + ACTIONS(6506), 1, + anon_sym_DOT2, + ACTIONS(6508), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3667), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2770), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11025] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6510), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3668), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3276), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11093] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3674), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3669), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3257), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3259), 19, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11163] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3670), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3012), 11, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3010), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11245] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6428), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3671), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3314), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3312), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [11313] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6515), 1, + anon_sym_or, + STATE(3673), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3672), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3244), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11383] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6515), 1, + anon_sym_or, + STATE(3668), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3673), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3230), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3232), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11453] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3665), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3674), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3202), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3204), 19, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11523] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3675), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3024), 11, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(3022), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11605] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6517), 1, + aux_sym_float_token1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3676), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [11673] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3677), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3840), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3842), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [11738] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3678), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 15, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [11803] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3679), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6310), 10, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(6308), 15, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [11884] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3680), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3705), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3707), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [11949] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3681), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3387), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12014] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3682), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3287), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12079] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6519), 1, + anon_sym_DOT, + STATE(3691), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3683), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3261), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3264), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12148] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6521), 1, + anon_sym_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3684), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3030), 18, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12215] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6524), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3685), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3287), 19, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12282] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6527), 1, + anon_sym_DOT, + STATE(3742), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3686), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3261), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3264), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12351] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3687), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3825), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3827), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12416] = 18, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6529), 1, + anon_sym_when, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + STATE(4094), 1, + sym_type_argument_constraints, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3688), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6256), 10, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + ACTIONS(6254), 14, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12499] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3689), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3818), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3820), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12564] = 35, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6435), 1, + anon_sym_LBRACK_LT, + ACTIONS(6447), 1, + aux_sym_access_modifier_token1, + ACTIONS(6477), 1, + anon_sym_POUNDendif, + ACTIONS(6531), 1, + anon_sym_do, + ACTIONS(6534), 1, + anon_sym_let, + ACTIONS(6537), 1, + anon_sym_let_BANG, + ACTIONS(6540), 1, + anon_sym_new, + ACTIONS(6546), 1, + anon_sym_static, + ACTIONS(6549), 1, + anon_sym_member, + ACTIONS(6552), 1, + anon_sym_interface, + ACTIONS(6555), 1, + anon_sym_abstract, + ACTIONS(6558), 1, + anon_sym_val, + ACTIONS(6561), 1, + anon_sym_inherit, + ACTIONS(6564), 1, + anon_sym_POUNDif, + ACTIONS(6567), 1, + sym__newline, + STATE(4185), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4743), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4932), 1, + sym_function_or_value_defn, + STATE(4944), 1, + sym_interface_implementation, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(4963), 1, + sym__member_defns, + STATE(4972), 1, + sym__class_type_body_inner, + STATE(5098), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6543), 2, + anon_sym_default, + anon_sym_override, + STATE(4933), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3690), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_preproc_if_in_class_definition_repeat1, + [12681] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6519), 1, + anon_sym_DOT, + STATE(3743), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3691), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3202), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3204), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12750] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3692), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3314), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3312), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [12815] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6350), 1, + anon_sym_STAR, + STATE(3684), 1, + aux_sym__compound_type_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3693), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3212), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3214), 18, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12884] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3694), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3242), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3244), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [12949] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6570), 1, + sym_int, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3695), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3417), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3419), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [13016] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3696), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3451), 14, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3453), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [13081] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(6146), 1, + aux_sym_decimal_token1, + ACTIONS(6212), 1, + anon_sym_f, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3697), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LT2, - ACTIONS(5151), 1, + anon_sym_DASH_GT, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13150] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3164), 1, - aux_sym_argument_patterns_repeat1, - STATE(3174), 1, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, sym_type_arguments, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6407), 1, - sym_argument_patterns, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3162), 6, + STATE(3698), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [131] = 33, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(6285), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(6287), 14, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, - anon_sym_LT2, - ACTIONS(5151), 1, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, sym_xint, - ACTIONS(5334), 1, + [13229] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3164), 1, - aux_sym_argument_patterns_repeat1, - STATE(3176), 1, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, sym_type_arguments, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6304), 1, - sym_argument_patterns, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3163), 6, + STATE(3699), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [262] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(6293), 12, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(6295), 14, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5151), 1, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, sym_xint, - ACTIONS(5334), 1, + [13308] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3165), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - ACTIONS(5553), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3164), 6, + STATE(3700), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [388] = 30, + ACTIONS(3451), 15, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_when, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3453), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [13373] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5555), 1, - sym_identifier, - ACTIONS(5560), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3701), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3361), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5566), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5569), 1, + anon_sym_or, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3363), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5572), 1, anon_sym_LBRACE, - ACTIONS(5575), 1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, - ACTIONS(5578), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5581), 1, - anon_sym_DQUOTE, - ACTIONS(5584), 1, anon_sym_AT_DQUOTE, - ACTIONS(5587), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5590), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5593), 1, - sym_bool, - ACTIONS(5596), 1, sym_unit, - ACTIONS(5599), 1, - sym_int, - ACTIONS(5602), 1, sym_xint, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, + [13438] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5558), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5563), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3165), 7, + STATE(3702), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_argument_patterns_repeat1, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [512] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3802), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3804), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5151), 1, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13503] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3164), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6304), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3166), 6, + STATE(3703), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [637] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3798), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3800), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13568] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(7086), 1, - sym_argument_patterns, + ACTIONS(6572), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3167), 6, + STATE(3704), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [762] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3351), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3353), 19, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, sym_xint, - ACTIONS(5334), 1, + [13635] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6840), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3168), 6, + STATE(3705), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [887] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3790), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3792), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13700] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6746), 1, - sym_argument_patterns, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3169), 6, + STATE(3706), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1012] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3274), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, + anon_sym_or, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3276), 20, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, sym_xint, - ACTIONS(5334), 1, + [13765] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6822), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3170), 6, + STATE(3707), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1137] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3786), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3788), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13830] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6684), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6574), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3171), 6, + STATE(3708), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1262] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3417), 14, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3419), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [13897] = 36, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6882), 1, - sym_argument_patterns, + ACTIONS(6576), 1, + anon_sym_do, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(6582), 1, + anon_sym_new, + ACTIONS(6586), 1, + anon_sym_static, + ACTIONS(6588), 1, + anon_sym_member, + ACTIONS(6590), 1, + anon_sym_interface, + ACTIONS(6592), 1, + anon_sym_abstract, + ACTIONS(6594), 1, + anon_sym_val, + ACTIONS(6596), 1, + anon_sym_inherit, + ACTIONS(6598), 1, + anon_sym_POUNDif, + ACTIONS(6600), 1, + anon_sym_POUNDendif, + ACTIONS(6602), 1, + sym__newline, + STATE(3690), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4185), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4743), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4932), 1, + sym_function_or_value_defn, + STATE(4944), 1, + sym_interface_implementation, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(4963), 1, + sym__member_defns, + STATE(4972), 1, + sym__class_type_body_inner, + STATE(5098), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3172), 6, + ACTIONS(6584), 2, + anon_sym_default, + anon_sym_override, + STATE(4933), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3709), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1387] = 31, + [14016] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3710), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3782), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3784), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14081] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(7046), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3173), 6, + STATE(3711), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1512] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3814), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3816), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5151), 1, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14146] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3164), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6511), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6604), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3174), 6, + STATE(3712), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1637] = 30, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5555), 1, - sym_identifier, - ACTIONS(5558), 1, - anon_sym_DASH_GT, - ACTIONS(5560), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 13, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5566), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5569), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5575), 1, - aux_sym_char_token1, - ACTIONS(5578), 1, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5581), 1, anon_sym_DQUOTE, - ACTIONS(5584), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3287), 18, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_EQ2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5587), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5590), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5593), 1, - sym_bool, - ACTIONS(5596), 1, sym_unit, - ACTIONS(5599), 1, - sym_int, - ACTIONS(5602), 1, + sym_op_identifier, sym_xint, - ACTIONS(5607), 1, - anon_sym_LBRACE, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, + [14213] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5563), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3175), 7, + STATE(3713), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_argument_patterns_repeat1, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1760] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(6424), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6426), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, - ACTIONS(5147), 1, anon_sym_LBRACE, - ACTIONS(5151), 1, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, - ACTIONS(5153), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, - anon_sym_DQUOTE, - ACTIONS(5157), 1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14278] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - STATE(3164), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6407), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3176), 6, + STATE(3714), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [1885] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3585), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3587), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14343] = 10, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5553), 1, - anon_sym_DASH_GT, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3175), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6607), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3177), 6, + STATE(3715), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2010] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3387), 15, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + anon_sym_f, + aux_sym_decimal_token1, + sym_identifier, + ACTIONS(3389), 17, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14410] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6938), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6398), 1, + anon_sym_DOT, + STATE(3656), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3178), 6, + STATE(3716), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2135] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(3257), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3259), 19, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14479] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(7700), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3179), 6, + STATE(3717), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2260] = 31, + ACTIONS(3778), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3780), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [14544] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3718), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3577), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3579), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14609] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(6992), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3180), 6, + STATE(3719), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2385] = 31, + ACTIONS(3770), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3772), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [14674] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5137), 1, - sym_identifier, - ACTIONS(5139), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3720), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3598), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5143), 1, + anon_sym_null, + anon_sym__, anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(5151), 1, - aux_sym_char_token1, - ACTIONS(5153), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5155), 1, anon_sym_DQUOTE, - ACTIONS(5157), 1, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3600), 21, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, + aux_sym_char_token1, anon_sym_AT_DQUOTE, - ACTIONS(5159), 1, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5161), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5163), 1, - sym_bool, - ACTIONS(5165), 1, sym_unit, - ACTIONS(5167), 1, - sym_int, - ACTIONS(5169), 1, + sym_op_identifier, sym_xint, - ACTIONS(5334), 1, + [14739] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5605), 1, - anon_sym_LBRACE, - STATE(3177), 1, - aux_sym_argument_patterns_repeat1, - STATE(3860), 1, - sym_float, - STATE(3950), 1, - sym__atomic_pattern, - STATE(4257), 1, - sym_format_triple_quoted_string, - STATE(7124), 1, - sym_argument_patterns, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6174), 1, + aux_sym_decimal_token1, + ACTIONS(6216), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5141), 2, - anon_sym_null, - anon_sym__, - STATE(4256), 2, - sym_format_string, - sym__string_literal, - STATE(3948), 5, - sym_list_pattern, - sym_array_pattern, - sym_record_pattern, - sym_const, - sym_long_identifier, - STATE(3181), 6, + STATE(3721), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4254), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [2510] = 23, + ACTIONS(2768), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(2770), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [14808] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368882,47 +417797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5610), 1, - anon_sym_y, - ACTIONS(5612), 1, - anon_sym_uy, - ACTIONS(5614), 1, - anon_sym_s, - ACTIONS(5616), 1, - anon_sym_us, - ACTIONS(5618), 1, - anon_sym_l, - ACTIONS(5620), 1, - aux_sym_uint32_token1, - ACTIONS(5622), 1, - anon_sym_n, - ACTIONS(5624), 1, - anon_sym_un, - ACTIONS(5626), 1, - anon_sym_L, - ACTIONS(5628), 1, - aux_sym_uint64_token1, - ACTIONS(5630), 1, - aux_sym_bignum_token1, - ACTIONS(5632), 1, - aux_sym_decimal_token1, - ACTIONS(5634), 1, - anon_sym_DOT2, - ACTIONS(5636), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3182), 6, + STATE(3722), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3766), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -368935,7 +417822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 21, + ACTIONS(3768), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_RPAREN, @@ -368957,7 +417844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2617] = 21, + [14873] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -368966,43 +417853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5610), 1, - anon_sym_y, - ACTIONS(5612), 1, - anon_sym_uy, - ACTIONS(5614), 1, - anon_sym_s, - ACTIONS(5616), 1, - anon_sym_us, - ACTIONS(5618), 1, - anon_sym_l, - ACTIONS(5620), 1, - aux_sym_uint32_token1, - ACTIONS(5622), 1, - anon_sym_n, - ACTIONS(5624), 1, - anon_sym_un, - ACTIONS(5626), 1, - anon_sym_L, - ACTIONS(5628), 1, - aux_sym_uint64_token1, - ACTIONS(5638), 1, - anon_sym_lf, - ACTIONS(5640), 1, - anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3183), 6, + STATE(3723), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3701), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369015,7 +417878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 21, + ACTIONS(3703), 21, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_RPAREN, @@ -369037,7 +417900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2718] = 23, + [14938] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369046,62 +417909,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5642), 1, - anon_sym_y, - ACTIONS(5644), 1, - anon_sym_uy, - ACTIONS(5646), 1, - anon_sym_s, - ACTIONS(5648), 1, - anon_sym_us, - ACTIONS(5650), 1, - anon_sym_l, - ACTIONS(5652), 1, - aux_sym_uint32_token1, - ACTIONS(5654), 1, - anon_sym_n, - ACTIONS(5656), 1, - anon_sym_un, - ACTIONS(5658), 1, - anon_sym_L, - ACTIONS(5660), 1, - aux_sym_uint64_token1, - ACTIONS(5662), 1, - aux_sym_bignum_token1, - ACTIONS(5664), 1, - aux_sym_decimal_token1, - ACTIONS(5666), 1, - anon_sym_DOT2, - ACTIONS(5668), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3184), 6, + STATE(3724), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + ACTIONS(3746), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 18, + ACTIONS(3748), 21, + anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369112,6 +417948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369119,7 +417956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2823] = 23, + [15003] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369128,47 +417965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5670), 1, - anon_sym_y, - ACTIONS(5672), 1, - anon_sym_uy, - ACTIONS(5674), 1, - anon_sym_s, - ACTIONS(5676), 1, - anon_sym_us, - ACTIONS(5678), 1, - anon_sym_l, - ACTIONS(5680), 1, - aux_sym_uint32_token1, - ACTIONS(5682), 1, - anon_sym_n, - ACTIONS(5684), 1, - anon_sym_un, - ACTIONS(5686), 1, - anon_sym_L, - ACTIONS(5688), 1, - aux_sym_uint64_token1, - ACTIONS(5690), 1, - aux_sym_bignum_token1, - ACTIONS(5692), 1, - aux_sym_decimal_token1, - ACTIONS(5694), 1, - anon_sym_DOT2, - ACTIONS(5696), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3185), 6, + STATE(3725), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(2768), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369181,10 +417990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 19, - sym__newline, - sym__dedent, + ACTIONS(2770), 21, + anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369194,6 +418003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369201,7 +418012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [2928] = 23, + [15068] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369210,47 +418021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5698), 1, - anon_sym_y, - ACTIONS(5700), 1, - anon_sym_uy, - ACTIONS(5702), 1, - anon_sym_s, - ACTIONS(5704), 1, - anon_sym_us, - ACTIONS(5706), 1, - anon_sym_l, - ACTIONS(5708), 1, - aux_sym_uint32_token1, - ACTIONS(5710), 1, - anon_sym_n, - ACTIONS(5712), 1, - anon_sym_un, - ACTIONS(5714), 1, - anon_sym_L, - ACTIONS(5716), 1, - aux_sym_uint64_token1, - ACTIONS(5718), 1, - aux_sym_bignum_token1, - ACTIONS(5720), 1, - aux_sym_decimal_token1, - ACTIONS(5722), 1, - anon_sym_DOT2, - ACTIONS(5724), 1, - aux_sym_float_token1, + ACTIONS(6609), 1, + anon_sym_DOT, + STATE(3712), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3186), 6, + STATE(3726), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + ACTIONS(3202), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369264,7 +418051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 17, + ACTIONS(3204), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369275,6 +418062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_EQ2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369282,7 +418070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3032] = 21, + [15137] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369291,43 +418079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5670), 1, - anon_sym_y, - ACTIONS(5672), 1, - anon_sym_uy, - ACTIONS(5674), 1, - anon_sym_s, - ACTIONS(5676), 1, - anon_sym_us, - ACTIONS(5678), 1, - anon_sym_l, - ACTIONS(5680), 1, - aux_sym_uint32_token1, - ACTIONS(5682), 1, - anon_sym_n, - ACTIONS(5684), 1, - anon_sym_un, - ACTIONS(5686), 1, - anon_sym_L, - ACTIONS(5688), 1, - aux_sym_uint64_token1, - ACTIONS(5726), 1, - anon_sym_lf, - ACTIONS(5728), 1, - anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3187), 6, + STATE(3727), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3738), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369340,10 +418104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 19, - sym__newline, - sym__dedent, + ACTIONS(3740), 21, + anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369353,6 +418117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369360,7 +418126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3131] = 21, + [15202] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369369,43 +418135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5642), 1, - anon_sym_y, - ACTIONS(5644), 1, - anon_sym_uy, - ACTIONS(5646), 1, - anon_sym_s, - ACTIONS(5648), 1, - anon_sym_us, - ACTIONS(5650), 1, - anon_sym_l, - ACTIONS(5652), 1, - aux_sym_uint32_token1, - ACTIONS(5654), 1, - anon_sym_n, - ACTIONS(5656), 1, - anon_sym_un, - ACTIONS(5658), 1, - anon_sym_L, - ACTIONS(5660), 1, - aux_sym_uint64_token1, - ACTIONS(5730), 1, - anon_sym_lf, - ACTIONS(5732), 1, - anon_sym_LF, + ACTIONS(6611), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3188), 6, + STATE(3728), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369419,7 +418164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 18, + ACTIONS(3287), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -369438,133 +418183,86 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3230] = 21, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [15269] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5698), 1, - anon_sym_y, - ACTIONS(5700), 1, - anon_sym_uy, - ACTIONS(5702), 1, - anon_sym_s, - ACTIONS(5704), 1, - anon_sym_us, - ACTIONS(5706), 1, - anon_sym_l, - ACTIONS(5708), 1, - aux_sym_uint32_token1, - ACTIONS(5710), 1, - anon_sym_n, - ACTIONS(5712), 1, - anon_sym_un, - ACTIONS(5714), 1, - anon_sym_L, - ACTIONS(5716), 1, - aux_sym_uint64_token1, - ACTIONS(5734), 1, - anon_sym_lf, - ACTIONS(5736), 1, - anon_sym_LF, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6614), 1, + anon_sym_DOT, + STATE(3741), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3189), 6, + STATE(3729), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + ACTIONS(3257), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 17, - anon_sym_LBRACK_LT, + ACTIONS(3259), 19, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [3328] = 23, + [15338] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, - anon_sym_y, - ACTIONS(5740), 1, - anon_sym_uy, - ACTIONS(5742), 1, - anon_sym_s, - ACTIONS(5744), 1, - anon_sym_us, - ACTIONS(5746), 1, - anon_sym_l, - ACTIONS(5748), 1, - aux_sym_uint32_token1, - ACTIONS(5750), 1, - anon_sym_n, - ACTIONS(5752), 1, - anon_sym_un, - ACTIONS(5754), 1, - anon_sym_L, - ACTIONS(5756), 1, - aux_sym_uint64_token1, - ACTIONS(5758), 1, - aux_sym_bignum_token1, - ACTIONS(5760), 1, - aux_sym_decimal_token1, - ACTIONS(5762), 1, - anon_sym_DOT2, - ACTIONS(5764), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3190), 6, + STATE(3730), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 11, + ACTIONS(3742), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369574,11 +418272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 15, + ACTIONS(3744), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -369586,13 +418289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [3428] = 19, + [15403] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369601,39 +418306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_DASH_GT, - ACTIONS(5774), 1, - anon_sym_when, - ACTIONS(5776), 1, - anon_sym_STAR, - ACTIONS(5778), 1, - anon_sym_LT2, - ACTIONS(5780), 1, - anon_sym_LBRACK_RBRACK, - STATE(3227), 1, - aux_sym__compound_type_repeat1, - STATE(3251), 1, - sym_long_identifier, - STATE(3252), 1, - sym_type_arguments, - STATE(3563), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3191), 6, + STATE(3731), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5770), 11, + ACTIONS(3734), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -369645,9 +418330,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5768), 18, + sym_identifier, + ACTIONS(3736), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369657,6 +418344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369664,7 +418353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3519] = 16, + [15468] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369673,35 +418362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3192), 6, + STATE(3732), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5782), 13, + ACTIONS(3726), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369713,9 +418387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5784), 18, + ACTIONS(3728), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369725,6 +418400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369732,7 +418409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3603] = 10, + [15533] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369741,38 +418418,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5794), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3193), 7, + STATE(3733), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 13, + ACTIONS(3722), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 23, + ACTIONS(3724), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369782,11 +418456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369794,7 +418465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3675] = 17, + [15598] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369803,37 +418474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5797), 1, - sym_identifier, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3194), 6, + STATE(3734), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 12, + ACTIONS(3693), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369844,9 +418498,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2848), 18, + sym_identifier, + ACTIONS(3695), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369856,6 +418512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369863,7 +418521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3761] = 11, + [15663] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369872,25 +418530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5799), 1, - anon_sym_or, - STATE(3206), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3195), 6, + STATE(3735), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(3730), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369902,9 +418555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 23, + ACTIONS(3732), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369914,11 +418568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369926,7 +418577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3835] = 17, + [15728] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -369935,37 +418586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5797), 1, - sym_identifier, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3196), 6, + STATE(3736), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 12, + ACTIONS(3608), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -369976,9 +418610,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2808), 18, + sym_identifier, + ACTIONS(3610), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -369988,6 +418624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -369995,7 +418633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3921] = 11, + [15793] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370004,39 +418642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5801), 1, - anon_sym_or, - STATE(3199), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3197), 6, + STATE(3737), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(3660), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 23, + ACTIONS(3662), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370046,11 +418680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370058,7 +418689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [3995] = 17, + [15858] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370067,37 +418698,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5797), 1, - sym_identifier, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3198), 6, + STATE(3738), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 12, + ACTIONS(3656), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370108,9 +418722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2804), 18, + sym_identifier, + ACTIONS(3658), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370120,6 +418736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370127,70 +418745,90 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4081] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [15923] = 36, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5801), 1, - anon_sym_or, - STATE(3193), 1, - aux_sym_type_argument_repeat1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6576), 1, + anon_sym_do, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(6582), 1, + anon_sym_new, + ACTIONS(6586), 1, + anon_sym_static, + ACTIONS(6588), 1, + anon_sym_member, + ACTIONS(6590), 1, + anon_sym_interface, + ACTIONS(6592), 1, + anon_sym_abstract, + ACTIONS(6594), 1, + anon_sym_val, + ACTIONS(6596), 1, + anon_sym_inherit, + ACTIONS(6598), 1, + anon_sym_POUNDif, + ACTIONS(6602), 1, + sym__newline, + ACTIONS(6616), 1, + anon_sym_POUNDendif, + STATE(3709), 1, + aux_sym_preproc_if_in_class_definition_repeat1, + STATE(4185), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4743), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4932), 1, + sym_function_or_value_defn, + STATE(4944), 1, + sym_interface_implementation, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(4963), 1, + sym__member_defns, + STATE(4972), 1, + sym__class_type_body_inner, + STATE(5098), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3199), 6, + ACTIONS(6584), 2, + anon_sym_default, + anon_sym_override, + STATE(4933), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3739), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(2943), 23, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [4155] = 17, + [16042] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370199,50 +418837,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_DASH_GT, - ACTIONS(5776), 1, - anon_sym_STAR, - ACTIONS(5778), 1, - anon_sym_LT2, - ACTIONS(5780), 1, - anon_sym_LBRACK_RBRACK, - STATE(3227), 1, - aux_sym__compound_type_repeat1, - STATE(3251), 1, - sym_long_identifier, - STATE(3252), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3200), 6, + STATE(3740), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 12, + ACTIONS(3836), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2808), 18, + sym_identifier, + ACTIONS(3838), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370252,6 +418875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370259,44 +418884,32 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4241] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [16107] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5797), 1, - sym_identifier, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6614), 1, + anon_sym_DOT, + STATE(3685), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3201), 6, + STATE(3741), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 12, + ACTIONS(3202), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -370307,28 +418920,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2812), 18, + sym_identifier, + ACTIONS(3204), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [4327] = 17, + [16176] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370337,35 +418951,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_DASH_GT, - ACTIONS(5776), 1, - anon_sym_STAR, - ACTIONS(5778), 1, - anon_sym_LT2, - ACTIONS(5780), 1, - anon_sym_LBRACK_RBRACK, - STATE(3227), 1, - aux_sym__compound_type_repeat1, - STATE(3251), 1, - sym_long_identifier, - STATE(3252), 1, - sym_type_arguments, + ACTIONS(6527), 1, + anon_sym_DOT, + STATE(3728), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3202), 6, + STATE(3742), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 12, + ACTIONS(3202), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -370378,8 +418980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2812), 18, - anon_sym_EQ, + sym_identifier, + ACTIONS(3204), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370390,6 +418992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370397,7 +419000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4413] = 17, + [16245] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370406,49 +419009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_DASH_GT, - ACTIONS(5776), 1, - anon_sym_STAR, - ACTIONS(5778), 1, - anon_sym_LT2, - ACTIONS(5780), 1, - anon_sym_LBRACK_RBRACK, - STATE(3227), 1, - aux_sym__compound_type_repeat1, - STATE(3251), 1, - sym_long_identifier, - STATE(3252), 1, - sym_type_arguments, + ACTIONS(6618), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3203), 6, + STATE(3743), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 12, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2848), 18, - anon_sym_EQ, + sym_identifier, + ACTIONS(3287), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370466,7 +419057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4499] = 10, + [16312] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370475,24 +419066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5803), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3204), 7, + STATE(3744), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 13, + ACTIONS(3616), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370504,9 +419091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 23, + ACTIONS(3618), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370516,11 +419104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370528,7 +419113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4571] = 16, + [16377] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370537,35 +419122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3205), 6, + STATE(3745), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5806), 13, + ACTIONS(3602), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370577,9 +419147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5808), 18, + ACTIONS(3604), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370589,6 +419160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370596,7 +419169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4655] = 11, + [16442] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370605,25 +419178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5799), 1, - anon_sym_or, - STATE(3204), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3206), 6, + STATE(3746), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 13, + ACTIONS(3794), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370635,9 +419203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2943), 23, + ACTIONS(3796), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370647,11 +419216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370659,7 +419225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4729] = 17, + [16507] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370668,50 +419234,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_DASH_GT, - ACTIONS(5776), 1, - anon_sym_STAR, - ACTIONS(5778), 1, - anon_sym_LT2, - ACTIONS(5780), 1, - anon_sym_LBRACK_RBRACK, - STATE(3227), 1, - aux_sym__compound_type_repeat1, - STATE(3251), 1, - sym_long_identifier, - STATE(3252), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3207), 6, + STATE(3747), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 12, + ACTIONS(3774), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2804), 18, + sym_identifier, + ACTIONS(3776), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370721,6 +419272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370728,52 +419281,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4815] = 21, + [16572] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5738), 1, - anon_sym_y, - ACTIONS(5740), 1, - anon_sym_uy, - ACTIONS(5742), 1, - anon_sym_s, - ACTIONS(5744), 1, - anon_sym_us, - ACTIONS(5746), 1, - anon_sym_l, - ACTIONS(5748), 1, - aux_sym_uint32_token1, - ACTIONS(5750), 1, - anon_sym_n, - ACTIONS(5752), 1, - anon_sym_un, - ACTIONS(5754), 1, - anon_sym_L, - ACTIONS(5756), 1, - aux_sym_uint64_token1, - ACTIONS(5810), 1, - anon_sym_lf, - ACTIONS(5812), 1, - anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3208), 6, + STATE(3748), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 11, + ACTIONS(3642), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -370783,11 +419312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 15, + ACTIONS(3644), 21, anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -370795,13 +419329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [4909] = 11, + [16637] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370810,25 +419346,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5814), 1, - anon_sym_DOT, - STATE(3216), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3209), 6, + STATE(3749), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 13, + ACTIONS(3581), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -370840,9 +419371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2937), 22, + ACTIONS(3583), 21, anon_sym_EQ, anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -370853,9 +419385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370863,7 +419393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [4982] = 9, + [16702] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370872,35 +419402,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3210), 6, + STATE(3750), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 14, + ACTIONS(3285), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 23, - anon_sym_EQ, + ACTIONS(3287), 20, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370911,11 +419440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, + anon_sym_DOT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370923,7 +419448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5051] = 10, + [16766] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -370932,37 +419457,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5816), 1, + ACTIONS(6609), 1, anon_sym_DOT, + ACTIONS(6621), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3211), 7, + STATE(3751), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 13, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -370970,13 +419497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -370984,33 +419506,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5122] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [16836] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5819), 1, - anon_sym_DOT, - STATE(3211), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3212), 6, + STATE(3752), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 13, + ACTIONS(3308), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371020,15 +419539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 22, + ACTIONS(3310), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -371044,9 +419560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [5195] = 10, + [16900] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371055,37 +419570,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5821), 1, + ACTIONS(6623), 1, anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3213), 7, + STATE(3753), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 13, + ACTIONS(6424), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 22, - anon_sym_EQ, + ACTIONS(6426), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371097,9 +419610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371107,45 +419617,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5266] = 17, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [16966] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5786), 1, - anon_sym_DASH_GT, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, - anon_sym_LT2, - ACTIONS(5792), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5797), 1, - sym_identifier, - STATE(3224), 1, - aux_sym__compound_type_repeat1, - STATE(3255), 1, - sym_long_identifier, - STATE(3271), 1, - sym_type_arguments, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3214), 6, + STATE(3754), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5826), 11, + ACTIONS(3285), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371154,28 +419649,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5824), 18, + sym_identifier, + ACTIONS(3287), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [5351] = 9, + [17030] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371184,35 +419681,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6625), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3215), 6, + STATE(3755), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3029), 14, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_or, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3031), 23, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371220,14 +419721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371235,7 +419730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5420] = 11, + [17100] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371244,38 +419739,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5814), 1, - anon_sym_DOT, - STATE(3213), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3216), 6, + STATE(3756), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 13, + ACTIONS(3285), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 22, - anon_sym_EQ, + ACTIONS(3287), 19, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371286,10 +419776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371297,7 +419785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5493] = 9, + [17164] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371306,34 +419794,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6631), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3217), 6, + STATE(3757), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 14, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6627), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 23, + ACTIONS(6629), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -371345,11 +419834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371357,7 +419841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5562] = 11, + [17230] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371366,37 +419850,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5819), 1, - anon_sym_DOT, - STATE(3212), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6634), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3218), 6, + STATE(3758), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 13, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2937), 22, + ACTIONS(3276), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -371408,10 +419890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371419,7 +419897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5635] = 9, + [17296] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371428,35 +419906,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6206), 1, + aux_sym_decimal_token1, + ACTIONS(6220), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3219), 6, + STATE(3759), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3029), 14, + ACTIONS(2768), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, - anon_sym_or, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3031), 23, - anon_sym_EQ, + ACTIONS(2770), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371467,11 +419947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371479,23 +419954,23 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5704] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [17364] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5828), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6637), 1, anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3220), 7, + STATE(3760), 7, sym_xml_doc, sym_block_comment, sym_line_comment, @@ -371503,7 +419978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_fsi_directive_decl, sym_preproc_line, aux_sym__compound_type_repeat1, - ACTIONS(2810), 13, + ACTIONS(3032), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -371514,15 +419989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2808), 21, + ACTIONS(3030), 18, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -371537,9 +420009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [5774] = 9, + [17430] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371548,33 +420019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6644), 1, + anon_sym_and, + STATE(3757), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3221), 6, + STATE(3761), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(6640), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 23, + ACTIONS(6642), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -371586,11 +420060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371598,31 +420067,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5842] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [17498] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5831), 1, - anon_sym_COLON_GT, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3222), 6, + STATE(3762), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3300), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371632,15 +420100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 22, + ACTIONS(3302), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -371656,9 +420121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [5912] = 10, + [17562] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371667,23 +420131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5833), 1, - anon_sym_COLON_GT, + ACTIONS(6646), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3223), 6, + STATE(3763), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3314), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -371695,8 +420158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 22, - anon_sym_EQ, + ACTIONS(3312), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371707,10 +420171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371718,7 +420178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [5982] = 11, + [17628] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371727,38 +420187,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5788), 1, - anon_sym_STAR, - STATE(3220), 1, - aux_sym__compound_type_repeat1, + ACTIONS(6648), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3224), 6, + STATE(3764), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2970), 13, + ACTIONS(3417), 14, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, - sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2972), 21, - anon_sym_EQ, + ACTIONS(3419), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -371769,9 +420227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371779,7 +420234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6054] = 10, + [17694] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371788,50 +420243,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5835), 1, - aux_sym_float_token1, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6650), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3225), 6, + STATE(3765), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 14, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 21, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -371839,123 +420292,48 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6124] = 22, + [17764] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5316), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5318), 1, - anon_sym_DQUOTE, - ACTIONS(5320), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5322), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5324), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5330), 1, - sym_int, - ACTIONS(5332), 1, - sym_xint, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5837), 1, - aux_sym_char_token1, - STATE(480), 1, - sym_const, - STATE(3091), 1, - sym_float, - STATE(3143), 1, - sym_format_triple_quoted_string, - STATE(6460), 1, - sym_static_parameter_value, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5328), 2, - sym_bool, - sym_unit, - STATE(3133), 2, - sym_format_string, - sym__string_literal, - STATE(3226), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3131), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [6218] = 11, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5776), 1, + ACTIONS(6416), 1, anon_sym_STAR, - STATE(3228), 1, + STATE(3760), 1, aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3227), 6, + STATE(3766), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2970), 13, + ACTIONS(3212), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2972), 21, + ACTIONS(3214), 18, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -371970,9 +420348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [6290] = 10, + [17832] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -371981,37 +420358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5839), 1, - anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3228), 7, + STATE(3767), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 13, + ACTIONS(3387), 15, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(2808), 21, - anon_sym_EQ, + ACTIONS(3389), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372022,9 +420397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372032,7 +420404,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6360] = 9, + [17896] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, + sym_long_identifier, + STATE(6504), 1, + sym_attribute, + STATE(6578), 1, + sym_object_construction, + STATE(8364), 1, + sym_attribute_target, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3768), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6652), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [17984] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372041,21 +420480,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6646), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3229), 6, + STATE(3769), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(6424), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372067,8 +420507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 23, - anon_sym_EQ, + ACTIONS(6426), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372079,11 +420520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372091,29 +420527,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6428] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [18050] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3230), 6, + STATE(3770), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 13, + ACTIONS(3318), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -372123,15 +420560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 23, + ACTIONS(3320), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -372139,7 +420573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, @@ -372148,9 +420581,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [6496] = 9, + [18114] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, + sym_long_identifier, + STATE(6390), 1, + sym_attribute, + STATE(6578), 1, + sym_object_construction, + STATE(8364), 1, + sym_attribute_target, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3771), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6652), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [18202] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372159,34 +420658,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3231), 6, + STATE(3772), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 13, + ACTIONS(3285), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 23, - anon_sym_EQ, + ACTIONS(3287), 19, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372197,11 +420695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, + anon_sym_EQ2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372209,44 +420704,97 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6564] = 17, + [18266] = 21, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(5585), 1, sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, + STATE(6310), 1, + sym_attribute, + STATE(6578), 1, + sym_object_construction, + STATE(8364), 1, + sym_attribute_target, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3773), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6652), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [18354] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6662), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3232), 6, + STATE(3774), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 12, + ACTIONS(3355), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -372259,7 +420807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2804), 15, + sym_identifier, + ACTIONS(3357), 18, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -372269,13 +420818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [6647] = 9, + [18420] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372284,48 +420836,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6664), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3233), 6, + STATE(3775), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 14, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 21, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372333,94 +420885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6714] = 38, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5876), 1, - anon_sym_POUNDendif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - STATE(3247), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, - STATE(7701), 1, - sym_preproc_else_in_class_definition, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3234), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [6839] = 9, + [18490] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372429,48 +420894,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6666), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3235), 6, + STATE(3776), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 14, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3175), 21, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372478,7 +420943,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6906] = 10, + [18560] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, + sym_long_identifier, + STATE(6578), 1, + sym_object_construction, + STATE(6598), 1, + sym_attribute, + STATE(8364), 1, + sym_attribute_target, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3777), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6652), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [18648] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372487,49 +421019,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5882), 1, - sym_int, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6668), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3236), 6, + STATE(3778), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 13, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3179), 21, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372537,7 +421068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [6975] = 9, + [18718] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372546,34 +421077,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3237), 6, + STATE(3779), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3007), 13, + ACTIONS(3451), 15, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3009), 22, - anon_sym_EQ, + ACTIONS(3453), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372584,10 +421116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372595,44 +421123,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7042] = 17, + [18782] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3238), 6, + STATE(3780), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 12, + ACTIONS(3340), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -372645,7 +421157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2808), 15, + sym_identifier, + ACTIONS(3342), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -372655,13 +421168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7125] = 9, + [18846] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372670,34 +421187,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6670), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3239), 6, + STATE(3781), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3047), 13, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3049), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372705,13 +421227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372719,28 +421236,40 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7192] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [18916] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3240), 6, + STATE(3782), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3043), 13, + ACTIONS(6293), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -372751,15 +421280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3045), 22, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(6295), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -372767,17 +421291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [7259] = 11, + [18992] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372786,23 +421306,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5884), 1, - anon_sym_DOT, - STATE(3249), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6672), 1, + anon_sym_or, + STATE(3758), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3241), 6, + STATE(3783), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 12, + ACTIONS(3230), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -372815,10 +421335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 21, + ACTIONS(3232), 18, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -372828,8 +421347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372837,7 +421354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7330] = 9, + [19060] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372846,34 +421363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6674), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3242), 6, + STATE(3784), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3021), 13, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3023), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -372881,13 +421403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372895,7 +421412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7397] = 9, + [19130] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -372904,33 +421421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6644), 1, + anon_sym_and, + STATE(3761), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3243), 6, + STATE(3785), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3013), 13, + ACTIONS(6676), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3015), 22, + ACTIONS(6678), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -372942,10 +421462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -372953,32 +421469,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7464] = 11, + [19198] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5886), 1, - anon_sym_or, - STATE(3256), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3244), 6, + STATE(3786), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 13, + ACTIONS(3351), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -372992,7 +421504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2943), 20, + ACTIONS(3353), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -373002,7 +421514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -373013,44 +421524,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7535] = 17, + [19262] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, + ACTIONS(6416), 1, anon_sym_STAR, - ACTIONS(5848), 1, + ACTIONS(6418), 1, anon_sym_LT2, - ACTIONS(5850), 1, + ACTIONS(6420), 1, anon_sym_LBRACK_RBRACK, - STATE(3317), 1, + STATE(3766), 1, aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, + STATE(3818), 1, sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3245), 6, + STATE(3787), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 12, + ACTIONS(6285), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -373058,14 +421565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2812), 15, - anon_sym_EQ, - anon_sym_RPAREN, + sym_identifier, + ACTIONS(6287), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -373073,13 +421578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [7618] = 9, + [19338] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373088,34 +421594,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6680), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3246), 6, + STATE(3788), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3003), 13, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3005), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373123,13 +421634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373137,140 +421643,51 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [7685] = 38, + [19408] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - ACTIONS(5888), 1, - anon_sym_POUNDendif, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, - STATE(7691), 1, - sym_preproc_else_in_class_definition, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3247), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [7810] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3248), 6, + STATE(3789), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3003), 13, + ACTIONS(3242), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3005), 22, + ACTIONS(3244), 20, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -373280,52 +421697,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [7877] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [19472] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5890), 1, - anon_sym_DOT, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3249), 7, + STATE(3790), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 12, + ACTIONS(3336), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 21, + ACTIONS(3338), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -373333,107 +421744,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [7946] = 21, + [19536] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5893), 1, - aux_sym_char_token1, - ACTIONS(5895), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5897), 1, - anon_sym_DQUOTE, - ACTIONS(5899), 1, - anon_sym_AT_DQUOTE, - ACTIONS(5901), 1, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5903), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5907), 1, - sym_int, - ACTIONS(5909), 1, - sym_xint, - STATE(5747), 1, - sym_float, - STATE(6569), 1, - sym_const, - STATE(6665), 1, - sym_format_triple_quoted_string, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5905), 2, - sym_bool, - sym_unit, - STATE(6662), 2, - sym_format_string, - sym__string_literal, - STATE(3250), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(6661), 20, - sym_char, - sym_string, - sym_verbatim_string, - sym_bytearray, - sym_verbatim_bytearray, - sym_triple_quoted_string, - sym_sbyte, - sym_byte, - sym_int16, - sym_uint16, - sym_int32, - sym_uint32, - sym_nativeint, - sym_unativeint, - sym_int64, - sym_uint64, - sym_ieee32, - sym_ieee64, - sym_bignum, - sym_decimal, - [8037] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3251), 6, + STATE(3791), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3033), 13, + ACTIONS(3292), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -373443,15 +421786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3039), 22, + ACTIONS(3294), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -373467,67 +421807,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [8104] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [19600] = 21, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6482), 1, + anon_sym_y, + ACTIONS(6484), 1, + anon_sym_uy, + ACTIONS(6486), 1, + anon_sym_s, + ACTIONS(6488), 1, + anon_sym_us, + ACTIONS(6490), 1, + anon_sym_l, + ACTIONS(6492), 1, + aux_sym_uint32_token1, + ACTIONS(6494), 1, + anon_sym_n, + ACTIONS(6496), 1, + anon_sym_un, + ACTIONS(6498), 1, + anon_sym_L, + ACTIONS(6500), 1, + aux_sym_uint64_token1, + ACTIONS(6682), 1, + anon_sym_lf, + ACTIONS(6684), 1, + anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3252), 6, + STATE(3792), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3025), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(2768), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3027), 22, + ACTIONS(2770), 11, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [8171] = 10, + [19688] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373536,36 +421884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5911), 1, - anon_sym_LT2, + ACTIONS(6609), 1, + anon_sym_DOT, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3253), 6, + STATE(3793), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 13, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2992), 21, - anon_sym_EQ, + ACTIONS(3264), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373576,9 +421925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373586,94 +421932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8240] = 38, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - ACTIONS(5913), 1, - anon_sym_POUNDendif, - STATE(3269), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(6695), 1, - sym_preproc_else_in_class_definition, - STATE(7504), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3254), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [8365] = 9, + [19756] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373682,34 +421941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6686), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3255), 6, + STATE(3794), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3033), 13, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3039), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -373717,13 +421981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373731,31 +421990,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8432] = 10, + [19826] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5915), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3256), 7, + STATE(3795), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 13, + ACTIONS(3304), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -373769,7 +422025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2919), 20, + ACTIONS(3306), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -373779,7 +422035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -373790,94 +422045,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [8501] = 38, + [19890] = 12, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - ACTIONS(5918), 1, - anon_sym_POUNDendif, - STATE(3259), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, - STATE(7542), 1, - sym_preproc_else_in_class_definition, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6688), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3257), 6, + STATE(3796), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [8626] = 9, + ACTIONS(3261), 13, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_in, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3264), 16, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [19960] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -373886,33 +422112,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6672), 1, + anon_sym_or, + STATE(3783), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3258), 6, + STATE(3797), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 13, + ACTIONS(3242), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3019), 22, + ACTIONS(3244), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -373924,10 +422153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -373935,94 +422160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8693] = 38, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - ACTIONS(5920), 1, - anon_sym_POUNDendif, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, - STATE(7559), 1, - sym_preproc_else_in_class_definition, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3259), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [8818] = 9, + [20028] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374031,34 +422169,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6623), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3260), 6, + STATE(3798), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3013), 13, + ACTIONS(3314), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3015), 22, - anon_sym_EQ, + ACTIONS(3312), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374070,9 +422209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374080,7 +422216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8885] = 9, + [20094] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374089,34 +422225,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6690), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3261), 6, + STATE(3799), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3261), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 22, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374124,13 +422265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374138,28 +422274,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [8952] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [20164] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6692), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3262), 6, + STATE(3800), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3007), 13, + ACTIONS(3351), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -374170,15 +422308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3009), 22, + ACTIONS(3353), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -374194,46 +422329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [9019] = 17, + [20230] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3263), 6, + STATE(3801), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 12, + ACTIONS(3322), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -374246,7 +422364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - ACTIONS(2848), 15, + sym_identifier, + ACTIONS(3324), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -374256,38 +422375,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9102] = 11, + [20294] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5886), 1, - anon_sym_or, - STATE(3244), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3264), 6, + STATE(3802), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(3296), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -374301,7 +422420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2926), 20, + ACTIONS(3298), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -374311,7 +422430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -374322,7 +422440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [9173] = 11, + [20358] = 12, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374331,50 +422449,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5632), 1, - aux_sym_decimal_token1, - ACTIONS(5638), 1, - anon_sym_f, + ACTIONS(6609), 1, + anon_sym_DOT, + ACTIONS(6694), 1, + anon_sym_EQ, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3265), 6, + STATE(3803), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3261), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 21, - anon_sym_EQ, + ACTIONS(3264), 16, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374382,7 +422498,74 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9244] = 9, + [20428] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, + sym_long_identifier, + STATE(6438), 1, + sym_attribute, + STATE(6578), 1, + sym_object_construction, + STATE(8364), 1, + sym_attribute_target, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3804), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6652), 9, + anon_sym_module, + anon_sym_assembly, + anon_sym_return, + anon_sym_field, + anon_sym_property, + anon_sym_param, + anon_sym_type, + anon_sym_constructor, + anon_sym_event, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [20516] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374391,34 +422574,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3266), 6, + STATE(3805), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3047), 13, + ACTIONS(3798), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3049), 22, - anon_sym_EQ, + ACTIONS(3800), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374429,10 +422612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374440,7 +422619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9311] = 9, + [20579] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374449,33 +422628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3267), 6, + STATE(3806), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3021), 13, + ACTIONS(6627), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3023), 22, + ACTIONS(6629), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -374487,10 +422666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374498,7 +422673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9378] = 9, + [20642] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374507,34 +422682,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3268), 6, + STATE(3807), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3043), 13, + ACTIONS(3581), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3045), 22, - anon_sym_EQ, + ACTIONS(3583), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374545,10 +422720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374556,94 +422727,61 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9445] = 38, + [20705] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, - anon_sym_do, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(5862), 1, - anon_sym_static, - ACTIONS(5864), 1, - anon_sym_member, - ACTIONS(5866), 1, - anon_sym_interface, - ACTIONS(5868), 1, - anon_sym_abstract, - ACTIONS(5870), 1, - anon_sym_val, - ACTIONS(5872), 1, - anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - ACTIONS(5878), 1, - anon_sym_POUNDelse, - ACTIONS(5880), 1, - sym__newline, - ACTIONS(5922), 1, - anon_sym_POUNDendif, - STATE(3280), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(6709), 1, - sym_preproc_else_in_class_definition, - STATE(7504), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3269), 6, + STATE(3808), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [9570] = 9, + ACTIONS(3585), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3587), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [20768] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374652,21 +422790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3270), 6, + STATE(3809), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 13, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6696), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -374678,7 +422818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3019), 22, + ACTIONS(6698), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -374690,10 +422830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374701,7 +422837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9637] = 9, + [20835] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374710,21 +422846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3271), 6, + STATE(3810), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3025), 13, + ACTIONS(3774), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -374736,8 +422871,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3027), 22, - anon_sym_EQ, + ACTIONS(3776), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374748,10 +422884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374759,7 +422891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9704] = 9, + [20898] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374768,36 +422900,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6706), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3272), 6, + STATE(3811), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6702), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 22, + ACTIONS(6704), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -374806,10 +422939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374817,7 +422946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9771] = 10, + [20963] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374826,23 +422955,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5924), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3273), 6, + STATE(3812), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 13, + ACTIONS(3602), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -374854,8 +422980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2992), 21, - anon_sym_EQ, + ACTIONS(3604), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -374866,9 +422993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374876,7 +423000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9840] = 11, + [21026] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -374885,24 +423009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5884), 1, - anon_sym_DOT, - STATE(3241), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3274), 6, + STATE(3813), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 12, - anon_sym_COLON, + ACTIONS(6709), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -374914,10 +423037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 21, + ACTIONS(6711), 18, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -374927,8 +423049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -374936,34 +423056,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [9911] = 11, + [21093] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5926), 1, - anon_sym_or, - STATE(3278), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3275), 6, + STATE(3814), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 12, + ACTIONS(3616), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -374972,179 +423087,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3618), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [9981] = 9, + [21156] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3276), 6, + STATE(3815), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3029), 14, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6713), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3031), 20, + ACTIONS(6715), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10047] = 19, + [21223] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3816), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6717), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(5928), 1, - anon_sym_when, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, - STATE(3767), 1, - sym_type_argument_constraints, + ACTIONS(6719), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [21290] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3277), 6, + STATE(3817), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5770), 10, + ACTIONS(3642), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5768), 14, - anon_sym_EQ, + sym_identifier, + ACTIONS(3644), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10133] = 11, + [21353] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5926), 1, - anon_sym_or, - STATE(3294), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3278), 6, + STATE(3818), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 12, + ACTIONS(3336), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -375157,7 +423310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2943), 20, + ACTIONS(3338), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -375167,7 +423320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -375178,34 +423330,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [10203] = 11, + [21416] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3819), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6721), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6723), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [21483] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5930), 1, - anon_sym_DOT, - STATE(3288), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3279), 6, + STATE(3820), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 13, + ACTIONS(3608), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -375215,12 +423418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2937), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3610), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -375228,205 +423433,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10273] = 35, + [21546] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5932), 1, - anon_sym_LBRACK_LT, - ACTIONS(5935), 1, - anon_sym_do, - ACTIONS(5938), 1, - anon_sym_let, - ACTIONS(5941), 1, - anon_sym_let_BANG, - ACTIONS(5944), 1, - aux_sym_access_modifier_token1, - ACTIONS(5947), 1, - anon_sym_new, - ACTIONS(5953), 1, - anon_sym_static, - ACTIONS(5956), 1, - anon_sym_member, - ACTIONS(5959), 1, - anon_sym_interface, - ACTIONS(5962), 1, - anon_sym_abstract, - ACTIONS(5965), 1, - anon_sym_val, - ACTIONS(5968), 1, - anon_sym_inherit, - ACTIONS(5971), 1, - anon_sym_POUNDif, - ACTIONS(5976), 1, - sym__newline, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4477), 1, - sym__class_type_body_inner, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5950), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(5974), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3280), 7, + STATE(3821), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_preproc_if_in_class_definition_repeat1, - [10391] = 9, + ACTIONS(3656), 12, + anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(3658), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [21609] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3281), 6, + STATE(3822), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 14, + ACTIONS(3660), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3662), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10457] = 23, + [21672] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5979), 1, - anon_sym_y, - ACTIONS(5981), 1, - anon_sym_uy, - ACTIONS(5983), 1, - anon_sym_s, - ACTIONS(5985), 1, - anon_sym_us, - ACTIONS(5987), 1, - anon_sym_l, - ACTIONS(5989), 1, - aux_sym_uint32_token1, - ACTIONS(5991), 1, - anon_sym_n, - ACTIONS(5993), 1, - anon_sym_un, - ACTIONS(5995), 1, - anon_sym_L, - ACTIONS(5997), 1, - aux_sym_uint64_token1, - ACTIONS(5999), 1, - aux_sym_bignum_token1, - ACTIONS(6001), 1, - aux_sym_decimal_token1, - ACTIONS(6003), 1, - anon_sym_DOT2, - ACTIONS(6005), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3282), 6, + STATE(3823), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 9, + ACTIONS(3693), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -375434,21 +423579,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 11, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(3695), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10551] = 10, + [21735] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375457,21 +423611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6011), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3283), 6, + STATE(3824), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 12, + ACTIONS(3722), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375484,10 +423636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 21, - anon_sym_EQ, + ACTIONS(3724), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -375497,8 +423649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375506,7 +423656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10619] = 10, + [21798] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375515,21 +423665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6011), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3284), 6, + STATE(3825), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 12, + ACTIONS(3726), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375542,10 +423690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 21, - anon_sym_EQ, + ACTIONS(3728), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -375555,8 +423703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375564,46 +423710,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [10687] = 17, + [21861] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3285), 6, + STATE(3826), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 11, + ACTIONS(3734), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -375612,11 +423741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2812), 15, - anon_sym_EQ, - anon_sym_RPAREN, + sym_identifier, + ACTIONS(3736), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -375628,105 +423762,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10769] = 10, + [21924] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6023), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3286), 7, + STATE(3827), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 13, + ACTIONS(3738), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3740), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10837] = 17, + [21987] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3287), 6, + STATE(3828), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 11, + ACTIONS(3746), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -375735,11 +423849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2808), 15, - anon_sym_EQ, - anon_sym_RPAREN, + sym_identifier, + ACTIONS(3748), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -375751,35 +423870,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10919] = 11, + [22050] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5930), 1, - anon_sym_DOT, - STATE(3286), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3288), 6, + STATE(3829), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 13, + ACTIONS(3794), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -375789,12 +423904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3796), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -375802,16 +423919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [10989] = 9, + [22113] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375820,19 +423935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3289), 6, + STATE(3830), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 12, + ACTIONS(3766), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375845,10 +423960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 22, - anon_sym_EQ, + ACTIONS(3768), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -375858,9 +423973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -375868,7 +423980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11055] = 10, + [22176] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -375877,21 +423989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6026), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3290), 6, + STATE(3831), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 15, + ACTIONS(3701), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -375904,10 +424014,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 18, + ACTIONS(3703), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -375926,111 +424034,165 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11123] = 17, + [22239] = 34, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(5991), 1, + anon_sym_POUNDif, + ACTIONS(6725), 1, + anon_sym_do, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(6731), 1, + anon_sym_static, + ACTIONS(6733), 1, + anon_sym_member, + ACTIONS(6735), 1, + anon_sym_interface, + ACTIONS(6737), 1, + anon_sym_abstract, + ACTIONS(6739), 1, + anon_sym_val, + ACTIONS(6741), 1, + anon_sym_inherit, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4881), 1, + sym_member_defn, + STATE(5109), 1, + sym_attributes, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5999), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6486), 1, + sym__class_type_body_inner, + STATE(6553), 1, + sym_interface_implementation, + STATE(6629), 1, + sym_function_or_value_defn, + STATE(6718), 1, + sym__member_defns, + STATE(7834), 1, + sym_access_modifier, + STATE(8120), 1, + sym__class_type_body, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3291), 6, + ACTIONS(6729), 2, + anon_sym_default, + anon_sym_override, + STATE(6633), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3832), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 11, + [22352] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3833), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3598), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2848), 15, - anon_sym_EQ, - anon_sym_RPAREN, + sym_identifier, + ACTIONS(3600), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [11205] = 17, + [22415] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3292), 6, + STATE(3834), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 11, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6702), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -376039,11 +424201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(2804), 15, + sym_identifier, + ACTIONS(6704), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -376055,8 +424221,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [11287] = 10, + [22482] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376065,21 +424232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6028), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3293), 6, + STATE(3835), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 14, + ACTIONS(3770), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376091,10 +424256,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 19, + ACTIONS(3772), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -376114,33 +424277,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11355] = 10, + [22545] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6030), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3294), 7, + STATE(3836), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 12, + ACTIONS(3577), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -376149,30 +424308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3579), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [11423] = 11, + [22608] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376181,37 +424340,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5664), 1, - aux_sym_decimal_token1, - ACTIONS(5730), 1, - anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3295), 6, + STATE(3837), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + ACTIONS(3778), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 18, + ACTIONS(3780), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -376222,7 +424378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376230,63 +424385,61 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11492] = 9, + [22671] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3296), 6, + STATE(3838), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 13, + ACTIONS(3782), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3784), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [11557] = 9, + [22734] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376295,19 +424448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3297), 6, + STATE(3839), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 12, + ACTIONS(3786), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376320,10 +424473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3278), 21, - anon_sym_EQ, + ACTIONS(3788), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376333,8 +424486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376342,7 +424493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11622] = 9, + [22797] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376351,19 +424502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3298), 6, + STATE(3840), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3272), 12, + ACTIONS(3790), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376376,10 +424527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3274), 21, - anon_sym_EQ, + ACTIONS(3792), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376389,8 +424540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376398,7 +424547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11687] = 9, + [22860] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376407,21 +424556,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6700), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_COMMA, + ACTIONS(6747), 1, + anon_sym_COLON_COLON, + ACTIONS(6749), 1, + anon_sym_PIPE, + ACTIONS(6751), 1, + anon_sym_AMP, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3299), 6, + STATE(3841), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(4764), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -376432,21 +424593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3377), 21, + ACTIONS(4762), 14, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376454,7 +424608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11752] = 9, + [22937] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376463,19 +424617,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6745), 1, + anon_sym_COMMA, + STATE(3811), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3300), 6, + STATE(3842), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 12, + ACTIONS(6753), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376488,11 +424646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3270), 21, + ACTIONS(6755), 17, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -376501,8 +424657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376510,7 +424664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11817] = 9, + [23004] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376519,35 +424673,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3301), 6, + STATE(3843), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3262), 12, + ACTIONS(3585), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3264), 21, - anon_sym_EQ, + ACTIONS(3587), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376558,7 +424711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376566,7 +424718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11882] = 9, + [23067] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376575,19 +424727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3302), 6, + STATE(3844), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 12, + ACTIONS(3802), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376600,10 +424752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3286), 21, - anon_sym_EQ, + ACTIONS(3804), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376613,8 +424765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376622,7 +424772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [11947] = 9, + [23130] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376631,35 +424781,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3303), 6, + STATE(3845), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 12, + ACTIONS(3581), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3290), 21, - anon_sym_EQ, + ACTIONS(3583), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376670,7 +424819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376678,7 +424826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12012] = 9, + [23193] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376687,35 +424835,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3304), 6, + STATE(3846), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 12, + ACTIONS(3274), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3297), 21, + ACTIONS(3276), 18, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376725,8 +424873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376734,7 +424880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12077] = 9, + [23256] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376743,35 +424889,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3305), 6, + STATE(3847), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 12, + ACTIONS(3774), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3471), 21, - anon_sym_EQ, + ACTIONS(3776), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376782,7 +424927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376790,7 +424934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12142] = 9, + [23319] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376799,35 +424943,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3306), 6, + STATE(3848), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 12, + ACTIONS(3602), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3314), 21, - anon_sym_EQ, + ACTIONS(3604), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376838,7 +424981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376846,7 +424988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12207] = 9, + [23382] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376855,19 +424997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3307), 6, + STATE(3849), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3391), 12, + ACTIONS(3642), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -376880,10 +425022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3393), 21, - anon_sym_EQ, + ACTIONS(3644), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376893,8 +425035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376902,7 +425042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12272] = 9, + [23445] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -376911,35 +425051,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3308), 6, + STATE(3850), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 12, + ACTIONS(3616), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3328), 21, - anon_sym_EQ, + ACTIONS(3618), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -376950,7 +425089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -376958,90 +425096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12337] = 36, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6033), 1, - anon_sym_do, - ACTIONS(6035), 1, - anon_sym_let, - ACTIONS(6037), 1, - anon_sym_let_BANG, - ACTIONS(6039), 1, - anon_sym_new, - ACTIONS(6043), 1, - anon_sym_static, - ACTIONS(6045), 1, - anon_sym_member, - ACTIONS(6047), 1, - anon_sym_interface, - ACTIONS(6049), 1, - anon_sym_abstract, - ACTIONS(6051), 1, - anon_sym_val, - ACTIONS(6053), 1, - anon_sym_inherit, - ACTIONS(6055), 1, - anon_sym_POUNDif, - ACTIONS(6057), 1, - anon_sym_POUNDendif, - ACTIONS(6059), 1, - sym__newline, - STATE(3366), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3816), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4352), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4504), 1, - sym_function_or_value_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(4513), 1, - sym__member_defns, - STATE(4540), 1, - sym_interface_implementation, - STATE(4541), 1, - sym__class_type_body_inner, - STATE(4689), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6041), 2, - anon_sym_default, - anon_sym_override, - STATE(4544), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3309), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [12456] = 9, + [23508] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377050,19 +425105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3310), 6, + STATE(3851), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 12, + ACTIONS(3794), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377075,10 +425130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3341), 21, - anon_sym_EQ, + ACTIONS(3796), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377088,8 +425143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377097,7 +425150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12521] = 9, + [23571] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377106,35 +425159,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3311), 6, + STATE(3852), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 12, + ACTIONS(3656), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3352), 21, - anon_sym_EQ, + ACTIONS(3658), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377145,7 +425197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377153,7 +425204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12586] = 9, + [23634] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377162,19 +425213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3312), 6, + STATE(3853), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 12, + ACTIONS(3314), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377187,10 +425238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3358), 21, - anon_sym_EQ, + ACTIONS(3312), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377200,8 +425251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377209,64 +425258,61 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12651] = 10, + [23697] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6061), 1, - anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3313), 6, + STATE(3854), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3825), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3827), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [12718] = 10, + [23760] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377275,22 +425321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6063), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3314), 7, + STATE(3855), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 13, + ACTIONS(3730), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377304,7 +425347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 18, + ACTIONS(3732), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377323,7 +425366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12785] = 10, + [23823] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377332,36 +425375,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6066), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3315), 7, + STATE(3856), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 13, + ACTIONS(3660), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 18, + ACTIONS(3662), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377372,7 +425412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_EQ2, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377380,121 +425420,115 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [12852] = 9, + [23886] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3316), 6, + STATE(3857), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3029), 13, + ACTIONS(3836), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3031), 20, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3838), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [12917] = 11, + [23949] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5846), 1, - anon_sym_STAR, - STATE(3349), 1, - aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3317), 6, + STATE(3858), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2970), 13, + ACTIONS(2768), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2972), 18, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2770), 19, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [12986] = 9, + [24012] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377503,35 +425537,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3318), 6, + STATE(3859), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 12, + ACTIONS(3693), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3373), 21, - anon_sym_EQ, + ACTIONS(3695), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377542,7 +425575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377550,7 +425582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13051] = 9, + [24075] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377559,19 +425591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3319), 6, + STATE(3860), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 12, + ACTIONS(3840), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377584,10 +425616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3255), 21, - anon_sym_EQ, + ACTIONS(3842), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377597,8 +425629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377606,7 +425636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13116] = 9, + [24138] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377615,35 +425645,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3320), 6, + STATE(3861), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 12, + ACTIONS(3722), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3389), 21, - anon_sym_EQ, + ACTIONS(3724), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377654,7 +425683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377662,7 +425690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13181] = 9, + [24201] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377671,35 +425699,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3321), 6, + STATE(3862), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 12, + ACTIONS(3726), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3411), 21, - anon_sym_EQ, + ACTIONS(3728), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377710,7 +425737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377718,7 +425744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13246] = 9, + [24264] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377727,35 +425753,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3322), 6, + STATE(3863), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 12, + ACTIONS(3734), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3419), 21, - anon_sym_EQ, + ACTIONS(3736), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377766,7 +425791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377774,7 +425798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13311] = 9, + [24327] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377783,35 +425807,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3323), 6, + STATE(3864), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 12, + ACTIONS(3738), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3423), 21, - anon_sym_EQ, + ACTIONS(3740), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377822,7 +425845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377830,7 +425852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13376] = 9, + [24390] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377839,35 +425861,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3324), 6, + STATE(3865), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 12, + ACTIONS(3746), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3430), 21, - anon_sym_EQ, + ACTIONS(3748), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -377878,7 +425899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -377886,7 +425906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13441] = 11, + [24453] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -377895,23 +425915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6069), 1, - anon_sym_DOT, - STATE(3335), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3325), 6, + STATE(3866), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3766), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -377925,7 +425941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 18, + ACTIONS(3768), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -377944,48 +425960,46 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13510] = 11, + [24516] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6071), 1, - anon_sym_DOT, - STATE(3348), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3326), 6, + STATE(3867), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 12, + ACTIONS(3770), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2937), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3772), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -377993,16 +426007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [13579] = 9, + [24579] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378011,35 +426023,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3327), 6, + STATE(3868), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 12, + ACTIONS(3577), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3453), 21, - anon_sym_EQ, + ACTIONS(3579), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378050,7 +426061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378058,7 +426068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13644] = 9, + [24642] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378067,35 +426077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3328), 6, + STATE(3869), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 15, + ACTIONS(3361), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3175), 18, + ACTIONS(3363), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378106,7 +426115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378114,7 +426122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13709] = 9, + [24705] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378123,35 +426131,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3329), 6, + STATE(3870), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 12, + ACTIONS(3778), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3536), 21, - anon_sym_EQ, + ACTIONS(3780), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378162,7 +426169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378170,7 +426176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13774] = 9, + [24768] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378179,35 +426185,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3330), 6, + STATE(3871), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 12, + ACTIONS(3782), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3415), 21, - anon_sym_EQ, + ACTIONS(3784), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378218,7 +426223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378226,7 +426230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13839] = 11, + [24831] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378235,37 +426239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - STATE(3315), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3331), 6, + STATE(3872), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 13, + ACTIONS(3786), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 18, + ACTIONS(3788), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378276,7 +426276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_EQ2, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378284,7 +426284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13908] = 10, + [24894] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378293,37 +426293,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6075), 1, - aux_sym_float_token1, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3332), 6, + STATE(3873), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 15, - anon_sym_COLON, + ACTIONS(6757), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 17, + ACTIONS(6759), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378341,7 +426340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [13975] = 9, + [24961] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378350,35 +426349,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3333), 6, + STATE(3874), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 12, + ACTIONS(3790), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3463), 21, - anon_sym_EQ, + ACTIONS(3792), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378389,7 +426387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378397,7 +426394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14040] = 9, + [25024] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378406,19 +426403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + STATE(3886), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3334), 6, + STATE(3875), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 12, + ACTIONS(6761), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378431,10 +426430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3467), 21, + ACTIONS(6763), 18, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378444,8 +426442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378453,7 +426449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14105] = 11, + [25089] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378462,37 +426458,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6069), 1, - anon_sym_DOT, - STATE(3314), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3335), 6, + STATE(3876), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 13, + ACTIONS(3701), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 18, + ACTIONS(3703), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -378503,7 +426496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378511,28 +426503,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14174] = 9, + [25152] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3336), 6, + STATE(3877), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 13, + ACTIONS(3300), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -378540,13 +426532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2926), 20, + ACTIONS(3302), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -378556,7 +426547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -378567,7 +426557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14239] = 9, + [25215] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378576,79 +426566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3337), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2518), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(2520), 21, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [14304] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5692), 1, - aux_sym_decimal_token1, - ACTIONS(5726), 1, - anon_sym_f, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3338), 6, + STATE(3878), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3598), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378661,7 +426591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 19, + ACTIONS(3600), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -378681,7 +426611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14373] = 9, + [25278] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378690,35 +426620,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3339), 6, + STATE(3879), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 12, + ACTIONS(3798), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3530), 21, - anon_sym_EQ, + ACTIONS(3800), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378729,7 +426658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378737,7 +426665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14438] = 9, + [25341] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378746,35 +426674,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3340), 6, + STATE(3880), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 12, + ACTIONS(3802), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3282), 21, - anon_sym_EQ, + ACTIONS(3804), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378785,7 +426712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378793,7 +426719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14503] = 9, + [25404] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378802,35 +426728,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3341), 6, + STATE(3881), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3477), 12, + ACTIONS(3840), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3479), 21, - anon_sym_EQ, + ACTIONS(3842), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378841,7 +426766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378849,7 +426773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14568] = 9, + [25467] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378858,35 +426782,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3342), 6, + STATE(3882), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3508), 12, + ACTIONS(3825), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3510), 21, - anon_sym_EQ, + ACTIONS(3827), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378897,7 +426820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378905,7 +426827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14633] = 9, + [25530] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378914,35 +426836,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3343), 6, + STATE(3883), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 12, + ACTIONS(3836), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 21, - anon_sym_EQ, + ACTIONS(3838), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -378953,7 +426874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -378961,7 +426881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14698] = 9, + [25593] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -378970,19 +426890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3344), 6, + STATE(3884), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 15, + ACTIONS(2768), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -378995,10 +426915,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 18, + ACTIONS(2770), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379017,31 +426935,28 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14763] = 10, + [25656] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6077), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3345), 7, + STATE(3885), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 12, + ACTIONS(3308), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -379054,7 +426969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2902), 19, + ACTIONS(3310), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -379074,7 +426989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [14830] = 11, + [25719] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379083,23 +426998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6080), 1, - anon_sym_DOT, - STATE(3354), 1, - aux_sym_long_identifier_repeat1, + STATE(3889), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3346), 6, + STATE(3886), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 12, + ACTIONS(6765), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -379112,9 +427025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 19, - sym__newline, - sym__dedent, + ACTIONS(6767), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379132,99 +427044,112 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [14899] = 18, + [25784] = 34, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6082), 1, - anon_sym_when, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, - STATE(3767), 1, - sym_type_argument_constraints, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(5991), 1, + anon_sym_POUNDif, + ACTIONS(6725), 1, + anon_sym_do, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(6731), 1, + anon_sym_static, + ACTIONS(6733), 1, + anon_sym_member, + ACTIONS(6735), 1, + anon_sym_interface, + ACTIONS(6737), 1, + anon_sym_abstract, + ACTIONS(6739), 1, + anon_sym_val, + ACTIONS(6741), 1, + anon_sym_inherit, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4881), 1, + sym_member_defn, + STATE(5109), 1, + sym_attributes, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5999), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6486), 1, + sym__class_type_body_inner, + STATE(6553), 1, + sym_interface_implementation, + STATE(6629), 1, + sym_function_or_value_defn, + STATE(6718), 1, + sym__member_defns, + STATE(7582), 1, + sym__class_type_body, + STATE(7834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3347), 6, + ACTIONS(6729), 2, + anon_sym_default, + anon_sym_override, + STATE(6633), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3887), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5770), 10, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - ACTIONS(5768), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [14982] = 11, + [25897] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6071), 1, - anon_sym_DOT, - STATE(3345), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6769), 1, + anon_sym_SEMI, + STATE(3916), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3348), 6, + STATE(3888), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 12, + ACTIONS(6761), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379233,108 +427158,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2968), 19, + ACTIONS(6763), 17, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [15051] = 10, + [25964] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6084), 1, - anon_sym_STAR, + ACTIONS(6775), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3349), 7, + STATE(3889), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 13, + aux_sym_record_pattern_repeat1, + ACTIONS(6771), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2808), 18, + ACTIONS(6773), 17, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [15118] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [26029] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3350), 6, + STATE(3890), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3443), 12, + ACTIONS(3296), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379343,16 +427266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3445), 21, + ACTIONS(3298), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -379360,50 +427279,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [15183] = 16, + [26092] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3351), 6, + STATE(3891), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5782), 12, + ACTIONS(3318), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -379416,8 +427322,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5784), 14, + ACTIONS(3320), 19, anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -379425,48 +427332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15262] = 16, + [26155] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3352), 6, + STATE(3892), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5806), 12, + ACTIONS(3292), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -379479,8 +427376,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(5808), 14, + ACTIONS(3294), 19, anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -379488,34 +427386,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15341] = 9, + [26218] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3353), 6, + STATE(3893), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 13, + ACTIONS(3304), 12, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -379523,13 +427425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(2919), 20, + ACTIONS(3306), 19, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -379539,7 +427440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, @@ -379550,64 +427450,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [15406] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [26281] = 34, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6087), 1, - anon_sym_DOT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(5991), 1, + anon_sym_POUNDif, + ACTIONS(6725), 1, + anon_sym_do, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(6731), 1, + anon_sym_static, + ACTIONS(6733), 1, + anon_sym_member, + ACTIONS(6735), 1, + anon_sym_interface, + ACTIONS(6737), 1, + anon_sym_abstract, + ACTIONS(6739), 1, + anon_sym_val, + ACTIONS(6741), 1, + anon_sym_inherit, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4881), 1, + sym_member_defn, + STATE(5109), 1, + sym_attributes, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5999), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6486), 1, + sym__class_type_body_inner, + STATE(6553), 1, + sym_interface_implementation, + STATE(6629), 1, + sym_function_or_value_defn, + STATE(6718), 1, + sym__member_defns, + STATE(7723), 1, + sym__class_type_body, + STATE(7834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3354), 7, + ACTIONS(6729), 2, + anon_sym_default, + anon_sym_override, + STATE(6633), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3894), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(2902), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [15473] = 11, + [26394] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379616,23 +427538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6080), 1, - anon_sym_DOT, - STATE(3346), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3355), 6, + STATE(3895), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 12, + ACTIONS(6424), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -379645,7 +427563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 19, + ACTIONS(6426), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -379665,29 +427583,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15542] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [26457] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3356), 6, + STATE(3896), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 12, + ACTIONS(3322), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379696,16 +427615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 21, + ACTIONS(3324), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -379713,15 +427628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [15607] = 10, + [26520] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379730,22 +427646,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6090), 1, - sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3357), 6, + STATE(3897), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 13, + ACTIONS(6778), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -379755,12 +427670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3179), 19, - sym__newline, - sym__dedent, + ACTIONS(6780), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379778,7 +427691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15674] = 10, + [26583] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379787,36 +427700,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6092), 1, - sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3358), 6, + STATE(3898), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 14, + ACTIONS(3730), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3179), 18, + ACTIONS(3732), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379827,7 +427738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379835,7 +427745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15741] = 11, + [26646] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379844,37 +427754,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5884), 1, - anon_sym_DOT, - STATE(3241), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3359), 6, + STATE(3899), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 12, + ACTIONS(3742), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2937), 19, - anon_sym_EQ, + ACTIONS(3744), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -379885,7 +427791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_LT2, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -379893,7 +427799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15810] = 36, + [26709] = 34, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, @@ -379902,81 +427808,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDr, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6033), 1, - anon_sym_do, - ACTIONS(6035), 1, + ACTIONS(5957), 1, anon_sym_let, - ACTIONS(6037), 1, + ACTIONS(5959), 1, anon_sym_let_BANG, - ACTIONS(6039), 1, + ACTIONS(5991), 1, + anon_sym_POUNDif, + ACTIONS(6725), 1, + anon_sym_do, + ACTIONS(6727), 1, anon_sym_new, - ACTIONS(6043), 1, + ACTIONS(6731), 1, anon_sym_static, - ACTIONS(6045), 1, + ACTIONS(6733), 1, anon_sym_member, - ACTIONS(6047), 1, + ACTIONS(6735), 1, anon_sym_interface, - ACTIONS(6049), 1, + ACTIONS(6737), 1, anon_sym_abstract, - ACTIONS(6051), 1, + ACTIONS(6739), 1, anon_sym_val, - ACTIONS(6053), 1, + ACTIONS(6741), 1, anon_sym_inherit, - ACTIONS(6055), 1, - anon_sym_POUNDif, - ACTIONS(6059), 1, - sym__newline, - ACTIONS(6094), 1, - anon_sym_POUNDendif, - STATE(3309), 1, - aux_sym_preproc_if_in_class_definition_repeat1, - STATE(3816), 1, - sym_member_defn, - STATE(3899), 1, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(4327), 1, + STATE(4720), 1, sym_attribute_set, - STATE(4352), 1, + STATE(4881), 1, + sym_member_defn, + STATE(5109), 1, + sym_attributes, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5999), 1, aux_sym__object_expression_inner_repeat1, - STATE(4504), 1, + STATE(6486), 1, + sym__class_type_body_inner, + STATE(6553), 1, + sym_interface_implementation, + STATE(6629), 1, sym_function_or_value_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(4513), 1, + STATE(6718), 1, sym__member_defns, - STATE(4540), 1, - sym_interface_implementation, - STATE(4541), 1, - sym__class_type_body_inner, - STATE(4689), 1, - sym_attributes, - STATE(7537), 1, + STATE(7404), 1, + sym__class_type_body, + STATE(7834), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6041), 2, + ACTIONS(6729), 2, anon_sym_default, anon_sym_override, - STATE(4544), 4, + STATE(6633), 4, sym__class_function_or_value_defn, sym__type_defn_elements, sym_class_inherits_decl, sym_preproc_if_in_class_definition, - STATE(3360), 6, + STATE(3900), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [15929] = 9, + [26822] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3901), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6782), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(6784), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [26885] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -379985,36 +427941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3361), 6, + STATE(3902), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 14, + ACTIONS(3814), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 19, - sym__newline, - sym__dedent, + ACTIONS(3816), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380025,6 +427978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380032,29 +427986,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [15994] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [26948] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3362), 6, + STATE(3903), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3512), 12, + ACTIONS(3340), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -380063,16 +428018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3514), 21, + ACTIONS(3342), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -380080,15 +428031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [16059] = 9, + [27011] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380097,36 +428049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3363), 6, + STATE(3904), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 14, + ACTIONS(3818), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3175), 19, - sym__newline, - sym__dedent, + ACTIONS(3820), 18, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380137,6 +428086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380144,7 +428094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16124] = 9, + [27074] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380153,19 +428103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3364), 6, + STATE(3905), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3346), 12, + ACTIONS(3608), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380178,10 +428128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3348), 21, - anon_sym_EQ, + ACTIONS(3610), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -380191,8 +428141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380200,7 +428148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16189] = 9, + [27137] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380209,35 +428157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3365), 6, + STATE(3906), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 12, + ACTIONS(3314), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3399), 21, - anon_sym_EQ, + ACTIONS(3312), 18, anon_sym_LBRACK_LT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, @@ -380248,7 +428195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -380256,128 +428202,42 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16254] = 35, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + [27200] = 16, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(5932), 1, - anon_sym_LBRACK_LT, - ACTIONS(5944), 1, - aux_sym_access_modifier_token1, - ACTIONS(5974), 1, - anon_sym_POUNDendif, - ACTIONS(6096), 1, - anon_sym_do, - ACTIONS(6099), 1, - anon_sym_let, - ACTIONS(6102), 1, - anon_sym_let_BANG, - ACTIONS(6105), 1, - anon_sym_new, - ACTIONS(6111), 1, - anon_sym_static, - ACTIONS(6114), 1, - anon_sym_member, - ACTIONS(6117), 1, - anon_sym_interface, - ACTIONS(6120), 1, - anon_sym_abstract, - ACTIONS(6123), 1, - anon_sym_val, - ACTIONS(6126), 1, - anon_sym_inherit, - ACTIONS(6129), 1, - anon_sym_POUNDif, - ACTIONS(6132), 1, - sym__newline, - STATE(3816), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4352), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4504), 1, - sym_function_or_value_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(4513), 1, - sym__member_defns, - STATE(4540), 1, - sym_interface_implementation, - STATE(4541), 1, - sym__class_type_body_inner, - STATE(4689), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6108), 2, - anon_sym_default, - anon_sym_override, - STATE(4544), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3366), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_preproc_if_in_class_definition_repeat1, - [16371] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, + ACTIONS(6700), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6745), 1, + anon_sym_COMMA, + ACTIONS(6747), 1, + anon_sym_COLON_COLON, + ACTIONS(6749), 1, + anon_sym_PIPE, + ACTIONS(6751), 1, + anon_sym_AMP, + STATE(3842), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3367), 6, + STATE(3907), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5826), 10, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6786), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -380385,14 +428245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, - ACTIONS(5824), 15, + sym_identifier, + ACTIONS(6788), 14, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -380401,8 +428261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [16452] = 11, + [27277] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380411,24 +428272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6135), 1, - anon_sym_or, - STATE(3383), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3368), 6, + STATE(3908), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 12, + ACTIONS(6790), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -380440,7 +428298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 18, + ACTIONS(6792), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -380459,30 +428317,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16520] = 9, + [27340] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3369), 6, + STATE(3909), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3021), 13, + ACTIONS(3705), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -380492,12 +428349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3023), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3707), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -380505,61 +428364,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [16584] = 21, + [27403] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5979), 1, - anon_sym_y, - ACTIONS(5981), 1, - anon_sym_uy, - ACTIONS(5983), 1, - anon_sym_s, - ACTIONS(5985), 1, - anon_sym_us, - ACTIONS(5987), 1, - anon_sym_l, - ACTIONS(5989), 1, - aux_sym_uint32_token1, - ACTIONS(5991), 1, - anon_sym_n, - ACTIONS(5993), 1, - anon_sym_un, - ACTIONS(5995), 1, - anon_sym_L, - ACTIONS(5997), 1, - aux_sym_uint64_token1, - ACTIONS(6137), 1, - anon_sym_lf, - ACTIONS(6139), 1, - anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3370), 6, + STATE(3910), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 9, + ACTIONS(6285), 13, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -380567,21 +428403,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 11, + ACTIONS(6287), 18, anon_sym_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [16672] = 10, + [27466] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380590,36 +428434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6141), 1, + ACTIONS(6794), 1, anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3371), 6, + STATE(3911), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 12, + ACTIONS(6424), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 19, - sym__newline, - sym__dedent, + ACTIONS(6426), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380637,7 +428480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16738] = 10, + [27531] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380646,21 +428489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6143), 1, - sym_int, + ACTIONS(6794), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3372), 6, + STATE(3912), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 14, + ACTIONS(3314), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -380672,10 +428515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3179), 17, + ACTIONS(3312), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380693,132 +428535,62 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [16804] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [27596] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6145), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6796), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3373), 6, + STATE(3913), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3355), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, - anon_sym_LBRACK_LT, + ACTIONS(3357), 18, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [16874] = 21, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, - anon_sym_LPAREN, - ACTIONS(6151), 1, - anon_sym__, - ACTIONS(6153), 1, - anon_sym_POUND, - STATE(392), 1, - sym_type, - STATE(2851), 1, - sym__static_type_identifier, - STATE(2932), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6147), 1, - sym_object_construction, - STATE(6266), 1, - sym_attribute, - STATE(7763), 1, - sym_attribute_target, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6155), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3374), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6147), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(3005), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [16962] = 9, + [27661] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -380827,35 +428599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3375), 6, + STATE(3914), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 15, + ACTIONS(3818), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3175), 17, + ACTIONS(3820), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -380873,32 +428644,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17026] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [27724] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6157), 1, - anon_sym_or, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3376), 7, + STATE(3915), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 12, + ACTIONS(3351), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -380907,151 +428676,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 18, + ACTIONS(3353), 19, anon_sym_EQ, - anon_sym_LBRACK_LT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [17092] = 21, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, + [27787] = 11, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, - anon_sym_LPAREN, - ACTIONS(6151), 1, - anon_sym__, - ACTIONS(6153), 1, - anon_sym_POUND, - STATE(392), 1, - sym_type, - STATE(2851), 1, - sym__static_type_identifier, - STATE(2932), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6065), 1, - sym_attribute, - STATE(6147), 1, - sym_object_construction, - STATE(7763), 1, - sym_attribute_target, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6155), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3377), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6147), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(3005), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [17180] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6769), 1, + anon_sym_SEMI, + STATE(3889), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3378), 6, + STATE(3916), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3007), 13, + ACTIONS(6765), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3009), 19, + ACTIONS(6767), 17, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17244] = 10, + [27854] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381060,22 +428763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6164), 1, - anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3379), 7, + STATE(3917), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6160), 12, + ACTIONS(3814), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381088,8 +428788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6162), 18, - anon_sym_EQ, + ACTIONS(3816), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381107,7 +428808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17310] = 11, + [27917] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381116,23 +428817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6171), 1, - anon_sym_and, - STATE(3379), 1, - aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3380), 6, + STATE(3918), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6167), 12, + ACTIONS(3742), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381145,8 +428842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6169), 18, - anon_sym_EQ, + ACTIONS(3744), 19, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381164,7 +428862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17378] = 9, + [27980] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381173,19 +428871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3381), 6, + STATE(3919), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 12, + ACTIONS(3705), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381198,7 +428896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 20, + ACTIONS(3707), 19, sym__newline, sym__dedent, anon_sym_LBRACK_LT, @@ -381211,7 +428909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DOT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381219,74 +428916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17442] = 21, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, - anon_sym_LPAREN, - ACTIONS(6151), 1, - anon_sym__, - ACTIONS(6153), 1, - anon_sym_POUND, - STATE(392), 1, - sym_type, - STATE(2851), 1, - sym__static_type_identifier, - STATE(2932), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(5823), 1, - sym_attribute, - STATE(6147), 1, - sym_object_construction, - STATE(7763), 1, - sym_attribute_target, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6155), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3382), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6147), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(3005), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [17530] = 11, + [28043] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381295,24 +428925,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6135), 1, - anon_sym_or, - STATE(3376), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3383), 6, + STATE(3920), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 12, + ACTIONS(6798), 13, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -381324,7 +428951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2943), 18, + ACTIONS(6800), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -381343,30 +428970,31 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17598] = 9, + [28106] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6806), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3384), 6, + STATE(3921), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 12, + ACTIONS(6802), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -381375,51 +429003,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 20, + ACTIONS(6804), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17662] = 9, + [28171] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3385), 6, + STATE(3922), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3033), 13, + ACTIONS(6293), 13, anon_sym_COLON, anon_sym_and, anon_sym_as, @@ -381427,56 +429054,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3039), 19, + ACTIONS(6295), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17726] = 9, + [28234] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3386), 6, + STATE(3923), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3003), 13, + ACTIONS(6424), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -381486,12 +429111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3005), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6426), 18, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -381499,64 +429126,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17790] = 12, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [28297] = 33, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6173), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6576), 1, + anon_sym_do, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(6582), 1, + anon_sym_new, + ACTIONS(6586), 1, + anon_sym_static, + ACTIONS(6588), 1, + anon_sym_member, + ACTIONS(6590), 1, + anon_sym_interface, + ACTIONS(6592), 1, + anon_sym_abstract, + ACTIONS(6594), 1, + anon_sym_val, + ACTIONS(6596), 1, + anon_sym_inherit, + ACTIONS(6598), 1, + anon_sym_POUNDif, + STATE(4185), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4743), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4932), 1, + sym_function_or_value_defn, + STATE(4944), 1, + sym_interface_implementation, + STATE(4953), 1, + sym__class_type_body_inner, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(4963), 1, + sym__member_defns, + STATE(5098), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3387), 6, + ACTIONS(6584), 2, + anon_sym_default, + anon_sym_override, + STATE(4933), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3924), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + [28407] = 16, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6700), 1, anon_sym_COLON, + ACTIONS(6743), 1, anon_sym_as, + ACTIONS(6808), 1, + anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6814), 1, + anon_sym_AMP, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(3925), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6786), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6788), 13, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -381566,33 +429270,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [17860] = 10, + [28483] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6175), 1, - anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3388), 7, + STATE(3926), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 12, + ACTIONS(6816), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -381601,83 +429301,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2808), 18, + ACTIONS(6818), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17926] = 9, + [28545] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3389), 6, + STATE(3927), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3013), 13, + ACTIONS(3840), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3015), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3842), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [17990] = 9, + [28607] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381686,19 +429385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3390), 6, + STATE(3928), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 15, + ACTIONS(3705), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381711,10 +429410,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, anon_sym_LPAREN_PIPE, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 17, + ACTIONS(3707), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381732,7 +429429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18054] = 12, + [28669] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381741,46 +429438,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6178), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6700), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6808), 1, + anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6814), 1, + anon_sym_AMP, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3391), 6, + STATE(3929), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(4764), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(4762), 13, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -381790,7 +429489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18124] = 11, + [28745] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381799,23 +429498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3392), 6, + STATE(3930), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3701), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -381829,7 +429524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 17, + ACTIONS(3703), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -381847,7 +429542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18192] = 10, + [28807] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381856,46 +429551,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6180), 1, - anon_sym_DOT, + ACTIONS(6808), 1, + anon_sym_COMMA, + STATE(3959), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3393), 6, + STATE(3931), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 13, + ACTIONS(6753), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 18, + ACTIONS(6755), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -381903,7 +429597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18258] = 11, + [28873] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381912,24 +429606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6171), 1, - anon_sym_and, - STATE(3380), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3394), 6, + STATE(3932), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6182), 12, - anon_sym_COLON, + ACTIONS(6717), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -381941,7 +429634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6184), 18, + ACTIONS(6719), 17, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -381950,7 +429643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -381960,7 +429652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18326] = 10, + [28939] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -381969,35 +429661,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6180), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3395), 6, + STATE(3933), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 13, + ACTIONS(3730), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 18, + ACTIONS(3732), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382008,7 +429698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382016,7 +429705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18392] = 12, + [29001] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382025,25 +429714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6186), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3396), 6, + STATE(3934), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3798), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -382057,7 +429740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(3800), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382065,6 +429748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -382074,74 +429758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18462] = 21, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, - anon_sym_LPAREN, - ACTIONS(6151), 1, - anon_sym__, - ACTIONS(6153), 1, - anon_sym_POUND, - STATE(392), 1, - sym_type, - STATE(2851), 1, - sym__static_type_identifier, - STATE(2932), 1, - sym_type_argument, - STATE(3024), 1, - sym_long_identifier, - STATE(6099), 1, - sym_attribute, - STATE(6147), 1, - sym_object_construction, - STATE(7763), 1, - sym_attribute_target, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6155), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3397), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6147), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(3005), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [18550] = 10, + [29063] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382150,21 +429767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6141), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3398), 6, + STATE(3935), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 12, + ACTIONS(6802), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -382177,9 +429792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 19, - sym__newline, - sym__dedent, + ACTIONS(6804), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382197,33 +429811,31 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18616] = 10, + [29125] = 10, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6188), 1, - anon_sym_COLON_GT, + ACTIONS(6824), 1, + anon_sym_as, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3399), 6, + STATE(3936), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 12, + ACTIONS(6820), 11, anon_sym_COLON, - anon_sym_and, - anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -382231,29 +429843,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 19, + ACTIONS(6822), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [18682] = 11, + [29189] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382262,37 +429874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5720), 1, - aux_sym_decimal_token1, - ACTIONS(5734), 1, - anon_sym_f, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3400), 6, + STATE(3937), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, - anon_sym_COLON, + ACTIONS(6702), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 17, + ACTIONS(6704), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382300,7 +429911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -382310,172 +429920,334 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [18750] = 9, + [29255] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3401), 6, + STATE(3938), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3043), 13, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6713), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3045), 19, + ACTIONS(6715), 17, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [18814] = 9, + [29321] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6826), 1, + sym_identifier, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6830), 1, + anon_sym_LPAREN, + ACTIONS(6832), 1, + anon_sym__, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6836), 1, + anon_sym_POUND, + STATE(2093), 1, + sym__static_type_identifier, + STATE(2592), 1, + sym_type, + STATE(2789), 1, + sym_type_argument, + STATE(2839), 1, + sym_long_identifier, + STATE(2982), 1, + sym_curried_spec, + STATE(4020), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3402), 6, + ACTIONS(6838), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3939), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2926), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [18878] = 9, + STATE(2824), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [29419] = 33, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6356), 1, + anon_sym_do, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, + anon_sym_new, + ACTIONS(6366), 1, + anon_sym_static, + ACTIONS(6368), 1, + anon_sym_member, + ACTIONS(6370), 1, + anon_sym_interface, + ACTIONS(6372), 1, + anon_sym_abstract, + ACTIONS(6374), 1, + anon_sym_val, + ACTIONS(6376), 1, + anon_sym_inherit, + ACTIONS(6378), 1, + anon_sym_POUNDif, + STATE(4182), 1, + sym_member_defn, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4598), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4793), 1, + sym_interface_implementation, + STATE(4794), 1, + sym__member_defns, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4896), 1, + sym_function_or_value_defn, + STATE(4899), 1, + sym__class_type_body_inner, + STATE(5104), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6364), 2, + anon_sym_default, + anon_sym_override, + STATE(4898), 4, + sym__class_function_or_value_defn, + sym__type_defn_elements, + sym_class_inherits_decl, + sym_preproc_if_in_class_definition, + STATE(3940), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [29529] = 9, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3403), 6, + STATE(3941), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2986), 13, + ACTIONS(3742), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2988), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3744), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [18942] = 12, + [29591] = 27, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6840), 1, + sym_identifier, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + STATE(4016), 1, + aux_sym_curried_spec_repeat1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4037), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4726), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3942), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [29689] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382484,25 +430256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6190), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3404), 6, + STATE(3943), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3814), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -382516,7 +430282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(3816), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382524,6 +430290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -382533,227 +430300,310 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19012] = 9, + [29751] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3405), 6, + STATE(3944), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3047), 13, + ACTIONS(2768), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3049), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2770), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19076] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [29813] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6850), 1, + sym_identifier, + ACTIONS(6852), 1, + anon_sym_LPAREN, + ACTIONS(6854), 1, + anon_sym__, + ACTIONS(6856), 1, + anon_sym_POUND, + STATE(2348), 1, + sym__static_type_identifier, + STATE(2782), 1, + sym_type, + STATE(2831), 1, + sym_type_argument, + STATE(2855), 1, + sym_long_identifier, + STATE(3186), 1, + sym_curried_spec, + STATE(4010), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3406), 6, + ACTIONS(6858), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3945), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(2902), 19, + STATE(2851), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [29911] = 27, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(6834), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_DOT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [19140] = 9, + ACTIONS(6860), 1, + sym_identifier, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym__, + ACTIONS(6866), 1, + anon_sym_POUND, + STATE(4013), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4286), 1, + sym__static_type_identifier, + STATE(4667), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4759), 1, + sym_type_argument, + STATE(4893), 1, + sym_long_identifier, + STATE(5323), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6868), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3946), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [30009] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3407), 6, + STATE(3947), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3025), 13, + ACTIONS(3818), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3027), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3820), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19204] = 9, + [30071] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3408), 6, + STATE(3948), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 13, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6721), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3019), 19, + ACTIONS(6723), 17, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19268] = 9, + [30137] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382762,33 +430612,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3409), 6, + STATE(3949), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 13, - anon_sym_COLON, + ACTIONS(6696), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2902), 19, + ACTIONS(6698), 17, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382796,11 +430649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_EQ2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -382808,7 +430658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19332] = 12, + [30203] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -382817,39 +430667,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6192), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3410), 6, + STATE(3950), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(6870), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6872), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -382857,6 +430701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -382866,42 +430711,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19402] = 15, + [30265] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3411), 6, + STATE(3951), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5806), 12, + ACTIONS(6874), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -382910,80 +430742,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5808), 14, + ACTIONS(6876), 18, + anon_sym_EQ, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19478] = 21, + [30327] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(5971), 1, anon_sym_POUND, - STATE(392), 1, - sym_type, - STATE(2851), 1, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6878), 1, + sym_identifier, + STATE(4009), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4284), 1, sym__static_type_identifier, - STATE(2932), 1, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4769), 1, sym_type_argument, - STATE(3024), 1, + STATE(4788), 1, + sym_type, + STATE(4888), 1, sym_long_identifier, - STATE(6064), 1, - sym_attribute, - STATE(6147), 1, - sym_object_construction, - STATE(7763), 1, - sym_attribute_target, + STATE(5380), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3412), 6, + STATE(3952), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6147), 9, - anon_sym_module, - anon_sym_assembly, - anon_sym_return, - anon_sym_field, - anon_sym_property, - anon_sym_param, - anon_sym_type, - anon_sym_constructor, - anon_sym_event, - STATE(3005), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -382994,63 +430835,60 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [19566] = 10, + [30425] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6194), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3413), 6, + STATE(3953), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 13, + ACTIONS(6880), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2992), 18, + ACTIONS(6882), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19632] = 12, + [30487] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383059,39 +430897,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6196), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3414), 6, + STATE(3954), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(6884), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6886), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383099,6 +430931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -383108,42 +430941,32 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19702] = 15, + [30549] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, + ACTIONS(6700), 1, + anon_sym_COLON, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3415), 6, + STATE(3955), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5782), 12, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6709), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -383152,24 +430975,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5784), 14, + ACTIONS(6711), 17, + anon_sym_EQ, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19778] = 12, + [30615] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383178,25 +431005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6198), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3416), 6, + STATE(3956), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(6424), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383210,7 +431031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6426), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383218,6 +431039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -383227,7 +431049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19848] = 12, + [30677] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383236,39 +431058,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6200), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3417), 6, + STATE(3957), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(6888), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6890), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383276,6 +431092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -383285,34 +431102,29 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [19918] = 11, + [30739] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6017), 1, - anon_sym_STAR, - STATE(3388), 1, - aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3418), 6, + STATE(3958), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2970), 12, + ACTIONS(6892), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -383321,28 +431133,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2972), 18, + ACTIONS(6894), 18, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [19986] = 12, + [30801] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383351,41 +431164,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6896), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3419), 6, + STATE(3959), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6702), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(6704), 16, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_COLON_COLON, @@ -383400,7 +431209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20056] = 12, + [30865] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383409,25 +431218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6073), 1, - anon_sym_DOT, - ACTIONS(6204), 1, - anon_sym_EQ, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3420), 6, + STATE(3960), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2953), 13, + ACTIONS(3794), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383441,7 +431244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2956), 16, + ACTIONS(3796), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383449,6 +431252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -383458,7 +431262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20126] = 11, + [30927] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383467,23 +431271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3473), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3421), 6, + STATE(3961), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6206), 11, + ACTIONS(6899), 12, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -383495,7 +431296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6208), 18, + ACTIONS(6901), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -383514,7 +431315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20193] = 9, + [30989] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383523,19 +431324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3422), 6, + STATE(3962), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3391), 12, + ACTIONS(6903), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383548,9 +431349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3393), 19, - sym__newline, - sym__dedent, + ACTIONS(6905), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383568,7 +431368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20256] = 9, + [31051] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383577,33 +431377,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3423), 6, + STATE(3963), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3477), 13, + ACTIONS(3642), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3479), 18, + ACTIONS(3644), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383614,7 +431414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -383622,63 +431421,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20319] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [31113] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3473), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6907), 1, + sym_identifier, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + STATE(4018), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4562), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, + STATE(5258), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3424), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3964), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6212), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6214), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [20386] = 11, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [31211] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383687,36 +431501,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3473), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3425), 6, + STATE(3965), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6216), 11, + ACTIONS(3786), 13, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6218), 18, - anon_sym_EQ, + ACTIONS(3788), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383734,7 +431545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20453] = 9, + [31273] = 16, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383743,44 +431554,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6700), 1, + anon_sym_COLON, + ACTIONS(6743), 1, + anon_sym_as, + ACTIONS(6808), 1, + anon_sym_COMMA, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_PIPE, + ACTIONS(6814), 1, + anon_sym_AMP, + STATE(3931), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3426), 6, + STATE(3966), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6917), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3358), 18, + ACTIONS(6919), 13, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -383788,7 +431605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20516] = 9, + [31349] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383797,33 +431614,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3427), 6, + STATE(3967), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 13, + ACTIONS(6771), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 18, + ACTIONS(6773), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383834,7 +431651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -383842,7 +431658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20579] = 10, + [31411] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -383851,21 +431667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6220), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3428), 6, + STATE(3968), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 13, + ACTIONS(3608), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -383879,7 +431693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 17, + ACTIONS(3610), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -383897,115 +431711,149 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20644] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [31473] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6921), 1, + sym_identifier, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + STATE(4019), 1, + aux_sym_curried_spec_repeat1, + STATE(4103), 1, + sym_type, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4858), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3429), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3969), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3029), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3031), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [20707] = 9, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [31571] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6850), 1, + sym_identifier, + ACTIONS(6852), 1, + anon_sym_LPAREN, + ACTIONS(6854), 1, + anon_sym__, + ACTIONS(6856), 1, + anon_sym_POUND, + STATE(2348), 1, + sym__static_type_identifier, + STATE(2782), 1, + sym_type, + STATE(2831), 1, + sym_type_argument, + STATE(2855), 1, + sym_long_identifier, + STATE(3180), 1, + sym_curried_spec, + STATE(4010), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3430), 6, + ACTIONS(6858), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3970), 6, sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2986), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2988), 19, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [20770] = 9, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2851), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [31669] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384014,33 +431862,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3431), 6, + STATE(3971), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 13, + ACTIONS(3314), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3530), 18, + ACTIONS(3312), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384051,7 +431899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384059,7 +431906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20833] = 9, + [31731] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384068,33 +431915,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3432), 6, + STATE(3972), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, + ACTIONS(3836), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 18, + ACTIONS(3838), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384105,7 +431952,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384113,7 +431959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20896] = 9, + [31793] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384122,34 +431968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3433), 6, + STATE(3973), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 13, + ACTIONS(3825), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_or, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2919), 18, - anon_sym_EQ, + ACTIONS(3827), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384167,7 +432012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [20959] = 9, + [31855] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384176,33 +432021,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3434), 6, + STATE(3974), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 13, + ACTIONS(3585), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3467), 18, + ACTIONS(3587), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384213,7 +432058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384221,116 +432065,149 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21022] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [31917] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6921), 1, + sym_identifier, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + STATE(4019), 1, + aux_sym_curried_spec_repeat1, + STATE(4103), 1, + sym_type, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4861), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3435), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3975), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3463), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [21085] = 10, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [32015] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6222), 1, - anon_sym_LT2, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + STATE(4011), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4300), 1, + sym_type, + STATE(4388), 1, + sym_type_argument, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4784), 1, + sym_long_identifier, + STATE(5217), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3436), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3976), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2992), 18, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [21150] = 9, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [32113] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384339,33 +432216,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3437), 6, + STATE(3977), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 13, + ACTIONS(6941), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3453), 18, + ACTIONS(6943), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384376,7 +432253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384384,63 +432260,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21213] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [32175] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3473), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6840), 1, + sym_identifier, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + STATE(4016), 1, + aux_sym_curried_spec_repeat1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4037), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4724), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3438), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3978), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6224), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6226), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [21280] = 10, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [32273] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384449,36 +432340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6232), 1, - anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3439), 7, + STATE(3979), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(6228), 12, + ACTIONS(3581), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6230), 17, - anon_sym_EQ, + ACTIONS(3583), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384486,6 +432374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -384495,7 +432384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21345] = 9, + [32335] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384504,33 +432393,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3440), 6, + STATE(3980), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 13, + ACTIONS(3774), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3389), 18, + ACTIONS(3776), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384541,7 +432430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384549,7 +432437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21408] = 9, + [32397] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384558,34 +432446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3441), 6, + STATE(3981), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3512), 12, + ACTIONS(3602), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3514), 19, - sym__newline, - sym__dedent, + ACTIONS(3604), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384603,7 +432490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21471] = 9, + [32459] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384612,33 +432499,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3442), 6, + STATE(3982), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3391), 13, + ACTIONS(3616), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3393), 18, + ACTIONS(3618), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384649,7 +432536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384657,7 +432543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21534] = 11, + [32521] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384666,23 +432552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6239), 1, - anon_sym_SEMI, - STATE(3439), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3443), 6, + STATE(3983), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 12, + ACTIONS(6945), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384695,7 +432577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6237), 17, + ACTIONS(6947), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -384704,6 +432586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -384713,7 +432596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21601] = 9, + [32583] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384722,33 +432605,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3444), 6, + STATE(3984), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 13, + ACTIONS(3656), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3373), 18, + ACTIONS(3658), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384759,7 +432642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384767,7 +432649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21664] = 9, + [32645] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384776,19 +432658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3445), 6, + STATE(3985), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 12, + ACTIONS(6949), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -384801,9 +432683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3399), 19, - sym__newline, - sym__dedent, + ACTIONS(6951), 18, + anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384821,7 +432702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21727] = 9, + [32707] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384830,34 +432711,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3446), 6, + STATE(3986), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 12, + ACTIONS(3802), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 19, - sym__newline, - sym__dedent, + ACTIONS(3804), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384875,7 +432755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21790] = 9, + [32769] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384884,33 +432764,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3447), 6, + STATE(3987), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 13, + ACTIONS(3660), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3377), 18, + ACTIONS(3662), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384921,7 +432801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -384929,7 +432808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21853] = 10, + [32831] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384938,35 +432817,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - STATE(3507), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3448), 6, + STATE(3988), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 12, + ACTIONS(3598), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6243), 18, - anon_sym_EQ, + ACTIONS(3600), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -384984,7 +432861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21918] = 11, + [32893] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -384993,23 +432870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6239), 1, - anon_sym_SEMI, - STATE(3443), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3449), 6, + STATE(3989), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 12, + ACTIONS(3242), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385022,7 +432895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6243), 17, + ACTIONS(3244), 18, anon_sym_EQ, anon_sym_LBRACK_LT, anon_sym_COMMA, @@ -385031,6 +432904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -385040,7 +432914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [21985] = 9, + [32955] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385049,34 +432923,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3450), 6, + STATE(3990), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 12, + ACTIONS(3790), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 19, - sym__newline, - sym__dedent, + ACTIONS(3792), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385094,115 +432967,220 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22048] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [33017] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6860), 1, + sym_identifier, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym__, + ACTIONS(6866), 1, + anon_sym_POUND, + STATE(4013), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4286), 1, + sym__static_type_identifier, + STATE(4667), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4759), 1, + sym_type_argument, + STATE(4893), 1, + sym_long_identifier, + STATE(5312), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3451), 6, + ACTIONS(6868), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3991), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3346), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [33115] = 27, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6826), 1, sym_identifier, - ACTIONS(3348), 19, - sym__newline, - sym__dedent, + ACTIONS(6828), 1, anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(6830), 1, + anon_sym_LPAREN, + ACTIONS(6832), 1, + anon_sym__, + ACTIONS(6834), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [22111] = 9, + ACTIONS(6836), 1, + anon_sym_POUND, + STATE(2093), 1, + sym__static_type_identifier, + STATE(2592), 1, + sym_type, + STATE(2789), 1, + sym_type_argument, + STATE(2839), 1, + sym_long_identifier, + STATE(3002), 1, + sym_curried_spec, + STATE(4020), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6838), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3992), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2824), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [33213] = 27, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6907), 1, + sym_identifier, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + STATE(4018), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4562), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, + STATE(5244), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3452), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(3993), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3047), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3049), 19, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [22174] = 9, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [33311] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385211,34 +433189,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3453), 6, + STATE(3994), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 12, + ACTIONS(3693), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3530), 19, - sym__newline, - sym__dedent, + ACTIONS(3695), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385256,7 +433233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22237] = 9, + [33373] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385265,34 +433242,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3454), 6, + STATE(3995), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 12, + ACTIONS(3722), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 19, - sym__newline, - sym__dedent, + ACTIONS(3724), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385310,115 +433286,113 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22300] = 9, + [33435] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3455), 6, + STATE(3996), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3017), 12, + ACTIONS(3726), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3019), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3728), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [22363] = 9, + [33497] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3456), 6, + STATE(3997), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3025), 12, + ACTIONS(3734), 13, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3027), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3736), 17, + anon_sym_LBRACK_LT, anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [22426] = 9, + [33559] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385427,33 +433401,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3457), 6, + STATE(3998), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 13, + ACTIONS(3738), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3352), 18, + ACTIONS(3740), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385464,7 +433438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385472,7 +433445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22489] = 34, + [33621] = 33, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, @@ -385481,77 +433454,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDr, ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, + ACTIONS(5957), 1, anon_sym_let, - ACTIONS(5479), 1, + ACTIONS(5959), 1, anon_sym_let_BANG, - ACTIONS(5511), 1, + ACTIONS(5991), 1, anon_sym_POUNDif, - ACTIONS(6245), 1, + ACTIONS(6725), 1, anon_sym_do, - ACTIONS(6247), 1, + ACTIONS(6727), 1, anon_sym_new, - ACTIONS(6251), 1, + ACTIONS(6731), 1, anon_sym_static, - ACTIONS(6253), 1, + ACTIONS(6733), 1, anon_sym_member, - ACTIONS(6255), 1, + ACTIONS(6735), 1, anon_sym_interface, - ACTIONS(6257), 1, + ACTIONS(6737), 1, anon_sym_abstract, - ACTIONS(6259), 1, + ACTIONS(6739), 1, anon_sym_val, - ACTIONS(6261), 1, + ACTIONS(6741), 1, anon_sym_inherit, - STATE(3899), 1, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(4327), 1, + STATE(4720), 1, sym_attribute_set, - STATE(4397), 1, + STATE(4881), 1, sym_member_defn, - STATE(4705), 1, + STATE(5109), 1, sym_attributes, - STATE(4987), 1, + STATE(5387), 1, sym_additional_constr_defn, - STATE(5652), 1, + STATE(5999), 1, aux_sym__object_expression_inner_repeat1, - STATE(5895), 1, - sym__class_type_body_inner, - STATE(5910), 1, + STATE(6553), 1, sym_interface_implementation, - STATE(6364), 1, + STATE(6629), 1, sym_function_or_value_defn, - STATE(6557), 1, + STATE(6686), 1, + sym__class_type_body_inner, + STATE(6718), 1, sym__member_defns, - STATE(7304), 1, + STATE(7834), 1, sym_access_modifier, - STATE(7413), 1, - sym__class_type_body, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6249), 2, + ACTIONS(6729), 2, anon_sym_default, anon_sym_override, - STATE(6376), 4, + STATE(6633), 4, sym__class_function_or_value_defn, sym__type_defn_elements, sym_class_inherits_decl, sym_preproc_if_in_class_definition, - STATE(3458), 6, + STATE(3999), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [22602] = 9, + [33731] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385560,34 +433531,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3459), 6, + STATE(4000), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 12, + ACTIONS(3746), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3467), 19, - sym__newline, - sym__dedent, + ACTIONS(3748), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385605,7 +433575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22665] = 9, + [33793] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385614,34 +433584,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3460), 6, + STATE(4001), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 12, + ACTIONS(3766), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3463), 19, - sym__newline, - sym__dedent, + ACTIONS(3768), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385659,7 +433628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22728] = 9, + [33855] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385668,33 +433637,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3461), 6, + STATE(4002), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 13, + ACTIONS(3770), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3341), 18, + ACTIONS(3772), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385705,7 +433674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385713,7 +433681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22791] = 9, + [33917] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385722,33 +433690,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3462), 6, + STATE(4003), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 13, + ACTIONS(3577), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3328), 18, + ACTIONS(3579), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385759,7 +433727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385767,7 +433734,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22854] = 9, + [33979] = 27, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + STATE(4011), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4300), 1, + sym_type, + STATE(4388), 1, + sym_type_argument, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4784), 1, + sym_long_identifier, + STATE(5210), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4004), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34077] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385776,33 +433814,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3463), 6, + STATE(4005), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3443), 13, + ACTIONS(3778), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, + anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3445), 18, + ACTIONS(3780), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385813,7 +433851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -385821,7 +433858,78 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22917] = 10, + [34139] = 27, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, + anon_sym_LPAREN, + ACTIONS(5963), 1, + anon_sym__, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6878), 1, + sym_identifier, + STATE(4009), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4769), 1, + sym_type_argument, + STATE(4788), 1, + sym_type, + STATE(4888), 1, + sym_long_identifier, + STATE(5366), 1, + sym_curried_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4006), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34237] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -385830,21 +433938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6220), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3464), 6, + STATE(4007), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 13, + ACTIONS(3782), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385858,7 +433964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 17, + ACTIONS(3784), 17, anon_sym_LBRACK_LT, anon_sym_COMMA, anon_sym_QMARK, @@ -385876,28 +433982,30 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [22982] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [34299] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6953), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3465), 6, + STATE(4008), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3443), 12, + ACTIONS(3387), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -385907,123 +434015,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3445), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3389), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23045] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [34362] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, + anon_sym_LPAREN, + ACTIONS(5963), 1, + anon_sym__, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6878), 1, + sym_identifier, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4769), 1, + sym_type_argument, + STATE(4789), 1, + sym_type, + STATE(4888), 1, + sym_long_identifier, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3466), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4009), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 13, - anon_sym_COLON, - anon_sym_as, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34457] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6850), 1, + sym_identifier, + ACTIONS(6852), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6854), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3314), 18, + ACTIONS(6856), 1, + anon_sym_POUND, + STATE(2348), 1, + sym__static_type_identifier, + STATE(2805), 1, + sym_type, + STATE(2831), 1, + sym_type_argument, + STATE(2855), 1, + sym_long_identifier, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6858), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4010), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2851), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34552] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(6834), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [23108] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4301), 1, + sym_type, + STATE(4388), 1, + sym_type_argument, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4784), 1, + sym_long_identifier, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4011), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34647] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6955), 1, + anon_sym_DOT, + STATE(4017), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3467), 6, + STATE(4012), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 13, + ACTIONS(3202), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3471), 18, - anon_sym_LBRACK_LT, + ACTIONS(3204), 16, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -386031,53 +434289,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23171] = 9, - ACTIONS(5), 1, + [34712] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6860), 1, + sym_identifier, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym__, + ACTIONS(6866), 1, + anon_sym_POUND, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4286), 1, + sym__static_type_identifier, + STATE(4657), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4759), 1, + sym_type_argument, + STATE(4893), 1, + sym_long_identifier, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6868), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4013), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34807] = 25, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6957), 1, + sym_identifier, + ACTIONS(6960), 1, + anon_sym_LBRACK_LT, + ACTIONS(6963), 1, + anon_sym_LPAREN, + ACTIONS(6966), 1, + anon_sym__, + ACTIONS(6969), 1, + anon_sym_QMARK, + ACTIONS(6972), 1, + anon_sym_POUND, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5501), 1, + sym_long_identifier, + STATE(5815), 1, + sym_attribute_set, + STATE(5873), 1, + sym_type, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6975), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4014), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_curried_spec_repeat1, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [34900] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6955), 1, + anon_sym_DOT, + STATE(4012), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3468), 6, + STATE(4015), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 13, + ACTIONS(3257), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3297), 18, - anon_sym_LBRACK_LT, + ACTIONS(3259), 16, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -386085,89 +434480,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23234] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [34965] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6840), 1, + sym_identifier, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4052), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3469), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4016), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3415), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [23297] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35060] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6978), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3470), 6, + STATE(4017), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 12, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386177,105 +434590,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3453), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3287), 16, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23360] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35123] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6907), 1, + sym_identifier, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4634), 1, + sym_type, + STATE(4710), 1, + sym_argument_name_spec, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3471), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4018), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 12, - anon_sym_COLON, - anon_sym_as, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35218] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(6921), 1, + sym_identifier, + ACTIONS(6923), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6925), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(6927), 1, + anon_sym_POUND, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4101), 1, + sym_type, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4019), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35313] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6826), 1, sym_identifier, - ACTIONS(3536), 19, - sym__newline, - sym__dedent, + ACTIONS(6828), 1, anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(6830), 1, + anon_sym_LPAREN, + ACTIONS(6832), 1, + anon_sym__, + ACTIONS(6834), 1, anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [23423] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6836), 1, + anon_sym_POUND, + STATE(2093), 1, + sym__static_type_identifier, + STATE(2421), 1, + sym_type, + STATE(2789), 1, + sym_type_argument, + STATE(2839), 1, + sym_long_identifier, + STATE(4014), 1, + aux_sym_curried_spec_repeat1, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + STATE(6335), 1, + sym_argument_spec, + STATE(8124), 1, + sym_arguments_spec, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6838), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4020), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(2824), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [35408] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6981), 1, + anon_sym_or, + STATE(4027), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3472), 6, + STATE(4021), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 12, + ACTIONS(3230), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386285,55 +434851,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3389), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3232), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23486] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35472] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6267), 1, - anon_sym_COMMA, - STATE(3539), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3473), 6, + STATE(4022), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6263), 12, + ACTIONS(3387), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386343,49 +434900,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(6265), 17, + ACTIONS(3389), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23553] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35532] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6981), 1, + anon_sym_or, + STATE(4021), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3474), 6, + STATE(4023), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 12, + ACTIONS(3242), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386395,51 +434955,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3373), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3244), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23616] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35596] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6246), 1, + aux_sym_decimal_token1, + ACTIONS(6289), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3475), 6, + STATE(4024), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 12, + ACTIONS(2768), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386449,51 +435008,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3358), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(2770), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23679] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35660] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6983), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3476), 6, + STATE(4025), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 12, + ACTIONS(3417), 12, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386503,51 +435059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3352), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3419), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23742] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35722] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3477), 6, + STATE(4026), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 12, + ACTIONS(3285), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386557,51 +435109,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3341), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3287), 17, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23805] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35782] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6985), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3478), 6, + STATE(4027), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 12, + aux_sym_type_argument_repeat1, + ACTIONS(3274), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386611,105 +435163,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3328), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3276), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23868] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [35844] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_with, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, + STATE(4800), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3479), 6, + STATE(4028), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3314), 19, + ACTIONS(5188), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [23931] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5190), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [35924] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3480), 6, + STATE(4029), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 12, + ACTIONS(3451), 13, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -386719,30 +435273,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3471), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(3453), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [23994] = 9, + [35984] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -386751,128 +435302,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(7002), 1, + anon_sym_LBRACK_LT, + STATE(4118), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3481), 6, + STATE(4030), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 12, - anon_sym_COLON, - anon_sym_as, + aux_sym_attributes_repeat1, + ACTIONS(7000), 12, + anon_sym_mutable, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3297), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_COMMA, + ACTIONS(7005), 13, + aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - aux_sym_char_token1, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [24057] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [36048] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7007), 1, + anon_sym_or, + STATE(4041), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3482), 6, + STATE(4031), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3290), 19, + ACTIONS(3244), 12, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24120] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3242), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [36111] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3483), 6, + STATE(4032), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 12, + ACTIONS(6782), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -386881,52 +435430,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3286), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6784), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [24183] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [36170] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3484), 6, + STATE(4033), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 12, + ACTIONS(6285), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -386935,160 +435480,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3282), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6287), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [24246] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [36229] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7011), 1, + anon_sym_with, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, + STATE(4950), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3485), 6, + ACTIONS(5188), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4034), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3278), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24309] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5190), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [36308] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3486), 6, + STATE(4035), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3272), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3274), 19, + ACTIONS(3022), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24372] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3024), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [36383] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3487), 6, + STATE(4036), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3508), 12, + ACTIONS(6790), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -387097,393 +435648,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3510), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6792), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [24435] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [36442] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3488), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(4037), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3270), 19, + ACTIONS(4979), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24498] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(4981), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [36515] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3489), 6, + STATE(4038), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3262), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3264), 19, + ACTIONS(3030), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24561] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3032), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [36590] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3490), 6, + STATE(4039), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3508), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3510), 18, + ACTIONS(3010), 7, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24624] = 9, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3012), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [36665] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7021), 1, + anon_sym_DOT, + STATE(4087), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3491), 6, + STATE(4040), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3003), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3005), 19, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3259), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [24687] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3257), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [36730] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7007), 1, + anon_sym_or, + STATE(4056), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3492), 6, + STATE(4041), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3477), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3479), 19, + ACTIONS(3232), 12, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [24750] = 9, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3230), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [36793] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7023), 1, + anon_sym_y, + ACTIONS(7025), 1, + anon_sym_uy, + ACTIONS(7027), 1, + anon_sym_s, + ACTIONS(7029), 1, + anon_sym_us, + ACTIONS(7031), 1, + anon_sym_l, + ACTIONS(7033), 1, + aux_sym_uint32_token1, + ACTIONS(7035), 1, + anon_sym_n, + ACTIONS(7037), 1, + anon_sym_un, + ACTIONS(7039), 1, + anon_sym_L, + ACTIONS(7041), 1, + aux_sym_uint64_token1, + ACTIONS(7043), 1, + aux_sym_bignum_token1, + ACTIONS(7045), 1, + aux_sym_decimal_token1, + ACTIONS(7047), 1, + anon_sym_DOT2, + ACTIONS(7049), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3493), 6, + STATE(4042), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3033), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3039), 19, + ACTIONS(2770), 12, anon_sym_EQ, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [24813] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [36880] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3494), 6, + STATE(4043), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 13, + ACTIONS(6798), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3399), 18, - anon_sym_LBRACK_LT, + ACTIONS(6800), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -387496,32 +436057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [24876] = 9, + [36939] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7051), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3495), 6, + STATE(4044), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3013), 12, + ACTIONS(6802), 11, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -387532,9 +436093,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3015), 19, + ACTIONS(6804), 15, anon_sym_EQ, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -387543,52 +436103,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [24939] = 9, + [37000] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3496), 6, + STATE(4045), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3043), 12, + ACTIONS(3274), 12, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, sym_int, sym_identifier, - ACTIONS(3045), 19, + ACTIONS(3276), 15, anon_sym_EQ, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -387597,117 +436153,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [25002] = 34, + [37059] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4046), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3090), 7, + sym__newline, + anon_sym_LBRACK_LT, anon_sym_let_BANG, - ACTIONS(5511), 1, + aux_sym_access_modifier_token1, anon_sym_POUNDif, - ACTIONS(6245), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3092), 12, anon_sym_do, - ACTIONS(6247), 1, + anon_sym_let, + anon_sym_with, anon_sym_new, - ACTIONS(6251), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6253), 1, anon_sym_member, - ACTIONS(6255), 1, anon_sym_interface, - ACTIONS(6257), 1, anon_sym_abstract, - ACTIONS(6259), 1, + anon_sym_override, anon_sym_val, - ACTIONS(6261), 1, anon_sym_inherit, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4397), 1, - sym_member_defn, - STATE(4705), 1, - sym_attributes, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(5652), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5895), 1, - sym__class_type_body_inner, - STATE(5910), 1, - sym_interface_implementation, - STATE(6364), 1, - sym_function_or_value_defn, - STATE(6557), 1, - sym__member_defns, - STATE(7304), 1, - sym_access_modifier, - STATE(7733), 1, - sym__class_type_body, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(6376), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3497), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [25115] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37134] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3498), 6, + STATE(4047), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 12, + ACTIONS(6293), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -387716,105 +436249,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3255), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6295), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25178] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37193] = 24, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6828), 1, + anon_sym_LBRACK_LT, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(7053), 1, + sym_identifier, + STATE(4251), 1, + sym_attributes, + STATE(4710), 1, + sym_argument_name_spec, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5467), 1, + aux_sym_attributes_repeat1, + STATE(5501), 1, + sym_long_identifier, + STATE(5815), 1, + sym_attribute_set, + STATE(5873), 1, + sym_type, + STATE(6702), 1, + sym_argument_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3499), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4048), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3430), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [25241] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [37282] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7055), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3500), 6, + STATE(4049), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 12, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6627), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -387824,69 +436366,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3411), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6629), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25304] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37343] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3501), 6, + STATE(4050), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 13, + ACTIONS(6627), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3423), 18, - anon_sym_LBRACK_LT, + ACTIONS(6629), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -387899,30 +436432,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25367] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37402] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7058), 1, + anon_sym_and, + STATE(4049), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3502), 6, + STATE(4051), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 12, + ACTIONS(6640), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -387932,106 +436468,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3419), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6642), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25430] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37465] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3503), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(4052), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3423), 19, + ACTIONS(4955), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [25493] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(4957), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [37538] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3504), 6, + STATE(4053), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 12, + ACTIONS(6778), 12, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -388040,107 +436574,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3430), 19, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + ACTIONS(6780), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25556] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37597] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7060), 1, + anon_sym_and, + STATE(4059), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3505), 6, + STATE(4054), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 13, + ACTIONS(6640), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3419), 18, - anon_sym_LBRACK_LT, + ACTIONS(6642), 14, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25619] = 9, + [37660] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7060), 1, + anon_sym_and, + STATE(4054), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3506), 6, + STATE(4055), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3007), 12, + ACTIONS(6676), 11, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -388151,9 +436681,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3009), 19, + ACTIONS(6678), 14, anon_sym_EQ, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -388161,111 +436690,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [25682] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37723] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - STATE(3439), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7062), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3507), 6, + STATE(4056), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6237), 18, - anon_sym_EQ, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 12, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [25747] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3274), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [37784] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7058), 1, + anon_sym_and, + STATE(4051), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3508), 6, + STATE(4057), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 13, + ACTIONS(6676), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3411), 18, - anon_sym_LBRACK_LT, + ACTIONS(6678), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -388278,163 +436798,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25810] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37847] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - ACTIONS(6267), 1, - anon_sym_COMMA, - ACTIONS(6269), 1, - anon_sym_as, - ACTIONS(6271), 1, - anon_sym_COLON_COLON, - ACTIONS(6273), 1, - anon_sym_PIPE, - ACTIONS(6275), 1, - anon_sym_AMP, - STATE(3473), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3509), 6, + STATE(4058), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4362), 10, + ACTIONS(3361), 12, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_or, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(4360), 14, + ACTIONS(3363), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25887] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37906] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7065), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3510), 6, + STATE(4059), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 13, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6627), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 18, - anon_sym_LBRACK_LT, + ACTIONS(6629), 14, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [25950] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [37967] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3511), 6, + STATE(4060), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3512), 13, + ACTIONS(3840), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3514), 18, - anon_sym_LBRACK_LT, + ACTIONS(3842), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -388447,88 +436948,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26013] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38025] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3512), 6, + ACTIONS(3090), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4061), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3290), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26076] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3092), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [38099] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3473), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7068), 1, + anon_sym_COMMA, + STATE(4064), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3513), 6, + STATE(4062), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6277), 11, + ACTIONS(6753), 11, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -388537,15 +437041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6279), 18, + ACTIONS(6755), 13, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -388557,48 +437056,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26143] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38161] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3514), 6, + STATE(4063), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 13, - anon_sym_COLON, + ACTIONS(6702), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3255), 18, - anon_sym_LBRACK_LT, + ACTIONS(6704), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -388611,32 +437107,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26206] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38223] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7072), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3515), 6, + STATE(4064), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6281), 13, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6702), 11, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -388645,15 +437142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6283), 18, + ACTIONS(6704), 13, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -388665,221 +437157,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26269] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38283] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7075), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3516), 6, + STATE(4065), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 13, + aux_sym_record_pattern_repeat1, + ACTIONS(6771), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3536), 18, - anon_sym_LBRACK_LT, + ACTIONS(6773), 13, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26332] = 34, + [38343] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4066), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5069), 7, + sym__newline, + anon_sym_LBRACK_LT, anon_sym_let_BANG, - ACTIONS(5511), 1, + aux_sym_access_modifier_token1, anon_sym_POUNDif, - ACTIONS(6245), 1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5071), 11, anon_sym_do, - ACTIONS(6247), 1, + anon_sym_let, anon_sym_new, - ACTIONS(6251), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6253), 1, anon_sym_member, - ACTIONS(6255), 1, anon_sym_interface, - ACTIONS(6257), 1, anon_sym_abstract, - ACTIONS(6259), 1, + anon_sym_override, anon_sym_val, - ACTIONS(6261), 1, anon_sym_inherit, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4397), 1, - sym_member_defn, - STATE(4705), 1, - sym_attributes, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(5652), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5895), 1, - sym__class_type_body_inner, - STATE(5910), 1, - sym_interface_implementation, - STATE(6364), 1, - sym_function_or_value_defn, - STATE(6557), 1, - sym__member_defns, - STATE(6878), 1, - sym__class_type_body, - STATE(7304), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(6376), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3517), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [26445] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38417] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3518), 6, + STATE(4067), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3415), 18, + ACTIONS(5036), 7, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26508] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5038), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [38491] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, anon_sym_COLON, - STATE(3473), 1, + STATE(4127), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3519), 6, + STATE(4068), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6285), 11, + ACTIONS(6721), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -388888,214 +437356,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6287), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(6723), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26575] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38553] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3520), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3262), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, sym_identifier, - ACTIONS(3264), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(6992), 1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26638] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3521), 6, + STATE(4069), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3377), 19, + ACTIONS(5073), 7, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26701] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5075), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [38627] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3522), 6, + STATE(4070), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3270), 18, + ACTIONS(5129), 7, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26764] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5131), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [38701] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, + anon_sym_COLON, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3523), 6, + STATE(4071), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6160), 13, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6709), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -389104,15 +437521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6162), 18, + ACTIONS(6711), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389124,140 +437537,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [26827] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38763] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3524), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3272), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_when, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6988), 1, sym_identifier, - ACTIONS(3274), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(6992), 1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26890] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_LT2, + ACTIONS(6998), 1, + anon_sym_LBRACK_RBRACK, + STATE(4183), 1, + aux_sym__compound_type_repeat1, + STATE(4196), 1, + sym_type_arguments, + STATE(4201), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3525), 6, + STATE(4072), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6289), 13, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6291), 18, - anon_sym_EQ, + ACTIONS(5077), 7, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [26953] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(5079), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [38837] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(4065), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3526), 6, + STATE(4073), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5782), 13, + ACTIONS(6765), 11, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -389266,15 +437628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5784), 18, + ACTIONS(6767), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389286,48 +437644,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27016] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38897] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3527), 6, + STATE(4074), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 13, - anon_sym_COLON, + ACTIONS(6696), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3278), 18, - anon_sym_LBRACK_LT, + ACTIONS(6698), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389340,102 +437695,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27079] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [38959] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7068), 1, + anon_sym_COMMA, + ACTIONS(7078), 1, + anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, + ACTIONS(7084), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_AMP, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3528), 6, + STATE(4075), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6757), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3282), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6759), 10, + anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27142] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39031] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3529), 6, + STATE(4076), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3346), 13, + ACTIONS(3701), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3348), 18, - anon_sym_LBRACK_LT, + ACTIONS(3703), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389448,88 +437800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27205] = 34, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(5511), 1, - anon_sym_POUNDif, - ACTIONS(6245), 1, - anon_sym_do, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(6251), 1, - anon_sym_static, - ACTIONS(6253), 1, - anon_sym_member, - ACTIONS(6255), 1, - anon_sym_interface, - ACTIONS(6257), 1, - anon_sym_abstract, - ACTIONS(6259), 1, - anon_sym_val, - ACTIONS(6261), 1, - anon_sym_inherit, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4397), 1, - sym_member_defn, - STATE(4705), 1, - sym_attributes, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(5652), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5895), 1, - sym__class_type_body_inner, - STATE(5910), 1, - sym_interface_implementation, - STATE(6364), 1, - sym_function_or_value_defn, - STATE(6557), 1, - sym__member_defns, - STATE(7304), 1, - sym_access_modifier, - STATE(7421), 1, - sym__class_type_body, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(6376), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3530), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [27318] = 10, + [39089] = 10, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -389538,45 +437810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6297), 1, - anon_sym_LT2, + ACTIONS(7092), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3531), 6, + STATE(4077), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6293), 12, - anon_sym_COLON, - anon_sym_as, + ACTIONS(7088), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6295), 18, + ACTIONS(7090), 14, anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -389584,30 +437851,32 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [27383] = 9, + [39149] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3532), 6, + STATE(4078), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3021), 12, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6709), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -389618,9 +437887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3023), 19, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6711), 14, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -389629,55 +437896,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [27446] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39211] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7094), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3533), 6, + STATE(4079), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 13, + aux_sym_repeat_pattern_repeat1, + ACTIONS(6702), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_when, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3286), 18, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6704), 13, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389690,35 +437951,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27509] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39271] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, anon_sym_COLON, - STATE(3473), 1, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7097), 1, + anon_sym_COMMA, + ACTIONS(7099), 1, + anon_sym_COLON_COLON, + ACTIONS(7101), 1, + anon_sym_PIPE, + ACTIONS(7103), 1, + anon_sym_AMP, + STATE(4127), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3534), 6, + STATE(4080), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6299), 11, - anon_sym_as, + ACTIONS(6757), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -389726,53 +437995,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6301), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6759), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27576] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39343] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7097), 1, + anon_sym_COMMA, + ACTIONS(7099), 1, + anon_sym_COLON_COLON, + ACTIONS(7101), 1, + anon_sym_PIPE, + ACTIONS(7103), 1, + anon_sym_AMP, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3535), 6, + STATE(4081), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6303), 13, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, + ACTIONS(6786), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -389780,52 +438051,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6305), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6788), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27639] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39415] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, + anon_sym_COLON, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3536), 6, + STATE(4082), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5806), 13, - anon_sym_COLON, - anon_sym_and, + ACTIONS(6702), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -389834,15 +438098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(5808), 18, + ACTIONS(6704), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -389854,32 +438114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27702] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39477] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(4136), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3537), 6, + STATE(4083), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6307), 13, + ACTIONS(6765), 11, anon_sym_COLON, - anon_sym_and, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -389888,64 +438148,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6309), 18, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(6767), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27765] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39537] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, anon_sym_COLON, - ACTIONS(6267), 1, - anon_sym_COMMA, - ACTIONS(6269), 1, - anon_sym_as, - ACTIONS(6271), 1, - anon_sym_COLON_COLON, - ACTIONS(6273), 1, - anon_sym_PIPE, - ACTIONS(6275), 1, - anon_sym_AMP, - STATE(3473), 1, + STATE(4062), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3538), 6, + STATE(4084), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6311), 10, + ACTIONS(6721), 10, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -389953,14 +438199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6313), 14, + ACTIONS(6723), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -389969,34 +438215,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27842] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39599] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6315), 1, - anon_sym_COMMA, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, + anon_sym_COLON, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3539), 7, + STATE(4085), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6277), 12, - anon_sym_COLON, + ACTIONS(6696), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -390005,14 +438250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6279), 17, + ACTIONS(6698), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -390024,51 +438266,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27907] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39661] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7068), 1, + anon_sym_COMMA, + ACTIONS(7078), 1, + anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, + ACTIONS(7084), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_AMP, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3540), 6, + STATE(4086), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3443), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6786), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3445), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6788), 10, + anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -390077,324 +438322,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [27969] = 27, + [39733] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6328), 1, - anon_sym_POUND, - STATE(3634), 1, - aux_sym_curried_spec_repeat1, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3673), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4383), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3541), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [28067] = 27, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - STATE(3633), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3912), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4204), 1, - sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, - sym_long_identifier, - STATE(4884), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + ACTIONS(7021), 1, + anon_sym_DOT, + STATE(4100), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3542), 6, + STATE(4087), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [28165] = 33, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, + ACTIONS(3204), 11, + sym__newline, anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5852), 1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3202), 13, anon_sym_do, - ACTIONS(5854), 1, anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, + anon_sym_with, anon_sym_new, - ACTIONS(5862), 1, + anon_sym_default, anon_sym_static, - ACTIONS(5864), 1, anon_sym_member, - ACTIONS(5866), 1, anon_sym_interface, - ACTIONS(5868), 1, anon_sym_abstract, - ACTIONS(5870), 1, + anon_sym_override, anon_sym_val, - ACTIONS(5872), 1, anon_sym_inherit, - ACTIONS(5874), 1, - anon_sym_POUNDif, - STATE(3788), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4260), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4413), 1, - sym_function_or_value_defn, - STATE(4427), 1, - sym__class_type_body_inner, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4467), 1, - sym__member_defns, - STATE(4474), 1, - sym_interface_implementation, - STATE(4694), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5860), 2, - anon_sym_default, - anon_sym_override, - STATE(4414), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3543), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [28275] = 27, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6342), 1, sym_identifier, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - STATE(3625), 1, - aux_sym_curried_spec_repeat1, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3883), 1, - sym_attributes, - STATE(3941), 1, - sym_type, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, - sym_long_identifier, - STATE(4804), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3544), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [28373] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39795] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, anon_sym_COLON, - STATE(3554), 1, + STATE(4062), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3545), 6, + STATE(4088), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6216), 11, + ACTIONS(6757), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -390403,18 +438408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6218), 17, + ACTIONS(6759), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -390422,33 +438424,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28439] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39857] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6356), 1, - anon_sym_as, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3546), 6, + STATE(4089), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6352), 11, + ACTIONS(3794), 11, anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -390456,50 +438456,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6354), 18, + ACTIONS(3796), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28503] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39915] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3547), 6, + STATE(4090), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6293), 12, + ACTIONS(3642), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -390509,410 +438505,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6295), 18, + ACTIONS(3644), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28565] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [39973] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3548), 6, + STATE(4091), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3272), 13, + ACTIONS(6874), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3274), 17, - anon_sym_LBRACK_LT, + ACTIONS(6876), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28627] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40031] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7105), 1, + anon_sym_DOT, + STATE(4179), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3549), 6, + STATE(4092), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3278), 17, + ACTIONS(3259), 10, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [28689] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3257), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [40095] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3550), 6, + STATE(4093), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 13, - anon_sym_COLON, + ACTIONS(6713), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3282), 17, - anon_sym_LBRACK_LT, + ACTIONS(6715), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28751] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40157] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3551), 6, + STATE(4094), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 13, + ACTIONS(6870), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3286), 17, - anon_sym_LBRACK_LT, + ACTIONS(6872), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [28813] = 27, + [40215] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6358), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - STATE(3628), 1, - aux_sym_curried_spec_repeat1, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3749), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4469), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3552), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [28911] = 27, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, + ACTIONS(3022), 6, + sym__newline, anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6368), 1, - sym_identifier, - ACTIONS(6370), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym__, - ACTIONS(6374), 1, - anon_sym_POUND, - STATE(2364), 1, - sym__static_type_identifier, - STATE(2399), 1, - sym_type, - STATE(2427), 1, - sym_type_argument, - STATE(2483), 1, - sym_long_identifier, - STATE(2627), 1, - sym_curried_spec, - STATE(3626), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6376), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3553), 6, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4095), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29009] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3024), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [40289] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6378), 1, - anon_sym_COMMA, - STATE(3575), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7107), 1, + anon_sym_as, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3554), 6, + STATE(4096), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6263), 12, + ACTIONS(6820), 10, anon_sym_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -390920,66 +438813,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6265), 16, + ACTIONS(6822), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29075] = 9, - ACTIONS(5), 1, + [40349] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3030), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4097), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3032), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [40423] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(4073), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3555), 6, + STATE(4098), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 13, + ACTIONS(6761), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3328), 17, - anon_sym_LBRACK_LT, + ACTIONS(6763), 14, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -390991,107 +438937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29137] = 33, + [40483] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(5511), 1, - anon_sym_POUNDif, - ACTIONS(6245), 1, - anon_sym_do, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(6251), 1, - anon_sym_static, - ACTIONS(6253), 1, - anon_sym_member, - ACTIONS(6255), 1, - anon_sym_interface, - ACTIONS(6257), 1, - anon_sym_abstract, - ACTIONS(6259), 1, - anon_sym_val, - ACTIONS(6261), 1, - anon_sym_inherit, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4397), 1, - sym_member_defn, - STATE(4705), 1, - sym_attributes, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(5652), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5910), 1, - sym_interface_implementation, - STATE(6364), 1, - sym_function_or_value_defn, - STATE(6557), 1, - sym__member_defns, - STATE(6620), 1, - sym__class_type_body_inner, - STATE(7304), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(6376), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3556), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [29247] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3557), 6, + STATE(4099), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 12, + ACTIONS(6892), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -391101,192 +438969,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2926), 18, + ACTIONS(6894), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29309] = 27, + [40541] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6380), 1, - sym_identifier, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2465), 1, - sym_type, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, - STATE(2774), 1, - sym_curried_spec, - STATE(3624), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + ACTIONS(7109), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3558), 6, + STATE(4100), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29407] = 27, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 11, + sym__newline, anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6390), 1, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3285), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, sym_identifier, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - STATE(3635), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4160), 1, - sym_type, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, + [40601] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(4909), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3559), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4955), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4101), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29505] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(4957), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [40673] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3560), 6, + STATE(4102), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6400), 12, + ACTIONS(6816), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -391296,64 +439124,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6402), 18, + ACTIONS(6818), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29567] = 16, - ACTIONS(5), 1, + [40731] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4979), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4103), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4981), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [40803] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - ACTIONS(6269), 1, - anon_sym_as, - ACTIONS(6378), 1, - anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_COLON_COLON, - ACTIONS(6406), 1, - anon_sym_PIPE, - ACTIONS(6408), 1, - anon_sym_AMP, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3561), 6, + STATE(4104), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4362), 10, + ACTIONS(6888), 11, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -391361,59 +439229,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(4360), 13, + ACTIONS(6890), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29643] = 16, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40861] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - ACTIONS(6269), 1, - anon_sym_as, - ACTIONS(6378), 1, - anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_COLON_COLON, - ACTIONS(6406), 1, - anon_sym_PIPE, - ACTIONS(6408), 1, - anon_sym_AMP, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(4083), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3562), 6, + STATE(4105), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6410), 10, + ACTIONS(6761), 11, + anon_sym_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -391421,45 +439280,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6412), 13, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6763), 14, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29719] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [40921] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3563), 6, + STATE(4106), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 12, + ACTIONS(3242), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -391469,192 +439328,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6416), 18, + ACTIONS(3244), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [29781] = 27, + [40979] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6342), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - STATE(3625), 1, - aux_sym_curried_spec_repeat1, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3883), 1, - sym_attributes, - STATE(3941), 1, - sym_type, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(4802), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3564), 6, + ACTIONS(3010), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4107), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29879] = 27, + ACTIONS(3012), 12, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [41053] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6358), 1, - sym_identifier, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - STATE(3628), 1, - aux_sym_curried_spec_repeat1, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3749), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, - sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4483), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3565), 6, + STATE(4108), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [29977] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(7112), 12, + anon_sym_mutable, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + aux_sym_char_token1, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + anon_sym_LPAREN_PIPE, + sym_int, + sym_identifier, + ACTIONS(7114), 14, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_QMARK, + anon_sym_COLON_QMARK, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_op_identifier, + sym_xint, + [41111] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3566), 6, + STATE(4109), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6418), 12, + ACTIONS(6771), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -391664,50 +439483,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6420), 18, + ACTIONS(6773), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30039] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41169] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3567), 6, + STATE(4110), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6422), 12, + ACTIONS(6941), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -391717,82 +439532,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6424), 18, + ACTIONS(6943), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30101] = 9, - ACTIONS(5), 1, + [41227] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7021), 1, + anon_sym_DOT, + STATE(4087), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4111), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3259), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3257), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [41289] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3568), 6, + STATE(4112), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6007), 13, + ACTIONS(6802), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6009), 17, - anon_sym_LBRACK_LT, + ACTIONS(6804), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30163] = 16, + [41347] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4113), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3363), 12, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3361), 14, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [41405] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -391801,100 +439708,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - ACTIONS(6269), 1, - anon_sym_as, - ACTIONS(6378), 1, - anon_sym_COMMA, - ACTIONS(6404), 1, - anon_sym_COLON_COLON, - ACTIONS(6406), 1, - anon_sym_PIPE, - ACTIONS(6408), 1, - anon_sym_AMP, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3569), 6, + STATE(4114), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6311), 10, + ACTIONS(7116), 12, + anon_sym_mutable, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, + aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6313), 13, - anon_sym_EQ, + ACTIONS(7118), 14, anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - aux_sym_char_token1, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [30239] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41463] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7068), 1, + anon_sym_COMMA, + ACTIONS(7078), 1, + anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, + ACTIONS(7084), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_AMP, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3570), 6, + STATE(4115), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(4764), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3290), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4762), 10, + anon_sym_EQ, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -391903,9 +439803,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30301] = 9, + [41535] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7120), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4116), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3274), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [41595] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4117), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3276), 12, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3274), 14, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [41653] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -391914,234 +439912,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3571), 6, + STATE(4118), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3391), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(7123), 12, + anon_sym_mutable, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, + aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3393), 17, + ACTIONS(7125), 14, anon_sym_LBRACK_LT, - anon_sym_COMMA, + aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - aux_sym_char_token1, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [30363] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41711] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3572), 6, + STATE(4119), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 13, + ACTIONS(2768), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3297), 17, - anon_sym_LBRACK_LT, + ACTIONS(2770), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30425] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41769] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3573), 6, + STATE(4120), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 13, + ACTIONS(3585), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3377), 17, - anon_sym_LBRACK_LT, + ACTIONS(3587), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30487] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41827] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3574), 6, + STATE(4121), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 13, + ACTIONS(3581), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3471), 17, - anon_sym_LBRACK_LT, + ACTIONS(3583), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30549] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41885] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6426), 1, - anon_sym_COMMA, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3575), 7, + STATE(4122), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6277), 12, + ACTIONS(3774), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -392151,105 +440130,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6279), 16, + ACTIONS(3776), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30613] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [41943] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3576), 6, + STATE(4123), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3477), 13, - anon_sym_COLON, + ACTIONS(6717), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3479), 17, - anon_sym_LBRACK_LT, + ACTIONS(6719), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30675] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42005] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3577), 6, + STATE(4124), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6299), 11, + ACTIONS(3836), 11, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -392258,53 +440230,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6301), 17, + ACTIONS(3838), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30741] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42063] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, - anon_sym_COLON, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3578), 6, + STATE(4125), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6285), 11, + ACTIONS(3825), 11, + anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -392313,350 +440279,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6287), 17, + ACTIONS(3827), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30807] = 27, + [42121] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6429), 1, - sym_identifier, - STATE(3636), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4364), 1, - sym_type_argument, - STATE(4389), 1, - sym_type, - STATE(4472), 1, - sym_long_identifier, - STATE(4926), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3579), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [30905] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3580), 6, + STATE(4126), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 13, + ACTIONS(3598), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3530), 17, - anon_sym_LBRACK_LT, + ACTIONS(3600), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [30967] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42179] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7097), 1, + anon_sym_COMMA, + STATE(4079), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3581), 6, + STATE(4127), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 13, + ACTIONS(6753), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3314), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6755), 13, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31029] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42241] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3582), 6, + STATE(4128), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 13, + ACTIONS(3602), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3341), 17, - anon_sym_LBRACK_LT, + ACTIONS(3604), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31091] = 9, - ACTIONS(5), 1, + [42299] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7127), 1, + anon_sym_or, + STATE(4116), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4129), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3232), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3230), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [42361] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3583), 6, + STATE(4130), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 13, + ACTIONS(3616), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3536), 17, - anon_sym_LBRACK_LT, + ACTIONS(3618), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31153] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42419] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, + anon_sym_COLON, + STATE(4062), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3584), 6, + STATE(4131), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 13, - anon_sym_COLON, + ACTIONS(6717), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3415), 17, - anon_sym_LBRACK_LT, + ACTIONS(6719), 14, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, @@ -392668,87 +440596,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31215] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42481] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, + anon_sym_COLON, + ACTIONS(7080), 1, + anon_sym_as, + ACTIONS(7097), 1, + anon_sym_COMMA, + ACTIONS(7099), 1, + anon_sym_COLON_COLON, + ACTIONS(7101), 1, + anon_sym_PIPE, + ACTIONS(7103), 1, + anon_sym_AMP, + STATE(4127), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3585), 6, + STATE(4132), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(4764), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(2520), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4762), 10, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31277] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42553] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7078), 1, anon_sym_COLON, - STATE(3554), 1, + STATE(4062), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3586), 6, + STATE(4133), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6206), 11, + ACTIONS(6713), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -392757,18 +440687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6208), 17, + ACTIONS(6715), 14, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -392776,87 +440703,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31343] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42615] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3587), 6, + STATE(4134), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 13, + ACTIONS(3802), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3430), 17, - anon_sym_LBRACK_LT, + ACTIONS(3804), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31405] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42673] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7070), 1, anon_sym_COLON, - STATE(3554), 1, + STATE(4127), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3588), 6, + STATE(4135), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6277), 11, + ACTIONS(6757), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -392865,314 +440787,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6279), 17, - anon_sym_EQ, - anon_sym_LBRACK_LT, + ACTIONS(6759), 14, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31471] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42735] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7129), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3589), 6, + STATE(4136), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 13, + aux_sym_record_pattern_repeat1, + ACTIONS(6771), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3423), 17, - anon_sym_LBRACK_LT, + ACTIONS(6773), 13, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31533] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [42795] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3590), 6, + STATE(4137), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 13, + ACTIONS(3798), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3467), 17, - anon_sym_LBRACK_LT, + ACTIONS(3800), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31595] = 9, - ACTIONS(5), 1, + [42853] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7127), 1, + anon_sym_or, + STATE(4129), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4138), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3244), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3242), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [42915] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3591), 6, + STATE(4139), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 13, + ACTIONS(6899), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3352), 17, - anon_sym_LBRACK_LT, + ACTIONS(6901), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, - sym_xint, - [31657] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_xint, + [42973] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3592), 6, + STATE(4140), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 13, + ACTIONS(3656), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3419), 17, - anon_sym_LBRACK_LT, + ACTIONS(3658), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31719] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43031] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3593), 6, + STATE(4141), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 13, + ACTIONS(3660), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3463), 17, - anon_sym_LBRACK_LT, + ACTIONS(3662), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31781] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43089] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3594), 6, + STATE(4142), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6431), 12, + ACTIONS(3693), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -393182,50 +441132,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6433), 18, + ACTIONS(3695), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31843] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43147] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3595), 6, + STATE(4143), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6435), 12, + ACTIONS(3722), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -393235,231 +441181,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6437), 18, + ACTIONS(3724), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31905] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43205] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3596), 6, + STATE(4144), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 13, + ACTIONS(3726), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3358), 17, - anon_sym_LBRACK_LT, + ACTIONS(3728), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [31967] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43263] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3597), 6, + STATE(4145), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 13, + ACTIONS(6880), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3373), 17, - anon_sym_LBRACK_LT, + ACTIONS(6882), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32029] = 27, + [43321] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6368), 1, - sym_identifier, - ACTIONS(6370), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym__, - ACTIONS(6374), 1, - anon_sym_POUND, - STATE(2364), 1, - sym__static_type_identifier, - STATE(2399), 1, - sym_type, - STATE(2427), 1, - sym_type_argument, - STATE(2483), 1, - sym_long_identifier, - STATE(2635), 1, - sym_curried_spec, - STATE(3626), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3598), 6, + STATE(4146), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [32127] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6210), 1, + ACTIONS(6884), 11, anon_sym_COLON, - STATE(3554), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3599), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6212), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_null, @@ -393468,155 +441328,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6214), 17, + ACTIONS(6886), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32193] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43379] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3600), 6, + STATE(4147), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 13, + ACTIONS(3734), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3399), 17, - anon_sym_LBRACK_LT, + ACTIONS(3736), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32255] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43437] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3601), 6, + STATE(4148), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 13, + ACTIONS(3738), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3411), 17, - anon_sym_LBRACK_LT, + ACTIONS(3740), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32317] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43495] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3602), 6, + STATE(4149), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6439), 12, + ACTIONS(3746), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -393626,428 +441475,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6441), 18, + ACTIONS(3748), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32379] = 27, + [43553] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6429), 1, - sym_identifier, - STATE(3636), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4364), 1, - sym_type_argument, - STATE(4389), 1, - sym_type, - STATE(4472), 1, - sym_long_identifier, - STATE(4941), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3603), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [32477] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3604), 6, + STATE(4150), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 13, + ACTIONS(6903), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3255), 17, - anon_sym_LBRACK_LT, + ACTIONS(6905), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32539] = 27, + [43611] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - STATE(3633), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3912), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4204), 1, - sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, - sym_long_identifier, - STATE(4878), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3605), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4435), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [32637] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3606), 6, + STATE(4151), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3508), 13, + ACTIONS(3766), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3510), 17, - anon_sym_LBRACK_LT, + ACTIONS(3768), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32699] = 33, + [43669] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6033), 1, - anon_sym_do, - ACTIONS(6035), 1, - anon_sym_let, - ACTIONS(6037), 1, - anon_sym_let_BANG, - ACTIONS(6039), 1, - anon_sym_new, - ACTIONS(6043), 1, - anon_sym_static, - ACTIONS(6045), 1, - anon_sym_member, - ACTIONS(6047), 1, - anon_sym_interface, - ACTIONS(6049), 1, - anon_sym_abstract, - ACTIONS(6051), 1, - anon_sym_val, - ACTIONS(6053), 1, - anon_sym_inherit, - ACTIONS(6055), 1, - anon_sym_POUNDif, - STATE(3816), 1, - sym_member_defn, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4352), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4504), 1, - sym_function_or_value_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(4513), 1, - sym__member_defns, - STATE(4519), 1, - sym__class_type_body_inner, - STATE(4540), 1, - sym_interface_implementation, - STATE(4689), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6041), 2, - anon_sym_default, - anon_sym_override, - STATE(4544), 4, - sym__class_function_or_value_defn, - sym__type_defn_elements, - sym_class_inherits_decl, - sym_preproc_if_in_class_definition, - STATE(3607), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [32809] = 9, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3608), 6, + STATE(4152), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 13, + ACTIONS(3770), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3389), 17, - anon_sym_LBRACK_LT, + ACTIONS(3772), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32871] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43727] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3609), 6, + STATE(4153), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6443), 12, + ACTIONS(3577), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -394057,50 +441671,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6445), 18, + ACTIONS(3579), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32933] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43785] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3610), 6, + STATE(4154), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6447), 12, + ACTIONS(3778), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -394110,103 +441720,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6449), 18, + ACTIONS(3780), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [32995] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43843] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3611), 6, + STATE(4155), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3037), 13, + ACTIONS(3782), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3035), 17, - anon_sym_LBRACK_LT, + ACTIONS(3784), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [33057] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43901] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3612), 6, + STATE(4156), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6451), 12, + ACTIONS(3786), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -394216,50 +441818,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6453), 18, + ACTIONS(3788), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [33119] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [43959] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3613), 6, + STATE(4157), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6455), 12, + ACTIONS(3790), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -394269,103 +441867,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6457), 18, + ACTIONS(3792), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [33181] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [44017] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3614), 6, + STATE(4158), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3346), 13, + ACTIONS(6949), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3348), 17, - anon_sym_LBRACK_LT, + ACTIONS(6951), 15, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [33243] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [44075] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3615), 6, + STATE(4159), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6459), 12, + ACTIONS(6945), 11, anon_sym_COLON, anon_sym_as, anon_sym_LPAREN, @@ -394375,29 +441965,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6461), 18, + ACTIONS(6947), 15, anon_sym_EQ, - anon_sym_LBRACK_LT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [33305] = 9, + [44133] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7132), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4160), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3285), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [44192] = 23, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5091), 1, + anon_sym_let, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7135), 1, + anon_sym_new, + ACTIONS(7141), 1, + anon_sym_static, + ACTIONS(7144), 1, + anon_sym_member, + ACTIONS(7147), 1, + anon_sym_abstract, + ACTIONS(7150), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4796), 1, + sym_member_defn, + STATE(5569), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7138), 2, + anon_sym_default, + anon_sym_override, + STATE(4161), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__member_defns_repeat1, + ACTIONS(5089), 8, + sym__newline, + anon_sym_do, + anon_sym_let_BANG, + anon_sym_interface, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [44277] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5127), 1, + anon_sym_let, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(4161), 1, + aux_sym__member_defns_repeat1, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4796), 1, + sym_member_defn, + STATE(5569), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4162), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5125), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [44348] = 31, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7153), 1, + anon_sym_EQ, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7157), 1, + anon_sym_LPAREN, + ACTIONS(7159), 1, + anon_sym_with, + ACTIONS(7161), 1, + anon_sym_new, + ACTIONS(7165), 1, + anon_sym_static, + ACTIONS(7167), 1, + anon_sym_member, + ACTIONS(7169), 1, + anon_sym_interface, + ACTIONS(7171), 1, + anon_sym_abstract, + ACTIONS(7173), 1, + anon_sym_val, + STATE(2835), 1, + sym_member_defn, + STATE(3208), 1, + sym_additional_constr_defn, + STATE(3224), 1, + aux_sym__object_expression_inner_repeat1, + STATE(3318), 1, + sym_interface_implementation, + STATE(3327), 1, + sym__member_defns, + STATE(3329), 1, + sym__type_defn_elements, + STATE(3373), 1, + sym_type_extension_elements, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5353), 1, + sym_attributes, + STATE(6624), 1, + sym_access_modifier, + STATE(8229), 1, + sym_primary_constr_args, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7163), 2, + anon_sym_default, + anon_sym_override, + STATE(4163), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [44449] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -394406,43 +442228,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3616), 6, + STATE(4164), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3262), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(7175), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, + anon_sym_with, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3264), 17, + ACTIONS(7177), 14, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_LT2, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, @@ -394450,78 +442267,230 @@ static const uint16_t ts_small_parse_table[] = { sym_unit, sym_op_identifier, sym_xint, - [33367] = 27, + [44506] = 31, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6322), 1, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7157), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6328), 1, - anon_sym_POUND, - STATE(3634), 1, - aux_sym_curried_spec_repeat1, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3673), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4390), 1, - sym_curried_spec, - STATE(5025), 1, + ACTIONS(7179), 1, + anon_sym_EQ, + ACTIONS(7181), 1, + anon_sym_with, + ACTIONS(7183), 1, + anon_sym_new, + ACTIONS(7187), 1, + anon_sym_static, + ACTIONS(7189), 1, + anon_sym_member, + ACTIONS(7191), 1, + anon_sym_interface, + ACTIONS(7193), 1, + anon_sym_abstract, + ACTIONS(7195), 1, + anon_sym_val, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(5430), 1, + STATE(4720), 1, sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4819), 1, + sym_member_defn, + STATE(5330), 1, + sym_attributes, + STATE(5359), 1, + sym_additional_constr_defn, + STATE(5943), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6150), 1, + sym_interface_implementation, + STATE(6334), 1, + sym__type_defn_elements, + STATE(6418), 1, + sym__member_defns, + STATE(6424), 1, + sym_type_extension_elements, + STATE(6619), 1, + sym_access_modifier, + STATE(8244), 1, + sym_primary_constr_args, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3617), 6, + ACTIONS(7185), 2, + anon_sym_default, + anon_sym_override, + STATE(4165), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [33465] = 9, + [44607] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4166), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3363), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3361), 14, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [44664] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7197), 1, + anon_sym_COLON_GT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4167), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3353), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3351), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [44723] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5069), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4168), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5071), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [44796] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -394530,1237 +442499,1108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3618), 6, + STATE(4169), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3512), 13, - anon_sym_COLON, - anon_sym_as, + ACTIONS(7199), 12, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - anon_sym_in, + anon_sym_new, + aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3514), 17, + ACTIONS(7201), 13, anon_sym_LBRACK_LT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - aux_sym_char_token1, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [33527] = 27, + [44853] = 21, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6380), 1, + ACTIONS(7023), 1, + anon_sym_y, + ACTIONS(7025), 1, + anon_sym_uy, + ACTIONS(7027), 1, + anon_sym_s, + ACTIONS(7029), 1, + anon_sym_us, + ACTIONS(7033), 1, + aux_sym_uint32_token1, + ACTIONS(7035), 1, + anon_sym_n, + ACTIONS(7037), 1, + anon_sym_un, + ACTIONS(7041), 1, + aux_sym_uint64_token1, + ACTIONS(7203), 1, + anon_sym_l, + ACTIONS(7205), 1, + anon_sym_L, + ACTIONS(7207), 1, + anon_sym_lf, + ACTIONS(7209), 1, + anon_sym_LF, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4170), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2770), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [44934] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2465), 1, - sym_type, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(2755), 1, - sym_curried_spec, - STATE(3624), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3619), 6, + ACTIONS(5036), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4171), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [33625] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5038), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [45007] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7211), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3620), 6, + STATE(4172), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3032), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, sym_identifier, - ACTIONS(3270), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [33687] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [45066] = 31, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7157), 1, + anon_sym_LPAREN, + ACTIONS(7214), 1, + anon_sym_EQ, + ACTIONS(7216), 1, + anon_sym_with, + ACTIONS(7218), 1, + anon_sym_new, + ACTIONS(7222), 1, + anon_sym_static, + ACTIONS(7224), 1, + anon_sym_member, + ACTIONS(7226), 1, + anon_sym_interface, + ACTIONS(7228), 1, + anon_sym_abstract, + ACTIONS(7230), 1, + anon_sym_val, + STATE(2787), 1, + sym_member_defn, + STATE(3164), 1, + sym_additional_constr_defn, + STATE(3220), 1, + aux_sym__object_expression_inner_repeat1, + STATE(3239), 1, + sym_interface_implementation, + STATE(3294), 1, + sym__member_defns, + STATE(3303), 1, + sym_type_extension_elements, + STATE(3308), 1, + sym__type_defn_elements, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5351), 1, + sym_attributes, + STATE(6583), 1, + sym_access_modifier, + STATE(8328), 1, + sym_primary_constr_args, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3621), 6, + ACTIONS(7220), 2, + anon_sym_default, + anon_sym_override, + STATE(4173), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(3453), 17, - anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [33749] = 27, + [45167] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6390), 1, - sym_identifier, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - STATE(3635), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4160), 1, - sym_type, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, - STATE(4915), 1, - sym_curried_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3622), 6, + STATE(4174), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [33847] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3287), 12, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3285), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45224] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3623), 6, + STATE(4175), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6228), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6230), 18, - anon_sym_EQ, + ACTIONS(3276), 11, + sym__newline, anon_sym_LBRACK_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [33909] = 26, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3274), 14, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45281] = 31, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6380), 1, - sym_identifier, - ACTIONS(6382), 1, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7157), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2452), 1, - sym_type, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, + ACTIONS(7232), 1, + anon_sym_EQ, + ACTIONS(7234), 1, + anon_sym_with, + ACTIONS(7236), 1, + anon_sym_new, + ACTIONS(7240), 1, + anon_sym_static, + ACTIONS(7242), 1, + anon_sym_member, + ACTIONS(7244), 1, + anon_sym_interface, + ACTIONS(7246), 1, + anon_sym_abstract, + ACTIONS(7248), 1, + anon_sym_val, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(5430), 1, + STATE(4720), 1, sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4777), 1, + sym_member_defn, + STATE(5311), 1, + sym_additional_constr_defn, + STATE(5382), 1, + sym_attributes, + STATE(5931), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6114), 1, + sym_interface_implementation, + STATE(6133), 1, + sym__type_defn_elements, + STATE(6139), 1, + sym__member_defns, + STATE(6228), 1, + sym_type_extension_elements, + STATE(6630), 1, + sym_access_modifier, + STATE(8208), 1, + sym_primary_constr_args, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3624), 6, + ACTIONS(7238), 2, + anon_sym_default, + anon_sym_override, + STATE(4176), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34004] = 26, + [45382] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6342), 1, - sym_identifier, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3883), 1, - sym_attributes, - STATE(3939), 1, - sym_type, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, - sym_long_identifier, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + ACTIONS(7105), 1, + anon_sym_DOT, + STATE(4179), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3625), 6, + STATE(4177), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34099] = 26, + ACTIONS(3259), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3257), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45443] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6368), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6370), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym__, - ACTIONS(6374), 1, - anon_sym_POUND, - STATE(2364), 1, - sym__static_type_identifier, - STATE(2398), 1, - sym_type, - STATE(2427), 1, - sym_type_argument, - STATE(2483), 1, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3626), 6, + ACTIONS(5073), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4178), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34194] = 11, + ACTIONS(5075), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [45516] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6463), 1, + ACTIONS(7105), 1, anon_sym_DOT, - STATE(3629), 1, + STATE(4160), 1, aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3627), 6, + STATE(4179), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2937), 16, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3204), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [34259] = 26, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3202), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45577] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6358), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3718), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3628), 6, + ACTIONS(5129), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4180), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34354] = 11, + ACTIONS(5131), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [45650] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6463), 1, - anon_sym_DOT, - STATE(3630), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7009), 1, + sym_identifier, + ACTIONS(7013), 1, + anon_sym_DASH_GT, + ACTIONS(7015), 1, + anon_sym_STAR, + ACTIONS(7017), 1, + anon_sym_LT2, + ACTIONS(7019), 1, + anon_sym_LBRACK_RBRACK, + STATE(4187), 1, + aux_sym__compound_type_repeat1, + STATE(4217), 1, + sym_long_identifier, + STATE(4218), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3629), 6, + ACTIONS(5077), 6, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4181), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2968), 16, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [34419] = 10, + ACTIONS(5079), 11, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + [45723] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5042), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6465), 1, - anon_sym_DOT, + STATE(4162), 1, + aux_sym__member_defns_repeat1, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4795), 1, + sym_additional_constr_defn, + STATE(4796), 1, + sym_member_defn, + STATE(5569), 1, + sym_attributes, + STATE(8034), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3630), 7, + STATE(4182), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2902), 16, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [34482] = 10, + ACTIONS(5040), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [45794] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6468), 1, - aux_sym_float_token1, + ACTIONS(6994), 1, + anon_sym_STAR, + STATE(4172), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3631), 6, + STATE(4183), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - anon_sym_f, - aux_sym_decimal_token1, - sym_identifier, - ACTIONS(3075), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3214), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [34545] = 25, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3212), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45855] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6470), 1, - sym_identifier, - ACTIONS(6473), 1, - anon_sym_LBRACK_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6479), 1, - anon_sym__, - ACTIONS(6482), 1, - anon_sym_QMARK, - ACTIONS(6485), 1, - anon_sym_POUND, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5199), 1, - sym_long_identifier, - STATE(5430), 1, - sym_attribute_set, - STATE(5458), 1, - sym_type, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6488), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3632), 7, + STATE(4184), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_curried_spec_repeat1, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34638] = 26, + ACTIONS(3244), 12, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3242), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [45912] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5042), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6332), 1, - sym_identifier, - ACTIONS(6334), 1, - anon_sym_LPAREN, - ACTIONS(6336), 1, - anon_sym__, - ACTIONS(6338), 1, - anon_sym_POUND, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3912), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4198), 1, - sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, - sym_long_identifier, - STATE(5025), 1, + STATE(4188), 1, + aux_sym__member_defns_repeat1, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(5430), 1, + STATE(4720), 1, sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4902), 1, + sym_member_defn, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(5410), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3633), 6, + STATE(4185), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34733] = 26, + ACTIONS(5040), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [45982] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6328), 1, - anon_sym_POUND, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3671), 1, - sym_type, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3634), 6, + STATE(4186), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34828] = 26, + ACTIONS(3324), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3322), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46038] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6390), 1, - sym_identifier, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4171), 1, - sym_type, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5430), 1, - sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + ACTIONS(7015), 1, + anon_sym_STAR, + STATE(4200), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3635), 6, + STATE(4187), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [34923] = 26, + ACTIONS(3214), 9, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3212), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46098] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5127), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6429), 1, - sym_identifier, - STATE(3632), 1, - aux_sym_curried_spec_repeat1, - STATE(3883), 1, - sym_attributes, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4364), 1, - sym_type_argument, - STATE(4382), 1, - sym_type, - STATE(4472), 1, - sym_long_identifier, - STATE(5025), 1, + STATE(4191), 1, + aux_sym__member_defns_repeat1, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(5430), 1, + STATE(4720), 1, sym_attribute_set, - STATE(5817), 1, - sym_argument_spec, - STATE(6907), 1, - sym_arguments_spec, + STATE(4902), 1, + sym_member_defn, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(5410), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3636), 6, + STATE(4188), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [35018] = 19, + ACTIONS(5125), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [46168] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6493), 1, - anon_sym_with, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, - STATE(4416), 1, - sym__object_members, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3637), 6, + STATE(4189), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4724), 7, + ACTIONS(3244), 11, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4726), 11, + ACTIONS(3242), 13, anon_sym_do, anon_sym_let, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -395770,576 +443610,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [35098] = 10, + sym_identifier, + [46224] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6503), 1, - sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3638), 6, + STATE(4190), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_f, - aux_sym_decimal_token1, - sym_identifier, - ACTIONS(3179), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3353), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35160] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3351), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46280] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5091), 1, + anon_sym_let, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7250), 1, + anon_sym_new, + ACTIONS(7256), 1, + anon_sym_static, + ACTIONS(7259), 1, + anon_sym_member, + ACTIONS(7262), 1, + anon_sym_abstract, + ACTIONS(7265), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4902), 1, + sym_member_defn, + STATE(4962), 1, + sym_additional_constr_defn, + STATE(5410), 1, + sym_attributes, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3639), 6, + ACTIONS(7253), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5089), 7, + sym__newline, + anon_sym_do, + anon_sym_let_BANG, + anon_sym_interface, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + STATE(4191), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - anon_sym_f, - aux_sym_decimal_token1, - sym_identifier, - ACTIONS(3075), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35220] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym__member_defns_repeat1, + [46364] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6507), 1, - anon_sym_LBRACK_LT, - STATE(3692), 1, - sym_attribute_set, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3640), 7, + STATE(4192), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6505), 12, - anon_sym_mutable, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - aux_sym_char_token1, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6510), 13, + ACTIONS(3287), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [35284] = 11, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3285), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46420] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6512), 1, - anon_sym_or, - STATE(3642), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7268), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3641), 6, + STATE(4193), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2941), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2943), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3353), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35348] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3351), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46478] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6514), 1, - anon_sym_or, + ACTIONS(7270), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3642), 7, + STATE(4194), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2917), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2919), 15, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 10, anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35410] = 11, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3285), 12, + anon_sym_and, + anon_sym_LPAREN, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [46536] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5760), 1, - aux_sym_decimal_token1, - ACTIONS(5810), 1, - anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3643), 6, + STATE(4195), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2520), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3302), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35474] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3300), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46592] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3644), 6, + STATE(4196), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2902), 17, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3338), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - anon_sym_DOT, + anon_sym_STAR, anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35534] = 9, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3336), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46648] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + STATE(4194), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3645), 6, + STATE(4197), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 13, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - anon_sym_f, - aux_sym_decimal_token1, - sym_identifier, - ACTIONS(3175), 15, + ACTIONS(3204), 10, anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35594] = 11, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3202), 12, + anon_sym_and, + anon_sym_LPAREN, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [46708] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6512), 1, - anon_sym_or, - STATE(3641), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3646), 6, + STATE(4198), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2924), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2926), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3310), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35658] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3308), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46764] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7275), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3647), 6, + STATE(4199), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5806), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(5808), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [35717] = 19, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6519), 1, - anon_sym_with, - ACTIONS(6521), 1, - anon_sym_DASH_GT, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, - sym_long_identifier, - STATE(4512), 1, - sym__object_members, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4724), 6, + ACTIONS(3357), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - STATE(3648), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4726), 11, + anon_sym_POUNDelse, + ACTIONS(3355), 13, anon_sym_do, anon_sym_let, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -396349,44 +444099,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [35796] = 10, + sym_identifier, + [46822] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6529), 1, - anon_sym_or, + ACTIONS(7277), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3649), 7, + STATE(4200), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 12, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 9, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2917), 13, + ACTIONS(3032), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -396400,198 +444148,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [35857] = 23, + [46880] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6532), 1, - anon_sym_y, - ACTIONS(6534), 1, - anon_sym_uy, - ACTIONS(6536), 1, - anon_sym_s, - ACTIONS(6538), 1, - anon_sym_us, - ACTIONS(6540), 1, - anon_sym_l, - ACTIONS(6542), 1, - aux_sym_uint32_token1, - ACTIONS(6544), 1, - anon_sym_n, - ACTIONS(6546), 1, - anon_sym_un, - ACTIONS(6548), 1, - anon_sym_L, - ACTIONS(6550), 1, - aux_sym_uint64_token1, - ACTIONS(6552), 1, - aux_sym_bignum_token1, - ACTIONS(6554), 1, - aux_sym_decimal_token1, - ACTIONS(6556), 1, - anon_sym_DOT2, - ACTIONS(6558), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3650), 6, + STATE(4201), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, + ACTIONS(3298), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_STAR, anon_sym_LT2, - [35944] = 10, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3296), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46936] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6560), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3651), 6, + STATE(4202), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6293), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6295), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3342), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36005] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3340), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [46992] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3652), 6, + STATE(4203), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2917), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2919), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3306), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36064] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3304), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [47048] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6562), 1, - anon_sym_and, + STATE(4030), 1, + aux_sym_attributes_repeat1, + STATE(4118), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3653), 7, + STATE(4204), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6160), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(7280), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -396599,15 +444322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6162), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(7282), 12, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -396615,320 +444336,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [36125] = 24, + [47108] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6565), 1, - sym_identifier, - STATE(3883), 1, - sym_attributes, - STATE(4037), 1, - sym_argument_name_spec, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5025), 1, - aux_sym_attributes_repeat1, - STATE(5199), 1, - sym_long_identifier, - STATE(5430), 1, - sym_attribute_set, - STATE(5458), 1, - sym_type, - STATE(6664), 1, - sym_argument_spec, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3654), 6, + STATE(4205), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [36214] = 11, + ACTIONS(3320), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3318), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [47164] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6567), 1, - anon_sym_and, - STATE(3653), 1, - aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3655), 6, + STATE(4206), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6167), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(3294), 11, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3292), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, sym_identifier, - ACTIONS(6169), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36277] = 9, + [47220] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3656), 6, + STATE(4207), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6281), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6283), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3302), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36336] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3300), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [47275] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3657), 6, + STATE(4208), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6289), 12, + ACTIONS(3306), 11, + anon_sym_EQ, + anon_sym_LBRACK_LT, anon_sym_COLON, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3304), 12, anon_sym_and, - anon_sym_as, anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, sym_identifier, - ACTIONS(6291), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36395] = 9, + [47330] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7300), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, + STATE(8132), 1, + sym_type_extension_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3658), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3029), 12, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3031), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36454] = 17, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4209), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [47425] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3659), 6, + STATE(4210), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2848), 7, + ACTIONS(3294), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2850), 12, + ACTIONS(3292), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -396941,81 +444635,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [36529] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3660), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6303), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, sym_identifier, - ACTIONS(6305), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36588] = 9, + [47480] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7302), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3661), 6, + STATE(4211), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6307), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, + ACTIONS(3387), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -397024,14 +444668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(6309), 15, + ACTIONS(3389), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -397041,45 +444683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [36647] = 11, + [47537] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6569), 1, - anon_sym_or, - STATE(3649), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3662), 6, + STATE(4212), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 12, + ACTIONS(3310), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2941), 13, + ACTIONS(3308), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397093,104 +444729,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [36710] = 11, + [47592] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6567), 1, - anon_sym_and, - STATE(3655), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7304), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, + STATE(8011), 1, + sym_type_extension_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3663), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4213), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6182), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6184), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36773] = 17, + [47687] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3664), 6, + STATE(4214), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2804), 7, + ACTIONS(3306), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2806), 12, + ACTIONS(3304), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397203,102 +444840,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [36848] = 9, + sym_identifier, + [47742] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3665), 6, + STATE(4215), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5782), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(5784), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3353), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [36907] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3351), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [47797] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, + ACTIONS(7306), 1, anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3666), 6, + STATE(4216), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2808), 7, + ACTIONS(3357), 9, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2810), 12, + ACTIONS(3355), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397311,153 +444933,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [36982] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6571), 1, - anon_sym_and, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3667), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6160), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, sym_identifier, - ACTIONS(6162), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37043] = 9, + [47854] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3668), 6, + STATE(4217), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6160), 12, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6162), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3298), 10, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37102] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDif, + anon_sym_POUNDendif, + ACTIONS(3296), 13, + anon_sym_do, + anon_sym_let, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + sym_identifier, + [47909] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3669), 6, + STATE(4218), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2812), 7, + ACTIONS(3338), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2814), 12, + ACTIONS(3336), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397470,103 +445025,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [37177] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6574), 1, - anon_sym_and, - STATE(3667), 1, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3670), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6167), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, sym_identifier, - ACTIONS(6169), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37240] = 16, + [47964] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3671), 6, + STATE(4219), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4508), 7, + ACTIONS(3324), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4510), 12, + ACTIONS(3322), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397579,45 +445071,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_inherit, - [37313] = 11, + sym_identifier, + [48019] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6569), 1, - anon_sym_or, - STATE(3662), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3672), 6, + STATE(4220), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 12, + ACTIONS(3320), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2924), 13, + ACTIONS(3318), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397631,143 +445118,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [37376] = 16, + [48074] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, + ACTIONS(7308), 1, + anon_sym_y, + ACTIONS(7310), 1, + anon_sym_uy, + ACTIONS(7312), 1, + anon_sym_s, + ACTIONS(7314), 1, + anon_sym_us, + ACTIONS(7316), 1, + anon_sym_l, + ACTIONS(7318), 1, + aux_sym_uint32_token1, + ACTIONS(7320), 1, + anon_sym_n, + ACTIONS(7322), 1, + anon_sym_un, + ACTIONS(7324), 1, + anon_sym_L, + ACTIONS(7326), 1, + aux_sym_uint64_token1, + ACTIONS(7328), 1, + aux_sym_bignum_token1, + ACTIONS(7330), 1, + aux_sym_decimal_token1, + ACTIONS(7332), 1, + anon_sym_DOT2, + ACTIONS(7334), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(3673), 6, + STATE(4221), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4514), 7, + ACTIONS(2770), 8, sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [48157] = 29, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - anon_sym_let_BANG, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4516), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7284), 1, anon_sym_with, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, + ACTIONS(7294), 1, anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - anon_sym_inherit, - [37449] = 11, + ACTIONS(7336), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7411), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4222), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [48252] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6574), 1, - anon_sym_and, - STATE(3670), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7338), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7762), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3674), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4223), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6182), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6184), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37512] = 12, + [48347] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6576), 1, - anon_sym_DOT, - STATE(3684), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3675), 6, + STATE(4224), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 11, + ACTIONS(3342), 10, sym__newline, anon_sym_LBRACK_LT, anon_sym_let_BANG, @@ -397778,8 +445342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2935), 13, + ACTIONS(3340), 13, anon_sym_do, anon_sym_let, anon_sym_with, @@ -397793,104 +445356,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_val, anon_sym_inherit, sym_identifier, - [37577] = 11, + [48402] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7340), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7730), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3676), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4225), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6224), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6226), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37639] = 17, + [48497] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6521), 1, - anon_sym_DASH_GT, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3677), 6, + STATE(4226), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(3287), 11, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3285), 12, + anon_sym_and, + anon_sym_LPAREN, anon_sym_with, anon_sym_new, anon_sym_default, @@ -397900,148 +445467,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [37713] = 11, + sym_identifier, + [48552] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3678), 6, + STATE(4227), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6212), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6214), 14, + ACTIONS(3320), 11, + anon_sym_EQ, + anon_sym_LBRACK_LT, + anon_sym_COLON, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37775] = 11, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3318), 12, + anon_sym_and, + anon_sym_LPAREN, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [48607] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(3746), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7342), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7592), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3679), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4228), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6263), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6265), 13, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37837] = 10, + [48702] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3257), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6582), 1, + ACTIONS(7344), 1, + anon_sym_EQ, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7350), 1, anon_sym_DOT, + ACTIONS(7354), 1, + anon_sym_of, + STATE(4481), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3680), 7, + ACTIONS(3259), 4, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(7346), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4229), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2900), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(7352), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -398051,439 +445633,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [37897] = 9, + [48771] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7356), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7367), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3681), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4230), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3530), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [37955] = 10, + [48866] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3682), 7, + STATE(4231), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(6228), 11, + ACTIONS(3294), 11, + anon_sym_EQ, + anon_sym_LBRACK_LT, anon_sym_COLON, - anon_sym_as, + aux_sym_access_modifier_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3292), 12, + anon_sym_and, anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, sym_identifier, - ACTIONS(6230), 13, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38015] = 10, + [48921] = 29, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3682), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7284), 1, + anon_sym_with, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + ACTIONS(7358), 1, + sym__dedent, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7541), 1, + sym_type_extension_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(7993), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3683), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4232), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 11, - anon_sym_COLON, - anon_sym_as, + [49016] = 19, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5784), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6237), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38075] = 11, + ACTIONS(7362), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7796), 1, + sym_types, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4233), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49090] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6576), 1, - anon_sym_DOT, - STATE(3680), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7364), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7383), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3684), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4234), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2966), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [38137] = 10, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49164] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6588), 1, - anon_sym_SEMI, + ACTIONS(7366), 1, + sym_identifier, + STATE(3209), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4173), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3685), 7, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4235), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(6228), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6230), 13, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38197] = 9, + STATE(3311), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [49244] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7368), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7591), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3686), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4236), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6228), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6230), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38255] = 16, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49318] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_COLON_COLON, - ACTIONS(6595), 1, - anon_sym_PIPE, - ACTIONS(6597), 1, - anon_sym_AMP, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7370), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7749), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3687), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4237), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4362), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(4360), 10, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38327] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49392] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7995), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3688), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4238), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2520), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38385] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49466] = 9, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3689), 6, + STATE(4239), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6212), 10, - anon_sym_as, + ACTIONS(3318), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -398491,15 +446173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, + anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6214), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(3320), 12, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, aux_sym_char_token1, @@ -398507,103 +446187,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, + sym_op_identifier, sym_xint, - [38447] = 9, + [49520] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3690), 6, + ACTIONS(3090), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4240), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 12, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3029), 14, - anon_sym_do, - anon_sym_let, + ACTIONS(3092), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [38505] = 17, + [49590] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7374), 1, sym_identifier, - ACTIONS(6521), 1, + ACTIONS(7376), 1, anon_sym_DASH_GT, - ACTIONS(6523), 1, + ACTIONS(7378), 1, anon_sym_STAR, - ACTIONS(6525), 1, + ACTIONS(7380), 1, anon_sym_LT2, - ACTIONS(6527), 1, + ACTIONS(7382), 1, anon_sym_LBRACK_RBRACK, - STATE(3808), 1, + STATE(4395), 1, aux_sym__compound_type_repeat1, - STATE(3836), 1, + STATE(4782), 1, sym_type_arguments, - STATE(3842), 1, + STATE(4787), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 6, - sym__newline, + ACTIONS(3030), 4, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, anon_sym_POUNDendif, - STATE(3691), 6, + anon_sym_POUNDelse, + STATE(4241), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(3032), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -398613,8 +446295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [38579] = 9, + [49660] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -398623,73 +446304,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3692), 6, + STATE(4242), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6601), 12, - anon_sym_mutable, + ACTIONS(3292), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6603), 14, + ACTIONS(3294), 12, anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_SQUOTE, + aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [38637] = 11, + [49714] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3693), 6, + STATE(4243), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6216), 10, - anon_sym_as, + ACTIONS(3451), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -398698,62 +446370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(6218), 14, + ACTIONS(3453), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38699] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3694), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3391), 11, anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3393), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -398763,105 +446385,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [38757] = 9, + [49768] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3695), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6293), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(5782), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5784), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6295), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38815] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7384), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7256), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3696), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4244), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3377), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [38873] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [49842] = 9, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -398870,651 +446449,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3697), 6, + STATE(4245), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6605), 12, - anon_sym_mutable, + ACTIONS(3304), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, anon_sym_LBRACK, - aux_sym_char_token1, anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6607), 14, + ACTIONS(3306), 12, anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, anon_sym_QMARK, anon_sym_COLON_QMARK, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_SQUOTE, + aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_op_identifier, sym_xint, - [38931] = 17, + [49896] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, + STATE(3298), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4173), 1, + sym_type_name, + STATE(5031), 1, sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3698), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4246), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4632), 7, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4634), 11, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [39005] = 16, + STATE(3311), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [49976] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6599), 1, - anon_sym_COLON, - ACTIONS(6609), 1, - anon_sym_COMMA, - ACTIONS(6611), 1, - anon_sym_COLON_COLON, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6615), 1, - anon_sym_AMP, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3699), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4362), 9, + ACTIONS(5961), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5963), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(7386), 1, sym_identifier, - ACTIONS(4360), 10, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39077] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6617), 1, - anon_sym_as, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4308), 1, + sym_type, + STATE(4769), 1, + sym_type_argument, + STATE(4888), 1, + sym_long_identifier, + STATE(5050), 1, + sym_union_type_field, + STATE(5179), 1, + sym_union_type_fields, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3700), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4247), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6352), 10, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6354), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39137] = 9, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50050] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(3269), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4173), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3701), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4248), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6455), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6457), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39195] = 9, + STATE(3311), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [50130] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(4165), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(5891), 1, + sym__type_defn_body, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3702), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4249), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6451), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6453), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39253] = 17, + STATE(6442), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [50210] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6521), 1, - anon_sym_DASH_GT, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, + ACTIONS(7388), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, + STATE(7317), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3703), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4250), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 12, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [39327] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50284] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(6834), 1, + anon_sym_QMARK, + ACTIONS(7053), 1, + sym_identifier, + STATE(4666), 1, + sym_argument_name_spec, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5856), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3704), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4251), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6216), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6218), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39389] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50358] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7366), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(4165), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(5899), 1, + sym__type_defn_body, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3705), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4252), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6224), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6226), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39451] = 10, + STATE(6442), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [50438] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6619), 1, - anon_sym_COMMA, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7390), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7157), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3706), 7, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4253), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6277), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6279), 13, - anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39511] = 17, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50512] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, + STATE(4118), 1, + sym_attribute_set, + STATE(4165), 1, + sym_type_name, + STATE(5031), 1, sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6329), 1, + sym__type_defn_body, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3707), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4254), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4624), 7, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4626), 11, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [39585] = 11, + STATE(6442), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [50592] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7366), 1, + sym_identifier, + STATE(3210), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4173), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3708), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4255), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6277), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6279), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39647] = 11, + STATE(3311), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [50672] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3709), 6, + STATE(4256), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6206), 10, - anon_sym_as, + ACTIONS(3387), 11, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -399523,310 +447083,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(6208), 14, + ACTIONS(3389), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [39709] = 9, + [50726] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3710), 6, + ACTIONS(3010), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4257), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 12, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2917), 14, - anon_sym_do, - anon_sym_let, + ACTIONS(3012), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [39767] = 9, + [50796] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7392), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7664), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3711), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4258), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6439), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6441), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39825] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50870] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7394), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7203), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3712), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4259), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6443), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6445), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39883] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [50944] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6609), 1, - anon_sym_COMMA, - STATE(3706), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7366), 1, + sym_identifier, + STATE(3376), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4163), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3713), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4260), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6263), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6265), 13, - anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [39945] = 10, + STATE(3397), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51024] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3683), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7366), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(4165), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6281), 1, + sym__type_defn_body, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3714), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4261), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6243), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40005] = 11, + STATE(6442), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51104] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, + ACTIONS(7396), 1, anon_sym_or, - STATE(3774), 1, + STATE(4275), 1, aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3715), 6, + STATE(4262), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 11, - sym__newline, + ACTIONS(3232), 9, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, anon_sym_POUNDendif, - ACTIONS(2924), 13, - anon_sym_do, - anon_sym_let, + anon_sym_POUNDelse, + ACTIONS(3230), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -399836,32 +447423,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [40067] = 9, + [51162] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7398), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3716), 6, + STATE(4263), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(3417), 10, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -399869,15 +447455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - sym_int, + anon_sym_f, + aux_sym_decimal_token1, sym_identifier, - ACTIONS(3430), 15, + ACTIONS(3419), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -399887,30 +447470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [40125] = 9, + [51218] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7400), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3717), 6, + STATE(4264), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 11, - anon_sym_COLON, - anon_sym_as, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -399920,13 +447504,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3423), 15, + ACTIONS(3287), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -399936,186 +447516,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [40183] = 16, + [51274] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, + STATE(4118), 1, + sym_attribute_set, + STATE(4176), 1, + sym_type_name, + STATE(5031), 1, sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5858), 1, + sym__type_defn_body, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4508), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3718), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4265), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 12, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [40255] = 9, + STATE(6212), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51354] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7403), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(8297), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3719), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4266), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3467), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40313] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [51428] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7366), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(4176), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5851), 1, + sym__type_defn_body, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3720), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4267), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6285), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, + STATE(6212), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51508] = 22, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(6287), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40375] = 9, + STATE(4118), 1, + sym_attribute_set, + STATE(4176), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6203), 1, + sym__type_defn_body, + STATE(8361), 1, + sym_type_argument, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4268), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(6212), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51588] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6504), 1, + aux_sym_decimal_token1, + ACTIONS(6682), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3721), 6, + STATE(4269), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(2768), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -400125,13 +447780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3536), 15, + ACTIONS(2770), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -400141,159 +447792,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [40433] = 17, + [51646] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, + ACTIONS(7405), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, + STATE(8145), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3722), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4270), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 7, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4661), 11, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [40507] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [51720] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(4176), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6214), 1, + sym__type_defn_body, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3723), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4271), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3415), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40565] = 17, + STATE(6212), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [51800] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7374), 1, sym_identifier, - ACTIONS(6521), 1, + ACTIONS(7376), 1, anon_sym_DASH_GT, - ACTIONS(6523), 1, + ACTIONS(7378), 1, anon_sym_STAR, - ACTIONS(6525), 1, + ACTIONS(7380), 1, anon_sym_LT2, - ACTIONS(6527), 1, + ACTIONS(7382), 1, anon_sym_LBRACK_RBRACK, - STATE(3808), 1, + STATE(4395), 1, aux_sym__compound_type_repeat1, - STATE(3836), 1, + STATE(4782), 1, sym_type_arguments, - STATE(3842), 1, + STATE(4787), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 6, - sym__newline, + ACTIONS(3022), 4, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, anon_sym_POUNDendif, - STATE(3724), 6, + anon_sym_POUNDelse, + STATE(4272), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 12, - anon_sym_do, - anon_sym_let, + ACTIONS(3024), 10, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -400303,202 +447958,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [40639] = 16, + [51870] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_COLON_COLON, - ACTIONS(6595), 1, - anon_sym_PIPE, - ACTIONS(6597), 1, - anon_sym_AMP, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3725), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6311), 9, + ACTIONS(5961), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(5963), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(7386), 1, sym_identifier, - ACTIONS(6313), 10, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40711] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4308), 1, + sym_type, + STATE(4769), 1, + sym_type_argument, + STATE(4888), 1, + sym_long_identifier, + STATE(5050), 1, + sym_union_type_field, + STATE(5229), 1, + sym_union_type_fields, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3726), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4273), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6459), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6461), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40769] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [51944] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7407), 1, + anon_sym_GT, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5376), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(7866), 1, + sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3727), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4274), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6624), 12, - anon_sym_mutable, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - aux_sym_char_token1, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6626), 14, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [40827] = 12, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [52018] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6628), 1, - anon_sym_DOT, - STATE(3783), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7409), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3728), 6, + STATE(4275), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 10, - sym__newline, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 9, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, anon_sym_POUNDendif, - ACTIONS(2935), 13, - anon_sym_do, - anon_sym_let, + anon_sym_POUNDelse, + ACTIONS(3274), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -400508,179 +448113,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [40891] = 9, + [52074] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3729), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2924), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2926), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [40949] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(3216), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4163), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3730), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4276), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3419), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41007] = 9, + STATE(3397), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [52154] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(3217), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4163), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3731), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4277), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3411), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41065] = 9, + STATE(3397), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [52234] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7412), 1, + anon_sym_DOT, + STATE(4281), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3732), 6, + STATE(4278), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(3257), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -400690,13 +448265,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3463), 15, + ACTIONS(3259), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -400706,54 +448277,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [41123] = 17, + [52292] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, - sym_identifier, - ACTIONS(6495), 1, - anon_sym_DASH_GT, - ACTIONS(6497), 1, - anon_sym_STAR, - ACTIONS(6499), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_LBRACK_RBRACK, - STATE(3777), 1, - aux_sym__compound_type_repeat1, - STATE(3804), 1, - sym_long_identifier, - STATE(3811), 1, - sym_type_arguments, + ACTIONS(7396), 1, + anon_sym_or, + STATE(4262), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3733), 6, + STATE(4279), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 7, - sym__newline, + ACTIONS(3244), 9, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, anon_sym_POUNDelse, - ACTIONS(4586), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(3242), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -400762,81 +448323,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [41197] = 10, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + sym_identifier, + [52350] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(6634), 1, - anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7366), 1, + sym_identifier, + STATE(3333), 1, + sym__type_defn_body, + STATE(4118), 1, + sym_attribute_set, + STATE(4163), 1, + sym_type_name, + STATE(5031), 1, + sym_long_identifier, + STATE(5714), 1, + sym_attributes, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(5886), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8361), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3734), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4280), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6630), 11, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_with, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6632), 14, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [41257] = 9, + STATE(3397), 7, + sym_type_extension, + sym_delegate_type_defn, + sym_type_abbrev_defn, + sym_record_type_defn, + sym_enum_type_defn, + sym_union_type_defn, + sym_anon_type_defn, + [52430] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7412), 1, + anon_sym_DOT, + STATE(4264), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3735), 6, + STATE(4281), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6447), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(3202), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -400846,13 +448417,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6449), 15, + ACTIONS(3204), 11, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -400862,103 +448429,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [41315] = 9, + [52488] = 18, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, + anon_sym_LPAREN, + ACTIONS(5963), 1, + anon_sym__, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(7386), 1, + sym_identifier, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4308), 1, + sym_type, + STATE(4769), 1, + sym_type_argument, + STATE(4888), 1, + sym_long_identifier, + STATE(5077), 1, + sym_union_type_field, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3736), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4282), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3255), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41373] = 17, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [52559] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6491), 1, + ACTIONS(7414), 1, sym_identifier, - ACTIONS(6495), 1, + ACTIONS(7416), 1, anon_sym_DASH_GT, - ACTIONS(6497), 1, + ACTIONS(7418), 1, anon_sym_STAR, - ACTIONS(6499), 1, + ACTIONS(7420), 1, anon_sym_LT2, - ACTIONS(6501), 1, + ACTIONS(7422), 1, anon_sym_LBRACK_RBRACK, - STATE(3777), 1, + STATE(4758), 1, aux_sym__compound_type_repeat1, - STATE(3804), 1, + STATE(4887), 1, sym_long_identifier, - STATE(3811), 1, + STATE(4890), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3737), 6, + ACTIONS(3022), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4283), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 7, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(4657), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(3024), 10, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -400967,798 +448534,690 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [41447] = 11, + [52628] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7424), 1, + anon_sym_or, + STATE(4309), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3738), 6, + STATE(4284), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6277), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6279), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(3244), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41509] = 11, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3242), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [52685] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7426), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3739), 6, + STATE(4285), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6206), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6208), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41571] = 11, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3274), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [52740] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7429), 1, + anon_sym_or, + STATE(4293), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3740), 6, + STATE(4286), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6285), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6287), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3244), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41633] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3242), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [52797] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, + sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3741), 6, + ACTIONS(3030), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4287), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3262), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3264), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41691] = 10, + ACTIONS(3032), 10, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [52866] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3685), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3742), 6, + ACTIONS(7433), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4288), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6237), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41751] = 11, + ACTIONS(7435), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [52935] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, + ACTIONS(7350), 1, + anon_sym_DOT, + ACTIONS(7445), 1, anon_sym_COLON, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + STATE(4481), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3743), 6, + STATE(4289), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6299), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6301), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(3259), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41813] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3257), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [52994] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7447), 1, + anon_sym_DOT, + STATE(4297), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3744), 6, + STATE(4290), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3270), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3259), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41871] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3257), 10, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53053] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3742), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7449), 1, + anon_sym_or, + STATE(4305), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3745), 6, + STATE(4291), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6243), 14, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3232), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41931] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3230), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53110] = 18, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5573), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6636), 1, - anon_sym_COMMA, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7453), 1, + anon_sym__, + ACTIONS(7455), 1, + anon_sym_POUND, + STATE(437), 1, + sym_type, + STATE(3228), 1, + sym__static_type_identifier, + STATE(3293), 1, + sym_type_argument, + STATE(3384), 1, + sym_long_identifier, + STATE(6492), 1, + sym_object_construction, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3746), 7, + ACTIONS(7457), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4292), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - ACTIONS(6277), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6279), 13, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [41991] = 9, + STATE(3363), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [53181] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7429), 1, + anon_sym_or, + STATE(4285), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3747), 6, + STATE(4293), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3272), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3274), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3232), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42049] = 11, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3230), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53238] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6599), 1, - anon_sym_COLON, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3748), 6, + STATE(4294), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6299), 10, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6301), 14, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42111] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, - sym_long_identifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4514), 6, - sym__newline, + ACTIONS(3276), 9, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - STATE(3749), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4516), 12, - anon_sym_do, - anon_sym_let, + anon_sym_POUNDelse, + ACTIONS(3274), 12, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, + anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [42183] = 9, + sym_identifier, + [53291] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7459), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3750), 6, + STATE(4295), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3278), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42241] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3285), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53346] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(4324), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3751), 6, + ACTIONS(7280), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4296), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, + ACTIONS(7282), 16, + anon_sym_module, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3282), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42299] = 9, + anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [53405] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7447), 1, + anon_sym_DOT, + STATE(4295), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3752), 6, + STATE(4297), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3286), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3204), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42357] = 16, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3202), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53462] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6599), 1, - anon_sym_COLON, - ACTIONS(6609), 1, - anon_sym_COMMA, - ACTIONS(6611), 1, - anon_sym_COLON_COLON, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6615), 1, - anon_sym_AMP, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3753), 6, + STATE(4298), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6311), 9, + ACTIONS(3285), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -401768,57 +449227,62 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6313), 10, + ACTIONS(3287), 12, anon_sym_EQ, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [42429] = 11, + [53515] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6576), 1, - anon_sym_DOT, - STATE(3684), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3754), 6, + ACTIONS(3022), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4299), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2935), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3024), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -401828,502 +449292,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [42491] = 9, + [53584] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3755), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4979), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4300), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3290), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42549] = 9, + ACTIONS(4981), 9, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [53651] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3756), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4955), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4301), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6435), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6437), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42607] = 9, + ACTIONS(4957), 9, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [53718] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7449), 1, + anon_sym_or, + STATE(4291), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3757), 6, + STATE(4302), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3297), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3244), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42665] = 16, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3242), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53775] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_COLON_COLON, - ACTIONS(6595), 1, - anon_sym_PIPE, - ACTIONS(6597), 1, - anon_sym_AMP, - STATE(3679), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3758), 6, + ACTIONS(3090), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4303), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6224), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6226), 10, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42737] = 9, + ACTIONS(3092), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [53844] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3759), 6, + ACTIONS(7472), 5, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_STAR, + STATE(4304), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6400), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6402), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42795] = 9, + ACTIONS(7474), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [53911] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7476), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3760), 6, + STATE(4305), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6431), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6433), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42853] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3274), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [53966] = 18, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, + anon_sym_LPAREN, + ACTIONS(6656), 1, + anon_sym__, + ACTIONS(6658), 1, + anon_sym_POUND, + STATE(436), 1, + sym_type, + STATE(3235), 1, + sym__static_type_identifier, + STATE(3313), 1, + sym_type_argument, + STATE(3346), 1, + sym_long_identifier, + STATE(6599), 1, + sym_object_construction, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3761), 6, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4306), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3471), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42911] = 16, + STATE(3402), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [54037] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6599), 1, - anon_sym_COLON, - ACTIONS(6609), 1, - anon_sym_COMMA, - ACTIONS(6611), 1, - anon_sym_COLON_COLON, - ACTIONS(6613), 1, - anon_sym_PIPE, - ACTIONS(6615), 1, - anon_sym_AMP, - STATE(3713), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, + sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3762), 6, + ACTIONS(3010), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4307), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6224), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6226), 10, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [42983] = 9, + ACTIONS(3012), 10, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [54106] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3763), 6, + ACTIONS(7479), 5, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_STAR, + STATE(4308), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3314), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43041] = 10, + ACTIONS(7481), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [54173] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6639), 1, + ACTIONS(7424), 1, anon_sym_or, + STATE(4312), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3764), 7, + STATE(4309), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 11, - sym__newline, + ACTIONS(3232), 9, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2917), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3230), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -402333,228 +449789,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [43101] = 9, + [54230] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3765), 6, + STATE(4310), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3328), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3363), 9, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43159] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3361), 12, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [54283] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3766), 6, + ACTIONS(3030), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4311), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3341), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43217] = 9, + ACTIONS(3032), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [54352] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7483), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3767), 6, + STATE(4312), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6414), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6416), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43275] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3274), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [54407] = 18, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5573), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7451), 1, + anon_sym_LPAREN, + ACTIONS(7453), 1, + anon_sym__, + ACTIONS(7455), 1, + anon_sym_POUND, + STATE(438), 1, + sym_type, + STATE(3228), 1, + sym__static_type_identifier, + STATE(3293), 1, + sym_type_argument, + STATE(3384), 1, + sym_long_identifier, + STATE(6492), 1, + sym_object_construction, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3768), 6, + ACTIONS(7457), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4313), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3352), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43333] = 9, + STATE(3363), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [54478] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7486), 1, + anon_sym_SEMI, + STATE(4318), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3769), 6, + STATE(4314), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6761), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -402564,95 +450019,85 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3358), 15, + ACTIONS(6763), 10, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [43391] = 9, + [54535] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7447), 1, + anon_sym_DOT, + STATE(4297), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3770), 6, + STATE(4315), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 11, - anon_sym_COLON, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3373), 15, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3259), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43449] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3257), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [54592] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3771), 6, + STATE(4316), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6418), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6771), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -402662,12 +450107,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6420), 15, + ACTIONS(6773), 12, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, @@ -402678,79 +450120,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [43507] = 9, + [54645] = 21, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7308), 1, + anon_sym_y, + ACTIONS(7310), 1, + anon_sym_uy, + ACTIONS(7312), 1, + anon_sym_s, + ACTIONS(7314), 1, + anon_sym_us, + ACTIONS(7318), 1, + aux_sym_uint32_token1, + ACTIONS(7320), 1, + anon_sym_n, + ACTIONS(7322), 1, + anon_sym_un, + ACTIONS(7326), 1, + aux_sym_uint64_token1, + ACTIONS(7488), 1, + anon_sym_l, + ACTIONS(7490), 1, + anon_sym_L, + ACTIONS(7492), 1, + anon_sym_lf, + ACTIONS(7494), 1, + anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3772), 6, + STATE(4317), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6422), 11, - anon_sym_COLON, + ACTIONS(2770), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6424), 15, - anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [43565] = 9, + [54722] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7486), 1, + anon_sym_SEMI, + STATE(4319), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3773), 6, + STATE(4318), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 11, - anon_sym_COLON, - anon_sym_as, + ACTIONS(6765), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -402760,97 +450211,42 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3389), 15, + ACTIONS(6767), 10, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [43623] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6622), 1, - anon_sym_or, - STATE(3764), 1, - aux_sym_type_argument_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3774), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2943), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2941), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [43685] = 9, + [54779] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7496), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3775), 6, + STATE(4319), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 11, - anon_sym_COLON, - anon_sym_as, + aux_sym_record_pattern_repeat1, + ACTIONS(6771), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -402860,111 +450256,60 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(3453), 15, + ACTIONS(6773), 10, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, - anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [43743] = 11, + [54834] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6628), 1, - anon_sym_DOT, - STATE(3783), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3776), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2937), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, anon_sym_DASH_GT, + ACTIONS(7466), 1, anon_sym_STAR, + ACTIONS(7468), 1, anon_sym_LT2, + ACTIONS(7470), 1, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2935), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [43804] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6497), 1, - anon_sym_STAR, - STATE(3800), 1, + STATE(4775), 1, aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3777), 6, + ACTIONS(3022), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4320), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2970), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3024), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -402974,103 +450319,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [43865] = 9, + [54903] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3778), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2919), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, anon_sym_DASH_GT, + ACTIONS(7439), 1, anon_sym_STAR, + ACTIONS(7441), 1, anon_sym_LT2, + ACTIONS(7443), 1, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2917), 14, - anon_sym_do, - anon_sym_let, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3090), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4321), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3092), 9, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [43922] = 17, + [54972] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7431), 1, sym_identifier, - ACTIONS(6521), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(6523), 1, + ACTIONS(7439), 1, anon_sym_STAR, - ACTIONS(6525), 1, + ACTIONS(7441), 1, anon_sym_LT2, - ACTIONS(6527), 1, + ACTIONS(7443), 1, anon_sym_LBRACK_RBRACK, - STATE(3808), 1, + STATE(4770), 1, aux_sym__compound_type_repeat1, - STATE(3836), 1, + STATE(4889), 1, sym_type_arguments, - STATE(3842), 1, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4655), 6, - sym__newline, + ACTIONS(3030), 4, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3779), 6, + anon_sym_PIPE, + STATE(4322), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4657), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(3032), 9, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -403079,294 +450423,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [43995] = 21, + [55041] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6532), 1, - anon_sym_y, - ACTIONS(6534), 1, - anon_sym_uy, - ACTIONS(6536), 1, - anon_sym_s, - ACTIONS(6538), 1, - anon_sym_us, - ACTIONS(6542), 1, - aux_sym_uint32_token1, - ACTIONS(6544), 1, - anon_sym_n, - ACTIONS(6546), 1, - anon_sym_un, - ACTIONS(6550), 1, - aux_sym_uint64_token1, - ACTIONS(6642), 1, - anon_sym_l, - ACTIONS(6644), 1, - anon_sym_L, - ACTIONS(6646), 1, - anon_sym_lf, - ACTIONS(6648), 1, - anon_sym_LF, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3780), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2520), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, anon_sym_DASH_GT, - anon_sym_when, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, anon_sym_LT2, - [44076] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6650), 1, - anon_sym_EQ, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6654), 1, - anon_sym_LPAREN, - ACTIONS(6656), 1, - anon_sym_with, - ACTIONS(6658), 1, - anon_sym_new, - ACTIONS(6662), 1, - anon_sym_static, - ACTIONS(6664), 1, - anon_sym_member, - ACTIONS(6666), 1, - anon_sym_interface, - ACTIONS(6668), 1, - anon_sym_abstract, - ACTIONS(6670), 1, - anon_sym_val, - STATE(2457), 1, - sym_member_defn, - STATE(2745), 1, - sym_additional_constr_defn, - STATE(2840), 1, - aux_sym__object_expression_inner_repeat1, - STATE(2862), 1, - sym_interface_implementation, - STATE(2918), 1, - sym_type_extension_elements, - STATE(2920), 1, - sym__type_defn_elements, - STATE(2921), 1, - sym__member_defns, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4991), 1, - sym_attributes, - STATE(6207), 1, - sym_access_modifier, - STATE(7565), 1, - sym_primary_constr_args, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6660), 2, - anon_sym_default, - anon_sym_override, - STATE(3781), 6, + ACTIONS(3010), 4, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + STATE(4323), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44177] = 31, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6654), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_EQ, - ACTIONS(6674), 1, + ACTIONS(3012), 9, anon_sym_with, - ACTIONS(6676), 1, anon_sym_new, - ACTIONS(6680), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6682), 1, anon_sym_member, - ACTIONS(6684), 1, anon_sym_interface, - ACTIONS(6686), 1, anon_sym_abstract, - ACTIONS(6688), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4326), 1, - sym_member_defn, - STATE(4327), 1, - sym_attribute_set, - STATE(4837), 1, - sym_additional_constr_defn, - STATE(4925), 1, - sym_attributes, - STATE(5494), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5651), 1, - sym_interface_implementation, - STATE(5718), 1, - sym_type_extension_elements, - STATE(5721), 1, - sym__member_defns, - STATE(5757), 1, - sym__type_defn_elements, - STATE(6182), 1, - sym_access_modifier, - STATE(7648), 1, - sym_primary_constr_args, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6678), 2, - anon_sym_default, anon_sym_override, - STATE(3782), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [44278] = 11, + anon_sym_val, + [55110] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6628), 1, - anon_sym_DOT, - STATE(3794), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7499), 1, + anon_sym_LBRACK_LT, + STATE(4720), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3783), 6, + ACTIONS(7000), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4324), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 10, - sym__newline, - anon_sym_LBRACK_LT, + aux_sym_attributes_repeat1, + ACTIONS(7005), 16, + anon_sym_module, + anon_sym_type, + anon_sym_do, + anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2966), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, + anon_sym__, anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [44339] = 9, + [55167] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3784), 6, + ACTIONS(3010), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4325), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 12, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2900), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3012), 9, anon_sym_with, anon_sym_new, anon_sym_default, @@ -403376,55 +450573,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - sym_identifier, - [44396] = 17, + [55236] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7431), 1, sym_identifier, - ACTIONS(6521), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(6523), 1, + ACTIONS(7439), 1, anon_sym_STAR, - ACTIONS(6525), 1, + ACTIONS(7441), 1, anon_sym_LT2, - ACTIONS(6527), 1, + ACTIONS(7443), 1, anon_sym_LBRACK_RBRACK, - STATE(3808), 1, + STATE(4770), 1, aux_sym__compound_type_repeat1, - STATE(3836), 1, + STATE(4889), 1, sym_type_arguments, - STATE(3842), 1, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4632), 6, - sym__newline, + ACTIONS(7502), 4, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3785), 6, + anon_sym_PIPE, + STATE(4326), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4634), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(7504), 9, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -403433,54 +450625,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [44469] = 17, + [55305] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7414), 1, sym_identifier, - ACTIONS(6521), 1, + ACTIONS(7416), 1, anon_sym_DASH_GT, - ACTIONS(6523), 1, + ACTIONS(7418), 1, anon_sym_STAR, - ACTIONS(6525), 1, + ACTIONS(7420), 1, anon_sym_LT2, - ACTIONS(6527), 1, + ACTIONS(7422), 1, anon_sym_LBRACK_RBRACK, - STATE(3808), 1, + STATE(4758), 1, aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4624), 6, - sym__newline, + ACTIONS(3090), 3, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDif, anon_sym_POUNDendif, - STATE(3786), 6, + STATE(4327), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4626), 11, - anon_sym_do, - anon_sym_let, + ACTIONS(3092), 10, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -403489,1041 +450677,998 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - [44542] = 9, + [55374] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5739), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3787), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4328), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3029), 14, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_or, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [44599] = 16, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55442] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4645), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3431), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3789), 1, - aux_sym__member_defns_repeat1, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4473), 1, - sym_member_defn, - STATE(5117), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, + ACTIONS(7506), 1, + anon_sym_LPAREN, + ACTIONS(7508), 1, + anon_sym__, + ACTIONS(7510), 1, + anon_sym_POUND, + STATE(969), 1, + sym_type, + STATE(1088), 1, + sym__static_type_identifier, + STATE(1254), 1, + sym_long_identifier, + STATE(1268), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3788), 6, + ACTIONS(7512), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4329), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4643), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [44670] = 16, + STATE(1231), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55510] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3792), 1, - aux_sym__member_defns_repeat1, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4473), 1, - sym_member_defn, - STATE(5117), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5649), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3789), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4330), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4561), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [44741] = 31, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55578] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6654), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6690), 1, - anon_sym_EQ, - ACTIONS(6692), 1, - anon_sym_with, - ACTIONS(6694), 1, - anon_sym_new, - ACTIONS(6698), 1, - anon_sym_static, - ACTIONS(6700), 1, - anon_sym_member, - ACTIONS(6702), 1, - anon_sym_interface, - ACTIONS(6704), 1, - anon_sym_abstract, - ACTIONS(6706), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4482), 1, - sym_member_defn, - STATE(4936), 1, - sym_additional_constr_defn, - STATE(4993), 1, - sym_attributes, - STATE(5540), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5793), 1, - sym_interface_implementation, - STATE(5827), 1, - sym__member_defns, - STATE(5889), 1, - sym__type_defn_elements, - STATE(6048), 1, - sym_type_extension_elements, - STATE(6172), 1, - sym_access_modifier, - STATE(7684), 1, - sym_primary_constr_args, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5634), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6696), 2, - anon_sym_default, - anon_sym_override, - STATE(3790), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4331), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [44842] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55646] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + sym_identifier, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4180), 1, + sym_type, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3791), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4332), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6708), 12, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55714] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7514), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(7516), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_new, - aux_sym_char_token1, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6710), 13, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(7518), 1, + anon_sym_POUND, + STATE(3253), 1, + sym_type, + STATE(3258), 1, + sym__static_type_identifier, + STATE(3400), 1, + sym_type_argument, + STATE(3437), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7520), 2, anon_sym_CARET, anon_sym_SQUOTE, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [44899] = 23, + STATE(4333), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3452), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55782] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4594), 1, - anon_sym_let, - ACTIONS(4596), 1, - anon_sym_LBRACK_LT, - ACTIONS(4599), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6712), 1, - anon_sym_new, - ACTIONS(6718), 1, - anon_sym_static, - ACTIONS(6721), 1, - anon_sym_member, - ACTIONS(6724), 1, - anon_sym_abstract, - ACTIONS(6727), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4464), 1, - sym_additional_constr_defn, - STATE(4473), 1, - sym_member_defn, - STATE(5117), 1, - sym_attributes, - STATE(7504), 1, - sym_access_modifier, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + sym_identifier, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4181), 1, + sym_type, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6715), 2, - anon_sym_default, - anon_sym_override, - STATE(3792), 7, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4334), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - ACTIONS(4592), 8, - sym__newline, - anon_sym_do, - anon_sym_let_BANG, - anon_sym_interface, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [44984] = 17, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55850] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(6521), 1, - anon_sym_DASH_GT, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(3271), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4584), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3793), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4335), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4586), 11, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [45057] = 10, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55918] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6730), 1, - anon_sym_DOT, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3782), 1, + sym_type, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3794), 7, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4336), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2900), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45116] = 17, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [55986] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6517), 1, + ACTIONS(7538), 1, sym_identifier, - ACTIONS(6521), 1, - anon_sym_DASH_GT, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6525), 1, - anon_sym_LT2, - ACTIONS(6527), 1, - anon_sym_LBRACK_RBRACK, - STATE(3808), 1, - aux_sym__compound_type_repeat1, - STATE(3836), 1, - sym_type_arguments, - STATE(3842), 1, + ACTIONS(7540), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, + anon_sym__, + ACTIONS(7544), 1, + anon_sym_POUND, + STATE(4831), 1, + sym_type, + STATE(4837), 1, + sym__static_type_identifier, + STATE(4981), 1, + sym_type_argument, + STATE(5033), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4659), 6, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3795), 6, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4337), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4661), 11, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - [45189] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(5034), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56054] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7540), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, + anon_sym__, + ACTIONS(7544), 1, + anon_sym_POUND, + STATE(4832), 1, + sym_type, + STATE(4837), 1, + sym__static_type_identifier, + STATE(4981), 1, + sym_type_argument, + STATE(5033), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3796), 6, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4338), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6733), 11, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_with, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, - sym_identifier, - ACTIONS(6735), 14, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [45246] = 9, + STATE(5034), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56122] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7540), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, + anon_sym__, + ACTIONS(7544), 1, + anon_sym_POUND, + STATE(4833), 1, + sym_type, + STATE(4837), 1, + sym__static_type_identifier, + STATE(4981), 1, + sym_type_argument, + STATE(5033), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3797), 6, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4339), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 12, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2924), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45303] = 10, + STATE(5034), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56190] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6737), 1, - anon_sym_COLON_GT, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7540), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, + anon_sym__, + ACTIONS(7544), 1, + anon_sym_POUND, + STATE(4836), 1, + sym_type, + STATE(4837), 1, + sym__static_type_identifier, + STATE(4981), 1, + sym_type_argument, + STATE(5033), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3798), 6, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4340), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2986), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45362] = 31, + STATE(5034), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56258] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6654), 1, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_EQ, - ACTIONS(6741), 1, - anon_sym_with, - ACTIONS(6743), 1, - anon_sym_new, - ACTIONS(6747), 1, - anon_sym_static, - ACTIONS(6749), 1, - anon_sym_member, - ACTIONS(6751), 1, - anon_sym_interface, - ACTIONS(6753), 1, - anon_sym_abstract, - ACTIONS(6755), 1, - anon_sym_val, - STATE(2471), 1, - sym_member_defn, - STATE(2826), 1, - sym_additional_constr_defn, - STATE(2847), 1, - aux_sym__object_expression_inner_repeat1, - STATE(2902), 1, - sym_interface_implementation, - STATE(2948), 1, - sym__type_defn_elements, - STATE(2973), 1, - sym_type_extension_elements, - STATE(3000), 1, - sym__member_defns, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4932), 1, - sym_attributes, - STATE(6178), 1, - sym_access_modifier, - STATE(7669), 1, - sym_primary_constr_args, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + sym_identifier, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4388), 1, + sym_type_argument, + STATE(4580), 1, + sym_type, + STATE(4784), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6745), 2, - anon_sym_default, - anon_sym_override, - STATE(3799), 6, + aux_sym_preproc_line_token1, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4341), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [45463] = 10, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56326] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6757), 1, - anon_sym_STAR, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + sym_identifier, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4178), 1, + sym_type, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3800), 7, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4342), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2810), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45522] = 11, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56394] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - STATE(3809), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3801), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2968), 10, - anon_sym_EQ, + ACTIONS(25), 1, anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2966), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, + ACTIONS(7294), 1, anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - sym_identifier, - [45582] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6762), 1, - anon_sym_LT2, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + STATE(8194), 1, + sym__type_defn_elements, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3802), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4343), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2990), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45640] = 16, + [56480] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3812), 1, - aux_sym__member_defns_repeat1, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4506), 1, - sym_member_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(5010), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3317), 1, + sym_type, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3803), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4344), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4561), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [45710] = 9, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56548] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(3278), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3804), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4345), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3033), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45766] = 9, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56616] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3805), 6, + STATE(4346), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3003), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + ACTIONS(6949), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [45822] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6951), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [56668] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - STATE(3640), 1, - aux_sym_attributes_repeat1, - STATE(3692), 1, - sym_attribute_set, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3806), 6, + STATE(4347), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6764), 10, + ACTIONS(6945), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -404531,452 +451676,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(6766), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6947), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [45882] = 9, + [56720] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(443), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3807), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4348), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3007), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45938] = 11, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56788] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6523), 1, - anon_sym_STAR, - STATE(3818), 1, - aux_sym__compound_type_repeat1, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4841), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3808), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4349), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 9, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2970), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [45998] = 10, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56856] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6768), 1, - anon_sym_DOT, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4842), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3809), 7, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4350), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 10, - anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [46056] = 9, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56924] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4844), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3810), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4351), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3021), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46112] = 9, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [56992] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4845), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3811), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4352), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3025), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46168] = 23, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57060] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4594), 1, - anon_sym_let, - ACTIONS(4596), 1, - anon_sym_LBRACK_LT, - ACTIONS(4599), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6771), 1, - anon_sym_new, - ACTIONS(6777), 1, - anon_sym_static, - ACTIONS(6780), 1, - anon_sym_member, - ACTIONS(6783), 1, - anon_sym_abstract, - ACTIONS(6786), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4506), 1, - sym_member_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(5010), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3787), 1, + sym_type, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6774), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4592), 7, - sym__newline, - anon_sym_do, - anon_sym_let_BANG, - anon_sym_interface, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - STATE(3812), 7, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4353), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [46252] = 9, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57128] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(445), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3813), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4354), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2924), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46308] = 9, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57196] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5702), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3814), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4355), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2986), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46364] = 10, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57264] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6789), 1, - anon_sym_COLON_GT, + ACTIONS(7558), 1, + anon_sym_DOT, + STATE(4661), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3815), 6, + STATE(4356), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 10, + ACTIONS(3259), 8, sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2986), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3257), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -404986,381 +452142,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [46422] = 16, + [57320] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4645), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3803), 1, - aux_sym__member_defns_repeat1, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4506), 1, - sym_member_defn, - STATE(4507), 1, - sym_additional_constr_defn, - STATE(5010), 1, - sym_attributes, - STATE(7537), 1, - sym_access_modifier, + ACTIONS(7560), 1, + anon_sym_SEMI, + STATE(4422), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3816), 6, + STATE(4357), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4643), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [46492] = 9, + ACTIONS(6761), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(6763), 9, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [57376] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5664), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3817), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4358), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3017), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46548] = 10, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57444] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6791), 1, - anon_sym_STAR, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + sym_identifier, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4171), 1, + sym_type, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3818), 7, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4359), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 9, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2810), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46606] = 9, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57512] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3819), 6, + STATE(4360), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2900), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + ACTIONS(3798), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [46662] = 9, + ACTIONS(3800), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [57564] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7558), 1, + anon_sym_DOT, + STATE(4661), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3820), 6, + STATE(4361), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 11, + ACTIONS(3259), 8, sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3043), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3257), 9, anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [46718] = 9, + [57622] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + sym_identifier, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4168), 1, + sym_type, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3821), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4362), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3047), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46774] = 9, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57690] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3853), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7562), 1, + anon_sym_LPAREN, + ACTIONS(7564), 1, + anon_sym__, + ACTIONS(7566), 1, + anon_sym_POUND, + STATE(1167), 1, + sym_type, + STATE(1416), 1, + sym__static_type_identifier, + STATE(1629), 1, + sym_long_identifier, + STATE(1630), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3822), 6, + ACTIONS(7568), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4363), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3013), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46830] = 9, + STATE(1633), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57758] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7350), 1, + anon_sym_DOT, + STATE(4481), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3823), 6, + STATE(4364), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, - anon_sym_EQ, + ACTIONS(3259), 8, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_COLON, aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3013), 12, - anon_sym_and, - anon_sym_LPAREN, + ACTIONS(3257), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -405371,188 +452526,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [46885] = 9, + [57814] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5679), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3824), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4365), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3007), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [46940] = 29, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57882] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6810), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7426), 1, - sym_type_extension_elements, - STATE(7485), 1, - sym__member_defns, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + sym_identifier, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4388), 1, + sym_type_argument, + STATE(4593), 1, + sym_type, + STATE(4784), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3825), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4366), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47035] = 9, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [57950] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3853), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7562), 1, + anon_sym_LPAREN, + ACTIONS(7564), 1, + anon_sym__, + ACTIONS(7566), 1, + anon_sym_POUND, + STATE(1139), 1, + sym_type, + STATE(1416), 1, + sym__static_type_identifier, + STATE(1629), 1, + sym_long_identifier, + STATE(1630), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3826), 6, + ACTIONS(7568), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4367), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3017), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + STATE(1633), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58018] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3853), 1, sym_identifier, - [47090] = 10, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7562), 1, + anon_sym_LPAREN, + ACTIONS(7564), 1, + anon_sym__, + ACTIONS(7566), 1, + anon_sym_POUND, + STATE(1138), 1, + sym_type, + STATE(1416), 1, + sym__static_type_identifier, + STATE(1629), 1, + sym_long_identifier, + STATE(1630), 1, + sym_type_argument, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7568), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4368), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(1633), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58086] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6812), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3827), 6, + STATE(4369), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 11, + ACTIONS(3794), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -405561,10 +452760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3075), 11, + ACTIONS(3796), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -405576,832 +452773,942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [47147] = 29, + [58138] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6814), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7351), 1, - sym_type_extension_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, + ACTIONS(7570), 1, + anon_sym_LPAREN, + ACTIONS(7572), 1, + anon_sym__, + ACTIONS(7574), 1, + anon_sym_POUND, + STATE(901), 1, + sym_type, + STATE(940), 1, + sym__static_type_identifier, + STATE(979), 1, + sym_long_identifier, + STATE(980), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3828), 6, + ACTIONS(7576), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4370), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47242] = 9, + STATE(981), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58206] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, + STATE(4869), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3829), 6, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4371), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 11, - anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 12, - anon_sym_and, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58274] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - [47297] = 29, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5764), 1, + sym_type, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4372), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58342] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6816), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6734), 1, - sym_type_extension_elements, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + sym_identifier, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4388), 1, + sym_type_argument, + STATE(4612), 1, + sym_type, + STATE(4784), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3830), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4373), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47392] = 29, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58410] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6818), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - STATE(7578), 1, - sym_type_extension_elements, + ACTIONS(7570), 1, + anon_sym_LPAREN, + ACTIONS(7572), 1, + anon_sym__, + ACTIONS(7574), 1, + anon_sym_POUND, + STATE(900), 1, + sym_type, + STATE(940), 1, + sym__static_type_identifier, + STATE(979), 1, + sym_long_identifier, + STATE(980), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3831), 6, + ACTIONS(7576), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4374), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47487] = 16, + STATE(981), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58478] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2935), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6820), 1, - anon_sym_EQ, - ACTIONS(6824), 1, - anon_sym_COLON, - ACTIONS(6828), 1, - anon_sym_DOT, - ACTIONS(6830), 1, - anon_sym_of, - STATE(4120), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, + STATE(4843), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2937), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(6822), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3832), 6, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4375), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6826), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [47556] = 29, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58546] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6832), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - STATE(7680), 1, - sym_type_extension_elements, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(447), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3833), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4376), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47651] = 9, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58614] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3834), 6, + STATE(4377), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 10, + ACTIONS(3276), 9, sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3013), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3274), 11, anon_sym_with, anon_sym_new, anon_sym_default, + anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [47706] = 29, + [58666] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6834), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7372), 1, - sym_type_extension_elements, - STATE(7485), 1, - sym__member_defns, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + sym_identifier, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4388), 1, + sym_type_argument, + STATE(4630), 1, + sym_type, + STATE(4784), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3835), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4378), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [47801] = 9, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58734] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, + anon_sym_LPAREN, + ACTIONS(7580), 1, + anon_sym__, + ACTIONS(7582), 1, + anon_sym_POUND, + STATE(3630), 1, + sym__static_type_identifier, + STATE(3664), 1, + sym_type, + STATE(3704), 1, + sym_type_argument, + STATE(3774), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3836), 6, + ACTIONS(7584), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4379), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3025), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - sym_identifier, - [47856] = 9, + STATE(3786), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58802] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7570), 1, + anon_sym_LPAREN, + ACTIONS(7572), 1, + anon_sym__, + ACTIONS(7574), 1, + anon_sym_POUND, + STATE(909), 1, + sym_type, + STATE(940), 1, + sym__static_type_identifier, + STATE(979), 1, + sym_long_identifier, + STATE(980), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3837), 6, + ACTIONS(7576), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4380), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3043), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + STATE(981), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58870] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5589), 1, sym_identifier, - [47911] = 29, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7514), 1, + anon_sym_LPAREN, + ACTIONS(7516), 1, + anon_sym__, + ACTIONS(7518), 1, + anon_sym_POUND, + STATE(3258), 1, + sym__static_type_identifier, + STATE(3260), 1, + sym_type, + STATE(3400), 1, + sym_type_argument, + STATE(3437), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7520), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4381), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3452), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [58938] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6836), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(6929), 1, - sym_type_extension_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + sym_identifier, + STATE(4279), 1, + sym__static_type_identifier, + STATE(4388), 1, + sym_type_argument, + STATE(4653), 1, + sym_type, + STATE(4784), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3838), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4382), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [48006] = 9, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59006] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5726), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3839), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4383), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3047), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59074] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - [48061] = 29, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7586), 1, + anon_sym_LPAREN, + ACTIONS(7588), 1, + anon_sym__, + ACTIONS(7590), 1, + anon_sym_POUND, + STATE(1104), 1, + sym_type, + STATE(1401), 1, + sym__static_type_identifier, + STATE(1502), 1, + sym_long_identifier, + STATE(1508), 1, + sym_type_argument, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4384), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(1514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59142] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6794), 1, - anon_sym_with, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - ACTIONS(6838), 1, - sym__dedent, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(6809), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - STATE(7739), 1, - sym_type_extension_elements, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3675), 1, + sym_type, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4385), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59210] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4066), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3840), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4386), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [48156] = 9, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59278] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3841), 6, + STATE(4387), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 10, + ACTIONS(3363), 9, sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(3003), 13, - anon_sym_do, - anon_sym_let, + ACTIONS(3361), 11, anon_sym_with, anon_sym_new, anon_sym_default, + anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [48211] = 9, + [59330] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7594), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3842), 6, + STATE(4388), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 10, - sym__newline, + ACTIONS(3353), 8, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, anon_sym_POUNDendif, - ACTIONS(3033), 13, - anon_sym_do, - anon_sym_let, + anon_sym_POUNDelse, + ACTIONS(3351), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -406411,288 +453718,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [48266] = 9, + [59384] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7626), 1, + sym__type_defn_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3843), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4389), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 11, - anon_sym_EQ, + [59470] = 26, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - anon_sym_COLON, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3043), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, + ACTIONS(7294), 1, anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - sym_identifier, - [48321] = 23, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7158), 1, + sym__type_defn_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4390), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [59556] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6840), 1, - anon_sym_y, - ACTIONS(6842), 1, - anon_sym_uy, - ACTIONS(6844), 1, - anon_sym_s, - ACTIONS(6846), 1, - anon_sym_us, - ACTIONS(6848), 1, - anon_sym_l, - ACTIONS(6850), 1, - aux_sym_uint32_token1, - ACTIONS(6852), 1, - anon_sym_n, - ACTIONS(6854), 1, - anon_sym_un, - ACTIONS(6856), 1, - anon_sym_L, - ACTIONS(6858), 1, - aux_sym_uint64_token1, - ACTIONS(6860), 1, - aux_sym_bignum_token1, - ACTIONS(6862), 1, - aux_sym_decimal_token1, - ACTIONS(6864), 1, - anon_sym_DOT2, - ACTIONS(6866), 1, - aux_sym_float_token1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3660), 1, + sym_type, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3844), 6, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4391), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [48404] = 9, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59624] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4731), 1, + sym_type, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3845), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4392), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 11, - anon_sym_EQ, - anon_sym_LBRACK_LT, - anon_sym_COLON, - aux_sym_access_modifier_token1, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3047), 12, - anon_sym_and, - anon_sym_LPAREN, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [48459] = 9, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59692] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3846), 6, + STATE(4393), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 10, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2986), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + ACTIONS(3790), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [48514] = 10, + ACTIONS(3792), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [59744] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6868), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3847), 6, + STATE(4394), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 9, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, - anon_sym_POUNDendif, - ACTIONS(2990), 13, - anon_sym_do, - anon_sym_let, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, + ACTIONS(3786), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [48571] = 9, + ACTIONS(3788), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [59796] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7378), 1, + anon_sym_STAR, + STATE(4403), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3848), 6, + STATE(4395), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 10, - sym__newline, + ACTIONS(3214), 7, anon_sym_LBRACK_LT, - anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDif, anon_sym_POUNDendif, - ACTIONS(3021), 13, - anon_sym_do, - anon_sym_let, + anon_sym_POUNDelse, + ACTIONS(3212), 11, + anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, @@ -406702,111 +454071,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, sym_identifier, - [48626] = 22, + [59852] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3790), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(5999), 1, - sym__type_defn_body, - STATE(7734), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5654), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3849), 6, + STATE(4396), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6069), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [48706] = 19, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [59920] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6874), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(7091), 1, - sym_types, + STATE(5669), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3850), 6, + STATE(4397), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -406817,28 +454174,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [48780] = 9, + [59988] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3851), 6, + STATE(4398), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3173), 11, + ACTIONS(3782), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -406847,10 +454204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_bool, sym_int, - anon_sym_f, - aux_sym_decimal_token1, sym_identifier, - ACTIONS(3175), 11, + ACTIONS(3784), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -406862,109 +454217,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [48834] = 22, + [60040] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(5589), 1, sym_identifier, - STATE(2970), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3799), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7514), 1, + anon_sym_LPAREN, + ACTIONS(7516), 1, + anon_sym__, + ACTIONS(7518), 1, + anon_sym_POUND, + STATE(3255), 1, + sym_type, + STATE(3258), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(3400), 1, sym_type_argument, + STATE(3437), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7520), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3852), 6, + STATE(4399), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3011), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [48914] = 19, + STATE(3452), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60108] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7532), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7534), 1, anon_sym_POUND, - ACTIONS(5334), 1, + STATE(3659), 1, + sym_type, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4400), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60176] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(6412), 1, sym_identifier, - ACTIONS(6876), 1, - anon_sym_GT, - STATE(4814), 1, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3670), 1, + sym_type, + STATE(3672), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3800), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(3913), 1, sym_long_identifier, - STATE(7516), 1, - sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7536), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3853), 6, + STATE(4401), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3915), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -406975,154 +454370,142 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [48988] = 22, + [60244] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6346), 1, sym_identifier, - STATE(2835), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3781), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + ACTIONS(7578), 1, + anon_sym_LPAREN, + ACTIONS(7580), 1, + anon_sym__, + ACTIONS(7582), 1, + anon_sym_POUND, + STATE(3630), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(3704), 1, sym_type_argument, + STATE(3774), 1, + sym_long_identifier, + STATE(4749), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3854), 6, + STATE(4402), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2922), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49068] = 9, + STATE(3786), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60312] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7596), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3855), 6, + ACTIONS(3030), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4403), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3073), 11, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - anon_sym_f, - aux_sym_decimal_token1, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, sym_identifier, - ACTIONS(3075), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [49122] = 19, + [60366] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7526), 1, anon_sym_POUND, - ACTIONS(6878), 1, - sym_identifier, - STATE(3919), 1, + STATE(3286), 1, sym__static_type_identifier, - STATE(3920), 1, + STATE(3301), 1, sym_type, - STATE(4364), 1, + STATE(3433), 1, sym_type_argument, - STATE(4472), 1, + STATE(3464), 1, sym_long_identifier, - STATE(4670), 1, - sym_union_type_field, - STATE(4757), 1, - sym_union_type_fields, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3856), 6, + STATE(4404), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -407133,51 +454516,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [49196] = 19, + [60434] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6923), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6925), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6927), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6880), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(4107), 1, + sym_type, + STATE(4138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4193), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(4216), 1, sym_long_identifier, - STATE(7451), 1, - sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6929), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3857), 6, + STATE(4405), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4215), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -407188,79 +454567,79 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [49270] = 11, + [60502] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6882), 1, - anon_sym_or, - STATE(3886), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(454), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3858), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4406), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2924), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [49328] = 11, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60570] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6884), 1, - anon_sym_DOT, - STATE(3887), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3859), 6, + STATE(4407), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2935), 9, + ACTIONS(7599), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -407270,7 +454649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2937), 11, + ACTIONS(7601), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -407282,98 +454661,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [49386] = 11, + [60622] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6001), 1, - aux_sym_decimal_token1, - ACTIONS(6137), 1, - anon_sym_f, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5653), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3860), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4408), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60690] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7540), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(7542), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2520), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [49444] = 19, + ACTIONS(7544), 1, + anon_sym_POUND, + STATE(4768), 1, + sym_type, + STATE(4837), 1, + sym__static_type_identifier, + STATE(4981), 1, + sym_type_argument, + STATE(5033), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4409), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5034), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60758] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6886), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(4975), 1, + STATE(5501), 1, + sym_long_identifier, + STATE(5644), 1, sym_type, - STATE(5199), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4410), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [60826] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(6952), 1, - sym_types, + STATE(5750), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3861), 6, + STATE(4411), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -407384,31 +454865,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [49518] = 10, + [60894] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6888), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3862), 7, + STATE(4412), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 9, + ACTIONS(3778), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -407418,7 +454896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2902), 11, + ACTIONS(3780), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -407430,341 +454908,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [49574] = 22, + [60946] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4413), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(7603), 9, + anon_sym_LPAREN, + anon_sym_null, anon_sym__, - ACTIONS(5334), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(7605), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [60998] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, sym_identifier, - STATE(2919), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3781), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(4097), 1, + sym_type, + STATE(4138), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4193), 1, sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6929), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3863), 6, + STATE(4414), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2922), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49654] = 22, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61066] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, sym_identifier, - STATE(2945), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3799), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(4302), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4732), 1, + sym_type, + STATE(4774), 1, sym_type_argument, + STATE(4865), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3864), 6, + STATE(4415), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3011), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49734] = 22, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61134] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, sym_identifier, - STATE(2838), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3799), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(4061), 1, + sym_type, + STATE(4138), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4193), 1, sym_type_argument, + STATE(4216), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6929), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3865), 6, + STATE(4416), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3011), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49814] = 22, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61202] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, - sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3790), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5501), 1, - sym__type_defn_body, - STATE(5587), 1, - sym__static_type_identifier, - STATE(7734), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3866), 6, + STATE(4417), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6069), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49894] = 22, + ACTIONS(6884), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(6886), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [61254] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(7548), 1, sym_identifier, - STATE(2913), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3781), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4851), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4922), 1, + sym_type, + STATE(4997), 1, sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7556), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3867), 6, + STATE(4418), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2922), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [49974] = 19, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61322] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6891), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(7696), 1, - sym_types, + STATE(5627), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3868), 6, + STATE(4419), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -407775,144 +455249,126 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50048] = 22, + [61390] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, - sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3782), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5413), 1, - sym__type_defn_body, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, - sym__static_type_identifier, - STATE(7734), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3869), 6, + STATE(4420), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5716), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [50128] = 22, + ACTIONS(6880), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(6882), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [61442] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6933), 1, + anon_sym_LPAREN, + ACTIONS(6935), 1, + anon_sym__, + ACTIONS(6937), 1, + anon_sym_POUND, + ACTIONS(7374), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3790), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5486), 1, - sym__type_defn_body, - STATE(5587), 1, + STATE(4279), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4388), 1, sym_type_argument, + STATE(4784), 1, + sym_long_identifier, + STATE(5048), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6939), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3870), 6, + STATE(4421), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6069), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [50208] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + STATE(4785), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61510] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7560), 1, + anon_sym_SEMI, + STATE(4512), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3871), 6, + STATE(4422), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3013), 10, + ACTIONS(6765), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -407920,67 +455376,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3015), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(6767), 9, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [50262] = 19, + [61566] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6923), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6925), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6927), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6893), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(4095), 1, + sym_type, + STATE(4138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4193), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(4216), 1, sym_long_identifier, - STATE(6673), 1, - sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6929), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3872), 6, + STATE(4423), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4215), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -407991,109 +455439,149 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50336] = 22, + [61634] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym__, + ACTIONS(6866), 1, + anon_sym_POUND, + ACTIONS(7414), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3782), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(5708), 1, - sym__type_defn_body, - STATE(7734), 1, + STATE(4307), 1, + sym_type, + STATE(4759), 1, sym_type_argument, + STATE(4893), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3873), 6, + STATE(4424), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5716), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [50416] = 19, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61702] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7532), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7534), 1, anon_sym_POUND, - ACTIONS(6878), 1, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, + sym_long_identifier, + STATE(4968), 1, + sym_type, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4425), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61770] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, sym_identifier, - STATE(3919), 1, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, sym__static_type_identifier, - STATE(3920), 1, + STATE(3699), 1, sym_type, - STATE(4364), 1, + STATE(3800), 1, sym_type_argument, - STATE(4472), 1, + STATE(3913), 1, sym_long_identifier, - STATE(4670), 1, - sym_union_type_field, - STATE(4765), 1, - sym_union_type_fields, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7536), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3874), 6, + STATE(4426), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(3915), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408104,220 +455592,192 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50490] = 22, + [61838] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3782), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5407), 1, - sym__type_defn_body, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5783), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3875), 6, + STATE(4427), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5716), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [50570] = 17, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [61906] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3876), 6, + STATE(4428), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 10, - anon_sym_and, + ACTIONS(3363), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3361), 11, anon_sym_with, anon_sym_new, anon_sym_default, + anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [50640] = 22, + sym_identifier, + [61958] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(6862), 1, + anon_sym_LPAREN, + ACTIONS(6864), 1, + anon_sym__, + ACTIONS(6866), 1, + anon_sym_POUND, + ACTIONS(7414), 1, sym_identifier, - STATE(2834), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3781), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(4287), 1, + sym_type, + STATE(4759), 1, sym_type_argument, + STATE(4893), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3877), 6, + STATE(4429), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2922), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [50720] = 19, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62026] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6905), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(7557), 1, - sym_types, + STATE(5657), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3878), 6, + STATE(4430), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408328,96 +455788,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50794] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [62094] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3879), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3043), 10, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - anon_sym_LPAREN_PIPE, - sym_int, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, sym_identifier, - ACTIONS(3045), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_op_identifier, - sym_xint, - [50848] = 19, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7532), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7534), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(6907), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(3672), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(4975), 1, + STATE(3698), 1, sym_type, - STATE(5199), 1, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, sym_long_identifier, - STATE(7108), 1, - sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7536), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3880), 6, + STATE(4431), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3915), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408428,51 +455839,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50922] = 19, + [62162] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6913), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(6909), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(4302), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(4975), 1, + STATE(4736), 1, sym_type, - STATE(5199), 1, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, sym_long_identifier, - STATE(6844), 1, - sym_types, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3881), 6, + STATE(4432), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408483,104 +455890,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [50996] = 17, + [62230] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7506), 1, + anon_sym_LPAREN, + ACTIONS(7508), 1, + anon_sym__, + ACTIONS(7510), 1, + anon_sym_POUND, + STATE(953), 1, + sym_type, + STATE(1088), 1, + sym__static_type_identifier, + STATE(1254), 1, sym_long_identifier, + STATE(1268), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3882), 6, + ACTIONS(7512), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4433), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [51066] = 19, + STATE(1231), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62298] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7609), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7611), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7613), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6326), 1, - anon_sym_QMARK, - ACTIONS(6565), 1, - sym_identifier, - STATE(4047), 1, - sym_argument_name_spec, - STATE(4814), 1, + STATE(4903), 1, + sym_type, + STATE(4929), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5062), 1, sym_type_argument, - STATE(5199), 1, + STATE(5092), 1, sym_long_identifier, - STATE(5440), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7615), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3883), 6, + STATE(4434), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5094), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408591,28 +455992,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [51140] = 9, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [62366] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3884), 6, + STATE(4435), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3047), 10, + ACTIONS(3577), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -408620,219 +456021,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_LPAREN_PIPE, sym_int, sym_identifier, - ACTIONS(3049), 12, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_COLON_QMARK, + ACTIONS(3579), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, - sym_op_identifier, sym_xint, - [51194] = 22, + [62418] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3790), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(5975), 1, - sym__type_defn_body, - STATE(7734), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5663), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3885), 6, + STATE(4436), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(6069), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [51274] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62486] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6882), 1, - anon_sym_or, - STATE(3893), 1, - aux_sym_type_argument_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3886), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2943), 9, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2941), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(7607), 1, sym_identifier, - [51332] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6884), 1, - anon_sym_DOT, - STATE(3862), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7609), 1, + anon_sym_LPAREN, + ACTIONS(7611), 1, + anon_sym__, + ACTIONS(7613), 1, + anon_sym_POUND, + STATE(4910), 1, + sym_type, + STATE(4929), 1, + sym__static_type_identifier, + STATE(5062), 1, + sym_type_argument, + STATE(5092), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3887), 6, + ACTIONS(7615), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4437), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2966), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2968), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [51390] = 19, + STATE(5094), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62554] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3008), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7617), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7619), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7621), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(6911), 1, - anon_sym_GT, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(4975), 1, + STATE(890), 1, sym_type, - STATE(5199), 1, + STATE(907), 1, + sym__static_type_identifier, + STATE(935), 1, sym_long_identifier, - STATE(7272), 1, - sym_types, + STATE(936), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7623), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3888), 6, + STATE(4438), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(934), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408843,51 +456188,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [51464] = 19, + [62622] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6856), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(6913), 1, - anon_sym_GT, - STATE(4814), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(2831), 1, sym_type_argument, - STATE(4975), 1, - sym_type, - STATE(5199), 1, + STATE(2855), 1, sym_long_identifier, - STATE(7248), 1, - sym_types, + STATE(2957), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3889), 6, + STATE(4439), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -408898,30 +456239,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [51538] = 10, + [62690] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6915), 1, - sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3890), 6, + STATE(4440), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3177), 10, + ACTIONS(7625), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -408929,10 +456268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DQUOTE, sym_bool, - anon_sym_f, - aux_sym_decimal_token1, + sym_int, sym_identifier, - ACTIONS(3179), 11, + ACTIONS(7627), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -408944,359 +456282,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [51594] = 22, + [62742] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(7607), 1, sym_identifier, - STATE(2843), 1, - sym__type_defn_body, - STATE(3692), 1, - sym_attribute_set, - STATE(3799), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + ACTIONS(7609), 1, + anon_sym_LPAREN, + ACTIONS(7611), 1, + anon_sym__, + ACTIONS(7613), 1, + anon_sym_POUND, + STATE(4906), 1, + sym_type, + STATE(4929), 1, sym__static_type_identifier, - STATE(7734), 1, + STATE(5062), 1, sym_type_argument, + STATE(5092), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7615), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3891), 6, + STATE(4441), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3011), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [51674] = 17, + STATE(5094), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62810] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(6923), 1, + anon_sym_LPAREN, + ACTIONS(6925), 1, + anon_sym__, + ACTIONS(6927), 1, + anon_sym_POUND, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, + STATE(4034), 1, + sym_type, + STATE(4138), 1, + sym__static_type_identifier, + STATE(4193), 1, + sym_type_argument, + STATE(4216), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3892), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4442), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [51744] = 10, + STATE(4215), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62878] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6917), 1, - anon_sym_or, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, + anon_sym_LPAREN, + ACTIONS(7631), 1, + anon_sym__, + ACTIONS(7633), 1, + anon_sym_POUND, + STATE(3584), 1, + sym__static_type_identifier, + STATE(3596), 1, + sym_type, + STATE(3605), 1, + sym_type_argument, + STATE(3633), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3893), 7, + ACTIONS(7635), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4443), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 9, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2917), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [51800] = 22, + STATE(3640), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [62946] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6870), 1, + ACTIONS(3326), 1, sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(3782), 1, - sym_type_name, - STATE(4672), 1, - sym_long_identifier, - STATE(5285), 1, - sym_attributes, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5477), 1, - sym_access_modifier, - STATE(5587), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7637), 1, + anon_sym_LPAREN, + ACTIONS(7639), 1, + anon_sym__, + ACTIONS(7641), 1, + anon_sym_POUND, + STATE(932), 1, + sym_type, + STATE(991), 1, sym__static_type_identifier, - STATE(5742), 1, - sym__type_defn_body, - STATE(7734), 1, + STATE(1008), 1, sym_type_argument, + STATE(1014), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7643), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3894), 6, + STATE(4444), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5716), 7, - sym_type_extension, - sym_delegate_type_defn, - sym_type_abbrev_defn, - sym_record_type_defn, - sym_enum_type_defn, - sym_union_type_defn, - sym_anon_type_defn, - [51880] = 17, + STATE(1028), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63014] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4067), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3895), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4445), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [51950] = 17, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63082] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6412), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + ACTIONS(7530), 1, + anon_sym_LPAREN, + ACTIONS(7532), 1, + anon_sym__, + ACTIONS(7534), 1, + anon_sym_POUND, + STATE(3672), 1, + sym__static_type_identifier, + STATE(3800), 1, + sym_type_argument, + STATE(3913), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + STATE(4966), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3896), 6, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4446), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [52019] = 9, + STATE(3915), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63150] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3897), 6, + STATE(4447), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 9, + ACTIONS(3276), 9, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2917), 12, - anon_sym_and, + ACTIONS(3274), 11, anon_sym_with, anon_sym_new, anon_sym_default, @@ -409308,371 +456631,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [52072] = 10, + [63202] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6930), 1, - anon_sym_or, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7609), 1, + anon_sym_LPAREN, + ACTIONS(7611), 1, + anon_sym__, + ACTIONS(7613), 1, + anon_sym_POUND, + STATE(4929), 1, + sym__static_type_identifier, + STATE(4952), 1, + sym_type, + STATE(5062), 1, + sym_type_argument, + STATE(5092), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3898), 7, + ACTIONS(7615), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4448), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2917), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [52127] = 12, + STATE(5094), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63270] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3933), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4814), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6764), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(3899), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4449), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6766), 16, - anon_sym_module, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym__, - anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [52186] = 17, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63338] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(451), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3900), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4450), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [52255] = 17, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63406] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, + STATE(5670), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3901), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4451), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [52324] = 10, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63474] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6943), 1, - anon_sym_DOT, + ACTIONS(7514), 1, + anon_sym_LPAREN, + ACTIONS(7516), 1, + anon_sym__, + ACTIONS(7518), 1, + anon_sym_POUND, + STATE(440), 1, + sym_type, + STATE(3258), 1, + sym__static_type_identifier, + STATE(3400), 1, + sym_type_argument, + STATE(3437), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3902), 7, + ACTIONS(7520), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4452), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2900), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [52379] = 11, + STATE(3452), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63542] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6946), 1, - anon_sym_SEMI, - STATE(3905), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4069), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3903), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4453), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 9, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63610] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6862), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6864), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(6866), 1, + anon_sym_POUND, + ACTIONS(7414), 1, sym_identifier, - ACTIONS(6243), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [52436] = 17, + STATE(4286), 1, + sym__static_type_identifier, + STATE(4327), 1, + sym_type, + STATE(4759), 1, + sym_type_argument, + STATE(4893), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6868), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4454), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(4894), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63678] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, + STATE(5699), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3904), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4455), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [52505] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63746] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6946), 1, - anon_sym_SEMI, - STATE(3908), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3905), 6, + STATE(4456), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 9, + ACTIONS(3770), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -409682,60 +457070,59 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6237), 10, + ACTIONS(3772), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, + anon_sym_DASH_GT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [52562] = 18, + [63798] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(6866), 1, anon_sym_POUND, - STATE(392), 1, + ACTIONS(7414), 1, + sym_identifier, + STATE(4283), 1, sym_type, - STATE(2851), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(2932), 1, + STATE(4759), 1, sym_type_argument, - STATE(3024), 1, + STATE(4893), 1, sym_long_identifier, - STATE(6273), 1, - sym_object_construction, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3906), 6, + STATE(4457), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3005), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -409746,28 +457133,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [52633] = 9, + [63866] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3907), 6, + STATE(4458), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2900), 9, + ACTIONS(3766), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -409777,353 +457164,306 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(2902), 12, + ACTIONS(3768), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, - anon_sym_DOT, aux_sym_char_token1, anon_sym_AT_DQUOTE, anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [52686] = 10, + [63918] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6948), 1, - anon_sym_SEMI, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3908), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(6228), 9, + ACTIONS(6909), 1, anon_sym_LPAREN, - anon_sym_null, + ACTIONS(6911), 1, anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(6230), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [52741] = 21, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6840), 1, - anon_sym_y, - ACTIONS(6842), 1, - anon_sym_uy, - ACTIONS(6844), 1, - anon_sym_s, - ACTIONS(6846), 1, - anon_sym_us, - ACTIONS(6850), 1, - aux_sym_uint32_token1, - ACTIONS(6852), 1, - anon_sym_n, - ACTIONS(6854), 1, - anon_sym_un, - ACTIONS(6858), 1, - aux_sym_uint64_token1, - ACTIONS(6951), 1, - anon_sym_l, - ACTIONS(6953), 1, - anon_sym_L, - ACTIONS(6955), 1, - anon_sym_lf, - ACTIONS(6957), 1, - anon_sym_LF, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4750), 1, + sym_type, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3909), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4459), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [52818] = 11, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [63986] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6959), 1, - anon_sym_or, - STATE(3923), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5711), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3910), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4460), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2941), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [52875] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64054] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6961), 1, - anon_sym_or, - STATE(3898), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5797), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3911), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4461), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2941), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [52932] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64122] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6961), 1, - anon_sym_or, - STATE(3911), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3912), 6, + STATE(4462), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2924), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(3746), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [52989] = 17, + ACTIONS(3748), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [64174] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4039), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3913), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4463), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53058] = 18, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64242] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, + ACTIONS(3513), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(7645), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(7647), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(7649), 1, anon_sym_POUND, - STATE(394), 1, + STATE(1019), 1, sym_type, - STATE(2848), 1, + STATE(1256), 1, sym__static_type_identifier, - STATE(2936), 1, + STATE(1327), 1, sym_type_argument, - STATE(3007), 1, + STATE(1456), 1, sym_long_identifier, - STATE(5924), 1, - sym_object_construction, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(7651), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3914), 6, + STATE(4464), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(1305), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -410134,492 +457474,490 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [53129] = 17, + [64310] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, + STATE(5719), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3915), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4465), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53198] = 17, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64378] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7548), 1, sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, + ACTIONS(7550), 1, + anon_sym_LPAREN, + ACTIONS(7552), 1, + anon_sym__, + ACTIONS(7554), 1, + anon_sym_POUND, + STATE(4792), 1, + sym_type, + STATE(4851), 1, + sym__static_type_identifier, + STATE(4997), 1, + sym_type_argument, + STATE(5051), 1, sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(3916), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4466), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53267] = 17, + STATE(5052), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64446] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6346), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + ACTIONS(7578), 1, + anon_sym_LPAREN, + ACTIONS(7580), 1, + anon_sym__, + ACTIONS(7582), 1, + anon_sym_POUND, + STATE(3630), 1, + sym__static_type_identifier, + STATE(3704), 1, + sym_type_argument, + STATE(3774), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + STATE(4834), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3917), 6, + ACTIONS(7584), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4467), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53336] = 17, + STATE(3786), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64514] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4038), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3918), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4468), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2814), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53405] = 11, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64582] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6981), 1, - anon_sym_or, - STATE(3938), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5792), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3919), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4469), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2924), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [53462] = 16, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64650] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6983), 5, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_STAR, - STATE(3920), 6, + STATE(4470), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6985), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53529] = 12, + ACTIONS(3738), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3740), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [64702] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - anon_sym_DOT, - ACTIONS(6987), 1, - anon_sym_COLON, - STATE(4120), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5779), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3921), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4471), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2935), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [53588] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64770] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6959), 1, - anon_sym_or, - STATE(3910), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3922), 6, + STATE(4472), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2924), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(3734), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [53645] = 10, + ACTIONS(3736), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [64822] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3628), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6989), 1, - anon_sym_or, + ACTIONS(7586), 1, + anon_sym_LPAREN, + ACTIONS(7588), 1, + anon_sym__, + ACTIONS(7590), 1, + anon_sym_POUND, + STATE(1173), 1, + sym_type, + STATE(1401), 1, + sym__static_type_identifier, + STATE(1502), 1, + sym_long_identifier, + STATE(1508), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3923), 7, + ACTIONS(7592), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4473), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2917), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [53700] = 18, + STATE(1514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [64890] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6878), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3919), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3920), 1, - sym_type, - STATE(4364), 1, + STATE(5378), 1, sym_type_argument, - STATE(4472), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4710), 1, - sym_union_type_field, + STATE(5681), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3924), 6, + STATE(4474), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -410630,49 +457968,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [53771] = 18, + [64958] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(393), 1, - sym_type, - STATE(2848), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(2936), 1, + STATE(4774), 1, sym_type_argument, - STATE(3007), 1, + STATE(4865), 1, sym_long_identifier, - STATE(5924), 1, - sym_object_construction, + STATE(5518), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3925), 6, + STATE(4475), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -410683,288 +458019,296 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [53842] = 17, + [65026] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + ACTIONS(7653), 1, + anon_sym_LPAREN, + ACTIONS(7655), 1, + anon_sym__, + ACTIONS(7657), 1, + anon_sym_POUND, + STATE(3573), 1, + sym_type, + STATE(3582), 1, + sym__static_type_identifier, + STATE(3602), 1, + sym_type_argument, + STATE(3622), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6992), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3926), 6, + ACTIONS(7659), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4476), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6994), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53911] = 17, + STATE(3614), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65094] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + STATE(5766), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3927), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4477), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2850), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [53980] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65162] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5762), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3928), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4478), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 9, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3029), 12, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_or, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [54033] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65230] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6996), 1, - anon_sym_DOT, - STATE(3902), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4046), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3929), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4479), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2966), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [54090] = 17, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65298] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + STATE(5749), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6998), 4, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - STATE(3930), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4480), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7000), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54159] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65366] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6996), 1, + ACTIONS(7350), 1, anon_sym_DOT, - STATE(3929), 1, + STATE(4489), 1, aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3931), 6, + STATE(4481), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, + ACTIONS(3204), 8, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2935), 11, - anon_sym_and, + ACTIONS(3202), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -410975,575 +458319,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [54216] = 17, + [65422] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, + STATE(5760), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3932), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4482), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2810), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54285] = 11, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65490] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7002), 1, - anon_sym_LBRACK_LT, - STATE(4327), 1, - sym_attribute_set, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6505), 2, - anon_sym_let, + ACTIONS(6909), 1, anon_sym_LPAREN, - STATE(3933), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6510), 16, - anon_sym_module, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + ACTIONS(6911), 1, anon_sym__, - anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54342] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + STATE(5535), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7005), 5, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_STAR, - STATE(3934), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4483), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7007), 9, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54409] = 17, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65558] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5478), 1, + sym_type, + STATE(5501), 1, sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(3935), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4484), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2806), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54478] = 12, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65626] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6996), 1, - anon_sym_DOT, - STATE(3929), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4035), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3936), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4485), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2935), 10, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [54537] = 10, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65694] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7009), 1, - anon_sym_or, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4070), 1, + sym_type, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3937), 7, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4486), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 9, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2917), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [54592] = 11, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65762] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6981), 1, - anon_sym_or, - STATE(3937), 1, - aux_sym_type_argument_repeat1, + ACTIONS(7522), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym__, + ACTIONS(7526), 1, + anon_sym_POUND, + STATE(464), 1, + sym_type, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, + sym_type_argument, + STATE(3464), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3938), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4487), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 9, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2941), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [54649] = 16, + STATE(3479), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65830] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, + STATE(5131), 1, + sym_type, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4508), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3939), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4488), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 9, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [54716] = 9, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [65898] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7661), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3940), 6, + STATE(4489), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6228), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6230), 12, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [54769] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6901), 1, + anon_sym_STAR, anon_sym_LT2, - ACTIONS(6903), 1, anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4514), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(3941), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4516), 9, - anon_sym_and, + ACTIONS(3285), 10, anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [54836] = 9, + sym_identifier, + [65952] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4325), 1, + sym_type, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3942), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4490), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6455), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6457), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [54888] = 17, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [66020] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3285), 1, + STATE(468), 1, sym_type, - STATE(3399), 1, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, sym_type_argument, - STATE(3436), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3943), 6, + STATE(4491), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411554,47 +458822,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [54956] = 17, + [66088] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, + ACTIONS(3436), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(7664), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(7666), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(7668), 1, anon_sym_POUND, - STATE(2848), 1, - sym__static_type_identifier, - STATE(2857), 1, + STATE(992), 1, sym_type, - STATE(2936), 1, + STATE(1129), 1, + sym__static_type_identifier, + STATE(1257), 1, sym_type_argument, - STATE(3007), 1, + STATE(1269), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(7670), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3944), 6, + STATE(4492), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(1261), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411605,47 +458873,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55024] = 17, + [66156] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5216), 1, + STATE(5802), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3945), 6, + STATE(4493), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411656,47 +458924,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55092] = 17, + [66224] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(2851), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(2852), 1, - sym_type, - STATE(2932), 1, + STATE(2789), 1, sym_type_argument, - STATE(3024), 1, + STATE(2800), 1, + sym_type, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3946), 6, + STATE(4494), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3005), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411707,47 +458975,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55160] = 17, + [66292] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(3436), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7664), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(7666), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(7668), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(996), 1, + sym_type, + STATE(1129), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(1257), 1, sym_type_argument, - STATE(3413), 1, + STATE(1269), 1, sym_long_identifier, - STATE(4330), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7670), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3947), 6, + STATE(4495), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(1261), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411758,90 +459026,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55228] = 9, + [66360] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5765), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3948), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4496), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7028), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(7030), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [55280] = 17, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [66428] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(422), 1, - sym_type, - STATE(2898), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(3066), 1, + STATE(4311), 1, + sym_type, + STATE(4774), 1, sym_type_argument, - STATE(3080), 1, + STATE(4865), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3949), 6, + STATE(4497), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411852,90 +459128,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55348] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3950), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(7040), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(7042), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [55400] = 17, + [66496] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(417), 1, - sym_type, - STATE(2898), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(3066), 1, + STATE(4303), 1, + sym_type, + STATE(4774), 1, sym_type_argument, - STATE(3080), 1, + STATE(4865), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3951), 6, + STATE(4498), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411946,47 +459179,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55468] = 17, + [66564] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7526), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(469), 1, + sym_type, + STATE(3286), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3433), 1, sym_type_argument, - STATE(5199), 1, + STATE(3464), 1, sym_long_identifier, - STATE(5373), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3952), 6, + STATE(4499), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -411997,47 +459230,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55536] = 17, + [66632] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7044), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(7046), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(7048), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(1010), 1, - sym_type, - STATE(1221), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(1494), 1, + STATE(4760), 1, + sym_type, + STATE(4774), 1, sym_type_argument, - STATE(1495), 1, + STATE(4865), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7050), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3953), 6, + STATE(4500), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1492), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412048,47 +459281,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55604] = 17, + [66700] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3912), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4386), 1, + STATE(5378), 1, sym_type_argument, - STATE(4428), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4686), 1, + STATE(5629), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3954), 6, + STATE(4501), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412099,143 +459332,107 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55672] = 11, + [66768] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7052), 1, - anon_sym_DOT, - STATE(4308), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3955), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2937), 8, - sym__newline, - sym__dedent, + ACTIONS(25), 1, anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2935), 10, - anon_sym_with, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, + ACTIONS(7294), 1, anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - sym_identifier, - [55728] = 17, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5274), 1, - sym_type, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7293), 1, + sym__type_defn_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3956), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4502), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [55796] = 17, + [66854] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7526), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, + STATE(461), 1, + sym_type, + STATE(3286), 1, sym__static_type_identifier, - STATE(4364), 1, + STATE(3433), 1, sym_type_argument, - STATE(4421), 1, - sym_type, - STATE(4472), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3957), 6, + STATE(4503), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412246,47 +459443,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55864] = 17, + [66922] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2907), 1, + ACTIONS(4967), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7054), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(7056), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(7058), 1, + ACTIONS(6856), 1, anon_sym_POUND, - STATE(829), 1, - sym_type, - STATE(862), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(877), 1, - sym_long_identifier, - STATE(878), 1, + STATE(2831), 1, sym_type_argument, + STATE(2844), 1, + sym_type, + STATE(2855), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7060), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3958), 6, + STATE(4504), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(879), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412297,47 +459494,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [55932] = 17, + [66990] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3436), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7664), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7666), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7668), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(968), 1, + sym_type, + STATE(1129), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1257), 1, sym_type_argument, - STATE(5199), 1, + STATE(1269), 1, sym_long_identifier, - STATE(5312), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7670), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3959), 6, + STATE(4505), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1261), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412348,98 +459545,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56000] = 17, + [67058] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5322), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(3960), 6, + STATE(4506), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [56068] = 17, + ACTIONS(3244), 9, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3242), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [67110] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3628), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(7586), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7588), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7590), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4364), 1, - sym_type_argument, - STATE(4417), 1, + STATE(1180), 1, sym_type, - STATE(4472), 1, + STATE(1401), 1, + sym__static_type_identifier, + STATE(1502), 1, sym_long_identifier, + STATE(1508), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3961), 6, + STATE(4507), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(1514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412450,47 +459639,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56136] = 17, + [67178] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(2848), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(2858), 1, - sym_type, - STATE(2936), 1, + STATE(4774), 1, sym_type_argument, - STATE(3007), 1, + STATE(4865), 1, sym_long_identifier, + STATE(5552), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3962), 6, + STATE(4508), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412501,47 +459690,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56204] = 17, + [67246] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(2845), 1, + STATE(460), 1, sym_type, - STATE(2851), 1, + STATE(3286), 1, sym__static_type_identifier, - STATE(2932), 1, + STATE(3433), 1, sym_type_argument, - STATE(3024), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3963), 6, + STATE(4509), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3005), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412552,47 +459741,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56272] = 17, + [67314] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2848), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2859), 1, - sym_type, - STATE(2936), 1, + STATE(5378), 1, sym_type_argument, - STATE(3007), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5709), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3964), 6, + STATE(4510), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412603,47 +459792,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56340] = 17, + [67382] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2854), 1, - sym_type, - STATE(2932), 1, + STATE(5378), 1, sym_type_argument, - STATE(3024), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5741), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3965), 6, + STATE(4511), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3005), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412654,92 +459843,91 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56408] = 11, + [67450] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - anon_sym_DOT, - STATE(4120), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7672), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3966), 6, + STATE(4512), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2935), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + aux_sym_record_pattern_repeat1, + ACTIONS(6771), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [56464] = 17, + ACTIONS(6773), 9, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [67504] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5092), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6149), 1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(7530), 1, anon_sym_LPAREN, - ACTIONS(6151), 1, + ACTIONS(7532), 1, anon_sym__, - ACTIONS(6153), 1, + ACTIONS(7534), 1, anon_sym_POUND, - STATE(2851), 1, + STATE(3672), 1, sym__static_type_identifier, - STATE(2855), 1, + STATE(3679), 1, sym_type, - STATE(2932), 1, + STATE(3800), 1, sym_type_argument, - STATE(3024), 1, + STATE(3913), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, + ACTIONS(7536), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3967), 6, + STATE(4513), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3005), 10, + STATE(3915), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412750,47 +459938,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56532] = 17, + [67572] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7586), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(7588), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(7590), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(1067), 1, + sym_type, + STATE(1401), 1, sym__static_type_identifier, - STATE(3313), 1, - sym_type_argument, - STATE(3413), 1, + STATE(1502), 1, sym_long_identifier, - STATE(4536), 1, - sym_type, + STATE(1508), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3968), 6, + STATE(4514), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(1514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412801,47 +459989,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56600] = 17, + [67640] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7064), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7066), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7068), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(4548), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(4553), 1, - sym_type, - STATE(4619), 1, + STATE(5378), 1, sym_type_argument, - STATE(4714), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5738), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3969), 6, + STATE(4515), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412852,47 +460040,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56668] = 17, + [67708] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5336), 1, + STATE(5812), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3970), 6, + STATE(4516), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412903,47 +460091,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56736] = 17, + [67776] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6920), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3919), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4364), 1, + STATE(5378), 1, sym_type_argument, - STATE(4408), 1, - sym_type, - STATE(4472), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5771), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3971), 6, + STATE(4517), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -412954,47 +460142,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56804] = 17, + [67844] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(3264), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(5378), 1, sym_type_argument, - STATE(3413), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4603), 1, + STATE(5697), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3972), 6, + STATE(4518), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413005,47 +460193,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56872] = 17, + [67912] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4967), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6856), 1, anon_sym_POUND, - STATE(2364), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(2762), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(2483), 1, + STATE(2855), 1, sym_long_identifier, - STATE(2578), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3973), 6, + STATE(4519), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413056,47 +460244,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [56940] = 17, + [67980] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6856), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(2822), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(5199), 1, + STATE(2855), 1, sym_long_identifier, - STATE(5356), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3974), 6, + STATE(4520), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413107,47 +460295,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57008] = 17, + [68048] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7064), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7066), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7068), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(4548), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(4562), 1, - sym_type, - STATE(4619), 1, + STATE(5378), 1, sym_type_argument, - STATE(4714), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5706), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3975), 6, + STATE(4521), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413158,47 +460346,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57076] = 17, + [68116] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5371), 1, + STATE(5621), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3976), 6, + STATE(4522), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413209,47 +460397,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57144] = 17, + [68184] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(6856), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(4364), 1, + STATE(2739), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(4472), 1, + STATE(2855), 1, sym_long_identifier, - STATE(4851), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3977), 6, + STATE(4523), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413260,90 +460448,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57212] = 9, + [68252] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4320), 1, + sym_type, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(3978), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4524), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2917), 11, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_or, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [57264] = 17, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [68320] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5213), 1, + STATE(5703), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3979), 6, + STATE(4525), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413354,47 +460550,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57332] = 17, + [68388] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4364), 1, + STATE(3704), 1, sym_type_argument, - STATE(4400), 1, - sym_type, - STATE(4472), 1, + STATE(3774), 1, sym_long_identifier, + STATE(4959), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3980), 6, + STATE(4526), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413405,47 +460601,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57400] = 17, + [68456] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3367), 1, + STATE(449), 1, sym_type, - STATE(3399), 1, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, sym_type_argument, - STATE(3436), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3981), 6, + STATE(4527), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413456,47 +460652,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57468] = 17, + [68524] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4752), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(6836), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(4364), 1, - sym_type_argument, - STATE(4395), 1, + STATE(2106), 1, sym_type, - STATE(4472), 1, + STATE(2789), 1, + sym_type_argument, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3982), 6, + STATE(4528), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413507,47 +460703,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57536] = 17, + [68592] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(2364), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(2371), 1, + STATE(2102), 1, sym_type, - STATE(2427), 1, + STATE(2789), 1, sym_type_argument, - STATE(2483), 1, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3983), 6, + STATE(4529), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413558,47 +460754,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57604] = 17, + [68660] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(2356), 1, - sym_type, - STATE(2364), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(2101), 1, + sym_type, + STATE(2789), 1, sym_type_argument, - STATE(2483), 1, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3984), 6, + STATE(4530), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413609,47 +460805,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57672] = 17, + [68728] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4967), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6856), 1, anon_sym_POUND, - STATE(2357), 1, - sym_type, - STATE(2364), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(2825), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(2483), 1, + STATE(2855), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3985), 6, + STATE(4531), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413660,47 +460856,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57740] = 17, + [68796] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(2359), 1, + STATE(2052), 1, sym_type, - STATE(2364), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(2789), 1, sym_type_argument, - STATE(2483), 1, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3986), 6, + STATE(4532), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413711,90 +460907,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57808] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(3987), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3031), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3029), 11, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_or, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [57860] = 17, + [68864] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3115), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7072), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7074), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7076), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(922), 1, - sym_type, - STATE(1020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(1128), 1, - sym_long_identifier, - STATE(1129), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5790), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7078), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3988), 6, + STATE(4533), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1130), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413805,47 +460958,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57928] = 17, + [68932] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5101), 1, + ACTIONS(3436), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6973), 1, + ACTIONS(7664), 1, anon_sym_LPAREN, - ACTIONS(6975), 1, + ACTIONS(7666), 1, anon_sym__, - ACTIONS(6977), 1, + ACTIONS(7668), 1, anon_sym_POUND, - STATE(2848), 1, - sym__static_type_identifier, - STATE(2850), 1, + STATE(961), 1, sym_type, - STATE(2936), 1, + STATE(1129), 1, + sym__static_type_identifier, + STATE(1257), 1, sym_type_argument, - STATE(3007), 1, + STATE(1269), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, + ACTIONS(7670), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3989), 6, + STATE(4534), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3010), 10, + STATE(1261), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413856,47 +461009,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [57996] = 17, + [69000] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7675), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7677), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7679), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1057), 1, + sym_type, + STATE(1432), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1471), 1, sym_type_argument, - STATE(5199), 1, + STATE(1472), 1, sym_long_identifier, - STATE(5217), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7681), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3990), 6, + STATE(4535), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1469), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413907,47 +461060,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58064] = 17, + [69068] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(6328), 1, + ACTIONS(6856), 1, anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3672), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(3698), 1, + STATE(2673), 1, sym_type, - STATE(3798), 1, + STATE(2831), 1, sym_type_argument, - STATE(3802), 1, + STATE(2855), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3991), 6, + STATE(4536), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -413958,47 +461111,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58132] = 17, + [69136] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(4967), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(6856), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(2531), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(3413), 1, + STATE(2855), 1, sym_long_identifier, - STATE(4495), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3992), 6, + STATE(4537), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414009,47 +461162,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58200] = 17, + [69204] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7675), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7677), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7679), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1045), 1, + sym_type, + STATE(1432), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1471), 1, sym_type_argument, - STATE(5199), 1, + STATE(1472), 1, sym_long_identifier, - STATE(5393), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7681), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3993), 6, + STATE(4538), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1469), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414060,47 +461213,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58268] = 17, + [69272] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(4814), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4299), 1, + sym_type, + STATE(4769), 1, sym_type_argument, - STATE(5199), 1, + STATE(4888), 1, sym_long_identifier, - STATE(5341), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3994), 6, + STATE(4539), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414111,47 +461264,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58336] = 17, + [69340] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7683), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7685), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7687), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1124), 1, + sym_type, + STATE(1452), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + STATE(1551), 1, sym_long_identifier, - STATE(5309), 1, - sym_type, + STATE(1632), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7689), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3995), 6, + STATE(4540), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1664), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414162,47 +461315,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58404] = 17, + [69408] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3704), 1, sym_type_argument, - STATE(5199), 1, + STATE(3774), 1, sym_long_identifier, - STATE(5307), 1, + STATE(4941), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3996), 6, + STATE(4541), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414213,107 +461366,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58472] = 26, + [69476] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(7137), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(3997), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [58558] = 17, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5352), 1, + STATE(5752), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3998), 6, + STATE(4542), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414324,47 +461417,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58626] = 17, + [69544] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, + ACTIONS(4967), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(6856), 1, anon_sym_POUND, - STATE(405), 1, - sym_type, - STATE(2898), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(3066), 1, + STATE(2829), 1, + sym_type, + STATE(2831), 1, sym_type_argument, - STATE(3080), 1, + STATE(2855), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(3999), 6, + STATE(4543), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414375,47 +461468,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58694] = 17, + [69612] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7691), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7693), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7695), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1132), 1, + sym_type, + STATE(1352), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1536), 1, sym_type_argument, - STATE(5199), 1, + STATE(1622), 1, sym_long_identifier, - STATE(5222), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7697), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4000), 6, + STATE(4544), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1544), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414426,47 +461519,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58762] = 17, + [69680] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7691), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7693), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7695), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1131), 1, + sym_type, + STATE(1352), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1536), 1, sym_type_argument, - STATE(5199), 1, + STATE(1622), 1, sym_long_identifier, - STATE(5245), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7697), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4001), 6, + STATE(4545), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1544), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414477,28 +461570,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58830] = 9, + [69748] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4002), 6, + STATE(4546), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7080), 9, + ACTIONS(3722), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -414508,7 +461601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(7082), 11, + ACTIONS(3724), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -414520,47 +461613,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [58882] = 17, + [69800] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7675), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7677), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7679), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1102), 1, + sym_type, + STATE(1432), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1471), 1, sym_type_argument, - STATE(5199), 1, + STATE(1472), 1, sym_long_identifier, - STATE(5291), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7681), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4003), 6, + STATE(4547), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1469), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414571,47 +461664,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [58950] = 17, + [69868] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(4752), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6836), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(2786), 1, + sym_type, + STATE(2789), 1, sym_type_argument, - STATE(5199), 1, + STATE(2839), 1, sym_long_identifier, - STATE(5270), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4004), 6, + STATE(4548), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414622,47 +461715,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59018] = 17, + [69936] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(4814), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4769), 1, sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5363), 1, + STATE(4806), 1, sym_type, + STATE(4888), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4005), 6, + STATE(4549), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414673,47 +461766,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59086] = 17, + [70004] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7691), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7693), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7695), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1100), 1, + sym_type, + STATE(1352), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1536), 1, sym_type_argument, - STATE(5199), 1, + STATE(1622), 1, sym_long_identifier, - STATE(5394), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7697), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4006), 6, + STATE(4550), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1544), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414724,47 +461817,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59154] = 17, + [70072] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(7685), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(7687), 1, anon_sym_POUND, - STATE(411), 1, + STATE(1123), 1, sym_type, - STATE(2898), 1, + STATE(1452), 1, sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + STATE(1551), 1, sym_long_identifier, + STATE(1632), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(7689), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4007), 6, + STATE(4551), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(1664), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414775,47 +461868,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59222] = 17, + [70140] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6852), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6854), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6856), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(2348), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(2831), 1, sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5375), 1, + STATE(2840), 1, sym_type, + STATE(2855), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6858), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4008), 6, + STATE(4552), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(2851), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414826,47 +461919,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59290] = 17, + [70208] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3632), 1, + sym_type, + STATE(3704), 1, sym_type_argument, - STATE(5199), 1, + STATE(3774), 1, sym_long_identifier, - STATE(5366), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4009), 6, + STATE(4553), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414877,47 +461970,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59358] = 17, + [70276] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(4814), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4321), 1, + sym_type, + STATE(4769), 1, sym_type_argument, - STATE(5199), 1, + STATE(4888), 1, sym_long_identifier, - STATE(5335), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4010), 6, + STATE(4554), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414928,47 +462021,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59426] = 17, + [70344] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7526), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(472), 1, + sym_type, + STATE(3286), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3433), 1, sym_type_argument, - STATE(5199), 1, + STATE(3464), 1, sym_long_identifier, - STATE(5301), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4011), 6, + STATE(4555), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -414979,47 +462072,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59494] = 17, + [70412] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5128), 1, + STATE(3646), 1, sym_type, - STATE(5199), 1, + STATE(3704), 1, + sym_type_argument, + STATE(3774), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4012), 6, + STATE(4556), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415030,47 +462123,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59562] = 17, + [70480] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3556), 1, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7084), 1, + ACTIONS(7506), 1, anon_sym_LPAREN, - ACTIONS(7086), 1, + ACTIONS(7508), 1, anon_sym__, - ACTIONS(7088), 1, + ACTIONS(7510), 1, anon_sym_POUND, - STATE(1090), 1, + STATE(964), 1, sym_type, - STATE(1253), 1, + STATE(1088), 1, sym__static_type_identifier, - STATE(1464), 1, + STATE(1254), 1, sym_long_identifier, - STATE(1467), 1, + STATE(1268), 1, sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, + ACTIONS(7512), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4013), 6, + STATE(4557), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1468), 10, + STATE(1231), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415081,47 +462174,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59630] = 17, + [70548] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7683), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7685), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7687), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1099), 1, + sym_type, + STATE(1452), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + STATE(1551), 1, sym_long_identifier, - STATE(5258), 1, - sym_type, + STATE(1632), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7689), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4014), 6, + STATE(4558), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1664), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415132,47 +462225,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59698] = 17, + [70616] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7514), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7516), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7518), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3238), 1, + sym_type, + STATE(3258), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3400), 1, sym_type_argument, - STATE(5199), 1, + STATE(3437), 1, sym_long_identifier, - STATE(5244), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7520), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4015), 6, + STATE(4559), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3452), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415183,47 +462276,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59766] = 17, + [70684] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3431), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7506), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7508), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7510), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1002), 1, + sym_type, + STATE(1088), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + STATE(1254), 1, sym_long_identifier, - STATE(5346), 1, - sym_type, + STATE(1268), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7512), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4016), 6, + STATE(4560), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1231), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415234,98 +462327,140 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59834] = 17, + [70752] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4561), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3693), 9, anon_sym_LPAREN, - ACTIONS(5306), 1, + anon_sym_null, anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3695), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [70804] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, - STATE(5364), 1, - sym_type, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4017), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4979), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4562), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [59902] = 17, + ACTIONS(4981), 8, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [70870] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3616), 1, + sym_type, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3704), 1, sym_type_argument, - STATE(5199), 1, + STATE(3774), 1, sym_long_identifier, - STATE(5277), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4018), 6, + STATE(4563), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415336,47 +462471,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [59970] = 17, + [70938] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(4814), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4769), 1, sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5300), 1, + STATE(4801), 1, sym_type, + STATE(4888), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4019), 6, + STATE(4564), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415387,98 +462522,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60038] = 17, + [71006] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5357), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4020), 6, + STATE(4565), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [60106] = 17, + ACTIONS(3660), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3662), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [71058] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3631), 1, + sym_type, + STATE(3704), 1, sym_type_argument, - STATE(5199), 1, + STATE(3774), 1, sym_long_identifier, - STATE(5221), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4021), 6, + STATE(4566), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415489,47 +462616,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60174] = 17, + [71126] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6866), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(4814), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4740), 1, + sym_type, + STATE(4759), 1, sym_type_argument, - STATE(5199), 1, + STATE(4893), 1, sym_long_identifier, - STATE(5246), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4022), 6, + STATE(4567), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415540,47 +462667,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60242] = 17, + [71194] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7701), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7703), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7705), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(4904), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4919), 1, + sym_type, + STATE(5074), 1, sym_type_argument, - STATE(5199), 1, + STATE(5075), 1, sym_long_identifier, - STATE(5252), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7707), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4023), 6, + STATE(4568), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5076), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415591,47 +462718,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60310] = 17, + [71262] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7609), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7611), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7613), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(4917), 1, + sym_type, + STATE(4929), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5062), 1, sym_type_argument, - STATE(5199), 1, + STATE(5092), 1, sym_long_identifier, - STATE(5379), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7615), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4024), 6, + STATE(4569), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5094), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415642,47 +462769,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60378] = 17, + [71330] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(5971), 1, anon_sym_POUND, - STATE(2364), 1, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, sym__static_type_identifier, - STATE(2427), 1, - sym_type_argument, - STATE(2463), 1, + STATE(4304), 1, sym_type, - STATE(2483), 1, + STATE(4769), 1, + sym_type_argument, + STATE(4888), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4025), 6, + STATE(4570), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415693,98 +462820,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60446] = 17, + [71398] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5302), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4026), 6, + STATE(4571), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [60514] = 17, + ACTIONS(3656), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3658), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [71450] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7709), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7711), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7713), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1003), 1, + sym_type, + STATE(1232), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1378), 1, sym_type_argument, - STATE(5199), 1, + STATE(1381), 1, sym_long_identifier, - STATE(5330), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7715), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4027), 6, + STATE(4572), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1351), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415795,47 +462914,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60582] = 17, + [71518] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7709), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7711), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7713), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1030), 1, + sym_type, + STATE(1232), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1378), 1, sym_type_argument, - STATE(5199), 1, + STATE(1381), 1, sym_long_identifier, - STATE(5331), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7715), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4028), 6, + STATE(4573), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1351), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415846,47 +462965,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60650] = 17, + [71586] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7709), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7711), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7713), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1035), 1, + sym_type, + STATE(1232), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1378), 1, sym_type_argument, - STATE(5199), 1, + STATE(1381), 1, sym_long_identifier, - STATE(5276), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7715), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4029), 6, + STATE(4574), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1351), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415897,47 +463016,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60718] = 17, + [71654] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(6920), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(3919), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4364), 1, + STATE(4322), 1, + sym_type, + STATE(4769), 1, sym_type_argument, - STATE(4472), 1, + STATE(4888), 1, sym_long_identifier, - STATE(5271), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4030), 6, + STATE(4575), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -415948,149 +463067,134 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60786] = 17, + [71722] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5660), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, - anon_sym_LPAREN, - ACTIONS(7094), 1, - anon_sym__, - ACTIONS(7096), 1, - anon_sym_POUND, - STATE(396), 1, - sym_type, - STATE(2878), 1, - sym__static_type_identifier, - STATE(2998), 1, - sym_type_argument, - STATE(3072), 1, - sym_long_identifier, + ACTIONS(7717), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4031), 6, + STATE(4576), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [60854] = 17, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(5658), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [71776] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, - sym__static_type_identifier, - STATE(3930), 1, - sym_type, - STATE(4364), 1, - sym_type_argument, - STATE(4472), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4032), 6, + STATE(4577), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [60922] = 17, + ACTIONS(3802), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3804), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [71828] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5573), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7453), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7455), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3223), 1, + sym_type, + STATE(3228), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3293), 1, sym_type_argument, - STATE(5199), 1, + STATE(3384), 1, sym_long_identifier, - STATE(5304), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7457), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4033), 6, + STATE(4578), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3363), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416101,133 +463205,188 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [60990] = 9, + [71896] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5674), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7720), 1, + anon_sym_and, + STATE(4576), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4034), 6, + STATE(4579), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 9, - sym__dedent, + ACTIONS(5672), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [71952] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, anon_sym_DASH_GT, + ACTIONS(7378), 1, anon_sym_STAR, + ACTIONS(7380), 1, anon_sym_LT2, + ACTIONS(7382), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(2917), 11, - anon_sym_with, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5077), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4580), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5079), 8, + anon_sym_and, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [61042] = 9, + [72020] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5651), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7720), 1, + anon_sym_and, + STATE(4579), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4035), 6, + STATE(4581), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 9, - sym__dedent, + ACTIONS(5649), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3029), 11, - anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [61094] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [72076] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7701), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(7703), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(7705), 1, anon_sym_POUND, - STATE(2364), 1, + STATE(4904), 1, sym__static_type_identifier, - STATE(2427), 1, - sym_type_argument, - STATE(2438), 1, + STATE(4913), 1, sym_type, - STATE(2483), 1, + STATE(5074), 1, + sym_type_argument, + STATE(5075), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(7707), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4036), 6, + STATE(4582), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(5076), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416238,47 +463397,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61162] = 17, + [72144] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7701), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7703), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7705), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(4904), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4914), 1, + sym_type, + STATE(5074), 1, sym_type_argument, - STATE(5199), 1, + STATE(5075), 1, sym_long_identifier, - STATE(5440), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7707), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4037), 6, + STATE(4583), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5076), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416289,107 +463448,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61230] = 26, + [72212] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(7224), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym__, + ACTIONS(6913), 1, + anon_sym_POUND, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, + sym__static_type_identifier, + STATE(4774), 1, + sym_type_argument, + STATE(4865), 1, + sym_long_identifier, + STATE(5597), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4038), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4584), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [61316] = 17, + STATE(4866), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [72280] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(4814), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4769), 1, sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5215), 1, + STATE(4846), 1, sym_type, + STATE(4888), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4039), 6, + STATE(4585), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416400,47 +463550,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61384] = 17, + [72348] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7701), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7703), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7705), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(4904), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5058), 1, + STATE(4918), 1, sym_type, - STATE(5199), 1, + STATE(5074), 1, + sym_type_argument, + STATE(5075), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7707), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4040), 6, + STATE(4586), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5076), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416451,47 +463601,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61452] = 17, + [72416] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5299), 1, + STATE(5777), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4041), 6, + STATE(4587), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416502,47 +463652,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61520] = 17, + [72484] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5573), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7453), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7455), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3228), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3229), 1, + sym_type, + STATE(3293), 1, sym_type_argument, - STATE(5199), 1, + STATE(3384), 1, sym_long_identifier, - STATE(5334), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7457), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4042), 6, + STATE(4588), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3363), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416553,47 +463703,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61588] = 17, + [72552] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5315), 1, + STATE(5674), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4043), 6, + STATE(4589), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416604,47 +463754,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61656] = 17, + [72620] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5688), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7526), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, - sym__static_type_identifier, - STATE(3926), 1, + STATE(456), 1, sym_type, - STATE(4364), 1, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, sym_type_argument, - STATE(4472), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4044), 6, + STATE(4590), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416655,47 +463805,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61724] = 17, + [72688] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2364), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(5378), 1, sym_type_argument, - STATE(2466), 1, - sym_type, - STATE(2483), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5758), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4045), 6, + STATE(4591), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416706,107 +463856,149 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61792] = 26, + [72756] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(7371), 1, - sym_access_modifier, - STATE(7479), 1, - sym__type_defn_elements, - STATE(7485), 1, - sym__member_defns, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5734), 1, + sym_type, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4592), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [72824] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4046), 6, + ACTIONS(5129), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4593), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [61878] = 17, + ACTIONS(5131), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [72892] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5461), 1, + STATE(5733), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4047), 6, + STATE(4594), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416817,47 +464009,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [61946] = 17, + [72960] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5239), 1, + STATE(5628), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4048), 6, + STATE(4595), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416868,47 +464060,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62014] = 17, + [73028] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6866), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(4814), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4739), 1, + sym_type, + STATE(4759), 1, sym_type_argument, - STATE(5199), 1, + STATE(4893), 1, sym_long_identifier, - STATE(5286), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4049), 6, + STATE(4596), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416919,47 +464111,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62082] = 17, + [73096] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7633), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3583), 1, + sym_type, + STATE(3584), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3605), 1, sym_type_argument, - STATE(5045), 1, - sym_type, - STATE(5199), 1, + STATE(3633), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4050), 6, + STATE(4597), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -416970,98 +464162,92 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62150] = 17, + [73164] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5564), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7054), 1, - anon_sym_LPAREN, - ACTIONS(7056), 1, - anon_sym__, - ACTIONS(7058), 1, - anon_sym_POUND, - STATE(824), 1, - sym_type, - STATE(862), 1, - sym__static_type_identifier, - STATE(877), 1, - sym_long_identifier, - STATE(878), 1, - sym_type_argument, + STATE(4645), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4793), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7060), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4051), 6, + STATE(4598), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(879), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [62218] = 17, + ACTIONS(5562), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [73220] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2907), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7054), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(7056), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(7058), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(830), 1, - sym_type, - STATE(862), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(877), 1, - sym_long_identifier, - STATE(878), 1, + STATE(2789), 1, sym_type_argument, + STATE(2839), 1, + sym_long_identifier, + STATE(2890), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7060), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4052), 6, + STATE(4599), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(879), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417072,47 +464258,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62286] = 17, + [73288] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5333), 1, + STATE(5665), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4053), 6, + STATE(4600), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417123,47 +464309,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62354] = 17, + [73356] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3853), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7562), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7564), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7566), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1080), 1, + sym_type, + STATE(1416), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + STATE(1629), 1, sym_long_identifier, - STATE(5211), 1, - sym_type, + STATE(1630), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7568), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4054), 6, + STATE(4601), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1633), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417174,47 +464360,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62422] = 17, + [73424] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6866), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(4814), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(4737), 1, + sym_type, + STATE(4759), 1, sym_type_argument, - STATE(5199), 1, + STATE(4893), 1, sym_long_identifier, - STATE(5240), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4055), 6, + STATE(4602), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417225,47 +464411,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62490] = 17, + [73492] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(7094), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(7096), 1, + ACTIONS(6937), 1, anon_sym_POUND, - STATE(395), 1, + ACTIONS(7374), 1, + sym_identifier, + STATE(4257), 1, sym_type, - STATE(2878), 1, + STATE(4279), 1, sym__static_type_identifier, - STATE(2998), 1, + STATE(4388), 1, sym_type_argument, - STATE(3072), 1, + STATE(4784), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, + ACTIONS(6939), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4056), 6, + STATE(4603), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, + STATE(4785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417276,47 +464462,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62558] = 17, + [73560] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(6937), 1, anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(7374), 1, sym_identifier, - STATE(3922), 1, + STATE(4241), 1, + sym_type, + STATE(4279), 1, sym__static_type_identifier, - STATE(4374), 1, + STATE(4388), 1, sym_type_argument, - STATE(4441), 1, + STATE(4784), 1, sym_long_identifier, - STATE(5041), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(6939), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4057), 6, + STATE(4604), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(4785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417327,47 +464513,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62626] = 17, + [73628] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7633), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3584), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3586), 1, + sym_type, + STATE(3605), 1, sym_type_argument, - STATE(5199), 1, + STATE(3633), 1, sym_long_identifier, - STATE(5377), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4058), 6, + STATE(4605), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417378,47 +464564,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62694] = 17, + [73696] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2907), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7054), 1, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(7056), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(7058), 1, + ACTIONS(6866), 1, anon_sym_POUND, - STATE(821), 1, - sym_type, - STATE(862), 1, + ACTIONS(7414), 1, + sym_identifier, + STATE(4286), 1, sym__static_type_identifier, - STATE(877), 1, - sym_long_identifier, - STATE(878), 1, + STATE(4735), 1, + sym_type, + STATE(4759), 1, sym_type_argument, + STATE(4893), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7060), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4059), 6, + STATE(4606), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(879), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417429,47 +464615,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62762] = 17, + [73764] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(6937), 1, anon_sym_POUND, - ACTIONS(6895), 1, + ACTIONS(7374), 1, sym_identifier, - STATE(3858), 1, + STATE(4240), 1, + sym_type, + STATE(4279), 1, sym__static_type_identifier, - STATE(4087), 1, + STATE(4388), 1, sym_type_argument, - STATE(4340), 1, + STATE(4784), 1, sym_long_identifier, - STATE(4665), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, + ACTIONS(6939), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4060), 6, + STATE(4607), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, + STATE(4785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417480,47 +464666,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62830] = 17, + [73832] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(2364), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(2789), 1, sym_type_argument, - STATE(2444), 1, + STATE(2806), 1, sym_type, - STATE(2483), 1, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4061), 6, + STATE(4608), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417531,47 +464717,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62898] = 17, + [73900] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(7104), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(7106), 1, + ACTIONS(5971), 1, anon_sym_POUND, - STATE(4463), 1, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, sym__static_type_identifier, - STATE(4566), 1, + STATE(4323), 1, sym_type, - STATE(4607), 1, + STATE(4769), 1, sym_type_argument, - STATE(4642), 1, + STATE(4888), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4062), 6, + STATE(4609), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417582,47 +464768,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [62966] = 17, + [73968] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, + ACTIONS(6933), 1, anon_sym_LPAREN, - ACTIONS(7114), 1, + ACTIONS(6935), 1, anon_sym__, - ACTIONS(7116), 1, + ACTIONS(6937), 1, anon_sym_POUND, - STATE(4337), 1, + ACTIONS(7374), 1, + sym_identifier, + STATE(4272), 1, sym_type, - STATE(4501), 1, + STATE(4279), 1, sym__static_type_identifier, - STATE(4612), 1, + STATE(4388), 1, sym_type_argument, - STATE(4631), 1, + STATE(4784), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, + ACTIONS(6939), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4063), 6, + STATE(4610), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4630), 10, + STATE(4785), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417633,107 +464819,144 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63034] = 26, + [74036] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(4707), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4611), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3259), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3257), 10, + anon_sym_and, + anon_sym_with, anon_sym_new, - ACTIONS(6800), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6802), 1, anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, anon_sym_abstract, - ACTIONS(6808), 1, + anon_sym_override, anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - STATE(7788), 1, - sym__type_defn_elements, + sym_identifier, + [74094] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4064), 6, + ACTIONS(5073), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4612), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [63120] = 17, + ACTIONS(5075), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [74162] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3008), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7617), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7619), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7621), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(907), 1, sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + STATE(935), 1, sym_long_identifier, - STATE(5311), 1, + STATE(936), 1, + sym_type_argument, + STATE(1264), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7623), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4065), 6, + STATE(4613), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(934), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417744,47 +464967,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63188] = 17, + [74230] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(6866), 1, anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(3922), 1, + STATE(4286), 1, sym__static_type_identifier, - STATE(4362), 1, + STATE(4734), 1, sym_type, - STATE(4374), 1, + STATE(4759), 1, sym_type_argument, - STATE(4441), 1, + STATE(4893), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4066), 6, + STATE(4614), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417795,98 +465018,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63256] = 17, + [74298] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5241), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4067), 6, + STATE(4615), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [63324] = 17, + ACTIONS(3616), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3618), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [74350] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6656), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6658), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3232), 1, + sym_type, + STATE(3235), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3313), 1, sym_type_argument, - STATE(5199), 1, + STATE(3346), 1, sym_long_identifier, - STATE(5351), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6660), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4068), 6, + STATE(4616), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3402), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417897,47 +465112,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63392] = 17, + [74418] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5585), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6656), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6658), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3233), 1, + sym_type, + STATE(3235), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3313), 1, sym_type_argument, - STATE(5199), 1, + STATE(3346), 1, sym_long_identifier, - STATE(5354), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6660), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4069), 6, + STATE(4617), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3402), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417948,47 +465163,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63460] = 17, + [74486] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3513), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(7645), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(7647), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(7649), 1, anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3922), 1, + STATE(1020), 1, + sym_type, + STATE(1256), 1, sym__static_type_identifier, - STATE(4374), 1, + STATE(1327), 1, sym_type_argument, - STATE(4441), 1, + STATE(1456), 1, sym_long_identifier, - STATE(5032), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(7651), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4070), 6, + STATE(4618), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(1305), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -417999,47 +465214,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63528] = 17, + [74554] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(3922), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4359), 1, - sym_type, - STATE(4374), 1, + STATE(4769), 1, sym_type_argument, - STATE(4441), 1, + STATE(4888), 1, sym_long_identifier, + STATE(5290), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4071), 6, + STATE(4619), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418050,47 +465265,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63596] = 17, + [74622] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4386), 1, + ACTIONS(5585), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6370), 1, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(6372), 1, + ACTIONS(6656), 1, anon_sym__, - ACTIONS(6374), 1, + ACTIONS(6658), 1, anon_sym_POUND, - STATE(2364), 1, + STATE(3234), 1, + sym_type, + STATE(3235), 1, sym__static_type_identifier, - STATE(2427), 1, + STATE(3313), 1, sym_type_argument, - STATE(2454), 1, - sym_type, - STATE(2483), 1, + STATE(3346), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, + ACTIONS(6660), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4072), 6, + STATE(4620), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2490), 10, + STATE(3402), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418101,47 +465316,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63664] = 17, + [74690] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3922), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4374), 1, + STATE(5378), 1, sym_type_argument, - STATE(4441), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5028), 1, + STATE(5686), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4073), 6, + STATE(4621), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418152,47 +465367,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63732] = 17, + [74758] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(3704), 1, sym_type_argument, - STATE(5199), 1, + STATE(3774), 1, sym_long_identifier, - STATE(5368), 1, + STATE(5014), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4074), 6, + STATE(4622), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418203,149 +465418,133 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [63800] = 17, + [74826] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3399), 1, - sym_type_argument, - STATE(3436), 1, - sym_long_identifier, - STATE(4518), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4075), 6, + STATE(4623), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [63868] = 17, + ACTIONS(3602), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3604), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [74878] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5370), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4076), 6, + STATE(4624), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [63936] = 17, + ACTIONS(3598), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3600), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [74930] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3513), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(7645), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(7647), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(7649), 1, anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3922), 1, + STATE(1017), 1, + sym_type, + STATE(1256), 1, sym__static_type_identifier, - STATE(4374), 1, + STATE(1327), 1, sym_type_argument, - STATE(4441), 1, + STATE(1456), 1, sym_long_identifier, - STATE(5027), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(7651), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4077), 6, + STATE(4625), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(1305), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418356,47 +465555,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64004] = 17, + [74998] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(3513), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7645), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(7647), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(7649), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(1006), 1, + sym_type, + STATE(1256), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(1327), 1, sym_type_argument, - STATE(5199), 1, + STATE(1456), 1, sym_long_identifier, - STATE(5395), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7651), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4078), 6, + STATE(4626), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(1305), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418407,149 +465606,227 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64072] = 17, + [75066] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4627), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3774), 9, anon_sym_LPAREN, - ACTIONS(5306), 1, + anon_sym_null, anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5391), 1, - sym_type, + ACTIONS(3776), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [75118] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4079), 6, + STATE(4628), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [64140] = 17, + ACTIONS(3287), 9, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3285), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [75170] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4629), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3581), 9, anon_sym_LPAREN, - ACTIONS(6394), 1, + anon_sym_null, anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4353), 1, - sym_type, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, + ACTIONS(3583), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [75222] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4080), 6, + ACTIONS(5036), 4, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4630), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [64208] = 17, + ACTIONS(5038), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [75290] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5273), 1, + STATE(5639), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4081), 6, + STATE(4631), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418560,47 +465837,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64276] = 17, + [75358] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4632), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3585), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - ACTIONS(7012), 1, + ACTIONS(3587), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [75410] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(3275), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(3399), 1, + STATE(5378), 1, sym_type_argument, - STATE(3436), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4509), 1, + STATE(5668), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4082), 6, + STATE(4633), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418611,98 +465931,97 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64344] = 17, + [75478] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, - STATE(5367), 1, - sym_type, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4083), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4955), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4634), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [64412] = 17, + ACTIONS(4957), 8, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [75544] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7609), 1, anon_sym_LPAREN, - ACTIONS(5483), 1, + ACTIONS(7611), 1, anon_sym__, - ACTIONS(5491), 1, + ACTIONS(7613), 1, anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, - sym__static_type_identifier, - STATE(3934), 1, + STATE(4915), 1, sym_type, - STATE(4364), 1, + STATE(4929), 1, + sym__static_type_identifier, + STATE(5062), 1, sym_type_argument, - STATE(4472), 1, + STATE(5092), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, + ACTIONS(7615), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4084), 6, + STATE(4635), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, + STATE(5094), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418713,98 +466032,135 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64480] = 17, + [75612] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(4707), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4636), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3259), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3257), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(4087), 1, - sym_type_argument, - STATE(4298), 1, - sym_type, - STATE(4340), 1, - sym_long_identifier, + [75668] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4085), 6, + STATE(4637), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [64548] = 17, + ACTIONS(3726), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3728), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [75720] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(7685), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(7687), 1, anon_sym_POUND, - STATE(2895), 1, + STATE(1175), 1, sym_type, - STATE(2898), 1, + STATE(1452), 1, sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + STATE(1551), 1, sym_long_identifier, + STATE(1632), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(7689), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4086), 6, + STATE(4638), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(1664), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418815,43 +466171,42 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64616] = 10, + [75788] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7120), 1, - anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4087), 6, + STATE(4639), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, + ACTIONS(3363), 8, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2986), 11, + ACTIONS(3361), 12, anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, + anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -418859,47 +466214,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [64670] = 17, + [75840] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(7094), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(7096), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(397), 1, + STATE(471), 1, sym_type, - STATE(2878), 1, + STATE(3286), 1, sym__static_type_identifier, - STATE(2998), 1, + STATE(3433), 1, sym_type_argument, - STATE(3072), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4088), 6, + STATE(4640), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -418910,98 +466265,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64738] = 17, + [75908] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(4087), 1, - sym_type_argument, - STATE(4293), 1, - sym_type, - STATE(4340), 1, - sym_long_identifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4089), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [64806] = 17, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3399), 1, + STATE(5378), 1, sym_type_argument, - STATE(3436), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4424), 1, + STATE(5671), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4090), 6, + STATE(4641), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419012,47 +466316,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64874] = 17, + [75976] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3922), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4348), 1, - sym_type, - STATE(4374), 1, + STATE(5378), 1, sym_type_argument, - STATE(4441), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5606), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4091), 6, + STATE(4642), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419063,98 +466367,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [64942] = 17, + [76044] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(4087), 1, - sym_type_argument, - STATE(4287), 1, - sym_type, - STATE(4340), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4092), 6, + STATE(4643), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [65010] = 17, + ACTIONS(3276), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3274), 12, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_or, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [76096] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(5971), 1, anon_sym_POUND, - STATE(3275), 1, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, sym__static_type_identifier, - STATE(3399), 1, + STATE(4769), 1, sym_type_argument, - STATE(3436), 1, - sym_long_identifier, - STATE(4496), 1, + STATE(4804), 1, sym_type, + STATE(4888), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4093), 6, + STATE(4644), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419165,92 +466461,92 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65078] = 11, + [76164] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5552), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6899), 1, - anon_sym_STAR, - STATE(4102), 1, - aux_sym__compound_type_repeat1, + ACTIONS(7724), 1, + anon_sym_interface, + STATE(4793), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4094), 6, + STATE(4645), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 7, + aux_sym__object_expression_inner_repeat1, + ACTIONS(5550), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2970), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [65134] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [76220] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(7514), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(7516), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(7518), 1, anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, + STATE(439), 1, + sym_type, + STATE(3258), 1, sym__static_type_identifier, - STATE(4087), 1, + STATE(3400), 1, sym_type_argument, - STATE(4283), 1, - sym_type, - STATE(4340), 1, + STATE(3437), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, + ACTIONS(7520), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4095), 6, + STATE(4646), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, + STATE(3452), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419261,47 +466557,107 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65202] = 17, + [76288] = 26, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(6185), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, + STATE(7443), 1, + sym__type_defn_elements, + STATE(7901), 1, + sym_access_modifier, + STATE(7951), 1, + sym__member_defns, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4647), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [76374] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7675), 1, anon_sym_LPAREN, - ACTIONS(6346), 1, + ACTIONS(7677), 1, anon_sym__, - ACTIONS(6348), 1, + ACTIONS(7679), 1, anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, + STATE(1157), 1, + sym_type, + STATE(1432), 1, sym__static_type_identifier, - STATE(4087), 1, + STATE(1471), 1, sym_type_argument, - STATE(4280), 1, - sym_type, - STATE(4340), 1, + STATE(1472), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, + ACTIONS(7681), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4096), 6, + STATE(4648), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, + STATE(1469), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419312,47 +466668,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65270] = 17, + [76442] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(5585), 1, sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(6656), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(6658), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3235), 1, sym__static_type_identifier, - STATE(3291), 1, + STATE(3236), 1, sym_type, - STATE(3399), 1, + STATE(3313), 1, sym_type_argument, - STATE(3436), 1, + STATE(3346), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(6660), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4097), 6, + STATE(4649), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(3402), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419363,47 +466719,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65338] = 17, + [76510] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3287), 1, + STATE(444), 1, sym_type, - STATE(3399), 1, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, sym_type_argument, - STATE(3436), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4098), 6, + STATE(4650), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419414,91 +466770,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65406] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5197), 1, - anon_sym_let, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7122), 1, - anon_sym_and, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4099), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5195), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [65460] = 17, + [76578] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7014), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7016), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(3275), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(3292), 1, - sym_type, - STATE(3399), 1, + STATE(5378), 1, sym_type_argument, - STATE(3436), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5691), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4100), 6, + STATE(4651), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419509,47 +466821,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65528] = 17, + [76646] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(6394), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(6396), 1, + ACTIONS(7582), 1, anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3922), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(4368), 1, - sym_type, - STATE(4374), 1, + STATE(3704), 1, sym_type_argument, - STATE(4441), 1, + STATE(3774), 1, sym_long_identifier, + STATE(4928), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4101), 6, + STATE(4652), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419560,91 +466872,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65596] = 10, + [76714] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7125), 1, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 7, + ACTIONS(5069), 4, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, anon_sym_POUNDelse, - STATE(4102), 7, + STATE(4653), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 11, + ACTIONS(5071), 8, anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [65650] = 17, + [76782] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(7653), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(7655), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(7657), 1, anon_sym_POUND, - STATE(2898), 1, - sym__static_type_identifier, - STATE(2909), 1, + STATE(3580), 1, sym_type, - STATE(3066), 1, + STATE(3582), 1, + sym__static_type_identifier, + STATE(3602), 1, sym_type_argument, - STATE(3080), 1, + STATE(3622), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(7659), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4103), 6, + STATE(4654), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(3614), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419655,47 +466974,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65718] = 17, + [76850] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, + ACTIONS(5573), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(7453), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(7455), 1, anon_sym_POUND, - STATE(421), 1, + STATE(3227), 1, sym_type, - STATE(2898), 1, + STATE(3228), 1, sym__static_type_identifier, - STATE(3066), 1, + STATE(3293), 1, sym_type_argument, - STATE(3080), 1, + STATE(3384), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(7457), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4104), 6, + STATE(4655), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(3363), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419706,92 +467025,148 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65786] = 11, + [76918] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5181), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7128), 1, - anon_sym_and, - STATE(4099), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, + anon_sym__, + ACTIONS(6846), 1, + anon_sym_POUND, + ACTIONS(6988), 1, + sym_identifier, + STATE(4028), 1, + sym_type, + STATE(4031), 1, + sym__static_type_identifier, + STATE(4167), 1, + sym_type_argument, + STATE(4199), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4105), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4656), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5179), 17, - sym__newline, + STATE(4190), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [76986] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, + sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4955), 3, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4657), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4957), 9, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [65842] = 17, + [77052] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, + ACTIONS(5573), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(7451), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(7453), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(7455), 1, anon_sym_POUND, - STATE(2898), 1, + STATE(3228), 1, sym__static_type_identifier, - STATE(2910), 1, + STATE(3230), 1, sym_type, - STATE(3066), 1, + STATE(3293), 1, sym_type_argument, - STATE(3080), 1, + STATE(3384), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(7457), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4106), 6, + STATE(4658), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(3363), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419802,47 +467177,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65910] = 17, + [77120] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2898), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2911), 1, - sym_type, - STATE(3066), 1, + STATE(5378), 1, sym_type_argument, - STATE(3080), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5704), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4107), 6, + STATE(4659), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419853,107 +467228,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [65978] = 26, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(5752), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, - STATE(7318), 1, - sym__type_defn_elements, - STATE(7371), 1, - sym_access_modifier, - STATE(7485), 1, - sym__member_defns, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4108), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [66064] = 17, + [77188] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(6346), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(7578), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(7580), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(7582), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3630), 1, sym__static_type_identifier, - STATE(3277), 1, + STATE(3688), 1, sym_type, - STATE(3313), 1, + STATE(3704), 1, sym_type_argument, - STATE(3413), 1, + STATE(3774), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4109), 6, + STATE(4660), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(3786), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -419964,98 +467279,92 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66132] = 17, + [77256] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5347), 1, - sym_type, + ACTIONS(7558), 1, + anon_sym_DOT, + STATE(4665), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4110), 6, + STATE(4661), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [66200] = 17, + ACTIONS(3204), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3202), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [77312] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3249), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7130), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7132), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7134), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(938), 1, - sym_type, - STATE(1111), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(1265), 1, - sym_long_identifier, - STATE(1271), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5743), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7136), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4111), 6, + STATE(4662), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1274), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420066,28 +467375,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66268] = 9, + [77380] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4112), 6, + STATE(4663), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6443), 9, + ACTIONS(3825), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420097,7 +467406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6445), 11, + ACTIONS(3827), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420109,28 +467418,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [66320] = 9, + [77432] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4113), 6, + STATE(4664), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6439), 9, + ACTIONS(3836), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420140,7 +467449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6441), 11, + ACTIONS(3838), 11, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK_PIPE, @@ -420152,92 +467461,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [66372] = 11, + [77484] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, - STATE(4125), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7727), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4114), 6, + STATE(4665), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6241), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6243), 9, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [66428] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3285), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [77538] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, + ACTIONS(7360), 1, sym_identifier, - STATE(4814), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(5378), 1, sym_type_argument, - STATE(5199), 1, + STATE(5501), 1, sym_long_identifier, - STATE(5362), 1, + STATE(5819), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4115), 6, + STATE(4666), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420248,47 +467556,97 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66496] = 17, + [77606] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, + sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4979), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4667), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(4981), 9, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [77672] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3912), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(4361), 1, - sym_type, - STATE(4386), 1, + STATE(5378), 1, sym_type_argument, - STATE(4428), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5689), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4116), 6, + STATE(4668), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420299,92 +467657,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66564] = 11, + [77740] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5126), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7128), 1, - anon_sym_and, - STATE(4105), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(5961), 1, + anon_sym_LPAREN, + ACTIONS(5963), 1, + anon_sym__, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4769), 1, + sym_type_argument, + STATE(4827), 1, + sym_type, + STATE(4888), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4117), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4669), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [66620] = 17, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [77808] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(6862), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(6864), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(6866), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(7414), 1, + sym_identifier, + STATE(4286), 1, sym__static_type_identifier, - STATE(2476), 1, + STATE(4759), 1, sym_type_argument, - STATE(2494), 1, + STATE(4893), 1, sym_long_identifier, - STATE(2596), 1, + STATE(5106), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(6868), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4118), 6, + STATE(4670), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(4894), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420395,47 +467759,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66688] = 17, + [77876] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(7140), 1, + ACTIONS(7653), 1, anon_sym_LPAREN, - ACTIONS(7142), 1, + ACTIONS(7655), 1, anon_sym__, - ACTIONS(7144), 1, + ACTIONS(7657), 1, anon_sym_POUND, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3214), 1, + STATE(3579), 1, sym_type, - STATE(3223), 1, + STATE(3582), 1, + sym__static_type_identifier, + STATE(3602), 1, sym_type_argument, - STATE(3273), 1, + STATE(3622), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, + ACTIONS(7659), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4119), 6, + STATE(4671), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, + STATE(3614), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420446,92 +467810,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66756] = 11, + [77944] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - anon_sym_DOT, - STATE(4128), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6252), 1, + sym_identifier, + ACTIONS(7653), 1, + anon_sym_LPAREN, + ACTIONS(7655), 1, + anon_sym__, + ACTIONS(7657), 1, + anon_sym_POUND, + STATE(3582), 1, + sym__static_type_identifier, + STATE(3590), 1, + sym_type, + STATE(3602), 1, + sym_type_argument, + STATE(3622), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4120), 6, + ACTIONS(7659), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4672), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2966), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [66812] = 17, + STATE(3614), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [78012] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5766), 1, + ACTIONS(6252), 1, sym_identifier, - ACTIONS(7148), 1, + ACTIONS(7653), 1, anon_sym_LPAREN, - ACTIONS(7150), 1, + ACTIONS(7655), 1, anon_sym__, - ACTIONS(7152), 1, + ACTIONS(7657), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3578), 1, sym_type, - STATE(3197), 1, + STATE(3582), 1, sym__static_type_identifier, - STATE(3222), 1, + STATE(3602), 1, sym_type_argument, - STATE(3253), 1, + STATE(3622), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, + ACTIONS(7659), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4121), 6, + STATE(4673), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3272), 10, + STATE(3614), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420542,47 +467912,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66880] = 17, + [78080] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, + ACTIONS(4752), 1, + sym_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(5306), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(5310), 1, + ACTIONS(6836), 1, anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4814), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(4947), 1, + STATE(2789), 1, sym_type_argument, - STATE(5199), 1, - sym_long_identifier, - STATE(5272), 1, + STATE(2803), 1, sym_type, + STATE(2839), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4122), 6, + STATE(4674), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420593,90 +467963,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [66948] = 9, + [78148] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(5961), 1, + anon_sym_LPAREN, + ACTIONS(5963), 1, + anon_sym__, + ACTIONS(5971), 1, + anon_sym_POUND, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, + sym__static_type_identifier, + STATE(4769), 1, + sym_type_argument, + STATE(4888), 1, + sym_long_identifier, + STATE(5732), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4123), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4675), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6451), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6453), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [67000] = 17, + STATE(4892), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [78216] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3220), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7570), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7572), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7574), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym_identifier, - STATE(3912), 1, - sym__static_type_identifier, - STATE(4360), 1, + STATE(902), 1, sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, + STATE(940), 1, + sym__static_type_identifier, + STATE(979), 1, sym_long_identifier, + STATE(980), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(7576), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4124), 6, + STATE(4676), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(981), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420687,92 +468065,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67068] = 11, + [78284] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, + anon_sym_POUND, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, - STATE(4130), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, + sym__static_type_identifier, + STATE(5212), 1, + sym_type, + STATE(5378), 1, + sym_type_argument, + STATE(5501), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4125), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4677), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6235), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(6237), 9, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [67124] = 17, + STATE(5514), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [78352] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3326), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, + ACTIONS(7637), 1, anon_sym_LPAREN, - ACTIONS(6362), 1, + ACTIONS(7639), 1, anon_sym__, - ACTIONS(6364), 1, + ACTIONS(7641), 1, anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3703), 1, + STATE(926), 1, sym_type, - STATE(3715), 1, + STATE(991), 1, sym__static_type_identifier, - STATE(3815), 1, + STATE(1008), 1, sym_type_argument, - STATE(3847), 1, + STATE(1014), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, + ACTIONS(7643), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4126), 6, + STATE(4678), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, + STATE(1028), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420783,47 +468167,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67192] = 17, + [78420] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3567), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, + ACTIONS(7675), 1, anon_sym_LPAREN, - ACTIONS(6362), 1, + ACTIONS(7677), 1, anon_sym__, - ACTIONS(6364), 1, + ACTIONS(7679), 1, anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3724), 1, + STATE(1136), 1, sym_type, - STATE(3815), 1, + STATE(1432), 1, + sym__static_type_identifier, + STATE(1471), 1, sym_type_argument, - STATE(3847), 1, + STATE(1472), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, + ACTIONS(7681), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4127), 6, + STATE(4679), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, + STATE(1469), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420834,91 +468218,98 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67260] = 10, + [78488] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7156), 1, - anon_sym_DOT, + ACTIONS(7709), 1, + anon_sym_LPAREN, + ACTIONS(7711), 1, + anon_sym__, + ACTIONS(7713), 1, + anon_sym_POUND, + STATE(1012), 1, + sym_type, + STATE(1232), 1, + sym__static_type_identifier, + STATE(1378), 1, + sym_type_argument, + STATE(1381), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4128), 7, + ACTIONS(7715), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(4680), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [67314] = 17, + STATE(1351), 10, + sym__simple_type, + sym__generic_type, + sym__paren_type, + sym__function_type, + sym__compound_type, + sym__postfix_type, + sym__list_type, + sym__static_type, + sym__constrained_type, + sym__flexible_type, + [78556] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3326), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, + ACTIONS(7637), 1, anon_sym_LPAREN, - ACTIONS(6362), 1, + ACTIONS(7639), 1, anon_sym__, - ACTIONS(6364), 1, + ACTIONS(7641), 1, anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3677), 1, + STATE(933), 1, sym_type, - STATE(3715), 1, + STATE(991), 1, sym__static_type_identifier, - STATE(3815), 1, + STATE(1008), 1, sym_type_argument, - STATE(3847), 1, + STATE(1014), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, + ACTIONS(7643), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4129), 6, + STATE(4681), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, + STATE(1028), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -420929,31 +468320,28 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67382] = 10, + [78624] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7159), 1, - anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4130), 7, + STATE(4682), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - ACTIONS(6228), 9, + ACTIONS(3642), 9, anon_sym_LPAREN, anon_sym_null, anon_sym__, @@ -420963,7 +468351,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bool, sym_int, sym_identifier, - ACTIONS(6230), 9, + ACTIONS(3644), 11, + anon_sym_EQ, + anon_sym_COLON, anon_sym_LBRACK_PIPE, anon_sym_LBRACE, anon_sym_DASH_GT, @@ -420973,47 +468363,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_unit, sym_xint, - [67436] = 17, + [78676] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, + ACTIONS(7514), 1, anon_sym_LPAREN, - ACTIONS(6362), 1, + ACTIONS(7516), 1, anon_sym__, - ACTIONS(6364), 1, + ACTIONS(7518), 1, anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3691), 1, + STATE(441), 1, sym_type, - STATE(3715), 1, + STATE(3258), 1, sym__static_type_identifier, - STATE(3815), 1, + STATE(3400), 1, sym_type_argument, - STATE(3847), 1, + STATE(3437), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, + ACTIONS(7520), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4131), 6, + STATE(4683), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, + STATE(3452), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421024,47 +468414,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67504] = 17, + [78744] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, - sym_identifier, - ACTIONS(7140), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(7142), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(7144), 1, + ACTIONS(5971), 1, anon_sym_POUND, - STATE(3192), 1, - sym_type, - STATE(3195), 1, + ACTIONS(7431), 1, + sym_identifier, + STATE(4284), 1, sym__static_type_identifier, - STATE(3223), 1, + STATE(4326), 1, + sym_type, + STATE(4769), 1, sym_type_argument, - STATE(3273), 1, + STATE(4888), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4132), 6, + STATE(4684), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421075,47 +468465,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67572] = 17, + [78812] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5961), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5963), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5971), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(7431), 1, sym_identifier, - STATE(3912), 1, + STATE(4284), 1, sym__static_type_identifier, - STATE(4357), 1, + STATE(4288), 1, sym_type, - STATE(4386), 1, + STATE(4769), 1, sym_type_argument, - STATE(4428), 1, + STATE(4888), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(5973), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4133), 6, + STATE(4685), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(4892), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421126,47 +468516,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67640] = 17, + [78880] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, + ACTIONS(3326), 1, sym_identifier, - ACTIONS(7140), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7637), 1, anon_sym_LPAREN, - ACTIONS(7142), 1, + ACTIONS(7639), 1, anon_sym__, - ACTIONS(7144), 1, + ACTIONS(7641), 1, anon_sym_POUND, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3205), 1, + STATE(937), 1, sym_type, - STATE(3223), 1, + STATE(991), 1, + sym__static_type_identifier, + STATE(1008), 1, sym_type_argument, - STATE(3273), 1, + STATE(1014), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, + ACTIONS(7643), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4134), 6, + STATE(4686), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, + STATE(1028), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421177,47 +468567,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67708] = 17, + [78948] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7633), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym_identifier, - STATE(3912), 1, + STATE(3584), 1, sym__static_type_identifier, - STATE(4356), 1, + STATE(3589), 1, sym_type, - STATE(4386), 1, + STATE(3605), 1, sym_type_argument, - STATE(4428), 1, + STATE(3633), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4135), 6, + STATE(4687), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421228,47 +468618,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67776] = 17, + [79016] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3008), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7617), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7619), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7621), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym_identifier, - STATE(3912), 1, - sym__static_type_identifier, - STATE(4354), 1, + STATE(880), 1, sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, + STATE(907), 1, + sym__static_type_identifier, + STATE(935), 1, sym_long_identifier, + STATE(936), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(7623), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4136), 6, + STATE(4688), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(934), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421279,47 +468669,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67844] = 17, + [79084] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2802), 1, + ACTIONS(3008), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, + ACTIONS(7617), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7619), 1, anon_sym__, - ACTIONS(7166), 1, + ACTIONS(7621), 1, anon_sym_POUND, - STATE(814), 1, + STATE(886), 1, sym_type, - STATE(823), 1, + STATE(907), 1, sym__static_type_identifier, - STATE(840), 1, - sym_type_argument, - STATE(841), 1, + STATE(935), 1, sym_long_identifier, + STATE(936), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7168), 2, + ACTIONS(7623), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4137), 6, + STATE(4689), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(845), 10, + STATE(934), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421330,47 +468720,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67912] = 17, + [79152] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3912), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3935), 1, - sym_type, - STATE(4386), 1, + STATE(5378), 1, sym_type_argument, - STATE(4428), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5716), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4138), 6, + STATE(4690), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421381,47 +468771,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [67980] = 17, + [79220] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(3438), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4691), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3440), 19, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [79272] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7166), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(810), 1, - sym_type, - STATE(823), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(840), 1, + STATE(5378), 1, sym_type_argument, - STATE(841), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5705), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7168), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4139), 6, + STATE(4692), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(845), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421432,47 +468865,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68048] = 17, + [79340] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7166), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(809), 1, - sym_type, - STATE(823), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(840), 1, + STATE(5378), 1, sym_type_argument, - STATE(841), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5678), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7168), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4140), 6, + STATE(4693), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(845), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421483,47 +468916,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68116] = 17, + [79408] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4694), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3701), 9, anon_sym_LPAREN, - ACTIONS(6336), 1, + anon_sym_null, anon_sym__, - ACTIONS(6338), 1, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3703), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [79460] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3912), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3932), 1, - sym_type, - STATE(4386), 1, + STATE(5378), 1, sym_type_argument, - STATE(4428), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5625), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4141), 6, + STATE(4695), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421534,47 +469010,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68184] = 17, + [79528] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7034), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7036), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(420), 1, - sym_type, - STATE(2898), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(3066), 1, + STATE(5378), 1, sym_type_argument, - STATE(3080), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5626), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4142), 6, + STATE(4696), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421585,47 +469061,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68252] = 17, + [79596] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7701), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7703), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7705), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym_identifier, - STATE(3912), 1, - sym__static_type_identifier, - STATE(3915), 1, + STATE(4849), 1, sym_type, - STATE(4386), 1, + STATE(4904), 1, + sym__static_type_identifier, + STATE(5074), 1, sym_type_argument, - STATE(4428), 1, + STATE(5075), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(7707), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4143), 6, + STATE(4697), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(5076), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421636,47 +469112,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68320] = 17, + [79664] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3008), 1, + sym_identifier, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6334), 1, + ACTIONS(7617), 1, anon_sym_LPAREN, - ACTIONS(6336), 1, + ACTIONS(7619), 1, anon_sym__, - ACTIONS(6338), 1, + ACTIONS(7621), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym_identifier, - STATE(3912), 1, - sym__static_type_identifier, - STATE(3913), 1, + STATE(882), 1, sym_type, - STATE(4386), 1, - sym_type_argument, - STATE(4428), 1, + STATE(907), 1, + sym__static_type_identifier, + STATE(935), 1, sym_long_identifier, + STATE(936), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, + ACTIONS(7623), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4144), 6, + STATE(4698), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4435), 10, + STATE(934), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421687,47 +469163,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68388] = 17, + [79732] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3201), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7172), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7174), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(943), 1, - sym_type, - STATE(1142), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(1326), 1, - sym_long_identifier, - STATE(1335), 1, + STATE(5378), 1, sym_type_argument, + STATE(5501), 1, + sym_long_identifier, + STATE(5632), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7176), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4145), 6, + STATE(4699), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1337), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421738,47 +469214,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68456] = 17, + [79800] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4700), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(2768), 9, anon_sym_LPAREN, - ACTIONS(6362), 1, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(2770), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [79852] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6842), 1, + anon_sym_LPAREN, + ACTIONS(6844), 1, anon_sym__, - ACTIONS(6364), 1, + ACTIONS(6846), 1, anon_sym_POUND, - ACTIONS(6517), 1, + ACTIONS(6988), 1, sym_identifier, - STATE(3648), 1, - sym_type, - STATE(3715), 1, + STATE(4031), 1, sym__static_type_identifier, - STATE(3815), 1, + STATE(4072), 1, + sym_type, + STATE(4167), 1, sym_type_argument, - STATE(3847), 1, + STATE(4199), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, + ACTIONS(6848), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4146), 6, + STATE(4701), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, + STATE(4190), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421789,47 +469308,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68524] = 17, + [79920] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2469), 1, + STATE(446), 1, sym_type, - STATE(2476), 1, + STATE(3286), 1, + sym__static_type_identifier, + STATE(3433), 1, sym_type_argument, - STATE(2494), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4147), 6, + STATE(4702), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421840,47 +469359,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68592] = 17, + [79988] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(6328), 1, + ACTIONS(7633), 1, anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3664), 1, + STATE(3575), 1, sym_type, - STATE(3672), 1, + STATE(3584), 1, sym__static_type_identifier, - STATE(3798), 1, + STATE(3605), 1, sym_type_argument, - STATE(3802), 1, + STATE(3633), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4148), 6, + STATE(4703), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421891,47 +469410,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68660] = 17, + [80056] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6328), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6491), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3666), 1, - sym_type, - STATE(3672), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3798), 1, + STATE(5213), 1, + sym_type, + STATE(5378), 1, sym_type_argument, - STATE(3802), 1, + STATE(5501), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4149), 6, + STATE(4704), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421942,47 +469461,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68728] = 17, + [80124] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7609), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(7611), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(7613), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(4929), 1, sym__static_type_identifier, - STATE(2473), 1, + STATE(4995), 1, sym_type, - STATE(2476), 1, + STATE(5062), 1, sym_type_argument, - STATE(2494), 1, + STATE(5092), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(7615), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4150), 6, + STATE(4705), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(5094), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -421993,47 +469512,136 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68796] = 17, + [80192] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7730), 1, + anon_sym_DOT, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3287), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + STATE(4706), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_long_identifier_repeat1, + ACTIONS(3285), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [80246] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(4706), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4707), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3204), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3202), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [80302] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6328), 1, + ACTIONS(5788), 1, anon_sym_POUND, - ACTIONS(6491), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, sym_identifier, - STATE(3669), 1, - sym_type, - STATE(3672), 1, + STATE(5138), 1, sym__static_type_identifier, - STATE(3798), 1, + STATE(5219), 1, + sym_type, + STATE(5378), 1, sym_type_argument, - STATE(3802), 1, + STATE(5501), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4151), 6, + STATE(4708), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422044,47 +469652,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68864] = 17, + [80370] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, + ACTIONS(6271), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(6324), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(6328), 1, + ACTIONS(7633), 1, anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3659), 1, + STATE(3581), 1, sym_type, - STATE(3672), 1, + STATE(3584), 1, sym__static_type_identifier, - STATE(3798), 1, + STATE(3605), 1, sym_type_argument, - STATE(3802), 1, + STATE(3633), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4152), 6, + STATE(4709), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422095,47 +469703,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [68932] = 17, + [80438] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(3264), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(5378), 1, sym_type_argument, - STATE(3413), 1, + STATE(5501), 1, sym_long_identifier, - STATE(4521), 1, + STATE(5856), 1, sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4153), 6, + STATE(4710), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422146,47 +469754,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69000] = 17, + [80506] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2474), 1, - sym_type, - STATE(2476), 1, + STATE(5378), 1, sym_type_argument, - STATE(2494), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5701), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4154), 6, + STATE(4711), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422197,47 +469805,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69068] = 17, + [80574] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3096), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7178), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(7180), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(7182), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(876), 1, - sym_type, - STATE(977), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(1169), 1, + STATE(5378), 1, sym_type_argument, - STATE(1186), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5794), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7184), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4155), 6, + STATE(4712), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1171), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422248,47 +469856,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69136] = 17, + [80642] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(6271), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(7629), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(7631), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(7633), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3576), 1, + sym_type, + STATE(3584), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(3605), 1, sym_type_argument, - STATE(3413), 1, + STATE(3633), 1, sym_long_identifier, - STATE(4577), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4156), 6, + STATE(4713), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(3640), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422299,47 +469907,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69204] = 17, + [80710] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(6909), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(6911), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(6913), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(7462), 1, + sym_identifier, + STATE(4302), 1, sym__static_type_identifier, - STATE(2476), 1, + STATE(4774), 1, sym_type_argument, - STATE(2480), 1, - sym_type, - STATE(2494), 1, + STATE(4865), 1, sym_long_identifier, + STATE(5186), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(6915), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4157), 6, + STATE(4714), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(4866), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422350,47 +469958,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69272] = 17, + [80778] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6384), 1, + ACTIONS(5784), 1, anon_sym__, - ACTIONS(6386), 1, + ACTIONS(5788), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + STATE(5138), 1, sym__static_type_identifier, - STATE(2476), 1, + STATE(5378), 1, sym_type_argument, - STATE(2485), 1, - sym_type, - STATE(2494), 1, + STATE(5501), 1, sym_long_identifier, + STATE(5530), 1, + sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4158), 6, + STATE(4715), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, + STATE(5514), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422401,47 +470009,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69340] = 17, + [80846] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3096), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7178), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - ACTIONS(7180), 1, + ACTIONS(7693), 1, anon_sym__, - ACTIONS(7182), 1, + ACTIONS(7695), 1, anon_sym_POUND, - STATE(915), 1, + STATE(1075), 1, sym_type, - STATE(977), 1, + STATE(1352), 1, sym__static_type_identifier, - STATE(1169), 1, + STATE(1536), 1, sym_type_argument, - STATE(1186), 1, + STATE(1622), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7184), 2, + ACTIONS(7697), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4159), 6, + STATE(4716), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1171), 10, + STATE(1544), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422452,97 +470060,90 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69408] = 16, + [80914] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4514), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4160), 6, + STATE(4717), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4516), 8, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [69474] = 17, + ACTIONS(3840), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3842), 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_DASH_GT, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [80966] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(5688), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7522), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(7524), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(7526), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(450), 1, sym_type, - STATE(3264), 1, + STATE(3286), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(3433), 1, sym_type_argument, - STATE(3413), 1, + STATE(3464), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7528), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4161), 6, + STATE(4718), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(3479), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422553,47 +470154,47 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69542] = 17, + [81034] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(4752), 1, sym_identifier, - ACTIONS(7020), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6830), 1, anon_sym_LPAREN, - ACTIONS(7022), 1, + ACTIONS(6832), 1, anon_sym__, - ACTIONS(7024), 1, + ACTIONS(6836), 1, anon_sym_POUND, - STATE(3245), 1, - sym_type, - STATE(3264), 1, + STATE(2093), 1, sym__static_type_identifier, - STATE(3313), 1, + STATE(2789), 1, sym_type_argument, - STATE(3413), 1, + STATE(2820), 1, + sym_type, + STATE(2839), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(6838), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4162), 6, + STATE(4719), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, + STATE(2824), 10, sym__simple_type, sym__generic_type, sym__paren_type, @@ -422604,452 +470205,523 @@ static const uint16_t ts_small_parse_table[] = { sym__static_type, sym__constrained_type, sym__flexible_type, - [69610] = 17, + [81102] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(7020), 1, - anon_sym_LPAREN, - ACTIONS(7022), 1, - anon_sym__, - ACTIONS(7024), 1, - anon_sym_POUND, - STATE(3238), 1, - sym_type, - STATE(3264), 1, - sym__static_type_identifier, - STATE(3313), 1, - sym_type_argument, - STATE(3413), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, + ACTIONS(7123), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4720), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(7125), 17, + anon_sym_module, + anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym__, + anon_sym_new, anon_sym_CARET, anon_sym_SQUOTE, - STATE(4163), 6, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [81153] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5674), 1, + anon_sym_let, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7733), 1, + anon_sym_and, + STATE(4761), 1, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4721), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [69678] = 17, + ACTIONS(5672), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [81208] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3096), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5350), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7178), 1, - anon_sym_LPAREN, - ACTIONS(7180), 1, - anon_sym__, - ACTIONS(7182), 1, - anon_sym_POUND, - STATE(905), 1, - sym_type, - STATE(977), 1, - sym__static_type_identifier, - STATE(1169), 1, - sym_type_argument, - STATE(1186), 1, - sym_long_identifier, + ACTIONS(7735), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7184), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4164), 6, + STATE(4722), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1171), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [69746] = 17, + ACTIONS(5348), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81261] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3438), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(7020), 1, - anon_sym_LPAREN, - ACTIONS(7022), 1, - anon_sym__, - ACTIONS(7024), 1, - anon_sym_POUND, - STATE(3232), 1, - sym_type, - STATE(3264), 1, - sym__static_type_identifier, - STATE(3313), 1, - sym_type_argument, - STATE(3413), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4165), 6, + STATE(4723), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [69814] = 12, + ACTIONS(3440), 18, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [81312] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5356), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7186), 1, - anon_sym_DOT, - STATE(4238), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7737), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4166), 6, + STATE(4724), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 7, + ACTIONS(5354), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, anon_sym_POUNDendif, - ACTIONS(2935), 10, - anon_sym_and, + anon_sym_POUNDelse, + [81365] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5374), 1, + anon_sym_let, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7739), 1, + anon_sym_COMMA, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4725), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5372), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81418] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5368), 1, + anon_sym_let, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7741), 1, anon_sym_with, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4726), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5366), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [69872] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81471] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5374), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2407), 1, - sym_type, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, + ACTIONS(7743), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4167), 6, + STATE(4727), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [69940] = 17, + ACTIONS(5372), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81524] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5342), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2396), 1, - sym_type, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, + ACTIONS(7745), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4168), 6, + STATE(4728), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70008] = 17, + ACTIONS(5340), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81577] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2394), 1, - sym_type, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, + ACTIONS(7350), 1, + anon_sym_DOT, + STATE(4481), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4169), 6, + STATE(4729), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70076] = 17, + ACTIONS(3259), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3257), 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [81634] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4495), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5342), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym__, - ACTIONS(6386), 1, - anon_sym_POUND, - STATE(2410), 1, - sym__static_type_identifier, - STATE(2412), 1, - sym_type, - STATE(2476), 1, - sym_type_argument, - STATE(2494), 1, - sym_long_identifier, + ACTIONS(7747), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4170), 6, + STATE(4730), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(2493), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70144] = 16, + ACTIONS(5340), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [81687] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(6939), 1, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(7470), 1, anon_sym_LBRACK_RBRACK, - STATE(4375), 1, + STATE(4775), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(4859), 1, sym_long_identifier, - STATE(4436), 1, + STATE(4862), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4508), 4, + ACTIONS(5069), 4, sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - STATE(4171), 6, + STATE(4731), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 8, - anon_sym_with, + ACTIONS(5071), 7, anon_sym_new, anon_sym_default, anon_sym_static, @@ -423057,1719 +470729,1531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [70210] = 17, + [81754] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3316), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7188), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - anon_sym__, - ACTIONS(7192), 1, - anon_sym_POUND, - STATE(984), 1, - sym_type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1474), 1, - sym_type_argument, - STATE(1476), 1, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7194), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4172), 6, + ACTIONS(5036), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4732), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1473), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70278] = 17, + ACTIONS(5038), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [81821] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3316), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7188), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - anon_sym__, - ACTIONS(7192), 1, - anon_sym_POUND, - STATE(985), 1, - sym_type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1474), 1, - sym_type_argument, - STATE(1476), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7194), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4173), 6, + STATE(4733), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1473), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70346] = 17, + ACTIONS(3287), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3285), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [81872] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3316), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7188), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - anon_sym__, - ACTIONS(7192), 1, - anon_sym_POUND, - STATE(1062), 1, - sym_type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1474), 1, - sym_type_argument, - STATE(1476), 1, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7194), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4174), 6, + ACTIONS(5077), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4734), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1473), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70414] = 17, + ACTIONS(5079), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [81939] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3876), 1, - sym_type, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4175), 6, + ACTIONS(5129), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4735), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70482] = 17, + ACTIONS(5131), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82006] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(7198), 1, - anon_sym_LPAREN, - ACTIONS(7200), 1, - anon_sym__, - ACTIONS(7202), 1, - anon_sym_POUND, - STATE(4412), 1, - sym_type, - STATE(4564), 1, - sym__static_type_identifier, - STATE(4627), 1, - sym_type_argument, - STATE(4696), 1, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4176), 6, + ACTIONS(5073), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4736), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4692), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70550] = 17, + ACTIONS(5075), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82073] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, + ACTIONS(7414), 1, sym_identifier, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7066), 1, - anon_sym__, - ACTIONS(7068), 1, - anon_sym_POUND, - STATE(4548), 1, - sym__static_type_identifier, - STATE(4606), 1, - sym_type, - STATE(4619), 1, - sym_type_argument, - STATE(4714), 1, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4177), 6, + ACTIONS(5073), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4737), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70618] = 17, + ACTIONS(5075), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82140] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3895), 1, - sym_type, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4178), 6, + ACTIONS(7116), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4738), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70686] = 17, + ACTIONS(7118), 17, + anon_sym_module, + anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym__, + anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82191] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, + ACTIONS(7414), 1, sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3399), 1, - sym_type_argument, - STATE(3411), 1, - sym_type, - STATE(3436), 1, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4179), 6, + ACTIONS(5036), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4739), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70754] = 17, + ACTIONS(5038), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82258] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6328), 1, - anon_sym_POUND, - ACTIONS(6491), 1, + ACTIONS(7414), 1, sym_identifier, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3707), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + STATE(4758), 1, + aux_sym__compound_type_repeat1, + STATE(4887), 1, sym_long_identifier, + STATE(4890), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4180), 6, + ACTIONS(5069), 3, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_POUNDendif, + STATE(4740), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70822] = 17, + ACTIONS(5071), 8, + anon_sym_and, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82325] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3892), 1, - sym_type, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4181), 6, + STATE(4741), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70890] = 17, + ACTIONS(3244), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3242), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [82376] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym__, - ACTIONS(6348), 1, - anon_sym_POUND, - ACTIONS(6895), 1, - sym_identifier, - STATE(3858), 1, - sym__static_type_identifier, - STATE(3882), 1, - sym_type, - STATE(4087), 1, - sym_type_argument, - STATE(4340), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4182), 6, + STATE(4742), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4341), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [70958] = 17, + ACTIONS(3608), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3610), 10, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [82427] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5564), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(404), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, - sym_long_identifier, + STATE(4745), 1, + aux_sym__object_expression_inner_repeat1, + STATE(4944), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4183), 6, + STATE(4743), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71026] = 17, + ACTIONS(5562), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [82482] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, - STATE(4749), 1, - sym_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4184), 6, + STATE(4744), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71094] = 17, + ACTIONS(3705), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3707), 10, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [82533] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3201), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5552), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - anon_sym_LPAREN, - ACTIONS(7172), 1, - anon_sym__, - ACTIONS(7174), 1, - anon_sym_POUND, - STATE(933), 1, - sym_type, - STATE(1142), 1, - sym__static_type_identifier, - STATE(1326), 1, - sym_long_identifier, - STATE(1335), 1, - sym_type_argument, + ACTIONS(7749), 1, + anon_sym_interface, + STATE(4944), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7176), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4185), 6, + STATE(4745), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1337), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71162] = 17, + aux_sym__object_expression_inner_repeat1, + ACTIONS(5550), 15, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [82588] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3201), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - anon_sym_LPAREN, - ACTIONS(7172), 1, - anon_sym__, - ACTIONS(7174), 1, - anon_sym_POUND, - STATE(931), 1, - sym_type, - STATE(1142), 1, - sym__static_type_identifier, - STATE(1326), 1, - sym_long_identifier, - STATE(1335), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7176), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4186), 6, + STATE(4746), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1337), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71230] = 17, + ACTIONS(3742), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3744), 10, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [82639] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4459), 1, - sym_type, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4187), 6, + STATE(4747), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71298] = 17, + ACTIONS(3814), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3816), 10, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [82690] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6328), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3722), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4188), 6, + STATE(4748), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71366] = 17, + ACTIONS(3818), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + ACTIONS(3820), 10, + anon_sym_COLON, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + anon_sym_LT2, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + [82741] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - ACTIONS(6517), 1, + ACTIONS(6346), 1, sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3779), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7752), 1, + anon_sym_when, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, sym_long_identifier, + STATE(5175), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4189), 6, + ACTIONS(6256), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4749), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71434] = 17, + ACTIONS(6254), 7, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [82812] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - ACTIONS(6517), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3793), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4190), 6, + ACTIONS(5129), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4750), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71502] = 17, + ACTIONS(5131), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [82879] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3201), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5713), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7170), 1, - anon_sym_LPAREN, - ACTIONS(7172), 1, - anon_sym__, - ACTIONS(7174), 1, - anon_sym_POUND, - STATE(936), 1, - sym_type, - STATE(1142), 1, - sym__static_type_identifier, - STATE(1326), 1, - sym_long_identifier, - STATE(1335), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7176), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4191), 6, + STATE(4751), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1337), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71570] = 17, + ACTIONS(5711), 18, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [82930] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5717), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3399), 1, - sym_type_argument, - STATE(3415), 1, - sym_type, - STATE(3436), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4192), 6, + STATE(4752), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71638] = 17, + ACTIONS(5715), 18, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [82981] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5699), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3795), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4193), 6, + STATE(4753), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71706] = 17, + ACTIONS(5697), 18, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [83032] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3011), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5336), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7206), 1, - anon_sym_LPAREN, - ACTIONS(7208), 1, - anon_sym__, - ACTIONS(7210), 1, - anon_sym_POUND, - STATE(838), 1, - sym_type, - STATE(897), 1, - sym__static_type_identifier, - STATE(941), 1, - sym_type_argument, - STATE(942), 1, - sym_long_identifier, + ACTIONS(7754), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7212), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4194), 6, + STATE(4754), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(937), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71774] = 17, + ACTIONS(5334), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [83085] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5350), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3786), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, - sym_long_identifier, + ACTIONS(7756), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4195), 6, + STATE(4755), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71842] = 17, + ACTIONS(5348), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [83138] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6360), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym__, - ACTIONS(6364), 1, - anon_sym_POUND, - ACTIONS(6517), 1, - sym_identifier, - STATE(3715), 1, - sym__static_type_identifier, - STATE(3785), 1, - sym_type, - STATE(3815), 1, - sym_type_argument, - STATE(3847), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4196), 6, + STATE(4756), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3846), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71910] = 17, + ACTIONS(3287), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3285), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83189] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7066), 1, - anon_sym__, - ACTIONS(7068), 1, - anon_sym_POUND, - STATE(4548), 1, - sym__static_type_identifier, - STATE(4557), 1, - sym_type, - STATE(4619), 1, - sym_type_argument, - STATE(4714), 1, - sym_long_identifier, + ACTIONS(7758), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4197), 6, + ACTIONS(3030), 6, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + STATE(4757), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [71978] = 16, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83242] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, + ACTIONS(7418), 1, + anon_sym_STAR, + STATE(4757), 1, aux_sym__compound_type_repeat1, - STATE(4405), 1, - sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4508), 3, + ACTIONS(3214), 6, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - STATE(4198), 6, + STATE(4758), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 9, + ACTIONS(3212), 11, anon_sym_and, anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [72044] = 17, + sym_identifier, + [83297] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(7148), 1, - anon_sym_LPAREN, - ACTIONS(7150), 1, - anon_sym__, - ACTIONS(7152), 1, - anon_sym_POUND, - STATE(3197), 1, - sym__static_type_identifier, - STATE(3207), 1, - sym_type, - STATE(3222), 1, - sym_type_argument, - STATE(3253), 1, - sym_long_identifier, + ACTIONS(7761), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4199), 6, + STATE(4759), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3272), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72112] = 17, + ACTIONS(3353), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3351), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83350] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7066), 1, - anon_sym__, - ACTIONS(7068), 1, - anon_sym_POUND, - STATE(4548), 1, - sym__static_type_identifier, - STATE(4576), 1, - sym_type, - STATE(4619), 1, - sym_type_argument, - STATE(4714), 1, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4200), 6, + ACTIONS(5077), 4, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4760), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72180] = 17, + ACTIONS(5079), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [83417] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5660), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7066), 1, - anon_sym__, - ACTIONS(7068), 1, - anon_sym_POUND, - STATE(4532), 1, - sym_type, - STATE(4548), 1, - sym__static_type_identifier, - STATE(4619), 1, - sym_type_argument, - STATE(4714), 1, - sym_long_identifier, + ACTIONS(7763), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4201), 6, + STATE(4761), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72248] = 17, + aux_sym__function_or_value_defns_repeat1, + ACTIONS(5658), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [83470] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5651), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7064), 1, - anon_sym_LPAREN, - ACTIONS(7066), 1, - anon_sym__, - ACTIONS(7068), 1, - anon_sym_POUND, - STATE(4548), 1, - sym__static_type_identifier, - STATE(4573), 1, - sym_type, - STATE(4619), 1, - sym_type_argument, - STATE(4714), 1, - sym_long_identifier, + ACTIONS(7733), 1, + anon_sym_and, + STATE(4721), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4202), 6, + STATE(4762), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4687), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72316] = 17, + ACTIONS(5649), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [83525] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(7148), 1, - anon_sym_LPAREN, - ACTIONS(7150), 1, - anon_sym__, - ACTIONS(7152), 1, - anon_sym_POUND, - STATE(3197), 1, - sym__static_type_identifier, - STATE(3200), 1, - sym_type, - STATE(3222), 1, - sym_type_argument, - STATE(3253), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4203), 6, + STATE(4763), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3272), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72384] = 16, + ACTIONS(3287), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3285), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83576] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, - sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, + ACTIONS(7766), 1, + anon_sym_new, + ACTIONS(7772), 1, + anon_sym_static, + ACTIONS(7775), 1, + anon_sym_member, + ACTIONS(7778), 1, + anon_sym_abstract, + ACTIONS(7781), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5236), 1, + sym_member_defn, + STATE(5311), 1, + sym_additional_constr_defn, + STATE(5455), 1, + sym_attributes, + STATE(7955), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4514), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(7769), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5089), 3, + anon_sym_and, anon_sym_POUNDendif, - STATE(4204), 6, + anon_sym_POUNDelse, + STATE(4764), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4516), 9, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [72450] = 9, + aux_sym__member_defns_repeat1, + [83653] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4205), 6, + STATE(4765), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, + ACTIONS(3320), 8, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, anon_sym_POUNDelse, - ACTIONS(2924), 11, + ACTIONS(3318), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -424781,1622 +472265,1369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [72502] = 17, + [83704] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(409), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4206), 6, + STATE(4766), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72570] = 17, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2802), 1, + ACTIONS(3294), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3292), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, sym_identifier, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(807), 1, - sym_type, - STATE(823), 1, - sym__static_type_identifier, - STATE(840), 1, - sym_type_argument, - STATE(841), 1, - sym_long_identifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4207), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - STATE(845), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72638] = 17, + [83755] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5766), 1, - sym_identifier, - ACTIONS(7148), 1, - anon_sym_LPAREN, - ACTIONS(7150), 1, - anon_sym__, - ACTIONS(7152), 1, - anon_sym_POUND, - STATE(3197), 1, - sym__static_type_identifier, - STATE(3202), 1, - sym_type, - STATE(3222), 1, - sym_type_argument, - STATE(3253), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4208), 6, + STATE(4767), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3272), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72706] = 17, + ACTIONS(3306), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3304), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83806] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5766), 1, + ACTIONS(7538), 1, sym_identifier, - ACTIONS(7148), 1, - anon_sym_LPAREN, - ACTIONS(7150), 1, - anon_sym__, - ACTIONS(7152), 1, - anon_sym_POUND, - STATE(3197), 1, - sym__static_type_identifier, - STATE(3203), 1, - sym_type, - STATE(3222), 1, - sym_type_argument, - STATE(3253), 1, + ACTIONS(7784), 1, + anon_sym_DASH_GT, + ACTIONS(7786), 1, + anon_sym_when, + ACTIONS(7788), 1, + anon_sym_STAR, + ACTIONS(7790), 1, + anon_sym_LT2, + ACTIONS(7792), 1, + anon_sym_LBRACK_RBRACK, + STATE(4990), 1, + aux_sym__compound_type_repeat1, + STATE(5026), 1, sym_long_identifier, + STATE(5028), 1, + sym_type_arguments, + STATE(5658), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4209), 6, + ACTIONS(6256), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4768), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3272), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72774] = 17, + ACTIONS(6254), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [83877] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7162), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym__, - ACTIONS(7166), 1, - anon_sym_POUND, - STATE(823), 1, - sym__static_type_identifier, - STATE(840), 1, - sym_type_argument, - STATE(841), 1, - sym_long_identifier, - STATE(1099), 1, - sym_type, + ACTIONS(7794), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7168), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4210), 6, + STATE(4769), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(845), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72842] = 17, + ACTIONS(3353), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3351), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83930] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6328), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3637), 1, - sym_type, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, + ACTIONS(7439), 1, + anon_sym_STAR, + STATE(4771), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4211), 6, + STATE(4770), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72910] = 17, + ACTIONS(3214), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3212), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [83985] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(7020), 1, - anon_sym_LPAREN, - ACTIONS(7022), 1, - anon_sym__, - ACTIONS(7024), 1, - anon_sym_POUND, - STATE(3264), 1, - sym__static_type_identifier, - STATE(3313), 1, - sym_type_argument, - STATE(3347), 1, - sym_type, - STATE(3413), 1, - sym_long_identifier, + ACTIONS(7796), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4212), 6, + ACTIONS(3030), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + STATE(4771), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3403), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [72978] = 17, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84038] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, - sym_identifier, - ACTIONS(7140), 1, - anon_sym_LPAREN, - ACTIONS(7142), 1, - anon_sym__, - ACTIONS(7144), 1, - anon_sym_POUND, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3198), 1, - sym_type, - STATE(3223), 1, - sym_type_argument, - STATE(3273), 1, - sym_long_identifier, + ACTIONS(7236), 1, + anon_sym_new, + ACTIONS(7240), 1, + anon_sym_static, + ACTIONS(7242), 1, + anon_sym_member, + ACTIONS(7246), 1, + anon_sym_abstract, + ACTIONS(7248), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4764), 1, + aux_sym__member_defns_repeat1, + STATE(5236), 1, + sym_member_defn, + STATE(5311), 1, + sym_additional_constr_defn, + STATE(5455), 1, + sym_attributes, + STATE(7955), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4213), 6, + ACTIONS(7238), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5125), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4772), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73046] = 17, + [84115] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, - sym_identifier, - ACTIONS(7140), 1, - anon_sym_LPAREN, - ACTIONS(7142), 1, - anon_sym__, - ACTIONS(7144), 1, - anon_sym_POUND, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3196), 1, - sym_type, - STATE(3223), 1, - sym_type_argument, - STATE(3273), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4214), 6, + STATE(4773), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73114] = 17, + ACTIONS(3244), 9, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3242), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84166] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, - sym_identifier, - ACTIONS(7140), 1, - anon_sym_LPAREN, - ACTIONS(7142), 1, - anon_sym__, - ACTIONS(7144), 1, - anon_sym_POUND, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3201), 1, - sym_type, - STATE(3223), 1, - sym_type_argument, - STATE(3273), 1, - sym_long_identifier, + ACTIONS(7799), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4215), 6, + STATE(4774), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73182] = 17, + ACTIONS(3353), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3351), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84219] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4766), 1, - sym_type, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, + ACTIONS(7466), 1, + anon_sym_STAR, + STATE(4776), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4216), 6, + STATE(4775), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73250] = 17, + ACTIONS(3214), 7, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3212), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84274] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5797), 1, - sym_identifier, - ACTIONS(7140), 1, - anon_sym_LPAREN, - ACTIONS(7142), 1, - anon_sym__, - ACTIONS(7144), 1, - anon_sym_POUND, - STATE(3194), 1, - sym_type, - STATE(3195), 1, - sym__static_type_identifier, - STATE(3223), 1, - sym_type_argument, - STATE(3273), 1, - sym_long_identifier, + ACTIONS(7801), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4217), 6, + ACTIONS(3030), 7, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + STATE(4776), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3261), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73318] = 17, + aux_sym__compound_type_repeat1, + ACTIONS(3032), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84327] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, - anon_sym_LPAREN, - ACTIONS(7094), 1, - anon_sym__, - ACTIONS(7096), 1, - anon_sym_POUND, - STATE(2868), 1, - sym_type, - STATE(2878), 1, - sym__static_type_identifier, - STATE(2998), 1, - sym_type_argument, - STATE(3072), 1, - sym_long_identifier, + ACTIONS(7236), 1, + anon_sym_new, + ACTIONS(7240), 1, + anon_sym_static, + ACTIONS(7242), 1, + anon_sym_member, + ACTIONS(7246), 1, + anon_sym_abstract, + ACTIONS(7248), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4772), 1, + aux_sym__member_defns_repeat1, + STATE(5236), 1, + sym_member_defn, + STATE(5311), 1, + sym_additional_constr_defn, + STATE(5455), 1, + sym_attributes, + STATE(7955), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4218), 6, + ACTIONS(7238), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5040), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(4777), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73386] = 17, + [84404] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, - anon_sym_LPAREN, - ACTIONS(7094), 1, - anon_sym__, - ACTIONS(7096), 1, - anon_sym_POUND, - STATE(2878), 1, - sym__static_type_identifier, - STATE(2882), 1, - sym_type, - STATE(2998), 1, - sym_type_argument, - STATE(3072), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4219), 6, + STATE(4778), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73454] = 17, + ACTIONS(3302), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3300), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84455] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4726), 1, - sym_type, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4220), 6, + STATE(4779), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73522] = 17, + ACTIONS(3310), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3308), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84506] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4727), 1, - sym_type, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4221), 6, + STATE(4780), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73590] = 17, + ACTIONS(3324), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3322), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84557] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, - anon_sym_LPAREN, - ACTIONS(7094), 1, - anon_sym__, - ACTIONS(7096), 1, - anon_sym_POUND, - STATE(2878), 1, - sym__static_type_identifier, - STATE(2886), 1, - sym_type, - STATE(2998), 1, - sym_type_argument, - STATE(3072), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4222), 6, + STATE(4781), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73658] = 17, + ACTIONS(3244), 9, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3242), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84608] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5304), 1, - anon_sym_LPAREN, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5310), 1, - anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - STATE(4729), 1, - sym_type, - STATE(4814), 1, - sym__static_type_identifier, - STATE(4947), 1, - sym_type_argument, - STATE(5199), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4223), 6, + STATE(4782), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(5208), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73726] = 17, + ACTIONS(3338), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3336), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84659] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5133), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7092), 1, - anon_sym_LPAREN, - ACTIONS(7094), 1, - anon_sym__, - ACTIONS(7096), 1, - anon_sym_POUND, - STATE(2878), 1, - sym__static_type_identifier, - STATE(2881), 1, - sym_type, - STATE(2998), 1, - sym_type_argument, - STATE(3072), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4224), 6, + STATE(4783), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3059), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73794] = 17, + ACTIONS(3342), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3340), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84710] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7044), 1, - anon_sym_LPAREN, - ACTIONS(7046), 1, - anon_sym__, - ACTIONS(7048), 1, - anon_sym_POUND, - STATE(1097), 1, - sym_type, - STATE(1221), 1, - sym__static_type_identifier, - STATE(1494), 1, - sym_type_argument, - STATE(1495), 1, - sym_long_identifier, + ACTIONS(7804), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7050), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4225), 6, + STATE(4784), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1492), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73862] = 17, + ACTIONS(3357), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3355), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84763] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(423), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4226), 6, + STATE(4785), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73930] = 17, + ACTIONS(3353), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3351), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84814] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6328), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - sym_identifier, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3737), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4227), 6, + ACTIONS(7112), 2, + anon_sym_let, + anon_sym_LPAREN, + STATE(4786), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [73998] = 17, + ACTIONS(7114), 17, + anon_sym_module, + anon_sym_LBRACK_LT, + anon_sym_type, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym__, + anon_sym_new, + anon_sym_CARET, + anon_sym_SQUOTE, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [84865] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7044), 1, - anon_sym_LPAREN, - ACTIONS(7046), 1, - anon_sym__, - ACTIONS(7048), 1, - anon_sym_POUND, - STATE(1096), 1, - sym_type, - STATE(1221), 1, - sym__static_type_identifier, - STATE(1494), 1, - sym_type_argument, - STATE(1495), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7050), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4228), 6, + STATE(4787), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1492), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74066] = 17, + ACTIONS(3298), 8, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + ACTIONS(3296), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [84916] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7044), 1, - anon_sym_LPAREN, - ACTIONS(7046), 1, - anon_sym__, - ACTIONS(7048), 1, - anon_sym_POUND, - STATE(1006), 1, - sym_type, - STATE(1221), 1, - sym__static_type_identifier, - STATE(1494), 1, - sym_type_argument, - STATE(1495), 1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7050), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4229), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4979), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4788), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1492), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74134] = 17, + ACTIONS(4981), 8, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [84981] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3011), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7206), 1, - anon_sym_LPAREN, - ACTIONS(7208), 1, - anon_sym__, - ACTIONS(7210), 1, - anon_sym_POUND, - STATE(859), 1, - sym_type, - STATE(897), 1, - sym__static_type_identifier, - STATE(941), 1, - sym_type_argument, - STATE(942), 1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7212), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4230), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(4955), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4789), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(937), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74202] = 17, + ACTIONS(4957), 8, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [85046] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3011), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7206), 1, - anon_sym_LPAREN, - ACTIONS(7208), 1, - anon_sym__, - ACTIONS(7210), 1, - anon_sym_POUND, - STATE(853), 1, - sym_type, - STATE(897), 1, - sym__static_type_identifier, - STATE(941), 1, - sym_type_argument, - STATE(942), 1, - sym_long_identifier, + ACTIONS(7806), 1, + anon_sym_new, + ACTIONS(7812), 1, + anon_sym_static, + ACTIONS(7815), 1, + anon_sym_member, + ACTIONS(7818), 1, + anon_sym_abstract, + ACTIONS(7821), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5342), 1, + sym_member_defn, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5508), 1, + sym_attributes, + STATE(7834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7212), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4231), 6, + ACTIONS(5089), 2, + sym__newline, + sym__dedent, + ACTIONS(7809), 2, + anon_sym_default, + anon_sym_override, + STATE(4790), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(937), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74270] = 17, + aux_sym__member_defns_repeat1, + [85122] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3011), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5699), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7206), 1, - anon_sym_LPAREN, - ACTIONS(7208), 1, - anon_sym__, - ACTIONS(7210), 1, - anon_sym_POUND, - STATE(847), 1, - sym_type, - STATE(897), 1, - sym__static_type_identifier, - STATE(941), 1, - sym_type_argument, - STATE(942), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7212), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4232), 6, + STATE(4791), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(937), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74338] = 17, + ACTIONS(5697), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [85172] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3249), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7130), 1, - anon_sym_LPAREN, - ACTIONS(7132), 1, - anon_sym__, - ACTIONS(7134), 1, - anon_sym_POUND, - STATE(957), 1, - sym_type, - STATE(1111), 1, - sym__static_type_identifier, - STATE(1265), 1, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7824), 1, + anon_sym_DASH_GT, + ACTIONS(7826), 1, + anon_sym_STAR, + ACTIONS(7828), 1, + anon_sym_LT2, + ACTIONS(7830), 1, + anon_sym_LBRACK_RBRACK, + STATE(4992), 1, + aux_sym__compound_type_repeat1, + STATE(5043), 1, sym_long_identifier, - STATE(1271), 1, - sym_type_argument, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7136), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4233), 6, + ACTIONS(6293), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4792), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1274), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74406] = 17, + ACTIONS(6295), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [85238] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3249), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5593), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7130), 1, - anon_sym_LPAREN, - ACTIONS(7132), 1, - anon_sym__, - ACTIONS(7134), 1, - anon_sym_POUND, - STATE(955), 1, - sym_type, - STATE(1111), 1, - sym__static_type_identifier, - STATE(1265), 1, - sym_long_identifier, - STATE(1271), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7136), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4234), 6, + STATE(4793), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1274), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74474] = 17, + ACTIONS(5591), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85288] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3249), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5564), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7130), 1, - anon_sym_LPAREN, - ACTIONS(7132), 1, - anon_sym__, - ACTIONS(7134), 1, - anon_sym_POUND, - STATE(956), 1, - sym_type, - STATE(1111), 1, - sym__static_type_identifier, - STATE(1265), 1, - sym_long_identifier, - STATE(1271), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7136), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4235), 6, + STATE(4794), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1274), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74542] = 17, + ACTIONS(5562), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85338] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5508), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7084), 1, - anon_sym_LPAREN, - ACTIONS(7086), 1, - anon_sym__, - ACTIONS(7088), 1, - anon_sym_POUND, - STATE(1072), 1, - sym_type, - STATE(1253), 1, - sym__static_type_identifier, - STATE(1464), 1, - sym_long_identifier, - STATE(1467), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4236), 6, + STATE(4795), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1468), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74610] = 10, + ACTIONS(5506), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85388] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5484), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7214), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2902), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - STATE(4237), 7, + STATE(4796), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2900), 11, - anon_sym_and, - anon_sym_with, + ACTIONS(5482), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -426405,43 +473636,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [74664] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85438] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5392), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7186), 1, - anon_sym_DOT, - STATE(4237), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4238), 6, + STATE(4797), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 7, + ACTIONS(5390), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2966), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -426450,198 +473677,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [74720] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85488] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5396), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7084), 1, - anon_sym_LPAREN, - ACTIONS(7086), 1, - anon_sym__, - ACTIONS(7088), 1, - anon_sym_POUND, - STATE(1086), 1, - sym_type, - STATE(1253), 1, - sym__static_type_identifier, - STATE(1464), 1, - sym_long_identifier, - STATE(1467), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4239), 6, + STATE(4798), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1468), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74788] = 17, + ACTIONS(5394), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85538] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5400), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7084), 1, - anon_sym_LPAREN, - ACTIONS(7086), 1, - anon_sym__, - ACTIONS(7088), 1, - anon_sym_POUND, - STATE(1065), 1, - sym_type, - STATE(1253), 1, - sym__static_type_identifier, - STATE(1464), 1, - sym_long_identifier, - STATE(1467), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4240), 6, + STATE(4799), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1468), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74856] = 17, + ACTIONS(5398), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85588] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5599), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(407), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4241), 6, + STATE(4800), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [74924] = 12, + ACTIONS(5597), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85638] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7052), 1, - anon_sym_DOT, - STATE(4308), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4242), 6, + ACTIONS(5036), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4801), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2935), 9, - anon_sym_with, + ACTIONS(5038), 7, anon_sym_new, anon_sym_default, anon_sym_static, @@ -426649,538 +473853,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [74982] = 17, + [85704] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5488), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, - anon_sym_LPAREN, - ACTIONS(7114), 1, - anon_sym__, - ACTIONS(7116), 1, - anon_sym_POUND, - STATE(4485), 1, - sym_type, - STATE(4501), 1, - sym__static_type_identifier, - STATE(4612), 1, - sym_type_argument, - STATE(4631), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4243), 6, + STATE(4802), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4630), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75050] = 17, + ACTIONS(5486), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85754] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5079), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, - anon_sym_LPAREN, - ACTIONS(7114), 1, - anon_sym__, - ACTIONS(7116), 1, - anon_sym_POUND, - STATE(4493), 1, - sym_type, - STATE(4501), 1, - sym__static_type_identifier, - STATE(4612), 1, - sym_type_argument, - STATE(4631), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4244), 6, + STATE(4803), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4630), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75118] = 17, + ACTIONS(5077), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85804] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, + ACTIONS(7431), 1, sym_identifier, - ACTIONS(7112), 1, - anon_sym_LPAREN, - ACTIONS(7114), 1, - anon_sym__, - ACTIONS(7116), 1, - anon_sym_POUND, - STATE(4498), 1, - sym_type, - STATE(4501), 1, - sym__static_type_identifier, - STATE(4612), 1, - sym_type_argument, - STATE(4631), 1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4245), 6, + ACTIONS(5129), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4804), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4630), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75186] = 17, + ACTIONS(5131), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [85870] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5480), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, - anon_sym_LPAREN, - ACTIONS(7114), 1, - anon_sym__, - ACTIONS(7116), 1, - anon_sym_POUND, - STATE(4499), 1, - sym_type, - STATE(4501), 1, - sym__static_type_identifier, - STATE(4612), 1, - sym_type_argument, - STATE(4631), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4246), 6, + STATE(4805), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4630), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75254] = 17, + ACTIONS(5478), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [85920] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(416), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4247), 6, + ACTIONS(5069), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4806), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75322] = 17, + ACTIONS(5071), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [85986] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5131), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4494), 1, - sym_type, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4248), 6, + STATE(4807), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75390] = 17, + ACTIONS(5129), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86036] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5464), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4393), 1, - sym_type, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4249), 6, + STATE(4808), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75458] = 17, + ACTIONS(5462), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86086] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4484), 1, - sym_type, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, + ACTIONS(5860), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4250), 6, + STATE(4809), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75526] = 17, + ACTIONS(5858), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86136] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5442), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4478), 1, - sym_type, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4251), 6, + STATE(4810), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75594] = 9, + ACTIONS(5440), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86186] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5438), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4252), 6, + STATE(4811), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3528), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3530), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [75646] = 11, + ACTIONS(5436), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86236] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5074), 1, + ACTIONS(5678), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7217), 1, - anon_sym_interface, - STATE(4474), 1, - sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4253), 7, + STATE(4812), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - ACTIONS(5072), 16, + ACTIONS(5676), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -427190,6 +474312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, @@ -427197,268 +474320,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [75702] = 9, + [86286] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5075), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4254), 6, + STATE(4813), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2518), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(2520), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [75754] = 17, + ACTIONS(5073), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86336] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(412), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7824), 1, + anon_sym_DASH_GT, + ACTIONS(7826), 1, + anon_sym_STAR, + ACTIONS(7828), 1, + anon_sym_LT2, + ACTIONS(7830), 1, + anon_sym_LBRACK_RBRACK, + STATE(4992), 1, + aux_sym__compound_type_repeat1, + STATE(5043), 1, sym_long_identifier, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4255), 6, + ACTIONS(6285), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4814), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75822] = 9, + ACTIONS(6287), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [86402] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5504), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4256), 6, + STATE(4815), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3465), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3467), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [75874] = 9, + ACTIONS(5502), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86452] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5494), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4257), 6, + STATE(4816), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3461), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3463), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [75926] = 17, + ACTIONS(5492), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86502] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5468), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3351), 1, - sym_type, - STATE(3399), 1, - sym_type_argument, - STATE(3436), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4258), 6, + STATE(4817), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [75994] = 9, + ACTIONS(5466), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86552] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3167), 1, + ACTIONS(5454), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4259), 6, + STATE(4818), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 19, + ACTIONS(5452), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, - anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -427471,34 +474574,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [76046] = 11, + [86602] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5083), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4253), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4474), 1, - sym_interface_implementation, + ACTIONS(7183), 1, + anon_sym_new, + ACTIONS(7187), 1, + anon_sym_static, + ACTIONS(7189), 1, + anon_sym_member, + ACTIONS(7193), 1, + anon_sym_abstract, + ACTIONS(7195), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4821), 1, + aux_sym__member_defns_repeat1, + STATE(5350), 1, + sym_member_defn, + STATE(5359), 1, + sym_additional_constr_defn, + STATE(5475), 1, + sym_attributes, + STATE(8100), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4260), 6, + ACTIONS(7185), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5040), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(4819), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [86678] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7834), 1, + anon_sym_let, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4820), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5081), 17, + ACTIONS(7832), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -427516,714 +474669,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [76102] = 17, + [86728] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3904), 1, - sym_type, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, + ACTIONS(7183), 1, + anon_sym_new, + ACTIONS(7187), 1, + anon_sym_static, + ACTIONS(7189), 1, + anon_sym_member, + ACTIONS(7193), 1, + anon_sym_abstract, + ACTIONS(7195), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4826), 1, + aux_sym__member_defns_repeat1, + STATE(5350), 1, + sym_member_defn, + STATE(5359), 1, + sym_additional_constr_defn, + STATE(5475), 1, + sym_attributes, + STATE(8100), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4261), 6, + ACTIONS(7185), 2, + anon_sym_default, + anon_sym_override, + ACTIONS(5125), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(4821), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76170] = 17, + [86804] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3901), 1, - sym_type, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, + ACTIONS(7838), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4262), 6, + STATE(4822), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76238] = 17, + ACTIONS(7836), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86854] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, - sym_identifier, - STATE(3900), 1, - sym_type, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, - sym_long_identifier, + ACTIONS(7842), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4263), 6, + STATE(4823), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76306] = 17, + ACTIONS(7840), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [86904] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym__, - ACTIONS(7016), 1, - anon_sym_POUND, - STATE(3275), 1, - sym__static_type_identifier, - STATE(3352), 1, - sym_type, - STATE(3399), 1, - sym_type_argument, - STATE(3436), 1, - sym_long_identifier, + ACTIONS(7844), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4264), 6, + ACTIONS(3274), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4824), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3430), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76374] = 17, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [86956] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7198), 1, - anon_sym_LPAREN, - ACTIONS(7200), 1, - anon_sym__, - ACTIONS(7202), 1, - anon_sym_POUND, - STATE(4561), 1, - sym_type, - STATE(4564), 1, - sym__static_type_identifier, - STATE(4627), 1, - sym_type_argument, - STATE(4696), 1, - sym_long_identifier, + ACTIONS(7849), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4265), 6, + STATE(4825), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4692), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76442] = 9, + ACTIONS(7847), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87006] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7851), 1, + anon_sym_new, + ACTIONS(7857), 1, + anon_sym_static, + ACTIONS(7860), 1, + anon_sym_member, + ACTIONS(7863), 1, + anon_sym_abstract, + ACTIONS(7866), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5350), 1, + sym_member_defn, + STATE(5359), 1, + sym_additional_constr_defn, + STATE(5475), 1, + sym_attributes, + STATE(8100), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4266), 6, + ACTIONS(5089), 2, + anon_sym_and, + anon_sym_POUNDendif, + ACTIONS(7854), 2, + anon_sym_default, + anon_sym_override, + STATE(4826), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3451), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3453), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [76494] = 9, + aux_sym__member_defns_repeat1, + [87082] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4267), 6, + ACTIONS(5077), 3, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + STATE(4827), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3387), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3389), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [76546] = 9, + ACTIONS(5079), 7, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [87148] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7869), 1, + anon_sym_or, + STATE(4824), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4268), 6, + ACTIONS(3230), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4828), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3534), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3536), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3232), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [76598] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87202] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7871), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4269), 6, + ACTIONS(3274), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4829), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3375), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3377), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [76650] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87254] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7198), 1, - anon_sym_LPAREN, - ACTIONS(7200), 1, - anon_sym__, - ACTIONS(7202), 1, - anon_sym_POUND, - STATE(4549), 1, - sym_type, - STATE(4564), 1, - sym__static_type_identifier, - STATE(4627), 1, - sym_type_argument, - STATE(4696), 1, - sym_long_identifier, + ACTIONS(7874), 1, + anon_sym_or, + STATE(4829), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4270), 6, + ACTIONS(3230), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4830), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4692), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76718] = 17, + ACTIONS(3232), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87308] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, + ACTIONS(7538), 1, sym_identifier, - ACTIONS(7198), 1, - anon_sym_LPAREN, - ACTIONS(7200), 1, - anon_sym__, - ACTIONS(7202), 1, - anon_sym_POUND, - STATE(4546), 1, - sym_type, - STATE(4564), 1, - sym__static_type_identifier, - STATE(4627), 1, - sym_type_argument, - STATE(4696), 1, + ACTIONS(7784), 1, + anon_sym_DASH_GT, + ACTIONS(7788), 1, + anon_sym_STAR, + ACTIONS(7790), 1, + anon_sym_LT2, + ACTIONS(7792), 1, + anon_sym_LBRACK_RBRACK, + STATE(4990), 1, + aux_sym__compound_type_repeat1, + STATE(5026), 1, sym_long_identifier, + STATE(5028), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4271), 6, + ACTIONS(3012), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4831), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4692), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76786] = 17, + ACTIONS(3010), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87374] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, + ACTIONS(7538), 1, sym_identifier, - ACTIONS(7198), 1, - anon_sym_LPAREN, - ACTIONS(7200), 1, - anon_sym__, - ACTIONS(7202), 1, - anon_sym_POUND, - STATE(4538), 1, - sym_type, - STATE(4564), 1, - sym__static_type_identifier, - STATE(4627), 1, - sym_type_argument, - STATE(4696), 1, + ACTIONS(7784), 1, + anon_sym_DASH_GT, + ACTIONS(7788), 1, + anon_sym_STAR, + ACTIONS(7790), 1, + anon_sym_LT2, + ACTIONS(7792), 1, + anon_sym_LBRACK_RBRACK, + STATE(4990), 1, + aux_sym__compound_type_repeat1, + STATE(5026), 1, sym_long_identifier, + STATE(5028), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4272), 6, + ACTIONS(3032), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4832), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4692), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76854] = 17, + ACTIONS(3030), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87440] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(418), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7784), 1, + anon_sym_DASH_GT, + ACTIONS(7788), 1, + anon_sym_STAR, + ACTIONS(7790), 1, + anon_sym_LT2, + ACTIONS(7792), 1, + anon_sym_LBRACK_RBRACK, + STATE(4990), 1, + aux_sym__compound_type_repeat1, + STATE(5026), 1, sym_long_identifier, + STATE(5028), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4273), 6, + ACTIONS(3092), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4833), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [76922] = 9, + ACTIONS(3090), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87506] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(7876), 1, + anon_sym_when, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + STATE(5175), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4274), 6, + ACTIONS(6256), 2, + anon_sym_COLON, + anon_sym_as, + ACTIONS(6254), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4834), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3371), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3373), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [76974] = 9, + [87576] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7880), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4275), 6, + STATE(4835), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 9, + ACTIONS(7878), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2900), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428232,564 +475354,526 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [77026] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87626] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(415), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, + ACTIONS(7538), 1, + sym_identifier, + ACTIONS(7784), 1, + anon_sym_DASH_GT, + ACTIONS(7788), 1, + anon_sym_STAR, + ACTIONS(7790), 1, + anon_sym_LT2, + ACTIONS(7792), 1, + anon_sym_LBRACK_RBRACK, + STATE(4990), 1, + aux_sym__compound_type_repeat1, + STATE(5026), 1, sym_long_identifier, + STATE(5028), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4276), 6, + ACTIONS(3024), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + STATE(4836), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [77094] = 9, + ACTIONS(3022), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87692] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7869), 1, + anon_sym_or, + STATE(4828), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4277), 6, + ACTIONS(3242), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4837), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3356), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3358), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3244), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77146] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [87746] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3316), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7188), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - anon_sym__, - ACTIONS(7192), 1, - anon_sym_POUND, - STATE(1016), 1, - sym_type, - STATE(1248), 1, - sym__static_type_identifier, - STATE(1474), 1, - sym_type_argument, - STATE(1476), 1, - sym_long_identifier, + ACTIONS(7884), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7194), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4278), 6, + STATE(4838), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1473), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [77214] = 9, + ACTIONS(7882), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87796] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7888), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4279), 6, + STATE(4839), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3391), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3393), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77266] = 17, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4632), 4, + ACTIONS(7886), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4280), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4634), 8, - anon_sym_and, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [77334] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [87846] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(6733), 1, + anon_sym_member, + ACTIONS(6737), 1, + anon_sym_abstract, + ACTIONS(6739), 1, + anon_sym_val, + ACTIONS(7890), 1, + anon_sym_static, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4790), 1, + aux_sym__member_defns_repeat1, + STATE(5342), 1, + sym_member_defn, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5508), 1, + sym_attributes, + STATE(7834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4281), 6, + ACTIONS(5125), 2, + sym__newline, + sym__dedent, + ACTIONS(6729), 2, + anon_sym_default, + anon_sym_override, + STATE(4840), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3350), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3352), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77386] = 17, + [87924] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6322), 1, - anon_sym_LPAREN, - ACTIONS(6324), 1, - anon_sym__, - ACTIONS(6328), 1, - anon_sym_POUND, - ACTIONS(6491), 1, + ACTIONS(7548), 1, sym_identifier, - STATE(3672), 1, - sym__static_type_identifier, - STATE(3733), 1, - sym_type, - STATE(3798), 1, - sym_type_argument, - STATE(3802), 1, + ACTIONS(7824), 1, + anon_sym_DASH_GT, + ACTIONS(7826), 1, + anon_sym_STAR, + ACTIONS(7828), 1, + anon_sym_LT2, + ACTIONS(7830), 1, + anon_sym_LBRACK_RBRACK, + STATE(4992), 1, + aux_sym__compound_type_repeat1, + STATE(5043), 1, sym_long_identifier, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4282), 6, + ACTIONS(3012), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4841), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3814), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [77454] = 17, + ACTIONS(3010), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [87990] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(7548), 1, sym_identifier, - ACTIONS(6897), 1, + ACTIONS(7824), 1, anon_sym_DASH_GT, - ACTIONS(6899), 1, + ACTIONS(7826), 1, anon_sym_STAR, - ACTIONS(6901), 1, + ACTIONS(7828), 1, anon_sym_LT2, - ACTIONS(6903), 1, + ACTIONS(7830), 1, anon_sym_LBRACK_RBRACK, - STATE(4094), 1, + STATE(4992), 1, aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, + STATE(5043), 1, sym_long_identifier, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4624), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4283), 6, + ACTIONS(3032), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4842), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4626), 8, - anon_sym_and, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [77522] = 9, + ACTIONS(3030), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [88056] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4284), 6, + ACTIONS(6285), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4843), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3339), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3341), 11, + ACTIONS(6287), 7, anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77574] = 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [88122] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7824), 1, + anon_sym_DASH_GT, + ACTIONS(7826), 1, + anon_sym_STAR, + ACTIONS(7828), 1, + anon_sym_LT2, + ACTIONS(7830), 1, + anon_sym_LBRACK_RBRACK, + STATE(4992), 1, + aux_sym__compound_type_repeat1, + STATE(5043), 1, + sym_long_identifier, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4285), 6, + ACTIONS(3092), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4844), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3326), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3328), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77626] = 9, + ACTIONS(3090), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [88188] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7824), 1, + anon_sym_DASH_GT, + ACTIONS(7826), 1, + anon_sym_STAR, + ACTIONS(7828), 1, + anon_sym_LT2, + ACTIONS(7830), 1, + anon_sym_LBRACK_RBRACK, + STATE(4992), 1, + aux_sym__compound_type_repeat1, + STATE(5043), 1, + sym_long_identifier, + STATE(5045), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4286), 6, + ACTIONS(3024), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4845), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3312), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3314), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77678] = 17, + ACTIONS(3022), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [88254] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, + ACTIONS(7431), 1, sym_identifier, - ACTIONS(6897), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(6899), 1, + ACTIONS(7439), 1, anon_sym_STAR, - ACTIONS(6901), 1, + ACTIONS(7441), 1, anon_sym_LT2, - ACTIONS(6903), 1, + ACTIONS(7443), 1, anon_sym_LBRACK_RBRACK, - STATE(4094), 1, + STATE(4770), 1, aux_sym__compound_type_repeat1, - STATE(4333), 1, + STATE(4889), 1, sym_type_arguments, - STATE(4346), 1, + STATE(4895), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4659), 4, + ACTIONS(5073), 3, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4287), 6, + STATE(4846), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4661), 8, - anon_sym_and, + ACTIONS(5075), 7, anon_sym_new, anon_sym_default, anon_sym_static, @@ -428797,735 +475881,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [77746] = 9, + [88320] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4288), 6, + STATE(4847), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3469), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3471), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3320), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77798] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3318), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88370] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4289), 6, + STATE(4848), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3295), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3297), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3294), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77850] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3292), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88420] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7892), 1, + anon_sym_DASH_GT, + ACTIONS(7894), 1, + anon_sym_when, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_LT2, + ACTIONS(7900), 1, + anon_sym_LBRACK_RBRACK, + STATE(5068), 1, + aux_sym__compound_type_repeat1, + STATE(5084), 1, + sym_type_arguments, + STATE(5085), 1, + sym_long_identifier, + STATE(5175), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4290), 6, + ACTIONS(6256), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + ACTIONS(6254), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4849), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3288), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3290), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [77902] = 17, + [88490] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3919), 1, - sym__static_type_identifier, - STATE(3927), 1, - sym_type, - STATE(4364), 1, - sym_type_argument, - STATE(4472), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4291), 6, + STATE(4850), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [77970] = 9, + ACTIONS(3306), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3304), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88540] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7874), 1, + anon_sym_or, + STATE(4830), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4292), 6, + ACTIONS(3242), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4851), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3284), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3286), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3244), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78022] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [88594] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6897), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(4852), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3320), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - ACTIONS(6899), 1, anon_sym_STAR, - ACTIONS(6901), 1, anon_sym_LT2, - ACTIONS(6903), 1, anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, + ACTIONS(3318), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88644] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4584), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4293), 6, + STATE(4853), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4586), 8, - anon_sym_and, + ACTIONS(3294), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3292), 10, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [78090] = 17, + sym_identifier, + [88694] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3918), 1, - sym_type, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4364), 1, - sym_type_argument, - STATE(4472), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4294), 6, + STATE(4854), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [78158] = 17, + ACTIONS(3302), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3300), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88744] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3896), 1, - sym_type, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4364), 1, - sym_type_argument, - STATE(4472), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4295), 6, + STATE(4855), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [78226] = 17, + ACTIONS(3306), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3304), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88794] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5336), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5481), 1, - anon_sym_LPAREN, - ACTIONS(5483), 1, - anon_sym__, - ACTIONS(5491), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - sym_identifier, - STATE(3917), 1, - sym_type, - STATE(3919), 1, - sym__static_type_identifier, - STATE(4364), 1, - sym_type_argument, - STATE(4472), 1, - sym_long_identifier, + ACTIONS(7902), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4296), 6, + STATE(4856), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4475), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [78294] = 9, + ACTIONS(5334), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88846] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4297), 6, + STATE(4857), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3428), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3430), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3310), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78346] = 17, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3308), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88896] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5356), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, + ACTIONS(7904), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4655), 4, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4298), 6, + STATE(4858), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4657), 8, - anon_sym_and, + ACTIONS(5354), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [78414] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [88948] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4299), 6, + STATE(4859), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3280), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3282), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3298), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78466] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3296), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [88998] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4300), 6, + STATE(4860), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3276), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3278), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3324), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78518] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3322), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89048] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5368), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7906), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4301), 6, + STATE(4861), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3272), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3274), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78570] = 9, + ACTIONS(5366), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89100] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4302), 6, + STATE(4862), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3268), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3270), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3338), 8, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78622] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3336), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89150] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4303), 6, + STATE(4863), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 8, + ACTIONS(3342), 8, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2917), 12, - anon_sym_and, + ACTIONS(3340), 10, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -429533,91 +476593,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78674] = 17, + [89200] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3556), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5350), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7084), 1, - anon_sym_LPAREN, - ACTIONS(7086), 1, - anon_sym__, - ACTIONS(7088), 1, - anon_sym_POUND, - STATE(1069), 1, - sym_type, - STATE(1253), 1, - sym__static_type_identifier, - STATE(1464), 1, - sym_long_identifier, - STATE(1467), 1, - sym_type_argument, + ACTIONS(7908), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4304), 6, + STATE(4864), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1468), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [78742] = 10, + ACTIONS(5348), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89252] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7220), 1, - anon_sym_DOT, + ACTIONS(7910), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4305), 7, + STATE(4865), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 8, + ACTIONS(3357), 7, sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 10, + ACTIONS(3355), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -429628,85 +476677,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78796] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4306), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3262), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3264), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [78848] = 9, + [89304] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4307), 6, + STATE(4866), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 8, + ACTIONS(3353), 8, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3029), 12, - anon_sym_and, + ACTIONS(3351), 10, anon_sym_with, anon_sym_new, anon_sym_default, - anon_sym_or, anon_sym_static, anon_sym_member, anon_sym_interface, @@ -429714,41 +476718,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78900] = 11, + [89354] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7052), 1, - anon_sym_DOT, - STATE(4305), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4308), 6, + STATE(4867), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 8, - sym__newline, + ACTIONS(3320), 8, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2966), 10, + ACTIONS(3318), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -429759,42 +476759,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [78956] = 11, + [89404] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5374), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7186), 1, - anon_sym_DOT, - STATE(4238), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7912), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4309), 6, + STATE(4868), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 7, + ACTIONS(5372), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2935), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -429803,655 +476798,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79012] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89456] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6392), 1, - anon_sym_LPAREN, - ACTIONS(6394), 1, - anon_sym__, - ACTIONS(6396), 1, - anon_sym_POUND, - ACTIONS(6933), 1, + ACTIONS(6412), 1, sym_identifier, - STATE(3916), 1, - sym_type, - STATE(3922), 1, - sym__static_type_identifier, - STATE(4374), 1, - sym_type_argument, - STATE(4441), 1, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6418), 1, + anon_sym_LT2, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4310), 6, + ACTIONS(6293), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + STATE(4869), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4442), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79080] = 17, + ACTIONS(6295), 7, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [89522] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3096), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5374), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7178), 1, - anon_sym_LPAREN, - ACTIONS(7180), 1, - anon_sym__, - ACTIONS(7182), 1, - anon_sym_POUND, - STATE(895), 1, - sym_type, - STATE(977), 1, - sym__static_type_identifier, - STATE(1169), 1, - sym_type_argument, - STATE(1186), 1, - sym_long_identifier, + ACTIONS(7914), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7184), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4311), 6, + STATE(4870), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1171), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79148] = 17, + ACTIONS(5372), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89574] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3115), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7072), 1, - anon_sym_LPAREN, - ACTIONS(7074), 1, - anon_sym__, - ACTIONS(7076), 1, - anon_sym_POUND, - STATE(885), 1, - sym_type, - STATE(1020), 1, - sym__static_type_identifier, - STATE(1128), 1, - sym_long_identifier, - STATE(1129), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7078), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4312), 6, + STATE(4871), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1130), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79216] = 17, + ACTIONS(3294), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3292), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89624] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3115), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5342), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7072), 1, - anon_sym_LPAREN, - ACTIONS(7074), 1, - anon_sym__, - ACTIONS(7076), 1, - anon_sym_POUND, - STATE(907), 1, - sym_type, - STATE(1020), 1, - sym__static_type_identifier, - STATE(1128), 1, - sym_long_identifier, - STATE(1129), 1, - sym_type_argument, + ACTIONS(7916), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7078), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4313), 6, + STATE(4872), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1130), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79284] = 17, + ACTIONS(5340), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89676] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3115), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5342), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7072), 1, - anon_sym_LPAREN, - ACTIONS(7074), 1, - anon_sym__, - ACTIONS(7076), 1, - anon_sym_POUND, - STATE(910), 1, - sym_type, - STATE(1020), 1, - sym__static_type_identifier, - STATE(1128), 1, - sym_long_identifier, - STATE(1129), 1, - sym_type_argument, + ACTIONS(7918), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7078), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4314), 6, + STATE(4873), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(1130), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79352] = 17, + ACTIONS(5340), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [89728] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7102), 1, - anon_sym_LPAREN, - ACTIONS(7104), 1, - anon_sym__, - ACTIONS(7106), 1, - anon_sym_POUND, - STATE(4447), 1, - sym_type, - STATE(4463), 1, - sym__static_type_identifier, - STATE(4607), 1, - sym_type_argument, - STATE(4642), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4315), 6, + STATE(4874), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(4650), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79420] = 17, + ACTIONS(3302), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3300), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89778] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5213), 1, - sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7032), 1, - anon_sym_LPAREN, - ACTIONS(7034), 1, - anon_sym__, - ACTIONS(7036), 1, - anon_sym_POUND, - STATE(406), 1, - sym_type, - STATE(2898), 1, - sym__static_type_identifier, - STATE(3066), 1, - sym_type_argument, - STATE(3080), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(4316), 6, + STATE(4875), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - STATE(3093), 10, - sym__simple_type, - sym__generic_type, - sym__paren_type, - sym__function_type, - sym__compound_type, - sym__postfix_type, - sym__list_type, - sym__static_type, - sym__constrained_type, - sym__flexible_type, - [79488] = 9, + ACTIONS(3306), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3304), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89828] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4317), 6, + STATE(4876), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3413), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3415), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3310), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [79540] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3308), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89878] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(5868), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4318), 6, + STATE(4877), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3253), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3255), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [79592] = 9, + ACTIONS(5866), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [89928] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4319), 6, + STATE(4878), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3409), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3411), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3324), 7, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [79644] = 9, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3322), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [89978] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5350), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7920), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4320), 6, + STATE(4879), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3421), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3423), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [79696] = 9, + ACTIONS(5348), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [90030] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4321), 6, + STATE(4880), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3417), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3419), 11, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, + ACTIONS(3324), 8, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [79748] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3322), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [90080] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7223), 1, - anon_sym_STAR, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(6733), 1, + anon_sym_member, + ACTIONS(6737), 1, + anon_sym_abstract, + ACTIONS(6739), 1, + anon_sym_val, + ACTIONS(7890), 1, + anon_sym_static, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4840), 1, + aux_sym__member_defns_repeat1, + STATE(5342), 1, + sym_member_defn, + STATE(5387), 1, + sym_additional_constr_defn, + STATE(5508), 1, + sym_attributes, + STATE(7834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 7, + ACTIONS(5040), 2, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - STATE(4322), 7, + ACTIONS(6729), 2, + anon_sym_default, + anon_sym_override, + STATE(4881), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [79801] = 9, + [90158] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7924), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4323), 6, + STATE(4882), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 8, + ACTIONS(7922), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3021), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430460,39 +477397,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [79852] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [90208] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4324), 6, + STATE(4883), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 8, + ACTIONS(3342), 8, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3007), 11, - anon_sym_and, + ACTIONS(3340), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -430503,34 +477442,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [79903] = 9, + [90258] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5263), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7928), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4325), 6, + STATE(4884), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5261), 18, + ACTIONS(7926), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, - anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_new, @@ -430545,133 +477483,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDif, anon_sym_POUNDendif, anon_sym_POUNDelse, - [79954] = 22, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6676), 1, - anon_sym_new, - ACTIONS(6680), 1, - anon_sym_static, - ACTIONS(6682), 1, - anon_sym_member, - ACTIONS(6686), 1, - anon_sym_abstract, - ACTIONS(6688), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4335), 1, - aux_sym__member_defns_repeat1, - STATE(4837), 1, - sym_additional_constr_defn, - STATE(4850), 1, - sym_member_defn, - STATE(5062), 1, - sym_attributes, - STATE(7425), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6678), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4643), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4326), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [80031] = 9, + [90308] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6601), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(4327), 6, + STATE(4885), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6603), 17, - anon_sym_module, + ACTIONS(3302), 7, anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym__, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3300), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [80082] = 9, + sym_identifier, + [90358] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5270), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4328), 6, + STATE(4886), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5268), 18, - sym__newline, + ACTIONS(3310), 7, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3308), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430680,32 +477564,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [80133] = 9, + sym_identifier, + [90408] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4329), 6, + STATE(4887), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 8, + ACTIONS(3298), 7, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_DASH_GT, @@ -430713,8 +477594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3003), 11, + ACTIONS(3296), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -430726,88 +477606,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [80184] = 19, + [90458] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, + ACTIONS(7930), 1, anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7226), 1, - anon_sym_when, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, - STATE(4721), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5770), 2, - anon_sym_COLON, - anon_sym_as, - STATE(4330), 6, + STATE(4888), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5768), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(3357), 7, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [80255] = 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + ACTIONS(3355), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [90510] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5235), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4331), 6, + STATE(4889), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5233), 18, - sym__newline, + ACTIONS(3338), 8, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3336), 10, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -430816,74 +477688,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [80306] = 9, + sym_identifier, + [90560] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6605), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(4332), 6, + STATE(4890), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6607), 17, - anon_sym_module, + ACTIONS(3338), 7, anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym__, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + anon_sym_POUNDendif, + ACTIONS(3336), 11, + anon_sym_and, + anon_sym_with, anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [80357] = 9, + sym_identifier, + [90610] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4333), 6, + STATE(4891), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 8, + ACTIONS(3342), 7, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_DASH_GT, @@ -430891,8 +477759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3025), 11, + ACTIONS(3340), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -430904,38 +477771,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [80408] = 9, + [90660] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4334), 6, + STATE(4892), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 8, + ACTIONS(3353), 8, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_COLON_GT, + anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2924), 11, - anon_sym_and, + ACTIONS(3351), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -430946,83 +477812,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [80459] = 22, + [90710] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6676), 1, - anon_sym_new, - ACTIONS(6680), 1, - anon_sym_static, - ACTIONS(6682), 1, - anon_sym_member, - ACTIONS(6686), 1, - anon_sym_abstract, - ACTIONS(6688), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4339), 1, - aux_sym__member_defns_repeat1, - STATE(4837), 1, - sym_additional_constr_defn, - STATE(4850), 1, - sym_member_defn, - STATE(5062), 1, - sym_attributes, - STATE(7425), 1, - sym_access_modifier, + ACTIONS(7932), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6678), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4561), 4, + ACTIONS(3357), 6, anon_sym_LBRACK_LT, - anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4335), 6, + STATE(4893), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [80536] = 9, + ACTIONS(3355), 11, + anon_sym_and, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [90762] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4336), 6, + STATE(4894), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 8, + ACTIONS(3353), 7, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, anon_sym_DASH_GT, @@ -431030,8 +477883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_LBRACK_RBRACK, anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3017), 11, + ACTIONS(3351), 11, anon_sym_and, anon_sym_with, anon_sym_new, @@ -431043,91 +477895,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, sym_identifier, - [80587] = 19, + [90812] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_DASH_GT, - ACTIONS(7230), 1, - anon_sym_when, - ACTIONS(7232), 1, - anon_sym_STAR, - ACTIONS(7234), 1, - anon_sym_LT2, - ACTIONS(7236), 1, - anon_sym_LBRACK_RBRACK, - STATE(4608), 1, - aux_sym__compound_type_repeat1, - STATE(4643), 1, - sym_type_arguments, - STATE(4655), 1, - sym_long_identifier, - STATE(5251), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5770), 2, - anon_sym_COLON, - anon_sym_as, - STATE(4337), 6, + STATE(4895), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5768), 7, - sym__newline, + ACTIONS(3298), 8, sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [80658] = 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + ACTIONS(3296), 10, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [90862] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7936), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4338), 6, + STATE(4896), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 9, + ACTIONS(7934), 17, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431136,96 +477973,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80709] = 22, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [90912] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4596), 1, - anon_sym_LBRACK_LT, - ACTIONS(4599), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7238), 1, - anon_sym_new, - ACTIONS(7244), 1, - anon_sym_static, - ACTIONS(7247), 1, - anon_sym_member, - ACTIONS(7250), 1, - anon_sym_abstract, - ACTIONS(7253), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4837), 1, - sym_additional_constr_defn, - STATE(4850), 1, - sym_member_defn, - STATE(5062), 1, - sym_attributes, - STATE(7425), 1, - sym_access_modifier, + ACTIONS(7940), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7241), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4592), 3, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4339), 7, + STATE(4897), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [80786] = 10, + ACTIONS(7938), 17, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [90962] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7256), 1, - anon_sym_LT2, + ACTIONS(7944), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4340), 6, + STATE(4898), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 7, + ACTIONS(7942), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2990), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431234,40 +478055,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80839] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [91012] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7946), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4341), 6, + STATE(4899), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, + ACTIONS(6477), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(2986), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431276,38 +478096,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [80890] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [91062] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5126), 1, + ACTIONS(5717), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7258), 1, - anon_sym_and, - STATE(4369), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4342), 6, + STATE(4900), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5124), 16, + ACTIONS(5715), 17, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, + anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, anon_sym_new, @@ -431321,84 +478141,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [80945] = 12, + [91112] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5713), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6828), 1, - anon_sym_DOT, - STATE(4120), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4343), 6, + STATE(4901), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 7, - sym__dedent, + ACTIONS(5711), 17, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_and, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2935), 9, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81002] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91162] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5484), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4344), 6, + STATE(4902), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 9, - sym__dedent, + ACTIONS(5482), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2900), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431407,124 +478219,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81053] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91211] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_DASH_GT, + ACTIONS(7950), 1, + anon_sym_STAR, + ACTIONS(7952), 1, + anon_sym_LT2, + ACTIONS(7954), 1, + anon_sym_LBRACK_RBRACK, + STATE(5063), 1, + aux_sym__compound_type_repeat1, + STATE(5088), 1, + sym_long_identifier, + STATE(5090), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4345), 6, + ACTIONS(3024), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(3022), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4903), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2924), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [81104] = 9, + [91276] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7956), 1, + anon_sym_or, + STATE(4920), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4346), 6, + ACTIONS(3242), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4904), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3244), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3033), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [81155] = 9, + [91329] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7880), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4347), 6, + STATE(4905), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 8, + ACTIONS(7878), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3013), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431533,90 +478349,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81206] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91378] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7607), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7948), 1, anon_sym_DASH_GT, - ACTIONS(6937), 1, + ACTIONS(7950), 1, anon_sym_STAR, - ACTIONS(6939), 1, + ACTIONS(7952), 1, anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(7954), 1, anon_sym_LBRACK_RBRACK, - STATE(4375), 1, + STATE(5063), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5088), 1, sym_long_identifier, - STATE(4436), 1, + STATE(5090), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4584), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4348), 6, + ACTIONS(3032), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(3030), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4906), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4586), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81273] = 9, + [91443] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7884), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4349), 6, + STATE(4907), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 8, + ACTIONS(7882), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3043), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -431625,78 +478437,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [81324] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [91492] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7958), 1, + anon_sym_DOT, + STATE(4973), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4350), 6, + ACTIONS(3257), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4908), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 8, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3259), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - ACTIONS(3047), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [81375] = 11, + [91545] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5074), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7260), 1, - anon_sym_interface, - STATE(4540), 1, - sym_interface_implementation, + ACTIONS(7888), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4351), 7, + STATE(4909), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - ACTIONS(5072), 15, + ACTIONS(7886), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431706,40 +478515,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [81430] = 11, + [91594] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_DASH_GT, + ACTIONS(7950), 1, + anon_sym_STAR, + ACTIONS(7952), 1, + anon_sym_LT2, + ACTIONS(7954), 1, + anon_sym_LBRACK_RBRACK, + STATE(5063), 1, + aux_sym__compound_type_repeat1, + STATE(5088), 1, + sym_long_identifier, + STATE(5090), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3092), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(3090), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4910), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [91659] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7960), 1, + anon_sym_or, + STATE(4916), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3230), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4911), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3232), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [91712] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5083), 1, + ACTIONS(5454), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4351), 1, - aux_sym__object_expression_inner_repeat1, - STATE(4540), 1, - sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4352), 6, + STATE(4912), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5081), 16, + ACTIONS(5452), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -431756,275 +478652,489 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [81485] = 17, + [91761] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, + ACTIONS(7699), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7892), 1, anon_sym_DASH_GT, - ACTIONS(6937), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(6939), 1, + ACTIONS(7898), 1, anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(7900), 1, anon_sym_LBRACK_RBRACK, - STATE(4375), 1, + STATE(5068), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5084), 1, + sym_type_arguments, + STATE(5085), 1, sym_long_identifier, - STATE(4436), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3092), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + ACTIONS(3090), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4913), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [91826] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7892), 1, + anon_sym_DASH_GT, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_LT2, + ACTIONS(7900), 1, + anon_sym_LBRACK_RBRACK, + STATE(5068), 1, + aux_sym__compound_type_repeat1, + STATE(5084), 1, sym_type_arguments, + STATE(5085), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4659), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4353), 6, + ACTIONS(3032), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + ACTIONS(3030), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4914), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4661), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81552] = 17, + [91891] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7607), 1, sym_identifier, - ACTIONS(6965), 1, + ACTIONS(7948), 1, anon_sym_DASH_GT, - ACTIONS(6967), 1, + ACTIONS(7950), 1, anon_sym_STAR, - ACTIONS(6969), 1, + ACTIONS(7952), 1, anon_sym_LT2, - ACTIONS(6971), 1, + ACTIONS(7954), 1, anon_sym_LBRACK_RBRACK, - STATE(4384), 1, + STATE(5063), 1, aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5088), 1, sym_long_identifier, - STATE(4418), 1, + STATE(5090), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4632), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4354), 6, + ACTIONS(6293), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(6295), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4915), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4634), 8, - anon_sym_and, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81619] = 9, + [91956] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7962), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6624), 2, - anon_sym_let, - anon_sym_LPAREN, - STATE(4355), 6, + ACTIONS(3274), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4916), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6626), 17, - anon_sym_module, - anon_sym_LBRACK_LT, - anon_sym_type, - anon_sym_do, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [92007] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_DASH_GT, + ACTIONS(7950), 1, + anon_sym_STAR, + ACTIONS(7952), 1, + anon_sym_LT2, + ACTIONS(7954), 1, + anon_sym_LBRACK_RBRACK, + STATE(5063), 1, + aux_sym__compound_type_repeat1, + STATE(5088), 1, + sym_long_identifier, + STATE(5090), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6285), 4, + anon_sym_COLON, anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym__, - anon_sym_new, - anon_sym_CARET, - anon_sym_SQUOTE, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81670] = 17, + anon_sym_as, + anon_sym_in, + ACTIONS(6287), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4917), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [92072] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7699), 1, sym_identifier, - ACTIONS(6965), 1, + ACTIONS(7892), 1, anon_sym_DASH_GT, - ACTIONS(6967), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(6969), 1, + ACTIONS(7898), 1, anon_sym_LT2, - ACTIONS(6971), 1, + ACTIONS(7900), 1, anon_sym_LBRACK_RBRACK, - STATE(4384), 1, + STATE(5068), 1, aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5084), 1, + sym_type_arguments, + STATE(5085), 1, sym_long_identifier, - STATE(4418), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3012), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + ACTIONS(3010), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4918), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [92137] = 17, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7699), 1, + sym_identifier, + ACTIONS(7892), 1, + anon_sym_DASH_GT, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_LT2, + ACTIONS(7900), 1, + anon_sym_LBRACK_RBRACK, + STATE(5068), 1, + aux_sym__compound_type_repeat1, + STATE(5084), 1, sym_type_arguments, + STATE(5085), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3024), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + ACTIONS(3022), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4919), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [92202] = 11, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7956), 1, + anon_sym_or, + STATE(4924), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3230), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4920), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3232), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [92255] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7849), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4624), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4356), 6, + STATE(4921), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4626), 8, - anon_sym_and, + ACTIONS(7847), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [81737] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92304] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, + ACTIONS(7548), 1, sym_identifier, - ACTIONS(6965), 1, + ACTIONS(7824), 1, anon_sym_DASH_GT, - ACTIONS(6967), 1, + ACTIONS(7826), 1, anon_sym_STAR, - ACTIONS(6969), 1, + ACTIONS(7828), 1, anon_sym_LT2, - ACTIONS(6971), 1, + ACTIONS(7830), 1, anon_sym_LBRACK_RBRACK, - STATE(4384), 1, + STATE(4992), 1, aux_sym__compound_type_repeat1, - STATE(4405), 1, + STATE(5043), 1, sym_long_identifier, - STATE(4418), 1, + STATE(5045), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4659), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4357), 6, + ACTIONS(6310), 2, + anon_sym_COLON, + anon_sym_as, + STATE(4922), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4661), 8, - anon_sym_and, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81804] = 10, + ACTIONS(6308), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [92369] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5197), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7263), 1, - anon_sym_and, + ACTIONS(7842), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4358), 7, + STATE(4923), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - ACTIONS(5195), 16, + ACTIONS(7840), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432041,317 +479151,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [81857] = 17, + [92418] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, + ACTIONS(7965), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4624), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4359), 6, + ACTIONS(3274), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(4924), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4626), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [81924] = 17, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [92469] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, - sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, + ACTIONS(7838), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4584), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4360), 6, + STATE(4925), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4586), 8, - anon_sym_and, + ACTIONS(7836), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [81991] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92518] = 23, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5125), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, - sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4954), 1, + aux_sym__member_defns_repeat1, + STATE(5431), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4655), 3, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_POUNDendif, - STATE(4361), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4926), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4657), 8, - anon_sym_and, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [82058] = 17, + [92595] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, + ACTIONS(7834), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4632), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4362), 6, + STATE(4927), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4634), 7, + ACTIONS(7832), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [82125] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92644] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, + STATE(5175), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4363), 6, + ACTIONS(6256), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + ACTIONS(6254), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + STATE(4928), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3477), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3479), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [82176] = 10, + [92709] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7266), 1, - anon_sym_COLON_GT, + ACTIONS(7960), 1, + anon_sym_or, + STATE(4911), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4364), 6, + ACTIONS(3242), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4929), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3244), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2986), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [82229] = 10, + [92762] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4862), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7268), 1, - anon_sym_COMMA, + ACTIONS(5860), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4365), 6, + STATE(4930), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 17, + ACTIONS(5858), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432368,77 +479456,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82282] = 11, + [92811] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6924), 1, - anon_sym_STAR, - STATE(4322), 1, - aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4366), 6, + STATE(4931), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 7, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2970), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(3306), 8, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + ACTIONS(3304), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [82337] = 10, + [92860] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4862), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7270), 1, - anon_sym_COMMA, + ACTIONS(7936), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4367), 6, + STATE(4932), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 17, + ACTIONS(7934), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432455,85 +479536,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82390] = 17, + [92909] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, + ACTIONS(7944), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4655), 4, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4368), 6, + STATE(4933), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4657), 7, + ACTIONS(7942), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [82457] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [92958] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5181), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7258), 1, - anon_sym_and, - STATE(4358), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(5868), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4369), 6, + STATE(4934), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5179), 16, + ACTIONS(5866), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432550,32 +479616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [82512] = 10, + [93007] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4894), 1, + ACTIONS(5468), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7272), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4370), 6, + STATE(4935), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 17, + ACTIONS(5466), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432592,75 +479656,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82565] = 9, + [93056] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5494), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4371), 6, + STATE(4936), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3443), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3445), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [82616] = 10, + ACTIONS(5492), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93105] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4894), 1, + ACTIONS(5504), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7274), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4372), 6, + STATE(4937), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 17, + ACTIONS(5502), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432677,41 +479736,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82669] = 10, + [93154] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5075), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7276), 1, - anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 7, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - STATE(4373), 7, + STATE(4938), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 10, - anon_sym_with, + ACTIONS(5073), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -432720,41 +479773,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82722] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93203] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5678), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7279), 1, - anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4374), 6, + STATE(4939), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, + ACTIONS(5676), 16, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2986), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -432763,125 +479813,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [82775] = 11, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93252] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6937), 1, - anon_sym_STAR, - STATE(4373), 1, - aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4375), 6, + ACTIONS(3274), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + STATE(4940), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 7, + ACTIONS(3276), 12, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2970), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [82830] = 10, + [93301] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7281), 1, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6350), 1, anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 6, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(6285), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + ACTIONS(6287), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - STATE(4376), 7, + STATE(4941), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2810), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [82883] = 9, + [93364] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3167), 1, + ACTIONS(5438), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4377), 6, + STATE(4942), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 18, + ACTIONS(5436), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, - anon_sym_and, anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -432893,32 +479943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - [82934] = 10, + [93413] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4868), 1, + ACTIONS(5442), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7284), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4378), 6, + STATE(4943), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 17, + ACTIONS(5440), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432935,33 +479983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [82987] = 10, + [93462] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4904), 1, + ACTIONS(5593), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7286), 1, - anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4379), 6, + STATE(4944), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 17, + ACTIONS(5591), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -432978,82 +480023,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83040] = 9, + [93511] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5464), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4380), 6, + STATE(4945), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3512), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3514), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [83091] = 9, + ACTIONS(5462), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93560] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5131), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4381), 6, + STATE(4946), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - sym__dedent, + ACTIONS(5129), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(2924), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433062,82 +480100,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83142] = 16, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93609] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5480), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4508), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4382), 6, + STATE(4947), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4510), 8, - anon_sym_with, + ACTIONS(5478), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, + anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [83207] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93658] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4880), 1, + ACTIONS(5079), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7288), 1, - anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4383), 6, + STATE(4948), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 17, + ACTIONS(5077), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433154,42 +480183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83260] = 11, + [93707] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5488), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6967), 1, - anon_sym_STAR, - STATE(4376), 1, - aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2972), 6, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - STATE(4384), 6, + STATE(4949), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2970), 11, - anon_sym_and, - anon_sym_with, + ACTIONS(5486), 16, + sym__newline, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433198,40 +480220,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83315] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93756] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5599), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4385), 6, + STATE(4950), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 8, + ACTIONS(5597), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2900), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433240,118 +480260,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83366] = 10, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [93805] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7290), 1, - anon_sym_COLON_GT, + ACTIONS(7968), 1, + anon_sym_DOT, + STATE(4967), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4386), 6, + ACTIONS(3257), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4951), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3259), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2986), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [83419] = 9, + [93858] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_DASH_GT, + ACTIONS(7950), 1, + anon_sym_STAR, + ACTIONS(7952), 1, + anon_sym_LT2, + ACTIONS(7954), 1, + anon_sym_LBRACK_RBRACK, + STATE(5063), 1, + aux_sym__compound_type_repeat1, + STATE(5088), 1, + sym_long_identifier, + STATE(5090), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4387), 6, + ACTIONS(3012), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + ACTIONS(3010), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4952), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3397), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3399), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [83470] = 10, + [93923] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4868), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7292), 1, - anon_sym_COMMA, + ACTIONS(7946), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4388), 6, + STATE(4953), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 17, + ACTIONS(6477), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433368,82 +480393,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83523] = 16, + [93972] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5089), 1, + sym__dedent, + ACTIONS(5093), 1, + anon_sym_LBRACK_LT, + ACTIONS(5096), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(7970), 1, + anon_sym_new, + ACTIONS(7976), 1, + anon_sym_static, + ACTIONS(7979), 1, + anon_sym_member, + ACTIONS(7982), 1, + anon_sym_abstract, + ACTIONS(7985), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5431), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(4514), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4389), 6, + ACTIONS(7973), 2, + anon_sym_default, + anon_sym_override, + STATE(4954), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4516), 8, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [83588] = 10, + aux_sym__member_defns_repeat1, + [94047] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4888), 1, + ACTIONS(5396), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7294), 1, - anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4390), 6, + STATE(4955), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 17, + ACTIONS(5394), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433460,81 +480486,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [83641] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4391), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3346), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - ACTIONS(3348), 10, - anon_sym_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - anon_sym_LT2, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - [83692] = 9, + [94096] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7924), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4392), 6, + STATE(4956), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 8, - sym__dedent, + ACTIONS(7922), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3013), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433543,88 +480523,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83742] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [94145] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5392), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, - anon_sym_STAR, - ACTIONS(7300), 1, - anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4393), 6, + STATE(4957), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2808), 7, + ACTIONS(5390), 16, sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [83808] = 9, + anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [94194] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5400), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4394), 6, + STATE(4958), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 8, + ACTIONS(5398), 16, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3043), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433633,184 +480603,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [83858] = 17, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [94243] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, + ACTIONS(6346), 1, sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, + ACTIONS(6350), 1, anon_sym_STAR, - ACTIONS(6926), 1, + ACTIONS(6352), 1, anon_sym_LT2, - ACTIONS(6928), 1, + ACTIONS(6354), 1, anon_sym_LBRACK_RBRACK, - STATE(4366), 1, + STATE(3693), 1, aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, + STATE(3790), 1, sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4632), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4395), 6, + ACTIONS(6293), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_when, + ACTIONS(6295), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + STATE(4959), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4634), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [83924] = 9, + [94306] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7988), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4396), 6, + ACTIONS(3285), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4960), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3043), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [83974] = 23, + [94357] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(6253), 1, - anon_sym_member, - ACTIONS(6257), 1, - anon_sym_abstract, - ACTIONS(6259), 1, - anon_sym_val, - ACTIONS(7304), 1, - anon_sym_static, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4411), 1, - aux_sym__member_defns_repeat1, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(4994), 1, - sym_member_defn, - STATE(5020), 1, - sym_attributes, - STATE(7304), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4643), 2, - sym__newline, - sym__dedent, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(4397), 6, + ACTIONS(3274), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + anon_sym_or, + sym_identifier, + STATE(4961), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [84052] = 9, + ACTIONS(3276), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [94406] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5508), 1, + anon_sym_let, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4398), 6, + STATE(4962), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 7, + ACTIONS(5506), 16, + sym__newline, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3013), 11, - anon_sym_and, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -433819,31 +480771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [84102] = 9, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [94455] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5036), 1, + ACTIONS(5564), 1, anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4399), 6, + STATE(4963), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5034), 17, + ACTIONS(5562), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -433860,86 +480814,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84152] = 17, + [94504] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4624), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4400), 6, + STATE(4964), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4626), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [84218] = 10, + ACTIONS(3320), 8, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + ACTIONS(3318), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, + sym_identifier, + [94553] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7306), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 4, + ACTIONS(3361), 5, anon_sym_COLON, anon_sym_as, anon_sym_when, + anon_sym_or, sym_identifier, - STATE(4401), 7, + STATE(4965), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 12, + ACTIONS(3363), 12, sym__newline, sym__dedent, anon_sym_COMMA, @@ -433952,79 +480894,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [84270] = 11, + [94602] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7309), 1, - anon_sym_or, - STATE(4401), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2941), 4, + ACTIONS(6293), 3, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4402), 6, + STATE(4966), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 12, - sym__newline, - sym__dedent, + ACTIONS(6295), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [84324] = 10, + [94665] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7311), 1, - anon_sym_or, + ACTIONS(7968), 1, + anon_sym_DOT, + STATE(4960), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 4, + ACTIONS(3202), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4403), 7, + STATE(4967), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 12, + ACTIONS(3204), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -434032,160 +480979,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [84376] = 11, + [94718] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7314), 1, - anon_sym_or, - STATE(4403), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 1, + anon_sym_DASH_GT, + ACTIONS(6416), 1, + anon_sym_STAR, + ACTIONS(6420), 1, + anon_sym_LBRACK_RBRACK, + STATE(3766), 1, + aux_sym__compound_type_repeat1, + STATE(3818), 1, + sym_type_arguments, + STATE(3890), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2941), 4, + ACTIONS(6285), 3, anon_sym_COLON, anon_sym_and, anon_sym_as, - sym_identifier, - STATE(4404), 6, + STATE(4968), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 12, - sym__newline, - sym__dedent, + ACTIONS(6287), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [84430] = 9, + [94781] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4405), 6, + ACTIONS(3361), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_or, + sym_identifier, + STATE(4969), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3363), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3033), 11, - anon_sym_and, - anon_sym_with, + [94830] = 23, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5040), 1, + sym__dedent, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - sym_identifier, - [84480] = 9, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4926), 1, + aux_sym__member_defns_repeat1, + STATE(5431), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7901), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4970), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [94907] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7991), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4406), 6, + ACTIONS(3285), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4971), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3003), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [84530] = 9, + [94958] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5024), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7928), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4407), 6, + STATE(4972), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 17, + ACTIONS(7926), 16, sym__newline, anon_sym_LBRACK_LT, anon_sym_do, @@ -434202,129 +481205,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inherit, anon_sym_POUNDif, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84580] = 17, + [95007] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(7958), 1, + anon_sym_DOT, + STATE(4971), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4659), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4408), 6, + ACTIONS(3202), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4973), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4661), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [84646] = 9, + ACTIONS(3204), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95060] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4409), 6, + STATE(4974), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3021), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, + ACTIONS(3294), 8, + anon_sym_LBRACK_PIPE, + anon_sym_LBRACE, + aux_sym_char_token1, + anon_sym_AT_DQUOTE, + anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_unit, + sym_xint, + ACTIONS(3292), 9, + anon_sym_LPAREN, + anon_sym_null, + anon_sym__, + anon_sym_LBRACK, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DQUOTE, + sym_bool, + sym_int, sym_identifier, - [84696] = 9, + [95109] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7940), 1, + anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4410), 6, + STATE(4975), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 8, + ACTIONS(7938), 16, sym__newline, - sym__dedent, anon_sym_LBRACK_LT, + anon_sym_do, + anon_sym_let_BANG, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3013), 10, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -434333,542 +481324,505 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [84746] = 23, + anon_sym_inherit, + anon_sym_POUNDif, + anon_sym_POUNDendif, + [95158] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3274), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(6253), 1, - anon_sym_member, - ACTIONS(6257), 1, - anon_sym_abstract, - ACTIONS(6259), 1, - anon_sym_val, - ACTIONS(7304), 1, - anon_sym_static, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4420), 1, - aux_sym__member_defns_repeat1, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(4994), 1, - sym_member_defn, - STATE(5020), 1, - sym_attributes, - STATE(7304), 1, - sym_access_modifier, + ACTIONS(7994), 1, + anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4561), 2, - sym__newline, - sym__dedent, - ACTIONS(6249), 2, - anon_sym_default, - anon_sym_override, - STATE(4411), 6, + STATE(4976), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [84824] = 19, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [95208] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_DASH_GT, - ACTIONS(7318), 1, - anon_sym_when, - ACTIONS(7320), 1, + ACTIONS(7997), 1, anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_LT2, - ACTIONS(7324), 1, - anon_sym_LBRACK_RBRACK, - STATE(4640), 1, - aux_sym__compound_type_repeat1, - STATE(4680), 1, - sym_long_identifier, - STATE(4707), 1, - sym_type_arguments, - STATE(4721), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5770), 3, + ACTIONS(3032), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_in, - ACTIONS(5768), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4412), 6, + sym_identifier, + STATE(4977), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [84894] = 9, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 10, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95258] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7328), 1, - anon_sym_let, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7170), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4413), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4978), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7326), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84944] = 9, + [95332] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3387), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7332), 1, - anon_sym_let, + ACTIONS(8000), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4414), 6, + STATE(4979), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7330), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [84994] = 9, + ACTIONS(3389), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + anon_sym_f, + aux_sym_decimal_token1, + [95382] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4990), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4415), 6, + ACTIONS(3285), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4980), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4988), 17, + ACTIONS(3287), 12, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85044] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95430] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5190), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8002), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4416), 6, + ACTIONS(3351), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4981), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5188), 17, + ACTIONS(3353), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85094] = 17, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95480] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, + ACTIONS(8004), 1, anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4584), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4417), 6, + ACTIONS(3032), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4982), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4586), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [85160] = 9, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 10, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95530] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4418), 6, + ACTIONS(3242), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4983), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3244), 12, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3025), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [85210] = 9, + [95578] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3230), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8007), 1, + anon_sym_or, + STATE(4976), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4419), 6, + STATE(4984), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3232), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3033), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [85260] = 22, + [95630] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4596), 1, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - ACTIONS(4599), 1, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7334), 1, + ACTIONS(7286), 1, anon_sym_new, - ACTIONS(7340), 1, + ACTIONS(7290), 1, anon_sym_static, - ACTIONS(7343), 1, + ACTIONS(7292), 1, anon_sym_member, - ACTIONS(7346), 1, + ACTIONS(7296), 1, anon_sym_abstract, - ACTIONS(7349), 1, + ACTIONS(7298), 1, anon_sym_val, - STATE(3899), 1, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(4327), 1, + STATE(4720), 1, sym_attribute_set, - STATE(4987), 1, - sym_additional_constr_defn, - STATE(4994), 1, + STATE(4970), 1, sym_member_defn, - STATE(5020), 1, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, sym_attributes, - STATE(7304), 1, + STATE(7475), 1, + sym__member_defns, + STATE(7901), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4592), 2, - sym__newline, - sym__dedent, - ACTIONS(7337), 2, + ACTIONS(7288), 2, anon_sym_default, anon_sym_override, - STATE(4420), 7, + STATE(4985), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [85336] = 17, + [95704] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3242), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(8007), 1, + anon_sym_or, + STATE(4984), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4655), 3, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - STATE(4421), 6, + STATE(4986), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4657), 7, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [85402] = 9, + ACTIONS(3244), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [95756] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7344), 1, + anon_sym_EQ, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(8009), 1, + anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4422), 6, + STATE(4987), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 7, + ACTIONS(7346), 13, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3017), 11, - anon_sym_and, + anon_sym_PIPE, anon_sym_with, anon_sym_new, anon_sym_default, @@ -434878,38 +481832,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [85452] = 9, + [95808] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3259), 1, + anon_sym_LT2, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + ACTIONS(8013), 1, + anon_sym_LPAREN, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4423), 6, + STATE(4988), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 8, - sym__newline, - sym__dedent, + ACTIONS(8011), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3007), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -434919,250 +481874,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [85502] = 17, + [95862] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5782), 3, + ACTIONS(3242), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4424), 6, + anon_sym_when, + sym_identifier, + STATE(4989), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5784), 7, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3244), 12, + sym__newline, + sym__dedent, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [85568] = 9, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95910] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5402), 1, - anon_sym_let, + ACTIONS(7788), 1, + anon_sym_STAR, + STATE(4982), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4425), 6, + ACTIONS(3212), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4990), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5400), 17, + ACTIONS(3214), 10, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85618] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [95962] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4962), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4426), 6, + ACTIONS(3285), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(4991), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 17, + ACTIONS(3287), 12, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85668] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96010] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7352), 1, - anon_sym_let, + ACTIONS(7826), 1, + anon_sym_STAR, + STATE(4977), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4427), 6, + ACTIONS(3212), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4992), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5974), 17, + ACTIONS(3214), 10, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85718] = 10, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96062] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7354), 1, - anon_sym_LT2, + ACTIONS(8015), 1, + anon_sym_y, + ACTIONS(8017), 1, + anon_sym_uy, + ACTIONS(8019), 1, + anon_sym_s, + ACTIONS(8021), 1, + anon_sym_us, + ACTIONS(8023), 1, + anon_sym_l, + ACTIONS(8025), 1, + aux_sym_uint32_token1, + ACTIONS(8027), 1, + anon_sym_n, + ACTIONS(8029), 1, + anon_sym_un, + ACTIONS(8031), 1, + anon_sym_L, + ACTIONS(8033), 1, + aux_sym_uint64_token1, + ACTIONS(8035), 1, + aux_sym_bignum_token1, + ACTIONS(8037), 1, + aux_sym_decimal_token1, + ACTIONS(8039), 1, + anon_sym_DOT2, + ACTIONS(8041), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2992), 6, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - STATE(4428), 6, + ACTIONS(2770), 2, + sym__dedent, + anon_sym_PIPE, + STATE(4993), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2990), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [85770] = 9, + [96136] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4657), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3259), 1, + anon_sym_LT2, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + ACTIONS(8045), 1, + anon_sym_LPAREN, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4429), 6, + STATE(4994), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 17, - sym__newline, + ACTIONS(8043), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -435171,162 +482128,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85820] = 9, + [96190] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7607), 1, + sym_identifier, + ACTIONS(7948), 1, + anon_sym_DASH_GT, + ACTIONS(7950), 1, + anon_sym_STAR, + ACTIONS(7952), 1, + anon_sym_LT2, + ACTIONS(7954), 1, + anon_sym_LBRACK_RBRACK, + STATE(5063), 1, + aux_sym__compound_type_repeat1, + STATE(5088), 1, + sym_long_identifier, + STATE(5090), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4430), 6, + ACTIONS(6310), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + ACTIONS(6308), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(4995), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3033), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [85870] = 9, + [96254] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7295), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4431), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(4996), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3005), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3003), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [85920] = 9, + sym_fsi_directive_decl, + sym_preproc_line, + [96328] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5418), 1, - anon_sym_let, + ACTIONS(8047), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4432), 6, + ACTIONS(3351), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(4997), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5416), 17, + ACTIONS(3353), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [85970] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96378] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3259), 1, + anon_sym_LT2, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7358), 1, - anon_sym_let, + ACTIONS(7273), 1, + anon_sym_DOT, + ACTIONS(8051), 1, + anon_sym_LPAREN, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4433), 6, + STATE(4998), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7356), 17, - sym__newline, + ACTIONS(8049), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -435335,709 +482309,784 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86020] = 10, + [96432] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4862), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7360), 1, - anon_sym_COMMA, + ACTIONS(8053), 1, + anon_sym_DOT, + STATE(5002), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4434), 6, + ACTIONS(3257), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(4999), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [86072] = 9, + ACTIONS(3259), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96484] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8055), 1, + anon_sym_DOT, + STATE(5010), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4435), 6, + ACTIONS(3257), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5000), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3259), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(2986), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86122] = 9, + [96536] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3417), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8057), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4436), 6, + STATE(5001), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3419), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3025), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86172] = 9, + anon_sym_f, + aux_sym_decimal_token1, + [96586] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8053), 1, + anon_sym_DOT, + STATE(5015), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4437), 6, + ACTIONS(3202), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5002), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3204), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3017), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86222] = 10, + [96638] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4862), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7362), 1, - anon_sym_COMMA, + ACTIONS(8059), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4438), 6, + ACTIONS(3285), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5003), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [86274] = 9, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [96688] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4980), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7901), 1, + sym_access_modifier, + STATE(8079), 1, + sym__member_defns, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4439), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(5004), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4978), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86324] = 9, + [96762] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4586), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7567), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4440), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(5005), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86374] = 10, + [96836] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7364), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4441), 6, + ACTIONS(3361), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + anon_sym_or, + sym_identifier, + STATE(5006), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 7, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3363), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2990), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86426] = 9, + [96884] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4442), 6, + ACTIONS(3274), 6, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + anon_sym_or, + sym_identifier, + STATE(5007), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3276), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2986), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86476] = 9, + [96932] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7388), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4443), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(5008), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 8, - sym__dedent, + [97006] = 22, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3047), 10, - anon_sym_with, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, anon_sym_new, - anon_sym_default, + ACTIONS(7290), 1, anon_sym_static, + ACTIONS(7292), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(7296), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(7298), 1, anon_sym_val, - sym_identifier, - [86526] = 9, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7750), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(5009), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [97080] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8055), 1, + anon_sym_DOT, + STATE(5003), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4444), 6, + ACTIONS(3202), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5010), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3204), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3043), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86576] = 9, + [97132] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4445), 6, + ACTIONS(3274), 6, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + anon_sym_or, + sym_identifier, + STATE(5011), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3276), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3021), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86626] = 9, + [97180] = 22, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4984), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(7290), 1, + anon_sym_static, + ACTIONS(7292), 1, + anon_sym_member, + ACTIONS(7296), 1, + anon_sym_abstract, + ACTIONS(7298), 1, + anon_sym_val, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4970), 1, + sym_member_defn, + STATE(5476), 1, + sym_additional_constr_defn, + STATE(5592), 1, + sym_attributes, + STATE(7251), 1, + sym__member_defns, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4446), 6, + ACTIONS(7288), 2, + anon_sym_default, + anon_sym_override, + STATE(5012), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86676] = 17, + [97254] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, - anon_sym_STAR, - ACTIONS(7300), 1, - anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5782), 3, + ACTIONS(3361), 6, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4447), 6, + anon_sym_in, + anon_sym_or, + sym_identifier, + STATE(5013), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5784), 7, - sym__newline, - sym__dedent, + ACTIONS(3363), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [86742] = 10, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97302] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4894), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7366), 1, - anon_sym_COMMA, + ACTIONS(6346), 1, + sym_identifier, + ACTIONS(6348), 1, + anon_sym_DASH_GT, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6352), 1, + anon_sym_LT2, + ACTIONS(6354), 1, + anon_sym_LBRACK_RBRACK, + STATE(3693), 1, + aux_sym__compound_type_repeat1, + STATE(3790), 1, + sym_type_arguments, + STATE(3802), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4448), 6, + ACTIONS(6310), 3, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + ACTIONS(6308), 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(5014), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [86794] = 9, + [97366] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4998), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8062), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4449), 6, + ACTIONS(3285), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5015), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4996), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86844] = 10, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97416] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4894), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7368), 1, - anon_sym_COMMA, + ACTIONS(8067), 1, + anon_sym_COLON, + ACTIONS(8069), 1, + anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4450), 6, + STATE(5016), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 16, - sym__newline, + ACTIONS(8065), 13, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -436046,380 +483095,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [86896] = 9, + [97465] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4994), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8071), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4451), 6, + ACTIONS(3032), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5017), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4992), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [86946] = 9, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97514] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4452), 6, + ACTIONS(3285), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5018), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3287), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3007), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [86996] = 9, + [97561] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5113), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4453), 6, + ACTIONS(3285), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5019), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5111), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87046] = 9, + ACTIONS(3287), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97608] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3257), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8074), 1, + anon_sym_DOT, + STATE(5058), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4454), 6, + STATE(5020), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3259), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3047), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87096] = 9, + [97659] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4455), 6, + ACTIONS(3304), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5021), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3306), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3007), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87146] = 9, + [97706] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4661), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4456), 6, + ACTIONS(3318), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5022), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 17, + ACTIONS(3320), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87196] = 10, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97753] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4868), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7370), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4457), 6, + ACTIONS(3292), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5023), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 16, + ACTIONS(3294), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [87248] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97800] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4458), 6, + ACTIONS(3300), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5024), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 7, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3302), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - anon_sym_POUNDendif, - ACTIONS(3021), 11, - anon_sym_and, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87298] = 17, + [97847] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, - anon_sym_STAR, - ACTIONS(7300), 1, - anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5806), 3, + ACTIONS(3308), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4459), 6, + anon_sym_when, + sym_identifier, + STATE(5025), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5808), 7, + ACTIONS(3310), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -436427,161 +483436,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [87364] = 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [97894] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4460), 6, + ACTIONS(3296), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5026), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 8, + ACTIONS(3298), 11, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3003), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87414] = 9, + [97941] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4461), 6, + ACTIONS(3322), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5027), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 8, + ACTIONS(3324), 11, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(3047), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87464] = 10, + [97988] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4868), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7372), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4462), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4866), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [87516] = 11, + aux_sym_preproc_line_token1, + ACTIONS(3336), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5028), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3338), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98035] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7314), 1, - anon_sym_or, - STATE(4404), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 4, + ACTIONS(3340), 4, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_when, sym_identifier, - STATE(4463), 6, + STATE(5029), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 12, + ACTIONS(3342), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -436589,83 +483588,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [87570] = 9, + [98082] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5004), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(5953), 1, + anon_sym_LBRACK_LT, + STATE(5066), 1, + aux_sym_attributes_repeat1, + STATE(5160), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4464), 6, + ACTIONS(7282), 2, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(5030), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5002), 17, - sym__newline, - anon_sym_LBRACK_LT, + ACTIONS(7280), 10, anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + anon_sym_let, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87620] = 9, + sym_identifier, + [98135] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8045), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, + anon_sym_LT2, + STATE(5208), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4465), 6, + STATE(5031), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 8, - sym__dedent, + ACTIONS(8043), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3025), 10, anon_sym_with, anon_sym_new, anon_sym_default, @@ -436675,161 +483673,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [87670] = 9, + [98186] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3387), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4466), 6, + STATE(5032), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 8, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + ACTIONS(3389), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - ACTIONS(3017), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [87720] = 9, + anon_sym_f, + aux_sym_decimal_token1, + [98233] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5083), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8078), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4467), 6, + ACTIONS(3355), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5033), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5081), 17, + ACTIONS(3357), 10, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87770] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [98282] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4966), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4468), 6, + ACTIONS(3351), 4, + anon_sym_COLON, + anon_sym_as, + anon_sym_when, + sym_identifier, + STATE(5034), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 17, + ACTIONS(3353), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87820] = 10, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98329] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4888), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7374), 1, - anon_sym_with, + ACTIONS(8013), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, + anon_sym_LT2, + STATE(5206), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4469), 6, + STATE(5035), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 16, - sym__newline, + ACTIONS(8011), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -436838,38 +483828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [87872] = 9, + [98380] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4970), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8051), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, + anon_sym_LT2, + STATE(5177), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4470), 6, + STATE(5036), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 17, - sym__newline, + ACTIONS(8049), 12, + anon_sym_EQ, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -436878,353 +483868,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87922] = 9, + [98431] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5014), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3361), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4471), 6, + STATE(5037), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [87972] = 10, + ACTIONS(3363), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + anon_sym_or, + [98478] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7376), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4472), 6, + ACTIONS(3318), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5038), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 7, + ACTIONS(3320), 11, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2990), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [88024] = 9, + [98525] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4952), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4473), 6, + ACTIONS(3292), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5039), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 17, + ACTIONS(3294), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88074] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98572] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5117), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4474), 6, + ACTIONS(3300), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5040), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5115), 17, + ACTIONS(3302), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88124] = 9, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98619] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4475), 6, + ACTIONS(3304), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5041), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, + ACTIONS(3306), 11, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - ACTIONS(2986), 10, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [88174] = 22, + [98666] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6694), 1, - anon_sym_new, - ACTIONS(6698), 1, - anon_sym_static, - ACTIONS(6700), 1, - anon_sym_member, - ACTIONS(6704), 1, - anon_sym_abstract, - ACTIONS(6706), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4481), 1, - aux_sym__member_defns_repeat1, - STATE(4936), 1, - sym_additional_constr_defn, - STATE(4943), 1, - sym_member_defn, - STATE(5047), 1, - sym_attributes, - STATE(7570), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6696), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4561), 3, - anon_sym_LBRACK_LT, + ACTIONS(3308), 4, + anon_sym_COLON, anon_sym_and, - anon_sym_POUNDendif, - STATE(4476), 6, + anon_sym_as, + sym_identifier, + STATE(5042), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [88250] = 9, + ACTIONS(3310), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98713] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7380), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4477), 6, + ACTIONS(3296), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5043), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7378), 17, + ACTIONS(3298), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88300] = 17, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98760] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3322), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, sym_identifier, - ACTIONS(7296), 1, + STATE(5044), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3324), 11, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_DASH_GT, - ACTIONS(7298), 1, anon_sym_STAR, - ACTIONS(7300), 1, anon_sym_LT2, - ACTIONS(7302), 1, anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, + [98807] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2850), 3, + ACTIONS(3336), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4478), 6, + sym_identifier, + STATE(5045), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2848), 7, + ACTIONS(3338), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -437232,227 +484206,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [88366] = 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98854] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3274), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7384), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4479), 6, + STATE(5046), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7382), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88416] = 9, + ACTIONS(3276), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + anon_sym_or, + [98901] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5235), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4480), 6, + ACTIONS(3340), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + sym_identifier, + STATE(5047), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5233), 17, + ACTIONS(3342), 11, sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [88466] = 22, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [98948] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4596), 1, - anon_sym_LBRACK_LT, - ACTIONS(4599), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7386), 1, - anon_sym_new, - ACTIONS(7392), 1, - anon_sym_static, - ACTIONS(7395), 1, - anon_sym_member, - ACTIONS(7398), 1, - anon_sym_abstract, - ACTIONS(7401), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4936), 1, - sym_additional_constr_defn, - STATE(4943), 1, - sym_member_defn, - STATE(5047), 1, - sym_attributes, - STATE(7570), 1, - sym_access_modifier, + ACTIONS(7374), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_DASH_GT, + ACTIONS(7378), 1, + anon_sym_STAR, + ACTIONS(7380), 1, + anon_sym_LT2, + ACTIONS(7382), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8080), 1, + anon_sym_with, + STATE(4395), 1, + aux_sym__compound_type_repeat1, + STATE(4782), 1, + sym_type_arguments, + STATE(4787), 1, + sym_long_identifier, + STATE(6033), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4592), 2, + ACTIONS(5190), 2, anon_sym_and, + anon_sym_interface, + ACTIONS(5188), 3, + anon_sym_LBRACK_LT, anon_sym_POUNDendif, - ACTIONS(7389), 2, - anon_sym_default, - anon_sym_override, - STATE(4481), 7, + anon_sym_POUNDelse, + STATE(5048), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [88542] = 22, + [99015] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6694), 1, - anon_sym_new, - ACTIONS(6698), 1, - anon_sym_static, - ACTIONS(6700), 1, - anon_sym_member, - ACTIONS(6704), 1, - anon_sym_abstract, - ACTIONS(6706), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4476), 1, - aux_sym__member_defns_repeat1, - STATE(4936), 1, - sym_additional_constr_defn, - STATE(4943), 1, - sym_member_defn, - STATE(5047), 1, - sym_attributes, - STATE(7570), 1, - sym_access_modifier, + ACTIONS(7045), 1, + aux_sym_decimal_token1, + ACTIONS(7207), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6696), 2, - anon_sym_default, - anon_sym_override, - ACTIONS(4643), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(4482), 6, + STATE(5049), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [88618] = 10, + ACTIONS(2770), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [99066] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4880), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7404), 1, - anon_sym_with, + ACTIONS(8084), 1, + anon_sym_STAR, + STATE(5061), 1, + aux_sym_union_type_fields_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4483), 6, + STATE(5050), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 16, - sym__newline, + ACTIONS(8082), 13, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -437461,51 +484413,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [88670] = 17, + [99115] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, - anon_sym_STAR, - ACTIONS(7300), 1, + ACTIONS(8086), 1, anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2814), 3, + ACTIONS(3355), 4, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4484), 6, + sym_identifier, + STATE(5051), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2812), 7, + ACTIONS(3357), 10, sym__newline, sym__dedent, anon_sym_COMMA, @@ -437513,48 +484449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [88736] = 17, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [99164] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_DASH_GT, - ACTIONS(7232), 1, - anon_sym_STAR, - ACTIONS(7234), 1, - anon_sym_LT2, - ACTIONS(7236), 1, - anon_sym_LBRACK_RBRACK, - STATE(4608), 1, - aux_sym__compound_type_repeat1, - STATE(4643), 1, - sym_type_arguments, - STATE(4655), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2806), 3, + ACTIONS(3351), 4, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4485), 6, + sym_identifier, + STATE(5052), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2804), 7, + ACTIONS(3353), 11, sym__newline, sym__dedent, anon_sym_COMMA, @@ -437562,35 +484486,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [88802] = 9, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99211] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4958), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(8009), 1, + anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4486), 6, + STATE(5053), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 17, - sym__newline, + ACTIONS(7346), 13, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -437599,245 +484529,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88852] = 9, + [99260] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7408), 1, - anon_sym_let, + ACTIONS(6778), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4487), 6, + STATE(5054), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7406), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88902] = 9, + ACTIONS(6780), 14, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99307] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7412), 1, - anon_sym_let, + ACTIONS(6782), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4488), 6, + STATE(5055), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7410), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [88952] = 9, + ACTIONS(6784), 14, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99354] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5270), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3285), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8088), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4489), 6, + STATE(5056), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5268), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [99403] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5057), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6629), 14, + anon_sym_EQ, anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89002] = 10, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99450] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4904), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7414), 1, - anon_sym_with, + ACTIONS(8074), 1, + anon_sym_DOT, + STATE(5056), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4490), 6, + STATE(5058), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + ACTIONS(3204), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [99501] = 21, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(5969), 1, anon_sym_new, - anon_sym_default, + ACTIONS(8091), 1, + sym_identifier, + ACTIONS(8093), 1, + anon_sym_do, + ACTIONS(8097), 1, anon_sym_static, + ACTIONS(8099), 1, anon_sym_member, - anon_sym_interface, + ACTIONS(8101), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(8103), 1, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89054] = 9, + STATE(5346), 1, + sym_additional_constr_defn, + STATE(6659), 1, + sym_function_or_value_defn, + STATE(7834), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8095), 2, + anon_sym_default, + anon_sym_override, + STATE(5059), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [99572] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7418), 1, - anon_sym_let, + ACTIONS(6293), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4491), 6, + STATE(5060), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7416), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [89104] = 9, + ACTIONS(6295), 14, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99619] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7422), 1, - anon_sym_let, + ACTIONS(8084), 1, + anon_sym_STAR, + STATE(5073), 1, + aux_sym_union_type_fields_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4492), 6, + STATE(5061), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7420), 17, - sym__newline, + ACTIONS(8105), 13, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -437846,542 +484849,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [89154] = 17, + [99668] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_DASH_GT, - ACTIONS(7232), 1, - anon_sym_STAR, - ACTIONS(7234), 1, - anon_sym_LT2, - ACTIONS(7236), 1, - anon_sym_LBRACK_RBRACK, - STATE(4608), 1, - aux_sym__compound_type_repeat1, - STATE(4643), 1, - sym_type_arguments, - STATE(4655), 1, - sym_long_identifier, + ACTIONS(8107), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 3, + ACTIONS(3351), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, - STATE(4493), 6, + anon_sym_in, + sym_identifier, + STATE(5062), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2808), 7, - sym__newline, - sym__dedent, + ACTIONS(3353), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89220] = 17, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99717] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, + ACTIONS(7950), 1, anon_sym_STAR, - ACTIONS(7300), 1, - anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, + STATE(5070), 1, aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2806), 3, + ACTIONS(3212), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4494), 6, + anon_sym_in, + sym_identifier, + STATE(5063), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2804), 7, - sym__newline, - sym__dedent, + ACTIONS(3214), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89286] = 19, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99768] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7424), 1, - anon_sym_when, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, - STATE(4721), 1, - sym_type_argument_constraints, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5770), 2, - anon_sym_COLON, - anon_sym_as, - ACTIONS(5768), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4495), 6, + STATE(5064), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [89356] = 17, + ACTIONS(3453), 14, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + anon_sym_f, + aux_sym_decimal_token1, + [99815] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6019), 1, - anon_sym_LT2, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, + ACTIONS(6798), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5806), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - STATE(4496), 6, + STATE(5065), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5808), 7, + ACTIONS(6800), 14, anon_sym_EQ, + anon_sym_and, + anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89422] = 9, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [99862] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5263), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8109), 1, + anon_sym_LBRACK_LT, + STATE(5160), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4497), 6, + ACTIONS(7005), 2, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(5066), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5261), 17, - sym__newline, - anon_sym_LBRACK_LT, + aux_sym_attributes_repeat1, + ACTIONS(7000), 10, anon_sym_do, - anon_sym_and, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + anon_sym_let, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89472] = 17, + sym_identifier, + [99913] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_DASH_GT, - ACTIONS(7232), 1, - anon_sym_STAR, - ACTIONS(7234), 1, - anon_sym_LT2, - ACTIONS(7236), 1, - anon_sym_LBRACK_RBRACK, - STATE(4608), 1, - aux_sym__compound_type_repeat1, - STATE(4643), 1, - sym_type_arguments, - STATE(4655), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2814), 3, + ACTIONS(3242), 5, anon_sym_COLON, anon_sym_as, + anon_sym_in, anon_sym_when, - STATE(4498), 6, + sym_identifier, + STATE(5067), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2812), 7, - sym__newline, - sym__dedent, + ACTIONS(3244), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89538] = 17, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [99960] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_DASH_GT, - ACTIONS(7232), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(7234), 1, - anon_sym_LT2, - ACTIONS(7236), 1, - anon_sym_LBRACK_RBRACK, - STATE(4608), 1, + STATE(5017), 1, aux_sym__compound_type_repeat1, - STATE(4643), 1, - sym_type_arguments, - STATE(4655), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2850), 3, + ACTIONS(3212), 5, anon_sym_COLON, anon_sym_as, + anon_sym_in, anon_sym_when, - STATE(4499), 6, + sym_identifier, + STATE(5068), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2848), 7, - sym__newline, - sym__dedent, + ACTIONS(3214), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [89604] = 9, + anon_sym_DASH_GT, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100011] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7428), 1, - anon_sym_let, + ACTIONS(6285), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4500), 6, + STATE(5069), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7426), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [89654] = 11, + ACTIONS(6287), 14, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [100058] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7309), 1, - anon_sym_or, - STATE(4402), 1, - aux_sym_type_argument_repeat1, + ACTIONS(8112), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 4, + ACTIONS(3032), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - STATE(4501), 6, + STATE(5070), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 12, - sym__newline, - sym__dedent, + aux_sym__compound_type_repeat1, + ACTIONS(3030), 8, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [89708] = 9, + [100107] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7432), 1, - anon_sym_let, + ACTIONS(6790), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4502), 6, + STATE(5071), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7430), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [89758] = 9, + ACTIONS(6792), 14, + anon_sym_EQ, + anon_sym_and, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [100154] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7436), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4503), 6, + ACTIONS(3242), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5072), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7434), 17, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [89808] = 9, + ACTIONS(3244), 10, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100201] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7328), 1, - anon_sym_let, + ACTIONS(8117), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4504), 6, + STATE(5073), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7326), 16, - sym__newline, + aux_sym_union_type_fields_repeat1, + ACTIONS(8115), 13, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -438390,159 +485313,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89857] = 9, + [100248] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7358), 1, - anon_sym_let, + ACTIONS(8120), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4505), 6, + ACTIONS(3351), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5074), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7356), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89906] = 9, + ACTIONS(3353), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100297] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4952), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8122), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4506), 6, + ACTIONS(3355), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5075), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [89955] = 9, + ACTIONS(3357), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [100345] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5004), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4507), 6, + ACTIONS(3351), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5076), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5002), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90004] = 9, + ACTIONS(3353), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100391] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5036), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4508), 6, + STATE(5077), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5034), 16, - sym__newline, + ACTIONS(8115), 14, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, + anon_sym_STAR, anon_sym_default, anon_sym_static, anon_sym_member, @@ -438550,248 +485463,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90053] = 16, + [100435] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5782), 3, + ACTIONS(3292), 5, anon_sym_COLON, anon_sym_and, anon_sym_as, - STATE(4509), 6, + anon_sym_in, + sym_identifier, + STATE(5078), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5784), 7, - anon_sym_EQ, + ACTIONS(3294), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [90116] = 9, + anon_sym_LBRACK_RBRACK, + [100481] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5024), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4510), 6, + ACTIONS(3318), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5079), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90165] = 9, + ACTIONS(3320), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100527] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4990), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4511), 6, + ACTIONS(3300), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5080), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4988), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90214] = 9, + ACTIONS(3302), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100573] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5190), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4512), 6, + ACTIONS(3304), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5081), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5188), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90263] = 9, + ACTIONS(3306), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100619] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5083), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4513), 6, + ACTIONS(3308), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5082), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5081), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90312] = 10, + ACTIONS(3310), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100665] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7438), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 4, + ACTIONS(3340), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, + anon_sym_when, sym_identifier, - STATE(4514), 7, + STATE(5083), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 11, - sym__newline, - sym__dedent, + ACTIONS(3342), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -438801,39 +485685,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90363] = 11, + [100711] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7441), 1, - anon_sym_DOT, - STATE(4522), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2966), 4, + ACTIONS(3336), 5, anon_sym_COLON, anon_sym_as, + anon_sym_in, anon_sym_when, sym_identifier, - STATE(4515), 6, + STATE(5084), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 11, - sym__newline, - sym__dedent, + ACTIONS(3338), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -438843,79 +485722,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90416] = 9, + [100757] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4962), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4516), 6, + ACTIONS(3296), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5085), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90465] = 11, + ACTIONS(3298), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100803] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7443), 1, - anon_sym_DOT, - STATE(4514), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2966), 4, + ACTIONS(3322), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, + anon_sym_in, + anon_sym_when, sym_identifier, - STATE(4517), 6, + STATE(5086), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 11, - sym__newline, - sym__dedent, + ACTIONS(3324), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -438925,212 +485796,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90518] = 16, + [100849] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6013), 1, - sym_identifier, - ACTIONS(6015), 1, - anon_sym_DASH_GT, - ACTIONS(6017), 1, - anon_sym_STAR, - ACTIONS(6021), 1, - anon_sym_LBRACK_RBRACK, - STATE(3418), 1, - aux_sym__compound_type_repeat1, - STATE(3456), 1, - sym_type_arguments, - STATE(3493), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5806), 3, + ACTIONS(3308), 5, anon_sym_COLON, - anon_sym_and, anon_sym_as, - STATE(4518), 6, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5087), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5808), 7, - anon_sym_EQ, + ACTIONS(3310), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_LT2, - [90581] = 9, + anon_sym_LBRACK_RBRACK, + [100895] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7352), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4519), 6, + ACTIONS(3296), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5088), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5974), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90630] = 9, + ACTIONS(3298), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100941] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4657), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4520), 6, + ACTIONS(3304), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5089), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90679] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5782), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_when, - ACTIONS(5784), 6, + ACTIONS(3306), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, anon_sym_DASH_GT, - STATE(4521), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [90742] = 10, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [100987] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7445), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 4, + ACTIONS(3336), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, - anon_sym_when, + anon_sym_in, sym_identifier, - STATE(4522), 7, + STATE(5090), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 11, - sym__newline, - sym__dedent, + ACTIONS(3338), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -439140,119 +485944,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90793] = 9, + [101033] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4980), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4523), 6, + ACTIONS(3340), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5091), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4978), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90842] = 9, + ACTIONS(3342), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101079] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4586), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8124), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4524), 6, + ACTIONS(3355), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5092), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90891] = 11, + ACTIONS(3357), 8, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LBRACK_RBRACK, + [101127] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7441), 1, - anon_sym_DOT, - STATE(4515), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2935), 4, + ACTIONS(3300), 5, anon_sym_COLON, anon_sym_as, + anon_sym_in, anon_sym_when, sym_identifier, - STATE(4525), 6, + STATE(5093), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 11, - sym__newline, - sym__dedent, + ACTIONS(3302), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, @@ -439262,158 +486056,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [90944] = 9, + [101173] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4984), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4526), 6, + ACTIONS(3351), 5, + anon_sym_COLON, + anon_sym_and, + anon_sym_as, + anon_sym_in, + sym_identifier, + STATE(5094), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [90993] = 11, + ACTIONS(3353), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101219] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7448), 1, - anon_sym_or, - STATE(4528), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2941), 5, + ACTIONS(3292), 5, anon_sym_COLON, anon_sym_as, anon_sym_in, anon_sym_when, sym_identifier, - STATE(4527), 6, + STATE(5095), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 10, + ACTIONS(3294), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [91046] = 10, + [101265] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7450), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 5, + ACTIONS(3322), 5, anon_sym_COLON, + anon_sym_and, anon_sym_as, anon_sym_in, - anon_sym_when, sym_identifier, - STATE(4528), 7, + STATE(5096), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 10, + ACTIONS(3324), 9, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [91097] = 9, + [101311] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4998), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8128), 1, + anon_sym_PIPE, + STATE(5112), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4529), 6, + STATE(5097), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4996), 16, - sym__newline, + ACTIONS(8126), 12, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -439422,362 +486205,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91146] = 9, + [101359] = 20, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4994), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(6582), 1, + anon_sym_new, + ACTIONS(8130), 1, + anon_sym_do, + ACTIONS(8134), 1, + anon_sym_static, + ACTIONS(8136), 1, + anon_sym_member, + ACTIONS(8138), 1, + anon_sym_abstract, + ACTIONS(8140), 1, + anon_sym_val, + STATE(4912), 1, + sym_additional_constr_defn, + STATE(4975), 1, + sym_function_or_value_defn, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4530), 6, + ACTIONS(8132), 2, + anon_sym_default, + anon_sym_override, + STATE(5098), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4992), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91195] = 9, + [101427] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5113), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4531), 6, + ACTIONS(3318), 5, + anon_sym_COLON, + anon_sym_as, + anon_sym_in, + anon_sym_when, + sym_identifier, + STATE(5099), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5111), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91244] = 17, + ACTIONS(3320), 9, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [101473] = 20, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7453), 1, - anon_sym_DASH_GT, - ACTIONS(7455), 1, - anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, - anon_sym_LBRACK_RBRACK, - STATE(4621), 1, - aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, - sym_long_identifier, + ACTIONS(8015), 1, + anon_sym_y, + ACTIONS(8017), 1, + anon_sym_uy, + ACTIONS(8019), 1, + anon_sym_s, + ACTIONS(8021), 1, + anon_sym_us, + ACTIONS(8025), 1, + aux_sym_uint32_token1, + ACTIONS(8027), 1, + anon_sym_n, + ACTIONS(8029), 1, + anon_sym_un, + ACTIONS(8033), 1, + aux_sym_uint64_token1, + ACTIONS(8142), 1, + anon_sym_l, + ACTIONS(8144), 1, + anon_sym_L, + ACTIONS(8146), 1, + anon_sym_lf, + ACTIONS(8148), 1, + anon_sym_LF, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - ACTIONS(2808), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(2770), 2, + sym__dedent, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4532), 6, + STATE(5100), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91309] = 23, + [101541] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(4643), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(3285), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4535), 1, - aux_sym__member_defns_repeat1, - STATE(5082), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4533), 6, + STATE(5101), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3287), 13, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [101587] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5102), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91386] = 9, + aux_sym_union_type_cases_repeat1, + ACTIONS(8150), 12, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [101633] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4661), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4534), 6, + STATE(5103), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 16, + ACTIONS(3440), 14, sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + anon_sym_and, aux_sym_access_modifier_token1, + anon_sym_PIPE, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91435] = 23, + [101677] = 20, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(4561), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(6362), 1, anon_sym_new, - ACTIONS(6800), 1, + ACTIONS(8155), 1, + anon_sym_do, + ACTIONS(8159), 1, anon_sym_static, - ACTIONS(6802), 1, + ACTIONS(8161), 1, anon_sym_member, - ACTIONS(6806), 1, + ACTIONS(8163), 1, anon_sym_abstract, - ACTIONS(6808), 1, + ACTIONS(8165), 1, anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4545), 1, - aux_sym__member_defns_repeat1, - STATE(5082), 1, - sym_member_defn, - STATE(5135), 1, + STATE(4818), 1, sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, + STATE(4897), 1, + sym_function_or_value_defn, + STATE(8034), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, + ACTIONS(8157), 2, anon_sym_default, anon_sym_override, - STATE(4535), 6, + STATE(5104), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91512] = 17, + [101745] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, + ACTIONS(8167), 1, + anon_sym_or, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3274), 3, + anon_sym_COLON, + anon_sym_and, sym_identifier, - ACTIONS(5846), 1, + STATE(5105), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, - ACTIONS(5848), 1, anon_sym_LT2, - ACTIONS(5850), 1, anon_sym_LBRACK_RBRACK, - STATE(3317), 1, + [101793] = 19, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7414), 1, + sym_identifier, + ACTIONS(7416), 1, + anon_sym_DASH_GT, + ACTIONS(7418), 1, + anon_sym_STAR, + ACTIONS(7420), 1, + anon_sym_LT2, + ACTIONS(7422), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8170), 1, + anon_sym_with, + STATE(4758), 1, aux_sym__compound_type_repeat1, - STATE(3385), 1, + STATE(4887), 1, sym_long_identifier, - STATE(3407), 1, + STATE(4890), 1, sym_type_arguments, - STATE(4721), 1, - sym_type_argument_constraints, + STATE(6162), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5770), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - ACTIONS(5768), 6, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - STATE(4536), 6, + ACTIONS(5188), 2, + anon_sym_LBRACK_LT, + anon_sym_POUNDendif, + ACTIONS(5190), 2, + anon_sym_and, + anon_sym_interface, + STATE(5106), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91577] = 9, + [101859] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4966), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8128), 1, + anon_sym_PIPE, + STATE(5102), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4537), 6, + STATE(5107), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 16, - sym__newline, + ACTIONS(8172), 12, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -439786,86 +486619,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91626] = 17, + [101907] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3242), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_DASH_GT, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_LT2, - ACTIONS(7324), 1, - anon_sym_LBRACK_RBRACK, - STATE(4640), 1, - aux_sym__compound_type_repeat1, - STATE(4680), 1, - sym_long_identifier, - STATE(4707), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2806), 4, - anon_sym_COLON, + STATE(5108), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3244), 13, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - anon_sym_when, - ACTIONS(2804), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - STATE(4538), 6, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_when, + anon_sym_LT2, + [101953] = 20, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(6727), 1, + anon_sym_new, + ACTIONS(8174), 1, + anon_sym_do, + ACTIONS(8178), 1, + anon_sym_static, + ACTIONS(8180), 1, + anon_sym_member, + ACTIONS(8182), 1, + anon_sym_abstract, + ACTIONS(8184), 1, + anon_sym_val, + STATE(5346), 1, + sym_additional_constr_defn, + STATE(6659), 1, + sym_function_or_value_defn, + STATE(7834), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8176), 2, + anon_sym_default, + anon_sym_override, + STATE(5109), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [91691] = 9, + [102021] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5014), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8186), 1, + anon_sym_or, + STATE(5105), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4539), 6, + ACTIONS(3230), 3, + anon_sym_COLON, + anon_sym_and, + sym_identifier, + STATE(5110), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 16, - sym__newline, + ACTIONS(3232), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_GT, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [102071] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8128), 1, + anon_sym_PIPE, + STATE(5107), 1, + aux_sym_union_type_cases_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5111), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(8188), 12, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -439874,38 +486781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91740] = 9, + [102119] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5117), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8128), 1, + anon_sym_PIPE, + STATE(5102), 1, + aux_sym_union_type_cases_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4540), 6, + STATE(5112), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5115), 16, - sym__newline, + ACTIONS(8188), 12, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -439914,1670 +486819,1821 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [91789] = 9, + [102167] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8198), 1, + anon_sym_DQUOTE, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5113), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [102226] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8208), 1, + anon_sym_DQUOTE, + STATE(5166), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5114), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [102285] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7380), 1, - anon_sym_let, + ACTIONS(8210), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4541), 6, + STATE(5115), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7378), 16, - sym__newline, + ACTIONS(5340), 12, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, anon_sym_POUNDendif, - [91838] = 9, + anon_sym_POUNDelse, + [102330] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4970), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8212), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4542), 6, + STATE(5116), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 16, - sym__newline, + ACTIONS(5340), 12, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, anon_sym_POUNDendif, - [91887] = 10, + anon_sym_POUNDelse, + [102375] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3840), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7461), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 5, - anon_sym_COLON, - anon_sym_and, + STATE(5117), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3842), 12, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_in, - sym_identifier, - STATE(4543), 7, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [102420] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6941), 1, + anon_sym_COLON, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5118), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 10, + ACTIONS(6943), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [91938] = 9, + [102465] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8214), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5119), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [102524] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7332), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4544), 6, + STATE(5120), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7330), 16, - sym__newline, + ACTIONS(3440), 13, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + anon_sym_and, aux_sym_access_modifier_token1, + anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, anon_sym_POUNDendif, - [91987] = 22, + anon_sym_POUNDelse, + [102567] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4592), 1, - sym__dedent, - ACTIONS(4596), 1, - anon_sym_LBRACK_LT, - ACTIONS(4599), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7464), 1, - anon_sym_new, - ACTIONS(7470), 1, - anon_sym_static, - ACTIONS(7473), 1, - anon_sym_member, - ACTIONS(7476), 1, - anon_sym_abstract, - ACTIONS(7479), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5082), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8216), 1, + anon_sym_DQUOTE, + STATE(5119), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7467), 2, - anon_sym_default, - anon_sym_override, - STATE(4545), 7, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5121), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__member_defns_repeat1, - [92062] = 17, + [102626] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3361), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, sym_identifier, - ACTIONS(7316), 1, + STATE(5122), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3363), 9, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_GT, anon_sym_DASH_GT, - ACTIONS(7320), 1, + anon_sym_GT, anon_sym_STAR, - ACTIONS(7322), 1, anon_sym_LT2, - ACTIONS(7324), 1, anon_sym_LBRACK_RBRACK, - STATE(4640), 1, - aux_sym__compound_type_repeat1, - STATE(4680), 1, - sym_long_identifier, - STATE(4707), 1, - sym_type_arguments, - ACTIONS(13), 2, + [102671] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8218), 1, + anon_sym_DQUOTE, + STATE(5221), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - ACTIONS(2808), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4546), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5123), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92127] = 9, + [102730] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8220), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4547), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5124), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 8, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - ACTIONS(3043), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - [92176] = 11, + [102789] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3656), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7482), 1, - anon_sym_or, - STATE(4560), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4548), 6, + STATE(5125), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 10, + ACTIONS(3658), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [92229] = 17, + [102834] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_DASH_GT, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_LT2, - ACTIONS(7324), 1, - anon_sym_LBRACK_RBRACK, - STATE(4640), 1, - aux_sym__compound_type_repeat1, - STATE(4680), 1, - sym_long_identifier, - STATE(4707), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8222), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2814), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - ACTIONS(2812), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4549), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5126), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92294] = 9, + [102893] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4958), 1, - anon_sym_let, - ACTIONS(5334), 1, + ACTIONS(3660), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4550), 6, + STATE(5127), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92343] = 9, + ACTIONS(3662), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [102938] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8224), 1, + anon_sym_DQUOTE, + STATE(5124), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5128), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [102997] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8226), 1, + anon_sym_DQUOTE, + STATE(5141), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4551), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5129), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 8, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - ACTIONS(3047), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - [92392] = 9, + [103056] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7422), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4552), 6, + ACTIONS(7118), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(5130), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7420), 16, - sym__newline, - anon_sym_LBRACK_LT, + ACTIONS(7116), 10, anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, + anon_sym_let, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92441] = 17, + sym_identifier, + [103101] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, + ACTIONS(7360), 1, sym_identifier, - ACTIONS(7453), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7455), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - STATE(4621), 1, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, + STATE(5484), 1, sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5782), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - ACTIONS(5784), 5, + ACTIONS(3022), 4, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4553), 6, + anon_sym_GT, + STATE(5131), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92506] = 9, + [103162] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7428), 1, - anon_sym_let, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8234), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4554), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5132), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7426), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92555] = 9, + [103221] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7432), 1, - anon_sym_let, + ACTIONS(6884), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4555), 6, + STATE(5133), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7430), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92604] = 9, + ACTIONS(6886), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103266] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3642), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5402), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4556), 6, + STATE(5134), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5400), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92653] = 17, + ACTIONS(3644), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103311] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3693), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7453), 1, - anon_sym_DASH_GT, - ACTIONS(7455), 1, - anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, - anon_sym_LBRACK_RBRACK, - STATE(4621), 1, - aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2850), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - ACTIONS(2848), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4557), 6, + STATE(5135), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92718] = 9, + ACTIONS(3695), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103356] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3722), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3029), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_or, - sym_identifier, - STATE(4558), 6, + STATE(5136), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 12, - sym__newline, - sym__dedent, + ACTIONS(3724), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [92767] = 9, + [103401] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7436), 1, - anon_sym_let, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + STATE(5132), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4559), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5137), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7434), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [92816] = 11, + [103460] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7482), 1, + ACTIONS(8186), 1, anon_sym_or, - STATE(4543), 1, + STATE(5110), 1, aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2941), 5, - anon_sym_COLON, + ACTIONS(3242), 2, anon_sym_and, - anon_sym_as, - anon_sym_in, sym_identifier, - STATE(4560), 6, + STATE(5138), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 10, + ACTIONS(3244), 9, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [92869] = 17, + [103509] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3726), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7196), 1, - sym_identifier, - ACTIONS(7316), 1, - anon_sym_DASH_GT, - ACTIONS(7320), 1, - anon_sym_STAR, - ACTIONS(7322), 1, - anon_sym_LT2, - ACTIONS(7324), 1, - anon_sym_LBRACK_RBRACK, - STATE(4640), 1, - aux_sym__compound_type_repeat1, - STATE(4680), 1, - sym_long_identifier, - STATE(4707), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2850), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - ACTIONS(2848), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4561), 6, + STATE(5139), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92934] = 17, + ACTIONS(3728), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103554] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3734), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7453), 1, - anon_sym_DASH_GT, - ACTIONS(7455), 1, - anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, - anon_sym_LBRACK_RBRACK, - STATE(4621), 1, - aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5806), 4, - anon_sym_COLON, - anon_sym_and, + STATE(5140), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3736), 12, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - ACTIONS(5808), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - STATE(4562), 6, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103599] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8238), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5141), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [92999] = 9, + [103658] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3738), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_or, - sym_identifier, - STATE(4563), 6, + STATE(5142), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 12, - sym__newline, - sym__dedent, + ACTIONS(3740), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93048] = 11, + [103703] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3746), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7448), 1, - anon_sym_or, - STATE(4527), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4564), 6, + STATE(5143), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 10, + ACTIONS(3748), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93101] = 9, + [103748] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7418), 1, - anon_sym_let, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8240), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4565), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5144), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7416), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [93150] = 17, + [103807] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3766), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7100), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - ACTIONS(7298), 1, - anon_sym_STAR, - ACTIONS(7300), 1, - anon_sym_LT2, - ACTIONS(7302), 1, - anon_sym_LBRACK_RBRACK, - STATE(4609), 1, - aux_sym__compound_type_repeat1, - STATE(4634), 1, - sym_long_identifier, - STATE(4637), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5826), 2, - anon_sym_COLON, - anon_sym_as, - STATE(4566), 6, + STATE(5145), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5824), 7, - sym__newline, - sym__dedent, + ACTIONS(3768), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [93215] = 9, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [103852] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3770), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3029), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - anon_sym_or, - sym_identifier, - STATE(4567), 6, + STATE(5146), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 12, - sym__newline, - sym__dedent, + ACTIONS(3772), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93264] = 9, + [103897] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7412), 1, - anon_sym_let, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8242), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4568), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5147), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7410), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [93313] = 9, + [103956] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5418), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4569), 6, + STATE(5148), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5416), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [93362] = 9, + ACTIONS(3579), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104001] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3778), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - anon_sym_or, - sym_identifier, - STATE(4570), 6, + STATE(5149), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 12, - sym__newline, - sym__dedent, + ACTIONS(3780), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93411] = 9, + [104046] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3782), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7408), 1, - anon_sym_let, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4571), 6, + STATE(5150), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7406), 16, - sym__newline, - anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, - anon_sym_POUNDendif, - [93460] = 9, + ACTIONS(3784), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104091] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7384), 1, - anon_sym_let, + ACTIONS(8244), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4572), 6, + STATE(5151), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7382), 16, - sym__newline, + ACTIONS(5372), 12, anon_sym_LBRACK_LT, - anon_sym_do, - anon_sym_let_BANG, + anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_inherit, - anon_sym_POUNDif, anon_sym_POUNDendif, - [93509] = 17, + anon_sym_POUNDelse, + [104136] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7453), 1, - anon_sym_DASH_GT, - ACTIONS(7455), 1, - anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, - anon_sym_LBRACK_RBRACK, - STATE(4621), 1, - aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, - sym_long_identifier, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8246), 1, + anon_sym_DQUOTE, + STATE(5147), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2806), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - ACTIONS(2804), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4573), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5152), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [93574] = 9, + [104195] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3602), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4574), 6, + STATE(5153), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 8, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE, - aux_sym_char_token1, - anon_sym_AT_DQUOTE, - anon_sym_DOLLAR_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_unit, - sym_xint, - ACTIONS(3013), 9, - anon_sym_LPAREN, - anon_sym_null, - anon_sym__, - anon_sym_LBRACK, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(3604), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104240] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8248), 1, anon_sym_DQUOTE, - sym_bool, - sym_int, - sym_identifier, - [93623] = 11, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5154), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [104299] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7443), 1, - anon_sym_DOT, - STATE(4517), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6880), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2935), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4575), 6, + STATE(5155), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 11, - sym__newline, - sym__dedent, + ACTIONS(6882), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93676] = 17, + [104344] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, - sym_identifier, - ACTIONS(7453), 1, - anon_sym_DASH_GT, - ACTIONS(7455), 1, - anon_sym_STAR, - ACTIONS(7457), 1, - anon_sym_LT2, - ACTIONS(7459), 1, - anon_sym_LBRACK_RBRACK, - STATE(4621), 1, - aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, - sym_long_identifier, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8250), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2814), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - ACTIONS(2812), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4576), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5156), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [93741] = 16, + [104403] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5806), 4, - anon_sym_COLON, - anon_sym_and, + STATE(5157), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3788), 12, + anon_sym_EQ, anon_sym_as, - anon_sym_when, - ACTIONS(5808), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - STATE(4577), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [93804] = 22, + anon_sym_when, + anon_sym_LT2, + [104448] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7484), 1, - anon_sym_y, - ACTIONS(7486), 1, - anon_sym_uy, - ACTIONS(7488), 1, - anon_sym_s, - ACTIONS(7490), 1, - anon_sym_us, - ACTIONS(7492), 1, - anon_sym_l, - ACTIONS(7494), 1, - aux_sym_uint32_token1, - ACTIONS(7496), 1, - anon_sym_n, - ACTIONS(7498), 1, - anon_sym_un, - ACTIONS(7500), 1, - anon_sym_L, - ACTIONS(7502), 1, - aux_sym_uint64_token1, - ACTIONS(7504), 1, - aux_sym_bignum_token1, - ACTIONS(7506), 1, - aux_sym_decimal_token1, - ACTIONS(7508), 1, - anon_sym_DOT2, - ACTIONS(7510), 1, - aux_sym_float_token1, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8252), 1, + anon_sym_DQUOTE, + STATE(5156), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2520), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4578), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5158), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [93878] = 11, + [104507] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2924), 1, + ACTIONS(3790), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7512), 1, - anon_sym_or, - STATE(4588), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4579), 6, + STATE(5159), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 13, + ACTIONS(3792), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -441588,396 +488644,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - [93930] = 9, + [104552] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - anon_sym_or, - sym_identifier, - STATE(4580), 6, + ACTIONS(7125), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(5160), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [93978] = 22, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, + ACTIONS(7123), 10, + anon_sym_do, + anon_sym_let, anon_sym_new, - ACTIONS(6800), 1, + anon_sym_default, anon_sym_static, - ACTIONS(6802), 1, anon_sym_member, - ACTIONS(6806), 1, anon_sym_abstract, - ACTIONS(6808), 1, + anon_sym_override, anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, - sym_access_modifier, - STATE(7716), 1, - sym__member_defns, - ACTIONS(13), 2, + sym_identifier, + [104597] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8254), 1, + anon_sym_DQUOTE, + STATE(5154), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4581), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5161), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94052] = 10, + [104656] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7514), 1, - anon_sym_DOT, + ACTIONS(6899), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4582), 7, + STATE(5162), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 9, + ACTIONS(6901), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94102] = 12, + [104701] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8256), 1, + anon_sym_DQUOTE, + STATE(5173), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5163), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [104760] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2937), 1, - anon_sym_LT2, - ACTIONS(5334), 1, + ACTIONS(3794), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - ACTIONS(7519), 1, - anon_sym_LPAREN, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4583), 6, + STATE(5164), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7517), 12, + ACTIONS(3796), 12, anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [94156] = 22, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104805] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3598), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(6778), 1, - sym__member_defns, - STATE(7371), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4584), 6, + STATE(5165), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94230] = 22, + ACTIONS(3600), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [104850] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8258), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5166), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [104909] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7129), 1, - sym__member_defns, - STATE(7371), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8260), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4585), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5167), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94304] = 11, + [104968] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7521), 1, - anon_sym_DOT, - STATE(4582), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(6903), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2966), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4586), 6, + STATE(5168), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 9, + ACTIONS(6905), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94356] = 11, + [105013] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7523), 1, - anon_sym_DOT, - STATE(4595), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2935), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4587), 6, + STATE(5169), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 9, + ACTIONS(3776), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94408] = 11, + [105058] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2941), 1, + ACTIONS(3798), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7512), 1, - anon_sym_or, - STATE(4592), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4588), 6, + STATE(5170), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 13, + ACTIONS(3800), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -441988,167 +489068,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - [94460] = 22, + [105103] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, - sym_access_modifier, - STATE(7386), 1, - sym__member_defns, + ACTIONS(8262), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4589), 6, + STATE(5171), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94534] = 10, + ACTIONS(5372), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [105148] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7525), 1, - anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4590), 7, + STATE(5172), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 9, + ACTIONS(3804), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94584] = 9, + [105193] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8264), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4591), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5173), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 12, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94632] = 10, + [105252] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2917), 1, + ACTIONS(3581), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7528), 1, - anon_sym_or, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4592), 7, + STATE(5174), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 13, + ACTIONS(3583), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -442159,35 +489219,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_in, anon_sym_DASH_GT, - anon_sym_GT, anon_sym_when, anon_sym_LT2, - [94682] = 10, + [105297] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7531), 1, - sym_int, + ACTIONS(6870), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4593), 6, + STATE(5175), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3179), 14, + ACTIONS(6872), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -442200,170 +489257,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [94732] = 22, + [105342] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3585), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(6824), 1, - sym__member_defns, - STATE(7371), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4594), 6, + STATE(5176), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [94806] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7523), 1, - anon_sym_DOT, - STATE(4590), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(2966), 5, - anon_sym_COLON, - anon_sym_and, + ACTIONS(3587), 12, + anon_sym_EQ, anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4595), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2968), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94858] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(2924), 4, - anon_sym_COLON, - anon_sym_as, anon_sym_when, - sym_identifier, - STATE(4596), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2926), 12, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [94906] = 12, + [105387] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2937), 1, - anon_sym_LT2, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + ACTIONS(8268), 1, anon_sym_LPAREN, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4597), 6, + STATE(5177), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7533), 12, + ACTIONS(8266), 12, anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -442376,75 +489329,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [94960] = 11, + [105432] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7521), 1, - anon_sym_DOT, - STATE(4586), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(8013), 1, + anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2935), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4598), 6, + STATE(5178), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95012] = 11, + ACTIONS(8011), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [105477] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6820), 1, - anon_sym_EQ, - ACTIONS(6824), 1, - anon_sym_COLON, - ACTIONS(7537), 1, - anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4599), 6, + STATE(5179), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6822), 13, + ACTIONS(7433), 13, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -442458,761 +489400,914 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [95064] = 9, + [105520] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 6, + ACTIONS(3274), 4, anon_sym_COLON, anon_sym_and, - anon_sym_as, - anon_sym_in, anon_sym_or, sym_identifier, - STATE(4600), 6, + STATE(5180), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 10, + ACTIONS(3276), 9, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_COLON_GT, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [95112] = 22, + [105565] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(6772), 1, - sym__member_defns, - STATE(7371), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8270), 1, + anon_sym_DQUOTE, + STATE(5182), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4601), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5181), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95186] = 22, + [105624] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7005), 1, - sym__member_defns, - STATE(7371), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8272), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4602), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5182), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95260] = 17, + [105683] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5842), 1, - sym_identifier, - ACTIONS(5844), 1, - anon_sym_DASH_GT, - ACTIONS(5846), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_LT2, - ACTIONS(5850), 1, - anon_sym_LBRACK_RBRACK, - STATE(3317), 1, - aux_sym__compound_type_repeat1, - STATE(3385), 1, - sym_long_identifier, - STATE(3407), 1, - sym_type_arguments, + ACTIONS(6771), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5826), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - ACTIONS(5824), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4603), 6, + STATE(5183), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95324] = 10, + ACTIONS(6773), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [105728] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7539), 1, - anon_sym_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + STATE(5167), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4604), 7, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5184), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 10, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95374] = 9, + [105787] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6888), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4605), 6, + STATE(5185), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 12, - sym__newline, - sym__dedent, + ACTIONS(6890), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95422] = 17, + [105832] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5190), 1, + anon_sym_interface, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7062), 1, + ACTIONS(7462), 1, sym_identifier, - ACTIONS(7453), 1, + ACTIONS(7464), 1, anon_sym_DASH_GT, - ACTIONS(7455), 1, + ACTIONS(7466), 1, anon_sym_STAR, - ACTIONS(7457), 1, + ACTIONS(7468), 1, anon_sym_LT2, - ACTIONS(7459), 1, + ACTIONS(7470), 1, anon_sym_LBRACK_RBRACK, - STATE(4621), 1, + ACTIONS(8276), 1, + anon_sym_with, + STATE(4775), 1, aux_sym__compound_type_repeat1, - STATE(4695), 1, - sym_type_arguments, - STATE(4706), 1, + STATE(4859), 1, sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, + STATE(6422), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5826), 3, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - ACTIONS(5824), 5, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(4606), 6, + ACTIONS(5188), 2, + sym__newline, + sym__dedent, + STATE(5186), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [105897] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8284), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8287), 1, + anon_sym_LBRACE2, + ACTIONS(8290), 1, + anon_sym_DQUOTE, + ACTIONS(8292), 1, + sym__inside_string_marker, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8278), 2, + sym__escape_char, + sym__non_escape_char, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8281), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5187), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95486] = 10, + aux_sym_format_string_repeat1, + [105954] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7542), 1, - anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4607), 6, + STATE(5188), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, + ACTIONS(8150), 13, sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95536] = 11, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [105997] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7232), 1, - anon_sym_STAR, - STATE(4604), 1, - aux_sym__compound_type_repeat1, + ACTIONS(6874), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2970), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4608), 6, + STATE(5189), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 10, - sym__newline, - sym__dedent, + ACTIONS(6876), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95588] = 11, + [106042] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8295), 1, + anon_sym_DQUOTE, + STATE(5198), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5190), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106101] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7298), 1, - anon_sym_STAR, - STATE(4613), 1, - aux_sym__compound_type_repeat1, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8297), 1, + anon_sym_DQUOTE, + STATE(5126), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2970), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4609), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5191), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 10, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95640] = 9, + [106160] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3825), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4610), 6, + STATE(5192), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 12, - sym__newline, - sym__dedent, + ACTIONS(3827), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95688] = 9, + [106205] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3836), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3029), 6, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - anon_sym_or, - sym_identifier, - STATE(4611), 6, + STATE(5193), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 10, + ACTIONS(3838), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95736] = 10, + [106250] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8299), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5194), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106309] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7544), 1, - anon_sym_COLON_GT, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8301), 1, + anon_sym_DQUOTE, + STATE(5197), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4612), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5195), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95786] = 10, + [106368] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7546), 1, - anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4613), 7, + STATE(5196), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 10, - sym__newline, - sym__dedent, + ACTIONS(2770), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95836] = 9, + [106413] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8303), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5197), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106472] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8305), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5198), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [106531] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8307), 1, + anon_sym_DQUOTE, + STATE(5194), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3029), 6, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - anon_sym_or, - sym_identifier, - STATE(4614), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5199), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [95884] = 22, + [106590] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(6800), 1, - anon_sym_static, - ACTIONS(6802), 1, - anon_sym_member, - ACTIONS(6806), 1, - anon_sym_abstract, - ACTIONS(6808), 1, - anon_sym_val, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4533), 1, - sym_member_defn, - STATE(5135), 1, - sym_additional_constr_defn, - STATE(5175), 1, - sym_attributes, - STATE(7371), 1, - sym_access_modifier, - STATE(7509), 1, - sym__member_defns, + ACTIONS(6945), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6798), 2, - anon_sym_default, - anon_sym_override, - STATE(4615), 6, + STATE(5200), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [95958] = 12, + ACTIONS(6947), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_LT2, + [106635] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2937), 1, - anon_sym_LT2, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - ACTIONS(7551), 1, - anon_sym_LPAREN, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8309), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4616), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5201), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7549), 12, - anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [96012] = 10, + [106694] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7553), 1, - aux_sym_float_token1, + ACTIONS(6949), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4617), 6, + STATE(5202), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3075), 14, + ACTIONS(6951), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -443225,32 +490320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [96062] = 9, + [106739] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6802), 1, + anon_sym_COLON, + ACTIONS(8311), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4618), 6, + STATE(5203), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3075), 14, + ACTIONS(6804), 11, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -443262,192 +490357,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DASH_GT, anon_sym_when, - anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [96109] = 10, + [106786] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7555), 1, - anon_sym_COLON_GT, + ACTIONS(6802), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4619), 6, + STATE(5204), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 9, + ACTIONS(6804), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96158] = 9, + [106831] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8315), 1, + anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3047), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4620), 6, + STATE(5205), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96205] = 11, + ACTIONS(8313), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [106876] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7455), 1, - anon_sym_STAR, - STATE(4629), 1, - aux_sym__compound_type_repeat1, + ACTIONS(8319), 1, + anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2970), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4621), 6, + STATE(5206), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96256] = 9, + ACTIONS(8317), 12, + anon_sym_EQ, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [106921] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6820), 1, + anon_sym_COLON, + ACTIONS(8321), 1, + anon_sym_as, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4622), 6, + STATE(5207), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 10, + ACTIONS(6822), 11, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96303] = 11, + [106968] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7551), 1, + ACTIONS(8325), 1, anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_LT2, - STATE(4741), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4623), 6, + STATE(5208), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7549), 12, + ACTIONS(8323), 12, anon_sym_EQ, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -443460,341 +490538,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [96354] = 9, + [107013] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8327), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3043), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4624), 6, + STATE(5209), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96401] = 9, + ACTIONS(5334), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107058] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8329), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3021), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4625), 6, + STATE(5210), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96448] = 9, + ACTIONS(5354), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107103] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8331), 1, + anon_sym_DQUOTE, + STATE(5113), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3013), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4626), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5211), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96495] = 10, + [107162] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3012), 1, + anon_sym_and, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7559), 1, - anon_sym_COLON_GT, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4627), 6, + ACTIONS(3010), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(5212), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96544] = 9, + [107223] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3032), 1, + anon_sym_and, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3007), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4628), 6, + ACTIONS(3030), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(5213), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96591] = 10, + [107284] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8333), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5214), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107343] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7561), 1, - anon_sym_STAR, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8335), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4629), 7, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5215), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96640] = 9, + [107402] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6816), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4630), 6, + STATE(5216), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, - sym__dedent, + ACTIONS(6818), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96687] = 10, + [107447] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7564), 1, - anon_sym_LT2, + ACTIONS(8337), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2990), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4631), 6, + STATE(5217), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 10, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [96736] = 11, + ACTIONS(5366), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107492] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6554), 1, - aux_sym_decimal_token1, - ACTIONS(6646), 1, - anon_sym_f, + ACTIONS(6892), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4632), 6, + STATE(5218), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 12, + ACTIONS(6894), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -443807,538 +490935,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [96787] = 11, + [107537] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(3092), 1, + anon_sym_and, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7566), 1, - anon_sym_DOT, - STATE(4647), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4633), 6, + ACTIONS(3090), 4, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + STATE(5219), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [96838] = 9, + [107598] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3033), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4634), 6, + STATE(5220), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 11, - sym__newline, - sym__dedent, + ACTIONS(3618), 12, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, + anon_sym_in, anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_when, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96885] = 9, + [107643] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8339), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3003), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4635), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5221), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96932] = 9, + [107702] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8341), 1, + anon_sym_DQUOTE, + STATE(5144), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3017), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4636), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5222), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [96979] = 9, + [107761] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8343), 1, + anon_sym_DQUOTE, + STATE(5214), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5223), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [107820] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8345), 1, + anon_sym_DQUOTE, + STATE(5233), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3025), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4637), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5224), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97026] = 9, + [107879] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6281), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4638), 6, + ACTIONS(7114), 3, + anon_sym_LBRACK_LT, + anon_sym_let_BANG, + aux_sym_access_modifier_token1, + STATE(5225), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6283), 14, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [97073] = 9, + ACTIONS(7112), 10, + anon_sym_do, + anon_sym_let, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + sym_identifier, + [107924] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6289), 1, - anon_sym_COLON, + ACTIONS(8347), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4639), 6, + STATE(5226), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6291), 14, - anon_sym_EQ, + ACTIONS(5348), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [97120] = 11, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [107969] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7320), 1, - anon_sym_STAR, - STATE(4649), 1, - aux_sym__compound_type_repeat1, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8349), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2970), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4640), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5227), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97171] = 9, + [108028] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8351), 1, + anon_sym_DQUOTE, + STATE(5227), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3017), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4641), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5228), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97218] = 10, + [108087] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7568), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2990), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4642), 6, + STATE(5229), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 10, - sym__newline, + ACTIONS(7502), 13, sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [97267] = 9, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [108130] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8353), 1, + anon_sym_DQUOTE, + STATE(5231), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3025), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4643), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5230), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97314] = 9, + [108189] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8355), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3003), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4644), 6, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5231), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97361] = 9, + [108248] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6303), 1, - anon_sym_COLON, + ACTIONS(8051), 1, + anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4645), 6, + STATE(5232), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6305), 14, + ACTIONS(8049), 12, anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [97408] = 12, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_interface, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [108293] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8194), 1, + aux_sym__simple_string_char_token1, + ACTIONS(8196), 1, + anon_sym_LBRACE2, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8206), 1, + sym__inside_string_marker, + ACTIONS(8357), 1, + anon_sym_DQUOTE, + STATE(5187), 1, + aux_sym_format_string_repeat1, + STATE(5645), 1, + sym__simple_string_char, + ACTIONS(8190), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5623), 2, + sym__string_char, + sym_format_string_eval, + ACTIONS(8192), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5233), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [108352] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5473), 1, - anon_sym_LBRACK_LT, - STATE(4674), 1, - aux_sym_attributes_repeat1, - STATE(4818), 1, - sym_attribute_set, + ACTIONS(8359), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6766), 2, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4646), 6, + STATE(5234), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6764), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(5348), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -444346,35 +491579,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [97461] = 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [108397] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2966), 1, + ACTIONS(3701), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7566), 1, - anon_sym_DOT, - STATE(4654), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4647), 6, + STATE(5235), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 12, + ACTIONS(3703), 12, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -444387,1995 +491617,1953 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_when, anon_sym_LT2, - [97512] = 9, + [108442] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6307), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4648), 6, + STATE(5236), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6309), 14, - anon_sym_EQ, + ACTIONS(5482), 12, + anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [97559] = 10, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [108484] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7570), 1, - anon_sym_STAR, + ACTIONS(8361), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4649), 7, + STATE(5237), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - ACTIONS(2808), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97608] = 9, + ACTIONS(5372), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [108528] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8372), 1, + anon_sym_DQUOTE, + ACTIONS(8374), 1, + anon_sym_DQUOTEB, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - sym_identifier, - STATE(4650), 6, + ACTIONS(8363), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8369), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8366), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5238), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97655] = 9, + aux_sym__string_literal_repeat1, + [108582] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3173), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8382), 1, + anon_sym_DQUOTE, + ACTIONS(8384), 1, + anon_sym_DQUOTEB, + STATE(5248), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4651), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5239), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3175), 14, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - anon_sym_f, - aux_sym_decimal_token1, - [97702] = 9, + [108638] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7575), 1, - anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4652), 7, + STATE(5240), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_union_type_fields_repeat1, - ACTIONS(7573), 13, - sym__dedent, + ACTIONS(5492), 12, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [97749] = 21, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [108680] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(5489), 1, - anon_sym_new, - ACTIONS(7578), 1, - sym_identifier, - ACTIONS(7580), 1, - anon_sym_do, - ACTIONS(7584), 1, - anon_sym_static, - ACTIONS(7586), 1, - anon_sym_member, - ACTIONS(7588), 1, - anon_sym_abstract, - ACTIONS(7590), 1, - anon_sym_val, - STATE(4992), 1, - sym_additional_constr_defn, - STATE(6467), 1, - sym_function_or_value_defn, - STATE(7304), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(8386), 1, + anon_sym_DQUOTE, + ACTIONS(8388), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7582), 2, - anon_sym_default, - anon_sym_override, - STATE(4653), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5241), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [97820] = 10, + [108736] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7592), 1, - anon_sym_DOT, - ACTIONS(13), 2, + ACTIONS(8390), 1, + anon_sym_DQUOTE, + ACTIONS(8392), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4654), 7, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5242), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [97869] = 9, + [108792] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3033), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4655), 6, + STATE(5243), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97916] = 9, + ACTIONS(5466), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [108834] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8394), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3007), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4656), 6, + STATE(5244), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 11, + ACTIONS(5354), 11, sym__newline, sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [97963] = 9, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [108878] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5806), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(8396), 1, + anon_sym_DQUOTE, + ACTIONS(8398), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4657), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5245), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5808), 14, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [98010] = 9, + [108934] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8400), 1, + anon_sym_DQUOTE, + ACTIONS(8402), 1, + anon_sym_DQUOTEB, + STATE(5241), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3013), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4658), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5246), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98057] = 9, + [108990] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8404), 1, + anon_sym_DQUOTE, + ACTIONS(8406), 1, + anon_sym_DQUOTEB, + STATE(5245), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3021), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4659), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5247), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98104] = 9, + [109046] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8408), 1, + anon_sym_DQUOTE, + ACTIONS(8410), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5248), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [109102] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8412), 1, + anon_sym_DQUOTE, + ACTIONS(8414), 1, + anon_sym_DQUOTEB, + STATE(5268), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3043), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, - sym_identifier, - STATE(4660), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5249), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 11, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98151] = 9, + [109158] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3047), 4, - anon_sym_COLON, - anon_sym_as, - anon_sym_when, + ACTIONS(3257), 2, + anon_sym_and, sym_identifier, - STATE(4661), 6, + STATE(5250), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 11, - sym__newline, - sym__dedent, + ACTIONS(3259), 8, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_DASH_GT, + anon_sym_GT, anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [98198] = 10, + [109206] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7597), 1, - anon_sym_COLON, - ACTIONS(7599), 1, - anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4662), 6, + STATE(5251), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7595), 13, - sym__dedent, + ACTIONS(5486), 12, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [98247] = 11, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [109248] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7535), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_LT2, - STATE(4767), 1, - sym_type_arguments, + ACTIONS(8416), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4663), 6, + STATE(5252), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7533), 12, - anon_sym_EQ, + ACTIONS(5334), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [98298] = 9, + [109292] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(8418), 1, + anon_sym_DQUOTE, + ACTIONS(8420), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4664), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5253), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6162), 14, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [98345] = 19, + [109348] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6895), 1, - sym_identifier, - ACTIONS(6897), 1, - anon_sym_DASH_GT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_LT2, - ACTIONS(6903), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7601), 1, - anon_sym_with, - STATE(4094), 1, - aux_sym__compound_type_repeat1, - STATE(4333), 1, - sym_type_arguments, - STATE(4346), 1, - sym_long_identifier, - STATE(5596), 1, - sym__object_members, - ACTIONS(13), 2, + ACTIONS(8422), 1, + anon_sym_DQUOTE, + ACTIONS(8424), 1, + anon_sym_DQUOTEB, + STATE(5259), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4726), 2, - anon_sym_and, - anon_sym_interface, - ACTIONS(4724), 3, - anon_sym_LBRACK_LT, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(4665), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5254), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [98412] = 9, + [109404] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3029), 1, + ACTIONS(3285), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8426), 1, + anon_sym_DOT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4666), 6, + STATE(5255), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 14, - anon_sym_EQ, + aux_sym_long_identifier_repeat1, + ACTIONS(3287), 9, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, anon_sym_LT2, - anon_sym_or, - [98459] = 10, + [109450] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6824), 1, - anon_sym_COLON, - ACTIONS(7537), 1, - anon_sym_of, - ACTIONS(13), 2, + ACTIONS(8429), 1, + anon_sym_DQUOTE, + ACTIONS(8431), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4667), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5256), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6822), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [98508] = 9, + [109506] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2917), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8433), 1, + anon_sym_DQUOTE, + ACTIONS(8435), 1, + anon_sym_DQUOTEB, + STATE(5253), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4668), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5257), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 14, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - anon_sym_or, - [98555] = 10, + [109562] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7605), 1, - anon_sym_STAR, - STATE(4652), 1, - aux_sym_union_type_fields_repeat1, + ACTIONS(8437), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4669), 6, + STATE(5258), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7603), 13, + ACTIONS(5366), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [98604] = 10, + [109606] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7605), 1, - anon_sym_STAR, - STATE(4669), 1, - aux_sym_union_type_fields_repeat1, - ACTIONS(13), 2, + ACTIONS(8439), 1, + anon_sym_DQUOTE, + ACTIONS(8441), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4670), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5259), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7607), 13, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [98653] = 9, + [109662] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3202), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(5255), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4671), 6, + STATE(5260), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 10, + ACTIONS(3204), 9, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98700] = 11, + [109710] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3417), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7519), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_LT2, - STATE(4716), 1, - sym_type_arguments, + ACTIONS(8445), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4672), 6, + STATE(5261), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7517), 12, - anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [98751] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(2900), 5, - anon_sym_COLON, + ACTIONS(3419), 10, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4673), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2902), 10, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98798] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, + anon_sym_f, + aux_sym_decimal_token1, + [109756] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7609), 1, - anon_sym_LBRACK_LT, - STATE(4818), 1, - sym_attribute_set, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6510), 2, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4674), 7, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - aux_sym_attributes_repeat1, - ACTIONS(6505), 10, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [98849] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8447), 1, + anon_sym_DQUOTE, + ACTIONS(8449), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2900), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4675), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5262), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 10, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98896] = 9, + [109812] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5782), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(8451), 1, + anon_sym_DQUOTE, + ACTIONS(8453), 1, + anon_sym_DQUOTEB, + STATE(5242), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4676), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5263), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5784), 14, - anon_sym_EQ, - anon_sym_and, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [98943] = 9, + [109868] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8455), 1, + anon_sym_DQUOTE, + ACTIONS(8457), 1, + anon_sym_DQUOTEB, + STATE(5267), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3003), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4677), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5264), 6, sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3005), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [98989] = 10, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [109924] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_PIPE, - STATE(4700), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(8459), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4678), 6, + STATE(5265), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7612), 12, - sym__dedent, + ACTIONS(5340), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [99037] = 9, + anon_sym_POUNDendif, + [109968] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8461), 1, + anon_sym_DQUOTE, + ACTIONS(8463), 1, + anon_sym_DQUOTEB, + STATE(5262), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3043), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4679), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5266), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99083] = 9, + [110024] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8465), 1, + anon_sym_DQUOTE, + ACTIONS(8467), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3033), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4680), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5267), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99129] = 9, + [110080] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8469), 1, + anon_sym_DQUOTE, + ACTIONS(8471), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3003), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4681), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5268), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99175] = 9, + [110136] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8473), 1, + anon_sym_DQUOTE, + ACTIONS(8475), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3007), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4682), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5269), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99221] = 9, + [110192] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8477), 1, + anon_sym_DQUOTE, + ACTIONS(8479), 1, + anon_sym_DQUOTEB, + STATE(5284), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3047), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4683), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5270), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99267] = 11, + [110248] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7616), 1, - anon_sym_or, - STATE(4702), 1, - aux_sym_type_argument_repeat1, - ACTIONS(13), 2, + ACTIONS(8481), 1, + anon_sym_DQUOTE, + ACTIONS(8483), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2941), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4684), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5271), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99317] = 20, + [110304] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3387), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7484), 1, - anon_sym_y, - ACTIONS(7486), 1, - anon_sym_uy, - ACTIONS(7488), 1, - anon_sym_s, - ACTIONS(7490), 1, - anon_sym_us, - ACTIONS(7494), 1, - aux_sym_uint32_token1, - ACTIONS(7496), 1, - anon_sym_n, - ACTIONS(7498), 1, - anon_sym_un, - ACTIONS(7502), 1, - aux_sym_uint64_token1, - ACTIONS(7618), 1, - anon_sym_l, - ACTIONS(7620), 1, - anon_sym_L, - ACTIONS(7622), 1, - anon_sym_lf, - ACTIONS(7624), 1, - anon_sym_LF, + ACTIONS(8485), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2520), 2, - sym__dedent, - anon_sym_PIPE, - STATE(4685), 6, + STATE(5272), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99385] = 19, + ACTIONS(3389), 10, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_f, + aux_sym_decimal_token1, + [110350] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6963), 1, - sym_identifier, - ACTIONS(6965), 1, - anon_sym_DASH_GT, - ACTIONS(6967), 1, - anon_sym_STAR, - ACTIONS(6969), 1, - anon_sym_LT2, - ACTIONS(6971), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7626), 1, - anon_sym_with, - STATE(4384), 1, - aux_sym__compound_type_repeat1, - STATE(4405), 1, - sym_long_identifier, - STATE(4418), 1, - sym_type_arguments, - STATE(5792), 1, - sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4724), 2, - anon_sym_LBRACK_LT, - anon_sym_POUNDendif, - ACTIONS(4726), 2, - anon_sym_and, - anon_sym_interface, - STATE(4686), 6, + STATE(5273), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99451] = 9, + ACTIONS(5462), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110392] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8487), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4687), 6, + STATE(5274), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99497] = 9, + ACTIONS(5340), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [110436] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8489), 1, + anon_sym_DQUOTE, + ACTIONS(8491), 1, + anon_sym_DQUOTEB, + STATE(5321), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3021), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4688), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5275), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99543] = 20, + [110492] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6035), 1, - anon_sym_let, - ACTIONS(6037), 1, - anon_sym_let_BANG, - ACTIONS(6039), 1, - anon_sym_new, - ACTIONS(7628), 1, - anon_sym_do, - ACTIONS(7632), 1, - anon_sym_static, - ACTIONS(7634), 1, - anon_sym_member, - ACTIONS(7636), 1, - anon_sym_abstract, - ACTIONS(7638), 1, - anon_sym_val, - STATE(4505), 1, - sym_function_or_value_defn, - STATE(4550), 1, - sym_additional_constr_defn, - STATE(7537), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7630), 2, - anon_sym_default, - anon_sym_override, - STATE(4689), 6, + STATE(5276), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99611] = 9, + ACTIONS(5502), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110534] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3043), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4690), 6, + STATE(5277), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3045), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99657] = 9, + ACTIONS(5440), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110576] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3047), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4691), 6, + STATE(5278), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3049), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99703] = 9, + ACTIONS(5129), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110618] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8493), 1, + anon_sym_DQUOTE, + ACTIONS(8495), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4692), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5279), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99749] = 9, + [110674] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7642), 1, - anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4693), 7, + STATE(5280), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_union_type_cases_repeat1, - ACTIONS(7640), 12, - sym__dedent, + ACTIONS(5436), 12, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [99795] = 20, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110716] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(7645), 1, - anon_sym_do, - ACTIONS(7649), 1, - anon_sym_static, - ACTIONS(7651), 1, - anon_sym_member, - ACTIONS(7653), 1, - anon_sym_abstract, - ACTIONS(7655), 1, - anon_sym_val, - STATE(4433), 1, - sym_function_or_value_defn, - STATE(4486), 1, - sym_additional_constr_defn, - STATE(7504), 1, - sym_access_modifier, - ACTIONS(13), 2, + ACTIONS(8497), 1, + anon_sym_DQUOTE, + ACTIONS(8499), 1, + anon_sym_DQUOTEB, + STATE(5269), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7647), 2, - anon_sym_default, - anon_sym_override, - STATE(4694), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5281), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [99863] = 9, + [110772] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8501), 1, + anon_sym_DQUOTE, + ACTIONS(8503), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3025), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4695), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5282), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [99909] = 10, + [110828] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8505), 1, + anon_sym_DQUOTE, + ACTIONS(8507), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5283), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [110884] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7657), 1, - anon_sym_LT2, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8509), 1, + anon_sym_DQUOTE, + ACTIONS(8511), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2990), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4696), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5284), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [99957] = 9, + [110940] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3017), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4697), 6, + STATE(5285), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100003] = 8, + ACTIONS(5478), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [110982] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8513), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4698), 6, + STATE(5286), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 14, - sym__newline, - sym__dedent, + ACTIONS(5372), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -446383,640 +493571,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [100047] = 9, + anon_sym_POUNDendif, + [111026] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8515), 1, + anon_sym_DQUOTE, + ACTIONS(8517), 1, + anon_sym_DQUOTEB, + STATE(5307), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3013), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4699), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5287), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100093] = 10, + [111082] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_PIPE, - STATE(4693), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(8519), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4700), 6, + STATE(5288), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7659), 12, - sym__dedent, + ACTIONS(5372), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [100141] = 10, + anon_sym_POUNDendif, + [111126] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8521), 1, + anon_sym_DQUOTE, + ACTIONS(8523), 1, + anon_sym_DQUOTEB, + STATE(5283), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5289), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [111182] = 19, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5188), 1, + sym__dedent, + ACTIONS(5190), 1, + anon_sym_interface, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_PIPE, - STATE(4709), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(7431), 1, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8525), 1, + anon_sym_with, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, + STATE(6746), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4701), 6, + STATE(5290), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7661), 12, - sym__dedent, + [111246] = 8, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5291), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5077), 12, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [100189] = 10, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [111288] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7663), 1, - anon_sym_or, - ACTIONS(13), 2, + ACTIONS(8527), 1, + anon_sym_DQUOTE, + ACTIONS(8529), 1, + anon_sym_DQUOTEB, + STATE(5282), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4702), 7, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5292), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100237] = 9, + [111344] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8531), 1, + anon_sym_DQUOTE, + ACTIONS(8533), 1, + anon_sym_DQUOTEB, + STATE(5296), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3007), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4703), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5293), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100283] = 9, + [111400] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8535), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4704), 6, + STATE(5294), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 13, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_when, - anon_sym_LT2, - [100329] = 20, + ACTIONS(5340), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [111444] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(7666), 1, - anon_sym_do, - ACTIONS(7670), 1, - anon_sym_static, - ACTIONS(7672), 1, - anon_sym_member, - ACTIONS(7674), 1, - anon_sym_abstract, - ACTIONS(7676), 1, - anon_sym_val, - STATE(4992), 1, - sym_additional_constr_defn, - STATE(6467), 1, - sym_function_or_value_defn, - STATE(7304), 1, - sym_access_modifier, + ACTIONS(8537), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7668), 2, - anon_sym_default, - anon_sym_override, - STATE(4705), 6, + STATE(5295), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [100397] = 9, + ACTIONS(5340), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [111488] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8539), 1, + anon_sym_DQUOTE, + ACTIONS(8541), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3033), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4706), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5296), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3039), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100443] = 9, + sym_preproc_line, + [111544] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3257), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8443), 1, + anon_sym_DOT, + STATE(5260), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3025), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4707), 6, + STATE(5297), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 9, + ACTIONS(3259), 9, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100489] = 9, + [111592] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8543), 1, + anon_sym_DQUOTE, + ACTIONS(8545), 1, + anon_sym_DQUOTEB, + STATE(5271), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3017), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4708), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5298), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100535] = 10, + [111648] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7614), 1, - anon_sym_PIPE, - STATE(4693), 1, - aux_sym_union_type_cases_repeat1, + ACTIONS(8547), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4709), 6, + STATE(5299), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7612), 12, - sym__dedent, + ACTIONS(5348), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [100583] = 8, + anon_sym_POUNDendif, + [111692] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8549), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4710), 6, + STATE(5300), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7573), 14, - sym__dedent, + ACTIONS(5348), 11, anon_sym_LBRACK_LT, + anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, - anon_sym_STAR, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [100627] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, + anon_sym_POUNDendif, + [111736] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(3021), 5, - anon_sym_COLON, - anon_sym_as, - anon_sym_in, - anon_sym_when, - sym_identifier, - STATE(4711), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3023), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100673] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8551), 1, + anon_sym_DQUOTE, + ACTIONS(8553), 1, + anon_sym_DQUOTEB, + STATE(5302), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3013), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4712), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5301), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3015), 9, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [100719] = 9, + [111792] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8555), 1, + anon_sym_DQUOTE, + ACTIONS(8557), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4713), 6, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5302), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 13, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_when, - anon_sym_LT2, - [100765] = 10, + [111848] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7678), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2990), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_as, - anon_sym_in, - sym_identifier, - STATE(4714), 6, + STATE(5303), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 8, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [100813] = 9, + ACTIONS(5073), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [111890] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2917), 4, + ACTIONS(3242), 3, anon_sym_COLON, anon_sym_and, - anon_sym_or, sym_identifier, - STATE(4715), 6, + STATE(5304), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 9, + ACTIONS(3244), 9, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, @@ -447026,307 +494260,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [100858] = 9, + [111934] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7682), 1, - anon_sym_LPAREN, + ACTIONS(8559), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4716), 6, + STATE(5305), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7680), 12, - anon_sym_EQ, + ACTIONS(5348), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [100903] = 16, + [111978] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7692), 1, - anon_sym_DQUOTE, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - STATE(4823), 1, - aux_sym_format_string_repeat1, + ACTIONS(8561), 1, + anon_sym_DQUOTE, + ACTIONS(8563), 1, + anon_sym_DQUOTEB, STATE(5256), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4717), 6, + STATE(5306), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [100962] = 16, + [112034] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7702), 1, + ACTIONS(8565), 1, anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8567), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4718), 6, + STATE(5307), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101021] = 9, + [112090] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4719), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3536), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, + ACTIONS(8569), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101066] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6400), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4720), 6, + STATE(5308), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6402), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101111] = 9, + ACTIONS(5348), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [112134] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6414), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4721), 6, + STATE(5309), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6416), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101156] = 16, + ACTIONS(3440), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [112176] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7704), 1, + ACTIONS(8571), 1, anon_sym_DQUOTE, - STATE(4832), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8573), 1, + anon_sym_DQUOTEB, + STATE(5279), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4722), 6, + STATE(5310), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101215] = 9, + [112232] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6607), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4723), 6, + STATE(5311), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6605), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(5506), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -447334,78 +494519,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [101260] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [112274] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - STATE(4728), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8575), 1, + anon_sym_with, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4724), 6, + STATE(5312), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101319] = 9, + ACTIONS(5366), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [112318] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6626), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4725), 6, + STATE(5313), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6624), 10, - anon_sym_do, - anon_sym_let, + ACTIONS(5398), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, anon_sym_static, @@ -447413,1916 +494588,2044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - sym_identifier, - [101364] = 17, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [112360] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2814), 1, - anon_sym_and, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2812), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4726), 6, + STATE(5314), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101425] = 17, + ACTIONS(5394), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [112402] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2810), 1, - anon_sym_and, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2808), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4727), 6, + STATE(5315), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101486] = 16, + ACTIONS(5452), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [112444] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7714), 1, + ACTIONS(8577), 1, anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8579), 1, + anon_sym_DQUOTEB, + STATE(5326), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4728), 6, + STATE(5316), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101545] = 17, + [112500] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2806), 1, - anon_sym_and, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2804), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4729), 6, + STATE(5317), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101606] = 16, + ACTIONS(5390), 12, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + [112542] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7716), 1, + ACTIONS(8581), 1, anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8583), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5318), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [112598] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8585), 1, + anon_sym_DQUOTE, + ACTIONS(8587), 1, + anon_sym_DQUOTEB, + STATE(5318), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4730), 6, + STATE(5319), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101665] = 16, + [112654] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7718), 1, + ACTIONS(8589), 1, anon_sym_DQUOTE, - STATE(4730), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8591), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, sym__escape_char, sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5320), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [112710] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8593), 1, + anon_sym_DQUOTE, + ACTIONS(8595), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5321), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [112766] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8597), 1, + anon_sym_DQUOTE, + ACTIONS(8599), 1, + anon_sym_DQUOTEB, + STATE(5320), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + STATE(5710), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4731), 6, + STATE(5322), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101724] = 9, + [112822] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, - anon_sym_COLON, + ACTIONS(8601), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4732), 6, + STATE(5323), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6230), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101769] = 9, + ACTIONS(5354), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [112866] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6418), 1, - anon_sym_COLON, + ACTIONS(8603), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4733), 6, + STATE(5324), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6420), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101814] = 9, + ACTIONS(5372), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [112910] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6422), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4734), 6, + STATE(5325), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6424), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [101859] = 16, + ACTIONS(3440), 12, + sym__dedent, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_with, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [112952] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7720), 1, + ACTIONS(8605), 1, anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8607), 1, + anon_sym_DQUOTEB, + STATE(5238), 1, + aux_sym__string_literal_repeat1, + STATE(5624), 1, + sym__string_char, + STATE(5710), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8376), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8380), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8378), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4735), 6, + STATE(5326), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101918] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [113008] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7722), 1, - anon_sym_DQUOTE, - STATE(4735), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8609), 1, + anon_sym_with, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4736), 6, + STATE(5327), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [101977] = 16, + ACTIONS(5334), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113052] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7724), 1, + ACTIONS(8372), 1, anon_sym_DQUOTE, - STATE(4774), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + STATE(5852), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + STATE(5877), 1, + sym__string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, + ACTIONS(8611), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8617), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8614), 3, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - STATE(4737), 6, + STATE(5328), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102036] = 16, - ACTIONS(3), 1, + aux_sym__string_literal_repeat1, + [113103] = 8, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5329), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5398), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [113144] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7726), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7183), 1, + anon_sym_new, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(8624), 1, + anon_sym_static, + ACTIONS(8626), 1, + anon_sym_member, + ACTIONS(8628), 1, + anon_sym_abstract, + ACTIONS(8630), 1, + anon_sym_val, + STATE(5354), 1, + sym_additional_constr_defn, + STATE(6615), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4738), 6, + ACTIONS(8622), 2, + anon_sym_default, + anon_sym_override, + STATE(5330), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102095] = 16, - ACTIONS(3), 1, + [113203] = 8, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5331), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5478), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113244] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7728), 1, - anon_sym_DQUOTE, - STATE(4738), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4739), 6, + STATE(5332), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102154] = 16, - ACTIONS(3), 1, + ACTIONS(5129), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [113285] = 8, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5333), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5129), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113326] = 8, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5334), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5486), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113367] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7730), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3230), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8632), 1, + anon_sym_or, + STATE(5339), 1, + aux_sym_type_argument_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4740), 6, + STATE(5335), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102213] = 9, + ACTIONS(3232), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [113414] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7734), 1, - anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4741), 6, + STATE(5336), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7732), 12, - anon_sym_EQ, + ACTIONS(5436), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [102258] = 9, + [113455] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7738), 1, - anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4742), 6, + STATE(5337), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7736), 12, - anon_sym_EQ, + ACTIONS(5440), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [102303] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [113496] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7740), 1, - anon_sym_DQUOTE, - STATE(4740), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8634), 1, + anon_sym_COMMA, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4743), 6, + STATE(5338), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102362] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5348), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [113539] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7742), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3274), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8636), 1, + anon_sym_or, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4744), 6, + STATE(5339), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102421] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_type_argument_repeat1, + ACTIONS(3276), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [113584] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7744), 1, - anon_sym_DQUOTE, - STATE(4744), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(8639), 1, + anon_sym_and, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4745), 6, + STATE(5340), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102480] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6629), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [113629] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7746), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6640), 1, + anon_sym_COLON, + ACTIONS(8642), 1, + anon_sym_and, + STATE(5340), 1, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4746), 6, + STATE(5341), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102539] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6642), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [113676] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7748), 1, - anon_sym_DQUOTE, - STATE(4746), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4747), 6, + STATE(5342), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102598] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5482), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [113717] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7750), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + ACTIONS(8646), 1, + anon_sym_as, + ACTIONS(8648), 1, + anon_sym_COMMA, + ACTIONS(8650), 1, + anon_sym_COLON_COLON, + ACTIONS(8652), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_AMP, + ACTIONS(8658), 1, + sym__dedent, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6171), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4748), 6, + ACTIONS(8656), 2, + sym__newline, + anon_sym_SEMI, + STATE(5343), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102657] = 19, + [113776] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4726), 1, - anon_sym_interface, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7752), 1, - anon_sym_with, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, - STATE(5955), 1, - sym__object_members, + ACTIONS(6676), 1, + anon_sym_COLON, + ACTIONS(8642), 1, + anon_sym_and, + STATE(5341), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4724), 2, - sym__newline, - sym__dedent, - STATE(4749), 6, + STATE(5344), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102722] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6678), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [113823] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7754), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4750), 6, + STATE(5345), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102781] = 9, + ACTIONS(5394), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113864] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4751), 6, + STATE(5346), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3530), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [102826] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5452), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [113905] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7756), 1, - anon_sym_DQUOTE, - STATE(4771), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4752), 6, + STATE(5347), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [102885] = 9, + ACTIONS(5390), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113946] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4753), 6, + STATE(5348), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [102930] = 9, + ACTIONS(5462), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [113987] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3465), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4754), 6, + STATE(5349), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3467), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [102975] = 9, + ACTIONS(5440), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114028] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4755), 6, + STATE(5350), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3463), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [103020] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5482), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114069] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7758), 1, - anon_sym_DQUOTE, - STATE(4759), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7218), 1, + anon_sym_new, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(8662), 1, + anon_sym_static, + ACTIONS(8664), 1, + anon_sym_member, + ACTIONS(8666), 1, + anon_sym_abstract, + ACTIONS(8668), 1, + anon_sym_val, + STATE(3075), 1, + sym_additional_constr_defn, + STATE(6612), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4756), 6, + ACTIONS(8660), 2, + anon_sym_default, + anon_sym_override, + STATE(5351), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103079] = 8, + [114128] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8670), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4757), 6, + STATE(5352), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6992), 13, + ACTIONS(5334), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [103122] = 9, + [114171] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6447), 1, - anon_sym_COLON, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7161), 1, + anon_sym_new, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(8674), 1, + anon_sym_static, + ACTIONS(8676), 1, + anon_sym_member, + ACTIONS(8678), 1, + anon_sym_abstract, + ACTIONS(8680), 1, + anon_sym_val, + STATE(3206), 1, + sym_additional_constr_defn, + STATE(6623), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4758), 6, + ACTIONS(8672), 2, + anon_sym_default, + anon_sym_override, + STATE(5353), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6449), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [103167] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [114230] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7760), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4759), 6, + STATE(5354), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103226] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5452), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114271] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7762), 1, - anon_sym_DQUOTE, - STATE(4750), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4760), 6, + STATE(5355), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103285] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5466), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [114312] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7764), 1, - anon_sym_DQUOTE, - STATE(4718), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4761), 6, + STATE(5356), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103344] = 9, + ACTIONS(5436), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114353] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6455), 1, + ACTIONS(6640), 1, anon_sym_COLON, + ACTIONS(8682), 1, + anon_sym_and, + STATE(5367), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4762), 6, + STATE(5357), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6457), 12, + ACTIONS(6642), 8, anon_sym_EQ, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, anon_sym_LT2, - [103389] = 9, + [114400] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6451), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4763), 6, + STATE(5358), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6453), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [103434] = 9, + ACTIONS(5390), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [114441] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6459), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4764), 6, + STATE(5359), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6461), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [103479] = 8, + ACTIONS(5506), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114482] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8684), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4765), 6, + STATE(5360), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6998), 13, + ACTIONS(5340), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [103522] = 17, + [114525] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2850), 1, - anon_sym_and, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2848), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - STATE(4766), 6, + STATE(5361), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103583] = 9, + ACTIONS(5502), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [114566] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7768), 1, - anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4767), 6, + STATE(5362), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7766), 12, - anon_sym_EQ, + ACTIONS(5492), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [103628] = 9, + [114607] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7551), 1, - anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4768), 6, + STATE(5363), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7549), 12, - anon_sym_EQ, + ACTIONS(5394), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [103673] = 9, + [114648] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3451), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4769), 6, + STATE(5364), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3453), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [103718] = 8, + ACTIONS(5077), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [114689] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4770), 6, + STATE(5365), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7640), 13, + ACTIONS(5073), 11, + sym__newline, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, - anon_sym_PIPE, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, anon_sym_member, - anon_sym_interface, anon_sym_abstract, anon_sym_override, anon_sym_val, - [103761] = 16, - ACTIONS(3), 1, + [114730] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8686), 1, + anon_sym_with, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5366), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5354), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [114773] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(8688), 1, + anon_sym_and, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4771), 6, + STATE(5367), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103820] = 9, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6629), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [114818] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3387), 1, + ACTIONS(3451), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4772), 6, + STATE(5368), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3389), 12, - anon_sym_EQ, + ACTIONS(3453), 10, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, + anon_sym_f, + aux_sym_decimal_token1, + [114861] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8691), 1, + anon_sym_COMMA, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5369), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(5340), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [114904] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8693), 1, + anon_sym_STAR, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(3032), 2, + anon_sym_and, + sym_identifier, + ACTIONS(3030), 7, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, anon_sym_LT2, - [103865] = 9, + anon_sym_LBRACK_RBRACK, + STATE(5370), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym__compound_type_repeat1, + [114949] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7772), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4773), 6, + STATE(5371), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 12, + ACTIONS(5073), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -449334,190 +496637,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [103910] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [114990] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7774), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + ACTIONS(8646), 1, + anon_sym_as, + ACTIONS(8648), 1, + anon_sym_COMMA, + ACTIONS(8650), 1, + anon_sym_COLON_COLON, + ACTIONS(8652), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_AMP, + ACTIONS(8696), 1, + sym__dedent, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6194), 1, + aux_sym__list_pattern_content_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4774), 6, + ACTIONS(8656), 2, + sym__newline, + anon_sym_SEMI, + STATE(5372), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [103969] = 9, + [115049] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3428), 1, + ACTIONS(3387), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4775), 6, + STATE(5373), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3430), 12, - anon_sym_EQ, + ACTIONS(3389), 10, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104014] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_f, + aux_sym_decimal_token1, + [115092] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7782), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7785), 1, - anon_sym_LBRACE2, - ACTIONS(7788), 1, - anon_sym_DQUOTE, - ACTIONS(7790), 1, - sym__inside_string_marker, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6676), 1, + anon_sym_COLON, + ACTIONS(8698), 1, + anon_sym_and, + STATE(5384), 1, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7776), 2, - sym__escape_char, - sym__non_escape_char, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7779), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4776), 7, + STATE(5374), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_format_string_repeat1, - [104071] = 9, + ACTIONS(6678), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [115139] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3391), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6676), 1, + anon_sym_COLON, + ACTIONS(8700), 1, + anon_sym_and, + STATE(5399), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4777), 6, + STATE(5375), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 12, - anon_sym_EQ, + ACTIONS(6678), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, + [115186] = 18, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, anon_sym_LT2, - [104116] = 9, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(8704), 1, + anon_sym_COMMA, + ACTIONS(8706), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + STATE(6265), 1, + aux_sym_types_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5376), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [115247] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7793), 1, + ACTIONS(8708), 1, anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4778), 6, + STATE(5377), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 12, + ACTIONS(5372), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -449526,68 +496862,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [104161] = 9, + [115290] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3375), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8710), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4779), 6, + ACTIONS(3351), 2, + anon_sym_and, + sym_identifier, + STATE(5378), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3377), 12, + ACTIONS(3353), 8, anon_sym_EQ, - anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, + anon_sym_STAR, anon_sym_LT2, - [104206] = 9, + anon_sym_LBRACK_RBRACK, + [115335] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3421), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(8712), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4780), 6, + STATE(5379), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 12, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6629), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -449596,36 +496932,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104251] = 9, + [115380] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7795), 1, - anon_sym_COMMA, + ACTIONS(8715), 1, + anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4781), 6, + STATE(5380), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 12, + ACTIONS(5366), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -449634,141 +496966,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [104296] = 9, + [115423] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6439), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4782), 6, + STATE(5381), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6441), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104341] = 9, + ACTIONS(5462), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [115464] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6443), 1, - anon_sym_COLON, + ACTIONS(7155), 1, + aux_sym_access_modifier_token1, + ACTIONS(7236), 1, + anon_sym_new, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(8719), 1, + anon_sym_static, + ACTIONS(8721), 1, + anon_sym_member, + ACTIONS(8723), 1, + anon_sym_abstract, + ACTIONS(8725), 1, + anon_sym_val, + STATE(5315), 1, + sym_additional_constr_defn, + STATE(6628), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4783), 6, + ACTIONS(8717), 2, + anon_sym_default, + anon_sym_override, + STATE(5382), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6445), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104386] = 10, + [115523] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6293), 1, + ACTIONS(3242), 1, anon_sym_COLON, - ACTIONS(7797), 1, - anon_sym_LT2, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8632), 1, + anon_sym_or, + STATE(5335), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4784), 6, + STATE(5383), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6295), 11, - anon_sym_EQ, + ACTIONS(3244), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - [104433] = 9, + [115570] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3371), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6640), 1, + anon_sym_COLON, + ACTIONS(8698), 1, + anon_sym_and, + STATE(5379), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4785), 6, + STATE(5384), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3373), 12, + ACTIONS(6642), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -449777,79 +497113,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104478] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [115617] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7799), 1, - anon_sym_DQUOTE, - STATE(4811), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4786), 6, + STATE(5385), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [104537] = 8, + ACTIONS(5502), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [115658] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8727), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4787), 6, + STATE(5386), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 13, + ACTIONS(5372), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, - anon_sym_with, anon_sym_new, anon_sym_default, anon_sym_static, @@ -449857,213 +497180,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [104580] = 9, + [115701] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3417), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4788), 6, + STATE(5387), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104625] = 9, + ACTIONS(5506), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [115742] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3413), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4789), 6, + STATE(5388), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104670] = 9, + ACTIONS(5492), 11, + anon_sym_LBRACK_LT, + anon_sym_and, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + anon_sym_POUNDendif, + [115783] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6293), 1, + ACTIONS(3285), 1, anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4790), 6, + STATE(5389), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6295), 12, - anon_sym_EQ, + ACTIONS(3287), 10, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, + anon_sym_DOT, anon_sym_LT2, - [104715] = 10, + [115826] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6352), 1, - anon_sym_COLON, - ACTIONS(7801), 1, - anon_sym_as, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4791), 6, + STATE(5390), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6354), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104762] = 9, + ACTIONS(5486), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [115867] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3356), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8230), 1, + anon_sym_STAR, + STATE(5370), 1, + aux_sym__compound_type_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4792), 6, + ACTIONS(3212), 2, + anon_sym_and, + sym_identifier, + STATE(5391), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3358), 12, + ACTIONS(3214), 7, anon_sym_EQ, - anon_sym_as, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, anon_sym_DASH_GT, - anon_sym_when, + anon_sym_GT, anon_sym_LT2, - [104807] = 9, + anon_sym_LBRACK_RBRACK, + [115914] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7803), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4793), 6, + STATE(5392), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 12, + ACTIONS(5466), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -450075,67 +497382,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [104852] = 9, + [115955] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3350), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4794), 6, + STATE(5393), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3352), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [104897] = 9, + ACTIONS(5077), 11, + sym__newline, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [115996] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7805), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4795), 6, + STATE(5394), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 12, + ACTIONS(5398), 11, anon_sym_LBRACK_LT, anon_sym_and, aux_sym_access_modifier_token1, @@ -450147,249 +497448,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_val, anon_sym_POUNDendif, - anon_sym_POUNDelse, - [104942] = 9, + [116037] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3339), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6676), 1, + anon_sym_COLON, + ACTIONS(8682), 1, + anon_sym_and, + STATE(5357), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4796), 6, + STATE(5395), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3341), 12, + ACTIONS(6678), 8, anon_sym_EQ, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, anon_sym_LT2, - [104987] = 9, + [116084] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3326), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8729), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4797), 6, + STATE(5396), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3328), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105032] = 9, + ACTIONS(5348), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [116127] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3312), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(8731), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4798), 6, + STATE(5397), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3314), 12, - anon_sym_EQ, + aux_sym_type_argument_constraints_repeat1, + ACTIONS(6629), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105077] = 9, + [116172] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3469), 1, + ACTIONS(2768), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7330), 1, + aux_sym_decimal_token1, + ACTIONS(7492), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4799), 6, + STATE(5398), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3471), 12, - anon_sym_EQ, + ACTIONS(2770), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105122] = 9, + [116219] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3295), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6640), 1, + anon_sym_COLON, + ACTIONS(8700), 1, + anon_sym_and, + STATE(5397), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4800), 6, + STATE(5399), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3297), 12, - anon_sym_EQ, + ACTIONS(6642), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105167] = 9, + [116266] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7807), 1, - anon_sym_COMMA, - ACTIONS(13), 2, + ACTIONS(8740), 1, + anon_sym_DQUOTE, + STATE(5402), 1, + aux_sym__string_literal_repeat1, + STATE(5852), 1, + sym__simple_string_char, + STATE(5877), 1, + sym__string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4801), 6, + ACTIONS(8734), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8738), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8736), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5400), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [105212] = 9, + [116319] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7809), 1, - anon_sym_with, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4802), 6, + STATE(5401), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 12, + ACTIONS(5478), 11, + sym__newline, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -450398,147 +497697,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [105257] = 9, + [116360] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7535), 1, - anon_sym_LPAREN, - ACTIONS(13), 2, + ACTIONS(8742), 1, + anon_sym_DQUOTE, + STATE(5328), 1, + aux_sym__string_literal_repeat1, + STATE(5852), 1, + sym__simple_string_char, + STATE(5877), 1, + sym__string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4803), 6, + ACTIONS(8734), 2, + sym__escape_char, + sym__non_escape_char, + ACTIONS(8738), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8736), 3, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + STATE(5402), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(7533), 12, - anon_sym_EQ, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_interface, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [105302] = 9, + [116413] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7811), 1, - anon_sym_with, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6111), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4804), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5403), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [105347] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [116469] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7813), 1, - anon_sym_DQUOTE, - STATE(4812), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4805), 6, + ACTIONS(3340), 2, + anon_sym_and, + sym_identifier, + STATE(5404), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105406] = 9, + ACTIONS(3342), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [116511] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3288), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6761), 1, + anon_sym_COLON, + ACTIONS(8748), 1, + anon_sym_SEMI, + STATE(5479), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4806), 6, + STATE(5405), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3290), 12, + ACTIONS(6763), 7, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -450546,339 +497844,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105451] = 9, + [116557] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3284), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4807), 6, + STATE(5406), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3286), 12, - anon_sym_EQ, + ACTIONS(6759), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105496] = 9, + [116601] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8754), 1, + anon_sym_DQUOTE2, + ACTIONS(8756), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5407), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [116653] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(7815), 1, - anon_sym_with, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8758), 1, + anon_sym_DQUOTE2, + ACTIONS(8760), 1, + anon_sym_DQUOTEB, + STATE(5407), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4808), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5408), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [105541] = 9, + [116705] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3280), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6771), 1, + anon_sym_COLON, + ACTIONS(8762), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4809), 6, + ACTIONS(6773), 7, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5409), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3282), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105586] = 9, + aux_sym_record_pattern_repeat1, + [116749] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3276), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6582), 1, + anon_sym_new, + ACTIONS(8136), 1, + anon_sym_member, + ACTIONS(8138), 1, + anon_sym_abstract, + ACTIONS(8140), 1, + anon_sym_val, + ACTIONS(8765), 1, + anon_sym_static, + STATE(4912), 1, + sym_additional_constr_defn, + STATE(8067), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4810), 6, + ACTIONS(8132), 2, + anon_sym_default, + anon_sym_override, + STATE(5410), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3278), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105631] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [116805] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7817), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6258), 1, + sym_record_field, + STATE(7975), 1, + sym_record_fields, + STATE(8095), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4811), 6, + STATE(5411), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105690] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [116863] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7819), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4812), 6, + STATE(5412), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [105749] = 9, + ACTIONS(5398), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [116903] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3272), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4813), 6, + STATE(5413), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3274), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105794] = 11, + ACTIONS(5394), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [116943] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7616), 1, - anon_sym_or, - STATE(4684), 1, - aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 2, - anon_sym_and, - sym_identifier, - STATE(4814), 6, + STATE(5414), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [105843] = 9, + ACTIONS(5390), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [116983] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3268), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6765), 1, + anon_sym_COLON, + STATE(5421), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4815), 6, + STATE(5415), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3270), 12, + ACTIONS(6767), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -450887,759 +498199,727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105888] = 9, + [117027] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3262), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4816), 6, + STATE(5416), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3264), 12, - anon_sym_EQ, + ACTIONS(6715), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [105933] = 9, + [117071] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3029), 4, - anon_sym_COLON, + ACTIONS(3300), 2, anon_sym_and, - anon_sym_or, sym_identifier, - STATE(4817), 6, + STATE(5417), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(3302), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [117113] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8771), 1, + anon_sym_DQUOTE2, + ACTIONS(8773), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5418), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [105978] = 9, + [117165] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6765), 1, + anon_sym_COLON, + STATE(5409), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6603), 3, - anon_sym_LBRACK_LT, - anon_sym_let_BANG, - aux_sym_access_modifier_token1, - STATE(4818), 6, + STATE(5419), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6601), 10, - anon_sym_do, - anon_sym_let, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - sym_identifier, - [106023] = 9, + ACTIONS(6767), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [117209] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3409), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6802), 1, + anon_sym_COLON, + ACTIONS(8775), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4819), 6, + STATE(5420), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3411), 12, - anon_sym_EQ, + ACTIONS(6804), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [106068] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117253] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7821), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6771), 1, + anon_sym_COLON, + ACTIONS(8777), 1, + anon_sym_SEMI, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4820), 6, + ACTIONS(6773), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5421), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106127] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_record_pattern_repeat1, + [117297] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7823), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6258), 1, + sym_record_field, + STATE(7923), 1, + sym_record_fields, + STATE(8095), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4821), 6, + STATE(5422), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106186] = 16, + [117355] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7825), 1, - anon_sym_DQUOTE, - STATE(4821), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8780), 1, + anon_sym_DQUOTE2, + ACTIONS(8782), 1, + anon_sym_DQUOTEB, + STATE(5418), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4822), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5423), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106245] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117407] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7827), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5996), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4823), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5424), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106304] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117463] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7829), 1, - anon_sym_DQUOTE, - STATE(4748), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6019), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4824), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5425), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106363] = 9, + [117519] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6431), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(8784), 1, + anon_sym_DQUOTE2, + ACTIONS(8786), 1, + anon_sym_DQUOTEB, + STATE(5442), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4825), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5426), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6433), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [106408] = 9, + [117571] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6435), 1, + ACTIONS(8644), 1, anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4826), 6, + STATE(5427), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6437), 12, - anon_sym_EQ, + ACTIONS(6719), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [106453] = 9, + [117615] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3253), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6410), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4827), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5428), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3255), 12, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - anon_sym_DASH_GT, - anon_sym_when, - anon_sym_LT2, - [106498] = 16, + [117671] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7831), 1, - anon_sym_DQUOTE, - STATE(4829), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, + ACTIONS(8788), 1, + anon_sym_DQUOTE2, + ACTIONS(8790), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4828), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5429), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106557] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117723] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7833), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6258), 1, + sym_record_field, + STATE(7857), 1, + sym_record_fields, + STATE(8095), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4829), 6, + STATE(5430), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106616] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117781] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7835), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4830), 6, + STATE(5431), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106675] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(5482), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [117821] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7837), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8792), 1, + sym_identifier, + ACTIONS(8794), 1, + anon_sym_LPAREN, + ACTIONS(8796), 1, + anon_sym__, + ACTIONS(8798), 1, + anon_sym_POUND, + STATE(3797), 1, + sym__static_type_identifier, + STATE(3921), 1, + sym_long_identifier, + STATE(3935), 1, + sym_type_argument, + STATE(3936), 1, + sym_atomic_type, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4831), 6, + ACTIONS(8800), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5432), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106734] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [117877] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7839), 1, - anon_sym_DQUOTE, - STATE(4776), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3274), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4832), 6, + STATE(5433), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106793] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3276), 9, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_or, + [117919] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7688), 1, - aux_sym__simple_string_char_token1, - ACTIONS(7690), 1, - anon_sym_LBRACE2, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7700), 1, - sym__inside_string_marker, - ACTIONS(7841), 1, - anon_sym_DQUOTE, - STATE(4820), 1, - aux_sym_format_string_repeat1, - STATE(5256), 1, - sym__simple_string_char, - ACTIONS(7684), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(8648), 1, + anon_sym_COMMA, + STATE(5544), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5254), 2, - sym__string_char, - sym_format_string_eval, - ACTIONS(7686), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4833), 6, + STATE(5434), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106852] = 8, + ACTIONS(6755), 7, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [117965] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4834), 6, + STATE(5435), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 12, + ACTIONS(5452), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -451648,506 +498928,574 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [106894] = 8, + [118005] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6090), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4835), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5436), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [106936] = 15, + [118061] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7849), 1, - anon_sym_DQUOTE, - ACTIONS(7851), 1, + ACTIONS(8802), 1, + anon_sym_DQUOTE2, + ACTIONS(8804), 1, anon_sym_DQUOTEB, - STATE(4842), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5429), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4836), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5437), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [106992] = 8, + [118113] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + ACTIONS(8646), 1, + anon_sym_as, + ACTIONS(8648), 1, + anon_sym_COMMA, + ACTIONS(8650), 1, + anon_sym_COLON_COLON, + ACTIONS(8652), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_AMP, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4837), 6, + ACTIONS(4762), 3, + sym__newline, + sym__dedent, + anon_sym_SEMI, + STATE(5438), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5002), 12, + [118167] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [107034] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5977), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5439), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [118223] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7853), 1, - anon_sym_DQUOTE, - ACTIONS(7855), 1, - anon_sym_DQUOTEB, - STATE(4880), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3361), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4838), 6, + STATE(5440), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107090] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3363), 9, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_or, + [118265] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7857), 1, - anon_sym_DQUOTE, - ACTIONS(7859), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4839), 6, + ACTIONS(3308), 2, + anon_sym_and, + sym_identifier, + STATE(5441), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107146] = 15, + ACTIONS(3310), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [118307] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7861), 1, - anon_sym_DQUOTE, - ACTIONS(7863), 1, + ACTIONS(8806), 1, + anon_sym_DQUOTE2, + ACTIONS(8808), 1, anon_sym_DQUOTEB, - STATE(4839), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4840), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5442), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107202] = 9, + [118359] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7865), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5991), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4841), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5443), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [107246] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [118415] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7867), 1, - anon_sym_DQUOTE, - ACTIONS(7869), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8814), 1, + anon_sym_COMMA, + ACTIONS(8816), 1, + anon_sym_COLON_COLON, + ACTIONS(8818), 1, + anon_sym_PIPE, + ACTIONS(8820), 1, + anon_sym_AMP, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4842), 6, + ACTIONS(6788), 3, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_LT2, + STATE(5444), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107302] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [118469] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - ACTIONS(7873), 1, - anon_sym_DQUOTEB, - STATE(4845), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(8822), 1, + anon_sym_COMMA, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4843), 6, + ACTIONS(6704), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + STATE(5445), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107358] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_repeat_pattern_repeat1, + [118513] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7875), 1, - anon_sym_DQUOTE, - ACTIONS(7877), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4844), 6, + STATE(5446), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107414] = 15, - ACTIONS(3), 1, + ACTIONS(6711), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [118557] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5447), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6698), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [118601] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7879), 1, - anon_sym_DQUOTE, - ACTIONS(7881), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4845), 6, + STATE(5448), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107470] = 15, - ACTIONS(3), 1, + ACTIONS(6723), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [118645] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5449), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6704), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [118689] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7883), 1, - anon_sym_DQUOTE, - ACTIONS(7885), 1, - anon_sym_DQUOTEB, - STATE(4844), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4846), 6, + STATE(5450), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107526] = 10, + ACTIONS(5073), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [118729] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3177), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7887), 1, - sym_int, + ACTIONS(6761), 1, + anon_sym_COLON, + STATE(5419), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4847), 6, + STATE(5451), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3179), 10, + ACTIONS(6763), 8, sym__newline, sym__dedent, anon_sym_as, @@ -452156,68 +499504,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_f, - aux_sym_decimal_token1, - [107572] = 10, + [118773] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7889), 1, - aux_sym_float_token1, + ACTIONS(6765), 1, + anon_sym_COLON, + ACTIONS(8825), 1, + anon_sym_SEMI, + STATE(5468), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4848), 6, + STATE(5452), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3075), 10, - sym__newline, - sym__dedent, + ACTIONS(6767), 7, + anon_sym_EQ, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_f, - aux_sym_decimal_token1, - [107618] = 8, + anon_sym_LT2, + [118819] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4849), 6, + STATE(5453), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 12, + ACTIONS(5486), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452226,32 +499571,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [107660] = 8, + [118859] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4850), 6, + STATE(5454), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 12, + ACTIONS(5077), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452260,154 +499603,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [107702] = 19, + [118899] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4724), 1, - sym__dedent, - ACTIONS(4726), 1, - anon_sym_interface, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6920), 1, - sym_identifier, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(7891), 1, - anon_sym_with, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, - STATE(6168), 1, - sym__object_members, + ACTIONS(7236), 1, + anon_sym_new, + ACTIONS(8719), 1, + anon_sym_static, + ACTIONS(8721), 1, + anon_sym_member, + ACTIONS(8723), 1, + anon_sym_abstract, + ACTIONS(8725), 1, + anon_sym_val, + STATE(5315), 1, + sym_additional_constr_defn, + STATE(7955), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4851), 6, + ACTIONS(8717), 2, + anon_sym_default, + anon_sym_override, + STATE(5455), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [107766] = 9, + [118955] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6054), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 3, - anon_sym_COLON, - anon_sym_and, - sym_identifier, - STATE(4852), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5456), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_GT, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [107810] = 14, + [119011] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7902), 1, - anon_sym_DQUOTE, - ACTIONS(7904), 1, + ACTIONS(8827), 1, + anon_sym_DQUOTE2, + ACTIONS(8829), 1, anon_sym_DQUOTEB, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5472), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7893), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7899), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7896), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4853), 7, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5457), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__string_literal_repeat1, - [107864] = 9, + [119063] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7906), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4854), 6, + STATE(5458), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 11, + ACTIONS(5478), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452416,74 +499753,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [107908] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7908), 1, - anon_sym_DQUOTE, - ACTIONS(7910), 1, - anon_sym_DQUOTEB, - STATE(4861), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4855), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [107964] = 9, + [119103] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7912), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4856), 6, + STATE(5459), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 11, + ACTIONS(5129), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452492,31 +499785,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [108008] = 8, + [119143] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4857), 6, + STATE(5460), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5034), 12, + ACTIONS(5462), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452525,269 +499817,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [108050] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [119183] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7914), 1, - anon_sym_DQUOTE, - ACTIONS(7916), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8831), 1, + sym_identifier, + ACTIONS(8833), 1, + anon_sym_LPAREN, + ACTIONS(8835), 1, + anon_sym__, + ACTIONS(8837), 1, + anon_sym_POUND, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5203), 1, + sym_long_identifier, + STATE(5204), 1, + sym_type_argument, + STATE(5207), 1, + sym_atomic_type, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4858), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5461), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108106] = 11, + [119239] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7918), 1, - anon_sym_DOT, - STATE(4894), 1, - aux_sym_long_identifier_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4859), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2937), 9, - sym__newline, - sym__dedent, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(8839), 1, + anon_sym_EQ, + ACTIONS(8841), 1, anon_sym_COMMA, + ACTIONS(8843), 1, anon_sym_COLON_COLON, + ACTIONS(8845), 1, anon_sym_PIPE, + ACTIONS(8847), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [108154] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7920), 1, - anon_sym_DQUOTE, - ACTIONS(7922), 1, - anon_sym_DQUOTEB, - STATE(4874), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6642), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4860), 6, + STATE(5462), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108210] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [119297] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7924), 1, - anon_sym_DQUOTE, - ACTIONS(7926), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4861), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108266] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7928), 1, - anon_sym_DQUOTE, - ACTIONS(7930), 1, - anon_sym_DQUOTEB, - STATE(4858), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(7218), 1, + anon_sym_new, + ACTIONS(8662), 1, + anon_sym_static, + ACTIONS(8664), 1, + anon_sym_member, + ACTIONS(8666), 1, + anon_sym_abstract, + ACTIONS(8668), 1, + anon_sym_val, + STATE(3075), 1, + sym_additional_constr_defn, + STATE(8266), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4862), 6, + ACTIONS(8660), 2, + anon_sym_default, + anon_sym_override, + STATE(5463), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108322] = 8, + [119353] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4863), 6, + ACTIONS(3322), 2, + anon_sym_and, + sym_identifier, + STATE(5464), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [108364] = 9, + ACTIONS(3324), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [119395] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7932), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4864), 6, + STATE(5465), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 11, + ACTIONS(5440), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452796,33 +500003,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [108408] = 9, + [119435] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7934), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4865), 6, + STATE(5466), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 11, + ACTIONS(5436), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -452831,313 +500035,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [108452] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7936), 1, - anon_sym_DQUOTE, - ACTIONS(7938), 1, - anon_sym_DQUOTEB, - STATE(4870), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4866), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108508] = 8, + [119475] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4867), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4988), 12, + ACTIONS(6828), 1, anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [108550] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7940), 1, - anon_sym_DQUOTE, - ACTIONS(7942), 1, - anon_sym_DQUOTEB, - STATE(4872), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + STATE(5474), 1, + aux_sym_attributes_repeat1, + STATE(5815), 1, + sym_attribute_set, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4868), 6, + ACTIONS(7282), 3, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + ACTIONS(7280), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5467), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108606] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [119523] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7944), 1, - anon_sym_DQUOTE, - ACTIONS(7946), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4869), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108662] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7948), 1, - anon_sym_DQUOTE, - ACTIONS(7950), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(6771), 1, + anon_sym_COLON, + ACTIONS(8849), 1, + anon_sym_SEMI, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4870), 6, + ACTIONS(6773), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + STATE(5468), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108718] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_record_pattern_repeat1, + [119567] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7952), 1, - anon_sym_DQUOTE, - ACTIONS(7954), 1, - anon_sym_DQUOTEB, - STATE(4898), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4871), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108774] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7956), 1, - anon_sym_DQUOTE, - ACTIONS(7958), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4872), 6, + STATE(5469), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108830] = 9, + ACTIONS(6759), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [119611] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7960), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4873), 6, + STATE(5470), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 11, + ACTIONS(5502), 10, + sym__dedent, anon_sym_LBRACK_LT, - anon_sym_and, aux_sym_access_modifier_token1, anon_sym_new, anon_sym_default, @@ -453146,155 +500171,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - anon_sym_POUNDendif, - [108874] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [119651] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7962), 1, - anon_sym_DQUOTE, - ACTIONS(7964), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4874), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [108930] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7966), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4875), 6, + STATE(5471), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [108986] = 15, + ACTIONS(5492), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [119691] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7970), 1, - anon_sym_DQUOTE, - ACTIONS(7972), 1, + ACTIONS(8852), 1, + anon_sym_DQUOTE2, + ACTIONS(8854), 1, anon_sym_DQUOTEB, - STATE(4869), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4876), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5472), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109042] = 9, + [119743] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7974), 1, - anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4877), 6, + STATE(5473), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 11, - sym__newline, + ACTIONS(5466), 10, sym__dedent, anon_sym_LBRACK_LT, aux_sym_access_modifier_token1, @@ -453305,2929 +500273,2966 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_override, anon_sym_val, - [109086] = 9, + [119783] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7976), 1, - anon_sym_with, + ACTIONS(8856), 1, + anon_sym_LBRACK_LT, + STATE(5815), 1, + sym_attribute_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4878), 6, + ACTIONS(7005), 3, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + ACTIONS(7000), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5474), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [109130] = 8, + aux_sym_attributes_repeat1, + [119829] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4879), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4655), 12, - anon_sym_LBRACK_LT, - anon_sym_and, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7183), 1, anon_sym_new, - anon_sym_default, + ACTIONS(8624), 1, anon_sym_static, + ACTIONS(8626), 1, anon_sym_member, + ACTIONS(8628), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(8630), 1, anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109172] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7978), 1, - anon_sym_DQUOTE, - ACTIONS(7980), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + STATE(5354), 1, + sym_additional_constr_defn, + STATE(8100), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4880), 6, + ACTIONS(8622), 2, + anon_sym_default, + anon_sym_override, + STATE(5475), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109228] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [119885] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7982), 1, - anon_sym_DQUOTE, - ACTIONS(7984), 1, - anon_sym_DQUOTEB, - STATE(4875), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4881), 6, + STATE(5476), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109284] = 8, + ACTIONS(5506), 10, + sym__dedent, + anon_sym_LBRACK_LT, + aux_sym_access_modifier_token1, + anon_sym_new, + anon_sym_default, + anon_sym_static, + anon_sym_member, + anon_sym_abstract, + anon_sym_override, + anon_sym_val, + [119925] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4882), 6, + ACTIONS(8859), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(5477), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4978), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109326] = 8, + [119981] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4883), 6, + ACTIONS(8861), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(5478), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109368] = 9, + [120037] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7986), 1, - anon_sym_with, + ACTIONS(6765), 1, + anon_sym_COLON, + ACTIONS(8748), 1, + anon_sym_SEMI, + STATE(5421), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4884), 6, + STATE(5479), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [109412] = 15, + ACTIONS(6767), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [120083] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7988), 1, - anon_sym_DQUOTE, - ACTIONS(7990), 1, + ACTIONS(8863), 1, + anon_sym_DQUOTE2, + ACTIONS(8865), 1, anon_sym_DQUOTEB, - STATE(4897), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5485), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4885), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5480), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109468] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [120135] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7992), 1, - anon_sym_DQUOTE, - ACTIONS(7994), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + ACTIONS(8867), 1, + anon_sym_EQ, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4886), 6, + STATE(5481), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109524] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3259), 7, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + [120181] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7996), 1, - anon_sym_DQUOTE, - ACTIONS(7998), 1, - anon_sym_DQUOTEB, - STATE(4890), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8814), 1, + anon_sym_COMMA, + ACTIONS(8816), 1, + anon_sym_COLON_COLON, + ACTIONS(8818), 1, + anon_sym_PIPE, + ACTIONS(8820), 1, + anon_sym_AMP, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4887), 6, + ACTIONS(4762), 3, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_LT2, + STATE(5482), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109580] = 9, + [120235] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8000), 1, - anon_sym_with, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(8814), 1, + anon_sym_COMMA, + STATE(5445), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4888), 6, + STATE(5483), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [109624] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6755), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [120281] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8004), 1, - anon_sym_DQUOTEB, - STATE(4896), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4889), 6, + ACTIONS(3296), 2, + anon_sym_and, + sym_identifier, + STATE(5484), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109680] = 15, + ACTIONS(3298), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [120323] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8006), 1, - anon_sym_DQUOTE, - ACTIONS(8008), 1, + ACTIONS(8869), 1, + anon_sym_DQUOTE2, + ACTIONS(8871), 1, anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4890), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5485), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [109736] = 10, + [120375] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8010), 1, - anon_sym_DOT, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6042), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4891), 7, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5486), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_long_identifier_repeat1, - ACTIONS(2902), 9, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [109782] = 8, + [120431] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6016), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4892), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5487), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4996), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109824] = 8, + [120487] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8873), 1, + anon_sym_COLON, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4893), 6, + STATE(5488), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4992), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [109866] = 11, + ACTIONS(6704), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [120531] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8881), 1, + anon_sym_DQUOTE2, + ACTIONS(8883), 1, + anon_sym_DQUOTEB, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8878), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8875), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5489), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_verbatim_string_repeat1, + [120581] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2966), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7918), 1, - anon_sym_DOT, - STATE(4891), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6258), 1, + sym_record_field, + STATE(8094), 1, + sym_record_fields, + STATE(8095), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4894), 6, + STATE(5490), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2968), 9, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [109914] = 8, + [120639] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8831), 1, + sym_identifier, + ACTIONS(8833), 1, + anon_sym_LPAREN, + ACTIONS(8835), 1, + anon_sym__, + ACTIONS(8885), 1, + anon_sym_POUND, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5203), 1, + sym_long_identifier, + STATE(5204), 1, + sym_type_argument, + STATE(5207), 1, + sym_atomic_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4895), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5491), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 12, - sym__dedent, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [109956] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [120695] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8013), 1, - anon_sym_DQUOTE, - ACTIONS(8015), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4896), 6, + ACTIONS(3336), 2, + anon_sym_and, + sym_identifier, + STATE(5492), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110012] = 15, + ACTIONS(3338), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [120737] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8017), 1, - anon_sym_DQUOTE, - ACTIONS(8019), 1, + ACTIONS(8887), 1, + anon_sym_DQUOTE2, + ACTIONS(8889), 1, anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4897), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5493), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110068] = 15, + [120789] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8021), 1, - anon_sym_DQUOTE, - ACTIONS(8023), 1, + ACTIONS(8891), 1, + anon_sym_DQUOTE2, + ACTIONS(8893), 1, anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5511), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4898), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5494), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110124] = 8, + [120841] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6068), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4899), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5495), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [110166] = 15, + [120897] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8025), 1, - anon_sym_DQUOTE, - ACTIONS(8027), 1, + ACTIONS(8895), 1, + anon_sym_DQUOTE2, + ACTIONS(8897), 1, anon_sym_DQUOTEB, - STATE(4901), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4900), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [110222] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8029), 1, - anon_sym_DQUOTE, - ACTIONS(8031), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, + ACTIONS(8750), 3, sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4901), 6, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5496), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110278] = 8, + [120949] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6124), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4902), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5497), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [110320] = 8, + [121005] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6059), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4903), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5498), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [110362] = 8, + [121061] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8899), 1, + anon_sym_DQUOTE2, + ACTIONS(8901), 1, + anon_sym_DQUOTEB, + STATE(5496), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4904), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5499), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - [110404] = 15, + [121113] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8033), 1, - anon_sym_DQUOTE, - ACTIONS(8035), 1, + ACTIONS(8903), 1, + anon_sym_DQUOTE2, + ACTIONS(8905), 1, anon_sym_DQUOTEB, - STATE(4914), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5493), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4905), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5500), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110460] = 11, + [121165] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(8907), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2935), 2, + ACTIONS(3355), 2, anon_sym_and, sym_identifier, - STATE(4906), 6, + STATE(5501), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 8, + ACTIONS(3357), 7, anon_sym_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_GT, anon_sym_STAR, - anon_sym_LT2, anon_sym_LBRACK_RBRACK, - [110508] = 9, + [121209] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8037), 1, - anon_sym_with, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6096), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4907), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5502), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [110552] = 9, + [121265] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8039), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6110), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4908), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5503), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [110596] = 9, + [121321] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8041), 1, - anon_sym_with, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6092), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4909), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5504), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [110640] = 9, + [121377] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8043), 1, - anon_sym_COMMA, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4910), 6, + STATE(5505), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [110684] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6719), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [121421] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8045), 1, - anon_sym_DQUOTE, - ACTIONS(8047), 1, - anon_sym_DQUOTEB, - STATE(4886), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4911), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [110740] = 15, - ACTIONS(3), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8049), 1, - anon_sym_DQUOTE, - ACTIONS(8051), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6072), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4912), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5506), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110796] = 9, + [121477] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8053), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6053), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4913), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5507), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + [121533] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6727), 1, anon_sym_new, - anon_sym_default, - anon_sym_static, + ACTIONS(8180), 1, anon_sym_member, + ACTIONS(8182), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(8184), 1, anon_sym_val, - [110840] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8055), 1, - anon_sym_DQUOTE, - ACTIONS(8057), 1, - anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8911), 1, + anon_sym_static, + STATE(5346), 1, + sym_additional_constr_defn, + STATE(7834), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4914), 6, + ACTIONS(8176), 2, + anon_sym_default, + anon_sym_override, + STATE(5508), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [110896] = 9, + [121589] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8059), 1, - anon_sym_with, + ACTIONS(8873), 1, + anon_sym_COLON, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4915), 6, + STATE(5509), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [110940] = 8, + ACTIONS(6759), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [121633] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(8913), 1, + anon_sym_COMMA, + ACTIONS(8915), 1, + anon_sym_COLON_COLON, + ACTIONS(8917), 1, + anon_sym_PIPE, + ACTIONS(8919), 1, + anon_sym_AMP, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4916), 6, + ACTIONS(4762), 3, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5510), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3169), 12, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_with, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [110982] = 15, + [121687] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8061), 1, - anon_sym_DQUOTE, - ACTIONS(8063), 1, + ACTIONS(8921), 1, + anon_sym_DQUOTE2, + ACTIONS(8923), 1, anon_sym_DQUOTEB, - STATE(4853), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4917), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5511), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111038] = 9, + [121739] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8065), 1, - anon_sym_COMMA, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4918), 6, + STATE(5512), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111082] = 9, + ACTIONS(6715), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [121783] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8067), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5988), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4919), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5513), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111126] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [121839] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8069), 1, - anon_sym_DQUOTE, - ACTIONS(8071), 1, - anon_sym_DQUOTEB, - STATE(4917), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4920), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [111182] = 15, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8073), 1, - anon_sym_DQUOTE, - ACTIONS(8075), 1, - anon_sym_DQUOTEB, - STATE(4912), 1, - aux_sym__string_literal_repeat1, - STATE(5236), 1, - sym__string_char, - STATE(5369), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7843), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(7847), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(7845), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4921), 6, + ACTIONS(3351), 2, + anon_sym_and, + sym_identifier, + STATE(5514), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111238] = 9, + ACTIONS(3353), 8, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + [121881] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8077), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6040), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4922), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5515), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111281] = 8, + [121937] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8925), 1, + anon_sym_DQUOTE2, + ACTIONS(8927), 1, + anon_sym_DQUOTEB, + STATE(5527), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4923), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5516), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4992), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111322] = 10, + [121989] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, + ACTIONS(6765), 1, anon_sym_COLON, - ACTIONS(8079), 1, - anon_sym_and, + ACTIONS(8929), 1, + anon_sym_SEMI, + STATE(5522), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4924), 7, + STATE(5517), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6162), 8, - sym__newline, - sym__dedent, + ACTIONS(6767), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [111367] = 17, + anon_sym_DASH_GT, + anon_sym_when, + [122035] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6676), 1, - anon_sym_new, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(8086), 1, - anon_sym_static, - ACTIONS(8088), 1, - anon_sym_member, - ACTIONS(8090), 1, - anon_sym_abstract, - ACTIONS(8092), 1, - anon_sym_val, - STATE(4849), 1, - sym_additional_constr_defn, - STATE(6180), 1, - sym_access_modifier, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8931), 1, + sym_identifier, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8084), 2, - anon_sym_default, - anon_sym_override, - STATE(4925), 6, + ACTIONS(8933), 2, + sym__newline, + sym__dedent, + STATE(5518), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111426] = 9, + [122091] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8094), 1, - anon_sym_with, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5998), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4926), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5519), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4878), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111469] = 8, + [122147] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + ACTIONS(8646), 1, + anon_sym_as, + ACTIONS(8648), 1, + anon_sym_COMMA, + ACTIONS(8650), 1, + anon_sym_COLON_COLON, + ACTIONS(8652), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_AMP, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4927), 6, + ACTIONS(8935), 3, + sym__newline, + sym__dedent, + anon_sym_SEMI, + STATE(5520), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111510] = 8, + [122201] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8873), 1, + anon_sym_COLON, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4928), 6, + STATE(5521), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4996), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111551] = 8, + ACTIONS(6723), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122245] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6771), 1, + anon_sym_COLON, + ACTIONS(8937), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4929), 6, + ACTIONS(6773), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5522), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [111592] = 17, + aux_sym_record_pattern_repeat1, + [122289] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, - anon_sym_COMMA, - ACTIONS(8102), 1, - anon_sym_COLON_COLON, - ACTIONS(8104), 1, - anon_sym_PIPE, - ACTIONS(8106), 1, - anon_sym_AMP, - ACTIONS(8110), 1, - sym__dedent, - STATE(5014), 1, + STATE(5551), 1, aux_sym_repeat_pattern_repeat1, - STATE(5803), 1, - aux_sym__list_pattern_content_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8108), 2, - sym__newline, - anon_sym_SEMI, - STATE(4930), 6, + STATE(5523), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111651] = 8, + ACTIONS(6698), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122333] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8940), 1, + anon_sym_DQUOTE2, + ACTIONS(8942), 1, + anon_sym_DQUOTEB, + STATE(5537), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4931), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5524), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111692] = 17, + [122385] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6743), 1, - anon_sym_new, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(8114), 1, - anon_sym_static, - ACTIONS(8116), 1, - anon_sym_member, - ACTIONS(8118), 1, - anon_sym_abstract, - ACTIONS(8120), 1, - anon_sym_val, - STATE(2820), 1, - sym_additional_constr_defn, - STATE(6175), 1, - sym_access_modifier, + ACTIONS(6778), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8112), 2, - anon_sym_default, - anon_sym_override, - STATE(4932), 6, + STATE(5525), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [111751] = 8, + ACTIONS(6780), 9, + sym__newline, + sym__dedent, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122427] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4933), 6, + STATE(5526), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4978), 11, + ACTIONS(6704), 8, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111792] = 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122471] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8944), 1, + anon_sym_DQUOTE2, + ACTIONS(8946), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4934), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5527), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111833] = 11, + [122523] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6167), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8122), 1, - anon_sym_and, - STATE(4924), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4935), 6, + STATE(5528), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6169), 8, - sym__newline, - sym__dedent, + ACTIONS(6711), 8, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [111880] = 8, + [122567] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4936), 6, + STATE(5529), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5002), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [111921] = 8, + ACTIONS(6723), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122611] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6293), 1, + anon_sym_and, + ACTIONS(6295), 1, + anon_sym_GT, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4937), 6, + STATE(5530), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [111962] = 8, + [122669] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4938), 6, + STATE(5531), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 11, + ACTIONS(6698), 8, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112003] = 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122713] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6117), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4939), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5532), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112044] = 8, + [122769] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6782), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4940), 6, + STATE(5533), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 11, + ACTIONS(6784), 9, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112085] = 9, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122811] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8124), 1, - anon_sym_with, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5975), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4941), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5534), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4886), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112128] = 8, + [122867] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8931), 1, + sym_identifier, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4942), 6, + ACTIONS(8948), 2, + sym__newline, + sym__dedent, + STATE(5535), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112169] = 8, + [122923] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8644), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4943), 6, + STATE(5536), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112210] = 8, + ACTIONS(6711), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [122967] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8950), 1, + anon_sym_DQUOTE2, + ACTIONS(8952), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4944), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5537), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5034), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112251] = 8, + [123019] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8954), 1, + anon_sym_DQUOTE2, + ACTIONS(8956), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4945), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5538), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112292] = 8, + [123071] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6798), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4946), 6, + STATE(5539), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 11, + ACTIONS(6800), 9, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112333] = 10, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [123113] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8126), 1, - anon_sym_COLON_GT, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6009), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 2, - anon_sym_and, - sym_identifier, - STATE(4947), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5540), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [112378] = 10, + [123169] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, + ACTIONS(6640), 1, anon_sym_COLON, - ACTIONS(8128), 1, + ACTIONS(8958), 1, anon_sym_and, + STATE(5547), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4948), 7, + STATE(5541), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6162), 8, + ACTIONS(6642), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [112423] = 17, + anon_sym_in, + [123215] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8960), 1, + anon_sym_DQUOTE2, + ACTIONS(8962), 1, + anon_sym_DQUOTEB, + STATE(5617), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5542), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [123267] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, - anon_sym_COLON, - ACTIONS(8098), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(8102), 1, + ACTIONS(8915), 1, anon_sym_COLON_COLON, - ACTIONS(8104), 1, + ACTIONS(8917), 1, anon_sym_PIPE, - ACTIONS(8106), 1, + ACTIONS(8919), 1, anon_sym_AMP, - ACTIONS(8131), 1, - sym__dedent, - STATE(5014), 1, + STATE(5551), 1, aux_sym_repeat_pattern_repeat1, - STATE(5780), 1, - aux_sym__list_pattern_content_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8108), 2, - sym__newline, + ACTIONS(6788), 3, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(4949), 6, + STATE(5543), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [112482] = 11, + [123321] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6167), 1, + ACTIONS(6702), 1, anon_sym_COLON, - ACTIONS(8133), 1, - anon_sym_and, - STATE(4948), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(8964), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4950), 6, + ACTIONS(6704), 7, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(5544), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6169), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [112529] = 9, + aux_sym_repeat_pattern_repeat1, + [123365] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8135), 1, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(8967), 1, anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4951), 6, + ACTIONS(6704), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + STATE(5545), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112572] = 11, + aux_sym_repeat_pattern_repeat1, + [123409] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6182), 1, + ACTIONS(8644), 1, anon_sym_COLON, - ACTIONS(8122), 1, - anon_sym_and, - STATE(4935), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(8646), 1, + anon_sym_as, + ACTIONS(8648), 1, + anon_sym_COMMA, + ACTIONS(8650), 1, + anon_sym_COLON_COLON, + ACTIONS(8652), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_AMP, + STATE(5434), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4952), 6, + ACTIONS(6788), 3, + sym__newline, + sym__dedent, + anon_sym_SEMI, + STATE(5546), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6184), 8, - sym__newline, - sym__dedent, + [123463] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(8970), 1, + anon_sym_and, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6629), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [112619] = 8, + anon_sym_in, + STATE(5547), 7, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + aux_sym_type_argument_constraints_repeat1, + [123507] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6036), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4953), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5548), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112660] = 11, + [123563] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8137), 1, - anon_sym_or, - STATE(4980), 1, - aux_sym_type_argument_repeat1, + ACTIONS(8873), 1, + anon_sym_COLON, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4954), 6, + STATE(5549), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2926), 8, - sym__newline, - sym__dedent, + ACTIONS(6715), 8, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [112707] = 9, + [123607] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2900), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6761), 1, + anon_sym_COLON, + ACTIONS(8825), 1, + anon_sym_SEMI, + STATE(5452), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4955), 6, + STATE(5550), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2902), 10, - sym__newline, - sym__dedent, + ACTIONS(6763), 7, + anon_sym_EQ, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_LT2, - [112750] = 9, + [123653] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8139), 1, - anon_sym_with, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(5545), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4956), 6, + STATE(5551), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4902), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [112793] = 8, + ACTIONS(6755), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [123699] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8931), 1, + sym_identifier, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4957), 6, + ACTIONS(8973), 2, + sym__newline, + sym__dedent, + STATE(5552), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [112834] = 10, + [123755] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8141), 1, - anon_sym_and, + STATE(5551), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4958), 7, + STATE(5553), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6162), 8, + ACTIONS(6719), 8, anon_sym_EQ, anon_sym_as, anon_sym_RPAREN, @@ -456236,937 +503241,1037 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [112879] = 11, + [123799] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6182), 1, + ACTIONS(6790), 1, anon_sym_COLON, - ACTIONS(8144), 1, - anon_sym_and, - STATE(4985), 1, - aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4959), 6, + STATE(5554), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6184), 8, - anon_sym_EQ, + ACTIONS(6792), 9, + sym__newline, + sym__dedent, + anon_sym_and, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [112926] = 11, + [123841] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6167), 1, + ACTIONS(6765), 1, anon_sym_COLON, - ACTIONS(8146), 1, - anon_sym_and, - STATE(4958), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5522), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4960), 6, + STATE(5555), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6169), 8, - anon_sym_EQ, + ACTIONS(6767), 8, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [112973] = 8, + anon_sym_DASH_GT, + anon_sym_when, + [123885] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4961), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4978), 11, + ACTIONS(25), 1, anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113014] = 14, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8154), 1, - anon_sym_DQUOTE, - STATE(4989), 1, - aux_sym__string_literal_repeat1, - STATE(5417), 1, - sym__string_char, - STATE(5434), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6065), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8148), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8152), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8150), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4962), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5556), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113067] = 11, + [123941] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7710), 1, - anon_sym_STAR, - STATE(4981), 1, - aux_sym__compound_type_repeat1, + ACTIONS(6761), 1, + anon_sym_COLON, + ACTIONS(8929), 1, + anon_sym_SEMI, + STATE(5517), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2970), 2, - anon_sym_and, - sym_identifier, - STATE(4963), 6, + STATE(5557), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2972), 7, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6763), 7, + anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [113114] = 9, + anon_sym_when, + [123987] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8156), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6093), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4964), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5558), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113157] = 9, + [124043] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8975), 1, + anon_sym_DQUOTE2, + ACTIONS(8977), 1, + anon_sym_DQUOTEB, + STATE(5562), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5559), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [124095] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8158), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(8979), 1, anon_sym_COMMA, + ACTIONS(8981), 1, + anon_sym_COLON_COLON, + ACTIONS(8983), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4965), 6, + ACTIONS(6788), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5560), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4860), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113200] = 8, + [124149] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(8987), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4966), 6, + ACTIONS(6704), 7, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5561), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113241] = 8, + aux_sym_repeat_pattern_repeat1, + [124193] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8990), 1, + anon_sym_DQUOTE2, + ACTIONS(8992), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4967), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5562), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113282] = 8, + [124245] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7161), 1, + anon_sym_new, + ACTIONS(8674), 1, + anon_sym_static, + ACTIONS(8676), 1, + anon_sym_member, + ACTIONS(8678), 1, + anon_sym_abstract, + ACTIONS(8680), 1, + anon_sym_val, + STATE(3206), 1, + sym_additional_constr_defn, + STATE(8000), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4968), 6, + ACTIONS(8672), 2, + anon_sym_default, + anon_sym_override, + STATE(5563), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4988), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113323] = 8, + [124301] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4969), 6, + STATE(5564), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4996), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113364] = 8, + ACTIONS(6711), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [124345] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4970), 6, + STATE(5565), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4988), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113405] = 8, + ACTIONS(6698), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [124389] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4971), 6, + STATE(5566), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4992), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113446] = 11, + ACTIONS(6723), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [124433] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6182), 1, + ACTIONS(8909), 1, anon_sym_COLON, - ACTIONS(8146), 1, - anon_sym_and, - STATE(4960), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4972), 6, + STATE(5567), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6184), 8, - anon_sym_EQ, + ACTIONS(6704), 8, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [113493] = 8, + anon_sym_DASH_GT, + anon_sym_when, + [124477] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6119), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4973), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5568), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, + [124533] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6362), 1, anon_sym_new, - anon_sym_default, - anon_sym_static, + ACTIONS(8161), 1, anon_sym_member, + ACTIONS(8163), 1, anon_sym_abstract, - anon_sym_override, + ACTIONS(8165), 1, anon_sym_val, - [113534] = 8, + ACTIONS(8994), 1, + anon_sym_static, + STATE(4818), 1, + sym_additional_constr_defn, + STATE(8034), 1, + sym_access_modifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(8157), 2, + anon_sym_default, + anon_sym_override, + STATE(5569), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [124589] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6285), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4974), 6, + STATE(5570), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5034), 11, + ACTIONS(6287), 9, sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113575] = 18, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [124631] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8162), 1, - anon_sym_COMMA, - ACTIONS(8164), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - STATE(5906), 1, - aux_sym_types_repeat1, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6121), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4975), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5571), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [113636] = 9, + [124687] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8166), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8841), 1, anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_COLON_COLON, + ACTIONS(8845), 1, + anon_sym_PIPE, + ACTIONS(8847), 1, + anon_sym_AMP, + ACTIONS(8996), 1, + anon_sym_EQ, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, + STATE(6608), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4976), 6, + STATE(5572), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4892), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113679] = 8, + [124745] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6116), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4977), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5573), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [113720] = 9, + [124801] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8168), 1, - anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6087), 1, + sym_attributes, + STATE(6106), 1, + sym_type_argument_defn, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4978), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5574), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4866), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [113763] = 10, + [124857] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2917), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8170), 1, - anon_sym_or, + ACTIONS(6761), 1, + anon_sym_COLON, + STATE(5555), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4979), 7, + STATE(5575), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_repeat1, - ACTIONS(2919), 8, - sym__newline, - sym__dedent, + ACTIONS(6763), 8, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [113808] = 11, + anon_sym_DASH_GT, + anon_sym_when, + [124901] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2941), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8137), 1, - anon_sym_or, - STATE(4979), 1, - aux_sym_type_argument_repeat1, + ACTIONS(6761), 1, + anon_sym_COLON, + STATE(5415), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4980), 6, + STATE(5576), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2943), 8, - sym__newline, - sym__dedent, + ACTIONS(6763), 8, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [113855] = 10, + [124945] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8173), 1, - anon_sym_STAR, + ACTIONS(8998), 1, + sym_identifier, + ACTIONS(9000), 1, + anon_sym_LPAREN, + ACTIONS(9002), 1, + anon_sym__, + ACTIONS(9004), 1, + anon_sym_POUND, + STATE(4023), 1, + sym__static_type_identifier, + STATE(4044), 1, + sym_long_identifier, + STATE(4096), 1, + sym_atomic_type, + STATE(4112), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2810), 2, - anon_sym_and, - sym_identifier, - ACTIONS(2808), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - STATE(4981), 7, + ACTIONS(9006), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5577), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__compound_type_repeat1, - [113900] = 11, + [125001] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6182), 1, - anon_sym_COLON, - ACTIONS(8133), 1, - anon_sym_and, - STATE(4950), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6007), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4982), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5578), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6184), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [113947] = 9, + [125057] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3173), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(9008), 1, + anon_sym_DQUOTE2, + ACTIONS(9010), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4983), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5579), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3175), 10, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_f, - aux_sym_decimal_token1, - [113990] = 10, + [125109] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, - anon_sym_COLON, - ACTIONS(8176), 1, - anon_sym_and, - ACTIONS(13), 2, + ACTIONS(9012), 1, + anon_sym_DQUOTE2, + ACTIONS(9014), 1, + anon_sym_DQUOTEB, + STATE(5591), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4984), 7, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5580), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - ACTIONS(6162), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [114035] = 11, + [125161] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6167), 1, + ACTIONS(8810), 1, anon_sym_COLON, - ACTIONS(8144), 1, - anon_sym_and, - STATE(4984), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4985), 6, + STATE(5581), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6169), 8, + ACTIONS(6715), 8, anon_sym_EQ, anon_sym_as, anon_sym_COMMA, @@ -457175,2368 +504280,2194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LT2, - [114082] = 9, + [125205] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3073), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5483), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4986), 6, + STATE(5582), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3075), 10, - sym__newline, - sym__dedent, + ACTIONS(6719), 8, + anon_sym_EQ, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_f, - aux_sym_decimal_token1, - [114125] = 8, + anon_sym_LT2, + [125249] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(4987), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5002), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [114166] = 11, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6862), 1, - aux_sym_decimal_token1, - ACTIONS(6955), 1, - anon_sym_f, + ACTIONS(8979), 1, + anon_sym_COMMA, + ACTIONS(8981), 1, + anon_sym_COLON_COLON, + ACTIONS(8983), 1, + anon_sym_PIPE, + ACTIONS(8985), 1, + anon_sym_AMP, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4988), 6, + ACTIONS(4762), 3, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5583), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [114213] = 14, + [125303] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8179), 1, - anon_sym_DQUOTE, - STATE(4990), 1, - aux_sym__string_literal_repeat1, - STATE(5417), 1, - sym__string_char, - STATE(5434), 1, + ACTIONS(9016), 1, + anon_sym_DQUOTE2, + ACTIONS(9018), 1, + anon_sym_DQUOTEB, + STATE(5538), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8148), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8152), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8150), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4989), 6, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5584), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114266] = 13, + [125355] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7902), 1, - anon_sym_DQUOTE, - STATE(5417), 1, - sym__string_char, - STATE(5434), 1, + ACTIONS(9020), 1, + anon_sym_DQUOTE2, + ACTIONS(9022), 1, + anon_sym_DQUOTEB, + STATE(5589), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8181), 2, - sym__escape_char, - sym__non_escape_char, - ACTIONS(8187), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8184), 3, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - STATE(4990), 7, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5585), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__string_literal_repeat1, - [114317] = 17, + [125407] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(6658), 1, - anon_sym_new, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(8192), 1, - anon_sym_static, - ACTIONS(8194), 1, - anon_sym_member, - ACTIONS(8196), 1, - anon_sym_abstract, - ACTIONS(8198), 1, - anon_sym_val, - STATE(2676), 1, - sym_additional_constr_defn, - STATE(6303), 1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + ACTIONS(9024), 1, + sym__dedent, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6705), 1, + sym_record_field, + STATE(8095), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8190), 2, - anon_sym_default, - anon_sym_override, - STATE(4991), 6, + STATE(5586), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114376] = 8, + [125465] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(8979), 1, + anon_sym_COMMA, + STATE(5561), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4992), 6, + STATE(5587), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [114417] = 17, + ACTIONS(6755), 7, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [125511] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6652), 1, - aux_sym_access_modifier_token1, - ACTIONS(6694), 1, - anon_sym_new, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(8202), 1, - anon_sym_static, - ACTIONS(8204), 1, - anon_sym_member, - ACTIONS(8206), 1, - anon_sym_abstract, - ACTIONS(8208), 1, - anon_sym_val, - STATE(4939), 1, - sym_additional_constr_defn, - STATE(6171), 1, - sym_access_modifier, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5587), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8200), 2, - anon_sym_default, - anon_sym_override, - STATE(4993), 6, + STATE(5588), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114476] = 8, + ACTIONS(6759), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_when, + [125555] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(9026), 1, + anon_sym_DQUOTE2, + ACTIONS(9028), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4994), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5589), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 11, - sym__newline, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [114517] = 8, + [125607] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(9030), 1, + anon_sym_DQUOTE2, + ACTIONS(9032), 1, + anon_sym_DQUOTEB, + STATE(5579), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4995), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5590), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [114558] = 8, + [125659] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(9034), 1, + anon_sym_DQUOTE2, + ACTIONS(9036), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4996), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5591), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 11, - anon_sym_LBRACK_LT, - anon_sym_and, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - anon_sym_POUNDendif, - [114599] = 9, + [125711] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6303), 1, - anon_sym_COLON, + ACTIONS(7286), 1, + anon_sym_new, + ACTIONS(9040), 1, + anon_sym_static, + ACTIONS(9042), 1, + anon_sym_member, + ACTIONS(9044), 1, + anon_sym_abstract, + ACTIONS(9046), 1, + anon_sym_val, + STATE(5435), 1, + sym_additional_constr_defn, + STATE(7901), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4997), 6, + ACTIONS(9038), 2, + anon_sym_default, + anon_sym_override, + STATE(5592), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6305), 9, - sym__newline, - sym__dedent, - anon_sym_and, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [114641] = 10, + [125767] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, - anon_sym_COLON, - ACTIONS(8210), 1, - anon_sym_and, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6043), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6162), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - STATE(4998), 7, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5593), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - [114685] = 10, + [125823] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, - anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6085), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(4999), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5594), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [114729] = 14, + [125879] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8217), 1, + ACTIONS(9048), 1, anon_sym_DQUOTE2, - ACTIONS(8219), 1, + ACTIONS(9050), 1, anon_sym_DQUOTEB, - STATE(5009), 1, + STATE(5489), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5000), 6, + STATE(5595), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114781] = 10, + [125931] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(6676), 1, anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8958), 1, + anon_sym_and, + STATE(5541), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5001), 6, + STATE(5596), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 8, - sym__newline, - sym__dedent, + ACTIONS(6678), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [114825] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + [125977] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8221), 1, - anon_sym_DQUOTE2, - ACTIONS(8223), 1, - anon_sym_DQUOTEB, - STATE(5166), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7464), 1, + anon_sym_DASH_GT, + ACTIONS(7466), 1, + anon_sym_STAR, + ACTIONS(7468), 1, + anon_sym_LT2, + ACTIONS(7470), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8931), 1, + sym_identifier, + STATE(4775), 1, + aux_sym__compound_type_repeat1, + STATE(4859), 1, + sym_long_identifier, + STATE(4862), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5002), 6, + ACTIONS(9052), 2, + sym__newline, + sym__dedent, + STATE(5597), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [114877] = 11, + [126033] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8225), 1, - anon_sym_LBRACK_LT, - STATE(5430), 1, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6050), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6510), 3, - anon_sym_QMARK, + ACTIONS(8746), 2, anon_sym_CARET, anon_sym_SQUOTE, - ACTIONS(6505), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5003), 7, + STATE(5598), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attributes_repeat1, - [114923] = 8, + [126089] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8831), 1, + sym_identifier, + ACTIONS(8833), 1, + anon_sym_LPAREN, + ACTIONS(8835), 1, + anon_sym__, + ACTIONS(9004), 1, + anon_sym_POUND, + STATE(4986), 1, + sym__static_type_identifier, + STATE(5203), 1, + sym_long_identifier, + STATE(5204), 1, + sym_type_argument, + STATE(5207), 1, + sym_atomic_type, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5004), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5599), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4988), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [114963] = 14, + [126145] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8228), 1, + ACTIONS(9054), 1, anon_sym_DQUOTE2, - ACTIONS(8230), 1, + ACTIONS(9056), 1, anon_sym_DQUOTEB, - STATE(5108), 1, + STATE(5613), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5005), 6, + STATE(5600), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115015] = 11, + [126197] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - ACTIONS(8232), 1, - anon_sym_SEMI, - STATE(5034), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(9058), 1, + sym_identifier, + ACTIONS(9060), 1, + anon_sym_LPAREN, + ACTIONS(9062), 1, + anon_sym__, + ACTIONS(9064), 1, + anon_sym_POUND, + STATE(5383), 1, + sym__static_type_identifier, + STATE(5420), 1, + sym_long_identifier, + STATE(5652), 1, + sym_atomic_type, + STATE(5656), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5006), 6, + ACTIONS(9066), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5601), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [115061] = 10, + [126253] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(6627), 1, anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5007), 6, + STATE(5602), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 8, + ACTIONS(6629), 9, sym__newline, sym__dedent, + anon_sym_and, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [115105] = 8, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5008), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4996), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [115145] = 14, + [126295] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8234), 1, + ACTIONS(9068), 1, anon_sym_DQUOTE2, - ACTIONS(8236), 1, + ACTIONS(9070), 1, anon_sym_DQUOTEB, - STATE(5108), 1, + STATE(5595), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5009), 6, + STATE(5603), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115197] = 16, + [126347] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6039), 1, - anon_sym_new, - ACTIONS(7634), 1, - anon_sym_member, - ACTIONS(7636), 1, - anon_sym_abstract, - ACTIONS(7638), 1, - anon_sym_val, - ACTIONS(8238), 1, - anon_sym_static, - STATE(4550), 1, - sym_additional_constr_defn, - STATE(7537), 1, - sym_access_modifier, + ACTIONS(6293), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7630), 2, - anon_sym_default, - anon_sym_override, - STATE(5010), 6, + STATE(5604), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115253] = 16, + ACTIONS(6295), 9, + sym__newline, + sym__dedent, + anon_sym_and, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [126389] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5626), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, - ACTIONS(13), 2, + ACTIONS(9072), 1, + anon_sym_DQUOTE2, + ACTIONS(9074), 1, + anon_sym_DQUOTEB, + STATE(5608), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5011), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5605), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115309] = 10, + [126441] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, - anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(6285), 1, + anon_sym_and, + ACTIONS(6287), 1, + anon_sym_GT, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5012), 6, + STATE(5606), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [115353] = 15, + [126499] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8810), 1, anon_sym_COLON, - ACTIONS(8098), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8102), 1, + ACTIONS(8843), 1, anon_sym_COLON_COLON, - ACTIONS(8104), 1, + ACTIONS(8845), 1, anon_sym_PIPE, - ACTIONS(8106), 1, + ACTIONS(8847), 1, anon_sym_AMP, - STATE(5014), 1, + ACTIONS(9076), 1, + anon_sym_EQ, + STATE(5767), 1, aux_sym_repeat_pattern_repeat1, + STATE(6585), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 3, - sym__newline, - sym__dedent, - anon_sym_SEMI, - STATE(5013), 6, + STATE(5607), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115407] = 11, + [126557] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, - anon_sym_COLON, - ACTIONS(8100), 1, - anon_sym_COMMA, - STATE(5026), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, + ACTIONS(9078), 1, + anon_sym_DQUOTE2, + ACTIONS(9080), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5014), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5608), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6265), 7, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [115453] = 16, + [126609] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8244), 1, - sym_identifier, - ACTIONS(8246), 1, - anon_sym_LPAREN, - ACTIONS(8248), 1, - anon_sym__, - ACTIONS(8250), 1, - anon_sym_POUND, - STATE(4579), 1, - sym__static_type_identifier, - STATE(4784), 1, - sym_long_identifier, - STATE(4790), 1, - sym_type_argument, - STATE(4791), 1, - sym_atomic_type, - ACTIONS(13), 2, + ACTIONS(9082), 1, + anon_sym_DQUOTE2, + ACTIONS(9084), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5015), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5609), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115509] = 10, + [126661] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6293), 1, - anon_sym_COLON, - ACTIONS(8252), 1, - anon_sym_LT2, - ACTIONS(13), 2, + ACTIONS(9086), 1, + anon_sym_DQUOTE2, + ACTIONS(9088), 1, + anon_sym_DQUOTEB, + STATE(5609), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5016), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5610), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6295), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [115553] = 16, + [126713] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, + ACTIONS(6761), 1, + anon_sym_COLON, STATE(5612), 1, - sym_attributes, - STATE(5637), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5017), 6, + STATE(5611), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115609] = 10, + ACTIONS(6763), 8, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LT2, + [126757] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(6765), 1, anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + STATE(5468), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5018), 6, + STATE(5612), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 8, - sym__newline, - sym__dedent, + ACTIONS(6767), 8, + anon_sym_EQ, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [115653] = 14, + anon_sym_LT2, + [126801] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8254), 1, + ACTIONS(9090), 1, anon_sym_DQUOTE2, - ACTIONS(8256), 1, + ACTIONS(9092), 1, anon_sym_DQUOTEB, - STATE(5108), 1, + STATE(5489), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5019), 6, + STATE(5613), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115705] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, + [126853] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6247), 1, - anon_sym_new, - ACTIONS(7672), 1, - anon_sym_member, - ACTIONS(7674), 1, - anon_sym_abstract, - ACTIONS(7676), 1, - anon_sym_val, - ACTIONS(8258), 1, - anon_sym_static, - STATE(4992), 1, - sym_additional_constr_defn, - STATE(7304), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(7668), 2, - anon_sym_default, - anon_sym_override, - STATE(5020), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [115761] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(9094), 1, + anon_sym_DQUOTE2, + ACTIONS(9096), 1, + anon_sym_DQUOTEB, + STATE(5619), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5021), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5614), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5022), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [115801] = 14, + [126905] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8260), 1, + ACTIONS(9098), 1, anon_sym_DQUOTE2, - ACTIONS(8262), 1, + ACTIONS(9100), 1, anon_sym_DQUOTEB, - STATE(5019), 1, + STATE(5620), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5022), 6, + STATE(5615), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115853] = 10, + [126957] = 17, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, - STATE(5033), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + ACTIONS(9102), 1, + sym__dedent, + STATE(4118), 1, + sym_attribute_set, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, + sym_attributes, + STATE(6705), 1, + sym_record_field, + STATE(8095), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5023), 6, + STATE(5616), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [115897] = 14, + [127015] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8264), 1, + ACTIONS(9104), 1, anon_sym_DQUOTE2, - ACTIONS(8266), 1, + ACTIONS(9106), 1, anon_sym_DQUOTEB, - STATE(5108), 1, + STATE(5489), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5905), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5930), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(8752), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(8750), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5024), 6, + STATE(5617), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115949] = 12, + [127067] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6320), 1, - anon_sym_LBRACK_LT, - STATE(5003), 1, + ACTIONS(8744), 1, + anon_sym__, + STATE(4296), 1, aux_sym_attributes_repeat1, - STATE(5430), 1, + STATE(4720), 1, sym_attribute_set, + STATE(4986), 1, + sym__static_type_identifier, + STATE(6015), 1, + sym_type_argument_defn, + STATE(6087), 1, + sym_attributes, + STATE(6416), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6766), 3, - anon_sym_QMARK, + ACTIONS(8746), 2, anon_sym_CARET, anon_sym_SQUOTE, - ACTIONS(6764), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5025), 6, + STATE(5618), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [115997] = 10, + [127123] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, - anon_sym_COLON, - ACTIONS(8268), 1, - anon_sym_COMMA, - ACTIONS(13), 2, + ACTIONS(9108), 1, + anon_sym_DQUOTE2, + ACTIONS(9110), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 7, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - STATE(5026), 7, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5619), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [116041] = 16, + [127175] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6935), 1, - anon_sym_DASH_GT, - ACTIONS(6937), 1, - anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8271), 1, - sym_identifier, - STATE(4375), 1, - aux_sym__compound_type_repeat1, - STATE(4430), 1, - sym_long_identifier, - STATE(4436), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(9112), 1, + anon_sym_DQUOTE2, + ACTIONS(9114), 1, + anon_sym_DQUOTEB, + STATE(5489), 1, + aux_sym_verbatim_string_repeat1, + STATE(5905), 1, + sym__verbatim_string_char, + STATE(5930), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8273), 2, - sym__newline, - sym__dedent, - STATE(5027), 6, + ACTIONS(8752), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(8750), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5620), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116097] = 16, + [127227] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6935), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(6937), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8271), 1, + ACTIONS(8702), 1, sym_identifier, - STATE(4375), 1, + ACTIONS(9116), 1, + anon_sym_GT, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5484), 1, sym_long_identifier, - STATE(4436), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8275), 2, - sym__newline, - sym__dedent, - STATE(5028), 6, + STATE(5621), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116153] = 15, + [127282] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(3602), 1, anon_sym_COLON, - ACTIONS(8098), 1, - anon_sym_as, - ACTIONS(8100), 1, - anon_sym_COMMA, - ACTIONS(8102), 1, - anon_sym_COLON_COLON, - ACTIONS(8104), 1, - anon_sym_PIPE, - ACTIONS(8106), 1, - anon_sym_AMP, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 3, - sym__newline, - sym__dedent, - anon_sym_SEMI, - STATE(5029), 6, + STATE(5622), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116207] = 14, + ACTIONS(3604), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [127323] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8277), 1, - anon_sym_DQUOTE2, - ACTIONS(8279), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(9118), 4, sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + sym__escape_char, sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5030), 6, + anon_sym_LBRACE2, + ACTIONS(9120), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + STATE(5623), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116259] = 9, + [127364] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3029), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5031), 6, + ACTIONS(9124), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + ACTIONS(9122), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + STATE(5624), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3031), 9, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_or, - [116301] = 16, + [127405] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6935), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(6937), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8271), 1, + ACTIONS(8702), 1, sym_identifier, - STATE(4375), 1, + ACTIONS(9126), 1, + anon_sym_RPAREN, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5484), 1, sym_long_identifier, - STATE(4436), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8281), 2, - sym__newline, - sym__dedent, - STATE(5032), 6, + STATE(5625), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116357] = 10, + [127460] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, - anon_sym_COLON, - ACTIONS(8283), 1, - anon_sym_SEMI, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9128), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6230), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5033), 7, + STATE(5626), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [116401] = 11, + [127515] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, ACTIONS(8232), 1, - anon_sym_SEMI, - STATE(5033), 1, - aux_sym_record_pattern_repeat1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9130), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5034), 6, + STATE(5627), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [116447] = 8, + [127570] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9132), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5035), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(5034), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [116487] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8286), 1, - anon_sym_DQUOTE2, - ACTIONS(8288), 1, - anon_sym_DQUOTEB, - STATE(5030), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5036), 6, + STATE(5628), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116539] = 17, + [127625] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - ACTIONS(8294), 1, - sym__dedent, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(6639), 1, - sym_record_field, - STATE(6807), 1, - sym_access_modifier, + ACTIONS(9134), 1, + anon_sym_COMMA, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5037), 6, + STATE(5629), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116597] = 11, + [127680] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, + ACTIONS(8810), 1, anon_sym_COLON, - ACTIONS(8296), 1, - anon_sym_COMMA, - STATE(5071), 1, + STATE(5767), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5038), 6, + STATE(5630), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6265), 7, + ACTIONS(6704), 7, anon_sym_EQ, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [116643] = 15, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8296), 1, anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8302), 1, anon_sym_COLON_COLON, - ACTIONS(8304), 1, anon_sym_PIPE, - ACTIONS(8306), 1, anon_sym_AMP, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4360), 3, - anon_sym_EQ, - anon_sym_SEMI, anon_sym_LT2, - STATE(5039), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [116697] = 10, + [127723] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, + ACTIONS(8810), 1, anon_sym_COLON, - STATE(5023), 1, - aux_sym_record_pattern_repeat1, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5040), 6, + STATE(5631), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 8, + ACTIONS(6723), 7, anon_sym_EQ, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [116741] = 16, + anon_sym_LT2, + [127766] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6935), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(6937), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(6939), 1, - anon_sym_LT2, - ACTIONS(6941), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8271), 1, + ACTIONS(8702), 1, sym_identifier, - STATE(4375), 1, + ACTIONS(9136), 1, + anon_sym_GT, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(4430), 1, + STATE(5484), 1, sym_long_identifier, - STATE(4436), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8308), 2, - sym__newline, - sym__dedent, - STATE(5041), 6, + STATE(5632), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116797] = 17, + [127821] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(8298), 1, + ACTIONS(6771), 1, anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8310), 1, - anon_sym_EQ, - ACTIONS(8312), 1, - anon_sym_COMMA, - ACTIONS(8314), 1, - anon_sym_COLON_COLON, - ACTIONS(8316), 1, - anon_sym_PIPE, - ACTIONS(8318), 1, - anon_sym_AMP, - STATE(5257), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6306), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5042), 6, + STATE(5633), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116855] = 8, + ACTIONS(6773), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [127862] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5043), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(4992), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [116895] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8320), 1, - anon_sym_DQUOTE2, - ACTIONS(8322), 1, - anon_sym_DQUOTEB, - STATE(5024), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5044), 6, + STATE(5634), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [116947] = 17, + [127917] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5806), 1, - anon_sym_and, - ACTIONS(5808), 1, - anon_sym_GT, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5045), 6, + STATE(5635), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117005] = 9, + ACTIONS(6698), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [127960] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2917), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5046), 6, + STATE(5636), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2919), 9, - sym__newline, - sym__dedent, + ACTIONS(6711), 7, + anon_sym_EQ, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_or, - [117047] = 16, + anon_sym_LT2, + [128003] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6694), 1, - anon_sym_new, - ACTIONS(8202), 1, - anon_sym_static, - ACTIONS(8204), 1, - anon_sym_member, - ACTIONS(8206), 1, - anon_sym_abstract, - ACTIONS(8208), 1, - anon_sym_val, - STATE(4939), 1, - sym_additional_constr_defn, - STATE(7570), 1, - sym_access_modifier, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9148), 1, + anon_sym_DASH_GT, + ACTIONS(9150), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8200), 2, - anon_sym_default, - anon_sym_override, - STATE(5047), 6, + STATE(5637), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117103] = 16, + [128058] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8244), 1, - sym_identifier, - ACTIONS(8246), 1, - anon_sym_LPAREN, - ACTIONS(8248), 1, - anon_sym__, - ACTIONS(8324), 1, - anon_sym_POUND, - STATE(4579), 1, - sym__static_type_identifier, - STATE(4784), 1, - sym_long_identifier, - STATE(4790), 1, - sym_type_argument, - STATE(4791), 1, - sym_atomic_type, + ACTIONS(6761), 1, + anon_sym_COLON, + STATE(5708), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5048), 6, + STATE(5638), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117159] = 11, + ACTIONS(6763), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [128101] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - ACTIONS(8326), 1, - anon_sym_SEMI, - STATE(5207), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9152), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5049), 6, + STATE(5639), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [117205] = 10, + [128156] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, + ACTIONS(6702), 1, anon_sym_COLON, - ACTIONS(8328), 1, + ACTIONS(9154), 1, anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 7, + ACTIONS(6704), 6, anon_sym_EQ, anon_sym_as, - anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - STATE(5050), 7, + anon_sym_LT2, + STATE(5640), 7, sym_xml_doc, sym_block_comment, sym_line_comment, @@ -459544,3101 +506475,2976 @@ static const uint16_t ts_small_parse_table[] = { sym_fsi_directive_decl, sym_preproc_line, aux_sym_repeat_pattern_repeat1, - [117249] = 16, + [128199] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5693), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(6816), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5051), 6, + STATE(5641), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117305] = 11, + ACTIONS(6818), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [128240] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, + ACTIONS(8810), 1, anon_sym_COLON, - ACTIONS(8331), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8841), 1, anon_sym_COMMA, - STATE(5050), 1, + ACTIONS(8843), 1, + anon_sym_COLON_COLON, + ACTIONS(8845), 1, + anon_sym_PIPE, + ACTIONS(8847), 1, + anon_sym_AMP, + STATE(5767), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5052), 6, + ACTIONS(6788), 2, + anon_sym_EQ, + anon_sym_LT2, + STATE(5642), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6265), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [117351] = 11, + [128293] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, + ACTIONS(6765), 1, anon_sym_COLON, - ACTIONS(8333), 1, + ACTIONS(9157), 1, anon_sym_SEMI, - STATE(5056), 1, + STATE(5648), 1, aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5053), 6, + ACTIONS(6767), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5643), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [117397] = 9, + [128338] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9159), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3021), 2, - anon_sym_and, - sym_identifier, - STATE(5054), 6, + STATE(5644), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3023), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [117439] = 10, + [128393] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(9161), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + ACTIONS(9163), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + STATE(5645), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [128434] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, - STATE(5076), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5055), 6, + ACTIONS(9165), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + ACTIONS(9167), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + STATE(5646), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [117483] = 10, + [128475] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, + ACTIONS(6761), 1, anon_sym_COLON, - ACTIONS(8335), 1, + ACTIONS(9157), 1, anon_sym_SEMI, + STATE(5643), 1, + aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6230), 7, + ACTIONS(6763), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5056), 7, + anon_sym_in, + STATE(5647), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [117527] = 17, + [128520] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, - sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - ACTIONS(8338), 1, - sym__dedent, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(6639), 1, - sym_record_field, - STATE(6807), 1, - sym_access_modifier, + ACTIONS(6771), 1, + anon_sym_COLON, + ACTIONS(9169), 1, + anon_sym_SEMI, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5057), 6, + ACTIONS(6773), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5648), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117585] = 17, + aux_sym_record_pattern_repeat1, + [128563] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5782), 1, - anon_sym_and, - ACTIONS(5784), 1, - anon_sym_GT, - ACTIONS(6872), 1, - sym_identifier, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - STATE(4963), 1, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9172), 1, + anon_sym_RPAREN, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5058), 6, + STATE(5649), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [128618] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(9174), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + anon_sym_LBRACE2, + ACTIONS(9176), 5, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTE, + STATE(5650), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117643] = 11, + [128659] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6167), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8340), 1, - anon_sym_and, - STATE(4998), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5059), 6, + STATE(5651), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6169), 7, + ACTIONS(6715), 7, + anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [117689] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [128702] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8342), 1, - anon_sym_DQUOTE2, - ACTIONS(8344), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6820), 1, + anon_sym_COLON, + ACTIONS(9178), 1, + anon_sym_as, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5060), 6, + STATE(5652), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117741] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(6822), 7, + sym__newline, + sym__dedent, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [128745] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8346), 1, - anon_sym_DQUOTE2, - ACTIONS(8348), 1, - anon_sym_DQUOTEB, - STATE(5176), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9180), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5061), 6, + STATE(5653), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117793] = 16, + [128800] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6676), 1, - anon_sym_new, - ACTIONS(8086), 1, - anon_sym_static, - ACTIONS(8088), 1, - anon_sym_member, - ACTIONS(8090), 1, - anon_sym_abstract, - ACTIONS(8092), 1, - anon_sym_val, - STATE(4849), 1, - sym_additional_constr_defn, - STATE(7425), 1, - sym_access_modifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9182), 1, + anon_sym_COMMA, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8084), 2, - anon_sym_default, - anon_sym_override, - STATE(5062), 6, + STATE(5654), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117849] = 17, + [128855] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, - sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(5884), 1, - sym_record_field, - STATE(6807), 1, - sym_access_modifier, - STATE(7327), 1, - sym_record_fields, + ACTIONS(9184), 1, + anon_sym_LPAREN, + ACTIONS(9188), 1, + anon_sym_not, + ACTIONS(9190), 1, + anon_sym_enum, + ACTIONS(9192), 1, + anon_sym_delegate, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5063), 6, + ACTIONS(9186), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + STATE(5655), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [117907] = 10, + [128902] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, + ACTIONS(6802), 1, anon_sym_COLON, - STATE(5056), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5064), 6, + STATE(5656), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 8, + ACTIONS(6804), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [117951] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [128943] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8350), 1, - anon_sym_DQUOTE2, - ACTIONS(8352), 1, - anon_sym_DQUOTEB, - STATE(5060), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5065), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [118003] = 14, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8354), 1, - anon_sym_DQUOTE2, - ACTIONS(8356), 1, - anon_sym_DQUOTEB, - STATE(5077), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9194), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5066), 6, + STATE(5657), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118055] = 10, + [128998] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(6870), 1, anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5067), 6, + STATE(5658), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 8, - anon_sym_EQ, + ACTIONS(6872), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [118099] = 10, + [129039] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(6874), 1, anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5068), 6, + STATE(5659), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 8, - anon_sym_EQ, + ACTIONS(6876), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [118143] = 10, + [129080] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(6880), 1, anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5069), 6, + STATE(5660), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 8, - anon_sym_EQ, + ACTIONS(6882), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [118187] = 10, + [129121] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(6884), 1, anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5070), 6, + STATE(5661), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 8, - anon_sym_EQ, + ACTIONS(6886), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [118231] = 10, + [129162] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8358), 1, - anon_sym_COMMA, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - STATE(5071), 7, + STATE(5662), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [118275] = 15, + ACTIONS(6719), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [129205] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8296), 1, - anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8302), 1, - anon_sym_COLON_COLON, - ACTIONS(8304), 1, - anon_sym_PIPE, - ACTIONS(8306), 1, - anon_sym_AMP, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9196), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 3, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_LT2, - STATE(5072), 6, + STATE(5663), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118329] = 16, + [129260] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5566), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9198), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5073), 6, + STATE(5664), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118385] = 10, + [129315] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9200), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5074), 6, + STATE(5665), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [118429] = 10, + [129370] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, + ACTIONS(9206), 1, + anon_sym_DQUOTE2, + STATE(5740), 1, + aux_sym_verbatim_string_repeat1, + STATE(5940), 1, + sym__verbatim_string_char, + STATE(5941), 1, + sym__simple_string_char, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5075), 6, + ACTIONS(9204), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9202), 3, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + STATE(5666), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [118473] = 10, + [129419] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, - anon_sym_COLON, - ACTIONS(8361), 1, - anon_sym_SEMI, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(6230), 7, - sym__newline, - sym__dedent, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, anon_sym_COMMA, + ACTIONS(9142), 1, anon_sym_COLON_COLON, + ACTIONS(9144), 1, anon_sym_PIPE, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5076), 7, + ACTIONS(9208), 1, + anon_sym_DASH_GT, + ACTIONS(9210), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5667), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [118517] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [129474] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8364), 1, - anon_sym_DQUOTE2, - ACTIONS(8366), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5077), 6, + STATE(5668), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118569] = 8, + [129529] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9214), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5078), 6, + STATE(5669), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4659), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [118609] = 8, + [129584] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9216), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5079), 6, + STATE(5670), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4964), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [118649] = 8, + [129639] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9218), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5080), 6, + STATE(5671), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4982), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [118689] = 10, + [129694] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, + ACTIONS(6892), 1, anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5081), 6, + STATE(5672), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6226), 8, + ACTIONS(6894), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [118733] = 8, + [129735] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3242), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5082), 6, + STATE(5673), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4950), 10, + ACTIONS(3244), 8, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [118773] = 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [129776] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8370), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8372), 1, - anon_sym_LPAREN, - ACTIONS(8374), 1, - anon_sym__, - ACTIONS(8376), 1, - anon_sym_POUND, - STATE(3646), 1, - sym__static_type_identifier, - STATE(3651), 1, + ACTIONS(9220), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, sym_long_identifier, - STATE(3695), 1, - sym_type_argument, - STATE(3700), 1, - sym_atomic_type, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8378), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5083), 6, + STATE(5674), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118829] = 10, + [129831] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5084), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6214), 8, - anon_sym_EQ, + ACTIONS(8812), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, anon_sym_COMMA, + ACTIONS(9142), 1, anon_sym_COLON_COLON, + ACTIONS(9144), 1, anon_sym_PIPE, + ACTIONS(9146), 1, anon_sym_AMP, - anon_sym_SEMI, - [118873] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8382), 1, - anon_sym_DQUOTE2, - ACTIONS(8384), 1, - anon_sym_DQUOTEB, - STATE(5097), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(9222), 1, + anon_sym_DASH_GT, + ACTIONS(9224), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5085), 6, + STATE(5675), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [118925] = 10, + [129886] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9226), 1, + sym_identifier, + ACTIONS(9228), 1, + sym__dedent, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5086), 6, + STATE(5676), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [118969] = 15, + [129941] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8331), 1, - anon_sym_COMMA, - ACTIONS(8380), 1, + ACTIONS(8909), 1, anon_sym_COLON, - ACTIONS(8386), 1, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, anon_sym_COLON_COLON, - ACTIONS(8388), 1, + ACTIONS(9144), 1, anon_sym_PIPE, - ACTIONS(8390), 1, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5052), 1, + ACTIONS(9230), 1, + anon_sym_DASH_GT, + ACTIONS(9232), 1, + anon_sym_when, + STATE(5773), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(5087), 6, + STATE(5677), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119023] = 10, + [129996] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9234), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5088), 6, + STATE(5678), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [119067] = 10, + [130051] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9236), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5089), 6, + STATE(5679), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [119111] = 10, + [130106] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9238), 1, + anon_sym_LPAREN, + ACTIONS(9242), 1, + anon_sym_not, + ACTIONS(9244), 1, + anon_sym_enum, + ACTIONS(9246), 1, + anon_sym_delegate, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5090), 6, + ACTIONS(9240), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + STATE(5680), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [119155] = 16, + [130153] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5681), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9248), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5091), 6, + STATE(5681), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119211] = 10, + [130208] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, + ACTIONS(3701), 1, anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5092), 6, + STATE(5682), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 8, - anon_sym_EQ, + ACTIONS(3703), 8, + sym__newline, + sym__dedent, anon_sym_as, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [119255] = 8, + [130249] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3794), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5093), 6, + STATE(5683), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4956), 10, + ACTIONS(3796), 8, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [119295] = 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130290] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5014), 1, + STATE(5755), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5094), 6, + STATE(5684), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6226), 8, - sym__newline, - sym__dedent, + ACTIONS(6715), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [119339] = 15, + anon_sym_in, + [130333] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8331), 1, - anon_sym_COMMA, - ACTIONS(8380), 1, + ACTIONS(8909), 1, anon_sym_COLON, - ACTIONS(8386), 1, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, anon_sym_COLON_COLON, - ACTIONS(8388), 1, + ACTIONS(9144), 1, anon_sym_PIPE, - ACTIONS(8390), 1, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5052), 1, + ACTIONS(9252), 1, + anon_sym_DASH_GT, + ACTIONS(9254), 1, + anon_sym_when, + STATE(5773), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 3, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(5095), 6, + STATE(5685), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119393] = 9, + [130388] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9256), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3007), 2, - anon_sym_and, - sym_identifier, - STATE(5096), 6, + STATE(5686), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3009), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [119435] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [130443] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8392), 1, - anon_sym_DQUOTE2, - ACTIONS(8394), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3642), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5097), 6, + STATE(5687), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119487] = 16, + ACTIONS(3644), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130484] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8396), 1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9226), 1, sym_identifier, - ACTIONS(8398), 1, - anon_sym_LPAREN, - ACTIONS(8400), 1, - anon_sym__, - ACTIONS(8402), 1, - anon_sym_POUND, - STATE(3368), 1, - sym__static_type_identifier, - STATE(3531), 1, + ACTIONS(9258), 1, + sym__dedent, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, sym_long_identifier, - STATE(3546), 1, - sym_atomic_type, - STATE(3547), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5098), 6, + STATE(5688), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119543] = 10, + [130539] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5052), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9260), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5099), 6, + STATE(5689), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6226), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [119587] = 15, + [130594] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, - anon_sym_COLON, - ACTIONS(8098), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8100), 1, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, anon_sym_COMMA, - ACTIONS(8102), 1, + ACTIONS(9142), 1, anon_sym_COLON_COLON, - ACTIONS(8104), 1, + ACTIONS(9144), 1, anon_sym_PIPE, - ACTIONS(8106), 1, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5014), 1, + ACTIONS(9262), 1, + anon_sym_DASH_GT, + ACTIONS(9264), 1, + anon_sym_when, + STATE(5773), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8406), 3, - sym__newline, - sym__dedent, - anon_sym_SEMI, - STATE(5100), 6, + STATE(5690), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119641] = 16, + [130649] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5595), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9266), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5101), 6, + STATE(5691), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119697] = 10, + [130704] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, + ACTIONS(3585), 1, anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5102), 6, + STATE(5692), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 8, + ACTIONS(3587), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [119741] = 8, + [130745] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3581), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5103), 6, + STATE(5693), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4960), 10, + ACTIONS(3583), 8, + sym__newline, sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [119781] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8408), 1, - anon_sym_DQUOTE2, - ACTIONS(8410), 1, - anon_sym_DQUOTEB, - STATE(5111), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5104), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [119833] = 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130786] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5125), 1, + STATE(5755), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5105), 6, + STATE(5694), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 8, + ACTIONS(6719), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [119877] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + [130829] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8412), 1, - anon_sym_DQUOTE2, - ACTIONS(8414), 1, - anon_sym_DQUOTEB, - STATE(5126), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5106), 6, + STATE(5695), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119929] = 15, + ACTIONS(3776), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [130870] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(8909), 1, anon_sym_COLON, - ACTIONS(8416), 1, + ACTIONS(9140), 1, anon_sym_COMMA, - ACTIONS(8418), 1, + ACTIONS(9142), 1, anon_sym_COLON_COLON, - ACTIONS(8420), 1, + ACTIONS(9144), 1, anon_sym_PIPE, - ACTIONS(8422), 1, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5125), 1, + ACTIONS(9268), 1, + anon_sym_DASH_GT, + ACTIONS(9270), 1, + anon_sym_when, + STATE(5773), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 3, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5107), 6, + STATE(5696), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [119983] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [130925] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8430), 1, - anon_sym_DQUOTE2, - ACTIONS(8432), 1, - anon_sym_DQUOTEB, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9272), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8427), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8424), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5108), 7, + STATE(5697), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [120033] = 9, + [130980] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6945), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3003), 2, - anon_sym_and, - sym_identifier, - STATE(5109), 6, + STATE(5698), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3005), 8, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6947), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [120075] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [131021] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8434), 1, - anon_sym_DQUOTE2, - ACTIONS(8436), 1, - anon_sym_DQUOTEB, - STATE(5005), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9274), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5110), 6, + STATE(5699), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120127] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [131076] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8438), 1, - anon_sym_DQUOTE2, - ACTIONS(8440), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6949), 1, + anon_sym_COLON, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5111), 6, + STATE(5700), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120179] = 10, + ACTIONS(6951), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [131117] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, - anon_sym_COLON, - ACTIONS(8442), 1, - anon_sym_COMMA, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9276), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 7, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5112), 7, + STATE(5701), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [120223] = 10, + [131172] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9278), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5113), 6, + STATE(5702), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [120267] = 10, + [131227] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9280), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5114), 6, + STATE(5703), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [120311] = 10, + [131282] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9282), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5115), 6, + STATE(5704), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [120355] = 10, + [131337] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9284), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5116), 6, + STATE(5705), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [120399] = 16, + [131392] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5858), 1, - anon_sym_new, - ACTIONS(7651), 1, - anon_sym_member, - ACTIONS(7653), 1, - anon_sym_abstract, - ACTIONS(7655), 1, - anon_sym_val, - ACTIONS(8445), 1, - anon_sym_static, - STATE(4486), 1, - sym_additional_constr_defn, - STATE(7504), 1, - sym_access_modifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9286), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7647), 2, - anon_sym_default, - anon_sym_override, - STATE(5117), 6, + STATE(5706), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120455] = 14, + [131447] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8447), 1, + ACTIONS(8881), 1, anon_sym_DQUOTE2, - ACTIONS(8449), 1, - anon_sym_DQUOTEB, - STATE(5151), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5940), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5941), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(9291), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(9288), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5118), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [120507] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8451), 1, - sym_identifier, - ACTIONS(8453), 1, - anon_sym_LPAREN, - ACTIONS(8455), 1, - anon_sym__, - ACTIONS(8457), 1, - anon_sym_POUND, - STATE(4954), 1, - sym__static_type_identifier, - STATE(5016), 1, - sym_long_identifier, - STATE(5259), 1, - sym_type_argument, - STATE(5283), 1, - sym_atomic_type, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8459), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5119), 6, + STATE(5707), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120563] = 10, + aux_sym_verbatim_string_repeat1, + [131494] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, + ACTIONS(6765), 1, anon_sym_COLON, - STATE(5055), 1, + STATE(5648), 1, aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5120), 6, + STATE(5708), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 8, - sym__newline, - sym__dedent, + ACTIONS(6767), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [120607] = 17, + anon_sym_in, + [131537] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(5884), 1, - sym_record_field, - STATE(6806), 1, - sym_record_fields, - STATE(6807), 1, - sym_access_modifier, + ACTIONS(9294), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5121), 6, + STATE(5709), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120665] = 16, + [131592] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5567), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5122), 6, + ACTIONS(9163), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + ACTIONS(9161), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + STATE(5710), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120721] = 16, + [131633] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8244), 1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8246), 1, - anon_sym_LPAREN, - ACTIONS(8248), 1, - anon_sym__, - ACTIONS(8376), 1, - anon_sym_POUND, - STATE(4579), 1, - sym__static_type_identifier, - STATE(4784), 1, + ACTIONS(9296), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, sym_long_identifier, - STATE(4790), 1, - sym_type_argument, - STATE(4791), 1, - sym_atomic_type, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5123), 6, + STATE(5711), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120777] = 15, + [131688] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8416), 1, - anon_sym_COMMA, - ACTIONS(8418), 1, - anon_sym_COLON_COLON, - ACTIONS(8420), 1, - anon_sym_PIPE, - ACTIONS(8422), 1, - anon_sym_AMP, - STATE(5125), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9226), 1, + sym_identifier, + ACTIONS(9298), 1, + sym__dedent, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 3, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5124), 6, + STATE(5712), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120831] = 11, + [131743] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, - anon_sym_COLON, - ACTIONS(8416), 1, - anon_sym_COMMA, - STATE(5112), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5125), 6, + ACTIONS(9167), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + ACTIONS(9165), 5, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + STATE(5713), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6265), 7, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [120877] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [131784] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8461), 1, - anon_sym_DQUOTE2, - ACTIONS(8463), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9300), 1, + sym_identifier, + STATE(5036), 1, + sym_long_identifier, + STATE(5911), 1, + sym_access_modifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8298), 1, + sym_type_argument, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5126), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5714), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [120929] = 9, + [131837] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6899), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3033), 2, - anon_sym_and, - sym_identifier, - STATE(5127), 6, + STATE(5715), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3039), 8, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6901), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [120971] = 16, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [131878] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - STATE(4963), 1, + ACTIONS(9302), 1, + anon_sym_RPAREN, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8465), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(5128), 6, + STATE(5716), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121027] = 16, + [131933] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5678), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(6903), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5129), 6, + STATE(5717), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121083] = 8, + ACTIONS(6905), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [131974] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(9304), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5130), 6, + ACTIONS(6704), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + STATE(5718), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4584), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121123] = 10, + aux_sym_repeat_pattern_repeat1, + [132017] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - STATE(5064), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9307), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5131), 6, + STATE(5719), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_when, - [121167] = 9, + [132072] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6160), 1, + ACTIONS(9250), 1, anon_sym_COLON, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5132), 6, + STATE(5720), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6162), 9, - sym__newline, - sym__dedent, - anon_sym_and, + sym_fsi_directive_decl, + sym_preproc_line, + ACTIONS(6711), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [121209] = 9, + anon_sym_in, + [132115] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5782), 1, + ACTIONS(9250), 1, anon_sym_COLON, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5133), 6, + STATE(5721), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5784), 9, - sym__newline, - sym__dedent, - anon_sym_and, + ACTIONS(6698), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [121251] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8467), 1, - anon_sym_DQUOTE2, - ACTIONS(8469), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5134), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [121303] = 8, + anon_sym_in, + [132158] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5135), 6, + STATE(5722), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5002), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121343] = 11, + ACTIONS(6715), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [132201] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6182), 1, + ACTIONS(9250), 1, anon_sym_COLON, - ACTIONS(8340), 1, - anon_sym_and, - STATE(5059), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5136), 6, + STATE(5723), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6184), 7, + ACTIONS(6723), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -462646,1734 +509452,1617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_in, - [121389] = 8, + [132244] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9250), 1, + anon_sym_COLON, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5137), 6, + STATE(5724), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4978), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121429] = 17, + ACTIONS(6704), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + [132287] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(8298), 1, + ACTIONS(6753), 1, anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8312), 1, + ACTIONS(9309), 1, anon_sym_COMMA, - ACTIONS(8314), 1, - anon_sym_COLON_COLON, - ACTIONS(8316), 1, - anon_sym_PIPE, - ACTIONS(8318), 1, - anon_sym_AMP, - ACTIONS(8471), 1, - anon_sym_EQ, - STATE(5257), 1, + STATE(5728), 1, aux_sym_repeat_pattern_repeat1, - STATE(6218), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5138), 6, + ACTIONS(6755), 6, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5725), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121487] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [132332] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8473), 1, - anon_sym_DQUOTE2, - ACTIONS(8475), 1, - anon_sym_DQUOTEB, - STATE(5134), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5139), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [121539] = 14, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8477), 1, - anon_sym_DQUOTE2, - ACTIONS(8479), 1, - anon_sym_DQUOTEB, - STATE(5142), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9311), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5140), 6, + STATE(5726), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121591] = 10, + [132387] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, + ACTIONS(3598), 1, anon_sym_COLON, - STATE(5150), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5141), 6, + STATE(5727), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 8, - anon_sym_EQ, + ACTIONS(3600), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [121635] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [132428] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8481), 1, - anon_sym_DQUOTE2, - ACTIONS(8483), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(9313), 1, + anon_sym_COMMA, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5142), 6, + ACTIONS(6704), 6, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5728), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121687] = 8, + aux_sym_repeat_pattern_repeat1, + [132471] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9316), 1, + anon_sym_DASH_GT, + ACTIONS(9318), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5143), 6, + STATE(5729), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4655), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [121727] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [132526] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8485), 1, - anon_sym_DQUOTE2, - ACTIONS(8487), 1, - anon_sym_DQUOTEB, - STATE(5154), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9226), 1, + sym_identifier, + ACTIONS(9320), 1, + sym__dedent, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5144), 6, + STATE(5730), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121779] = 16, + [132581] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3616), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5594), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5145), 6, + STATE(5731), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121835] = 11, + ACTIONS(3618), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [132622] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - ACTIONS(8489), 1, - anon_sym_EQ, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7439), 1, + anon_sym_STAR, + ACTIONS(7441), 1, + anon_sym_LT2, + ACTIONS(7443), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9226), 1, + sym_identifier, + ACTIONS(9322), 1, + sym__dedent, + STATE(4770), 1, + aux_sym__compound_type_repeat1, + STATE(4889), 1, + sym_type_arguments, + STATE(4895), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5146), 6, + STATE(5732), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2937), 7, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - [121881] = 16, + [132677] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - STATE(4963), 1, + ACTIONS(9324), 1, + anon_sym_RPAREN, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8491), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(5147), 6, + STATE(5733), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121937] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [132732] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8493), 1, - anon_sym_DQUOTE2, - ACTIONS(8495), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9326), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5148), 6, + STATE(5734), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [121989] = 10, + [132787] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(3656), 1, anon_sym_COLON, - STATE(5038), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5149), 6, + STATE(5735), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6226), 8, - anon_sym_EQ, + ACTIONS(3658), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - anon_sym_LT2, - [122033] = 10, + [132828] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, + ACTIONS(3577), 1, anon_sym_COLON, - ACTIONS(8497), 1, - anon_sym_SEMI, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6230), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - STATE(5150), 7, + STATE(5736), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [122077] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3579), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [132869] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8500), 1, - anon_sym_DQUOTE2, - ACTIONS(8502), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3840), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5151), 6, + STATE(5737), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122129] = 11, + ACTIONS(3842), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [132910] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - ACTIONS(8333), 1, - anon_sym_SEMI, - STATE(5053), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5152), 6, + STATE(5738), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [122175] = 10, + [132965] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - STATE(5141), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9330), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5153), 6, + STATE(5739), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6243), 8, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LT2, - [122219] = 14, + [133020] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(8504), 1, + ACTIONS(9332), 1, anon_sym_DQUOTE2, - ACTIONS(8506), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, + STATE(5707), 1, aux_sym_verbatim_string_repeat1, - STATE(5485), 1, + STATE(5940), 1, sym__verbatim_string_char, - STATE(5495), 1, + STATE(5941), 1, sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, + ACTIONS(9204), 2, sym__inside_string_marker, aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, + ACTIONS(9202), 3, sym__non_escape_char, anon_sym_BSLASH, aux_sym__verbatim_string_char_token1, - STATE(5154), 6, + STATE(5740), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122271] = 16, + [133069] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5670), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9334), 1, + anon_sym_COMMA, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5155), 6, + STATE(5741), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122327] = 9, + [133124] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(5806), 1, + ACTIONS(2768), 1, anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5156), 6, + STATE(5742), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5808), 9, + ACTIONS(2770), 8, sym__newline, sym__dedent, - anon_sym_and, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [122369] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [133165] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8508), 1, - anon_sym_DQUOTE2, - ACTIONS(8510), 1, - anon_sym_DQUOTEB, - STATE(5148), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9336), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5157), 6, + STATE(5743), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122421] = 16, + [133220] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3836), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5590), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5158), 6, + STATE(5744), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122477] = 16, + ACTIONS(3838), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133261] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5691), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8810), 1, + anon_sym_COLON, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5159), 6, + STATE(5745), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122533] = 16, + ACTIONS(6719), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + [133304] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5657), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9338), 1, + anon_sym_DASH_GT, + ACTIONS(9340), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5160), 6, + STATE(5746), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122589] = 16, + [133359] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, + STATE(4030), 1, aux_sym_attributes_repeat1, - STATE(4327), 1, + STATE(4118), 1, sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5679), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, + ACTIONS(7280), 3, + anon_sym_mutable, + anon_sym__, + sym_identifier, + ACTIONS(7282), 3, + aux_sym_access_modifier_token1, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5161), 6, + STATE(5747), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122645] = 16, + [133406] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + anon_sym_mutable, + STATE(4118), 1, sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5573), 1, - sym_type_argument_defn, - STATE(5612), 1, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6213), 1, sym_attributes, - STATE(5978), 1, - sym_type_argument, + STATE(6705), 1, + sym_record_field, + STATE(8095), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5162), 6, + STATE(5748), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122701] = 9, + [133461] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6307), 1, - anon_sym_COLON, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9342), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5163), 6, + STATE(5749), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6309), 9, - sym__newline, - sym__dedent, - anon_sym_and, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [122743] = 16, + [133516] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5571), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9344), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5164), 6, + STATE(5750), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122799] = 16, + [133571] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3660), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5644), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5165), 6, + STATE(5751), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122855] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3662), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133612] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8512), 1, - anon_sym_DQUOTE2, - ACTIONS(8514), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9346), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5166), 6, + STATE(5752), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122907] = 16, + [133667] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3693), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5841), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5167), 6, + STATE(5753), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [122963] = 16, + ACTIONS(3695), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133708] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5599), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9348), 1, + anon_sym_COMMA, + ACTIONS(9350), 1, + anon_sym_COLON_COLON, + ACTIONS(9352), 1, + anon_sym_PIPE, + ACTIONS(9354), 1, + anon_sym_AMP, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5168), 6, + ACTIONS(4762), 2, + anon_sym_SEMI, + anon_sym_in, + STATE(5754), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123019] = 17, + [133761] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, - sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(5884), 1, - sym_record_field, - STATE(6807), 1, - sym_access_modifier, - STATE(7445), 1, - sym_record_fields, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(9348), 1, + anon_sym_COMMA, + STATE(5718), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5169), 6, + ACTIONS(6755), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_in, + STATE(5755), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123077] = 9, + [133806] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9356), 1, + anon_sym_LPAREN, + ACTIONS(9360), 1, + anon_sym_not, + ACTIONS(9362), 1, + anon_sym_enum, + ACTIONS(9364), 1, + anon_sym_delegate, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3025), 2, - anon_sym_and, - sym_identifier, - STATE(5170), 6, + ACTIONS(9358), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + STATE(5756), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3027), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [123119] = 16, + [133853] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3825), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5633), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5171), 6, + STATE(5757), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123175] = 16, + ACTIONS(3827), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133894] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5688), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9366), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5172), 6, + STATE(5758), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123231] = 9, + [133949] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3722), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3017), 2, - anon_sym_and, - sym_identifier, - STATE(5173), 6, + STATE(5759), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3019), 8, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3724), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - [123273] = 16, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [133990] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5667), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9368), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5174), 6, + STATE(5760), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123329] = 16, + [134045] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6796), 1, - anon_sym_new, - ACTIONS(8518), 1, - anon_sym_static, - ACTIONS(8520), 1, - anon_sym_member, - ACTIONS(8522), 1, - anon_sym_abstract, - ACTIONS(8524), 1, - anon_sym_val, - STATE(5093), 1, - sym_additional_constr_defn, - STATE(7371), 1, - sym_access_modifier, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9370), 1, + anon_sym_DASH_GT, + ACTIONS(9372), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8516), 2, - anon_sym_default, - anon_sym_override, - STATE(5175), 6, + STATE(5761), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123385] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [134100] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8526), 1, - anon_sym_DQUOTE2, - ACTIONS(8528), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9374), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5176), 6, + STATE(5762), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123437] = 16, + [134155] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5639), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5177), 6, + STATE(5763), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123493] = 16, + ACTIONS(3804), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [134196] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5579), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9376), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5178), 6, + STATE(5764), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123549] = 16, + [134251] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5614), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9378), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5179), 6, + STATE(5765), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123605] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [134306] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8530), 1, - anon_sym_DQUOTE2, - ACTIONS(8532), 1, - anon_sym_DQUOTEB, - STATE(5184), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9380), 1, + anon_sym_GT, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5180), 6, + STATE(5766), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123657] = 16, + [134361] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5550), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(8841), 1, + anon_sym_COMMA, + STATE(5640), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5181), 6, + ACTIONS(6755), 6, + anon_sym_EQ, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT2, + STATE(5767), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123713] = 10, + [134406] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8096), 1, + ACTIONS(3798), 1, anon_sym_COLON, - STATE(5014), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5182), 6, + STATE(5768), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 8, + ACTIONS(3800), 8, sym__newline, sym__dedent, anon_sym_as, @@ -464382,1748 +511071,1621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [123757] = 16, + [134447] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5598), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8810), 1, + anon_sym_COLON, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_COLON_COLON, + ACTIONS(8845), 1, + anon_sym_PIPE, + ACTIONS(8847), 1, + anon_sym_AMP, + STATE(5767), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5183), 6, + ACTIONS(4762), 2, + anon_sym_EQ, + anon_sym_LT2, + STATE(5769), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123813] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [134500] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8534), 1, - anon_sym_DQUOTE2, - ACTIONS(8536), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9382), 1, + anon_sym_DASH_GT, + ACTIONS(9384), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5184), 6, + STATE(5770), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123865] = 16, + [134555] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6743), 1, - anon_sym_new, - ACTIONS(8114), 1, - anon_sym_static, - ACTIONS(8116), 1, - anon_sym_member, - ACTIONS(8118), 1, - anon_sym_abstract, - ACTIONS(8120), 1, - anon_sym_val, - STATE(2820), 1, - sym_additional_constr_defn, - STATE(7470), 1, - sym_access_modifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9386), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8112), 2, - anon_sym_default, - anon_sym_override, - STATE(5185), 6, + STATE(5771), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [123921] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [134610] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8538), 1, - anon_sym_DQUOTE2, - ACTIONS(8540), 1, - anon_sym_DQUOTEB, - STATE(5203), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5186), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [123973] = 14, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8542), 1, - anon_sym_DQUOTE2, - ACTIONS(8544), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5187), 6, + ACTIONS(6788), 2, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5772), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124025] = 16, + [134663] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5582), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(6753), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + STATE(5776), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5188), 6, + ACTIONS(6755), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5773), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124081] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [134708] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8546), 1, - anon_sym_DQUOTE2, - ACTIONS(8548), 1, - anon_sym_DQUOTEB, - STATE(5192), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(3790), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5189), 6, + STATE(5774), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124133] = 16, + ACTIONS(3792), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [134749] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5563), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5190), 6, + STATE(5775), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124189] = 8, + ACTIONS(3788), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [134790] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(9388), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5191), 6, + ACTIONS(6704), 6, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5776), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(4968), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [124229] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym_repeat_pattern_repeat1, + [134833] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8550), 1, - anon_sym_DQUOTE2, - ACTIONS(8552), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9391), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5192), 6, + STATE(5777), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124281] = 16, + [134888] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3782), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5655), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5193), 6, + STATE(5778), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124337] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + ACTIONS(3784), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [134929] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8554), 1, - anon_sym_DQUOTE2, - ACTIONS(8556), 1, - anon_sym_DQUOTEB, - STATE(5187), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9393), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5194), 6, + STATE(5779), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124389] = 16, + [134984] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5612), 1, - sym_attributes, - STATE(5645), 1, - sym_type_argument_defn, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5195), 6, + ACTIONS(4762), 2, + anon_sym_DASH_GT, + anon_sym_when, + STATE(5780), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124445] = 16, + [135037] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5555), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5196), 6, + STATE(5781), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124501] = 16, + ACTIONS(6711), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [135080] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6658), 1, - anon_sym_new, - ACTIONS(8192), 1, - anon_sym_static, - ACTIONS(8194), 1, - anon_sym_member, - ACTIONS(8196), 1, - anon_sym_abstract, - ACTIONS(8198), 1, - anon_sym_val, - STATE(2676), 1, - sym_additional_constr_defn, - STATE(7291), 1, - sym_access_modifier, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8190), 2, - anon_sym_default, - anon_sym_override, - STATE(5197), 6, + STATE(5782), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124557] = 16, + ACTIONS(6698), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [135123] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5562), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9395), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5198), 6, + STATE(5783), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124613] = 10, + [135178] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8558), 1, - anon_sym_LT2, + ACTIONS(6941), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2990), 2, - anon_sym_and, - sym_identifier, - STATE(5199), 6, + STATE(5784), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2992), 7, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(6943), 8, + sym__newline, + sym__dedent, + anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_STAR, - anon_sym_LBRACK_RBRACK, - [124657] = 16, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [135219] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3726), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5569), 1, - sym_type_argument_defn, - STATE(5612), 1, - sym_attributes, - STATE(5978), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5200), 6, + STATE(5785), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124713] = 17, + ACTIONS(3728), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [135260] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, - sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(5884), 1, - sym_record_field, - STATE(6807), 1, - sym_access_modifier, - STATE(7393), 1, - sym_record_fields, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5201), 6, + STATE(5786), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124771] = 8, + ACTIONS(6723), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [135303] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9397), 1, + anon_sym_LPAREN, + ACTIONS(9401), 1, + anon_sym_not, + ACTIONS(9403), 1, + anon_sym_enum, + ACTIONS(9405), 1, + anon_sym_delegate, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5202), 6, + ACTIONS(9399), 5, + anon_sym_null, + anon_sym_struct, + anon_sym_unmanaged, + anon_sym_equality, + anon_sym_comparison, + STATE(5787), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(5012), 10, - sym__dedent, - anon_sym_LBRACK_LT, - aux_sym_access_modifier_token1, - anon_sym_new, - anon_sym_default, - anon_sym_static, - anon_sym_member, - anon_sym_abstract, - anon_sym_override, - anon_sym_val, - [124811] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [135350] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8560), 1, - anon_sym_DQUOTE2, - ACTIONS(8562), 1, - anon_sym_DQUOTEB, - STATE(5108), 1, - aux_sym_verbatim_string_repeat1, - STATE(5485), 1, - sym__verbatim_string_char, - STATE(5495), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8909), 1, + anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8215), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8213), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5203), 6, + STATE(5788), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124863] = 9, + ACTIONS(6704), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_DASH_GT, + anon_sym_when, + [135393] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6289), 1, + ACTIONS(3778), 1, anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5204), 6, + STATE(5789), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6291), 9, + ACTIONS(3780), 8, sym__newline, sym__dedent, - anon_sym_and, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [124905] = 17, + [135434] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8312), 1, - anon_sym_COMMA, - ACTIONS(8314), 1, - anon_sym_COLON_COLON, - ACTIONS(8316), 1, - anon_sym_PIPE, - ACTIONS(8318), 1, - anon_sym_AMP, - ACTIONS(8564), 1, - anon_sym_EQ, - STATE(5257), 1, - aux_sym_repeat_pattern_repeat1, - STATE(6408), 1, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9407), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5205), 6, + STATE(5790), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [124963] = 9, + [135489] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6281), 1, + ACTIONS(6888), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5206), 6, + STATE(5791), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6283), 9, + ACTIONS(6890), 8, sym__newline, sym__dedent, - anon_sym_and, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [125005] = 11, + [135530] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, - ACTIONS(8326), 1, - anon_sym_SEMI, - STATE(5150), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9409), 1, + anon_sym_EQ, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5207), 6, + STATE(5792), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [125051] = 9, + [135585] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2986), 2, - anon_sym_and, - sym_identifier, - STATE(5208), 6, + ACTIONS(4762), 2, + anon_sym_EQ, + anon_sym_RPAREN, + STATE(5793), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2988), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, + [135638] = 16, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, anon_sym_DASH_GT, - anon_sym_GT, + ACTIONS(8230), 1, anon_sym_STAR, - anon_sym_LT2, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - [125093] = 9, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9417), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5794), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [135693] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3284), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9348), 1, + anon_sym_COMMA, + ACTIONS(9350), 1, + anon_sym_COLON_COLON, + ACTIONS(9352), 1, + anon_sym_PIPE, + ACTIONS(9354), 1, + anon_sym_AMP, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5209), 6, + ACTIONS(6788), 2, + anon_sym_SEMI, + anon_sym_in, + STATE(5795), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3286), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [125134] = 9, + [135746] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6422), 1, + ACTIONS(9250), 1, anon_sym_COLON, + STATE(5755), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5210), 6, + STATE(5796), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6424), 8, - sym__newline, - sym__dedent, + ACTIONS(6759), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [125175] = 16, + anon_sym_in, + [135789] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8566), 1, - anon_sym_GT, - STATE(4963), 1, + ACTIONS(9419), 1, + anon_sym_COMMA, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5211), 6, + STATE(5797), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125230] = 10, + [135844] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, + ACTIONS(3770), 1, anon_sym_COLON, - ACTIONS(8568), 1, - anon_sym_COMMA, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5212), 7, + STATE(5798), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [125273] = 16, + ACTIONS(3772), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [135885] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9421), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8571), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9423), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5213), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [125328] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(8577), 1, - anon_sym_DQUOTE2, - STATE(5382), 1, - aux_sym_verbatim_string_repeat1, - STATE(5533), 1, - sym__verbatim_string_char, - STATE(5534), 1, - sym__simple_string_char, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8575), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8573), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5214), 6, + STATE(5799), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125377] = 16, + [135940] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, + anon_sym_COMMA, + ACTIONS(9142), 1, + anon_sym_COLON_COLON, + ACTIONS(9144), 1, + anon_sym_PIPE, + ACTIONS(9146), 1, + anon_sym_AMP, + ACTIONS(9425), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8579), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9427), 1, + anon_sym_when, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5215), 6, + STATE(5800), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125432] = 16, + [135995] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8581), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8873), 1, + anon_sym_COLON, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5216), 6, + STATE(5801), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125487] = 16, + ACTIONS(6704), 7, + anon_sym_EQ, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + [136038] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, + ACTIONS(8228), 1, anon_sym_DASH_GT, - ACTIONS(7710), 1, + ACTIONS(8230), 1, anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8583), 1, - anon_sym_EQ, - STATE(4963), 1, + ACTIONS(9429), 1, + anon_sym_RPAREN, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5217), 6, + STATE(5802), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125542] = 9, + [136093] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6447), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5218), 6, + ACTIONS(6788), 2, + anon_sym_EQ, + anon_sym_RPAREN, + STATE(5803), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6449), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [125583] = 9, + [136146] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6459), 1, + ACTIONS(8909), 1, anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5219), 6, + STATE(5804), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6461), 8, - sym__newline, - sym__dedent, + ACTIONS(6715), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [125624] = 10, + anon_sym_DASH_GT, + anon_sym_when, + [136189] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5257), 1, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5220), 6, + STATE(5805), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 7, + ACTIONS(6711), 7, anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [125667] = 16, + [136232] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5221), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [125722] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3734), 1, + anon_sym_COLON, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8587), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5222), 6, + STATE(5806), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [125777] = 10, + ACTIONS(3736), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [136273] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5257), 1, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5223), 6, + STATE(5807), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 7, + ACTIONS(6723), 7, anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [125820] = 10, + [136316] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(3766), 1, anon_sym_COLON, - STATE(5257), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5224), 6, + STATE(5808), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 7, - anon_sym_EQ, + ACTIONS(3768), 8, + sym__newline, + sym__dedent, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [125863] = 10, + anon_sym_SEMI, + [136357] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5257), 1, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5225), 6, + STATE(5809), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 7, + ACTIONS(6698), 7, anon_sym_EQ, anon_sym_as, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT2, - [125906] = 10, + [136400] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, + ACTIONS(3746), 1, anon_sym_COLON, - ACTIONS(8589), 1, - anon_sym_COMMA, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - STATE(5226), 7, + STATE(5810), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [125949] = 15, + ACTIONS(3748), 8, + sym__newline, + sym__dedent, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI, + [136441] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8312), 1, + ACTIONS(8909), 1, + anon_sym_COLON, + ACTIONS(9140), 1, anon_sym_COMMA, - ACTIONS(8314), 1, + ACTIONS(9142), 1, anon_sym_COLON_COLON, - ACTIONS(8316), 1, + ACTIONS(9144), 1, anon_sym_PIPE, - ACTIONS(8318), 1, + ACTIONS(9146), 1, anon_sym_AMP, - STATE(5257), 1, + ACTIONS(9431), 1, + anon_sym_DASH_GT, + ACTIONS(9433), 1, + anon_sym_when, + STATE(5773), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 2, - anon_sym_EQ, - anon_sym_LT2, - STATE(5227), 6, + STATE(5811), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126002] = 10, + [136496] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - STATE(5257), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8228), 1, + anon_sym_DASH_GT, + ACTIONS(8230), 1, + anon_sym_STAR, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(9435), 1, + anon_sym_RPAREN, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5228), 6, + STATE(5812), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [126045] = 9, + [136551] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6455), 1, + ACTIONS(8909), 1, anon_sym_COLON, + STATE(5773), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5229), 6, + STATE(5813), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6457), 8, - sym__newline, - sym__dedent, + ACTIONS(6719), 7, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [126086] = 9, + anon_sym_DASH_GT, + anon_sym_when, + [136594] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, + ACTIONS(3738), 1, anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5230), 6, + STATE(5814), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6230), 8, + ACTIONS(3740), 8, sym__newline, sym__dedent, anon_sym_as, @@ -466132,8364 +512694,7692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI, - [126127] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [136635] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8430), 1, - anon_sym_DQUOTE2, - STATE(5533), 1, - sym__verbatim_string_char, - STATE(5534), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8595), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8592), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5231), 7, + ACTIONS(7123), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(7125), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5815), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_verbatim_string_repeat1, - [126174] = 16, + [136675] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8598), 1, - sym_identifier, - ACTIONS(8600), 1, - sym__dedent, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5232), 6, + ACTIONS(9437), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(9439), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5816), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126229] = 11, + [136715] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, + ACTIONS(6753), 1, anon_sym_COLON, - ACTIONS(8602), 1, + ACTIONS(9441), 1, anon_sym_COMMA, - STATE(5264), 1, + STATE(5844), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6265), 6, + ACTIONS(6755), 5, anon_sym_as, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_in, - STATE(5233), 6, + STATE(5817), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126274] = 15, + [136759] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8606), 1, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, anon_sym_COLON_COLON, - ACTIONS(8608), 1, + ACTIONS(9413), 1, anon_sym_PIPE, - ACTIONS(8610), 1, + ACTIONS(9415), 1, anon_sym_AMP, - STATE(5233), 1, + ACTIONS(9443), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 2, - anon_sym_SEMI, - anon_sym_in, - STATE(5234), 6, + STATE(5818), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126327] = 11, + [136811] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, - anon_sym_COLON, - ACTIONS(8612), 1, - anon_sym_SEMI, - STATE(5350), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(8232), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(8702), 1, + sym_identifier, + STATE(5391), 1, + aux_sym__compound_type_repeat1, + STATE(5484), 1, + sym_long_identifier, + STATE(5492), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6243), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5235), 6, + ACTIONS(9445), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5819), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126372] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [136861] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9447), 1, + anon_sym_RPAREN, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8616), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - ACTIONS(8614), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - STATE(5236), 6, + STATE(5820), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126413] = 9, + [136913] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4762), 1, + anon_sym_in, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6451), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5237), 6, + STATE(5821), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6453), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [126454] = 16, + [136965] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8598), 1, - sym_identifier, - ACTIONS(8618), 1, - sym__dedent, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5238), 6, + ACTIONS(7112), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(7114), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5822), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126509] = 16, + [137005] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8620), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9455), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5239), 6, + STATE(5823), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126564] = 16, + [137057] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8622), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9457), 1, + anon_sym_RPAREN, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5240), 6, + STATE(5824), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126619] = 16, + [137109] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8624), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9459), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5241), 6, + STATE(5825), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126674] = 11, + [137161] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9309), 1, anon_sym_COMMA, - STATE(5212), 1, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9461), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6265), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5242), 6, + STATE(5826), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126719] = 10, + [137213] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5242), 1, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9463), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5243), 6, + STATE(5827), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [126762] = 16, + [137265] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8628), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9465), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5244), 6, + STATE(5828), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126817] = 16, + [137317] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8630), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9467), 1, anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5245), 6, + STATE(5829), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126872] = 16, + [137369] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8632), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9469), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5246), 6, + STATE(5830), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [126927] = 9, + [137421] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9471), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5247), 6, + STATE(5831), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(2520), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [126968] = 16, + [137473] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8634), 1, + ACTIONS(9309), 1, anon_sym_COMMA, - ACTIONS(8636), 1, + ACTIONS(9411), 1, anon_sym_COLON_COLON, - ACTIONS(8638), 1, + ACTIONS(9413), 1, anon_sym_PIPE, - ACTIONS(8640), 1, + ACTIONS(9415), 1, anon_sym_AMP, - ACTIONS(8642), 1, - anon_sym_DASH_GT, - ACTIONS(8644), 1, - anon_sym_when, - STATE(5392), 1, + ACTIONS(9473), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5248), 6, + STATE(5832), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127023] = 9, + [137525] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6418), 1, + ACTIONS(9250), 1, anon_sym_COLON, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5249), 6, + ACTIONS(6723), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5833), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6420), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [127064] = 9, + [137567] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3465), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9475), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5250), 6, + STATE(5834), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3467), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [127105] = 9, + [137619] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6414), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9477), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5251), 6, + STATE(5835), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6416), 8, - sym__newline, - sym__dedent, + [137671] = 15, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, anon_sym_COMMA, + ACTIONS(9411), 1, anon_sym_COLON_COLON, + ACTIONS(9413), 1, anon_sym_PIPE, + ACTIONS(9415), 1, anon_sym_AMP, - anon_sym_SEMI, - [127146] = 16, + ACTIONS(9479), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5836), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [137723] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8646), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5252), 6, + STATE(5837), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127201] = 9, + [137775] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3461), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9250), 1, + anon_sym_COLON, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5253), 6, + ACTIONS(6698), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5838), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3463), 8, - sym__newline, - sym__dedent, + [137817] = 10, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9250), 1, + anon_sym_COLON, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(6711), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - [127242] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + anon_sym_in, + STATE(5839), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [137859] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7273), 1, + anon_sym_DOT, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8648), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - ACTIONS(8650), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - STATE(5254), 6, + ACTIONS(3259), 5, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LT2, + anon_sym_LBRACK_RBRACK, + sym_identifier, + STATE(5840), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127283] = 10, + [137903] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5242), 1, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5255), 6, + ACTIONS(6719), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5841), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 7, - anon_sym_EQ, + [137945] = 15, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, anon_sym_COMMA, + ACTIONS(9449), 1, anon_sym_COLON_COLON, + ACTIONS(9451), 1, anon_sym_PIPE, + ACTIONS(9453), 1, anon_sym_AMP, - [127326] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(9483), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8652), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - anon_sym_LBRACE2, - ACTIONS(8654), 5, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTE, - STATE(5256), 6, + STATE(5842), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127367] = 11, + [137997] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, - ACTIONS(8312), 1, + ACTIONS(9441), 1, anon_sym_COMMA, - STATE(5226), 1, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9485), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6265), 6, - anon_sym_EQ, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - STATE(5257), 6, + STATE(5843), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127412] = 16, + [138049] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8656), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(6702), 1, + anon_sym_COLON, + ACTIONS(9487), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5258), 6, + ACTIONS(6704), 5, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_in, + STATE(5844), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127467] = 9, + aux_sym_repeat_pattern_repeat1, + [138091] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6293), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9490), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5259), 6, + STATE(5845), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6295), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [127508] = 10, + [138143] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5364), 1, + anon_sym_RPAREN, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5260), 6, + STATE(5846), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [127551] = 10, + [138195] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9492), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5261), 6, + STATE(5847), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [127594] = 10, + [138247] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9494), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5262), 6, + STATE(5848), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [127637] = 10, + [138299] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5233), 1, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5263), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6301), 7, + ACTIONS(6715), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_in, - [127680] = 10, + STATE(5849), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [138341] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, - anon_sym_COLON, - ACTIONS(8658), 1, - anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5857), 1, + aux_sym_type_definition_repeat1, + STATE(7414), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - STATE(5264), 7, + ACTIONS(5536), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5850), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [127723] = 15, + [138391] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8606), 1, - anon_sym_COLON_COLON, - ACTIONS(8608), 1, - anon_sym_PIPE, - ACTIONS(8610), 1, - anon_sym_AMP, - STATE(5233), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9496), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5850), 1, + aux_sym_type_definition_repeat1, + STATE(7414), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 2, - anon_sym_SEMI, - anon_sym_in, - STATE(5265), 6, + ACTIONS(5526), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5851), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127776] = 9, + [138441] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8661), 4, + ACTIONS(9161), 4, sym__inside_string_marker, sym__escape_char, sym__non_escape_char, - anon_sym_LBRACE2, - ACTIONS(8663), 5, + aux_sym__simple_string_char_token1, + ACTIONS(9163), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - aux_sym__simple_string_char_token1, anon_sym_DQUOTE, - STATE(5266), 6, + STATE(5852), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127817] = 15, + [138481] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8312), 1, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, anon_sym_COMMA, - ACTIONS(8314), 1, + ACTIONS(9449), 1, anon_sym_COLON_COLON, - ACTIONS(8316), 1, + ACTIONS(9451), 1, anon_sym_PIPE, - ACTIONS(8318), 1, + ACTIONS(9453), 1, anon_sym_AMP, - STATE(5257), 1, + ACTIONS(9498), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 2, - anon_sym_EQ, - anon_sym_LT2, - STATE(5267), 6, + STATE(5853), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127870] = 16, + [138533] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(9250), 1, anon_sym_COLON, - ACTIONS(8634), 1, + ACTIONS(9441), 1, anon_sym_COMMA, - ACTIONS(8636), 1, + ACTIONS(9449), 1, anon_sym_COLON_COLON, - ACTIONS(8638), 1, + ACTIONS(9451), 1, anon_sym_PIPE, - ACTIONS(8640), 1, + ACTIONS(9453), 1, anon_sym_AMP, - ACTIONS(8665), 1, - anon_sym_DASH_GT, - ACTIONS(8667), 1, - anon_sym_when, - STATE(5392), 1, + ACTIONS(9500), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5268), 6, + STATE(5854), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [127925] = 9, + [138585] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3451), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9502), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5269), 6, + STATE(5855), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3453), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [127966] = 16, + [138637] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8669), 1, - anon_sym_EQ, - STATE(4963), 1, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5270), 6, + ACTIONS(9504), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5856), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128021] = 16, + [138687] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5544), 1, + anon_sym_LBRACK_LT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8598), 1, - sym_identifier, - ACTIONS(8671), 1, - sym__dedent, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(9506), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(7414), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5271), 6, + ACTIONS(5540), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5857), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128076] = 16, + aux_sym_type_definition_repeat1, + [138735] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8673), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9496), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5881), 1, + aux_sym_type_definition_repeat1, + STATE(7414), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5272), 6, + ACTIONS(5532), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5858), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128131] = 16, + [138785] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9509), 1, anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5273), 6, + STATE(5859), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128186] = 16, + [138837] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8677), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, anon_sym_COMMA, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9511), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5274), 6, + STATE(5860), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128241] = 9, + [138889] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3371), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5275), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3373), 8, - sym__newline, - sym__dedent, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, anon_sym_COMMA, + ACTIONS(9411), 1, anon_sym_COLON_COLON, + ACTIONS(9413), 1, anon_sym_PIPE, + ACTIONS(9415), 1, anon_sym_AMP, - anon_sym_SEMI, - [128282] = 16, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8679), 1, + ACTIONS(9513), 1, anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5276), 6, + STATE(5861), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128337] = 16, + [138941] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8681), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9515), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5277), 6, + STATE(5862), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128392] = 9, + [138993] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3356), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9517), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5278), 6, + STATE(5863), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3358), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128433] = 9, + [139045] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3350), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9519), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5279), 6, + STATE(5864), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3352), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128474] = 10, + [139097] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9521), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5280), 6, + STATE(5865), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6226), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [128517] = 9, + [139149] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3339), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5281), 6, + ACTIONS(7116), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + ACTIONS(7118), 4, + anon_sym_LBRACK_LT, + anon_sym_QMARK, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5866), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3341), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128558] = 9, + [139189] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3326), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9523), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5282), 6, + STATE(5867), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3328), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128599] = 10, + [139241] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5360), 1, + anon_sym_RPAREN, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6352), 1, - anon_sym_COLON, - ACTIONS(8683), 1, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5283), 6, + STATE(5868), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6354), 7, - sym__newline, - sym__dedent, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128642] = 10, + [139293] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6241), 1, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5348), 1, - aux_sym_record_pattern_repeat1, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5284), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(6243), 7, + ACTIONS(6704), 6, anon_sym_as, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, anon_sym_in, - [128685] = 15, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8685), 1, - sym_identifier, - STATE(4663), 1, - sym_long_identifier, - STATE(5482), 1, - sym_access_modifier, - STATE(5587), 1, - sym__static_type_identifier, - STATE(7596), 1, - sym_type_argument, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5285), 6, + STATE(5869), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128738] = 16, + [139335] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8687), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5286), 6, + ACTIONS(9165), 4, + sym__inside_string_marker, + sym__escape_char, + sym__non_escape_char, + aux_sym__simple_string_char_token1, + ACTIONS(9167), 4, + sym__unicodegraph_short, + sym__unicodegraph_long, + sym__trigraph, + anon_sym_DQUOTE, + STATE(5870), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128793] = 9, + [139375] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3312), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5287), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3314), 8, - sym__newline, - sym__dedent, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, anon_sym_COMMA, + ACTIONS(9449), 1, anon_sym_COLON_COLON, + ACTIONS(9451), 1, anon_sym_PIPE, + ACTIONS(9453), 1, anon_sym_AMP, - anon_sym_SEMI, - [128834] = 12, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(8693), 1, - anon_sym_not, - ACTIONS(8695), 1, - anon_sym_enum, - ACTIONS(8697), 1, - anon_sym_delegate, + ACTIONS(9525), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8691), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - STATE(5288), 6, + STATE(5871), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [128881] = 9, + [139427] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3469), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5289), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(3471), 8, - sym__newline, - sym__dedent, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, anon_sym_COMMA, + ACTIONS(9449), 1, anon_sym_COLON_COLON, + ACTIONS(9451), 1, anon_sym_PIPE, + ACTIONS(9453), 1, anon_sym_AMP, - anon_sym_SEMI, - [128922] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3295), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(9527), 1, + anon_sym_in, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5290), 6, + STATE(5872), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3297), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [128963] = 16, + [139479] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, + ACTIONS(8076), 1, anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, + ACTIONS(8232), 1, anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8702), 1, sym_identifier, - ACTIONS(8699), 1, - anon_sym_RPAREN, - STATE(4963), 1, + STATE(5391), 1, aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5484), 1, sym_long_identifier, - STATE(5170), 1, + STATE(5492), 1, sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5291), 6, + ACTIONS(4959), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(5873), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129018] = 9, + [139529] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3288), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9529), 1, + anon_sym_EQ, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5292), 6, + STATE(5874), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3290), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [129059] = 16, + [139581] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(6788), 1, + anon_sym_in, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(9250), 1, anon_sym_COLON, - ACTIONS(8634), 1, + ACTIONS(9441), 1, anon_sym_COMMA, - ACTIONS(8636), 1, + ACTIONS(9449), 1, anon_sym_COLON_COLON, - ACTIONS(8638), 1, + ACTIONS(9451), 1, anon_sym_PIPE, - ACTIONS(8640), 1, + ACTIONS(9453), 1, anon_sym_AMP, - ACTIONS(8701), 1, - anon_sym_DASH_GT, - ACTIONS(8703), 1, - anon_sym_when, - STATE(5392), 1, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5293), 6, + STATE(5875), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129114] = 10, + [139633] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(9250), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_COLON_COLON, + ACTIONS(9451), 1, + anon_sym_PIPE, + ACTIONS(9453), 1, + anon_sym_AMP, + ACTIONS(9531), 1, + anon_sym_in, + STATE(5817), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5294), 6, + STATE(5876), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [129157] = 9, + [139685] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8705), 4, + ACTIONS(9122), 4, sym__inside_string_marker, sym__escape_char, sym__non_escape_char, - anon_sym_LBRACE2, - ACTIONS(8707), 5, + aux_sym__simple_string_char_token1, + ACTIONS(9124), 4, sym__unicodegraph_short, sym__unicodegraph_long, sym__trigraph, - aux_sym__simple_string_char_token1, anon_sym_DQUOTE, - STATE(5295), 6, + STATE(5877), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129198] = 16, + [139725] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, + ACTIONS(8812), 1, anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(8873), 1, anon_sym_COLON, - ACTIONS(8634), 1, + ACTIONS(9309), 1, anon_sym_COMMA, - ACTIONS(8636), 1, + ACTIONS(9411), 1, anon_sym_COLON_COLON, - ACTIONS(8638), 1, + ACTIONS(9413), 1, anon_sym_PIPE, - ACTIONS(8640), 1, + ACTIONS(9415), 1, anon_sym_AMP, - ACTIONS(8709), 1, - anon_sym_DASH_GT, - ACTIONS(8711), 1, - anon_sym_when, - STATE(5392), 1, + ACTIONS(9533), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5296), 6, + STATE(5878), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129253] = 16, + [139777] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8598), 1, - sym_identifier, - ACTIONS(8713), 1, - sym__dedent, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, + anon_sym_COLON, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9535), 1, + anon_sym_RPAREN, + STATE(5725), 1, + aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5297), 6, + STATE(5879), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129308] = 10, + [139829] = 15, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, + ACTIONS(8812), 1, + anon_sym_as, + ACTIONS(8873), 1, anon_sym_COLON, - STATE(5233), 1, + ACTIONS(9309), 1, + anon_sym_COMMA, + ACTIONS(9411), 1, + anon_sym_COLON_COLON, + ACTIONS(9413), 1, + anon_sym_PIPE, + ACTIONS(9415), 1, + anon_sym_AMP, + ACTIONS(9537), 1, + anon_sym_EQ, + STATE(5725), 1, aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5298), 6, + STATE(5880), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [139881] = 14, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9496), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5857), 1, + aux_sym_type_definition_repeat1, + STATE(7414), 1, + sym_attributes, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5526), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5881), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 7, + [139931] = 15, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(8812), 1, anon_sym_as, + ACTIONS(9250), 1, + anon_sym_COLON, + ACTIONS(9441), 1, anon_sym_COMMA, + ACTIONS(9449), 1, anon_sym_COLON_COLON, + ACTIONS(9451), 1, anon_sym_PIPE, + ACTIONS(9453), 1, anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(9539), 1, anon_sym_in, - [129351] = 16, + STATE(5817), 1, + aux_sym_repeat_pattern_repeat1, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(5882), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [139983] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(33), 1, + anon_sym_let, + ACTIONS(35), 1, + anon_sym_let_BANG, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8715), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9541), 1, + anon_sym_module, + ACTIONS(9543), 1, + anon_sym_type, + ACTIONS(9545), 1, + anon_sym_do, + STATE(3393), 1, + sym_do, + STATE(3398), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5299), 6, + STATE(5883), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129406] = 16, + [140032] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9549), 1, + anon_sym_default, + STATE(5057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7135), 1, + sym_type_argument, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5884), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [140079] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(1192), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2265), 1, + sym_op_identifier, + ACTIONS(9551), 1, sym_identifier, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2367), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2504), 1, + sym_long_identifier_or_op, + STATE(2582), 1, + sym__identifier_or_op, + STATE(2717), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5300), 6, + STATE(5885), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129461] = 16, + [140128] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9300), 1, sym_identifier, - ACTIONS(8719), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(5036), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8298), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5301), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5886), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129516] = 16, + [140175] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(808), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2375), 1, + sym_op_identifier, + ACTIONS(9553), 1, sym_identifier, - ACTIONS(8721), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2063), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2173), 1, + sym_active_pattern, + STATE(2213), 1, + sym__identifier_or_op, + STATE(2246), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5302), 6, + STATE(5887), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129571] = 9, + [140224] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3387), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9555), 1, + anon_sym_default, + STATE(4055), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6940), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5303), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5888), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3389), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [129612] = 16, + [140271] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8723), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9555), 1, + anon_sym_default, + STATE(4050), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6940), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5304), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5889), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129667] = 10, + [140318] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(674), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2283), 1, + sym_op_identifier, + ACTIONS(9557), 1, + sym_identifier, + STATE(1846), 1, + sym_long_identifier, + STATE(1849), 1, + sym_active_pattern, + STATE(1906), 1, + sym__identifier_or_op, + STATE(2008), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5305), 6, + STATE(5890), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [129710] = 16, + [140367] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5532), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6922), 1, - anon_sym_DASH_GT, - ACTIONS(6924), 1, - anon_sym_STAR, - ACTIONS(6926), 1, - anon_sym_LT2, - ACTIONS(6928), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8598), 1, - sym_identifier, - ACTIONS(8725), 1, - sym__dedent, - STATE(4366), 1, - aux_sym__compound_type_repeat1, - STATE(4419), 1, - sym_long_identifier, - STATE(4465), 1, - sym_type_arguments, + ACTIONS(9559), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5896), 1, + aux_sym_type_definition_repeat1, + STATE(7208), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5306), 6, + STATE(5891), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129765] = 16, + [140416] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(1610), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2385), 1, + sym_op_identifier, + ACTIONS(9561), 1, sym_identifier, - ACTIONS(8727), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2390), 1, + sym_active_pattern, + STATE(2408), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2722), 1, + sym_long_identifier_or_op, + STATE(2726), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5307), 6, + STATE(5892), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129820] = 16, + [140465] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8729), 1, - anon_sym_DASH_GT, - ACTIONS(8731), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(9563), 1, + sym_identifier, + ACTIONS(9565), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(9567), 1, + sym_op_identifier, + STATE(3542), 1, + sym__identifier_or_op, + STATE(4742), 1, + sym_active_pattern, + STATE(5974), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5308), 6, + STATE(5893), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129875] = 16, + [140514] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8733), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9569), 1, + anon_sym_default, + STATE(4057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6959), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5309), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5894), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129930] = 16, + [140561] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8735), 1, - anon_sym_DASH_GT, - ACTIONS(8737), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9571), 1, + anon_sym_default, + STATE(5375), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7026), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5310), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5895), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [129985] = 16, + [140608] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5526), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8739), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9559), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5906), 1, + aux_sym_type_definition_repeat1, + STATE(7208), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5311), 6, + STATE(5896), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130040] = 16, + [140657] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(1384), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2427), 1, + sym_op_identifier, + ACTIONS(9573), 1, sym_identifier, - ACTIONS(8741), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2374), 1, + sym__identifier_or_op, + STATE(2457), 1, + sym_active_pattern, + STATE(2461), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2771), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5312), 6, + STATE(5897), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130095] = 16, + [140706] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8743), 1, - anon_sym_DASH_GT, - ACTIONS(8745), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9575), 1, + anon_sym_module, + ACTIONS(9577), 1, + anon_sym_type, + ACTIONS(9579), 1, + anon_sym_do, + ACTIONS(9581), 1, + anon_sym_let, + ACTIONS(9583), 1, + anon_sym_let_BANG, + STATE(6716), 1, + sym_do, + STATE(6717), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5313), 6, + STATE(5898), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130150] = 10, + [140755] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5526), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9559), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5904), 1, + aux_sym_type_definition_repeat1, + STATE(7208), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5314), 6, + STATE(5899), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6214), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [130193] = 16, + [140804] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8747), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9585), 1, + anon_sym_default, + STATE(3785), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6991), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5315), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5900), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130248] = 9, + [140851] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(33), 1, + anon_sym_let, + ACTIONS(35), 1, + anon_sym_let_BANG, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3280), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9543), 1, + anon_sym_type, + ACTIONS(9545), 1, + anon_sym_do, + ACTIONS(9587), 1, + anon_sym_module, + STATE(3393), 1, + sym_do, + STATE(3398), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5316), 6, + STATE(5901), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3282), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130289] = 9, + [140900] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3276), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9589), 1, + anon_sym_default, + STATE(5374), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7105), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5317), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5902), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3278), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130330] = 9, + [140947] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3272), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9591), 1, + anon_sym_default, + STATE(5057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7053), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5318), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5903), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3274), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130371] = 9, + [140994] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(25), 1, + anon_sym_LBRACK_LT, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3268), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5536), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9559), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(5906), 1, + aux_sym_type_definition_repeat1, + STATE(7208), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5319), 6, + STATE(5904), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3270), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130412] = 10, + [141043] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5320), 6, + ACTIONS(9595), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9593), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5905), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [130455] = 15, + [141082] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5540), 1, + anon_sym_POUNDendif, + ACTIONS(5544), 1, + anon_sym_LBRACK_LT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9597), 1, + anon_sym_and, + STATE(4296), 1, + aux_sym_attributes_repeat1, + STATE(4720), 1, + sym_attribute_set, + STATE(7208), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 2, - anon_sym_EQ, - anon_sym_RPAREN, - STATE(5321), 6, + STATE(5906), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130508] = 16, + aux_sym_type_definition_repeat1, + [141129] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(207), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2305), 1, + sym_op_identifier, + ACTIONS(9600), 1, sym_identifier, - ACTIONS(8755), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(1058), 1, + sym_active_pattern, + STATE(1064), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(1089), 1, + sym_long_identifier_or_op, + STATE(1120), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5322), 6, + STATE(5907), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130563] = 9, + [141178] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3262), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9602), 1, + anon_sym_default, + STATE(5057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6654), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5323), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5908), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3264), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130604] = 16, + [141225] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2043), 1, + anon_sym_let, + ACTIONS(2045), 1, + anon_sym_let_BANG, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8757), 1, - anon_sym_DASH_GT, - ACTIONS(8759), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9604), 1, + anon_sym_module, + ACTIONS(9606), 1, + anon_sym_type, + ACTIONS(9608), 1, + anon_sym_do, + STATE(3427), 1, + sym_function_or_value_defn, + STATE(3435), 1, + sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5324), 6, + STATE(5909), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130659] = 9, + [141274] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3253), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9589), 1, + anon_sym_default, + STATE(5057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7105), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5325), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5910), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3255), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130700] = 10, + [141321] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5784), 1, + anon_sym__, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9610), 1, + sym_identifier, + STATE(5035), 1, + sym_long_identifier, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8277), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5326), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5911), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [130743] = 9, + [141368] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9612), 1, + anon_sym_default, + STATE(5395), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7039), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5327), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5912), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3530), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [130784] = 10, + [141415] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9569), 1, + anon_sym_default, + STATE(4050), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6959), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5328), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5913), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [130827] = 10, + [141462] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8380), 1, - anon_sym_COLON, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9549), 1, + anon_sym_default, + STATE(5596), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7135), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5329), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5914), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - [130870] = 16, + [141509] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8761), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9612), 1, + anon_sym_default, + STATE(5057), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7039), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5330), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5915), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130925] = 16, + [141556] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(379), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2053), 1, + sym_op_identifier, + ACTIONS(9614), 1, sym_identifier, - ACTIONS(8763), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(1466), 1, + sym_active_pattern, + STATE(1553), 1, + sym__identifier_or_op, + STATE(1624), 1, + sym_long_identifier_or_op, + STATE(1625), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5331), 6, + STATE(5916), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [130980] = 9, + [141605] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3417), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9616), 1, + anon_sym_interface, + STATE(6114), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5332), 6, + ACTIONS(5550), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5917), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3419), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [131021] = 16, + aux_sym__object_expression_inner_repeat1, + [141646] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9619), 1, sym_identifier, - ACTIONS(8765), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(4118), 1, + sym_attribute_set, + STATE(5111), 1, + sym_union_type_case, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(6377), 1, + sym_enum_type_case, + STATE(8139), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5333), 6, + STATE(5918), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131076] = 16, + [141695] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8767), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9571), 1, + anon_sym_default, + STATE(5602), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7026), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5334), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5919), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131131] = 16, + [141742] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8769), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5335), 6, + ACTIONS(9165), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9167), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5920), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131186] = 16, + [141781] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(483), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(1840), 1, + sym_op_identifier, + ACTIONS(9621), 1, sym_identifier, - ACTIONS(8771), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2160), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2161), 1, + sym__identifier_or_op, + STATE(2277), 1, + sym_active_pattern, + STATE(2307), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5336), 6, + STATE(5921), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131241] = 12, + [141830] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8773), 1, - anon_sym_LPAREN, - ACTIONS(8777), 1, - anon_sym_not, - ACTIONS(8779), 1, - anon_sym_enum, - ACTIONS(8781), 1, - anon_sym_delegate, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9602), 1, + anon_sym_default, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6305), 1, + sym_constraint, + STATE(6654), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8775), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - STATE(5337), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5922), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131288] = 16, + [141877] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8783), 1, - anon_sym_DASH_GT, - ACTIONS(8785), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(579), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2325), 1, + sym_op_identifier, + ACTIONS(9623), 1, + sym_identifier, + STATE(1755), 1, + sym__identifier_or_op, + STATE(1762), 1, + sym_active_pattern, + STATE(1804), 1, + sym_long_identifier, + STATE(1982), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5338), 6, + STATE(5923), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131343] = 10, + [141926] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8298), 1, - anon_sym_COLON, - STATE(5257), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(1100), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2395), 1, + sym_op_identifier, + ACTIONS(9625), 1, + sym_identifier, + STATE(2623), 1, + sym_long_identifier_or_op, + STATE(2640), 1, + sym_active_pattern, + STATE(2767), 1, + sym__identifier_or_op, + STATE(2769), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5339), 6, + STATE(5924), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6218), 7, - anon_sym_EQ, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT2, - [131386] = 16, + [141975] = 14, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8787), 1, - anon_sym_DASH_GT, - ACTIONS(8789), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9627), 1, + anon_sym_module, + ACTIONS(9629), 1, + anon_sym_type, + ACTIONS(9631), 1, + anon_sym_do, + ACTIONS(9633), 1, + anon_sym_let, + ACTIONS(9635), 1, + anon_sym_let_BANG, + STATE(7943), 1, + sym_function_or_value_defn, + STATE(7944), 1, + sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5340), 6, + STATE(5925), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131441] = 16, + [142024] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(964), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2335), 1, + sym_op_identifier, + ACTIONS(9637), 1, sym_identifier, - ACTIONS(8791), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, + STATE(2077), 1, + sym_long_identifier_or_op, + STATE(2163), 1, sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2209), 1, + sym_active_pattern, + STATE(2301), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5341), 6, + STATE(5926), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131496] = 9, + [142073] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3421), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(1282), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(2411), 1, + sym_op_identifier, + ACTIONS(9639), 1, + sym_identifier, + STATE(2353), 1, + sym_long_identifier, + STATE(2363), 1, + sym_active_pattern, + STATE(2484), 1, + sym__identifier_or_op, + STATE(2578), 1, + sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5342), 6, + STATE(5927), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3423), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [131537] = 9, + [142122] = 14, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(99), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(101), 1, + sym_op_identifier, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3428), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(9641), 1, + sym_identifier, + STATE(1282), 1, + sym_long_identifier_or_op, + STATE(1300), 1, + sym_active_pattern, + STATE(1371), 1, + sym_long_identifier, + STATE(1380), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5343), 6, + STATE(5928), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3430), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [131578] = 10, + [142171] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + ACTIONS(9585), 1, + anon_sym_default, + STATE(3806), 1, + sym_constraint, + STATE(6105), 1, + sym__static_type_identifier, + STATE(6991), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5344), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5929), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6279), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [131621] = 9, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, + [142218] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5345), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - ACTIONS(2926), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [131662] = 16, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8793), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5346), 6, + ACTIONS(9645), 3, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + anon_sym_DQUOTEB, + ACTIONS(9643), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5930), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131717] = 16, + [142257] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8795), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(7244), 1, + anon_sym_interface, + STATE(5917), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6114), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5347), 6, + ACTIONS(5562), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(5931), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131772] = 10, + [142300] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, - STATE(5359), 1, - aux_sym_record_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9649), 1, + anon_sym_inline, + STATE(2794), 1, + sym_property_or_ident, + STATE(5393), 1, + sym_method_or_prop_defn, + STATE(6306), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5348), 6, + STATE(5932), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6237), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_in, - [131815] = 15, + [142346] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9651), 1, + anon_sym_inline, + STATE(2784), 1, + sym_property_or_ident, + STATE(3197), 1, + sym_method_or_prop_defn, + STATE(6381), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 2, - anon_sym_EQ, - anon_sym_RPAREN, - STATE(5349), 6, + STATE(5933), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131868] = 11, + [142392] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6235), 1, - anon_sym_COLON, - ACTIONS(8612), 1, - anon_sym_SEMI, - STATE(5359), 1, - aux_sym_record_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6237), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5350), 6, + ACTIONS(9655), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + ACTIONS(9653), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5934), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131913] = 16, + [142430] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8797), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(9657), 1, + anon_sym_do, + ACTIONS(9659), 1, + anon_sym_member, + ACTIONS(9661), 1, + anon_sym_val, + STATE(4956), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5351), 6, + STATE(5935), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [131968] = 16, + [142476] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8799), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9663), 1, + anon_sym_inline, + STATE(2815), 1, + sym_property_or_ident, + STATE(4818), 1, + sym_method_or_prop_defn, + STATE(6397), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5352), 6, + STATE(5936), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132023] = 15, + [142522] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9665), 1, + anon_sym_inline, + STATE(2809), 1, + sym_property_or_ident, + STATE(4948), 1, + sym_method_or_prop_defn, + STATE(6460), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4360), 2, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5353), 6, + STATE(5937), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132076] = 16, + [142568] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8801), 1, - anon_sym_COMMA, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5354), 6, + ACTIONS(9165), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9167), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5938), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132131] = 15, + [142606] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(8174), 1, + anon_sym_do, + ACTIONS(8180), 1, + anon_sym_member, + ACTIONS(8184), 1, + anon_sym_val, + STATE(6659), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6313), 2, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5355), 6, + STATE(5939), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132184] = 16, + [142652] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8803), 1, - anon_sym_COMMA, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5356), 6, + ACTIONS(9595), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9593), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5940), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132239] = 16, + [142690] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5357), 6, + ACTIONS(9645), 2, + sym__inside_string_marker, + aux_sym__simple_string_char_token1, + ACTIONS(9643), 4, + sym__non_escape_char, + anon_sym_BSLASH, + aux_sym__verbatim_string_char_token1, + anon_sym_DQUOTE2, + STATE(5941), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132294] = 16, + [142728] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8290), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8292), 1, - anon_sym_mutable, - STATE(3692), 1, - sym_attribute_set, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5783), 1, - sym_attributes, - STATE(6639), 1, - sym_record_field, - STATE(6807), 1, + ACTIONS(9667), 1, + anon_sym_inline, + STATE(2808), 1, + sym_property_or_ident, + STATE(3173), 1, + sym_method_or_prop_defn, + STATE(6315), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5358), 6, + STATE(5942), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132349] = 10, + [142774] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6228), 1, - anon_sym_COLON, - ACTIONS(8807), 1, - anon_sym_SEMI, + ACTIONS(7191), 1, + anon_sym_interface, + STATE(5951), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6150), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6230), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5359), 7, + ACTIONS(5562), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(5943), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_pattern_repeat1, - [132392] = 10, + [142816] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, - anon_sym_COLON, - ACTIONS(8810), 1, - anon_sym_COMMA, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9669), 1, + anon_sym_inline, + STATE(2792), 1, + sym_property_or_ident, + STATE(5364), 1, + sym_method_or_prop_defn, + STATE(6473), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5360), 7, + STATE(5944), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [132435] = 9, + [142862] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3409), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9671), 1, + anon_sym_inline, + STATE(2780), 1, + sym_property_or_ident, + STATE(5315), 1, + sym_method_or_prop_defn, + STATE(6540), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5361), 6, + STATE(5945), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3411), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [132476] = 16, + [142908] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8813), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9673), 1, + anon_sym_inline, + STATE(2780), 1, + sym_property_or_ident, + STATE(5291), 1, + sym_method_or_prop_defn, + STATE(6526), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5362), 6, + STATE(5946), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132531] = 16, + [142954] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8815), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9675), 1, + anon_sym_inline, + STATE(2780), 1, + sym_property_or_ident, + STATE(5317), 1, + sym_method_or_prop_defn, + STATE(6545), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5363), 6, + STATE(5947), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132586] = 16, + [143000] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8817), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9677), 1, + anon_sym_inline, + STATE(2809), 1, + sym_property_or_ident, + STATE(4912), 1, + sym_method_or_prop_defn, + STATE(6518), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5364), 6, + STATE(5948), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132641] = 12, + [143046] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8819), 1, - anon_sym_LPAREN, - ACTIONS(8823), 1, - anon_sym_not, - ACTIONS(8825), 1, - anon_sym_enum, - ACTIONS(8827), 1, - anon_sym_delegate, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9679), 1, + anon_sym_inline, + STATE(2808), 1, + sym_property_or_ident, + STATE(3075), 1, + sym_method_or_prop_defn, + STATE(6453), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8821), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - STATE(5365), 6, + STATE(5949), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132688] = 16, + [143092] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8829), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9681), 1, + anon_sym_inline, + STATE(2814), 1, + sym_property_or_ident, + STATE(5435), 1, + sym_method_or_prop_defn, + STATE(6349), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5366), 6, + STATE(5950), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132743] = 16, + [143138] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8831), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9683), 1, + anon_sym_interface, + STATE(6150), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5367), 6, + ACTIONS(5550), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(5951), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132798] = 16, + aux_sym__object_expression_inner_repeat1, + [143178] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8833), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9686), 1, + anon_sym_inline, + STATE(2808), 1, + sym_property_or_ident, + STATE(3037), 1, + sym_method_or_prop_defn, + STATE(6471), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5368), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [132853] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8654), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - ACTIONS(8652), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - STATE(5369), 6, + STATE(5952), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132894] = 16, + [143224] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8835), 1, - anon_sym_GT, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9688), 1, + anon_sym_inline, + STATE(2814), 1, + sym_property_or_ident, + STATE(5454), 1, + sym_method_or_prop_defn, + STATE(6287), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5370), 6, + STATE(5953), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [132949] = 16, + [143270] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8837), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(8155), 1, + anon_sym_do, + ACTIONS(8161), 1, + anon_sym_member, + ACTIONS(8165), 1, + anon_sym_val, + STATE(4897), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5371), 6, + STATE(5954), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133004] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [143316] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9690), 1, + anon_sym_inline, + STATE(2792), 1, + sym_property_or_ident, + STATE(5347), 1, + sym_method_or_prop_defn, + STATE(6458), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8707), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - ACTIONS(8705), 5, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - STATE(5372), 6, + STATE(5955), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133045] = 16, + [143362] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8839), 1, - anon_sym_COMMA, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9692), 1, + anon_sym_inline, + STATE(2815), 1, + sym_property_or_ident, + STATE(4797), 1, + sym_method_or_prop_defn, + STATE(6276), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5373), 6, + STATE(5956), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133100] = 9, + [143408] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6400), 1, - anon_sym_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9694), 1, + anon_sym_inline, + STATE(2784), 1, + sym_property_or_ident, + STATE(3201), 1, + sym_method_or_prop_defn, + STATE(6411), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5374), 6, + STATE(5957), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6402), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133141] = 16, + [143454] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8841), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(6578), 1, + anon_sym_let, + ACTIONS(6580), 1, + anon_sym_let_BANG, + ACTIONS(8130), 1, + anon_sym_do, + ACTIONS(8136), 1, + anon_sym_member, + ACTIONS(8140), 1, + anon_sym_val, + STATE(4975), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5375), 6, + STATE(5958), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133196] = 16, + [143500] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8843), 1, - anon_sym_DASH_GT, - ACTIONS(8845), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9696), 1, + anon_sym_inline, + STATE(2809), 1, + sym_property_or_ident, + STATE(4957), 1, + sym_method_or_prop_defn, + STATE(6489), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5376), 6, + STATE(5959), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133251] = 16, + [143546] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(8095), 1, + anon_sym_inline, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + STATE(2794), 1, + sym_property_or_ident, + STATE(5346), 1, + sym_method_or_prop_defn, + STATE(6286), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5377), 6, + STATE(5960), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133306] = 9, + [143592] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6431), 1, - anon_sym_COLON, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9698), 1, + anon_sym_inline, + STATE(2815), 1, + sym_property_or_ident, + STATE(4803), 1, + sym_method_or_prop_defn, + STATE(6239), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5378), 6, + STATE(5961), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6433), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133347] = 16, + [143638] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(8849), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9700), 1, + anon_sym_inline, + STATE(2792), 1, + sym_property_or_ident, + STATE(5354), 1, + sym_method_or_prop_defn, + STATE(6421), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5379), 6, + STATE(5962), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133402] = 9, + [143684] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6435), 1, - anon_sym_COLON, + ACTIONS(6358), 1, + anon_sym_let, + ACTIONS(6360), 1, + anon_sym_let_BANG, + ACTIONS(9702), 1, + anon_sym_do, + ACTIONS(9704), 1, + anon_sym_member, + ACTIONS(9706), 1, + anon_sym_val, + STATE(4882), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5380), 6, + STATE(5963), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6437), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133443] = 9, + [143730] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3391), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9708), 1, + anon_sym_inline, + STATE(2794), 1, + sym_property_or_ident, + STATE(5358), 1, + sym_method_or_prop_defn, + STATE(6257), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5381), 6, + STATE(5964), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3393), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133484] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [143776] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(8851), 1, - anon_sym_DQUOTE2, - STATE(5231), 1, - aux_sym_verbatim_string_repeat1, - STATE(5533), 1, - sym__verbatim_string_char, - STATE(5534), 1, - sym__simple_string_char, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9710), 1, + anon_sym_inline, + STATE(2784), 1, + sym_property_or_ident, + STATE(3206), 1, + sym_method_or_prop_defn, + STATE(6457), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8575), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8573), 3, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - STATE(5382), 6, + STATE(5965), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133533] = 9, + [143822] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3413), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(5957), 1, + anon_sym_let, + ACTIONS(5959), 1, + anon_sym_let_BANG, + ACTIONS(9712), 1, + anon_sym_do, + ACTIONS(9714), 1, + anon_sym_member, + ACTIONS(9716), 1, + anon_sym_val, + STATE(6680), 1, + sym_function_or_value_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5383), 6, + STATE(5966), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3415), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133574] = 12, + [143868] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8853), 1, - anon_sym_LPAREN, - ACTIONS(8857), 1, - anon_sym_not, - ACTIONS(8859), 1, - anon_sym_enum, - ACTIONS(8861), 1, - anon_sym_delegate, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8855), 5, - anon_sym_null, - anon_sym_struct, - anon_sym_unmanaged, - anon_sym_equality, - anon_sym_comparison, - STATE(5384), 6, + ACTIONS(9720), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + ACTIONS(9718), 4, + anon_sym_LPAREN, + anon_sym__, + anon_sym_POUND, + sym_identifier, + STATE(5967), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133621] = 9, + [143906] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK_LT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6443), 1, - anon_sym_COLON, + ACTIONS(9722), 1, + sym_identifier, + STATE(4118), 1, + sym_attribute_set, + STATE(5188), 1, + sym_union_type_case, + STATE(5747), 1, + aux_sym_attributes_repeat1, + STATE(8139), 1, + sym_attributes, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5385), 6, + STATE(5968), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6445), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133662] = 10, + [143952] = 13, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + ACTIONS(9724), 1, + anon_sym_inline, + STATE(2814), 1, + sym_property_or_ident, + STATE(5414), 1, + sym_method_or_prop_defn, + STATE(6240), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5386), 6, + STATE(5969), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6208), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [133705] = 10, + [143998] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9728), 1, + anon_sym_GT, + ACTIONS(9730), 1, + anon_sym_when, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7853), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5387), 6, + STATE(5970), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6287), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [133748] = 9, + [144041] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3375), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9732), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7868), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5388), 6, + STATE(5971), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3377), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [133789] = 10, + [144084] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8368), 1, - anon_sym_COLON, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9734), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7764), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5389), 6, + STATE(5972), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6301), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - [133832] = 12, + [144127] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3640), 1, - aux_sym_attributes_repeat1, - STATE(3692), 1, - sym_attribute_set, + ACTIONS(9647), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5454), 1, + sym_method_or_prop_defn, + STATE(6287), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6764), 3, - anon_sym_mutable, - anon_sym__, - sym_identifier, - ACTIONS(6766), 3, - aux_sym_access_modifier_token1, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5390), 6, + STATE(5973), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133879] = 16, + [144170] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8863), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9565), 1, + anon_sym_LPAREN_PIPE, + STATE(3543), 1, + sym__identifier_or_op, + STATE(4742), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5391), 6, + ACTIONS(9567), 2, + sym_op_identifier, + sym_identifier, + STATE(5974), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133934] = 11, + [144211] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, - anon_sym_COLON, - ACTIONS(8634), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - STATE(5360), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9736), 1, + anon_sym_GT, + STATE(5984), 1, + aux_sym_type_arguments_repeat1, + STATE(7788), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6265), 6, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_DASH_GT, - anon_sym_when, - STATE(5392), 6, + STATE(5975), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [133979] = 16, + [144254] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8865), 1, - anon_sym_EQ, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9738), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8360), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5393), 6, + STATE(5976), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134034] = 16, + [144297] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8867), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9740), 1, + anon_sym_GT, + STATE(5976), 1, + aux_sym_type_arguments_repeat1, + STATE(8368), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5394), 6, + STATE(5977), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134089] = 16, + [144340] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7708), 1, - anon_sym_DASH_GT, - ACTIONS(7710), 1, - anon_sym_STAR, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - ACTIONS(8869), 1, - anon_sym_RPAREN, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9647), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4912), 1, + sym_method_or_prop_defn, + STATE(6518), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5395), 6, + STATE(5978), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134144] = 9, + [144383] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4797), 1, + sym_method_or_prop_defn, + STATE(6276), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5396), 6, + STATE(5979), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(3536), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [134185] = 9, + [144426] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6439), 1, - anon_sym_COLON, + ACTIONS(9647), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5291), 1, + sym_method_or_prop_defn, + STATE(6526), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5397), 6, + STATE(5980), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - ACTIONS(6441), 8, - sym__newline, - sym__dedent, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI, - [134226] = 16, + [144469] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8368), 1, - anon_sym_COLON, - ACTIONS(8634), 1, - anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_COLON_COLON, - ACTIONS(8638), 1, - anon_sym_PIPE, - ACTIONS(8640), 1, - anon_sym_AMP, - ACTIONS(8871), 1, - anon_sym_DASH_GT, - ACTIONS(8873), 1, - anon_sym_when, - STATE(5392), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9742), 1, + sym_identifier, + ACTIONS(9744), 1, + anon_sym_member, + STATE(4912), 1, + sym_member_signature, + STATE(7019), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5398), 6, + STATE(5981), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134281] = 15, + [144512] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8883), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9746), 1, + aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5399), 6, + ACTIONS(3389), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(5982), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134333] = 15, + [144549] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4898), 1, - anon_sym_RPAREN, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7325), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5400), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(5983), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134385] = 15, + [144590] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8885), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9748), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7782), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5401), 6, + STATE(5984), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134437] = 13, + [144633] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5066), 1, - anon_sym_LBRACK_LT, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8887), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(6834), 1, - sym_attributes, + ACTIONS(9750), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5062), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5402), 7, + ACTIONS(3419), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(5985), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_definition_repeat1, - [134485] = 15, + [144670] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8890), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4597), 1, + anon_sym_LPAREN_PIPE, + STATE(3898), 1, + sym__identifier_or_op, + STATE(3905), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5403), 6, + ACTIONS(4599), 2, + sym_op_identifier, + sym_identifier, + STATE(5986), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134537] = 15, + [144711] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8892), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9752), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7412), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5404), 6, + STATE(5987), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134589] = 15, + [144754] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8894), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9754), 1, + anon_sym_GT, + STATE(6030), 1, + aux_sym_type_arguments_repeat1, + STATE(7190), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5405), 6, + STATE(5988), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134641] = 11, + [144797] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6263), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - STATE(5418), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9756), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8348), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6265), 5, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5406), 6, + STATE(5989), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134685] = 14, + [144840] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8896), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5426), 1, - aux_sym_type_definition_repeat1, - STATE(6834), 1, - sym_attributes, + ACTIONS(9758), 1, + sym_identifier, + ACTIONS(9760), 1, + anon_sym_member, + STATE(3037), 1, + sym_member_signature, + STATE(6640), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5058), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5407), 6, + STATE(5990), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134735] = 15, + [144883] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8898), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9762), 1, + anon_sym_GT, + STATE(5989), 1, + aux_sym_type_arguments_repeat1, + STATE(8373), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5408), 6, + STATE(5991), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134787] = 15, + [144926] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8900), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(4669), 1, + anon_sym_LPAREN_PIPE, + STATE(3735), 1, + sym__identifier_or_op, + STATE(3736), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5409), 6, + ACTIONS(4671), 2, + sym_op_identifier, + sym_identifier, + STATE(5992), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134839] = 9, + [144967] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(579), 1, + anon_sym_LPAREN_PIPE, + STATE(1756), 1, + sym__identifier_or_op, + STATE(1762), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6605), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, + ACTIONS(2325), 2, + sym_op_identifier, sym_identifier, - ACTIONS(6607), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5410), 6, + STATE(5993), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134879] = 15, + [145008] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8902), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9764), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7800), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5411), 6, + STATE(5994), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134931] = 15, + [145051] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8904), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5278), 1, + sym_method_or_prop_defn, + STATE(6520), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5412), 6, + STATE(5995), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [134983] = 14, + [145094] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8896), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5447), 1, - aux_sym_type_definition_repeat1, - STATE(6834), 1, - sym_attributes, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9766), 1, + anon_sym_GT, + STATE(6021), 1, + aux_sym_type_arguments_repeat1, + STATE(7407), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5048), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5413), 6, + STATE(5996), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135033] = 11, + [145137] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4493), 1, - anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(9768), 1, + sym_identifier, + ACTIONS(9770), 1, + anon_sym_member, + STATE(4797), 1, + sym_member_signature, + STATE(7132), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2937), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LT2, - anon_sym_LBRACK_RBRACK, - sym_identifier, - STATE(5414), 6, + STATE(5997), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135077] = 15, + [145180] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8906), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9772), 1, + anon_sym_GT, + STATE(6100), 1, + aux_sym_type_arguments_repeat1, + STATE(7813), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5415), 6, + STATE(5998), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135129] = 15, + [145223] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6313), 1, - anon_sym_in, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(6735), 1, + anon_sym_interface, + STATE(6023), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6553), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5416), 6, + ACTIONS(5562), 2, + sym__newline, + sym__dedent, + STATE(5999), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135181] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [145264] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9774), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_member, + STATE(5317), 1, + sym_member_signature, + STATE(6984), 1, + sym_access_modifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8614), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(8616), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5417), 6, + STATE(6000), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135221] = 10, + [145307] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6277), 1, - anon_sym_COLON, - ACTIONS(8908), 1, - anon_sym_COMMA, + ACTIONS(9758), 1, + sym_identifier, + ACTIONS(9778), 1, + anon_sym_member, + STATE(3075), 1, + sym_member_signature, + STATE(6605), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 5, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5418), 7, + STATE(6001), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_repeat_pattern_repeat1, - [135263] = 15, + [145350] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8911), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4957), 1, + sym_method_or_prop_defn, + STATE(6489), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5419), 6, + STATE(6002), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135315] = 10, + [145393] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5393), 1, + sym_method_or_prop_defn, + STATE(6306), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6301), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5420), 6, + STATE(6003), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135357] = 15, + [145436] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8913), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5317), 1, + sym_method_or_prop_defn, + STATE(6545), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5421), 6, + STATE(6004), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135409] = 10, + [145479] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9742), 1, + sym_identifier, + ACTIONS(9780), 1, + anon_sym_member, + STATE(4957), 1, + sym_member_signature, + STATE(6999), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6287), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5422), 6, + STATE(6005), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135451] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [145522] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9782), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8144), 1, + sym_type_argument_constraints, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8705), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(8707), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5423), 6, + STATE(6006), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135491] = 15, + [145565] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8915), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9784), 1, + anon_sym_GT, + STATE(5987), 1, + aux_sym_type_arguments_repeat1, + STATE(7450), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5424), 6, + STATE(6007), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135543] = 10, + [145608] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7431), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6208), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5425), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6008), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135585] = 14, + [145649] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8896), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5402), 1, - aux_sym_type_definition_repeat1, - STATE(6834), 1, - sym_attributes, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9786), 1, + anon_sym_GT, + STATE(6010), 1, + aux_sym_type_arguments_repeat1, + STATE(7761), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5048), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5426), 6, + STATE(6009), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135635] = 15, + [145692] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8917), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9788), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7760), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5427), 6, + STATE(6010), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135687] = 15, + [145735] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8919), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9790), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8306), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5428), 6, + STATE(6011), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135739] = 15, + [145778] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8921), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2808), 1, + sym_property_or_ident, + STATE(3075), 1, + sym_method_or_prop_defn, + STATE(6453), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5429), 6, + STATE(6012), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135791] = 9, + [145821] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + ACTIONS(964), 1, + anon_sym_LPAREN_PIPE, + STATE(2115), 1, + sym__identifier_or_op, + STATE(2209), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6601), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, + ACTIONS(2335), 2, + sym_op_identifier, sym_identifier, - ACTIONS(6603), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5430), 6, + STATE(6013), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135831] = 15, + [145862] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8923), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9768), 1, + sym_identifier, + ACTIONS(9792), 1, + anon_sym_member, + STATE(4818), 1, + sym_member_signature, + STATE(7146), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5431), 6, + STATE(6014), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135883] = 15, + [145905] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8925), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9794), 1, + anon_sym_GT, + STATE(5994), 1, + aux_sym_type_arguments_repeat1, + STATE(7756), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5432), 6, + STATE(6015), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [135935] = 15, + [145948] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8927), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9796), 1, + anon_sym_GT, + STATE(6011), 1, + aux_sym_type_arguments_repeat1, + STATE(8299), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5433), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [135987] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(8652), 4, - sym__inside_string_marker, - sym__escape_char, - sym__non_escape_char, - aux_sym__simple_string_char_token1, - ACTIONS(8654), 4, - sym__unicodegraph_short, - sym__unicodegraph_long, - sym__trigraph, - anon_sym_DQUOTE, - STATE(5434), 6, + STATE(6016), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136027] = 15, + [145991] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8929), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5435), 1, + sym_method_or_prop_defn, + STATE(6349), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5435), 6, + STATE(6017), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136079] = 15, + [146034] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8931), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(483), 1, + anon_sym_LPAREN_PIPE, + STATE(2252), 1, + sym__identifier_or_op, + STATE(2277), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5436), 6, + ACTIONS(1840), 2, + sym_op_identifier, + sym_identifier, + STATE(6018), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136131] = 9, + [146075] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9798), 1, + anon_sym_GT, + STATE(6022), 1, + aux_sym_type_arguments_repeat1, + STATE(8265), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6624), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(6626), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5437), 6, + STATE(6019), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136171] = 9, + [146118] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9800), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7596), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8933), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - ACTIONS(8935), 4, - anon_sym_LBRACK_LT, - anon_sym_QMARK, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5438), 6, + STATE(6020), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136211] = 15, + [146161] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8937), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9802), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7442), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5439), 6, + STATE(6021), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136263] = 14, + [146204] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9804), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8260), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8939), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5440), 6, + STATE(6022), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136313] = 15, + [146247] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8941), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9806), 1, + anon_sym_interface, + STATE(6553), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5441), 6, + ACTIONS(5550), 2, + sym__newline, + sym__dedent, + STATE(6023), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136365] = 15, + aux_sym__object_expression_inner_repeat1, + [146286] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8943), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4948), 1, + sym_method_or_prop_defn, + STATE(6460), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5442), 6, + STATE(6024), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136417] = 10, + [146329] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9774), 1, + sym_identifier, + ACTIONS(9809), 1, + anon_sym_member, + STATE(5315), 1, + sym_member_signature, + STATE(6961), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6218), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5443), 6, + STATE(6025), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136459] = 10, + [146372] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5315), 1, + sym_method_or_prop_defn, + STATE(6540), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6214), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5444), 6, + STATE(6026), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136501] = 15, + [146415] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4360), 1, - anon_sym_in, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3206), 1, + sym_method_or_prop_defn, + STATE(6457), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5445), 6, + STATE(6027), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136553] = 15, + [146458] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8945), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2792), 1, + sym_property_or_ident, + STATE(5333), 1, + sym_method_or_prop_defn, + STATE(6548), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5446), 6, + STATE(6028), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136605] = 14, + [146501] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8896), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5402), 1, - aux_sym_type_definition_repeat1, - STATE(6834), 1, - sym_attributes, + ACTIONS(9811), 1, + sym_identifier, + ACTIONS(9813), 1, + anon_sym_member, + STATE(3206), 1, + sym_member_signature, + STATE(7052), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5054), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5447), 6, + STATE(6029), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136655] = 15, + [146544] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8947), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9815), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7218), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5448), 6, + STATE(6030), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136707] = 15, + [146587] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8949), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4818), 1, + sym_method_or_prop_defn, + STATE(6397), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5449), 6, + STATE(6031), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136759] = 15, + [146630] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8951), 1, - anon_sym_RPAREN, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2808), 1, + sym_property_or_ident, + STATE(3173), 1, + sym_method_or_prop_defn, + STATE(6315), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5450), 6, + STATE(6032), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136811] = 10, + [146673] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8604), 1, - anon_sym_COLON, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6279), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_in, - STATE(5451), 6, + ACTIONS(5597), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6033), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136853] = 15, + [146708] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8953), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7318), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5452), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6034), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136905] = 15, + [146749] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8955), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4803), 1, + sym_method_or_prop_defn, + STATE(6239), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5453), 6, + STATE(6035), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [136957] = 15, + [146792] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8957), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9817), 1, + anon_sym_GT, + STATE(6039), 1, + aux_sym_type_arguments_repeat1, + STATE(7724), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5454), 6, + STATE(6036), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137009] = 15, + [146835] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8959), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9819), 1, + sym_identifier, + ACTIONS(9821), 1, + anon_sym_member, + STATE(5358), 1, + sym_member_signature, + STATE(6826), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5455), 6, + STATE(6037), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137061] = 15, + [146878] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4884), 1, - anon_sym_RPAREN, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9823), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8240), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5456), 6, + STATE(6038), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137113] = 15, + [146921] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8961), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9825), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7722), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5457), 6, + STATE(6039), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137165] = 14, + [146964] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9827), 1, + anon_sym_GT, + STATE(5970), 1, + aux_sym_type_arguments_repeat1, + STATE(7856), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4512), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5458), 6, + STATE(6040), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137215] = 15, + [147007] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8963), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5459), 6, + ACTIONS(5676), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6041), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137267] = 15, + [147042] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8875), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_PIPE, - ACTIONS(8881), 1, - anon_sym_AMP, - ACTIONS(8965), 1, - anon_sym_in, - STATE(5406), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9829), 1, + anon_sym_GT, + STATE(6046), 1, + aux_sym_type_arguments_repeat1, + STATE(8189), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5460), 6, + STATE(6042), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137319] = 14, + [147085] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(7712), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(8160), 1, - sym_identifier, - STATE(4963), 1, - aux_sym__compound_type_repeat1, - STATE(5127), 1, - sym_long_identifier, - STATE(5170), 1, - sym_type_arguments, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9831), 1, + anon_sym_GT, + STATE(6084), 1, + aux_sym_type_arguments_repeat1, + STATE(7294), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8967), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(5461), 6, + STATE(6043), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137369] = 15, + [147128] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8969), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5358), 1, + sym_method_or_prop_defn, + STATE(6257), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5462), 6, + STATE(6044), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137421] = 15, + [147171] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, - anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8971), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9647), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4946), 1, + sym_method_or_prop_defn, + STATE(6451), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5463), 6, + STATE(6045), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137473] = 15, + [147214] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8300), 1, - anon_sym_as, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(9726), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_COLON_COLON, - ACTIONS(8751), 1, - anon_sym_PIPE, - ACTIONS(8753), 1, - anon_sym_AMP, - ACTIONS(8973), 1, - anon_sym_EQ, - STATE(5242), 1, - aux_sym_repeat_pattern_repeat1, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9833), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8179), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5464), 6, + STATE(6046), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137525] = 14, + [147257] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -474498,778 +520388,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(666), 1, + ACTIONS(4814), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2056), 1, - sym_op_identifier, - ACTIONS(8975), 1, - sym_identifier, - STATE(1707), 1, + STATE(3933), 1, sym__identifier_or_op, - STATE(1756), 1, - sym_long_identifier_or_op, - STATE(1773), 1, - sym_long_identifier, - STATE(1780), 1, + STATE(3968), 1, sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5465), 6, + ACTIONS(4816), 2, + sym_op_identifier, + sym_identifier, + STATE(6047), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137574] = 14, + [147298] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5054), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8977), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5491), 1, - aux_sym_type_definition_repeat1, - STATE(6754), 1, - sym_attributes, + ACTIONS(9647), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3201), 1, + sym_method_or_prop_defn, + STATE(6411), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5466), 6, + STATE(6048), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137623] = 13, + [147341] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8981), 1, - anon_sym_default, - STATE(4664), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6520), 1, - sym_type_argument, + ACTIONS(9819), 1, + sym_identifier, + ACTIONS(9835), 1, + anon_sym_member, + STATE(5346), 1, + sym_member_signature, + STATE(6815), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5467), 6, + STATE(6049), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137670] = 14, + [147384] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8983), 1, - sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(4678), 1, - sym_union_type_case, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(5828), 1, - sym_enum_type_case, - STATE(6958), 1, - sym_attributes, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9837), 1, + anon_sym_GT, + STATE(6069), 1, + aux_sym_type_arguments_repeat1, + STATE(7883), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5468), 6, + STATE(6050), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137719] = 13, + [147427] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8985), 1, - anon_sym_default, - STATE(3668), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6413), 1, - sym_type_argument, + ACTIONS(9647), 1, + sym_identifier, + STATE(2792), 1, + sym_property_or_ident, + STATE(5364), 1, + sym_method_or_prop_defn, + STATE(6473), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5469), 6, + STATE(6051), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137766] = 13, + [147470] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8987), 1, - anon_sym_default, - STATE(4664), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6458), 1, - sym_type_argument, + ACTIONS(9647), 1, + sym_identifier, + STATE(2808), 1, + sym_property_or_ident, + STATE(3037), 1, + sym_method_or_prop_defn, + STATE(6471), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5470), 6, + STATE(6052), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137813] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [147513] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(475), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(1610), 1, - sym_op_identifier, - ACTIONS(8989), 1, - sym_identifier, - STATE(1888), 1, - sym_long_identifier, - STATE(1891), 1, - sym__identifier_or_op, - STATE(1918), 1, - sym_long_identifier_or_op, - STATE(2051), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9839), 1, + anon_sym_GT, + STATE(5971), 1, + aux_sym_type_arguments_repeat1, + STATE(7870), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5471), 6, + STATE(6053), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137862] = 13, + [147556] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8991), 1, - anon_sym_default, - STATE(3674), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6436), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9841), 1, + anon_sym_GT, + STATE(5972), 1, + aux_sym_type_arguments_repeat1, + STATE(7783), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5472), 6, + STATE(6054), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137909] = 10, + [147599] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8993), 1, - anon_sym_interface, - STATE(5651), 1, - sym_interface_implementation, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9843), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7290), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5072), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5473), 7, + STATE(6055), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [137950] = 14, + [147642] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(379), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(1822), 1, - sym_op_identifier, - ACTIONS(8996), 1, - sym_identifier, - STATE(1379), 1, - sym_long_identifier, - STATE(1451), 1, - sym_long_identifier_or_op, - STATE(1485), 1, - sym_active_pattern, - STATE(1515), 1, - sym__identifier_or_op, - ACTIONS(13), 2, + ACTIONS(9845), 1, + anon_sym_DQUOTE, + ACTIONS(9847), 1, + anon_sym_AT_DQUOTE, + ACTIONS(9849), 1, + aux_sym_compiler_directive_decl_token1, + STATE(8340), 1, + sym_verbatim_string, + STATE(8341), 1, + sym__string_literal, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5474), 6, + STATE(6056), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [137999] = 13, + [147685] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8985), 1, - anon_sym_default, - STATE(3663), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6413), 1, - sym_type_argument, + ACTIONS(9647), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5459), 1, + sym_method_or_prop_defn, + STATE(6323), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5475), 6, + STATE(6057), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138046] = 13, + [147728] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, + ACTIONS(9547), 1, anon_sym__, - ACTIONS(8998), 1, - anon_sym_default, - STATE(3394), 1, - sym_constraint, - STATE(5587), 1, + STATE(6105), 1, sym__static_type_identifier, - STATE(6120), 1, + STATE(7185), 1, sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5476), 6, + STATE(6058), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138093] = 13, + [147769] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8685), 1, - sym_identifier, - STATE(4663), 1, - sym_long_identifier, - STATE(5587), 1, - sym__static_type_identifier, - STATE(7596), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9851), 1, + anon_sym_GT, + STATE(6038), 1, + aux_sym_type_arguments_repeat1, + STATE(8207), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5477), 6, + STATE(6059), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138140] = 13, + [147812] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8987), 1, - anon_sym_default, - STATE(5587), 1, - sym__static_type_identifier, - STATE(5840), 1, - sym_constraint, - STATE(6458), 1, - sym_type_argument, + ACTIONS(9811), 1, + sym_identifier, + ACTIONS(9853), 1, + anon_sym_member, + STATE(3201), 1, + sym_member_signature, + STATE(7075), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5478), 6, + STATE(6060), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138187] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [147855] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(9565), 1, + anon_sym_LPAREN_PIPE, + STATE(4742), 1, + sym_active_pattern, + STATE(8004), 1, + sym__identifier_or_op, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8705), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(8707), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5479), 6, + ACTIONS(9567), 2, + sym_op_identifier, + sym_identifier, + STATE(6061), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138226] = 13, + [147896] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9000), 1, - anon_sym_default, - STATE(4664), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6572), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9855), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7777), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5480), 6, + STATE(6062), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138273] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [147939] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(99), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(101), 1, - sym_op_identifier, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(9002), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, sym_identifier, - STATE(1204), 1, - sym_active_pattern, - STATE(1215), 1, - sym_long_identifier, - STATE(1220), 1, - sym__identifier_or_op, - STATE(1352), 1, - sym_long_identifier_or_op, + STATE(2815), 1, + sym_property_or_ident, + STATE(4807), 1, + sym_method_or_prop_defn, + STATE(6318), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5481), 6, + STATE(6063), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138322] = 13, + [147982] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5306), 1, - anon_sym__, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9004), 1, - sym_identifier, - STATE(4623), 1, - sym_long_identifier, - STATE(5587), 1, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, sym__static_type_identifier, - STATE(7353), 1, + STATE(7485), 1, sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5482), 6, + STATE(6064), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138369] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148023] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1294), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2180), 1, - sym_op_identifier, - ACTIONS(9006), 1, - sym_identifier, - STATE(2192), 1, - sym_long_identifier, - STATE(2202), 1, - sym_active_pattern, - STATE(2310), 1, - sym_long_identifier_or_op, - STATE(2354), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9857), 1, + anon_sym_GT, + STATE(6066), 1, + aux_sym_type_arguments_repeat1, + STATE(7692), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5483), 6, + STATE(6065), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138418] = 14, + [148066] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(33), 1, - anon_sym_let, - ACTIONS(35), 1, - anon_sym_let_BANG, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9008), 1, - anon_sym_module, - ACTIONS(9010), 1, - anon_sym_type, - ACTIONS(9012), 1, - anon_sym_do, - STATE(2967), 1, - sym_do, - STATE(2969), 1, - sym_function_or_value_defn, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9859), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7684), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5484), 6, + STATE(6066), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138467] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [148109] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(4555), 1, + anon_sym_LPAREN_PIPE, + STATE(3820), 1, + sym_active_pattern, + STATE(3855), 1, + sym__identifier_or_op, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9016), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(9014), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5485), 6, + ACTIONS(4557), 2, + sym_op_identifier, + sym_identifier, + STATE(6067), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138506] = 14, + [148150] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5048), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8977), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5466), 1, - aux_sym_type_definition_repeat1, - STATE(6754), 1, - sym_attributes, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9861), 1, + anon_sym_GT, + STATE(6071), 1, + aux_sym_type_arguments_repeat1, + STATE(8133), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5486), 6, + STATE(6068), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138555] = 13, + [148193] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9018), 1, - anon_sym_default, - STATE(5132), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6485), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9863), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7931), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5487), 6, + STATE(6069), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138602] = 14, + [148236] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -475278,303 +521096,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(914), 1, + ACTIONS(1384), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2156), 1, - sym_op_identifier, - ACTIONS(9020), 1, - sym_identifier, - STATE(1922), 1, + STATE(2457), 1, sym_active_pattern, - STATE(1954), 1, - sym_long_identifier_or_op, - STATE(2029), 1, + STATE(2462), 1, sym__identifier_or_op, - STATE(2082), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5488), 6, + ACTIONS(2427), 2, + sym_op_identifier, + sym_identifier, + STATE(6070), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138651] = 13, + [148277] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9022), 1, - anon_sym_default, - STATE(5136), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6632), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9865), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8129), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5489), 6, + STATE(6071), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138698] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148320] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(569), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2114), 1, - sym_op_identifier, - ACTIONS(9024), 1, - sym_identifier, - STATE(1650), 1, - sym_long_identifier_or_op, - STATE(1791), 1, - sym_active_pattern, - STATE(1800), 1, - sym__identifier_or_op, - STATE(1802), 1, - sym_long_identifier, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9867), 1, + anon_sym_GT, + STATE(6062), 1, + aux_sym_type_arguments_repeat1, + STATE(7889), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5490), 6, + STATE(6072), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138747] = 13, + [148363] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(99), 1, + anon_sym_LPAREN_PIPE, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5062), 1, - anon_sym_POUNDendif, - ACTIONS(5066), 1, - anon_sym_LBRACK_LT, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9026), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(6754), 1, - sym_attributes, + STATE(1300), 1, + sym_active_pattern, + STATE(1307), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5491), 7, + ACTIONS(101), 2, + sym_op_identifier, + sym_identifier, + STATE(6073), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_definition_repeat1, - [138794] = 14, + [148404] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9029), 1, - anon_sym_module, - ACTIONS(9031), 1, - anon_sym_type, - ACTIONS(9033), 1, - anon_sym_do, - ACTIONS(9035), 1, - anon_sym_let, - ACTIONS(9037), 1, - anon_sym_let_BANG, - STATE(7736), 1, - sym_function_or_value_defn, - STATE(7737), 1, - sym_do, + ACTIONS(808), 1, + anon_sym_LPAREN_PIPE, + STATE(2173), 1, + sym_active_pattern, + STATE(2228), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5492), 6, + ACTIONS(2375), 2, + sym_op_identifier, + sym_identifier, + STATE(6074), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138843] = 14, + [148445] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(33), 1, - anon_sym_let, - ACTIONS(35), 1, - anon_sym_let_BANG, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9010), 1, - anon_sym_type, - ACTIONS(9012), 1, - anon_sym_do, - ACTIONS(9039), 1, - anon_sym_module, - STATE(2967), 1, - sym_do, - STATE(2969), 1, - sym_function_or_value_defn, + ACTIONS(9869), 1, + sym_identifier, + ACTIONS(9871), 1, + anon_sym_member, + STATE(5435), 1, + sym_member_signature, + STATE(6880), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5493), 6, + STATE(6075), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138892] = 11, + [148488] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6684), 1, - anon_sym_interface, - STATE(5473), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5651), 1, - sym_interface_implementation, + ACTIONS(9873), 1, + sym_identifier, + ACTIONS(9875), 1, + anon_sym_member, + STATE(5347), 1, + sym_member_signature, + STATE(7082), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5494), 6, + STATE(6076), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138935] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [148531] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(1192), 1, + anon_sym_LPAREN_PIPE, + STATE(2717), 1, + sym_active_pattern, + STATE(2744), 1, + sym__identifier_or_op, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9043), 3, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - anon_sym_DQUOTEB, - ACTIONS(9041), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5495), 6, + ACTIONS(2265), 2, + sym_op_identifier, + sym_identifier, + STATE(6077), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [138974] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148572] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(824), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2102), 1, - sym_op_identifier, - ACTIONS(9045), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, sym_identifier, - STATE(1923), 1, - sym_long_identifier, - STATE(1927), 1, - sym_long_identifier_or_op, - STATE(2015), 1, - sym__identifier_or_op, - STATE(2040), 1, - sym_active_pattern, + STATE(2808), 1, + sym_property_or_ident, + STATE(3130), 1, + sym_method_or_prop_defn, + STATE(6264), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5496), 6, + STATE(6078), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139023] = 14, + [148615] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -475583,242 +521371,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(209), 1, + ACTIONS(379), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2080), 1, - sym_op_identifier, - ACTIONS(9047), 1, - sym_identifier, - STATE(1030), 1, - sym_long_identifier, - STATE(1040), 1, + STATE(1466), 1, sym_active_pattern, - STATE(1041), 1, + STATE(1503), 1, sym__identifier_or_op, - STATE(1087), 1, - sym_long_identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5497), 6, + ACTIONS(2053), 2, + sym_op_identifier, + sym_identifier, + STATE(6079), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139072] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148656] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1194), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(2036), 1, - sym_op_identifier, - ACTIONS(9049), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, sym_identifier, - STATE(2158), 1, - sym__identifier_or_op, - STATE(2181), 1, - sym_long_identifier, - STATE(2209), 1, - sym_long_identifier_or_op, - STATE(2237), 1, - sym_active_pattern, + STATE(2792), 1, + sym_property_or_ident, + STATE(5347), 1, + sym_method_or_prop_defn, + STATE(6458), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5498), 6, + STATE(6080), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139121] = 14, + [148699] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5048), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8977), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5491), 1, - aux_sym_type_definition_repeat1, - STATE(6754), 1, - sym_attributes, + ACTIONS(9869), 1, + sym_identifier, + ACTIONS(9877), 1, + anon_sym_member, + STATE(5414), 1, + sym_member_signature, + STATE(6900), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5499), 6, + STATE(6081), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139170] = 14, + [148742] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1810), 1, - anon_sym_let, - ACTIONS(1812), 1, - anon_sym_let_BANG, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9051), 1, - anon_sym_module, - ACTIONS(9053), 1, - anon_sym_type, - ACTIONS(9055), 1, - anon_sym_do, - STATE(3057), 1, - sym_function_or_value_defn, - STATE(3067), 1, - sym_do, + ACTIONS(9647), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5414), 1, + sym_method_or_prop_defn, + STATE(6240), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5500), 6, + STATE(6082), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139219] = 14, + [148785] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(25), 1, - anon_sym_LBRACK_LT, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5058), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8977), 1, - anon_sym_and, - STATE(3899), 1, - aux_sym_attributes_repeat1, - STATE(4327), 1, - sym_attribute_set, - STATE(5499), 1, - aux_sym_type_definition_repeat1, - STATE(6754), 1, - sym_attributes, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9879), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7961), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5501), 6, + STATE(6083), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139268] = 13, + [148828] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9057), 1, - anon_sym_default, - STATE(4959), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6585), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9881), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7267), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5502), 6, + STATE(6084), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139315] = 14, + [148871] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9059), 1, - anon_sym_module, - ACTIONS(9061), 1, - anon_sym_type, - ACTIONS(9063), 1, - anon_sym_do, - ACTIONS(9065), 1, - anon_sym_let, - ACTIONS(9067), 1, - anon_sym_let_BANG, - STATE(6576), 1, - sym_function_or_value_defn, - STATE(6579), 1, - sym_do, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9883), 1, + anon_sym_GT, + STATE(6006), 1, + aux_sym_type_arguments_repeat1, + STATE(8218), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5503), 6, + STATE(6085), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139364] = 14, + [148914] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, @@ -475827,68129 +521587,67452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1064), 1, + ACTIONS(674), 1, anon_sym_LPAREN_PIPE, - ACTIONS(2194), 1, - sym_op_identifier, - ACTIONS(9069), 1, - sym_identifier, - STATE(2251), 1, - sym_active_pattern, - STATE(2318), 1, - sym_long_identifier_or_op, - STATE(2350), 1, - sym_long_identifier, - STATE(2351), 1, + STATE(1809), 1, sym__identifier_or_op, + STATE(1849), 1, + sym_active_pattern, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5504), 6, + ACTIONS(2283), 2, + sym_op_identifier, + sym_identifier, + STATE(6086), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139413] = 13, + [148955] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, + ACTIONS(8744), 1, anon_sym__, - ACTIONS(8991), 1, - anon_sym_default, - STATE(3668), 1, - sym_constraint, - STATE(5587), 1, + STATE(4986), 1, sym__static_type_identifier, - STATE(6436), 1, + STATE(6508), 1, sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(8746), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5505), 6, + STATE(6087), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139460] = 14, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [148996] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(9071), 1, - sym_identifier, - ACTIONS(9073), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(9075), 1, - sym_op_identifier, - STATE(3163), 1, - sym__identifier_or_op, - STATE(4363), 1, - sym_active_pattern, - STATE(5578), 1, - sym_access_modifier, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5506), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [139509] = 13, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9022), 1, - anon_sym_default, - STATE(4664), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6632), 1, - sym_type_argument, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9647), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3197), 1, + sym_method_or_prop_defn, + STATE(6381), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5507), 6, + STATE(6088), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139556] = 13, + [149039] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9000), 1, - anon_sym_default, - STATE(4972), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6572), 1, - sym_type_argument, + ACTIONS(9647), 1, + sym_identifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5332), 1, + sym_method_or_prop_defn, + STATE(6333), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5508), 6, + STATE(6089), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139603] = 13, + [149082] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(8998), 1, - anon_sym_default, - STATE(3523), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6120), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9885), 1, + anon_sym_GT, + STATE(6055), 1, + aux_sym_type_arguments_repeat1, + STATE(7278), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5509), 6, + STATE(6090), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139650] = 13, + [149125] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9057), 1, - anon_sym_default, - STATE(4664), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6585), 1, - sym_type_argument, + ACTIONS(1610), 1, + anon_sym_LPAREN_PIPE, + STATE(2390), 1, + sym_active_pattern, + STATE(2624), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5510), 6, + ACTIONS(2385), 2, + sym_op_identifier, + sym_identifier, + STATE(6091), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139697] = 13, + [149166] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - ACTIONS(9018), 1, - anon_sym_default, - STATE(4952), 1, - sym_constraint, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6485), 1, - sym_type_argument, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9887), 1, + anon_sym_GT, + STATE(6083), 1, + aux_sym_type_arguments_repeat1, + STATE(7963), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5511), 6, + STATE(6092), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139744] = 13, + [149209] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(9077), 1, - anon_sym_do, - ACTIONS(9079), 1, - anon_sym_member, - ACTIONS(9081), 1, - anon_sym_val, - STATE(4492), 1, - sym_function_or_value_defn, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9889), 1, + anon_sym_GT, + STATE(6098), 1, + aux_sym_type_arguments_repeat1, + STATE(7661), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5512), 6, + STATE(6093), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139790] = 13, + [149252] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9085), 1, - anon_sym_inline, - STATE(2425), 1, - sym_property_or_ident, - STATE(2676), 1, - sym_method_or_prop_defn, - STATE(5956), 1, - sym_access_modifier, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(8099), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5513), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6094), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139836] = 13, + [149293] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9087), 1, - anon_sym_inline, - STATE(2443), 1, - sym_property_or_ident, - STATE(2820), 1, - sym_method_or_prop_defn, - STATE(5917), 1, - sym_access_modifier, + ACTIONS(207), 1, + anon_sym_LPAREN_PIPE, + STATE(1058), 1, + sym_active_pattern, + STATE(1094), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5514), 6, + ACTIONS(2305), 2, + sym_op_identifier, + sym_identifier, + STATE(6095), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139882] = 13, + [149334] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9089), 1, - anon_sym_inline, - STATE(2461), 1, - sym_property_or_ident, - STATE(5035), 1, - sym_method_or_prop_defn, - STATE(6103), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9891), 1, + anon_sym_GT, + STATE(6097), 1, + aux_sym_type_arguments_repeat1, + STATE(8089), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5515), 6, + STATE(6096), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139928] = 13, + [149377] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5854), 1, - anon_sym_let, - ACTIONS(5856), 1, - anon_sym_let_BANG, - ACTIONS(7645), 1, - anon_sym_do, - ACTIONS(7651), 1, - anon_sym_member, - ACTIONS(7655), 1, - anon_sym_val, - STATE(4433), 1, - sym_function_or_value_defn, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9893), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8083), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5516), 6, + STATE(6097), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [139974] = 13, + [149420] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9091), 1, - anon_sym_inline, - STATE(2439), 1, - sym_property_or_ident, - STATE(4508), 1, - sym_method_or_prop_defn, - STATE(6032), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9895), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7660), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5517), 6, + STATE(6098), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140020] = 13, + [149463] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9093), 1, - anon_sym_inline, - STATE(2461), 1, - sym_property_or_ident, - STATE(5093), 1, - sym_method_or_prop_defn, - STATE(6118), 1, - sym_access_modifier, + ACTIONS(9565), 1, + anon_sym_LPAREN_PIPE, + STATE(4742), 1, + sym_active_pattern, + STATE(8001), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5518), 6, + ACTIONS(9567), 2, + sym_op_identifier, + sym_identifier, + STATE(6099), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140066] = 13, + [149504] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9095), 1, - anon_sym_inline, - STATE(2443), 1, - sym_property_or_ident, - STATE(2827), 1, - sym_method_or_prop_defn, - STATE(5904), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9897), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7808), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5519), 6, + STATE(6100), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140112] = 13, + [149547] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9097), 1, - anon_sym_inline, - STATE(2439), 1, - sym_property_or_ident, - STATE(4550), 1, - sym_method_or_prop_defn, - STATE(6040), 1, - sym_access_modifier, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7527), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5520), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6101), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140158] = 13, + [149588] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9099), 1, - anon_sym_inline, - STATE(2459), 1, - sym_property_or_ident, - STATE(4937), 1, - sym_method_or_prop_defn, - STATE(5969), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9899), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8082), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5521), 6, + STATE(6102), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140204] = 13, + [149631] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9101), 1, - anon_sym_inline, - STATE(2425), 1, - sym_property_or_ident, - STATE(2790), 1, - sym_method_or_prop_defn, - STATE(5887), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9901), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7576), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5522), 6, + STATE(6103), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140250] = 13, + [149674] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9103), 1, - anon_sym_inline, - STATE(2443), 1, + STATE(2784), 1, sym_property_or_ident, - STATE(2819), 1, + STATE(3195), 1, sym_method_or_prop_defn, - STATE(5898), 1, + STATE(6352), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5523), 6, + STATE(6104), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140296] = 13, + [149717] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3244), 1, + anon_sym_COLON_GT, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(7666), 1, - anon_sym_do, - ACTIONS(7672), 1, - anon_sym_member, - ACTIONS(7676), 1, - anon_sym_val, - STATE(6467), 1, - sym_function_or_value_defn, + ACTIONS(8186), 1, + anon_sym_or, + STATE(5110), 1, + aux_sym_type_argument_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5524), 6, + ACTIONS(3242), 2, + anon_sym_COLON, + sym_identifier, + STATE(6105), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140342] = 13, + [149758] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9105), 1, - anon_sym_inline, - STATE(2459), 1, - sym_property_or_ident, - STATE(4974), 1, - sym_method_or_prop_defn, - STATE(5948), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9903), 1, + anon_sym_GT, + STATE(6103), 1, + aux_sym_type_arguments_repeat1, + STATE(7577), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5525), 6, + STATE(6106), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140388] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, + [149801] = 11, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(1100), 1, + anon_sym_LPAREN_PIPE, + STATE(2640), 1, + sym_active_pattern, + STATE(2668), 1, + sym__identifier_or_op, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8705), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(8707), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5526), 6, + ACTIONS(2395), 2, + sym_op_identifier, + sym_identifier, + STATE(6107), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140426] = 13, + [149842] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9107), 1, - anon_sym_inline, - STATE(2425), 1, - sym_property_or_ident, - STATE(2720), 1, - sym_method_or_prop_defn, - STATE(5818), 1, - sym_access_modifier, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7252), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5527), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6108), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140472] = 13, + [149883] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6035), 1, - anon_sym_let, - ACTIONS(6037), 1, - anon_sym_let_BANG, - ACTIONS(7628), 1, - anon_sym_do, - ACTIONS(7634), 1, - anon_sym_member, - ACTIONS(7638), 1, - anon_sym_val, - STATE(4505), 1, - sym_function_or_value_defn, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9905), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7587), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5528), 6, + STATE(6109), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140518] = 13, + [149926] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9109), 1, - anon_sym_inline, - STATE(2456), 1, - sym_property_or_ident, - STATE(4849), 1, - sym_method_or_prop_defn, - STATE(6025), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9907), 1, + anon_sym_GT, + STATE(6113), 1, + aux_sym_type_arguments_repeat1, + STATE(8027), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5529), 6, + STATE(6110), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140564] = 13, + [149969] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9111), 1, - anon_sym_inline, - STATE(2456), 1, - sym_property_or_ident, - STATE(4857), 1, - sym_method_or_prop_defn, - STATE(6001), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9909), 1, + anon_sym_GT, + STATE(6109), 1, + aux_sym_type_arguments_repeat1, + STATE(7589), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5530), 6, + STATE(6111), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140610] = 13, + [150012] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9873), 1, sym_identifier, - ACTIONS(9113), 1, - anon_sym_inline, - STATE(2461), 1, - sym_property_or_ident, - STATE(5143), 1, - sym_method_or_prop_defn, - STATE(6098), 1, + ACTIONS(9911), 1, + anon_sym_member, + STATE(5354), 1, + sym_member_signature, + STATE(7094), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5531), 6, + STATE(6112), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140656] = 13, + [150055] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7582), 1, - anon_sym_inline, - ACTIONS(9083), 1, - sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4992), 1, - sym_method_or_prop_defn, - STATE(5892), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9913), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(8010), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5532), 6, + STATE(6113), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140702] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [150098] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(9016), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9014), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5533), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [140740] = 9, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9043), 2, - sym__inside_string_marker, - aux_sym__simple_string_char_token1, - ACTIONS(9041), 4, - sym__non_escape_char, - anon_sym_BSLASH, - aux_sym__verbatim_string_char_token1, - anon_sym_DQUOTE2, - STATE(5534), 6, + ACTIONS(5591), 5, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6114), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140778] = 13, + [150133] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9115), 1, - anon_sym_inline, - STATE(2436), 1, - sym_property_or_ident, - STATE(4486), 1, - sym_method_or_prop_defn, - STATE(5825), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9915), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7598), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5535), 6, + STATE(6115), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140824] = 9, + [150176] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9917), 1, + anon_sym_GT, + STATE(6115), 1, + aux_sym_type_arguments_repeat1, + STATE(7607), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9119), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - ACTIONS(9117), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5536), 6, + STATE(6116), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140862] = 10, + [150219] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9121), 1, - anon_sym_interface, - STATE(5793), 1, - sym_interface_implementation, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9919), 1, + anon_sym_GT, + STATE(6125), 1, + aux_sym_type_arguments_repeat1, + STATE(7639), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5072), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5537), 7, + STATE(6117), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [140902] = 13, + [150262] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9124), 1, - anon_sym_inline, - STATE(2447), 1, + STATE(2792), 1, sym_property_or_ident, - STATE(4939), 1, + STATE(5354), 1, sym_method_or_prop_defn, - STATE(6009), 1, + STATE(6421), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5538), 6, + STATE(6118), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140948] = 13, + [150305] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9126), 1, - anon_sym_inline, - STATE(2447), 1, - sym_property_or_ident, - STATE(4957), 1, - sym_method_or_prop_defn, - STATE(6033), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9921), 1, + anon_sym_GT, + STATE(6102), 1, + aux_sym_type_arguments_repeat1, + STATE(8055), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5539), 6, + STATE(6119), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [140994] = 11, + [150348] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6702), 1, - anon_sym_interface, - STATE(5537), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5793), 1, - sym_interface_implementation, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9923), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7625), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5540), 6, + STATE(6120), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141036] = 13, + [150391] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9128), 1, - anon_sym_inline, - STATE(2439), 1, - sym_property_or_ident, - STATE(4520), 1, - sym_method_or_prop_defn, - STATE(5998), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9925), 1, + anon_sym_GT, + STATE(6120), 1, + aux_sym_type_arguments_repeat1, + STATE(7504), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5541), 6, + STATE(6121), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141082] = 13, + [150434] = 11, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4234), 1, - anon_sym_LBRACK_LT, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9130), 1, - sym_identifier, - STATE(3692), 1, - sym_attribute_set, - STATE(4770), 1, - sym_union_type_case, - STATE(5390), 1, - aux_sym_attributes_repeat1, - STATE(6958), 1, - sym_attributes, + ACTIONS(1282), 1, + anon_sym_LPAREN_PIPE, + STATE(2363), 1, + sym_active_pattern, + STATE(2650), 1, + sym__identifier_or_op, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5542), 6, + ACTIONS(2411), 2, + sym_op_identifier, + sym_identifier, + STATE(6122), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141128] = 9, + [150475] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9547), 1, + anon_sym__, + STATE(6105), 1, + sym__static_type_identifier, + STATE(7377), 1, + sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9134), 2, + ACTIONS(5790), 2, anon_sym_CARET, anon_sym_SQUOTE, - ACTIONS(9132), 4, - anon_sym_LPAREN, - anon_sym__, - anon_sym_POUND, - sym_identifier, - STATE(5543), 6, + STATE(6123), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141166] = 13, + [150516] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9136), 1, - anon_sym_inline, - STATE(2436), 1, - sym_property_or_ident, - STATE(4399), 1, - sym_method_or_prop_defn, - STATE(5814), 1, - sym_access_modifier, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9927), 1, + anon_sym_GT, + STATE(6020), 1, + aux_sym_type_arguments_repeat1, + STATE(7637), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5544), 6, + STATE(6124), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141212] = 13, + [150559] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6035), 1, - anon_sym_let, - ACTIONS(6037), 1, - anon_sym_let_BANG, - ACTIONS(9138), 1, - anon_sym_do, - ACTIONS(9140), 1, - anon_sym_member, - ACTIONS(9142), 1, - anon_sym_val, - STATE(4552), 1, - sym_function_or_value_defn, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9730), 1, + anon_sym_when, + ACTIONS(9929), 1, + anon_sym_GT, + STATE(6144), 1, + aux_sym_type_arguments_repeat1, + STATE(7668), 1, + sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5545), 6, + STATE(6125), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141258] = 13, + [150602] = 12, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9647), 1, sym_identifier, - ACTIONS(9144), 1, - anon_sym_inline, - STATE(2436), 1, + STATE(2794), 1, sym_property_or_ident, - STATE(4429), 1, + STATE(5346), 1, sym_method_or_prop_defn, - STATE(5847), 1, + STATE(6286), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5546), 6, + STATE(6126), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141304] = 13, + [150645] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5477), 1, - anon_sym_let, - ACTIONS(5479), 1, - anon_sym_let_BANG, - ACTIONS(9146), 1, - anon_sym_do, - ACTIONS(9148), 1, - anon_sym_member, - ACTIONS(9150), 1, - anon_sym_val, - STATE(6567), 1, - sym_function_or_value_defn, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(9931), 1, + sym__dedent, + STATE(6199), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5547), 6, + STATE(6127), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141350] = 13, + [150685] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9152), 1, - anon_sym_inline, - STATE(2447), 1, - sym_property_or_ident, - STATE(4944), 1, - sym_method_or_prop_defn, - STATE(6027), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5548), 6, + ACTIONS(5730), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6128), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141396] = 13, + [150719] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - ACTIONS(9154), 1, - anon_sym_inline, - STATE(2456), 1, - sym_property_or_ident, - STATE(4879), 1, - sym_method_or_prop_defn, - STATE(5986), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5549), 6, + ACTIONS(5747), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6129), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141442] = 12, + [150753] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9158), 1, - anon_sym_GT, - ACTIONS(9160), 1, - anon_sym_when, - STATE(5603), 1, - aux_sym_type_arguments_repeat1, - STATE(7158), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(8308), 1, + sym_long_identifier, + STATE(8309), 1, + sym_field_initializers, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5550), 6, + STATE(6130), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141485] = 12, + [150793] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9162), 1, - sym_identifier, - ACTIONS(9164), 1, - anon_sym_member, - STATE(4992), 1, - sym_member_signature, - STATE(6342), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5551), 6, + ACTIONS(5772), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6131), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141528] = 12, + [150827] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9935), 1, sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5130), 1, - sym_method_or_prop_defn, - STATE(6093), 1, + ACTIONS(9937), 1, + anon_sym_mutable, + STATE(7965), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5552), 6, + STATE(6132), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141571] = 12, + [150867] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9166), 1, - sym_identifier, - ACTIONS(9168), 1, - anon_sym_member, - STATE(4939), 1, - sym_member_signature, - STATE(6659), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5553), 6, + ACTIONS(5751), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6133), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141614] = 12, + [150901] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9170), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7607), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5554), 6, + ACTIONS(5768), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6134), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141657] = 12, + [150935] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9172), 1, - anon_sym_GT, - STATE(5556), 1, - aux_sym_type_arguments_repeat1, - STATE(6980), 1, - sym_type_argument_constraints, + ACTIONS(9939), 1, + sym_identifier, + ACTIONS(9941), 1, + anon_sym_mutable, + STATE(8045), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5555), 6, + STATE(6135), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141700] = 12, + [150975] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9174), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6975), 1, - sym_type_argument_constraints, + ACTIONS(9943), 1, + sym_identifier, + ACTIONS(9945), 1, + anon_sym_mutable, + STATE(7831), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5556), 6, + STATE(6136), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141743] = 12, + [151015] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3406), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9176), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7066), 1, - sym_type_argument_constraints, + ACTIONS(9947), 1, + anon_sym_PIPE, + ACTIONS(9949), 1, + sym__newline, + STATE(6208), 1, + aux_sym_rules_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5557), 6, + STATE(6137), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141786] = 12, + [151055] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4440), 1, - sym_method_or_prop_defn, - STATE(5874), 1, - sym_access_modifier, + ACTIONS(9951), 1, + anon_sym_new, + ACTIONS(9953), 1, + anon_sym_static, + ACTIONS(9955), 1, + anon_sym_member, + STATE(7345), 1, + sym_trait_member_constraint, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5558), 6, + STATE(6138), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141829] = 12, + [151095] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4524), 1, - sym_method_or_prop_defn, - STATE(5960), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5559), 6, + ACTIONS(5562), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6139), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141872] = 11, + [151129] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6864), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5560), 6, + ACTIONS(5684), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6140), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141913] = 11, + [151163] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6977), 1, - sym_type_argument, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7548), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5561), 6, + STATE(6141), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141954] = 12, + [151203] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9178), 1, - anon_sym_GT, - STATE(5568), 1, - aux_sym_type_arguments_repeat1, - STATE(6968), 1, - sym_type_argument_constraints, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + anon_sym_mutable, + STATE(7973), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5562), 6, + STATE(6142), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [141997] = 12, + [151243] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9180), 1, - anon_sym_GT, - STATE(5557), 1, - aux_sym_type_arguments_repeat1, - STATE(7068), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7405), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5563), 6, + STATE(6143), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142040] = 12, + [151283] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, + ACTIONS(9961), 1, anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9182), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7721), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5564), 6, + ACTIONS(9964), 2, + anon_sym_GT, + anon_sym_when, + STATE(6144), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142083] = 12, + aux_sym_type_arguments_repeat1, + [151319] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9966), 1, sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4879), 1, - sym_method_or_prop_defn, - STATE(5986), 1, + ACTIONS(9968), 1, + anon_sym_mutable, + STATE(7855), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5565), 6, + STATE(6145), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142126] = 12, + [151359] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9184), 1, - anon_sym_GT, - STATE(5695), 1, - aux_sym_type_arguments_repeat1, - STATE(7492), 1, - sym_type_argument_constraints, + ACTIONS(9970), 1, + sym_identifier, + ACTIONS(9972), 1, + anon_sym_mutable, + STATE(7846), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5566), 6, + STATE(6146), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142169] = 12, + [151399] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9186), 1, - anon_sym_GT, - STATE(5586), 1, - aux_sym_type_arguments_repeat1, - STATE(6707), 1, - sym_type_argument_constraints, + ACTIONS(9811), 1, + sym_identifier, + STATE(3197), 1, + sym_member_signature, + STATE(7088), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5567), 6, + STATE(6147), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142212] = 12, + [151439] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9188), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6963), 1, - sym_type_argument_constraints, + ACTIONS(9974), 1, + sym_identifier, + ACTIONS(9976), 1, + anon_sym_mutable, + STATE(8040), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5568), 6, + STATE(6148), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142255] = 12, + [151479] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9190), 1, - anon_sym_GT, - STATE(5580), 1, - aux_sym_type_arguments_repeat1, - STATE(6949), 1, - sym_type_argument_constraints, + ACTIONS(9978), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5569), 6, + ACTIONS(5658), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6149), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142298] = 12, + aux_sym__function_or_value_defns_repeat1, + [151515] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4944), 1, - sym_method_or_prop_defn, - STATE(6027), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5570), 6, + ACTIONS(5591), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + STATE(6150), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142341] = 12, + [151549] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9192), 1, - anon_sym_GT, - STATE(5554), 1, - aux_sym_type_arguments_repeat1, - STATE(7615), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7214), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5571), 6, + STATE(6151), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142384] = 12, + [151589] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9166), 1, + ACTIONS(9869), 1, sym_identifier, - ACTIONS(9194), 1, - anon_sym_member, - STATE(4944), 1, + STATE(5414), 1, sym_member_signature, - STATE(6623), 1, + STATE(6900), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5572), 6, + STATE(6152), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142427] = 12, + [151629] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9196), 1, - anon_sym_GT, - STATE(5564), 1, - aux_sym_type_arguments_repeat1, - STATE(7728), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7401), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(6153), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [151669] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9981), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5573), 6, + ACTIONS(5658), 2, + sym__newline, + sym__dedent, + STATE(6154), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142470] = 12, + aux_sym__function_or_value_defns_repeat1, + [151705] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9984), 1, sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4429), 1, - sym_method_or_prop_defn, - STATE(5847), 1, + STATE(410), 1, + sym_long_identifier, + STATE(6597), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5574), 6, + STATE(6155), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142513] = 12, + [151745] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9198), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6862), 1, - sym_type_argument_constraints, + ACTIONS(9986), 1, + anon_sym_and, + STATE(6160), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5575), 6, + ACTIONS(5649), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6156), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142556] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [151783] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(9073), 1, - anon_sym_LPAREN_PIPE, - STATE(4363), 1, - sym_active_pattern, - STATE(6731), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7586), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9075), 2, - sym_op_identifier, - sym_identifier, - STATE(5576), 6, + STATE(6157), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142597] = 12, + [151823] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9873), 1, sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2690), 1, - sym_method_or_prop_defn, - STATE(5932), 1, + STATE(5347), 1, + sym_member_signature, + STATE(7082), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5577), 6, + STATE(6158), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142640] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [151863] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(9073), 1, - anon_sym_LPAREN_PIPE, - STATE(3162), 1, - sym__identifier_or_op, - STATE(4363), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9988), 1, + anon_sym_and, + STATE(6154), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9075), 2, - sym_op_identifier, - sym_identifier, - STATE(5578), 6, + ACTIONS(5672), 2, + sym__newline, + sym__dedent, + STATE(6159), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142681] = 12, + [151901] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9200), 1, - anon_sym_GT, - STATE(5628), 1, - aux_sym_type_arguments_repeat1, - STATE(7208), 1, - sym_type_argument_constraints, + ACTIONS(9986), 1, + anon_sym_and, + STATE(6149), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5579), 6, + ACTIONS(5672), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6160), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142724] = 12, + [151939] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9202), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6945), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7508), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5580), 6, + STATE(6161), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142767] = 12, + [151979] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9204), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7095), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5581), 6, + ACTIONS(5597), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + STATE(6162), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142810] = 12, + [152013] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9206), 1, - anon_sym_GT, - STATE(5581), 1, - aux_sym_type_arguments_repeat1, - STATE(7096), 1, - sym_type_argument_constraints, + ACTIONS(9988), 1, + anon_sym_and, + STATE(6159), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5582), 6, + ACTIONS(5649), 2, + sym__newline, + sym__dedent, + STATE(6163), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142853] = 12, + [152051] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9208), 1, + ACTIONS(9990), 1, sym_identifier, - ACTIONS(9210), 1, - anon_sym_member, - STATE(2676), 1, - sym_member_signature, - STATE(6295), 1, + ACTIONS(9992), 1, + anon_sym_mutable, + STATE(8065), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5583), 6, + STATE(6164), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142896] = 11, + [152091] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(7031), 1, - sym_type_argument, + ACTIONS(9994), 1, + sym_identifier, + ACTIONS(9996), 1, + anon_sym_mutable, + STATE(7921), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5584), 6, + STATE(6165), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142937] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [152131] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(9073), 1, - anon_sym_LPAREN_PIPE, - STATE(4363), 1, - sym_active_pattern, - STATE(6744), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9075), 2, - sym_op_identifier, - sym_identifier, - STATE(5585), 6, + ACTIONS(5705), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6166), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [142978] = 12, + [152165] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9212), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6762), 1, - sym_type_argument_constraints, + ACTIONS(9998), 1, + sym_identifier, + ACTIONS(10000), 1, + anon_sym_mutable, + STATE(8073), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5586), 6, + STATE(6167), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143021] = 11, + [152205] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2926), 1, - anon_sym_COLON_GT, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7616), 1, - anon_sym_or, - STATE(4684), 1, - aux_sym_type_argument_repeat1, + ACTIONS(10002), 1, + sym_identifier, + ACTIONS(10004), 1, + anon_sym_mutable, + STATE(8032), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2924), 2, - anon_sym_COLON, - sym_identifier, - STATE(5587), 6, + STATE(6168), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143062] = 12, + [152245] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(3485), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4957), 1, - sym_method_or_prop_defn, - STATE(6033), 1, - sym_access_modifier, + ACTIONS(10006), 1, + anon_sym_PIPE, + ACTIONS(10009), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5588), 6, + STATE(6169), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143105] = 12, + aux_sym_rules_repeat1, + [152283] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9933), 1, sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2676), 1, - sym_method_or_prop_defn, - STATE(5956), 1, - sym_access_modifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7347), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5589), 6, + STATE(6170), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143148] = 12, + [152323] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9214), 1, - anon_sym_GT, - STATE(5680), 1, - aux_sym_type_arguments_repeat1, - STATE(7562), 1, - sym_type_argument_constraints, + ACTIONS(10012), 1, + sym__dedent, + STATE(6174), 1, + aux_sym__list_pattern_content_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5590), 6, + ACTIONS(8656), 2, + sym__newline, + anon_sym_SEMI, + STATE(6171), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143191] = 11, + [152361] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3465), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6798), 1, - sym_type_argument, + ACTIONS(9947), 1, + anon_sym_PIPE, + ACTIONS(9949), 1, + sym__newline, + STATE(6169), 1, + aux_sym_rules_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5591), 6, + STATE(6172), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143232] = 12, + [152401] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9216), 1, + ACTIONS(10014), 1, sym_identifier, - ACTIONS(9218), 1, - anon_sym_member, - STATE(4399), 1, - sym_member_signature, - STATE(6499), 1, + ACTIONS(10016), 1, + anon_sym_mutable, + STATE(7913), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5592), 6, + STATE(6173), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143275] = 12, + [152441] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4399), 1, - sym_method_or_prop_defn, - STATE(5814), 1, - sym_access_modifier, + ACTIONS(8935), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5593), 6, + ACTIONS(10018), 2, + sym__newline, + anon_sym_SEMI, + STATE(6174), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143318] = 12, + aux_sym__list_pattern_content_repeat1, + [152477] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9220), 1, - anon_sym_GT, - STATE(5608), 1, - aux_sym_type_arguments_repeat1, - STATE(7157), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(8109), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5594), 6, + STATE(6175), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143361] = 12, + [152517] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9222), 1, - anon_sym_GT, - STATE(5575), 1, - aux_sym_type_arguments_repeat1, - STATE(6899), 1, - sym_type_argument_constraints, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(10021), 1, + sym__dedent, + STATE(6199), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5595), 6, + STATE(6176), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143404] = 8, + [152557] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10023), 1, + sym_identifier, + ACTIONS(10025), 1, + anon_sym_mutable, + STATE(8111), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5188), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5596), 6, + STATE(6177), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143439] = 12, + [152597] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9224), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7125), 1, - sym_type_argument_constraints, + ACTIONS(10027), 1, + sym_identifier, + ACTIONS(10029), 1, + anon_sym_mutable, + STATE(7952), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5597), 6, + STATE(6178), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143482] = 12, + [152637] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9226), 1, - anon_sym_GT, - STATE(5597), 1, - aux_sym_type_arguments_repeat1, - STATE(7133), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5598), 6, + ACTIONS(5676), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_interface, + anon_sym_POUNDendif, + STATE(6179), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143525] = 12, + [152671] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9228), 1, - anon_sym_GT, - STATE(5606), 1, - aux_sym_type_arguments_repeat1, - STATE(7493), 1, - sym_type_argument_constraints, + ACTIONS(10031), 1, + ts_builtin_sym_end, + ACTIONS(10033), 1, + anon_sym_namespace, + STATE(6575), 1, + sym_namespace, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5599), 6, + STATE(6180), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143568] = 12, + aux_sym_file_repeat1, + [152709] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4883), 1, - sym_method_or_prop_defn, - STATE(5971), 1, - sym_access_modifier, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(10036), 1, + sym__dedent, + STATE(6176), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5600), 6, + STATE(6181), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143611] = 12, + [152749] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4520), 1, - sym_method_or_prop_defn, - STATE(5998), 1, - sym_access_modifier, + ACTIONS(9953), 1, + anon_sym_static, + ACTIONS(9955), 1, + anon_sym_member, + ACTIONS(10038), 1, + anon_sym_new, + STATE(8035), 1, + sym_trait_member_constraint, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5601), 6, + STATE(6182), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143654] = 12, + [152789] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9230), 1, + ACTIONS(9811), 1, sym_identifier, - ACTIONS(9232), 1, - anon_sym_member, - STATE(4849), 1, + STATE(3201), 1, sym_member_signature, - STATE(6215), 1, + STATE(7075), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5602), 6, + STATE(6183), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143697] = 12, + [152829] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9234), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7156), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7623), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5603), 6, + STATE(6184), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143740] = 12, + [152869] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5562), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4966), 1, - sym_method_or_prop_defn, - STATE(6054), 1, - sym_access_modifier, + ACTIONS(7294), 1, + anon_sym_interface, + STATE(6199), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5604), 6, + STATE(6185), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143783] = 11, + [152909] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6826), 1, - sym_type_argument, + ACTIONS(10040), 1, + sym_identifier, + ACTIONS(10042), 1, + anon_sym_mutable, + STATE(8185), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5605), 6, + STATE(6186), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143824] = 12, + [152949] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9236), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7491), 1, - sym_type_argument_constraints, + ACTIONS(9758), 1, + sym_identifier, + STATE(3037), 1, + sym_member_signature, + STATE(6640), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5606), 6, + STATE(6187), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143867] = 11, + [152989] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6923), 1, - sym_type_argument, + ACTIONS(10044), 1, + sym_identifier, + ACTIONS(10046), 1, + anon_sym_mutable, + STATE(7898), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5607), 6, + STATE(6188), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143908] = 12, + [153029] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9238), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7190), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5608), 6, + ACTIONS(5776), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6189), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143951] = 12, + [153063] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9216), 1, + ACTIONS(10048), 1, sym_identifier, - ACTIONS(9240), 1, - anon_sym_member, - STATE(4486), 1, - sym_member_signature, - STATE(6475), 1, + ACTIONS(10050), 1, + anon_sym_mutable, + STATE(8106), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5609), 6, + STATE(6190), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [143994] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153103] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4439), 1, - anon_sym_LPAREN_PIPE, - STATE(3576), 1, - sym_active_pattern, - STATE(3606), 1, - sym__identifier_or_op, + ACTIONS(2235), 1, + ts_builtin_sym_end, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10052), 1, + anon_sym_namespace, + STATE(6180), 1, + aux_sym_file_repeat1, + STATE(6575), 1, + sym_namespace, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4441), 2, - sym_op_identifier, - sym_identifier, - STATE(5610), 6, + STATE(6191), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144035] = 12, + [153143] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9768), 1, sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4486), 1, - sym_method_or_prop_defn, - STATE(5825), 1, + STATE(4803), 1, + sym_member_signature, + STATE(7128), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5611), 6, + STATE(6192), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144078] = 11, + [153183] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8240), 1, - anon_sym__, - STATE(4579), 1, - sym__static_type_identifier, - STATE(5905), 1, - sym_type_argument, + ACTIONS(9819), 1, + sym_identifier, + STATE(5358), 1, + sym_member_signature, + STATE(6826), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5612), 6, + STATE(6193), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144119] = 12, + [153223] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9242), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7176), 1, - sym_type_argument_constraints, + ACTIONS(8658), 1, + sym__dedent, + STATE(6174), 1, + aux_sym__list_pattern_content_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5613), 6, + ACTIONS(8656), 2, + sym__newline, + anon_sym_SEMI, + STATE(6194), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144162] = 12, + [153261] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9244), 1, - anon_sym_GT, - STATE(5613), 1, - aux_sym_type_arguments_repeat1, - STATE(7180), 1, - sym_type_argument_constraints, + ACTIONS(9873), 1, + sym_identifier, + STATE(5364), 1, + sym_member_signature, + STATE(7071), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5614), 6, + STATE(6195), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144205] = 12, + [153301] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9246), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7742), 1, - sym_type_argument_constraints, + ACTIONS(9758), 1, + sym_identifier, + STATE(3173), 1, + sym_member_signature, + STATE(6669), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5615), 6, + STATE(6196), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144248] = 12, + [153341] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9248), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7035), 1, - sym_type_argument_constraints, + ACTIONS(10054), 1, + sym_identifier, + ACTIONS(10056), 1, + anon_sym_mutable, + STATE(8126), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5616), 6, + STATE(6197), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144291] = 12, + [153381] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9250), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7796), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7659), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5617), 6, + STATE(6198), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144334] = 11, + [153421] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5550), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, - sym__static_type_identifier, - STATE(6718), 1, - sym_type_argument, + ACTIONS(10058), 1, + anon_sym_interface, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5618), 6, + STATE(6199), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144375] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym__object_expression_inner_repeat1, + [153459] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4348), 1, - anon_sym_LPAREN_PIPE, - STATE(3423), 1, - sym_active_pattern, - STATE(3490), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9953), 1, + anon_sym_static, + ACTIONS(9955), 1, + anon_sym_member, + ACTIONS(10061), 1, + anon_sym_new, + STATE(7554), 1, + sym_trait_member_constraint, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4350), 2, - sym_op_identifier, - sym_identifier, - STATE(5619), 6, + STATE(6200), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144416] = 12, + [153499] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4992), 1, - sym_method_or_prop_defn, - STATE(5892), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5620), 6, + ACTIONS(5701), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6201), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144459] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153533] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4314), 1, - anon_sym_LPAREN_PIPE, - STATE(3341), 1, - sym_active_pattern, - STATE(3342), 1, - sym__identifier_or_op, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(4316), 2, - sym_op_identifier, - sym_identifier, - STATE(5621), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [144500] = 11, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1194), 1, - anon_sym_LPAREN_PIPE, - STATE(2204), 1, - sym__identifier_or_op, - STATE(2237), 1, - sym_active_pattern, + ACTIONS(7294), 1, + anon_sym_interface, + ACTIONS(10063), 1, + sym__dedent, + STATE(6127), 1, + aux_sym__object_expression_inner_repeat1, + STATE(6740), 1, + sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2036), 2, - sym_op_identifier, - sym_identifier, - STATE(5622), 6, + STATE(6202), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144541] = 9, + [153573] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9252), 1, - aux_sym_float_token1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3075), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5623), 6, + ACTIONS(5680), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6203), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144578] = 12, + [153607] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(10065), 1, sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4931), 1, - sym_method_or_prop_defn, - STATE(6017), 1, + ACTIONS(10067), 1, + anon_sym_mutable, + STATE(8012), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5624), 6, + STATE(6204), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144621] = 12, + [153647] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9742), 1, sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4939), 1, - sym_method_or_prop_defn, - STATE(6009), 1, + STATE(4948), 1, + sym_member_signature, + STATE(6981), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5625), 6, + STATE(6205), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144664] = 12, + [153687] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9254), 1, - anon_sym_GT, - STATE(5647), 1, - aux_sym_type_arguments_repeat1, - STATE(7203), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5626), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [144707] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(9256), 1, - anon_sym_DQUOTE, - ACTIONS(9258), 1, - anon_sym_AT_DQUOTE, - ACTIONS(9260), 1, - aux_sym_compiler_directive_decl_token1, - STATE(7612), 1, - sym_verbatim_string, - STATE(7613), 1, - sym__string_literal, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5627), 6, + ACTIONS(5743), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6206), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144750] = 12, + [153721] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9262), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7204), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5628), 6, + ACTIONS(5755), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6207), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144793] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153755] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(379), 1, - anon_sym_LPAREN_PIPE, - STATE(1485), 1, - sym_active_pattern, - STATE(1490), 1, - sym__identifier_or_op, + ACTIONS(3444), 1, + sym__dedent, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9947), 1, + anon_sym_PIPE, + ACTIONS(9949), 1, + sym__newline, + STATE(6169), 1, + aux_sym_rules_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(1822), 2, - sym_op_identifier, - sym_identifier, - STATE(5629), 6, + STATE(6208), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144834] = 12, + [153795] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9264), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7343), 1, - sym_type_argument_constraints, + ACTIONS(9819), 1, + sym_identifier, + STATE(5393), 1, + sym_member_signature, + STATE(6834), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5630), 6, + STATE(6209), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144877] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153835] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1064), 1, - anon_sym_LPAREN_PIPE, - STATE(2251), 1, - sym_active_pattern, - STATE(2280), 1, - sym__identifier_or_op, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10069), 1, + sym_identifier, + ACTIONS(10071), 1, + anon_sym_mutable, + STATE(8078), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2194), 2, - sym_op_identifier, - sym_identifier, - STATE(5631), 6, + STATE(6210), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144918] = 12, + [153875] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9266), 1, + ACTIONS(10073), 1, sym_identifier, - ACTIONS(9268), 1, - anon_sym_member, - STATE(5093), 1, - sym_member_signature, - STATE(6123), 1, + ACTIONS(10075), 1, + anon_sym_mutable, + STATE(8006), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5632), 6, + STATE(6211), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [144961] = 12, + [153915] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9270), 1, - anon_sym_GT, - STATE(5653), 1, - aux_sym_type_arguments_repeat1, - STATE(7423), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5633), 6, + ACTIONS(5759), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6212), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145004] = 12, + [153949] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9272), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7003), 1, - sym_type_argument_constraints, + ACTIONS(10077), 1, + sym_identifier, + ACTIONS(10079), 1, + anon_sym_mutable, + STATE(8058), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5634), 6, + STATE(6213), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145047] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [153989] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(824), 1, - anon_sym_LPAREN_PIPE, - STATE(2040), 1, - sym_active_pattern, - STATE(2083), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2102), 2, - sym_op_identifier, - sym_identifier, - STATE(5635), 6, + ACTIONS(5540), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6214), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145088] = 12, + [154023] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9869), 1, sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4849), 1, - sym_method_or_prop_defn, - STATE(6025), 1, + STATE(5454), 1, + sym_member_signature, + STATE(6910), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5636), 6, + STATE(6215), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145131] = 12, + [154063] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9274), 1, - anon_sym_GT, - STATE(5630), 1, - aux_sym_type_arguments_repeat1, - STATE(7274), 1, - sym_type_argument_constraints, + ACTIONS(9953), 1, + anon_sym_static, + ACTIONS(9955), 1, + anon_sym_member, + ACTIONS(10081), 1, + anon_sym_new, + STATE(7740), 1, + sym_trait_member_constraint, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5637), 6, + STATE(6216), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145174] = 12, + [154103] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9276), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7237), 1, - sym_type_argument_constraints, + ACTIONS(10083), 1, + sym_identifier, + STATE(406), 1, + sym_long_identifier, + STATE(6577), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5638), 6, + STATE(6217), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145217] = 12, + [154143] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9278), 1, - anon_sym_GT, - STATE(5638), 1, - aux_sym_type_arguments_repeat1, - STATE(7242), 1, - sym_type_argument_constraints, + ACTIONS(10085), 1, + sym_identifier, + ACTIONS(10087), 1, + anon_sym_mutable, + STATE(8098), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5639), 6, + STATE(6218), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145260] = 12, + [154183] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9742), 1, sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2720), 1, - sym_method_or_prop_defn, - STATE(5818), 1, + STATE(4957), 1, + sym_member_signature, + STATE(6999), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5640), 6, + STATE(6219), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145303] = 12, + [154223] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9774), 1, sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4857), 1, - sym_method_or_prop_defn, - STATE(6001), 1, + STATE(5317), 1, + sym_member_signature, + STATE(6984), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5641), 6, + STATE(6220), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145346] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [154263] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(666), 1, - anon_sym_LPAREN_PIPE, - STATE(1644), 1, - sym__identifier_or_op, - STATE(1780), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10089), 1, + sym_identifier, + ACTIONS(10091), 1, + anon_sym_global, + ACTIONS(10093), 1, + anon_sym_rec, + STATE(390), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2056), 2, - sym_op_identifier, - sym_identifier, - STATE(5642), 6, + STATE(6221), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145387] = 12, + [154303] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(10095), 1, sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2818), 1, - sym_method_or_prop_defn, - STATE(5888), 1, + ACTIONS(10097), 1, + anon_sym_mutable, + STATE(8272), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5643), 6, + STATE(6222), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145430] = 12, + [154343] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9280), 1, - anon_sym_GT, - STATE(5689), 1, - aux_sym_type_arguments_repeat1, - STATE(7541), 1, - sym_type_argument_constraints, + ACTIONS(9768), 1, + sym_identifier, + STATE(4797), 1, + sym_member_signature, + STATE(7132), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5644), 6, + STATE(6223), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145473] = 12, + [154383] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9282), 1, - anon_sym_GT, - STATE(5634), 1, - aux_sym_type_arguments_repeat1, - STATE(7007), 1, - sym_type_argument_constraints, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7287), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5645), 6, + STATE(6224), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145516] = 12, + [154423] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9933), 1, sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4974), 1, - sym_method_or_prop_defn, - STATE(5948), 1, - sym_access_modifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7161), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5646), 6, + STATE(6225), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145559] = 12, + [154463] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9284), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6973), 1, - sym_type_argument_constraints, + ACTIONS(8037), 1, + aux_sym_decimal_token1, + ACTIONS(8146), 1, + anon_sym_f, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5647), 6, + ACTIONS(2770), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6226), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145602] = 12, + [154501] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(9774), 1, sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5093), 1, - sym_method_or_prop_defn, - STATE(6118), 1, + STATE(5291), 1, + sym_member_signature, + STATE(7000), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5648), 6, + STATE(6227), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145645] = 12, + [154541] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9286), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7720), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5649), 6, + ACTIONS(5739), 4, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6228), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145688] = 12, + [154575] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9266), 1, + ACTIONS(10099), 1, sym_identifier, - ACTIONS(9288), 1, - anon_sym_member, - STATE(5035), 1, - sym_member_signature, - STATE(6141), 1, + ACTIONS(10101), 1, + anon_sym_mutable, + STATE(7998), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5650), 6, + STATE(6229), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145731] = 8, + [154615] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5115), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5651), 6, + ACTIONS(3389), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(6230), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145766] = 11, + [154649] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6255), 1, - anon_sym_interface, - STATE(5692), 1, - aux_sym__object_expression_inner_repeat1, - STATE(5910), 1, - sym_interface_implementation, + ACTIONS(9933), 1, + sym_identifier, + STATE(6344), 1, + sym_field_initializer, + STATE(7455), 1, + sym_field_initializers, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 2, - sym__newline, - sym__dedent, - STATE(5652), 6, + STATE(6231), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145807] = 12, + [154689] = 11, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3444), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9290), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7414), 1, - sym_type_argument_constraints, + ACTIONS(9947), 1, + anon_sym_PIPE, + ACTIONS(9949), 1, + sym__newline, + STATE(6172), 1, + aux_sym_rules_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5653), 6, + STATE(6232), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145850] = 12, + [154729] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9162), 1, - sym_identifier, - ACTIONS(9292), 1, - anon_sym_member, - STATE(4974), 1, - sym_member_signature, - STATE(6294), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5654), 6, + ACTIONS(3453), 4, + sym__dedent, + anon_sym_PIPE, + anon_sym_f, + aux_sym_decimal_token1, + STATE(6233), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145893] = 12, + [154763] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9294), 1, - anon_sym_GT, - STATE(5616), 1, - aux_sym_type_arguments_repeat1, - STATE(7044), 1, - sym_type_argument_constraints, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_PIPE_RPAREN, + STATE(6284), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5655), 6, + STATE(6234), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145936] = 12, + [154800] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2819), 1, - sym_method_or_prop_defn, - STATE(5898), 1, - sym_access_modifier, + STATE(4940), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5656), 6, + ACTIONS(7556), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6235), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [145979] = 12, + [154835] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9296), 1, - anon_sym_GT, - STATE(5617), 1, - aux_sym_type_arguments_repeat1, - STATE(7792), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5657), 6, + ACTIONS(5747), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6236), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146022] = 12, + [154868] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2790), 1, - sym_method_or_prop_defn, - STATE(5887), 1, - sym_access_modifier, + STATE(3285), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5658), 6, + ACTIONS(7520), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6237), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146065] = 12, + [154903] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9298), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7179), 1, - sym_type_argument_constraints, + ACTIONS(10107), 1, + sym__newline, + ACTIONS(10110), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5659), 6, + STATE(6238), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146108] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + aux_sym__class_type_body_repeat1, + [154938] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(569), 1, - anon_sym_LPAREN_PIPE, - STATE(1791), 1, - sym_active_pattern, - STATE(1796), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10112), 1, + sym_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4807), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2114), 2, - sym_op_identifier, - sym_identifier, - STATE(5660), 6, + STATE(6239), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146149] = 12, + [154975] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9300), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7258), 1, - sym_type_argument_constraints, + ACTIONS(10112), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5454), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5661), 6, + STATE(6240), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146192] = 12, + [155012] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5143), 1, - sym_method_or_prop_defn, - STATE(6098), 1, - sym_access_modifier, + ACTIONS(10114), 1, + anon_sym_with, + ACTIONS(10116), 1, + anon_sym_finally, + ACTIONS(10118), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5662), 6, + STATE(6241), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146235] = 12, + [155049] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4550), 1, - sym_method_or_prop_defn, - STATE(6040), 1, - sym_access_modifier, + ACTIONS(10120), 1, + anon_sym_POUNDendif, + ACTIONS(10122), 1, + anon_sym_POUNDelse, + STATE(7767), 1, + sym_preproc_else, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5663), 6, + STATE(6242), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146278] = 9, + [155086] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9302), 1, - sym_int, + ACTIONS(10124), 1, + anon_sym_with, + ACTIONS(10126), 1, + anon_sym_finally, + ACTIONS(10128), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3179), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5664), 6, + STATE(6243), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146315] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [155123] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(475), 1, - anon_sym_LPAREN_PIPE, - STATE(1975), 1, - sym__identifier_or_op, - STATE(2051), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(1610), 2, - sym_op_identifier, - sym_identifier, - STATE(5665), 6, + ACTIONS(5684), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6244), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146356] = 12, + [155156] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9304), 1, - sym_identifier, - ACTIONS(9306), 1, - anon_sym_member, - STATE(4550), 1, - sym_member_signature, - STATE(6518), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5666), 6, + ACTIONS(5768), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6245), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146399] = 12, + [155189] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9308), 1, - anon_sym_GT, - STATE(5661), 1, - aux_sym_type_arguments_repeat1, - STATE(7262), 1, - sym_type_argument_constraints, + ACTIONS(10130), 1, + anon_sym_RBRACK, + ACTIONS(10132), 1, + sym__indent, + STATE(7835), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5667), 6, + STATE(6246), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146442] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [155226] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(209), 1, - anon_sym_LPAREN_PIPE, - STATE(1040), 1, - sym_active_pattern, - STATE(1049), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10134), 1, + anon_sym_PIPE_RBRACK, + STATE(7837), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2080), 2, - sym_op_identifier, - sym_identifier, - STATE(5668), 6, + STATE(6247), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146483] = 12, + [155263] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4937), 1, - sym_method_or_prop_defn, - STATE(5969), 1, - sym_access_modifier, + ACTIONS(10136), 1, + anon_sym_PIPE, + ACTIONS(10138), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5669), 6, + STATE(6248), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146526] = 12, + [155300] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9310), 1, - anon_sym_GT, - STATE(5698), 1, - aux_sym_type_arguments_repeat1, - STATE(7336), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5670), 6, + ACTIONS(5772), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6249), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146569] = 12, + [155333] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9312), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7803), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5671), 6, + ACTIONS(5743), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6250), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146612] = 12, + [155366] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9314), 1, - sym_identifier, - ACTIONS(9316), 1, - anon_sym_member, - STATE(2827), 1, - sym_member_signature, - STATE(6341), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5672), 6, + ACTIONS(5705), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6251), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146655] = 12, + [155399] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(10140), 1, sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2827), 1, - sym_method_or_prop_defn, - STATE(5904), 1, + STATE(8080), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5673), 6, + STATE(6252), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146698] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [155436] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4272), 1, - anon_sym_LPAREN_PIPE, - STATE(3487), 1, - sym__identifier_or_op, - STATE(3492), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10142), 1, + sym_identifier, + STATE(4109), 1, + sym_field_pattern, + STATE(7220), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(4274), 2, - sym_op_identifier, - sym_identifier, - STATE(5674), 6, + STATE(6253), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146739] = 12, + [155473] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9230), 1, + ACTIONS(10144), 1, sym_identifier, - ACTIONS(9318), 1, - anon_sym_member, - STATE(4857), 1, - sym_member_signature, - STATE(6253), 1, + STATE(7924), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5675), 6, + STATE(6254), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146782] = 11, + [155510] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, + STATE(1595), 1, sym__static_type_identifier, - STATE(7073), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7592), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5676), 6, + STATE(6255), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146823] = 11, + [155545] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8979), 1, - anon_sym__, - STATE(5587), 1, + STATE(3591), 1, sym__static_type_identifier, - STATE(6768), 1, - sym_type_argument, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, + ACTIONS(7635), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5677), 6, + STATE(6256), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146864] = 12, + [155580] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9320), 1, - anon_sym_GT, - STATE(5700), 1, - aux_sym_type_arguments_repeat1, - STATE(6906), 1, - sym_type_argument_constraints, + ACTIONS(10112), 1, + sym_identifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5393), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5678), 6, + STATE(6257), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146907] = 12, + [155617] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9322), 1, - anon_sym_GT, - STATE(5671), 1, - aux_sym_type_arguments_repeat1, - STATE(7809), 1, - sym_type_argument_constraints, + ACTIONS(10146), 1, + sym__newline, + ACTIONS(10148), 1, + sym__dedent, + STATE(6338), 1, + aux_sym_record_fields_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5679), 6, + STATE(6258), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146950] = 12, + [155654] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9324), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7602), 1, - sym_type_argument_constraints, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5680), 6, + ACTIONS(5730), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6259), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [146993] = 12, + [155687] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9326), 1, - anon_sym_GT, - STATE(5659), 1, - aux_sym_type_arguments_repeat1, - STATE(7225), 1, - sym_type_argument_constraints, + ACTIONS(10150), 1, + anon_sym_DASH_GT, + ACTIONS(10152), 1, + anon_sym_STAR, + STATE(6351), 1, + aux_sym_arguments_spec_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5681), 6, + STATE(6260), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147036] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [155724] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1294), 1, - anon_sym_LPAREN_PIPE, - STATE(2202), 1, - sym_active_pattern, - STATE(2243), 1, - sym__identifier_or_op, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10069), 1, + sym_identifier, + STATE(8078), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2180), 2, - sym_op_identifier, - sym_identifier, - STATE(5682), 6, + STATE(6261), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147077] = 12, + [155761] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, + ACTIONS(10077), 1, sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4508), 1, - sym_method_or_prop_defn, - STATE(6032), 1, + STATE(8058), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5683), 6, + STATE(6262), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147120] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [155798] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(914), 1, - anon_sym_LPAREN_PIPE, - STATE(1859), 1, - sym__identifier_or_op, - STATE(1922), 1, - sym_active_pattern, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10142), 1, + sym_identifier, + STATE(5575), 1, + sym_field_pattern, + STATE(7778), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2156), 2, - sym_op_identifier, - sym_identifier, - STATE(5684), 6, + STATE(6263), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147161] = 12, + [155835] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9304), 1, + ACTIONS(10112), 1, sym_identifier, - ACTIONS(9328), 1, - anon_sym_member, - STATE(4508), 1, - sym_member_signature, - STATE(6484), 1, - sym_access_modifier, + STATE(2808), 1, + sym_property_or_ident, + STATE(3094), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5685), 6, + STATE(6264), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147204] = 12, + [155872] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9208), 1, - sym_identifier, - ACTIONS(9330), 1, - anon_sym_member, - STATE(2790), 1, - sym_member_signature, - STATE(6394), 1, - sym_access_modifier, + ACTIONS(8704), 1, + anon_sym_COMMA, + ACTIONS(10154), 1, + anon_sym_GT, + STATE(6417), 1, + aux_sym_types_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5686), 6, + STATE(6265), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147247] = 12, + [155909] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5035), 1, - sym_method_or_prop_defn, - STATE(6103), 1, - sym_access_modifier, + STATE(2361), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5687), 6, + ACTIONS(6838), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6266), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147290] = 12, + [155944] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9332), 1, - anon_sym_GT, - STATE(5690), 1, - aux_sym_type_arguments_repeat1, - STATE(7345), 1, - sym_type_argument_constraints, + ACTIONS(10142), 1, + sym_identifier, + STATE(4316), 1, + sym_field_pattern, + STATE(7805), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5688), 6, + STATE(6267), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147333] = 12, + [155981] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9334), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7538), 1, - sym_type_argument_constraints, + ACTIONS(10156), 1, + anon_sym_EQ, + ACTIONS(10158), 1, + anon_sym_as, + STATE(8042), 1, + sym_class_as_reference, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5689), 6, + STATE(6268), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147376] = 12, + [156018] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9336), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7337), 1, - sym_type_argument_constraints, + ACTIONS(10160), 1, + anon_sym_RPAREN, + ACTIONS(10162), 1, + sym__indent, + STATE(7202), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5690), 6, + STATE(6269), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147419] = 12, + [156055] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9338), 1, - anon_sym_GT, - STATE(5649), 1, - aux_sym_type_arguments_repeat1, - STATE(7707), 1, - sym_type_argument_constraints, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10164), 1, + anon_sym_RPAREN, + STATE(7867), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5691), 6, + STATE(6270), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147462] = 10, + [156092] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9340), 1, - anon_sym_interface, - STATE(5910), 1, - sym_interface_implementation, + STATE(3597), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5072), 2, - sym__newline, - sym__dedent, - STATE(5692), 7, + ACTIONS(7659), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6271), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [147501] = 12, + [156127] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9343), 1, - anon_sym_GT, - STATE(5615), 1, - aux_sym_type_arguments_repeat1, - STATE(7800), 1, - sym_type_argument_constraints, + ACTIONS(9998), 1, + sym_identifier, + STATE(8073), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5693), 6, + STATE(6272), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147544] = 12, + [156164] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9314), 1, - sym_identifier, - ACTIONS(9345), 1, - anon_sym_member, - STATE(2820), 1, - sym_member_signature, - STATE(6328), 1, - sym_access_modifier, + STATE(1501), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5694), 6, + ACTIONS(7568), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6273), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147587] = 12, + [156199] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9347), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7431), 1, - sym_type_argument_constraints, + ACTIONS(10166), 1, + sym_identifier, + STATE(8292), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5695), 6, + STATE(6274), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147630] = 12, + [156236] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9083), 1, - sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2820), 1, - sym_method_or_prop_defn, - STATE(5917), 1, - sym_access_modifier, + ACTIONS(10168), 1, + anon_sym_PIPE, + ACTIONS(10170), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5696), 6, + STATE(6275), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147673] = 8, + [156273] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10112), 1, + sym_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4803), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5111), 5, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5697), 6, + STATE(6276), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147708] = 12, + [156310] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9349), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(7396), 1, - sym_type_argument_constraints, + ACTIONS(10172), 1, + anon_sym_PIPE, + ACTIONS(10174), 1, + sym__dedent, + STATE(6320), 1, + aux_sym_enum_type_cases_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5698), 6, + STATE(6277), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147751] = 11, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [156347] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(99), 1, - anon_sym_LPAREN_PIPE, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - STATE(1204), 1, - sym_active_pattern, - STATE(1346), 1, - sym__identifier_or_op, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + STATE(3268), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(101), 2, - sym_op_identifier, - sym_identifier, - STATE(5699), 6, + ACTIONS(6660), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6278), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147792] = 12, + [156382] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9160), 1, - anon_sym_when, - ACTIONS(9351), 1, - anon_sym_GT, - STATE(5796), 1, - aux_sym_type_arguments_repeat1, - STATE(6965), 1, - sym_type_argument_constraints, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_PIPE_RPAREN, + STATE(6248), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5700), 6, + STATE(6279), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147835] = 8, + [156419] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(1025), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5215), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5701), 6, + ACTIONS(7643), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6280), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147869] = 8, + [156454] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5209), 4, + ACTIONS(5680), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5702), 6, + STATE(6281), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147903] = 11, + [156487] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9304), 1, - sym_identifier, - STATE(4508), 1, - sym_member_signature, - STATE(6484), 1, - sym_access_modifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10180), 1, + anon_sym_COLON, + STATE(7435), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5703), 6, + STATE(6282), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147943] = 11, + [156524] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9266), 1, - sym_identifier, - STATE(5035), 1, - sym_member_signature, - STATE(6141), 1, - sym_access_modifier, + ACTIONS(10122), 1, + anon_sym_POUNDelse, + ACTIONS(10182), 1, + anon_sym_POUNDendif, + STATE(7603), 1, + sym_preproc_else, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5704), 6, + STATE(6283), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [147983] = 11, + [156561] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9353), 1, - sym_identifier, - ACTIONS(9355), 1, - anon_sym_global, - ACTIONS(9357), 1, - anon_sym_rec, - STATE(350), 1, - sym_long_identifier, + ACTIONS(10184), 1, + anon_sym_PIPE, + ACTIONS(10186), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5705), 6, + STATE(6284), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148023] = 11, + [156598] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9359), 1, - sym_identifier, - STATE(365), 1, - sym_long_identifier, - STATE(6145), 1, - sym_access_modifier, + STATE(1587), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5706), 6, + ACTIONS(7689), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6285), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148063] = 11, + [156633] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1853), 1, - ts_builtin_sym_end, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9361), 1, - anon_sym_namespace, - STATE(5714), 1, - aux_sym_file_repeat1, - STATE(6140), 1, - sym_namespace, + ACTIONS(10112), 1, + sym_identifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5358), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5707), 6, + STATE(6286), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148103] = 8, + [156670] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10112), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5459), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5062), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5708), 6, + STATE(6287), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148137] = 11, + [156707] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9266), 1, - sym_identifier, - STATE(5143), 1, - sym_member_signature, - STATE(6156), 1, - sym_access_modifier, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10188), 1, + anon_sym_RPAREN, + STATE(7751), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5709), 6, + STATE(6288), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148177] = 11, + [156744] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(7499), 1, - sym_long_identifier, - STATE(7503), 1, - sym_field_initializers, + ACTIONS(6642), 1, + anon_sym_GT, + ACTIONS(10190), 1, + anon_sym_and, + STATE(6307), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5710), 6, + STATE(6289), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148217] = 10, + [156781] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5072), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9365), 1, - anon_sym_interface, - STATE(6249), 1, - sym_interface_implementation, + ACTIONS(10048), 1, + sym_identifier, + STATE(8106), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5711), 7, + STATE(6290), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__object_expression_inner_repeat1, - [148255] = 11, + [156818] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9368), 1, - sym_identifier, - STATE(366), 1, - sym_long_identifier, - STATE(6258), 1, - sym_access_modifier, + ACTIONS(10192), 1, + anon_sym_GT_RBRACK, + ACTIONS(10194), 1, + sym__newline, + STATE(6415), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5712), 6, + STATE(6291), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148295] = 8, + [156855] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5221), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5713), 6, + ACTIONS(3440), 3, + sym__newline, + anon_sym_with, + anon_sym_finally, + STATE(6292), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148329] = 10, + [156888] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9370), 1, - ts_builtin_sym_end, - ACTIONS(9372), 1, - anon_sym_namespace, - STATE(6140), 1, - sym_namespace, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5714), 7, + ACTIONS(3525), 3, + sym__newline, + sym__dedent, + anon_sym_PIPE, + STATE(6293), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_file_repeat1, - [148367] = 11, + [156921] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(7132), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5715), 6, + ACTIONS(3535), 3, + sym__newline, + sym__dedent, + anon_sym_PIPE, + STATE(6294), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148407] = 8, + [156954] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5257), 4, + ACTIONS(5701), 3, anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5716), 6, + STATE(6295), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148441] = 11, + [156987] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(7094), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + STATE(1365), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5717), 6, + ACTIONS(7715), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6296), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148481] = 8, + [157022] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10196), 1, + anon_sym_with, + ACTIONS(10198), 1, + anon_sym_finally, + ACTIONS(10200), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5249), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5718), 6, + STATE(6297), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148515] = 11, + [157059] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(7054), 1, - sym_field_initializers, - STATE(7499), 1, + STATE(4105), 1, + sym_field_pattern, + STATE(7333), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5719), 6, + STATE(6298), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148555] = 11, + [157096] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9375), 1, - sym_identifier, - ACTIONS(9377), 1, - anon_sym_mutable, - STATE(7581), 1, - sym_access_modifier, + ACTIONS(10202), 1, + anon_sym_PIPE, + ACTIONS(10204), 1, + anon_sym_PIPE_RPAREN, + STATE(6275), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5720), 6, + STATE(6299), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148595] = 8, + [157133] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10206), 1, + anon_sym_PIPE, + ACTIONS(10208), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5721), 6, + STATE(6300), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148629] = 11, + [157170] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9379), 1, - sym_identifier, - ACTIONS(9381), 1, - anon_sym_mutable, - STATE(7314), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5722), 6, + ACTIONS(5776), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6301), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148669] = 11, + [157203] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9383), 1, - sym_identifier, - ACTIONS(9385), 1, - anon_sym_mutable, - STATE(7576), 1, - sym_access_modifier, + STATE(1448), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5723), 6, + ACTIONS(7651), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6302), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148709] = 11, + [157238] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9387), 1, + ACTIONS(10023), 1, sym_identifier, - ACTIONS(9389), 1, - anon_sym_mutable, - STATE(7568), 1, + STATE(8111), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5724), 6, + STATE(6303), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148749] = 11, + [157275] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(7001), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + ACTIONS(10210), 1, + anon_sym_with, + ACTIONS(10212), 1, + anon_sym_finally, + ACTIONS(10214), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5725), 6, + STATE(6304), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148789] = 11, + [157312] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9391), 1, - anon_sym_new, - ACTIONS(9393), 1, - anon_sym_static, - ACTIONS(9395), 1, - anon_sym_member, - STATE(7547), 1, - sym_trait_member_constraint, + ACTIONS(6678), 1, + anon_sym_GT, + ACTIONS(10190), 1, + anon_sym_and, + STATE(6289), 1, + aux_sym_type_argument_constraints_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5726), 6, + STATE(6305), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148829] = 11, + [157349] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9166), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(4957), 1, - sym_member_signature, - STATE(6544), 1, - sym_access_modifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5332), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5727), 6, + STATE(6306), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148869] = 11, + [157386] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9397), 1, - sym_identifier, - ACTIONS(9399), 1, - anon_sym_mutable, - STATE(7548), 1, - sym_access_modifier, + ACTIONS(6629), 1, + anon_sym_GT, + ACTIONS(10216), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5728), 6, + STATE(6307), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148909] = 11, + aux_sym_type_argument_constraints_repeat1, + [157421] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9230), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(4857), 1, - sym_member_signature, - STATE(6253), 1, - sym_access_modifier, + STATE(5183), 1, + sym_field_pattern, + STATE(7778), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5729), 6, + STATE(6308), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148949] = 11, + [157458] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9401), 1, - sym_identifier, - ACTIONS(9403), 1, - anon_sym_mutable, - STATE(7543), 1, - sym_access_modifier, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10219), 1, + anon_sym_RPAREN, + STATE(8296), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5730), 6, + STATE(6309), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [148989] = 11, + [157495] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9304), 1, - sym_identifier, - STATE(4520), 1, - sym_member_signature, - STATE(6462), 1, - sym_access_modifier, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10221), 1, + anon_sym_GT_RBRACK, + STATE(6480), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5731), 6, + STATE(6310), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149029] = 11, + [157532] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9405), 1, - sym_identifier, - ACTIONS(9407), 1, - anon_sym_mutable, - STATE(7535), 1, - sym_access_modifier, + STATE(4045), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5732), 6, + ACTIONS(9006), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6311), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149069] = 11, + [157567] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6947), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5733), 6, + ACTIONS(5697), 3, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6312), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149109] = 11, + [157600] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9409), 1, + ACTIONS(10223), 1, sym_identifier, - ACTIONS(9411), 1, - anon_sym_mutable, - STATE(7515), 1, + STATE(8113), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5734), 6, + STATE(6313), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149149] = 11, + [157637] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9413), 1, - sym_identifier, - ACTIONS(9415), 1, - anon_sym_mutable, - STATE(7510), 1, - sym_access_modifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10225), 1, + anon_sym_COLON, + STATE(7616), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5735), 6, + STATE(6314), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149189] = 11, + [157674] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9166), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(4944), 1, - sym_member_signature, - STATE(6623), 1, - sym_access_modifier, + STATE(2808), 1, + sym_property_or_ident, + STATE(3130), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5736), 6, + STATE(6315), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149229] = 11, + [157711] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(9417), 1, - sym__dedent, - STATE(5711), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10227), 1, + anon_sym_PIPE_RBRACK, + STATE(7228), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5737), 6, + STATE(6316), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149269] = 11, + [157748] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9419), 1, - sym_identifier, - ACTIONS(9421), 1, - anon_sym_mutable, - STATE(7502), 1, - sym_access_modifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10229), 1, + anon_sym_RBRACK, + STATE(7229), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5738), 6, + STATE(6317), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149309] = 11, + [157785] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6893), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + STATE(2815), 1, + sym_property_or_ident, + STATE(4813), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5739), 6, + STATE(6318), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149349] = 11, + [157822] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9423), 1, - sym_identifier, - ACTIONS(9425), 1, - anon_sym_mutable, - STATE(7482), 1, - sym_access_modifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10231), 1, + anon_sym_PIPE_RBRACK, + STATE(7696), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5740), 6, + STATE(6319), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149389] = 11, + [157859] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9427), 1, - sym_identifier, - ACTIONS(9429), 1, - anon_sym_mutable, - STATE(7476), 1, - sym_access_modifier, + ACTIONS(10233), 1, + anon_sym_PIPE, + ACTIONS(10236), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5741), 6, + STATE(6320), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149429] = 8, + aux_sym_enum_type_cases_repeat1, + [157894] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10238), 1, + anon_sym_RBRACK, + STATE(7854), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5239), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5742), 6, + STATE(6321), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149463] = 11, + [157931] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9230), 1, + ACTIONS(10240), 1, sym_identifier, - STATE(4879), 1, - sym_member_signature, - STATE(6264), 1, + STATE(8072), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5743), 6, + STATE(6322), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149503] = 11, + [157968] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9431), 1, + ACTIONS(10112), 1, sym_identifier, - ACTIONS(9433), 1, - anon_sym_mutable, - STATE(7468), 1, - sym_access_modifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5450), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5744), 6, + STATE(6323), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149543] = 11, + [158005] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6833), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5745), 6, + ACTIONS(5711), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(6324), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149583] = 11, + [158038] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3162), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9435), 1, - anon_sym_PIPE, - ACTIONS(9437), 1, - sym__newline, - STATE(5773), 1, - aux_sym_rules_repeat1, + ACTIONS(10158), 1, + anon_sym_as, + ACTIONS(10242), 1, + anon_sym_EQ, + STATE(8075), 1, + sym_class_as_reference, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5746), 6, + STATE(6325), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149623] = 10, + [158075] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7506), 1, - aux_sym_decimal_token1, - ACTIONS(7622), 1, - anon_sym_f, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10244), 1, + anon_sym_RBRACK, + STATE(7958), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2520), 2, - sym__dedent, - anon_sym_PIPE, - STATE(5747), 6, + STATE(6326), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149661] = 11, + [158112] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9439), 1, - sym_identifier, - ACTIONS(9441), 1, - anon_sym_mutable, - STATE(7435), 1, - sym_access_modifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10246), 1, + anon_sym_PIPE_RBRACK, + STATE(8093), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5748), 6, + STATE(6327), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149701] = 11, + [158149] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9443), 1, - sym_identifier, - ACTIONS(9445), 1, - anon_sym_mutable, - STATE(7422), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5749), 6, + ACTIONS(5715), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(6328), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149741] = 11, + [158182] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6760), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5750), 6, + ACTIONS(5540), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6329), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149781] = 8, + [158215] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5111), 4, + ACTIONS(5755), 3, anon_sym_LBRACK_LT, anon_sym_and, - anon_sym_interface, anon_sym_POUNDendif, - STATE(5751), 6, + STATE(6330), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149815] = 11, + [158248] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5081), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_interface, - STATE(5711), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5752), 6, + ACTIONS(5697), 3, + sym__newline, + sym__dedent, + anon_sym_and, + STATE(6331), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149855] = 11, + [158281] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9447), 1, + ACTIONS(10248), 1, sym_identifier, - ACTIONS(9449), 1, - anon_sym_mutable, - STATE(7391), 1, + STATE(8031), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5753), 6, + STATE(6332), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149895] = 11, + [158318] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9451), 1, + ACTIONS(10112), 1, sym_identifier, - ACTIONS(9453), 1, - anon_sym_mutable, - STATE(7383), 1, - sym_access_modifier, + STATE(2794), 1, + sym_property_or_ident, + STATE(5365), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5754), 6, + STATE(6333), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149935] = 11, + [158355] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9455), 1, - sym_identifier, - ACTIONS(9457), 1, - anon_sym_mutable, - STATE(7368), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5755), 6, + ACTIONS(5751), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6334), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [149975] = 11, + [158388] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6675), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + ACTIONS(10152), 1, + anon_sym_STAR, + ACTIONS(10250), 1, + anon_sym_DASH_GT, + STATE(6260), 1, + aux_sym_arguments_spec_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5756), 6, + STATE(6335), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150015] = 8, + [158425] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(4294), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5253), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5757), 6, + ACTIONS(6939), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6336), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150049] = 11, + [158460] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9459), 1, - sym_identifier, - ACTIONS(9461), 1, - anon_sym_mutable, - STATE(7111), 1, - sym_access_modifier, + ACTIONS(10252), 1, + anon_sym_PIPE, + ACTIONS(10254), 1, + anon_sym_PIPE_RPAREN, + STATE(6375), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5758), 6, + STATE(6337), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150089] = 11, + [158497] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9208), 1, - sym_identifier, - STATE(2790), 1, - sym_member_signature, - STATE(6394), 1, - sym_access_modifier, + ACTIONS(9102), 1, + sym__dedent, + ACTIONS(10256), 1, + sym__newline, + STATE(6419), 1, + aux_sym_record_fields_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5759), 6, + STATE(6338), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150129] = 11, + [158534] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9393), 1, - anon_sym_static, - ACTIONS(9395), 1, - anon_sym_member, - ACTIONS(9463), 1, - anon_sym_new, - STATE(7661), 1, - sym_trait_member_constraint, + ACTIONS(9957), 1, + sym_identifier, + STATE(7973), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5760), 6, + STATE(6339), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150169] = 11, + [158571] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9162), 1, - sym_identifier, - STATE(4937), 1, - sym_member_signature, - STATE(6276), 1, - sym_access_modifier, + ACTIONS(10258), 1, + anon_sym_COMMA, + ACTIONS(10260), 1, + sym__dedent, + STATE(6535), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5761), 6, + STATE(6340), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150209] = 11, + [158608] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9465), 1, - sym_identifier, - ACTIONS(9467), 1, - anon_sym_mutable, - STATE(7325), 1, - sym_access_modifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10262), 1, + anon_sym_RBRACK, + STATE(7211), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5762), 6, + STATE(6341), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150249] = 11, + [158645] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9393), 1, - anon_sym_static, - ACTIONS(9395), 1, - anon_sym_member, - ACTIONS(9469), 1, - anon_sym_new, - STATE(6697), 1, - sym_trait_member_constraint, + ACTIONS(10264), 1, + sym_identifier, + STATE(8047), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5763), 6, + STATE(6342), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150289] = 11, + [158682] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9471), 1, - sym_identifier, - ACTIONS(9473), 1, - anon_sym_mutable, - STATE(7316), 1, - sym_access_modifier, + ACTIONS(10266), 1, + anon_sym_with, + ACTIONS(10268), 1, + anon_sym_finally, + ACTIONS(10270), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5764), 6, + STATE(6343), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150329] = 11, + [158719] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(9475), 1, + ACTIONS(10272), 1, + sym__newline, + ACTIONS(10274), 1, sym__dedent, - STATE(5737), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, + STATE(6542), 1, + aux_sym_field_initializers_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5765), 6, + STATE(6344), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150369] = 8, + [158756] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10276), 1, + anon_sym_PIPE, + ACTIONS(10278), 1, + anon_sym_PIPE_RPAREN, + STATE(6363), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5275), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5766), 6, + STATE(6345), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150403] = 11, + [158793] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9477), 1, - sym_identifier, - ACTIONS(9479), 1, - anon_sym_mutable, - STATE(7301), 1, - sym_access_modifier, + STATE(1675), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5767), 6, + ACTIONS(7681), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6346), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150443] = 11, + [158828] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6820), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10280), 1, + anon_sym_PIPE_RBRACK, + STATE(7212), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5768), 6, + STATE(6347), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150483] = 11, + [158865] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9481), 1, - sym_identifier, - ACTIONS(9483), 1, - anon_sym_mutable, - STATE(7443), 1, - sym_access_modifier, + STATE(5180), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5769), 6, + ACTIONS(5790), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6348), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150523] = 11, + [158900] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3110), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9435), 1, - anon_sym_PIPE, - ACTIONS(9437), 1, - sym__newline, - STATE(5791), 1, - aux_sym_rules_repeat1, + ACTIONS(10112), 1, + sym_identifier, + STATE(2814), 1, + sym_property_or_ident, + STATE(5414), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5770), 6, + STATE(6349), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150563] = 8, + [158937] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10282), 1, + anon_sym_RPAREN, + STATE(7997), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5225), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5771), 6, + STATE(6350), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150597] = 11, + [158974] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9314), 1, - sym_identifier, - STATE(2827), 1, - sym_member_signature, - STATE(6341), 1, - sym_access_modifier, + ACTIONS(10284), 1, + anon_sym_DASH_GT, + ACTIONS(10286), 1, + anon_sym_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5772), 6, + STATE(6351), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150637] = 11, + aux_sym_arguments_spec_repeat1, + [159009] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3110), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9435), 1, - anon_sym_PIPE, - ACTIONS(9437), 1, - sym__newline, - STATE(5794), 1, - aux_sym_rules_repeat1, + ACTIONS(10112), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3203), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5773), 6, + STATE(6352), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150677] = 8, + [159046] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(5011), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3075), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5774), 6, + ACTIONS(7615), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6353), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150711] = 8, + [159081] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10289), 1, + anon_sym_GT_RBRACK, + STATE(6415), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3175), 4, - sym__dedent, - anon_sym_PIPE, - anon_sym_f, - aux_sym_decimal_token1, - STATE(5775), 6, + STATE(6354), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150745] = 11, + [159118] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9314), 1, - sym_identifier, - STATE(2819), 1, - sym_member_signature, - STATE(6359), 1, - sym_access_modifier, + STATE(1543), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5776), 6, + ACTIONS(7697), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6355), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150785] = 11, + [159153] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9162), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(4974), 1, - sym_member_signature, - STATE(6294), 1, - sym_access_modifier, + STATE(4098), 1, + sym_field_pattern, + STATE(7220), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5777), 6, + STATE(6356), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150825] = 8, + [159190] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9939), 1, + sym_identifier, + STATE(8045), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5243), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5778), 6, + STATE(6357), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150859] = 11, + [159227] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9485), 1, - sym_identifier, - ACTIONS(9487), 1, - anon_sym_mutable, - STATE(6915), 1, - sym_access_modifier, + ACTIONS(10291), 1, + sym__newline, + ACTIONS(10293), 1, + sym__dedent, + STATE(6238), 1, + aux_sym__class_type_body_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5779), 6, + STATE(6358), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150899] = 10, + [159264] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8110), 1, - sym__dedent, - STATE(5801), 1, - aux_sym__list_pattern_content_repeat1, + ACTIONS(10295), 1, + anon_sym_PIPE, + ACTIONS(10297), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8108), 2, - sym__newline, - anon_sym_SEMI, - STATE(5780), 6, + STATE(6359), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150937] = 10, + [159301] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9489), 1, - anon_sym_and, - STATE(5784), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10299), 1, + anon_sym_PIPE, + ACTIONS(10301), 1, + anon_sym_PIPE_RPAREN, + STATE(6409), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5124), 2, - sym__newline, - sym__dedent, - STATE(5781), 6, + STATE(6360), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [150975] = 11, + [159338] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9393), 1, - anon_sym_static, - ACTIONS(9395), 1, - anon_sym_member, - ACTIONS(9491), 1, - anon_sym_new, - STATE(7367), 1, - sym_trait_member_constraint, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10303), 1, + anon_sym_RPAREN, + STATE(7795), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5782), 6, + STATE(6361), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151015] = 11, + [159375] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9493), 1, + ACTIONS(10142), 1, sym_identifier, - ACTIONS(9495), 1, - anon_sym_mutable, - STATE(6710), 1, - sym_access_modifier, + STATE(5647), 1, + sym_field_pattern, + STATE(7408), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5783), 6, + STATE(6362), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151055] = 10, + [159412] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9489), 1, - anon_sym_and, - STATE(5787), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10305), 1, + anon_sym_PIPE, + ACTIONS(10307), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5179), 2, - sym__newline, - sym__dedent, - STATE(5784), 6, + STATE(6363), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151093] = 11, + [159449] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, - sym_identifier, - STATE(6011), 1, - sym_field_initializer, - STATE(6855), 1, - sym_field_initializers, - STATE(7499), 1, - sym_long_identifier, + ACTIONS(10309), 1, + anon_sym_with, + ACTIONS(10311), 1, + anon_sym_finally, + ACTIONS(10313), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5785), 6, + STATE(6364), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151133] = 11, + [159486] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9208), 1, + ACTIONS(9994), 1, sym_identifier, - STATE(2720), 1, - sym_member_signature, - STATE(6505), 1, + STATE(7921), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5786), 6, + STATE(6365), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151173] = 9, + [159523] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9497), 1, - anon_sym_and, + ACTIONS(10315), 1, + anon_sym_with, + ACTIONS(10317), 1, + anon_sym_finally, + ACTIONS(10319), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5195), 2, - sym__newline, - sym__dedent, - STATE(5787), 7, + STATE(6366), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [151209] = 8, + [159560] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10321), 1, + anon_sym_PIPE, + ACTIONS(10323), 1, + anon_sym_PIPE_RPAREN, + STATE(6300), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5229), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5788), 6, + STATE(6367), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151243] = 11, + [159597] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(9500), 1, - sym__dedent, - STATE(5799), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10325), 1, + anon_sym_RPAREN, + STATE(7257), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5789), 6, + STATE(6368), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151283] = 9, + [159634] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9502), 1, - anon_sym_and, + STATE(2791), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5195), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5790), 7, + ACTIONS(6858), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6369), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [151319] = 11, + [159669] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3081), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9435), 1, - anon_sym_PIPE, - ACTIONS(9437), 1, - sym__newline, - STATE(5794), 1, - aux_sym_rules_repeat1, + STATE(3706), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5791), 6, + ACTIONS(7536), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6370), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151359] = 8, + [159704] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(1215), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5188), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - STATE(5792), 6, + ACTIONS(7670), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6371), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151393] = 8, + [159739] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10327), 1, + anon_sym_PIPE, + ACTIONS(10329), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5115), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_interface, - anon_sym_POUNDendif, - STATE(5793), 6, + STATE(6372), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151427] = 10, + [159776] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3133), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9505), 1, - anon_sym_PIPE, - ACTIONS(9508), 1, - sym__newline, + ACTIONS(9935), 1, + sym_identifier, + STATE(7965), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5794), 7, + STATE(6373), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_rules_repeat1, - [151465] = 8, + [159813] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10331), 1, + sym_identifier, + STATE(7976), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5283), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5795), 6, + STATE(6374), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151499] = 9, + [159850] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9511), 1, - anon_sym_COMMA, + ACTIONS(10333), 1, + anon_sym_PIPE, + ACTIONS(10335), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9514), 2, - anon_sym_GT, - anon_sym_when, - STATE(5796), 7, + STATE(6375), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_arguments_repeat1, - [151535] = 8, + [159887] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(4117), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5202), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5797), 6, + ACTIONS(6848), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6376), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151569] = 8, + [159922] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10172), 1, + anon_sym_PIPE, + ACTIONS(10337), 1, + sym__dedent, + STATE(6277), 1, + aux_sym_enum_type_cases_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5292), 4, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5798), 6, + STATE(6377), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151603] = 11, + [159959] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6804), 1, - anon_sym_interface, - ACTIONS(9516), 1, - sym__dedent, - STATE(5711), 1, - aux_sym__object_expression_inner_repeat1, - STATE(6249), 1, - sym_interface_implementation, + STATE(4961), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5799), 6, + ACTIONS(7546), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6378), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151643] = 10, + [159994] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9518), 1, - anon_sym_and, - STATE(5804), 1, - aux_sym__function_or_value_defns_repeat1, + STATE(3259), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5124), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5800), 6, + ACTIONS(7457), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6379), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151681] = 9, + [160029] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8406), 1, - sym__dedent, + ACTIONS(10339), 1, + anon_sym_COMMA, + ACTIONS(10342), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9520), 2, - sym__newline, - anon_sym_SEMI, - STATE(5801), 7, + STATE(6380), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__list_pattern_content_repeat1, - [151717] = 11, + aux_sym_slice_ranges_repeat1, + [160064] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9216), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(4399), 1, - sym_member_signature, - STATE(6499), 1, - sym_access_modifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3195), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5802), 6, + STATE(6381), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151757] = 10, + [160101] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9523), 1, - sym__dedent, - STATE(5801), 1, - aux_sym__list_pattern_content_repeat1, + ACTIONS(10142), 1, + sym_identifier, + STATE(4357), 1, + sym_field_pattern, + STATE(7805), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8108), 2, - sym__newline, - anon_sym_SEMI, - STATE(5803), 6, + STATE(6382), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151795] = 10, + [160138] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9518), 1, - anon_sym_and, - STATE(5790), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10344), 1, + anon_sym_PIPE_RBRACK, + ACTIONS(10346), 1, + sym__indent, + STATE(7806), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5179), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5804), 6, + STATE(6383), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151833] = 11, + [160175] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9216), 1, - sym_identifier, - STATE(4429), 1, - sym_member_signature, - STATE(6526), 1, - sym_access_modifier, + ACTIONS(10348), 1, + anon_sym_COMMA, + ACTIONS(10351), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5805), 6, + STATE(6384), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151873] = 9, + aux_sym_type_attributes_repeat1, + [160210] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9525), 1, - anon_sym_PIPE, - ACTIONS(9528), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10353), 1, + anon_sym_RPAREN, + STATE(7604), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5806), 7, + STATE(6385), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_active_pattern_repeat1, - [151908] = 9, + [160247] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9530), 1, - anon_sym_PIPE, - ACTIONS(9533), 1, - sym__dedent, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10355), 1, + anon_sym_RBRACK, + STATE(7807), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5807), 7, + STATE(6386), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_enum_type_cases_repeat1, - [151943] = 10, + [160284] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9535), 1, - anon_sym_RBRACK, - ACTIONS(9537), 1, - sym__indent, - STATE(6981), 1, - sym__list_element, + ACTIONS(10142), 1, + sym_identifier, + STATE(5550), 1, + sym_field_pattern, + STATE(8322), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5808), 6, + STATE(6387), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [151980] = 10, + [160321] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9539), 1, - anon_sym_RPAREN, - ACTIONS(9541), 1, + ACTIONS(10132), 1, sym__indent, - STATE(7120), 1, - sym__expression_block, + ACTIONS(10357), 1, + anon_sym_RBRACK, + STATE(7538), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5809), 6, + STATE(6388), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152017] = 10, + [160358] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9543), 1, - anon_sym_with, - ACTIONS(9545), 1, - anon_sym_finally, - ACTIONS(9547), 1, - sym__newline, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10359), 1, + anon_sym_PIPE_RBRACK, + STATE(8323), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5810), 6, + STATE(6389), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152054] = 9, + [160395] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2871), 1, - sym__static_type_identifier, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10361), 1, + anon_sym_GT_RBRACK, + STATE(6354), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6979), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5811), 6, + STATE(6390), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152089] = 10, + [160432] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10132), 1, sym__indent, - ACTIONS(9549), 1, - anon_sym_PIPE_RBRACK, - STATE(6982), 1, + ACTIONS(10363), 1, + anon_sym_RBRACK, + STATE(7522), 1, sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5812), 6, + STATE(6391), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152126] = 10, + [160469] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9551), 1, - sym_identifier, - STATE(6748), 1, - sym_access_modifier, + STATE(4643), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5813), 6, + ACTIONS(6868), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6392), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152163] = 10, + [160504] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10365), 1, sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4429), 1, - sym_method_or_prop_defn, + STATE(8220), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5814), 6, + STATE(6393), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152200] = 10, + [160541] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9555), 1, - anon_sym_COLON, - STATE(6887), 1, - sym_type_arguments, + ACTIONS(10367), 1, + anon_sym_PIPE, + ACTIONS(10369), 1, + anon_sym_PIPE_RPAREN, + STATE(6372), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5815), 6, + STATE(6394), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152237] = 10, + [160578] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9557), 1, - anon_sym_EQ, - ACTIONS(9559), 1, - anon_sym_as, - STATE(6757), 1, - sym_class_as_reference, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10371), 1, + anon_sym_RBRACK, + STATE(8324), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5816), 6, + STATE(6395), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152274] = 10, + [160615] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9561), 1, - anon_sym_DASH_GT, - ACTIONS(9563), 1, - anon_sym_STAR, - STATE(5919), 1, - aux_sym_arguments_spec_repeat1, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10373), 1, + anon_sym_PIPE_RBRACK, + STATE(7518), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5817), 6, + STATE(6396), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152311] = 10, + [160652] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(2425), 1, + STATE(2815), 1, sym_property_or_ident, - STATE(2690), 1, + STATE(4797), 1, sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5818), 6, + STATE(6397), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152348] = 9, + [160689] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3217), 1, - sym__static_type_identifier, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10375), 1, + anon_sym_PIPE_RBRACK, + STATE(7823), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7154), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5819), 6, + STATE(6398), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152383] = 10, + [160726] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9565), 1, - anon_sym_PIPE, - ACTIONS(9567), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10377), 1, + anon_sym_with, + ACTIONS(10379), 1, + anon_sym_finally, + ACTIONS(10381), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5820), 6, + STATE(6399), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152420] = 10, + [160763] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9569), 1, - sym__newline, - ACTIONS(9571), 1, - sym__dedent, - STATE(5903), 1, - aux_sym__class_type_body_repeat1, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10383), 1, + anon_sym_RBRACK, + STATE(7824), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5821), 6, + STATE(6400), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152457] = 10, + [160800] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, + ACTIONS(9970), 1, sym_identifier, - STATE(3686), 1, - sym_field_pattern, - STATE(6993), 1, - sym_long_identifier, + STATE(7846), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5822), 6, + STATE(6401), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152494] = 10, + [160837] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9575), 1, - anon_sym_GT_RBRACK, - ACTIONS(9577), 1, - sym__newline, - STATE(5857), 1, - aux_sym_attribute_set_repeat1, + STATE(4175), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5823), 6, + ACTIONS(6929), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6402), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152531] = 10, + [160872] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5649), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9579), 1, - anon_sym_with, - ACTIONS(9581), 1, - anon_sym_finally, - ACTIONS(9583), 1, - sym__newline, + ACTIONS(10385), 1, + anon_sym_and, + STATE(6406), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5824), 6, + STATE(6403), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152568] = 10, + [160909] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4399), 1, - sym_method_or_prop_defn, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10387), 1, + anon_sym_RBRACK, + STATE(8114), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5825), 6, + STATE(6404), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152605] = 10, + [160946] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9585), 1, - anon_sym_RBRACK, - ACTIONS(9587), 1, + ACTIONS(10132), 1, sym__indent, - STATE(7048), 1, - sym__list_pattern_content, + ACTIONS(10389), 1, + anon_sym_PIPE_RBRACK, + STATE(8115), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5826), 6, + STATE(6405), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152642] = 8, + [160983] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5672), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10385), 1, + anon_sym_and, + STATE(6412), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5827), 6, + STATE(6406), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152675] = 10, + [161020] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9589), 1, - anon_sym_PIPE, - ACTIONS(9591), 1, - sym__dedent, - STATE(6015), 1, - aux_sym_enum_type_cases_repeat1, + ACTIONS(9974), 1, + sym_identifier, + STATE(8040), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5828), 6, + STATE(6407), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152712] = 10, + [161057] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9593), 1, - anon_sym_PIPE_RBRACK, - STATE(7051), 1, - sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5829), 6, + ACTIONS(5711), 3, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6408), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152749] = 10, + [161090] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5179), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9595), 1, - anon_sym_and, - STATE(5834), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10391), 1, + anon_sym_PIPE, + ACTIONS(10393), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5830), 6, + STATE(6409), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152786] = 9, + [161127] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3210), 1, - sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7146), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5831), 6, + ACTIONS(9964), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6410), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152821] = 8, + [161160] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10112), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3197), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5233), 3, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5832), 6, + STATE(6411), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152854] = 10, + [161197] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5658), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9597), 1, - anon_sym_PIPE, - ACTIONS(9599), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10395), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5833), 6, + STATE(6412), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152891] = 9, + aux_sym__function_or_value_defns_repeat1, + [161232] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5195), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9601), 1, - anon_sym_and, + ACTIONS(10142), 1, + sym_identifier, + STATE(5638), 1, + sym_field_pattern, + STATE(7408), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5834), 7, + STATE(6413), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [152926] = 10, + [161269] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9604), 1, - anon_sym_COLON, - STATE(6732), 1, - sym_type_arguments, + ACTIONS(10142), 1, + sym_identifier, + STATE(4316), 1, + sym_field_pattern, + STATE(7262), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5835), 6, + STATE(6414), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152963] = 8, + [161306] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10398), 1, + anon_sym_GT_RBRACK, + ACTIONS(10400), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5268), 3, - anon_sym_and, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5836), 6, + STATE(6415), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [152996] = 10, + aux_sym_attribute_set_repeat1, + [161341] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(4114), 1, - sym_field_pattern, - STATE(7047), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5837), 6, + ACTIONS(10403), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6416), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153033] = 9, + [161374] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9606), 1, - anon_sym_COMMA, - ACTIONS(9609), 1, + ACTIONS(8861), 1, anon_sym_GT, + ACTIONS(10405), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5838), 7, + STATE(6417), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_attributes_repeat1, - [153068] = 10, + aux_sym_types_repeat1, + [161409] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9611), 1, - anon_sym_PIPE, - ACTIONS(9613), 1, - anon_sym_PIPE_RPAREN, - STATE(5820), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5839), 6, + ACTIONS(5562), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6418), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153105] = 10, + [161442] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6184), 1, - anon_sym_GT, - ACTIONS(9615), 1, - anon_sym_and, - STATE(5871), 1, - aux_sym_type_argument_constraints_repeat1, + ACTIONS(10408), 1, + sym__newline, + ACTIONS(10411), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5840), 6, + STATE(6419), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153142] = 8, + aux_sym_record_fields_repeat1, + [161477] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10413), 1, + anon_sym_COLON, + STATE(7284), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9514), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(5841), 6, + STATE(6420), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153175] = 9, + [161514] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8465), 1, - anon_sym_GT, - ACTIONS(9617), 1, - anon_sym_COMMA, + ACTIONS(10112), 1, + sym_identifier, + STATE(2792), 1, + sym_property_or_ident, + STATE(5347), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5842), 7, + STATE(6421), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_types_repeat1, - [153210] = 10, + [161551] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9620), 1, - anon_sym_with, - ACTIONS(9622), 1, - anon_sym_finally, - ACTIONS(9624), 1, - sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5843), 6, + ACTIONS(5597), 3, + sym__newline, + sym__dedent, + anon_sym_interface, + STATE(6422), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153247] = 9, + [161584] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2915), 1, - sym__static_type_identifier, + ACTIONS(10415), 1, + anon_sym_PIPE, + ACTIONS(10417), 1, + anon_sym_PIPE_RPAREN, + STATE(6441), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7098), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5844), 6, + STATE(6423), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153282] = 8, + [161621] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5261), 3, + ACTIONS(5739), 3, + anon_sym_LBRACK_LT, anon_sym_and, anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(5845), 6, + STATE(6424), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153315] = 9, + [161654] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2384), 1, - sym__static_type_identifier, + ACTIONS(10014), 1, + sym_identifier, + STATE(7913), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6376), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5846), 6, + STATE(6425), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153350] = 10, + [161691] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2436), 1, - sym_property_or_ident, - STATE(4440), 1, - sym_method_or_prop_defn, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10419), 1, + anon_sym_PIPE_RBRACK, + STATE(7550), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5847), 6, + STATE(6426), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153387] = 10, + [161728] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - ACTIONS(9626), 1, - anon_sym_RPAREN, - STATE(6950), 1, - sym__expression_block, + ACTIONS(10421), 1, + anon_sym_PIPE, + ACTIONS(10423), 1, + anon_sym_PIPE_RPAREN, + STATE(6511), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5848), 6, + STATE(6427), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153424] = 10, + [161765] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9628), 1, - anon_sym_COLON, - STATE(6926), 1, - sym_type_arguments, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10425), 1, + anon_sym_RPAREN, + STATE(8163), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5849), 6, + STATE(6428), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153461] = 10, + [161802] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9630), 1, - anon_sym_PIPE, - ACTIONS(9632), 1, - anon_sym_PIPE_RPAREN, - STATE(5882), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5850), 6, + ACTIONS(5715), 3, + anon_sym_and, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6429), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153498] = 8, + [161835] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10427), 1, + anon_sym_RBRACK, + STATE(7469), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3199), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(5851), 6, + STATE(6430), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153531] = 10, + [161872] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9634), 1, - anon_sym_PIPE, - ACTIONS(9636), 1, - anon_sym_PIPE_RPAREN, - STATE(5833), 1, - aux_sym_active_pattern_repeat1, + STATE(5007), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5852), 6, + ACTIONS(7707), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6431), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153568] = 9, + [161907] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1411), 1, - sym__static_type_identifier, + ACTIONS(10429), 1, + sym_identifier, + STATE(8245), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7050), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5853), 6, + STATE(6432), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153603] = 8, + [161944] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10431), 1, + anon_sym_COMMA, + ACTIONS(10433), 1, + anon_sym_GT, + STATE(6516), 1, + aux_sym_type_attributes_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3133), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(5854), 6, + STATE(6433), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153636] = 10, + [161981] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5124), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9595), 1, - anon_sym_and, - STATE(5830), 1, - aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5855), 6, + ACTIONS(3485), 3, + sym__newline, + sym__dedent, + anon_sym_PIPE, + STATE(6434), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153673] = 8, + [162014] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3247), 3, + ACTIONS(3544), 3, sym__newline, sym__dedent, anon_sym_PIPE, - STATE(5856), 6, + STATE(6435), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153706] = 10, + [162047] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, + ACTIONS(10435), 1, sym__newline, - ACTIONS(9638), 1, - anon_sym_GT_RBRACK, - STATE(5982), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10438), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5857), 6, + STATE(6436), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153743] = 9, + aux_sym_field_initializers_repeat1, + [162082] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4715), 1, - sym__static_type_identifier, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10440), 1, + anon_sym_PIPE_RBRACK, + STATE(7501), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5312), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5858), 6, + STATE(6437), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153778] = 10, + [162119] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9640), 1, - anon_sym_COLON, - STATE(7209), 1, - sym_type_arguments, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10442), 1, + anon_sym_GT_RBRACK, + STATE(6291), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5859), 6, + STATE(6438), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153815] = 9, + [162156] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3259), 1, + anon_sym_EQ, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9642), 1, - sym__newline, - ACTIONS(9645), 1, - sym__dedent, + ACTIONS(7273), 1, + anon_sym_DOT, + STATE(4197), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5860), 7, + STATE(6439), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_field_initializers_repeat1, - [153850] = 8, + [162193] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(3846), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5233), 3, - sym__newline, - sym__dedent, - anon_sym_and, - STATE(5861), 6, + ACTIONS(8800), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6440), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153883] = 8, + [162228] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10444), 1, + anon_sym_PIPE, + ACTIONS(10446), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5221), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5862), 6, + STATE(6441), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153916] = 10, + [162265] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9647), 1, - anon_sym_COLON, - STATE(7776), 1, - sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5863), 6, + ACTIONS(5759), 3, + anon_sym_LBRACK_LT, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6442), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153953] = 10, + [162298] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9649), 1, - anon_sym_with, - ACTIONS(9651), 1, - anon_sym_finally, - ACTIONS(9653), 1, - sym__newline, + ACTIONS(10142), 1, + sym_identifier, + STATE(4109), 1, + sym_field_pattern, + STATE(7333), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5864), 6, + STATE(6443), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [153990] = 8, + [162335] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10158), 1, + anon_sym_as, + ACTIONS(10448), 1, + anon_sym_EQ, + STATE(8195), 1, + sym_class_as_reference, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5268), 3, - sym__newline, - sym__dedent, - anon_sym_and, - STATE(5865), 6, + STATE(6444), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154023] = 10, + [162372] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9655), 1, - anon_sym_RBRACK, - STATE(7214), 1, - sym__list_element, + ACTIONS(10342), 1, + sym__dedent, + ACTIONS(10450), 1, + anon_sym_COMMA, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5866), 6, + STATE(6445), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154060] = 10, + aux_sym_slice_ranges_repeat1, + [162407] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9657), 1, - anon_sym_PIPE_RBRACK, - STATE(7219), 1, - sym__list_element, + ACTIONS(10453), 1, + sym__newline, + ACTIONS(10456), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5867), 6, + STATE(6446), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154097] = 8, + aux_sym__list_elements_repeat1, + [162442] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5649), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10458), 1, + anon_sym_and, + STATE(6450), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5261), 3, - sym__newline, - sym__dedent, - anon_sym_and, - STATE(5868), 6, + STATE(6447), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154130] = 10, + [162479] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, + ACTIONS(10460), 1, sym_identifier, - STATE(3745), 1, - sym_field_pattern, - STATE(7267), 1, - sym_long_identifier, + STATE(8014), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5869), 6, + STATE(6448), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154167] = 10, + [162516] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(750), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9659), 1, + ACTIONS(10462), 1, sym__newline, - STATE(5878), 1, + ACTIONS(10464), 1, + sym__dedent, + STATE(6446), 1, aux_sym__list_elements_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5870), 6, + STATE(6449), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154204] = 10, + [162553] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5672), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6169), 1, - anon_sym_GT, - ACTIONS(9615), 1, + ACTIONS(10458), 1, anon_sym_and, - STATE(6003), 1, - aux_sym_type_argument_constraints_repeat1, + STATE(6452), 1, + aux_sym__function_or_value_defns_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5871), 6, + STATE(6450), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154241] = 10, + [162590] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9661), 1, - anon_sym_PIPE_RBRACK, - STATE(7036), 1, - sym__list_element, + ACTIONS(10112), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4938), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5872), 6, + STATE(6451), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154278] = 10, + [162627] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5658), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9663), 1, - anon_sym_RBRACK, - STATE(7042), 1, - sym__list_element, + ACTIONS(10466), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5873), 6, + STATE(6452), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154315] = 10, + aux_sym__function_or_value_defns_repeat1, + [162662] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(2436), 1, + STATE(2808), 1, sym_property_or_ident, - STATE(4456), 1, + STATE(3037), 1, sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5874), 6, + STATE(6453), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154352] = 10, + [162699] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9665), 1, - anon_sym_with, - ACTIONS(9667), 1, - anon_sym_finally, - ACTIONS(9669), 1, - sym__newline, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10469), 1, + anon_sym_COLON, + STATE(8178), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5875), 6, + STATE(6454), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154389] = 9, + [162736] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9671), 1, - anon_sym_COMMA, - ACTIONS(9674), 1, - sym__dedent, + ACTIONS(10040), 1, + sym_identifier, + STATE(8185), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5876), 7, + STATE(6455), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [154424] = 9, + [162773] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(946), 1, - sym__static_type_identifier, + ACTIONS(10142), 1, + sym_identifier, + STATE(3888), 1, + sym_field_pattern, + STATE(7499), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7212), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5877), 6, + STATE(6456), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154459] = 9, + [162810] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9676), 1, - sym__newline, - ACTIONS(9679), 1, - sym__dedent, + ACTIONS(10112), 1, + sym_identifier, + STATE(2784), 1, + sym_property_or_ident, + STATE(3201), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5878), 7, + STATE(6457), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__list_elements_repeat1, - [154494] = 10, + [162847] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9659), 1, - sym__newline, - ACTIONS(9681), 1, - sym__dedent, - STATE(5878), 1, - aux_sym__list_elements_repeat1, + ACTIONS(10112), 1, + sym_identifier, + STATE(2792), 1, + sym_property_or_ident, + STATE(5364), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5879), 6, + STATE(6458), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154531] = 10, + [162884] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9493), 1, - sym_identifier, - STATE(6710), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5880), 6, + ACTIONS(5676), 3, + sym__newline, + sym__dedent, + anon_sym_interface, + STATE(6459), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154568] = 9, + [162917] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3897), 1, - sym__static_type_identifier, + ACTIONS(10112), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4946), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6350), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5881), 6, + STATE(6460), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154603] = 10, + [162954] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9683), 1, + ACTIONS(10471), 1, anon_sym_PIPE, - ACTIONS(9685), 1, + ACTIONS(10473), 1, anon_sym_PIPE_RPAREN, - STATE(5806), 1, + STATE(6514), 1, aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5882), 6, + STATE(6461), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154640] = 10, + [162991] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9687), 1, - anon_sym_with, - ACTIONS(9689), 1, - anon_sym_finally, - ACTIONS(9691), 1, - sym__newline, + ACTIONS(10142), 1, + sym_identifier, + STATE(5633), 1, + sym_field_pattern, + STATE(7683), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5883), 6, + STATE(6462), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154677] = 10, + [163028] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9693), 1, - sym__newline, - ACTIONS(9695), 1, - sym__dedent, - STATE(5981), 1, - aux_sym_record_fields_repeat1, + STATE(3332), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5884), 6, + ACTIONS(7528), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6463), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154714] = 10, + [163063] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9485), 1, - sym_identifier, - STATE(6915), 1, - sym_access_modifier, + ACTIONS(10475), 1, + anon_sym_COMMA, + ACTIONS(10477), 1, + anon_sym_RBRACK, + STATE(6380), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5885), 6, + STATE(6464), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154751] = 10, + [163100] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9697), 1, + ACTIONS(10479), 1, anon_sym_PIPE, - ACTIONS(9699), 1, + ACTIONS(10481), 1, anon_sym_PIPE_RPAREN, - STATE(5907), 1, + STATE(6514), 1, aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5886), 6, + STATE(6465), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154788] = 10, + [163137] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2720), 1, - sym_method_or_prop_defn, + STATE(4377), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5887), 6, + ACTIONS(6915), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6466), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154825] = 10, + [163172] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10054), 1, sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2825), 1, - sym_method_or_prop_defn, + STATE(8126), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5888), 6, + STATE(6467), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154862] = 8, + [163209] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10483), 1, + anon_sym_with, + ACTIONS(10485), 1, + anon_sym_finally, + ACTIONS(10487), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5253), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5889), 6, + STATE(6468), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154895] = 10, + [163246] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9701), 1, - anon_sym_with, - ACTIONS(9703), 1, - anon_sym_finally, - ACTIONS(9705), 1, - sym__newline, + ACTIONS(10489), 1, + anon_sym_PIPE, + ACTIONS(10491), 1, + anon_sym_PIPE_RPAREN, + STATE(6461), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5890), 6, + STATE(6469), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154932] = 10, + [163283] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9559), 1, - anon_sym_as, - ACTIONS(9707), 1, - anon_sym_EQ, - STATE(6922), 1, - sym_class_as_reference, + ACTIONS(10065), 1, + sym_identifier, + STATE(8012), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5891), 6, + STATE(6470), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [154969] = 10, + [163320] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(2459), 1, + STATE(2808), 1, sym_property_or_ident, - STATE(4974), 1, + STATE(3173), 1, sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5892), 6, + STATE(6471), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155006] = 10, + [163357] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - ACTIONS(9709), 1, - anon_sym_RPAREN, - STATE(7273), 1, - sym__expression_block, + ACTIONS(10493), 1, + anon_sym_with, + ACTIONS(10495), 1, + anon_sym_finally, + ACTIONS(10497), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5893), 6, + STATE(6472), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155043] = 9, + [163394] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1320), 1, - sym__static_type_identifier, + ACTIONS(10112), 1, + sym_identifier, + STATE(2792), 1, + sym_property_or_ident, + STATE(5333), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7136), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5894), 6, + STATE(6473), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155078] = 10, + [163431] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9569), 1, + ACTIONS(10194), 1, sym__newline, - ACTIONS(9711), 1, - sym__dedent, - STATE(5821), 1, - aux_sym__class_type_body_repeat1, + ACTIONS(10499), 1, + anon_sym_GT_RBRACK, + STATE(6415), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5895), 6, + STATE(6474), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155115] = 9, + [163468] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(846), 1, + STATE(999), 1, sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7168), 2, + ACTIONS(7576), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5896), 6, + STATE(6475), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155150] = 8, + [163503] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10501), 1, + anon_sym_with, + ACTIONS(10503), 1, + anon_sym_finally, + ACTIONS(10505), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5229), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5897), 6, + STATE(6476), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155183] = 10, + [163540] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2818), 1, - sym_method_or_prop_defn, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10507), 1, + anon_sym_RPAREN, + STATE(7316), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5898), 6, + STATE(6477), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155220] = 10, + [163577] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9713), 1, - anon_sym_COMMA, - ACTIONS(9715), 1, - sym__dedent, - STATE(5876), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10509), 1, + anon_sym_RPAREN, + STATE(7477), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5899), 6, + STATE(6478), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155257] = 10, + [163614] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9717), 1, - anon_sym_COMMA, - ACTIONS(9719), 1, - anon_sym_GT, - STATE(5838), 1, - aux_sym_type_attributes_repeat1, + ACTIONS(10511), 1, + anon_sym_PIPE, + ACTIONS(10513), 1, + anon_sym_PIPE_RPAREN, + STATE(6465), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5900), 6, + STATE(6479), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155294] = 10, + [163651] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9721), 1, - anon_sym_PIPE_RBRACK, - STATE(7064), 1, - sym__list_element, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10515), 1, + anon_sym_GT_RBRACK, + STATE(6415), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5901), 6, + STATE(6480), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155331] = 10, + [163688] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9723), 1, - anon_sym_RBRACK, - STATE(7063), 1, - sym__list_element, + STATE(5046), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5902), 6, + ACTIONS(8746), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6481), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155368] = 9, + [163723] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9725), 1, - sym__newline, - ACTIONS(9728), 1, - sym__dedent, + ACTIONS(10158), 1, + anon_sym_as, + ACTIONS(10517), 1, + anon_sym_EQ, + STATE(8130), 1, + sym_class_as_reference, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5903), 7, + STATE(6482), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__class_type_body_repeat1, - [155403] = 10, + [163760] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2819), 1, - sym_method_or_prop_defn, + STATE(5611), 1, + sym_field_pattern, + STATE(8322), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5904), 6, + STATE(6483), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155440] = 8, + [163797] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10519), 1, + anon_sym_PIPE_RBRACK, + STATE(7335), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9730), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(5905), 6, + STATE(6484), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155473] = 10, + [163834] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8162), 1, - anon_sym_COMMA, - ACTIONS(9732), 1, - anon_sym_GT, - STATE(5842), 1, - aux_sym_types_repeat1, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10521), 1, + anon_sym_RBRACK, + STATE(7337), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5906), 6, + STATE(6485), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155510] = 10, + [163871] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9734), 1, - anon_sym_PIPE, - ACTIONS(9736), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10291), 1, + sym__newline, + ACTIONS(10523), 1, + sym__dedent, + STATE(6358), 1, + aux_sym__class_type_body_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5907), 6, + STATE(6486), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155547] = 8, + [163908] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10525), 1, + anon_sym_COLON, + STATE(7187), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5225), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5908), 6, + STATE(6487), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155580] = 10, + [163945] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9738), 1, - anon_sym_POUNDendif, - ACTIONS(9740), 1, - anon_sym_POUNDelse, - STATE(7012), 1, - sym_preproc_else, + ACTIONS(10527), 1, + anon_sym_with, + ACTIONS(10529), 1, + anon_sym_finally, + ACTIONS(10531), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5909), 6, + STATE(6488), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155617] = 8, + [163982] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10112), 1, + sym_identifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4948), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5115), 3, - sym__newline, - sym__dedent, - anon_sym_interface, - STATE(5910), 6, + STATE(6489), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155650] = 9, + [164019] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3652), 1, - sym__static_type_identifier, + ACTIONS(10533), 1, + anon_sym_PIPE, + ACTIONS(10535), 1, + anon_sym_PIPE_RPAREN, + STATE(6500), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8378), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5911), 6, + STATE(6490), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155685] = 10, + [164056] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, + ACTIONS(10537), 1, sym_identifier, - STATE(3940), 1, - sym_field_pattern, - STATE(7047), 1, - sym_long_identifier, + STATE(8210), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5912), 6, + STATE(6491), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155722] = 10, + [164093] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3686), 1, - sym_field_pattern, - STATE(7267), 1, - sym_long_identifier, + ACTIONS(10539), 1, + anon_sym_as, + ACTIONS(10541), 1, + anon_sym_with, + STATE(6181), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5913), 6, + STATE(6492), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155759] = 10, + [164130] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10132), 1, sym__indent, - ACTIONS(9742), 1, - anon_sym_RPAREN, - STATE(7115), 1, - sym__expression_block, + ACTIONS(10543), 1, + anon_sym_PIPE_RBRACK, + STATE(7350), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5914), 6, + STATE(6493), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155796] = 9, + [164167] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9674), 1, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10545), 1, anon_sym_RBRACK, - ACTIONS(9744), 1, - anon_sym_COMMA, + STATE(7352), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5915), 7, + STATE(6494), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_slice_ranges_repeat1, - [155831] = 10, + [164204] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9747), 1, - anon_sym_COLON, - STATE(7467), 1, - sym_type_arguments, + STATE(925), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5916), 6, + ACTIONS(7623), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6495), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155868] = 10, + [164239] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10073), 1, sym_identifier, - STATE(2443), 1, - sym_property_or_ident, - STATE(2827), 1, - sym_method_or_prop_defn, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5917), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [155905] = 8, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, + STATE(8006), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5243), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5918), 6, + STATE(6496), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155938] = 10, + [164276] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9563), 1, - anon_sym_STAR, - ACTIONS(9749), 1, - anon_sym_DASH_GT, - STATE(5995), 1, - aux_sym_arguments_spec_repeat1, + ACTIONS(10142), 1, + sym_identifier, + STATE(5183), 1, + sym_field_pattern, + STATE(8322), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5919), 6, + STATE(6497), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [155975] = 10, + [164313] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10132), 1, sym__indent, - ACTIONS(9751), 1, - anon_sym_RBRACK, - STATE(6745), 1, + ACTIONS(10547), 1, + anon_sym_PIPE_RBRACK, + STATE(8357), 1, sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5920), 6, + STATE(6498), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156012] = 10, + [164350] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9753), 1, + ACTIONS(10549), 1, anon_sym_PIPE, - ACTIONS(9755), 1, + ACTIONS(10551), 1, anon_sym_PIPE_RPAREN, - STATE(5806), 1, + STATE(6514), 1, aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5921), 6, + STATE(6499), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156049] = 10, + [164387] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9757), 1, - sym__newline, - ACTIONS(9759), 1, - sym__dedent, - STATE(5860), 1, - aux_sym_field_initializers_repeat1, + ACTIONS(10553), 1, + anon_sym_PIPE, + ACTIONS(10555), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5922), 6, + STATE(6500), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156086] = 10, + [164424] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9363), 1, + ACTIONS(10557), 1, sym_identifier, - STATE(6431), 1, - sym_field_initializer, - STATE(7499), 1, - sym_long_identifier, + STATE(8216), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5923), 6, + STATE(6501), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156123] = 10, + [164461] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9761), 1, - anon_sym_as, - ACTIONS(9763), 1, - anon_sym_with, - STATE(5789), 1, - sym__object_members, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10559), 1, + anon_sym_RBRACK, + STATE(8358), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5924), 6, + STATE(6502), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156160] = 10, + [164498] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9765), 1, - anon_sym_PIPE_RBRACK, - STATE(6742), 1, - sym__list_element, + ACTIONS(10142), 1, + sym_identifier, + STATE(5183), 1, + sym_field_pattern, + STATE(8389), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5925), 6, + STATE(6503), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156197] = 10, + [164535] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9740), 1, - anon_sym_POUNDelse, - ACTIONS(9767), 1, - anon_sym_POUNDendif, - STATE(7341), 1, - sym_preproc_else, + ACTIONS(10194), 1, + sym__newline, + ACTIONS(10561), 1, + anon_sym_GT_RBRACK, + STATE(6474), 1, + aux_sym_attribute_set_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5926), 6, + STATE(6504), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156234] = 9, + [164572] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(919), 1, + STATE(5433), 1, sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7060), 2, + ACTIONS(9066), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5927), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [156269] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - ACTIONS(9769), 1, - anon_sym_RPAREN, - STATE(7633), 1, - sym__expression_block, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5928), 6, + STATE(6505), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156306] = 10, + [164607] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(4732), 1, - sym_field_pattern, - STATE(7546), 1, - sym_long_identifier, + ACTIONS(10563), 1, + anon_sym_PIPE, + ACTIONS(10565), 1, + anon_sym_PIPE_RPAREN, + STATE(6536), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5929), 6, + STATE(6506), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156343] = 10, + [164644] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5235), 1, - sym_field_pattern, - STATE(6831), 1, - sym_long_identifier, + ACTIONS(10567), 1, + anon_sym_PIPE, + ACTIONS(10569), 1, + anon_sym_PIPE_RPAREN, + STATE(6499), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5930), 6, + STATE(6507), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156380] = 10, + [164681] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9771), 1, - anon_sym_PIPE, - ACTIONS(9773), 1, - anon_sym_PIPE_RPAREN, - STATE(5921), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5931), 6, + ACTIONS(10571), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_when, + STATE(6508), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156417] = 10, + [164714] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2672), 1, - sym_method_or_prop_defn, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10573), 1, + anon_sym_RBRACK, + STATE(7688), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5932), 6, + STATE(6509), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156454] = 10, + [164751] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3259), 1, + anon_sym_EQ2, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9775), 1, - anon_sym_with, - ACTIONS(9777), 1, - anon_sym_finally, - ACTIONS(9779), 1, - sym__newline, + ACTIONS(6609), 1, + anon_sym_DOT, + STATE(3726), 1, + aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5933), 6, + STATE(6510), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156491] = 10, + [164788] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3714), 1, - sym_field_pattern, - STATE(6993), 1, - sym_long_identifier, + ACTIONS(10575), 1, + anon_sym_PIPE, + ACTIONS(10577), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5934), 6, + STATE(6511), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156528] = 10, + [164825] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9559), 1, - anon_sym_as, - ACTIONS(9781), 1, - anon_sym_EQ, - STATE(6761), 1, - sym_class_as_reference, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10579), 1, + anon_sym_COLON, + STATE(7774), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5935), 6, + STATE(6512), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156565] = 9, + [164862] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1418), 1, - sym__static_type_identifier, + ACTIONS(10346), 1, + sym__indent, + ACTIONS(10581), 1, + anon_sym_PIPE_RBRACK, + STATE(7685), 1, + sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7090), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5936), 6, + STATE(6513), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156600] = 10, + [164899] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9471), 1, - sym_identifier, - STATE(7316), 1, - sym_access_modifier, + ACTIONS(10583), 1, + anon_sym_PIPE, + ACTIONS(10586), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5937), 6, + STATE(6514), 7, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156637] = 10, + aux_sym_active_pattern_repeat1, + [164934] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5153), 1, - sym_field_pattern, - STATE(7546), 1, - sym_long_identifier, + ACTIONS(10122), 1, + anon_sym_POUNDelse, + ACTIONS(10588), 1, + anon_sym_POUNDendif, + STATE(8157), 1, + sym_preproc_else, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5938), 6, + STATE(6515), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156674] = 10, + [164971] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9783), 1, - anon_sym_PIPE_RBRACK, - STATE(7268), 1, - sym__list_pattern_content, + ACTIONS(10431), 1, + anon_sym_COMMA, + ACTIONS(10590), 1, + anon_sym_GT, + STATE(6384), 1, + aux_sym_type_attributes_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5939), 6, + STATE(6516), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156711] = 10, + [165008] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9785), 1, + ACTIONS(10260), 1, anon_sym_RBRACK, - STATE(7269), 1, - sym__list_pattern_content, + ACTIONS(10475), 1, + anon_sym_COMMA, + STATE(6464), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5940), 6, + STATE(6517), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156748] = 10, + [165045] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9465), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(7325), 1, - sym_access_modifier, + STATE(2809), 1, + sym_property_or_ident, + STATE(4957), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5941), 6, + STATE(6518), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156785] = 8, + [165082] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10142), 1, + sym_identifier, + STATE(3967), 1, + sym_field_pattern, + STATE(7499), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3187), 3, - sym__newline, - sym__dedent, - anon_sym_PIPE, - STATE(5942), 6, + STATE(6519), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156818] = 10, + [165119] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9459), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(7111), 1, - sym_access_modifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5303), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5943), 6, + STATE(6520), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156855] = 10, + [165156] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9787), 1, + ACTIONS(10592), 1, sym_identifier, - STATE(7328), 1, + STATE(8234), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5944), 6, + STATE(6521), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156892] = 10, + [165193] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9789), 1, - anon_sym_PIPE_RBRACK, - STATE(7299), 1, - sym__list_element, + ACTIONS(10594), 1, + anon_sym_with, + ACTIONS(10596), 1, + anon_sym_finally, + ACTIONS(10598), 1, + sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5945), 6, + STATE(6522), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156929] = 8, + [165230] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(7410), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5283), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5946), 6, + STATE(6523), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156962] = 10, + [165267] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9791), 1, - anon_sym_RBRACK, - STATE(7300), 1, - sym__list_element, + ACTIONS(10142), 1, + sym_identifier, + STATE(5183), 1, + sym_field_pattern, + STATE(7408), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5947), 6, + STATE(6524), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [156999] = 10, + [165304] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10142), 1, sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4937), 1, - sym_method_or_prop_defn, + STATE(3875), 1, + sym_field_pattern, + STATE(7499), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5948), 6, + STATE(6525), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157036] = 10, + [165341] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9793), 1, - anon_sym_COLON, - STATE(7104), 1, - sym_type_arguments, + ACTIONS(10112), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5278), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5949), 6, + STATE(6526), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157073] = 8, + [165378] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10602), 1, + sym_identifier, + STATE(8230), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5292), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5950), 6, + STATE(6527), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157106] = 10, + [165415] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9795), 1, - anon_sym_RBRACK, - STATE(7457), 1, - sym__list_element, + ACTIONS(10142), 1, + sym_identifier, + STATE(5557), 1, + sym_field_pattern, + STATE(7778), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5951), 6, + STATE(6528), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157143] = 10, + [165452] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(9797), 1, - anon_sym_PIPE_RBRACK, - STATE(7461), 1, - sym__list_element, + ACTIONS(10604), 1, + anon_sym_PIPE, + ACTIONS(10606), 1, + anon_sym_PIPE_RPAREN, + STATE(6534), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5952), 6, + STATE(6529), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157180] = 9, + [165489] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1522), 1, - sym__static_type_identifier, + ACTIONS(8076), 1, + anon_sym_LT2, + ACTIONS(10608), 1, + anon_sym_COLON, + STATE(7280), 1, + sym_type_arguments, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7194), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5953), 6, + STATE(6530), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157215] = 10, + [165526] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5131), 1, - sym_field_pattern, - STATE(7246), 1, - sym_long_identifier, + STATE(4447), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5954), 6, + ACTIONS(5973), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6531), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157252] = 8, + [165561] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10122), 1, + anon_sym_POUNDelse, + ACTIONS(10610), 1, + anon_sym_POUNDendif, + STATE(7421), 1, + sym_preproc_else, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5188), 3, - sym__newline, - sym__dedent, - anon_sym_interface, - STATE(5955), 6, + STATE(6532), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157285] = 10, + [165598] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(838), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2425), 1, - sym_property_or_ident, - STATE(2790), 1, - sym_method_or_prop_defn, + ACTIONS(10462), 1, + sym__newline, + STATE(6446), 1, + aux_sym__list_elements_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5956), 6, + STATE(6533), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157322] = 10, + [165635] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3903), 1, - sym_field_pattern, - STATE(6703), 1, - sym_long_identifier, + ACTIONS(10612), 1, + anon_sym_PIPE, + ACTIONS(10614), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5957), 6, + STATE(6534), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157359] = 10, + [165672] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5152), 1, - sym_field_pattern, - STATE(7246), 1, - sym_long_identifier, + ACTIONS(10258), 1, + anon_sym_COMMA, + ACTIONS(10477), 1, + sym__dedent, + STATE(6445), 1, + aux_sym_slice_ranges_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5958), 6, + STATE(6535), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157396] = 10, + [165709] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9559), 1, - anon_sym_as, - ACTIONS(9799), 1, - anon_sym_EQ, - STATE(7142), 1, - sym_class_as_reference, + ACTIONS(10616), 1, + anon_sym_PIPE, + ACTIONS(10618), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5959), 6, + STATE(6536), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157433] = 10, + [165746] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4534), 1, - sym_method_or_prop_defn, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10620), 1, + anon_sym_RPAREN, + STATE(7662), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5960), 6, + STATE(6537), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157470] = 9, + [165783] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4570), 1, - sym__static_type_identifier, + ACTIONS(9933), 1, + sym_identifier, + STATE(6649), 1, + sym_field_initializer, + STATE(8308), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7118), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5961), 6, + STATE(6538), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157505] = 10, + [165820] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9801), 1, - anon_sym_PIPE, - ACTIONS(9803), 1, - anon_sym_PIPE_RPAREN, - STATE(5997), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10142), 1, + sym_identifier, + STATE(4314), 1, + sym_field_pattern, + STATE(7262), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5962), 6, + STATE(6539), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157542] = 9, + [165857] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1200), 1, - sym__static_type_identifier, + ACTIONS(10112), 1, + sym_identifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5317), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7176), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5963), 6, + STATE(6540), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157577] = 8, + [165894] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10142), 1, + sym_identifier, + STATE(5576), 1, + sym_field_pattern, + STATE(8389), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5275), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5964), 6, + STATE(6541), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157610] = 8, + [165931] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10272), 1, + sym__newline, + ACTIONS(10622), 1, + sym__dedent, + STATE(6436), 1, + aux_sym_field_initializers_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5209), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5965), 6, + STATE(6542), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157643] = 10, + [165968] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9717), 1, - anon_sym_COMMA, - ACTIONS(9805), 1, - anon_sym_GT, - STATE(5900), 1, - aux_sym_type_attributes_repeat1, + ACTIONS(10142), 1, + sym_identifier, + STATE(5451), 1, + sym_field_pattern, + STATE(7683), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5966), 6, + STATE(6543), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157680] = 10, + [166005] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9807), 1, + ACTIONS(10624), 1, sym_identifier, - STATE(6704), 1, + STATE(7858), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5967), 6, + STATE(6544), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157717] = 10, + [166042] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9451), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(7383), 1, - sym_access_modifier, + STATE(2780), 1, + sym_property_or_ident, + STATE(5291), 1, + sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5968), 6, + STATE(6545), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157754] = 10, + [166079] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4931), 1, - sym_method_or_prop_defn, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10626), 1, + anon_sym_RBRACK, + STATE(7707), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5969), 6, + STATE(6546), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157791] = 10, + [166116] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9809), 1, - anon_sym_PIPE, - ACTIONS(9811), 1, - anon_sym_PIPE_RPAREN, - STATE(5991), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10628), 1, + anon_sym_PIPE_RBRACK, + STATE(7705), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5970), 6, + STATE(6547), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157828] = 10, + [166153] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10112), 1, sym_identifier, - STATE(2456), 1, + STATE(2792), 1, sym_property_or_ident, - STATE(4899), 1, + STATE(5371), 1, sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5971), 6, + STATE(6548), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157865] = 10, + [166190] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9447), 1, - sym_identifier, - STATE(7391), 1, - sym_access_modifier, + ACTIONS(10630), 1, + anon_sym_PIPE, + ACTIONS(10632), 1, + anon_sym_PIPE_RPAREN, + STATE(6554), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5972), 6, + STATE(6549), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157902] = 8, + [166227] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10634), 1, + anon_sym_PIPE, + ACTIONS(10636), 1, + anon_sym_PIPE_RPAREN, + STATE(6359), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5215), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5973), 6, + STATE(6550), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157935] = 8, + [166264] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + STATE(1216), 1, + sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5202), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5974), 6, + ACTIONS(7512), 2, + anon_sym_CARET, + anon_sym_SQUOTE, + STATE(6551), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [157968] = 8, + [166299] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10142), 1, + sym_identifier, + STATE(5405), 1, + sym_field_pattern, + STATE(8389), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5062), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5975), 6, + STATE(6552), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158001] = 10, + [166336] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - ACTIONS(9813), 1, - anon_sym_RPAREN, - STATE(6765), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5976), 6, + ACTIONS(5591), 3, + sym__newline, + sym__dedent, + anon_sym_interface, + STATE(6553), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158038] = 10, + [166369] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - ACTIONS(9815), 1, - anon_sym_RPAREN, - STATE(7518), 1, - sym__expression_block, + ACTIONS(10638), 1, + anon_sym_PIPE, + ACTIONS(10640), 1, + anon_sym_PIPE_RPAREN, + STATE(6514), 1, + aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5977), 6, + STATE(6554), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158075] = 8, + [166406] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10642), 1, + anon_sym_PIPE_RBRACK, + STATE(7334), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9817), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_when, - STATE(5978), 6, + STATE(6555), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158108] = 10, + [166443] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, + ACTIONS(4953), 1, aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9819), 1, + ACTIONS(10644), 1, sym_identifier, - STATE(7394), 1, + STATE(8249), 1, sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5979), 6, + STATE(6556), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158145] = 9, + [166480] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4600), 1, + STATE(3661), 1, sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7070), 2, + ACTIONS(7584), 2, anon_sym_CARET, anon_sym_SQUOTE, - STATE(5980), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [158180] = 10, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(8338), 1, - sym__dedent, - ACTIONS(9821), 1, - sym__newline, - STATE(6024), 1, - aux_sym_record_fields_repeat1, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(5981), 6, + STATE(6557), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158217] = 9, + [166515] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9823), 1, - anon_sym_GT_RBRACK, - ACTIONS(9825), 1, - sym__newline, + ACTIONS(10132), 1, + sym__indent, + ACTIONS(10646), 1, + anon_sym_RBRACK, + STATE(7332), 1, + sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5982), 7, + STATE(6558), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_attribute_set_repeat1, - [158252] = 9, + [166552] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2450), 1, - sym__static_type_identifier, + ACTIONS(10162), 1, + sym__indent, + ACTIONS(10648), 1, + anon_sym_RPAREN, + STATE(7389), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6388), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5983), 6, + STATE(6559), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158287] = 9, + [166589] = 10, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4953), 1, + aux_sym_access_modifier_token1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3353), 1, - sym__static_type_identifier, + ACTIONS(9966), 1, + sym_identifier, + STATE(7855), 1, + sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7018), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5984), 6, + STATE(6560), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158322] = 10, + [166626] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(4732), 1, - sym_field_pattern, - STATE(7246), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5985), 6, + ACTIONS(3800), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6561), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158359] = 10, + [166658] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4883), 1, - sym_method_or_prop_defn, + ACTIONS(10650), 1, + sym__indent, + STATE(1720), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5986), 6, + STATE(6562), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158396] = 10, + [166692] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9439), 1, - sym_identifier, - STATE(7435), 1, - sym_access_modifier, + ACTIONS(10652), 1, + sym__indent, + STATE(770), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5987), 6, + STATE(6563), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158433] = 10, + [166726] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9828), 1, - sym_identifier, - STATE(7213), 1, - sym_access_modifier, + ACTIONS(10654), 1, + sym__indent, + STATE(1763), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5988), 6, + STATE(6564), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158470] = 9, + [166760] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4563), 1, - sym__static_type_identifier, + ACTIONS(10656), 1, + sym__indent, + STATE(1760), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7108), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5989), 6, + STATE(6565), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158505] = 10, + [166794] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9481), 1, - sym_identifier, - STATE(7443), 1, - sym_access_modifier, + ACTIONS(10658), 1, + sym__indent, + STATE(1676), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5990), 6, + STATE(6566), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158542] = 10, + [166828] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9830), 1, - anon_sym_PIPE, - ACTIONS(9832), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(8370), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5991), 6, + STATE(6567), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158579] = 10, + [166862] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5179), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9834), 1, - anon_sym_and, - STATE(6102), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(8369), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5992), 6, + STATE(6568), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158616] = 10, + [166896] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9836), 1, + ACTIONS(10662), 1, sym_identifier, - STATE(7446), 1, - sym_access_modifier, + STATE(3351), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5993), 6, + STATE(6569), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158653] = 9, + [166930] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1141), 1, - sym__static_type_identifier, + ACTIONS(10664), 1, + sym__indent, + STATE(1387), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7184), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(5994), 6, + STATE(6570), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158688] = 9, + [166964] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9838), 1, - anon_sym_DASH_GT, - ACTIONS(9840), 1, - anon_sym_STAR, + ACTIONS(10162), 1, + sym__indent, + STATE(8337), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5995), 7, + STATE(6571), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_arguments_spec_repeat1, - [158723] = 10, + [166998] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9843), 1, - anon_sym_PIPE, - ACTIONS(9845), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(8356), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5996), 6, + STATE(6572), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158760] = 10, + [167032] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9847), 1, - anon_sym_PIPE, - ACTIONS(9849), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10668), 1, + sym__indent, + STATE(6364), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5997), 6, + STATE(6573), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158797] = 10, + [167066] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4524), 1, - sym_method_or_prop_defn, + ACTIONS(10664), 1, + sym__indent, + STATE(1328), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(5998), 6, + STATE(6574), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158834] = 8, + [167100] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5239), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(5999), 6, + ACTIONS(10670), 2, + ts_builtin_sym_end, + anon_sym_namespace, + STATE(6575), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158867] = 10, + [167132] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9427), 1, + ACTIONS(10662), 1, sym_identifier, - STATE(7476), 1, - sym_access_modifier, + STATE(393), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6000), 6, + STATE(6576), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158904] = 10, + [167166] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10672), 1, sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4879), 1, - sym_method_or_prop_defn, + STATE(410), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6001), 6, + STATE(6577), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158941] = 10, + [167200] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9423), 1, - sym_identifier, - STATE(7482), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6002), 6, + ACTIONS(10674), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6578), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [158978] = 9, + [167232] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6162), 1, - anon_sym_GT, - ACTIONS(9851), 1, - anon_sym_and, + ACTIONS(10676), 1, + anon_sym_EQ, + ACTIONS(10678), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6003), 7, + STATE(6579), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_type_argument_constraints_repeat1, - [159013] = 8, + [167266] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10680), 1, + sym__indent, + STATE(3326), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3169), 3, - sym__newline, - anon_sym_with, - anon_sym_finally, - STATE(6004), 6, + STATE(6580), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159046] = 10, + [167300] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9854), 1, - anon_sym_PIPE, - ACTIONS(9856), 1, - anon_sym_PIPE_RPAREN, - STATE(5996), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10682), 1, + sym__indent, + STATE(945), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6005), 6, + STATE(6581), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159083] = 10, + [167334] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9858), 1, - sym_identifier, - STATE(7484), 1, - sym_access_modifier, + ACTIONS(8664), 1, + anon_sym_member, + ACTIONS(8668), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6006), 6, + STATE(6582), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159120] = 10, + [167368] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9860), 1, - anon_sym_with, - ACTIONS(9862), 1, - anon_sym_finally, - ACTIONS(9864), 1, - sym__newline, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(10684), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6007), 6, + STATE(6583), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159157] = 9, + [167402] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3710), 1, - sym__static_type_identifier, + ACTIONS(10680), 1, + sym__indent, + STATE(3287), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6330), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6008), 6, + STATE(6584), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159192] = 10, + [167436] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4944), 1, - sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6009), 6, + ACTIONS(8996), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6585), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159229] = 10, + [167468] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9413), 1, - sym_identifier, - STATE(7510), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6010), 6, + ACTIONS(10686), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6586), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159266] = 10, + [167500] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9757), 1, - sym__newline, - ACTIONS(9866), 1, - sym__dedent, - STATE(5922), 1, - aux_sym_field_initializers_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6011), 6, + ACTIONS(878), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6587), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159303] = 10, + [167532] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9740), 1, - anon_sym_POUNDelse, - ACTIONS(9868), 1, - anon_sym_POUNDendif, - STATE(7442), 1, - sym_preproc_else, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6012), 6, + ACTIONS(10688), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6588), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159340] = 10, + [167564] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9409), 1, - sym_identifier, - STATE(7515), 1, - sym_access_modifier, + ACTIONS(10664), 1, + sym__indent, + STATE(1259), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6013), 6, + STATE(6589), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159377] = 9, + [167598] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3433), 1, - sym__static_type_identifier, + ACTIONS(10664), 1, + sym__indent, + STATE(1275), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8404), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6014), 6, + STATE(6590), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159412] = 10, + [167632] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9589), 1, - anon_sym_PIPE, - ACTIONS(9870), 1, - sym__dedent, - STATE(5807), 1, - aux_sym_enum_type_cases_repeat1, + ACTIONS(10690), 1, + anon_sym_with, + ACTIONS(10692), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6015), 6, + STATE(6591), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159449] = 10, + [167666] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9713), 1, - anon_sym_COMMA, - ACTIONS(9872), 1, - sym__dedent, - STATE(5899), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10664), 1, + sym__indent, + STATE(1320), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6016), 6, + STATE(6592), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159486] = 10, + [167700] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2459), 1, - sym_property_or_ident, - STATE(4934), 1, - sym_method_or_prop_defn, + ACTIONS(10694), 1, + sym__newline, + ACTIONS(10696), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6017), 6, + STATE(6593), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159523] = 10, + [167734] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9874), 1, - sym_identifier, - STATE(7517), 1, - sym_access_modifier, + ACTIONS(10652), 1, + sym__indent, + STATE(661), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6018), 6, + STATE(6594), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159560] = 10, + [167768] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3940), 1, - sym_field_pattern, - STATE(6703), 1, - sym_long_identifier, + ACTIONS(10698), 1, + sym__indent, + STATE(1691), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6019), 6, + STATE(6595), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159597] = 9, + [167802] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4303), 1, - sym__static_type_identifier, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10702), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6340), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6020), 6, + STATE(6596), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159632] = 10, + [167836] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, + ACTIONS(10704), 1, sym_identifier, - STATE(3623), 1, - sym_field_pattern, - STATE(7590), 1, + STATE(405), 1, sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6021), 6, + STATE(6597), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159669] = 10, + [167870] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9715), 1, - anon_sym_RBRACK, - ACTIONS(9876), 1, - anon_sym_COMMA, - STATE(5915), 1, - aux_sym_slice_ranges_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6022), 6, + ACTIONS(10398), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6598), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159706] = 10, + [167902] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9401), 1, - sym_identifier, - STATE(7543), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6023), 6, + ACTIONS(10706), 2, + sym__newline, + anon_sym_GT_RBRACK, + STATE(6599), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159743] = 9, + [167934] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9878), 1, - sym__newline, - ACTIONS(9881), 1, - sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6024), 7, + ACTIONS(8859), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6600), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym_record_fields_repeat1, - [159778] = 10, + [167966] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2456), 1, - sym_property_or_ident, - STATE(4857), 1, - sym_method_or_prop_defn, + ACTIONS(10658), 1, + sym__indent, + STATE(1687), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6025), 6, + STATE(6601), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159815] = 10, + [168000] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9397), 1, - sym_identifier, - STATE(7548), 1, - sym_access_modifier, + ACTIONS(10652), 1, + sym__indent, + STATE(575), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6026), 6, + STATE(6602), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159852] = 10, + [168034] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4957), 1, - sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6027), 6, + ACTIONS(10708), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6603), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159889] = 10, + [168066] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9883), 1, - sym_identifier, - STATE(7550), 1, - sym_access_modifier, + ACTIONS(10652), 1, + sym__indent, + STATE(592), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6028), 6, + STATE(6604), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159926] = 9, + [168100] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3778), 1, - sym__static_type_identifier, + ACTIONS(10710), 1, + sym_identifier, + STATE(3037), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6366), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6029), 6, + STATE(6605), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159961] = 10, + [168134] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9885), 1, - anon_sym_PIPE, - ACTIONS(9887), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10712), 1, + anon_sym_member, + ACTIONS(10714), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6030), 6, + STATE(6606), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [159998] = 10, + [168168] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9889), 1, - anon_sym_PIPE, - ACTIONS(9891), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6031), 6, + ACTIONS(10716), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6607), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160035] = 10, + [168200] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4520), 1, - sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6032), 6, + ACTIONS(8839), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6608), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160072] = 10, + [168232] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4966), 1, - sym_method_or_prop_defn, + ACTIONS(10718), 1, + sym__indent, + STATE(2025), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6033), 6, + STATE(6609), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160109] = 10, + [168266] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9383), 1, - sym_identifier, - STATE(7576), 1, - sym_access_modifier, + ACTIONS(10654), 1, + sym__indent, + STATE(1781), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6034), 6, + STATE(6610), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160146] = 10, + [168300] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5284), 1, - sym_field_pattern, - STATE(6831), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6035), 6, + ACTIONS(10720), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6611), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160183] = 10, + [168332] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9375), 1, - sym_identifier, - STATE(7581), 1, - sym_access_modifier, + ACTIONS(10684), 1, + anon_sym_new, + ACTIONS(10722), 1, + anon_sym_LPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6036), 6, + STATE(6612), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160220] = 10, + [168366] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3448), 1, - sym_field_pattern, - STATE(7590), 1, - sym_long_identifier, + ACTIONS(10664), 1, + sym__indent, + STATE(1333), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6037), 6, + STATE(6613), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160257] = 10, + [168400] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9893), 1, - anon_sym_PIPE, - ACTIONS(9895), 1, - anon_sym_PIPE_RPAREN, - STATE(6071), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10724), 1, + sym__newline, + ACTIONS(10726), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6038), 6, + STATE(6614), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160294] = 10, + [168434] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9897), 1, - sym_identifier, - STATE(7583), 1, - sym_access_modifier, + ACTIONS(10722), 1, + anon_sym_LPAREN, + ACTIONS(10728), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6039), 6, + STATE(6615), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160331] = 10, + [168468] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2439), 1, - sym_property_or_ident, - STATE(4508), 1, - sym_method_or_prop_defn, + ACTIONS(10730), 1, + sym__indent, + STATE(6435), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6040), 6, + STATE(6616), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160368] = 9, + [168502] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3978), 1, - sym__static_type_identifier, + ACTIONS(10718), 1, + sym__indent, + STATE(1706), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6398), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6041), 6, + STATE(6617), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160403] = 10, + [168536] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9899), 1, - anon_sym_PIPE, - ACTIONS(9901), 1, - anon_sym_PIPE_RPAREN, - STATE(6052), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10732), 1, + sym__indent, + STATE(1585), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6042), 6, + STATE(6618), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160440] = 10, + [168570] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2937), 1, - anon_sym_EQ, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6760), 1, - anon_sym_DOT, - STATE(3801), 1, - aux_sym_long_identifier_repeat1, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(10728), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6043), 6, + STATE(6619), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160477] = 10, + [168604] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9903), 1, - anon_sym_PIPE, - ACTIONS(9905), 1, - anon_sym_PIPE_RPAREN, - STATE(6030), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10734), 1, + sym__indent, + STATE(2182), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6044), 6, + STATE(6620), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160514] = 9, + [168638] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4668), 1, - sym__static_type_identifier, + ACTIONS(10736), 1, + anon_sym_PIPE, + ACTIONS(10738), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8242), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6045), 6, + STATE(6621), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160549] = 10, + [168672] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9907), 1, - anon_sym_GT_RBRACK, - STATE(5982), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10740), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6046), 6, + STATE(6622), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160586] = 9, + [168706] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4580), 1, - sym__static_type_identifier, + ACTIONS(10722), 1, + anon_sym_LPAREN, + ACTIONS(10742), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7204), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6047), 6, + STATE(6623), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160621] = 8, + [168740] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(10742), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5249), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6048), 6, + STATE(6624), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160654] = 10, + [168774] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10664), 1, sym__indent, - ACTIONS(9909), 1, - anon_sym_RPAREN, - STATE(7551), 1, + STATE(1369), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6049), 6, + STATE(6625), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160691] = 9, + [168808] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2870), 1, - sym__static_type_identifier, + ACTIONS(10666), 1, + sym__indent, + STATE(8148), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(6155), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6050), 6, + STATE(6626), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160726] = 10, + [168842] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9911), 1, - anon_sym_GT_RBRACK, - STATE(5982), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10730), 1, + sym__indent, + STATE(6659), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6051), 6, + STATE(6627), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160763] = 10, + [168876] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9913), 1, - anon_sym_PIPE, - ACTIONS(9915), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10722), 1, + anon_sym_LPAREN, + ACTIONS(10744), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6052), 6, + STATE(6628), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160800] = 10, + [168910] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2937), 1, - anon_sym_EQ2, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6073), 1, - anon_sym_DOT, - STATE(3331), 1, - aux_sym_long_identifier_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6053), 6, + ACTIONS(7934), 2, + sym__newline, + sym__dedent, + STATE(6629), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160837] = 10, + [168942] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2447), 1, - sym_property_or_ident, - STATE(4977), 1, - sym_method_or_prop_defn, + ACTIONS(8620), 1, + anon_sym_LPAREN, + ACTIONS(10744), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6054), 6, + STATE(6630), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160874] = 10, + [168976] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9917), 1, - anon_sym_PIPE, - ACTIONS(9919), 1, - anon_sym_PIPE_RPAREN, - STATE(6031), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10718), 1, + sym__indent, + STATE(1707), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6055), 6, + STATE(6631), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160911] = 10, + [169010] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10746), 1, sym__indent, - ACTIONS(9921), 1, - anon_sym_PIPE_RBRACK, - STATE(7566), 1, - sym__list_element, + STATE(1945), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6056), 6, + STATE(6632), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160948] = 10, + [169044] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(4732), 1, - sym_field_pattern, - STATE(6831), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6057), 6, + ACTIONS(7942), 2, + sym__newline, + sym__dedent, + STATE(6633), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [160985] = 10, + [169076] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9923), 1, - sym_identifier, - STATE(7302), 1, - sym_access_modifier, + ACTIONS(10680), 1, + sym__indent, + STATE(3140), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6058), 6, + STATE(6634), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161022] = 10, + [169110] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9872), 1, - anon_sym_RBRACK, - ACTIONS(9876), 1, - anon_sym_COMMA, - STATE(6022), 1, - aux_sym_slice_ranges_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(7674), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6059), 6, + STATE(6635), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161059] = 10, + [169144] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(3449), 1, - sym_field_pattern, - STATE(7590), 1, - sym_long_identifier, + ACTIONS(10680), 1, + sym__indent, + STATE(2970), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6060), 6, + STATE(6636), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161096] = 10, + [169178] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, + ACTIONS(10668), 1, sym__indent, - ACTIONS(9925), 1, - anon_sym_PIPE_RBRACK, - STATE(7591), 1, - sym__list_pattern_content, + STATE(6297), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6061), 6, + STATE(6637), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161133] = 10, + [169212] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, + ACTIONS(10718), 1, sym__indent, - ACTIONS(9927), 1, - anon_sym_RBRACK, - STATE(7597), 1, - sym__list_pattern_content, + STATE(1899), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6062), 6, + STATE(6638), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161170] = 10, + [169246] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10718), 1, sym__indent, - ACTIONS(9929), 1, - anon_sym_RPAREN, - STATE(7450), 1, + STATE(1600), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6063), 6, + STATE(6639), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161207] = 10, + [169280] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9931), 1, - anon_sym_GT_RBRACK, - STATE(6087), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10710), 1, + sym_identifier, + STATE(3173), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6064), 6, + STATE(6640), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161244] = 10, + [169314] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9933), 1, - anon_sym_GT_RBRACK, - STATE(6046), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(7638), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6065), 6, + STATE(6641), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161281] = 10, + [169348] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9935), 1, - anon_sym_PIPE, - ACTIONS(9937), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6066), 6, + ACTIONS(10748), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6642), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161318] = 9, + [169380] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(3281), 1, - sym__static_type_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7026), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6067), 6, + ACTIONS(10750), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6643), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161353] = 10, + [169412] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5124), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9834), 1, - anon_sym_and, - STATE(5992), 1, - aux_sym__function_or_value_defns_repeat1, + ACTIONS(10680), 1, + sym__indent, + STATE(3280), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6068), 6, + STATE(6644), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161390] = 8, + [169446] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10734), 1, + sym__indent, + STATE(2184), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5257), 3, - anon_sym_LBRACK_LT, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6069), 6, + STATE(6645), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161423] = 10, + [169480] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, + ACTIONS(10718), 1, sym__indent, - ACTIONS(9939), 1, - anon_sym_RBRACK, - STATE(7706), 1, - sym__list_pattern_content, + STATE(1927), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6070), 6, + STATE(6646), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161460] = 10, + [169514] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9941), 1, - anon_sym_PIPE, - ACTIONS(9943), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6071), 6, + ACTIONS(10342), 2, + sym__dedent, + anon_sym_COMMA, + STATE(6647), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161497] = 9, + [169546] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(5046), 1, - sym__static_type_identifier, + ACTIONS(10668), 1, + sym__indent, + STATE(6243), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8459), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6072), 6, + STATE(6648), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161532] = 10, + [169580] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9945), 1, - anon_sym_PIPE_RBRACK, - STATE(7717), 1, - sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6073), 6, + ACTIONS(10438), 2, + sym__newline, + sym__dedent, + STATE(6649), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161569] = 10, + [169612] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10664), 1, sym__indent, - ACTIONS(9947), 1, - anon_sym_PIPE_RBRACK, - STATE(7628), 1, - sym__list_element, + STATE(1090), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6074), 6, + STATE(6650), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161606] = 10, + [169646] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10664), 1, sym__indent, - ACTIONS(9949), 1, - anon_sym_RBRACK, - STATE(7629), 1, - sym__list_element, + STATE(1227), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6075), 6, + STATE(6651), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161643] = 10, + [169680] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5120), 1, - sym_field_pattern, - STATE(7727), 1, - sym_long_identifier, + ACTIONS(10666), 1, + sym__indent, + STATE(7602), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6076), 6, + STATE(6652), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161680] = 10, + [169714] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9951), 1, - sym_identifier, - STATE(7650), 1, - sym_access_modifier, + ACTIONS(10668), 1, + sym__indent, + STATE(6304), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6077), 6, + STATE(6653), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161717] = 10, + [169748] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9953), 1, - sym_identifier, - STATE(7656), 1, - sym_access_modifier, + ACTIONS(10752), 1, + anon_sym_COLON, + ACTIONS(10754), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6078), 6, + STATE(6654), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161754] = 10, + [169782] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9955), 1, - anon_sym_PIPE, - ACTIONS(9957), 1, - anon_sym_PIPE_RPAREN, - STATE(6066), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(7564), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6079), 6, + STATE(6655), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161791] = 10, + [169816] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5006), 1, - sym_field_pattern, - STATE(7813), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6080), 6, + ACTIONS(10756), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6656), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161828] = 10, + [169848] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9959), 1, - anon_sym_PIPE, - ACTIONS(9961), 1, - anon_sym_PIPE_RPAREN, - STATE(6089), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6081), 6, + ACTIONS(10758), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6657), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161865] = 10, + [169880] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9963), 1, - anon_sym_PIPE, - ACTIONS(9965), 1, - anon_sym_PIPE_RPAREN, - STATE(6101), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10652), 1, + sym__indent, + STATE(778), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6082), 6, + STATE(6658), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161902] = 10, + [169914] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9967), 1, - sym_identifier, - STATE(7670), 1, - sym_access_modifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6083), 6, + ACTIONS(7938), 2, + sym__newline, + sym__dedent, + STATE(6659), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161939] = 10, + [169946] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10718), 1, sym__indent, - ACTIONS(9969), 1, - anon_sym_RPAREN, - STATE(7416), 1, + STATE(1961), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6084), 6, + STATE(6660), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [161976] = 9, + [169980] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(4034), 1, - sym__static_type_identifier, + ACTIONS(10730), 1, + sym__indent, + STATE(6680), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5493), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6085), 6, + STATE(6661), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162011] = 10, + [170014] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9971), 1, - sym_identifier, - STATE(7674), 1, - sym_access_modifier, + ACTIONS(10668), 1, + sym__indent, + STATE(6343), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6086), 6, + STATE(6662), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162048] = 10, + [170048] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9973), 1, - anon_sym_GT_RBRACK, - STATE(5982), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10680), 1, + sym__indent, + STATE(3132), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6087), 6, + STATE(6663), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162085] = 9, + [170082] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(2963), 1, - sym__static_type_identifier, + ACTIONS(10718), 1, + sym__indent, + STATE(1962), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7038), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6088), 6, + STATE(6664), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162120] = 10, + [170116] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9975), 1, - anon_sym_PIPE, - ACTIONS(9977), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(7524), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6089), 6, + STATE(6665), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162157] = 10, + [170150] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9979), 1, - sym_identifier, - STATE(7685), 1, - sym_access_modifier, + ACTIONS(10718), 1, + sym__indent, + STATE(1714), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6090), 6, + STATE(6666), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162194] = 10, + [170184] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4479), 1, - aux_sym_access_modifier_token1, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9981), 1, - sym_identifier, - STATE(7689), 1, - sym_access_modifier, + ACTIONS(10732), 1, + sym__indent, + STATE(1116), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6091), 6, + STATE(6667), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162231] = 10, + [170218] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9983), 1, - anon_sym_with, - ACTIONS(9985), 1, - anon_sym_finally, - ACTIONS(9987), 1, - sym__newline, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6092), 6, + ACTIONS(10351), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6668), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162268] = 10, + [170250] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10710), 1, sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5078), 1, - sym_method_or_prop_defn, + STATE(3130), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6093), 6, + STATE(6669), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162305] = 10, + [170284] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7557), 1, - anon_sym_LT2, - ACTIONS(9989), 1, - anon_sym_COLON, - STATE(7334), 1, - sym_type_arguments, + ACTIONS(10680), 1, + sym__indent, + STATE(3089), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6094), 6, + STATE(6670), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162342] = 10, + [170318] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5049), 1, - sym_field_pattern, - STATE(7546), 1, - sym_long_identifier, + ACTIONS(10668), 1, + sym__indent, + STATE(6488), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6095), 6, + STATE(6671), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162379] = 10, + [170352] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9991), 1, - anon_sym_PIPE_RBRACK, - STATE(7552), 1, - sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6096), 6, + ACTIONS(10760), 2, + anon_sym_EQ, + anon_sym_COLON, + STATE(6672), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162416] = 10, + [170384] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9587), 1, - sym__indent, - ACTIONS(9993), 1, - anon_sym_RBRACK, - STATE(7458), 1, - sym__list_pattern_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6097), 6, + ACTIONS(10762), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6673), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162453] = 10, + [170416] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5130), 1, - sym_method_or_prop_defn, + ACTIONS(10764), 1, + anon_sym_do, + ACTIONS(10766), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6098), 6, + STATE(6674), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162490] = 10, + [170450] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9577), 1, - sym__newline, - ACTIONS(9995), 1, - anon_sym_GT_RBRACK, - STATE(6051), 1, - aux_sym_attribute_set_repeat1, + ACTIONS(10541), 1, + anon_sym_with, + STATE(6202), 1, + sym__object_members, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6099), 6, + STATE(6675), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162527] = 10, + [170484] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10730), 1, sym__indent, - ACTIONS(9997), 1, - anon_sym_RPAREN, - STATE(6854), 1, + STATE(6294), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6100), 6, + STATE(6676), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162564] = 10, + [170518] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9999), 1, - anon_sym_PIPE, - ACTIONS(10001), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10666), 1, + sym__indent, + STATE(7478), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6101), 6, + STATE(6677), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162601] = 9, + [170552] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5195), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10003), 1, - anon_sym_and, + ACTIONS(10682), 1, + sym__indent, + STATE(1142), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6102), 7, + STATE(6678), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - aux_sym__function_or_value_defns_repeat1, - [162636] = 10, + [170586] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, + ACTIONS(10768), 1, sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5143), 1, - sym_method_or_prop_defn, + STATE(6694), 1, + sym_enum_type_case, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6103), 6, + STATE(6679), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162673] = 10, + [170620] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(10006), 1, - anon_sym_RBRACK, - STATE(7655), 1, - sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6104), 6, + ACTIONS(7922), 2, + sym__newline, + sym__dedent, + STATE(6680), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162710] = 8, + [170652] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5111), 3, - sym__newline, + ACTIONS(10770), 2, sym__dedent, - anon_sym_interface, - STATE(6105), 6, + anon_sym_PIPE, + STATE(6681), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162743] = 10, + [170684] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10656), 1, sym__indent, - ACTIONS(10008), 1, - anon_sym_PIPE_RBRACK, - STATE(7710), 1, - sym__list_element, + STATE(2090), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6106), 6, + STATE(6682), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162780] = 10, + [170718] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9740), 1, - anon_sym_POUNDelse, - ACTIONS(10010), 1, - anon_sym_POUNDendif, - STATE(7748), 1, - sym_preproc_else, + ACTIONS(10772), 1, + sym__indent, + STATE(2007), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6107), 6, + STATE(6683), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162817] = 10, + [170752] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10774), 1, sym__indent, - ACTIONS(10012), 1, - anon_sym_RBRACK, - STATE(7712), 1, - sym__list_element, + STATE(1998), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6108), 6, + STATE(6684), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162854] = 10, + [170786] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10014), 1, - anon_sym_with, - ACTIONS(10016), 1, - anon_sym_finally, - ACTIONS(10018), 1, - sym__newline, + ACTIONS(10730), 1, + sym__indent, + STATE(6701), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6109), 6, + STATE(6685), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162891] = 10, + [170820] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, - sym__indent, - ACTIONS(10020), 1, - anon_sym_PIPE_RBRACK, - STATE(6818), 1, - sym__list_element, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6110), 6, + ACTIONS(10110), 2, + sym__newline, + sym__dedent, + STATE(6686), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162928] = 10, + [170852] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(4732), 1, - sym_field_pattern, - STATE(7813), 1, - sym_long_identifier, + ACTIONS(10776), 1, + anon_sym_get, + ACTIONS(10778), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6111), 6, + STATE(6687), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [162965] = 10, + [170886] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5230), 1, - sym_field_pattern, - STATE(7727), 1, - sym_long_identifier, + ACTIONS(10668), 1, + sym__indent, + STATE(6472), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6112), 6, + STATE(6688), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163002] = 10, + [170920] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9573), 1, - sym_identifier, - STATE(5040), 1, - sym_field_pattern, - STATE(7813), 1, - sym_long_identifier, + ACTIONS(10680), 1, + sym__indent, + STATE(3055), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6113), 6, + STATE(6689), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163039] = 10, + [170954] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10022), 1, - anon_sym_PIPE, - ACTIONS(10024), 1, - anon_sym_PIPE_RPAREN, - STATE(6115), 1, - aux_sym_active_pattern_repeat1, + ACTIONS(10780), 1, + anon_sym_get, + ACTIONS(10782), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6114), 6, + STATE(6690), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163076] = 10, + [170988] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10026), 1, - anon_sym_PIPE, - ACTIONS(10028), 1, - anon_sym_PIPE_RPAREN, - STATE(5806), 1, - aux_sym_active_pattern_repeat1, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6115), 6, + ACTIONS(10784), 2, + anon_sym_RBRACK, + anon_sym_PIPE_RBRACK, + STATE(6691), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163113] = 10, + [171020] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9537), 1, + ACTIONS(10666), 1, sym__indent, - ACTIONS(10030), 1, - anon_sym_RBRACK, - STATE(6810), 1, - sym__list_element, + STATE(7424), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6116), 6, + STATE(6692), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163150] = 9, + [171054] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - STATE(1117), 1, - sym__static_type_identifier, + ACTIONS(10664), 1, + sym__indent, + STATE(1201), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7078), 2, - anon_sym_CARET, - anon_sym_SQUOTE, - STATE(6117), 6, + STATE(6693), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163185] = 10, + [171088] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9553), 1, - sym_identifier, - STATE(2461), 1, - sym_property_or_ident, - STATE(5035), 1, - sym_method_or_prop_defn, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6118), 6, + ACTIONS(10236), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6694), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163222] = 9, + [171120] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10656), 1, sym__indent, - STATE(7207), 1, + STATE(2109), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6119), 6, + STATE(6695), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163256] = 9, + [171154] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10032), 1, - anon_sym_COLON, - ACTIONS(10034), 1, - anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6120), 6, + ACTIONS(7886), 2, + sym__newline, + sym__dedent, + STATE(6696), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163290] = 9, + [171186] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10786), 1, sym__indent, - STATE(546), 1, + STATE(1266), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6121), 6, + STATE(6697), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163324] = 9, + [171220] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10038), 1, - sym__indent, - STATE(1584), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6122), 6, + ACTIONS(7882), 2, + sym__newline, + sym__dedent, + STATE(6698), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163358] = 9, + [171252] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10040), 1, - sym_identifier, - STATE(5035), 1, - sym_member_signature, + ACTIONS(10656), 1, + sym__indent, + STATE(2647), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6123), 6, + STATE(6699), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163392] = 9, + [171286] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, + ACTIONS(10668), 1, sym__indent, - STATE(1693), 1, + STATE(6522), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6124), 6, + STATE(6700), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163426] = 9, + [171320] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10044), 1, - sym__indent, - STATE(952), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6125), 6, + ACTIONS(7878), 2, + sym__newline, + sym__dedent, + STATE(6701), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163460] = 9, + [171352] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(7771), 1, - sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6126), 6, + ACTIONS(10284), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + STATE(6702), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163494] = 9, + [171384] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(7770), 1, - sym__string_literal, + ACTIONS(10788), 1, + anon_sym_get, + ACTIONS(10790), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6127), 6, + STATE(6703), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163528] = 9, + [171418] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10048), 1, - sym_identifier, - STATE(2995), 1, - sym_long_identifier, + ACTIONS(10666), 1, + sym__indent, + STATE(7370), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6128), 6, + STATE(6704), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163562] = 9, + [171452] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, - sym__indent, - STATE(1794), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6129), 6, + ACTIONS(10411), 2, + sym__newline, + sym__dedent, + STATE(6705), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163596] = 9, + [171484] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, - sym__indent, - STATE(1223), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6130), 6, + ACTIONS(7847), 2, + sym__newline, + sym__dedent, + STATE(6706), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163630] = 9, + [171516] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10774), 1, sym__indent, - STATE(7688), 1, + STATE(1964), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6131), 6, + STATE(6707), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163664] = 9, + [171550] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, + ACTIONS(10656), 1, sym__indent, - STATE(1612), 1, + STATE(2613), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6132), 6, + STATE(6708), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163698] = 9, + [171584] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4505), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6133), 6, + ACTIONS(7840), 2, + sym__newline, + sym__dedent, + STATE(6709), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163732] = 9, + [171616] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(7702), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6134), 6, + ACTIONS(7836), 2, + sym__newline, + sym__dedent, + STATE(6710), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163766] = 9, + [171648] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10668), 1, sym__indent, - STATE(6092), 1, + STATE(6476), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6135), 6, + STATE(6711), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163800] = 9, + [171682] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, - sym__indent, - STATE(1804), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6136), 6, + ACTIONS(7832), 2, + sym__newline, + sym__dedent, + STATE(6712), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163834] = 9, + [171714] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10666), 1, sym__indent, - STATE(1252), 1, + STATE(7311), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6137), 6, + STATE(6713), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163868] = 9, + [171748] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(5103), 1, - sym__expression_block, + ACTIONS(7199), 1, + anon_sym_LPAREN, + ACTIONS(7201), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6138), 6, + STATE(6714), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163902] = 9, + [171782] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(4956), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6139), 6, + ACTIONS(5854), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6715), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163936] = 8, + [171814] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10064), 2, - ts_builtin_sym_end, - anon_sym_namespace, - STATE(6140), 6, + ACTIONS(5911), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6716), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [163968] = 9, + [171846] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10040), 1, - sym_identifier, - STATE(5143), 1, - sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6141), 6, + ACTIONS(5911), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6717), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164002] = 9, + [171878] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, - sym__indent, - STATE(633), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6142), 6, + ACTIONS(5562), 2, + sym__newline, + sym__dedent, + STATE(6718), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164036] = 9, + [171910] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10652), 1, sym__indent, - STATE(675), 1, + STATE(643), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6143), 6, + STATE(6719), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164070] = 9, + [171944] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10048), 1, - sym_identifier, - STATE(347), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6144), 6, + ACTIONS(878), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6720), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164104] = 9, + [171976] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10066), 1, - sym_identifier, - STATE(366), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6145), 6, + ACTIONS(10688), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6721), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164138] = 9, + [172008] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10068), 1, + ACTIONS(10656), 1, sym__indent, - STATE(3106), 1, + STATE(2553), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6146), 6, + STATE(6722), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164172] = 8, + [172042] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10656), 1, + sym__indent, + STATE(2540), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10070), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6147), 6, + STATE(6723), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164204] = 9, + [172076] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10072), 1, + ACTIONS(10656), 1, sym__indent, - STATE(1602), 1, + STATE(2186), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6148), 6, + STATE(6724), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164238] = 9, + [172110] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, - sym__indent, - STATE(1531), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6149), 6, + ACTIONS(2413), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6725), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164272] = 9, + [172142] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, - sym__indent, - STATE(1808), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6150), 6, + ACTIONS(4173), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6726), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164306] = 9, + [172174] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, + ACTIONS(10668), 1, sym__indent, - STATE(1806), 1, + STATE(6399), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6151), 6, + STATE(6727), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164340] = 9, + [172208] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4552), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6152), 6, + ACTIONS(10342), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6728), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164374] = 9, + [172240] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, + ACTIONS(10772), 1, sym__indent, - STATE(5137), 1, + STATE(1411), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6153), 6, + STATE(6729), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164408] = 9, + [172274] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, - sym__indent, - STATE(772), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6154), 6, + ACTIONS(5886), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6730), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164442] = 9, + [172306] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, - sym__indent, - STATE(1557), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6155), 6, + ACTIONS(5872), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6731), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164476] = 9, + [172338] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10040), 1, - sym_identifier, - STATE(5130), 1, - sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6156), 6, + ACTIONS(5828), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6732), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164510] = 9, + [172370] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(5080), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6157), 6, + ACTIONS(5824), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6733), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164544] = 9, + [172402] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10044), 1, - sym__indent, - STATE(927), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6158), 6, + ACTIONS(5903), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6734), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164578] = 9, + [172434] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10074), 1, - sym__indent, - STATE(1483), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6159), 6, + ACTIONS(5676), 2, + sym__dedent, + anon_sym_interface, + STATE(6735), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164612] = 9, + [172466] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10068), 1, - sym__indent, - STATE(3102), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6160), 6, + ACTIONS(5842), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6736), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164646] = 9, + [172498] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, + ACTIONS(10792), 1, sym__indent, - STATE(4559), 1, + STATE(4901), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6161), 6, + STATE(6737), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164680] = 9, + [172532] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, + ACTIONS(10666), 1, sym__indent, - STATE(1692), 1, + STATE(7244), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6162), 6, + STATE(6738), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164714] = 9, + [172566] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10076), 1, - anon_sym_get, - ACTIONS(10078), 1, - anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6163), 6, + ACTIONS(5878), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6739), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164748] = 9, + [172598] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(5043), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6164), 6, + ACTIONS(5591), 2, + sym__dedent, + anon_sym_interface, + STATE(6740), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164782] = 9, + [172630] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10080), 1, - anon_sym_EQ, - ACTIONS(10082), 1, - anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6165), 6, + ACTIONS(5936), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6741), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164816] = 9, + [172662] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10084), 1, - anon_sym_get, - ACTIONS(10086), 1, - anon_sym_set, + ACTIONS(10656), 1, + sym__indent, + STATE(2419), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6166), 6, + STATE(6742), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164850] = 9, + [172696] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, + ACTIONS(10654), 1, sym__indent, - STATE(1561), 1, + STATE(1883), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6167), 6, + STATE(6743), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164884] = 8, + [172730] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10794), 1, + sym__indent, + STATE(1719), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5188), 2, - sym__dedent, - anon_sym_interface, - STATE(6168), 6, + STATE(6744), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164916] = 9, + [172764] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, + ACTIONS(10796), 1, sym__indent, - STATE(1596), 1, + STATE(1882), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6169), 6, + STATE(6745), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164950] = 9, + [172798] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10090), 1, - anon_sym_get, - ACTIONS(10092), 1, - anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6170), 6, + ACTIONS(5597), 2, + sym__dedent, + anon_sym_interface, + STATE(6746), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [164984] = 9, + [172830] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - anon_sym_LPAREN, - ACTIONS(10096), 1, - anon_sym_new, + ACTIONS(10668), 1, + sym__indent, + STATE(6241), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6171), 6, + STATE(6747), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165018] = 9, + [172864] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(10096), 1, - anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6172), 6, + ACTIONS(5866), 2, + sym__newline, + sym__dedent, + STATE(6748), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165052] = 9, + [172896] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10038), 1, - sym__indent, - STATE(1592), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6173), 6, + ACTIONS(5858), 2, + sym__newline, + sym__dedent, + STATE(6749), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165086] = 9, + [172928] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10074), 1, - sym__indent, - STATE(1047), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6174), 6, + ACTIONS(5858), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6750), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165120] = 9, + [172960] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - anon_sym_LPAREN, - ACTIONS(10098), 1, - anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6175), 6, + ACTIONS(5866), 2, + anon_sym_POUNDendif, + anon_sym_POUNDelse, + STATE(6751), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165154] = 9, + [172992] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, - sym__indent, - STATE(3042), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6176), 6, + ACTIONS(5715), 2, + sym__dedent, + anon_sym_and, + STATE(6752), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165188] = 9, + [173024] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10666), 1, sym__indent, - STATE(581), 1, + STATE(7177), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6177), 6, + STATE(6753), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165222] = 9, + [173058] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(10098), 1, - anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6178), 6, + ACTIONS(5711), 2, + sym__dedent, + anon_sym_and, + STATE(6754), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165256] = 9, + [173090] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10102), 1, - sym_identifier, - STATE(7738), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6179), 6, + ACTIONS(5697), 2, + sym__dedent, + anon_sym_and, + STATE(6755), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165290] = 9, + [173122] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - anon_sym_LPAREN, - ACTIONS(10104), 1, - anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6180), 6, + ACTIONS(5711), 2, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6756), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165324] = 9, + [173154] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10654), 1, sym__indent, - STATE(2194), 1, + STATE(1868), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6181), 6, + STATE(6757), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165358] = 9, + [173188] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(10104), 1, - anon_sym_new, + ACTIONS(10798), 1, + sym__indent, + STATE(1489), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6182), 6, + STATE(6758), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165392] = 9, + [173222] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(2140), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6183), 6, + ACTIONS(5697), 2, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6759), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165426] = 9, + [173254] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, - sym__indent, - STATE(2956), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6184), 6, + ACTIONS(5715), 2, + anon_sym_and, + anon_sym_POUNDendif, + STATE(6760), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165460] = 9, + [173286] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10110), 1, - sym__indent, - STATE(872), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6185), 6, + ACTIONS(3842), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6761), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165494] = 9, + [173318] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10792), 1, sym__indent, - STATE(7148), 1, + STATE(4791), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6186), 6, + STATE(6762), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165528] = 9, + [173352] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, - sym__indent, - STATE(1737), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6187), 6, + ACTIONS(3838), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6763), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165562] = 9, + [173384] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, - sym__indent, - STATE(5890), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6188), 6, + ACTIONS(3827), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6764), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165596] = 9, + [173416] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10654), 1, sym__indent, - STATE(7110), 1, + STATE(2319), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6189), 6, + STATE(6765), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165630] = 9, + [173450] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, - sym__indent, - STATE(1563), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6190), 6, + ACTIONS(3804), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6766), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165664] = 9, + [173482] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, - sym__indent, - STATE(1436), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6191), 6, + ACTIONS(3792), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6767), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165698] = 9, + [173514] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, + ACTIONS(10668), 1, sym__indent, - STATE(7632), 1, + STATE(6366), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6192), 6, + STATE(6768), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165732] = 9, + [173548] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, - sym__indent, - STATE(1406), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6193), 6, + ACTIONS(3788), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6769), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165766] = 9, + [173580] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10118), 1, - sym__indent, - STATE(1449), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6194), 6, + ACTIONS(3784), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6770), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165800] = 9, + [173612] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10120), 1, + ACTIONS(10796), 1, sym__indent, - STATE(1893), 1, + STATE(1860), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6195), 6, + STATE(6771), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165834] = 9, + [173646] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10654), 1, sym__indent, - STATE(5883), 1, + STATE(2346), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6196), 6, + STATE(6772), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165868] = 9, + [173680] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10122), 1, - sym_identifier, - STATE(3046), 1, - sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6197), 6, + ACTIONS(3780), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6773), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165902] = 9, + [173712] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, - sym__indent, - STATE(4927), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6198), 6, + ACTIONS(3579), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6774), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165936] = 9, + [173744] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10126), 1, - sym__indent, - STATE(1298), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6199), 6, + ACTIONS(3772), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6775), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [165970] = 9, + [173776] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(7070), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6200), 6, + ACTIONS(3768), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6776), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166004] = 9, + [173808] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, - sym__indent, - STATE(5875), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6201), 6, + ACTIONS(3748), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6777), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166038] = 9, + [173840] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8194), 1, - anon_sym_member, - ACTIONS(8198), 1, - anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6202), 6, + ACTIONS(3740), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6778), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166072] = 9, + [173872] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, - sym__indent, - STATE(3027), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6203), 6, + ACTIONS(3736), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6779), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166106] = 9, + [173904] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(2081), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6204), 6, + ACTIONS(3728), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6780), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166140] = 9, + [173936] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(7024), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6205), 6, + ACTIONS(3724), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6781), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166174] = 9, + [173968] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(2353), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6206), 6, + ACTIONS(3695), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6782), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166208] = 9, + [174000] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(10128), 1, - anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6207), 6, + ACTIONS(3662), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6783), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166242] = 9, + [174032] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1588), 1, + STATE(632), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6208), 6, + STATE(6784), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166276] = 9, + [174066] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(1715), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6209), 6, + ACTIONS(3658), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6785), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166310] = 9, + [174098] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, + ACTIONS(10654), 1, sym__indent, - STATE(4480), 1, + STATE(2256), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6210), 6, + STATE(6786), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166344] = 9, + [174132] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10654), 1, sym__indent, - STATE(578), 1, + STATE(2255), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6211), 6, + STATE(6787), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166378] = 9, + [174166] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, + ACTIONS(10654), 1, sym__indent, - STATE(1706), 1, + STATE(1844), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6212), 6, + STATE(6788), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166412] = 9, + [174200] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, - sym__indent, - STATE(5843), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6213), 6, + ACTIONS(3618), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6789), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166446] = 9, + [174232] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10132), 1, - anon_sym_get, - ACTIONS(10134), 1, - anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6214), 6, + ACTIONS(3604), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6790), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166480] = 9, + [174264] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10136), 1, - sym_identifier, - STATE(4857), 1, - sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6215), 6, + ACTIONS(2770), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6791), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166514] = 9, + [174296] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(6970), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6216), 6, + ACTIONS(3583), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6792), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166548] = 9, + [174328] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(10794), 1, sym__indent, - STATE(2923), 1, + STATE(1273), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6217), 6, + STATE(6793), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166582] = 8, + [174362] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8310), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6218), 6, + ACTIONS(3587), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6794), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166614] = 9, + [174394] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(951), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6219), 6, + ACTIONS(3644), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6795), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166648] = 9, + [174426] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10120), 1, - sym__indent, - STATE(2112), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6220), 6, + ACTIONS(3796), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6796), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166682] = 9, + [174458] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, - sym__indent, - STATE(1619), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6221), 6, + ACTIONS(3703), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6797), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166716] = 8, + [174490] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10140), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6222), 6, + ACTIONS(3600), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6798), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166748] = 8, + [174522] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10666), 1, + sym__indent, + STATE(7356), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(736), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6223), 6, + STATE(6799), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166780] = 9, + [174556] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(2186), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6224), 6, + ACTIONS(3776), 2, + sym__dedent, + anon_sym_PIPE, + STATE(6800), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166814] = 9, + [174588] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10800), 1, sym__indent, - STATE(5824), 1, + STATE(2036), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6225), 6, + STATE(6801), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166848] = 8, + [174622] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10802), 1, + sym__indent, + STATE(2777), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10142), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6226), 6, + STATE(6802), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166880] = 9, + [174656] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10144), 1, + ACTIONS(10804), 1, sym__indent, - STATE(1564), 1, + STATE(6726), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6227), 6, + STATE(6803), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166914] = 9, + [174690] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10146), 1, - anon_sym_get, - ACTIONS(10148), 1, - anon_sym_set, + ACTIONS(10806), 1, + sym__indent, + STATE(1335), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6228), 6, + STATE(6804), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166948] = 9, + [174724] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10668), 1, sym__indent, - STATE(6916), 1, + STATE(6468), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6229), 6, + STATE(6805), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [166982] = 9, + [174758] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10654), 1, sym__indent, - STATE(4923), 1, + STATE(2171), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6230), 6, + STATE(6806), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167016] = 9, + [174792] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, + ACTIONS(10652), 1, sym__indent, - STATE(2148), 1, + STATE(3534), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6231), 6, + STATE(6807), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167050] = 9, + [174826] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10698), 1, sym__indent, - STATE(1156), 1, + STATE(1796), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6232), 6, + STATE(6808), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167084] = 9, + [174860] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10808), 1, sym__indent, - STATE(600), 1, + STATE(1685), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6233), 6, + STATE(6809), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167118] = 9, + [174894] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10810), 1, sym__indent, - STATE(1157), 1, + STATE(2157), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6234), 6, + STATE(6810), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167152] = 9, + [174928] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, + ACTIONS(10802), 1, sym__indent, - STATE(1640), 1, + STATE(2188), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6235), 6, + STATE(6811), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167186] = 9, + [174962] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, + ACTIONS(10802), 1, sym__indent, - STATE(1641), 1, + STATE(2537), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6236), 6, + STATE(6812), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167220] = 9, + [174996] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10150), 1, - anon_sym_get, - ACTIONS(10152), 1, - anon_sym_set, + ACTIONS(10802), 1, + sym__indent, + STATE(2536), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6237), 6, + STATE(6813), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167254] = 9, + [175030] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1285), 1, + STATE(743), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6238), 6, + STATE(6814), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167288] = 9, + [175064] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10154), 1, - anon_sym_with, - ACTIONS(10156), 1, - anon_sym_finally, + ACTIONS(10812), 1, + sym_identifier, + STATE(5358), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6239), 6, + STATE(6815), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167322] = 9, + [175098] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, - sym__indent, - STATE(1600), 1, - sym__expression_block, + ACTIONS(10814), 1, + sym_identifier, + STATE(6715), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6240), 6, + STATE(6816), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167356] = 9, + [175132] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10802), 1, sym__indent, - STATE(1283), 1, + STATE(2483), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6241), 6, + STATE(6817), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167390] = 9, + [175166] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, + ACTIONS(10816), 1, sym__indent, - STATE(4497), 1, + STATE(1270), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6242), 6, + STATE(6818), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167424] = 9, + [175200] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10802), 1, sym__indent, - STATE(5810), 1, + STATE(2474), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6243), 6, + STATE(6819), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167458] = 9, + [175234] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10158), 1, - sym__newline, - ACTIONS(10160), 1, + ACTIONS(10818), 1, sym__indent, + STATE(4897), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6244), 6, + STATE(6820), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167492] = 9, + [175268] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, + ACTIONS(10730), 1, sym__indent, - STATE(2352), 1, + STATE(5390), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6245), 6, + STATE(6821), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167526] = 9, + [175302] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10118), 1, + ACTIONS(10698), 1, sym__indent, - STATE(1064), 1, + STATE(1790), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6246), 6, + STATE(6822), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167560] = 9, + [175336] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10800), 1, sym__indent, - STATE(4503), 1, + STATE(1717), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6247), 6, + STATE(6823), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167594] = 9, + [175370] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, + ACTIONS(10818), 1, sym__indent, - STATE(4835), 1, + STATE(4753), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6248), 6, + STATE(6824), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167628] = 8, + [175404] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10730), 1, + sym__indent, + STATE(5252), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5115), 2, - sym__dedent, - anon_sym_interface, - STATE(6249), 6, + STATE(6825), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167660] = 9, + [175438] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, - sym__indent, - STATE(4808), 1, - sym__expression_block, + ACTIONS(10812), 1, + sym_identifier, + STATE(5393), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6250), 6, + STATE(6826), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167694] = 9, + [175472] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10652), 1, sym__indent, - STATE(6857), 1, + STATE(3530), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6251), 6, + STATE(6827), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167728] = 9, + [175506] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10698), 1, sym__indent, - STATE(542), 1, + STATE(2132), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6252), 6, + STATE(6828), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167762] = 9, + [175540] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10136), 1, - sym_identifier, - STATE(4879), 1, - sym_member_signature, + ACTIONS(10802), 1, + sym__indent, + STATE(1845), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6253), 6, + STATE(6829), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167796] = 9, + [175574] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, + ACTIONS(10802), 1, sym__indent, - STATE(3019), 1, + STATE(2254), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6254), 6, + STATE(6830), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167830] = 9, + [175608] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10168), 1, - anon_sym__, + ACTIONS(10818), 1, + sym__indent, + STATE(4882), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6255), 6, + STATE(6831), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167864] = 9, + [175642] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10170), 1, + ACTIONS(10810), 1, sym__indent, - STATE(1462), 1, + STATE(2120), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6256), 6, + STATE(6832), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167898] = 9, + [175676] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, + ACTIONS(10730), 1, sym__indent, - STATE(2053), 1, + STATE(5401), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6257), 6, + STATE(6833), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167932] = 9, + [175710] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10172), 1, + ACTIONS(10812), 1, sym_identifier, - STATE(372), 1, - sym_long_identifier, + STATE(5332), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6258), 6, + STATE(6834), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [167966] = 9, + [175744] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10174), 1, + ACTIONS(10698), 1, sym__indent, - STATE(900), 1, + STATE(2113), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6259), 6, + STATE(6835), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168000] = 9, + [175778] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10730), 1, sym__indent, - STATE(5864), 1, + STATE(5381), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6260), 6, + STATE(6836), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168034] = 9, + [175812] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10176), 1, + ACTIONS(10816), 1, sym__indent, - STATE(1146), 1, + STATE(1246), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6261), 6, + STATE(6837), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168068] = 9, + [175846] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10806), 1, sym__indent, - STATE(6790), 1, + STATE(1857), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6262), 6, + STATE(6838), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168102] = 9, + [175880] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, + ACTIONS(10818), 1, sym__indent, - STATE(4882), 1, + STATE(4835), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6263), 6, + STATE(6839), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168136] = 9, + [175914] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10136), 1, - sym_identifier, - STATE(4883), 1, - sym_member_signature, + ACTIONS(10820), 1, + anon_sym_get, + ACTIONS(10822), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6264), 6, + STATE(6840), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168170] = 9, + [175948] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, + ACTIONS(10730), 1, sym__indent, - STATE(4834), 1, + STATE(5336), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6265), 6, + STATE(6841), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168204] = 8, + [175982] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10824), 1, + anon_sym_get, + ACTIONS(10826), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9823), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6266), 6, + STATE(6842), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168236] = 9, + [176016] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10112), 1, + ACTIONS(10802), 1, sym__indent, - STATE(1671), 1, + STATE(2340), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6267), 6, + STATE(6843), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168270] = 8, + [176050] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10828), 1, + anon_sym_get, + ACTIONS(10830), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5348), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6268), 6, + STATE(6844), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168302] = 9, + [176084] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10144), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1555), 1, + STATE(792), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6269), 6, + STATE(6845), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168336] = 9, + [176118] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, - sym__indent, - STATE(5933), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10832), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6270), 6, + STATE(6846), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168370] = 9, + [176152] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, - sym__indent, - STATE(2079), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10834), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6271), 6, + STATE(6847), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168404] = 9, + [176186] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10178), 1, + ACTIONS(10786), 1, sym__indent, - STATE(1680), 1, + STATE(1509), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6272), 6, + STATE(6848), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168438] = 8, + [176220] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10698), 1, + sym__indent, + STATE(2083), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10180), 2, - sym__newline, - anon_sym_GT_RBRACK, - STATE(6273), 6, + STATE(6849), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168470] = 9, + [176254] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10182), 1, + ACTIONS(10836), 1, sym__indent, - STATE(1681), 1, + STATE(2451), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6274), 6, + STATE(6850), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168504] = 9, + [176288] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10126), 1, + ACTIONS(10698), 1, sym__indent, - STATE(1725), 1, + STATE(2082), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6275), 6, + STATE(6851), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168538] = 9, + [176322] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10184), 1, - sym_identifier, - STATE(4931), 1, - sym_member_signature, + ACTIONS(10698), 1, + sym__indent, + STATE(1773), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6276), 6, + STATE(6852), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168572] = 9, + [176356] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10186), 1, - anon_sym_get, - ACTIONS(10188), 1, - anon_sym_set, + ACTIONS(10818), 1, + sym__indent, + STATE(4751), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6277), 6, + STATE(6853), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168606] = 9, + [176390] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, + ACTIONS(10808), 1, sym__indent, - STATE(4893), 1, + STATE(1240), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6278), 6, + STATE(6854), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168640] = 9, + [176424] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10190), 1, - anon_sym_get, - ACTIONS(10192), 1, - anon_sym_set, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10838), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6279), 6, + STATE(6855), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168674] = 9, + [176458] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(2044), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10840), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6280), 6, + STATE(6856), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168708] = 9, + [176492] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, - sym__indent, - STATE(4933), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10842), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6281), 6, + STATE(6857), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168742] = 9, + [176526] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(6708), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10844), 1, + anon_sym__, + ACTIONS(13), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(6858), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [176560] = 9, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_POUNDnowarn, + ACTIONS(11), 1, + anon_sym_POUNDr, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10846), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6282), 6, + STATE(6859), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168776] = 9, + [176594] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10194), 1, - anon_sym_get, - ACTIONS(10196), 1, - anon_sym_set, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10848), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6283), 6, + STATE(6860), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168810] = 8, + [176628] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10850), 1, + sym__indent, + STATE(3425), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8491), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6284), 6, + STATE(6861), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168842] = 9, + [176662] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10852), 1, sym__indent, - STATE(2072), 1, + STATE(1377), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6285), 6, + STATE(6862), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168876] = 8, + [176696] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10854), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10198), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6286), 6, + STATE(6863), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168908] = 9, + [176730] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, - sym__indent, - STATE(4492), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10856), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6287), 6, + STATE(6864), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168942] = 9, + [176764] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10858), 1, sym__indent, - STATE(6007), 1, + STATE(3483), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6288), 6, + STATE(6865), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [168976] = 9, + [176798] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(930), 1, - sym__expression_block, + ACTIONS(10860), 1, + sym_identifier, + STATE(3447), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6289), 6, + STATE(6866), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169010] = 9, + [176832] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, + ACTIONS(10836), 1, sym__indent, - STATE(928), 1, + STATE(2663), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6290), 6, + STATE(6867), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169044] = 9, + [176866] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10698), 1, sym__indent, - STATE(4331), 1, + STATE(2045), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6291), 6, + STATE(6868), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169078] = 9, + [176900] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10746), 1, sym__indent, - STATE(3155), 1, + STATE(2033), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6292), 6, + STATE(6869), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169112] = 9, + [176934] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10836), 1, sym__indent, - STATE(2306), 1, + STATE(2662), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6293), 6, + STATE(6870), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169146] = 9, + [176968] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10184), 1, + ACTIONS(10700), 1, sym_identifier, - STATE(4937), 1, - sym_member_signature, + ACTIONS(10862), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6294), 6, + STATE(6871), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169180] = 9, + [177002] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10200), 1, - sym_identifier, - STATE(2790), 1, - sym_member_signature, + ACTIONS(10864), 1, + sym__indent, + STATE(1759), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6295), 6, + STATE(6872), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169214] = 9, + [177036] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10866), 1, sym__indent, - STATE(2036), 1, + STATE(1428), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6296), 6, + STATE(6873), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169248] = 9, + [177070] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10182), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1688), 1, + STATE(659), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6297), 6, + STATE(6874), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169282] = 9, + [177104] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10868), 1, + sym__newline, + ACTIONS(10870), 1, sym__indent, - STATE(4907), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6298), 6, + STATE(6875), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169316] = 9, + [177138] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, - sym__indent, - STATE(4942), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10872), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6299), 6, + STATE(6876), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169350] = 9, + [177172] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10874), 1, + sym__newline, + ACTIONS(10876), 1, sym__indent, - STATE(2297), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6300), 6, + STATE(6877), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169384] = 9, + [177206] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, - sym__indent, - STATE(6777), 1, - sym__expression_block, + ACTIONS(10878), 1, + anon_sym_with, + ACTIONS(10880), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6301), 6, + STATE(6878), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169418] = 9, + [177240] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10204), 1, - anon_sym_member, - ACTIONS(10206), 1, - anon_sym_val, + ACTIONS(10786), 1, + sym__indent, + STATE(1278), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6302), 6, + STATE(6879), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169452] = 9, + [177274] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10094), 1, - anon_sym_LPAREN, - ACTIONS(10128), 1, - anon_sym_new, + ACTIONS(10882), 1, + sym_identifier, + STATE(5414), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6303), 6, + STATE(6880), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169486] = 8, + [177308] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10836), 1, + sym__indent, + STATE(2597), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10208), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6304), 6, + STATE(6881), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169518] = 9, + [177342] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10058), 1, + ACTIONS(10884), 1, sym__indent, - STATE(6109), 1, + STATE(2153), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6305), 6, + STATE(6882), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169552] = 8, + [177376] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10746), 1, + sym__indent, + STATE(2035), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(8564), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6306), 6, + STATE(6883), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169584] = 9, + [177410] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10886), 1, sym__indent, - STATE(4433), 1, + STATE(2137), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6307), 6, + STATE(6884), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169618] = 9, + [177444] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10210), 1, + ACTIONS(10162), 1, sym__indent, - STATE(1139), 1, + STATE(8112), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6308), 6, + STATE(6885), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169652] = 9, + [177478] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, + ACTIONS(10836), 1, sym__indent, - STATE(1093), 1, + STATE(2568), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6309), 6, + STATE(6886), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169686] = 9, + [177512] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10888), 1, sym__indent, - STATE(5868), 1, + STATE(6759), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6310), 6, + STATE(6887), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169720] = 9, + [177546] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10176), 1, + ACTIONS(10792), 1, sym__indent, - STATE(1162), 1, + STATE(4975), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6311), 6, + STATE(6888), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169754] = 9, + [177580] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, + ACTIONS(10746), 1, sym__indent, - STATE(1083), 1, + STATE(2688), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6312), 6, + STATE(6889), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169788] = 8, + [177614] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10890), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10212), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6313), 6, + STATE(6890), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169820] = 9, + [177648] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10836), 1, sym__indent, - STATE(608), 1, + STATE(2095), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6314), 6, + STATE(6891), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169854] = 9, + [177682] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10892), 1, + sym__newline, + ACTIONS(10894), 1, sym__indent, - STATE(1838), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6315), 6, + STATE(6892), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169888] = 9, + [177716] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, - sym__indent, - STATE(1868), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10896), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6316), 6, + STATE(6893), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169922] = 9, + [177750] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10898), 1, + sym__newline, + ACTIONS(10900), 1, sym__indent, - STATE(2260), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6317), 6, + STATE(6894), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169956] = 9, + [177784] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, - sym__indent, - STATE(2259), 1, - sym__expression_block, + ACTIONS(10902), 1, + anon_sym_with, + ACTIONS(10904), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6318), 6, + STATE(6895), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [169990] = 9, + [177818] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10906), 1, sym__indent, - STATE(2062), 1, + STATE(5453), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6319), 6, + STATE(6896), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170024] = 9, + [177852] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10906), 1, sym__indent, - STATE(1869), 1, + STATE(5352), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6320), 6, + STATE(6897), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170058] = 9, + [177886] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10866), 1, sym__indent, - STATE(663), 1, + STATE(1403), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6321), 6, + STATE(6898), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170092] = 9, + [177920] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10746), 1, sym__indent, - STATE(4325), 1, + STATE(2775), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6322), 6, + STATE(6899), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170126] = 8, + [177954] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10882), 1, + sym_identifier, + STATE(5454), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5400), 2, - sym__newline, - sym__dedent, - STATE(6323), 6, + STATE(6900), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170158] = 9, + [177988] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10178), 1, + ACTIONS(10858), 1, sym__indent, - STATE(1222), 1, + STATE(3481), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6324), 6, + STATE(6901), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170192] = 9, + [178022] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10836), 1, sym__indent, - STATE(1237), 1, + STATE(1915), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6325), 6, + STATE(6902), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170226] = 9, + [178056] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10214), 1, - sym__newline, - ACTIONS(10216), 1, + ACTIONS(10836), 1, sym__indent, + STATE(2195), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6326), 6, + STATE(6903), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170260] = 9, + [178090] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10162), 1, sym__indent, - STATE(5856), 1, + STATE(7956), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6327), 6, + STATE(6904), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170294] = 9, + [178124] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10218), 1, + ACTIONS(10700), 1, sym_identifier, - STATE(2827), 1, - sym_member_signature, + ACTIONS(10908), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6328), 6, + STATE(6905), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170328] = 9, + [178158] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10910), 1, + sym__newline, + ACTIONS(10912), 1, sym__indent, - STATE(1903), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6329), 6, + STATE(6906), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170362] = 9, + [178192] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10220), 1, - anon_sym_PIPE, - ACTIONS(10222), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(10792), 1, + sym__indent, + STATE(4956), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6330), 6, + STATE(6907), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170396] = 8, + [178226] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10906), 1, + sym__indent, + STATE(5458), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5434), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6331), 6, + STATE(6908), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170428] = 9, + [178260] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(10700), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10914), 1, anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6332), 6, + STATE(6909), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170462] = 9, + [178294] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10226), 1, - sym__indent, - STATE(1889), 1, - sym__expression_block, + ACTIONS(10882), 1, + sym_identifier, + STATE(5459), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6333), 6, + STATE(6910), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170496] = 9, + [178328] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1915), 1, + STATE(723), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6334), 6, + STATE(6911), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170530] = 9, + [178362] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10916), 1, + sym__newline, + ACTIONS(10918), 1, sym__indent, - STATE(1227), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6335), 6, + STATE(6912), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170564] = 8, + [178396] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10920), 1, + anon_sym_with, + ACTIONS(10922), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5416), 2, - sym__newline, - sym__dedent, - STATE(6336), 6, + STATE(6913), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170596] = 9, + [178430] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10056), 1, + ACTIONS(10906), 1, sym__indent, - STATE(6988), 1, + STATE(5460), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6337), 6, + STATE(6914), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170630] = 9, + [178464] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, + ACTIONS(10884), 1, sym__indent, - STATE(2823), 1, + STATE(2297), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6338), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [170664] = 8, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(9), 1, - anon_sym_POUNDnowarn, - ACTIONS(11), 1, - anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - ACTIONS(5111), 2, - sym__dedent, - anon_sym_interface, - STATE(6339), 6, + STATE(6915), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170696] = 9, + [178498] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, + ACTIONS(10852), 1, sym__indent, - STATE(2746), 1, + STATE(1880), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6340), 6, + STATE(6916), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170730] = 9, + [178532] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10218), 1, - sym_identifier, - STATE(2819), 1, - sym_member_signature, + ACTIONS(10746), 1, + sym__indent, + STATE(2749), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6341), 6, + STATE(6917), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170764] = 9, + [178566] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10184), 1, - sym_identifier, - STATE(4974), 1, - sym_member_signature, + ACTIONS(10746), 1, + sym__indent, + STATE(2748), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6342), 6, + STATE(6918), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170798] = 9, + [178600] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10746), 1, sym__indent, - STATE(5861), 1, + STATE(2047), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6343), 6, + STATE(6919), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170832] = 9, + [178634] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(1537), 1, - sym__expression_block, + ACTIONS(10924), 1, + anon_sym_EQ, + ACTIONS(10926), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6344), 6, + STATE(6920), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170866] = 9, + [178668] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(10888), 1, sym__indent, - STATE(1817), 1, + STATE(6756), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6345), 6, + STATE(6921), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170900] = 9, + [178702] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10050), 1, + ACTIONS(10792), 1, sym__indent, - STATE(2171), 1, + STATE(4905), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6346), 6, + STATE(6922), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170934] = 9, + [178736] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10228), 1, - anon_sym__, + ACTIONS(10928), 1, + anon_sym_get, + ACTIONS(10930), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6347), 6, + STATE(6923), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [170968] = 8, + [178770] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10906), 1, + sym__indent, + STATE(5466), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5416), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6348), 6, + STATE(6924), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171000] = 9, + [178804] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10230), 1, - anon_sym__, + ACTIONS(10864), 1, + sym__indent, + STATE(1382), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6349), 6, + STATE(6925), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171034] = 9, + [178838] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10162), 1, sym__indent, - STATE(6467), 1, + STATE(7832), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6350), 6, + STATE(6926), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171068] = 9, + [178872] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, - sym__indent, - STATE(1726), 1, - sym__expression_block, + ACTIONS(10932), 1, + anon_sym_get, + ACTIONS(10934), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6351), 6, + STATE(6927), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171102] = 9, + [178906] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10232), 1, + ACTIONS(10836), 1, sym__indent, - STATE(1583), 1, + STATE(2332), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6352), 6, + STATE(6928), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171136] = 9, + [178940] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10234), 1, - sym__indent, - STATE(1733), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10936), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6353), 6, + STATE(6929), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171170] = 9, + [178974] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10236), 1, - anon_sym__, + ACTIONS(10938), 1, + sym__newline, + ACTIONS(10940), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6354), 6, + STATE(6930), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171204] = 9, + [179008] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10238), 1, - anon_sym__, + ACTIONS(10942), 1, + anon_sym_get, + ACTIONS(10944), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6355), 6, + STATE(6931), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171238] = 9, + [179042] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(10700), 1, sym_identifier, - ACTIONS(10240), 1, + ACTIONS(10946), 1, anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6356), 6, + STATE(6932), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171272] = 9, + [179076] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10242), 1, - anon_sym__, + ACTIONS(10948), 1, + sym__newline, + ACTIONS(10950), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6357), 6, + STATE(6933), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171306] = 9, + [179110] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, - sym__indent, - STATE(2831), 1, - sym__expression_block, + ACTIONS(10952), 1, + anon_sym_with, + ACTIONS(10954), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6358), 6, + STATE(6934), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171340] = 9, + [179144] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10218), 1, - sym_identifier, - STATE(2818), 1, - sym_member_signature, + ACTIONS(10956), 1, + anon_sym_EQ, + ACTIONS(10958), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6359), 6, + STATE(6935), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171374] = 9, + [179178] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(10960), 1, sym_identifier, - ACTIONS(10244), 1, - anon_sym__, + STATE(7945), 1, + sym_long_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6360), 6, + STATE(6936), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171408] = 8, + [179212] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10656), 1, + sym__indent, + STATE(2466), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5422), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6361), 6, + STATE(6937), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171440] = 9, + [179246] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10246), 1, - anon_sym__, + ACTIONS(10962), 1, + sym__indent, + STATE(1079), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6362), 6, + STATE(6938), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171474] = 9, + [179280] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, + ACTIONS(10162), 1, sym__indent, - STATE(2821), 1, + STATE(7682), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6363), 6, + STATE(6939), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171508] = 8, + [179314] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10964), 1, + anon_sym_COLON, + ACTIONS(10966), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7326), 2, - sym__newline, - sym__dedent, - STATE(6364), 6, + STATE(6940), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171540] = 8, + [179348] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10968), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5400), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6365), 6, + STATE(6941), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171572] = 9, + [179382] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10248), 1, - anon_sym__, + ACTIONS(10746), 1, + sym__indent, + STATE(2656), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6366), 6, + STATE(6942), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171606] = 9, + [179416] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, + ACTIONS(10970), 1, + sym__newline, + ACTIONS(10972), 1, sym__indent, - STATE(1749), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6367), 6, + STATE(6943), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171640] = 9, + [179450] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10250), 1, - sym__indent, - STATE(1486), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(10974), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6368), 6, + STATE(6944), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171674] = 9, + [179484] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, + ACTIONS(10976), 1, + sym__newline, + ACTIONS(10978), 1, sym__indent, - STATE(6589), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6369), 6, + STATE(6945), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171708] = 9, + [179518] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10226), 1, - sym__indent, - STATE(1921), 1, - sym__expression_block, + ACTIONS(10980), 1, + anon_sym_with, + ACTIONS(10982), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6370), 6, + STATE(6946), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171742] = 9, + [179552] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10252), 1, - anon_sym__, + ACTIONS(10888), 1, + sym__indent, + STATE(7929), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6371), 6, + STATE(6947), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171776] = 9, + [179586] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10210), 1, + ACTIONS(10984), 1, sym__indent, - STATE(1554), 1, + STATE(908), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6372), 6, + STATE(6948), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171810] = 9, + [179620] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10254), 1, - anon_sym_get, - ACTIONS(10256), 1, - anon_sym_set, + ACTIONS(10986), 1, + anon_sym_EQ, + ACTIONS(10988), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6373), 6, + STATE(6949), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171844] = 9, + [179654] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, + ACTIONS(10850), 1, sym__indent, - STATE(2027), 1, + STATE(3388), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6374), 6, + STATE(6950), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171878] = 8, + [179688] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10962), 1, + sym__indent, + STATE(1009), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5268), 2, - sym__dedent, - anon_sym_and, - STATE(6375), 6, + STATE(6951), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171910] = 8, + [179722] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10962), 1, + sym__indent, + STATE(1161), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7330), 2, - sym__newline, - sym__dedent, - STATE(6376), 6, + STATE(6952), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171942] = 9, + [179756] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10258), 1, - anon_sym__, + ACTIONS(10962), 1, + sym__indent, + STATE(1165), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6377), 6, + STATE(6953), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [171976] = 9, + [179790] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10260), 1, - sym__newline, - ACTIONS(10262), 1, + ACTIONS(10162), 1, sym__indent, + STATE(7531), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6378), 6, + STATE(6954), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172010] = 9, + [179824] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10100), 1, + ACTIONS(10652), 1, sym__indent, - STATE(2828), 1, + STATE(665), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6379), 6, + STATE(6955), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172044] = 9, + [179858] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10264), 1, - anon_sym__, + ACTIONS(10990), 1, + anon_sym_get, + ACTIONS(10992), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6380), 6, + STATE(6956), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172078] = 9, + [179892] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10234), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1767), 1, + STATE(779), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6381), 6, + STATE(6957), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172112] = 8, + [179926] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10786), 1, + sym__indent, + STATE(1294), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5388), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6382), 6, + STATE(6958), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172144] = 8, + [179960] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10964), 1, + anon_sym_COLON, + ACTIONS(10994), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5382), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6383), 6, + STATE(6959), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172176] = 9, + [179994] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, - sym__indent, - STATE(2023), 1, - sym__expression_block, + ACTIONS(10996), 1, + anon_sym_get, + ACTIONS(10998), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6384), 6, + STATE(6960), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172210] = 9, + [180028] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10266), 1, - sym__newline, - ACTIONS(10268), 1, - sym__indent, + ACTIONS(11000), 1, + sym_identifier, + STATE(5317), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6385), 6, + STATE(6961), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172244] = 9, + [180062] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10270), 1, - anon_sym_with, - ACTIONS(10272), 1, - anon_sym_finally, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11002), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6386), 6, + STATE(6962), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172278] = 9, + [180096] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(11004), 1, + sym__newline, + ACTIONS(11006), 1, sym__indent, - STATE(2679), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6387), 6, + STATE(6963), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172312] = 9, + [180130] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10274), 1, - anon_sym_get, - ACTIONS(10276), 1, - anon_sym_set, + ACTIONS(10792), 1, + sym__indent, + STATE(4942), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6388), 6, + STATE(6964), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172346] = 9, + [180164] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(10962), 1, sym__indent, - STATE(2652), 1, + STATE(1174), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6389), 6, + STATE(6965), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172380] = 9, + [180198] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10278), 1, - anon_sym_EQ, - ACTIONS(10280), 1, - anon_sym_COLON, + ACTIONS(9659), 1, + anon_sym_member, + ACTIONS(9661), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6390), 6, + STATE(6966), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172414] = 9, + [180232] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(11008), 1, sym__indent, - STATE(1795), 1, + STATE(2231), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6391), 6, + STATE(6967), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172448] = 9, + [180266] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10282), 1, + ACTIONS(11010), 1, anon_sym_get, - ACTIONS(10284), 1, + ACTIONS(11012), 1, anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6392), 6, + STATE(6968), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172482] = 9, + [180300] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - STATE(7452), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11014), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6393), 6, + STATE(6969), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172516] = 9, + [180334] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10200), 1, - sym_identifier, - STATE(2720), 1, - sym_member_signature, + ACTIONS(11016), 1, + sym__newline, + ACTIONS(11018), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6394), 6, + STATE(6970), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172550] = 9, + [180368] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10286), 1, - anon_sym__, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(7829), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6395), 6, + STATE(6971), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172584] = 9, + [180402] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(11020), 1, sym__indent, - STATE(556), 1, + STATE(1186), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6396), 6, + STATE(6972), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172618] = 9, + [180436] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10288), 1, - sym__newline, - ACTIONS(10290), 1, + ACTIONS(10162), 1, sym__indent, + STATE(7825), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6397), 6, + STATE(6973), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172652] = 9, + [180470] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, + ACTIONS(11022), 1, sym__indent, - STATE(1866), 1, + STATE(1792), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6398), 6, + STATE(6974), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172686] = 9, + [180504] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10292), 1, - anon_sym__, + ACTIONS(11024), 1, + anon_sym_with, + ACTIONS(11026), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6399), 6, + STATE(6975), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172720] = 9, + [180538] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10294), 1, - sym__newline, - ACTIONS(10296), 1, + ACTIONS(10792), 1, sym__indent, + STATE(4945), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6400), 6, + STATE(6976), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172754] = 9, + [180572] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, - sym__indent, - STATE(1981), 1, - sym__expression_block, + ACTIONS(8136), 1, + anon_sym_member, + ACTIONS(8140), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6401), 6, + STATE(6977), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172788] = 9, + [180606] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10298), 1, - anon_sym_with, - ACTIONS(10300), 1, - anon_sym_finally, + ACTIONS(10962), 1, + sym__indent, + STATE(1163), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6402), 6, + STATE(6978), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172822] = 9, + [180640] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, - sym__indent, - STATE(1793), 1, - sym__expression_block, + ACTIONS(11028), 1, + anon_sym_EQ, + ACTIONS(11030), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6403), 6, + STATE(6979), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172856] = 9, + [180674] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10302), 1, - anon_sym_EQ, - ACTIONS(10304), 1, - anon_sym_COLON, + ACTIONS(10804), 1, + sym__indent, + STATE(5251), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6404), 6, + STATE(6980), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172890] = 8, + [180708] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11032), 1, + sym_identifier, + STATE(4946), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5356), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6405), 6, + STATE(6981), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172922] = 9, + [180742] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, + ACTIONS(10792), 1, sym__indent, - STATE(6565), 1, + STATE(4947), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6406), 6, + STATE(6982), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172956] = 8, + [180776] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10804), 1, + sym__indent, + STATE(5209), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10306), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6407), 6, + STATE(6983), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [172988] = 8, + [180810] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11000), 1, + sym_identifier, + STATE(5291), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10308), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6408), 6, + STATE(6984), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173020] = 9, + [180844] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10232), 1, + ACTIONS(10162), 1, sym__indent, - STATE(1167), 1, + STATE(7327), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6409), 6, + STATE(6985), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173054] = 8, + [180878] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11034), 1, + anon_sym_EQ, + ACTIONS(11036), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5261), 2, - sym__dedent, - anon_sym_and, - STATE(6410), 6, + STATE(6986), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173086] = 9, + [180912] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10850), 1, sym__indent, - STATE(700), 1, + STATE(3403), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6411), 6, + STATE(6987), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173120] = 8, + [180946] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10886), 1, + sym__indent, + STATE(1022), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10310), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6412), 6, + STATE(6988), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173152] = 9, + [180980] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10312), 1, - anon_sym_COLON, - ACTIONS(10314), 1, - anon_sym_COLON_GT, + ACTIONS(10962), 1, + sym__indent, + STATE(1004), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6413), 6, + STATE(6989), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173186] = 9, + [181014] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, + ACTIONS(10786), 1, sym__indent, - STATE(1024), 1, + STATE(1668), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6414), 6, + STATE(6990), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173220] = 9, + [181048] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(1023), 1, - sym__expression_block, + ACTIONS(11038), 1, + anon_sym_COLON, + ACTIONS(11040), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6415), 6, + STATE(6991), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173254] = 9, + [181082] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10316), 1, - sym__indent, - STATE(3139), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11042), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6416), 6, + STATE(6992), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173288] = 9, + [181116] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10318), 1, - anon_sym__, + ACTIONS(11044), 1, + sym__indent, + STATE(1738), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6417), 6, + STATE(6993), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173322] = 9, + [181150] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(11046), 1, sym__indent, - STATE(2908), 1, + STATE(3504), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6418), 6, + STATE(6994), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173356] = 9, + [181184] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10320), 1, + ACTIONS(11048), 1, sym__newline, - ACTIONS(10322), 1, + ACTIONS(11050), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6419), 6, + STATE(6995), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173390] = 8, + [181218] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9704), 1, + anon_sym_member, + ACTIONS(9706), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5352), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6420), 6, + STATE(6996), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173422] = 9, + [181252] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(949), 1, - sym__expression_block, + ACTIONS(9042), 1, + anon_sym_member, + ACTIONS(9046), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6421), 6, + STATE(6997), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173456] = 9, + [181286] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(10804), 1, sym__indent, - STATE(3153), 1, + STATE(5285), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6422), 6, + STATE(6998), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173490] = 9, + [181320] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(11032), 1, sym_identifier, - ACTIONS(10324), 1, - anon_sym__, + STATE(4948), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6423), 6, + STATE(6999), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173524] = 9, + [181354] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10326), 1, - sym__newline, - ACTIONS(10328), 1, - sym__indent, + ACTIONS(11000), 1, + sym_identifier, + STATE(5278), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6424), 6, + STATE(7000), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173558] = 9, + [181388] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10330), 1, - anon_sym_with, - ACTIONS(10332), 1, - anon_sym_finally, + ACTIONS(10792), 1, + sym__indent, + STATE(4856), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6425), 6, + STATE(7001), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173592] = 8, + [181422] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10792), 1, + sym__indent, + STATE(4949), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5366), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6426), 6, + STATE(7002), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173624] = 9, + [181456] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10060), 1, + ACTIONS(10804), 1, sym__indent, - STATE(1924), 1, + STATE(5273), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6427), 6, + STATE(7003), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173658] = 8, + [181490] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11052), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5233), 2, - sym__dedent, - anon_sym_and, - STATE(6428), 6, + STATE(7004), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173690] = 8, + [181524] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11054), 1, + sym__newline, + ACTIONS(11056), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9674), 2, - sym__dedent, - anon_sym_COMMA, - STATE(6429), 6, + STATE(7005), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173722] = 9, + [181558] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10334), 1, - anon_sym_EQ, - ACTIONS(10336), 1, - anon_sym_COLON, + ACTIONS(11058), 1, + anon_sym_with, + ACTIONS(11060), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6430), 6, + STATE(7006), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173756] = 8, + [181592] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11062), 1, + sym__newline, + ACTIONS(11064), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9645), 2, - sym__newline, - sym__dedent, - STATE(6431), 6, + STATE(7007), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173788] = 9, + [181626] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, + ACTIONS(10906), 1, sym__indent, - STATE(993), 1, + STATE(6755), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6432), 6, + STATE(7008), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173822] = 8, + [181660] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11066), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9674), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6433), 6, + STATE(7009), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173854] = 9, + [181694] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - STATE(7056), 1, - sym__expression_block, + ACTIONS(11068), 1, + anon_sym_with, + ACTIONS(11070), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6434), 6, + STATE(7010), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173888] = 9, + [181728] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, - sym__indent, - STATE(1174), 1, - sym__expression_block, + ACTIONS(8161), 1, + anon_sym_member, + ACTIONS(8165), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6435), 6, + STATE(7011), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173922] = 9, + [181762] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10312), 1, - anon_sym_COLON, - ACTIONS(10338), 1, - anon_sym_COLON_GT, + ACTIONS(11008), 1, + sym__indent, + STATE(2150), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6436), 6, + STATE(7012), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173956] = 9, + [181796] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10174), 1, + ACTIONS(11022), 1, sym__indent, - STATE(819), 1, + STATE(1800), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6437), 6, + STATE(7013), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [173990] = 9, + [181830] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10340), 1, - anon_sym__, + ACTIONS(10786), 1, + sym__indent, + STATE(1660), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6438), 6, + STATE(7014), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174024] = 9, + [181864] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10342), 1, - sym__newline, - ACTIONS(10344), 1, + ACTIONS(10984), 1, sym__indent, + STATE(978), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6439), 6, + STATE(7015), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174058] = 9, + [181898] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, - sym__indent, - STATE(6510), 1, - sym__expression_block, + ACTIONS(11072), 1, + anon_sym_get, + ACTIONS(11074), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6440), 6, + STATE(7016), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174092] = 9, + [181932] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10346), 1, - anon_sym_get, - ACTIONS(10348), 1, - anon_sym_set, + ACTIONS(11076), 1, + anon_sym_member, + ACTIONS(11078), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6441), 6, + STATE(7017), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174126] = 9, + [181966] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, - sym__indent, - STATE(1840), 1, - sym__expression_block, + ACTIONS(11080), 1, + anon_sym_EQ, + ACTIONS(11082), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6442), 6, + STATE(7018), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174160] = 9, + [182000] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10350), 1, - anon_sym_get, - ACTIONS(10352), 1, - anon_sym_set, + ACTIONS(11032), 1, + sym_identifier, + STATE(4957), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6443), 6, + STATE(7019), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174194] = 9, + [182034] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9140), 1, - anon_sym_member, - ACTIONS(9142), 1, - anon_sym_val, + ACTIONS(10804), 1, + sym__indent, + STATE(5280), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6444), 6, + STATE(7020), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174228] = 9, + [182068] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10354), 1, - sym__indent, - STATE(920), 1, - sym__expression_block, + ACTIONS(11084), 1, + anon_sym_get, + ACTIONS(11086), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6445), 6, + STATE(7021), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174262] = 9, + [182102] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10356), 1, - anon_sym__, + ACTIONS(10962), 1, + sym__indent, + STATE(1039), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6446), 6, + STATE(7022), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174296] = 9, + [182136] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10358), 1, - sym__newline, - ACTIONS(10360), 1, + ACTIONS(10162), 1, sym__indent, + STATE(7159), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6447), 6, + STATE(7023), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174330] = 9, + [182170] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10362), 1, - anon_sym_with, - ACTIONS(10364), 1, - anon_sym_finally, + ACTIONS(11088), 1, + sym__newline, + ACTIONS(11090), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6448), 6, + STATE(7024), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174364] = 9, + [182204] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7634), 1, - anon_sym_member, - ACTIONS(7638), 1, - anon_sym_val, + ACTIONS(11092), 1, + anon_sym_get, + ACTIONS(11094), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6449), 6, + STATE(7025), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174398] = 9, + [182238] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4530), 1, - sym__expression_block, + ACTIONS(11096), 1, + anon_sym_COLON, + ACTIONS(11098), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6450), 6, + STATE(7026), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174432] = 9, + [182272] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, - sym__indent, - STATE(5845), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11100), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6451), 6, + STATE(7027), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174466] = 9, + [182306] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10366), 1, - anon_sym_get, - ACTIONS(10368), 1, - anon_sym_set, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11102), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6452), 6, + STATE(7028), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174500] = 9, + [182340] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10370), 1, + ACTIONS(10652), 1, sym__indent, - STATE(1570), 1, + STATE(664), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6453), 6, + STATE(7029), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174534] = 9, + [182374] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10372), 1, + ACTIONS(11104), 1, + sym__newline, + ACTIONS(11106), 1, sym__indent, - STATE(1986), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6454), 6, + STATE(7030), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174568] = 9, + [182408] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10374), 1, - anon_sym_EQ, - ACTIONS(10376), 1, - anon_sym_COLON, + ACTIONS(11044), 1, + sym__indent, + STATE(2018), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6455), 6, + STATE(7031), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174602] = 9, + [182442] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10786), 1, sym__indent, - STATE(6802), 1, + STATE(1636), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6456), 6, + STATE(7032), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174636] = 9, + [182476] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10786), 1, sym__indent, - STATE(1317), 1, + STATE(1635), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6457), 6, + STATE(7033), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174670] = 9, + [182510] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10378), 1, - anon_sym_COLON, - ACTIONS(10380), 1, - anon_sym_COLON_GT, + ACTIONS(10786), 1, + sym__indent, + STATE(1424), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6458), 6, + STATE(7034), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174704] = 9, + [182544] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(11046), 1, sym__indent, - STATE(1435), 1, + STATE(3516), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6459), 6, + STATE(7035), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174738] = 8, + [182578] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11020), 1, + sym__indent, + STATE(975), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10382), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6460), 6, + STATE(7036), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174770] = 9, + [182612] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4526), 1, - sym__expression_block, + ACTIONS(11108), 1, + anon_sym_member, + ACTIONS(11110), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6461), 6, + STATE(7037), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174804] = 9, + [182646] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10384), 1, + ACTIONS(10700), 1, sym_identifier, - STATE(4524), 1, - sym_member_signature, + ACTIONS(11112), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6462), 6, + STATE(7038), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174838] = 9, + [182680] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4523), 1, - sym__expression_block, + ACTIONS(10752), 1, + anon_sym_COLON, + ACTIONS(11114), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6463), 6, + STATE(7039), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174872] = 8, + [182714] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11116), 1, + sym__newline, + ACTIONS(11118), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9609), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6464), 6, + STATE(7040), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174904] = 9, + [182748] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, - sym__indent, - STATE(1454), 1, - sym__expression_block, + ACTIONS(11120), 1, + anon_sym_with, + ACTIONS(11122), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6465), 6, + STATE(7041), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174938] = 9, + [182782] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10386), 1, - anon_sym__, + ACTIONS(8626), 1, + anon_sym_member, + ACTIONS(8630), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6466), 6, + STATE(7042), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [174972] = 8, + [182816] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11124), 1, + sym__indent, + STATE(1049), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7356), 2, - sym__newline, - sym__dedent, - STATE(6467), 6, + STATE(7043), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175004] = 9, + [182850] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10388), 1, - sym__newline, - ACTIONS(10390), 1, - sym__indent, + ACTIONS(11126), 1, + anon_sym_EQ, + ACTIONS(11128), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6468), 6, + STATE(7044), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175038] = 9, + [182884] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9079), 1, - anon_sym_member, - ACTIONS(9081), 1, - anon_sym_val, + ACTIONS(10730), 1, + sym__indent, + STATE(6324), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6469), 6, + STATE(7045), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175072] = 9, + [182918] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, + ACTIONS(11044), 1, sym__indent, - STATE(703), 1, + STATE(1749), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6470), 6, + STATE(7046), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175106] = 9, + [182952] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10392), 1, - anon_sym__, + ACTIONS(11044), 1, + sym__indent, + STATE(1983), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6471), 6, + STATE(7047), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175140] = 9, + [182986] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10394), 1, - sym__newline, - ACTIONS(10396), 1, + ACTIONS(11044), 1, sym__indent, + STATE(1981), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6472), 6, + STATE(7048), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175174] = 9, + [183020] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10398), 1, - anon_sym_with, - ACTIONS(10400), 1, - anon_sym_finally, + ACTIONS(10162), 1, + sym__indent, + STATE(7232), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6473), 6, + STATE(7049), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175208] = 9, + [183054] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7651), 1, - anon_sym_member, - ACTIONS(7655), 1, - anon_sym_val, + ACTIONS(10786), 1, + sym__indent, + STATE(1575), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6474), 6, + STATE(7050), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175242] = 9, + [183088] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10402), 1, - sym_identifier, - STATE(4399), 1, - sym_member_signature, + ACTIONS(10652), 1, + sym__indent, + STATE(749), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6475), 6, + STATE(7051), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175276] = 9, + [183122] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, - sym__indent, - STATE(6567), 1, - sym__expression_block, + ACTIONS(11130), 1, + sym_identifier, + STATE(3201), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6476), 6, + STATE(7052), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175310] = 9, + [183156] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, - sym__indent, - STATE(1845), 1, - sym__expression_block, + ACTIONS(10752), 1, + anon_sym_COLON, + ACTIONS(11132), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6477), 6, + STATE(7053), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175344] = 9, + [183190] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(11044), 1, sym__indent, - STATE(1579), 1, + STATE(1954), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6478), 6, + STATE(7054), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175378] = 9, + [183224] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10404), 1, - anon_sym_EQ, - ACTIONS(10406), 1, - anon_sym_COLON, + ACTIONS(11134), 1, + sym__indent, + STATE(1018), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6479), 6, + STATE(7055), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175412] = 9, + [183258] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, - sym__indent, - STATE(1512), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11136), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6480), 6, + STATE(7056), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175446] = 9, + [183292] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10316), 1, + ACTIONS(11138), 1, + sym__newline, + ACTIONS(11140), 1, sym__indent, - STATE(3146), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6481), 6, + STATE(7057), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175480] = 9, + [183326] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - STATE(6747), 1, - sym__expression_block, + ACTIONS(11142), 1, + anon_sym_member, + ACTIONS(11144), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6482), 6, + STATE(7058), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175514] = 9, + [183360] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, + ACTIONS(11044), 1, sym__indent, - STATE(2696), 1, + STATE(1753), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6483), 6, + STATE(7059), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175548] = 9, + [183394] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10384), 1, - sym_identifier, - STATE(4520), 1, - sym_member_signature, + ACTIONS(11146), 1, + anon_sym_get, + ACTIONS(11148), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6484), 6, + STATE(7060), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175582] = 9, + [183428] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10408), 1, - anon_sym_COLON, - ACTIONS(10410), 1, - anon_sym_COLON_GT, + ACTIONS(10800), 1, + sym__indent, + STATE(1852), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6485), 6, + STATE(7061), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175616] = 9, + [183462] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, - sym__indent, - STATE(4490), 1, - sym__expression_block, + ACTIONS(11150), 1, + anon_sym_get, + ACTIONS(11152), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6486), 6, + STATE(7062), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175650] = 9, + [183496] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10412), 1, + ACTIONS(10850), 1, sym__indent, - STATE(1616), 1, + STATE(3198), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6487), 6, + STATE(7063), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175684] = 9, + [183530] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10054), 1, + ACTIONS(10888), 1, sym__indent, - STATE(4516), 1, + STATE(5356), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6488), 6, + STATE(7064), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175718] = 9, + [183564] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(10700), 1, sym_identifier, - ACTIONS(10414), 1, + ACTIONS(11154), 1, anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6489), 6, + STATE(7065), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175752] = 9, + [183598] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10416), 1, - sym__newline, - ACTIONS(10418), 1, - sym__indent, + ACTIONS(11156), 1, + anon_sym_get, + ACTIONS(11158), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6490), 6, + STATE(7066), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175786] = 9, + [183632] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10420), 1, - anon_sym_member, - ACTIONS(10422), 1, - anon_sym_val, + ACTIONS(11160), 1, + sym__indent, + STATE(1718), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6491), 6, + STATE(7067), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175820] = 9, + [183666] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, + ACTIONS(11162), 1, sym__indent, - STATE(1862), 1, + STATE(2030), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6492), 6, + STATE(7068), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175854] = 9, + [183700] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10850), 1, sym__indent, - STATE(1488), 1, + STATE(3175), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6493), 6, + STATE(7069), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175888] = 9, + [183734] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10888), 1, sym__indent, - STATE(4426), 1, + STATE(5348), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6494), 6, + STATE(7070), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175922] = 9, + [183768] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, + ACTIONS(11164), 1, sym_identifier, - ACTIONS(10424), 1, - anon_sym__, + STATE(5333), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6495), 6, + STATE(7071), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175956] = 9, + [183802] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10888), 1, sym__indent, - STATE(4379), 1, + STATE(5331), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6496), 6, + STATE(7072), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [175990] = 9, + [183836] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10426), 1, + ACTIONS(11166), 1, sym__newline, - ACTIONS(10428), 1, + ACTIONS(11168), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6497), 6, + STATE(7073), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176024] = 9, + [183870] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10430), 1, + ACTIONS(11170), 1, anon_sym_with, - ACTIONS(10432), 1, + ACTIONS(11172), 1, anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6498), 6, + STATE(7074), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176058] = 9, + [183904] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10402), 1, + ACTIONS(11130), 1, sym_identifier, - STATE(4429), 1, + STATE(3197), 1, sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6499), 6, + STATE(7075), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176092] = 9, + [183938] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10138), 1, - sym__indent, - STATE(1056), 1, - sym__expression_block, + ACTIONS(8676), 1, + anon_sym_member, + ACTIONS(8680), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6500), 6, + STATE(7076), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176126] = 9, + [183972] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8204), 1, - anon_sym_member, - ACTIONS(8208), 1, - anon_sym_val, + ACTIONS(10730), 1, + sym__indent, + STATE(6331), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6501), 6, + STATE(7077), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176160] = 9, + [184006] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10372), 1, + ACTIONS(10800), 1, sym__indent, - STATE(1873), 1, + STATE(1855), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6502), 6, + STATE(7078), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176194] = 9, + [184040] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10164), 1, + ACTIONS(10962), 1, sym__indent, - STATE(5832), 1, + STATE(1682), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6503), 6, + STATE(7079), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176228] = 9, + [184074] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, + ACTIONS(11174), 1, sym__indent, - STATE(1883), 1, + STATE(1748), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6504), 6, + STATE(7080), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176262] = 9, + [184108] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10200), 1, - sym_identifier, - STATE(2690), 1, - sym_member_signature, + ACTIONS(11044), 1, + sym__indent, + STATE(1752), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6505), 6, + STATE(7081), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176296] = 9, + [184142] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10042), 1, - sym__indent, - STATE(1552), 1, - sym__expression_block, + ACTIONS(11164), 1, + sym_identifier, + STATE(5364), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6506), 6, + STATE(7082), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176330] = 9, + [184176] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10888), 1, sym__indent, - STATE(1319), 1, + STATE(5327), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6507), 6, + STATE(7083), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176364] = 9, + [184210] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10434), 1, - anon_sym_EQ, - ACTIONS(10436), 1, - anon_sym_COLON, + ACTIONS(10888), 1, + sym__indent, + STATE(5334), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6508), 6, + STATE(7084), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176398] = 9, + [184244] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, - sym__indent, - STATE(2721), 1, - sym__expression_block, + ACTIONS(11176), 1, + anon_sym_EQ, + ACTIONS(11178), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6509), 6, + STATE(7085), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176432] = 8, + [184278] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10800), 1, + sym__indent, + STATE(2344), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3785), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6510), 6, + STATE(7086), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176464] = 8, + [184312] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10850), 1, + sym__indent, + STATE(3196), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10438), 2, - anon_sym_EQ, - anon_sym_COLON, - STATE(6511), 6, + STATE(7087), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176496] = 8, + [184346] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11130), 1, + sym_identifier, + STATE(3195), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10440), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6512), 6, + STATE(7088), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176528] = 9, + [184380] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10162), 1, sym__indent, - STATE(7043), 1, + STATE(7353), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6513), 6, + STATE(7089), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176562] = 9, + [184414] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10202), 1, + ACTIONS(11162), 1, sym__indent, - STATE(2104), 1, + STATE(2189), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6514), 6, + STATE(7090), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176596] = 9, + [184448] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10442), 1, - anon_sym_do, - ACTIONS(10444), 1, - anon_sym_DASH_GT, + ACTIONS(10800), 1, + sym__indent, + STATE(2338), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6515), 6, + STATE(7091), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176630] = 9, + [184482] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9763), 1, - anon_sym_with, - STATE(5765), 1, - sym__object_members, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(7357), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6516), 6, + STATE(7092), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176664] = 9, + [184516] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(6918), 1, - sym__string_literal, + ACTIONS(10850), 1, + sym__indent, + STATE(3194), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6517), 6, + STATE(7093), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176698] = 9, + [184550] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10384), 1, + ACTIONS(11164), 1, sym_identifier, - STATE(4508), 1, + STATE(5347), 1, sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6518), 6, + STATE(7094), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176732] = 9, + [184584] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(11134), 1, sym__indent, - STATE(6967), 1, + STATE(1010), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6519), 6, + STATE(7095), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176766] = 9, + [184618] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10378), 1, - anon_sym_COLON, - ACTIONS(10446), 1, - anon_sym_COLON_GT, + ACTIONS(11124), 1, + sym__indent, + STATE(1491), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6520), 6, + STATE(7096), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176800] = 9, + [184652] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, - sym__indent, - STATE(4439), 1, - sym__expression_block, + ACTIONS(11180), 1, + anon_sym_get, + ACTIONS(11182), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6521), 6, + STATE(7097), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176834] = 9, + [184686] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10448), 1, - sym_identifier, - STATE(6604), 1, - sym_long_identifier, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(7715), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6522), 6, + STATE(7098), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176868] = 9, + [184720] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10450), 1, - anon_sym__, + ACTIONS(10850), 1, + sym__indent, + STATE(3193), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6523), 6, + STATE(7099), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176902] = 9, + [184754] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10162), 1, sym__indent, - STATE(5942), 1, + STATE(7712), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6524), 6, + STATE(7100), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176936] = 9, + [184788] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10452), 1, - sym__newline, - ACTIONS(10454), 1, - sym__indent, + ACTIONS(11184), 1, + anon_sym_get, + ACTIONS(11186), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6525), 6, + STATE(7101), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [176970] = 9, + [184822] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10402), 1, - sym_identifier, - STATE(4440), 1, - sym_member_signature, + ACTIONS(10652), 1, + sym__indent, + STATE(578), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6526), 6, + STATE(7102), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177004] = 8, + [184856] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11044), 1, + sym__indent, + STATE(1742), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10142), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6527), 6, + STATE(7103), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177036] = 8, + [184890] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11188), 1, + anon_sym_get, + ACTIONS(11190), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(736), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6528), 6, + STATE(7104), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177068] = 9, + [184924] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, - sym__indent, - STATE(4446), 1, - sym__expression_block, + ACTIONS(10752), 1, + anon_sym_COLON, + ACTIONS(11192), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6529), 6, + STATE(7105), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177102] = 9, + [184958] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10456), 1, - anon_sym_member, - ACTIONS(10458), 1, - anon_sym_val, + ACTIONS(10886), 1, + sym__indent, + STATE(2452), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6530), 6, + STATE(7106), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177136] = 9, + [184992] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, - sym__indent, - STATE(768), 1, - sym__expression_block, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11194), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6531), 6, + STATE(7107), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177170] = 9, + [185026] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10460), 1, - anon_sym_EQ, - ACTIONS(10462), 1, - anon_sym_COLON, + ACTIONS(10800), 1, + sym__indent, + STATE(2322), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6532), 6, + STATE(7108), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177204] = 8, + [185060] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10800), 1, + sym__indent, + STATE(2321), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2158), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6533), 6, + STATE(7109), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177236] = 9, + [185094] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10412), 1, + ACTIONS(10800), 1, sym__indent, - STATE(1660), 1, + STATE(1867), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6534), 6, + STATE(7110), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177270] = 9, + [185128] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10110), 1, + ACTIONS(10906), 1, sym__indent, - STATE(1036), 1, + STATE(6754), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6535), 6, + STATE(7111), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177304] = 9, + [185162] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, - sym__indent, - STATE(1912), 1, - sym__expression_block, + ACTIONS(11196), 1, + anon_sym_EQ, + ACTIONS(11198), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6536), 6, + STATE(7112), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177338] = 9, + [185196] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10464), 1, - anon_sym__, + ACTIONS(11160), 1, + sym__indent, + STATE(1229), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6537), 6, + STATE(7113), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177372] = 9, + [185230] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10354), 1, + ACTIONS(11200), 1, + sym__newline, + ACTIONS(11202), 1, sym__indent, - STATE(1133), 1, - sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6538), 6, + STATE(7114), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177406] = 9, + [185264] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, - sym__indent, - STATE(1917), 1, - sym__expression_block, + ACTIONS(11204), 1, + anon_sym_member, + ACTIONS(11206), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6539), 6, + STATE(7115), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177440] = 9, + [185298] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, + ACTIONS(11208), 1, sym__indent, - STATE(1826), 1, + STATE(1321), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6540), 6, + STATE(7116), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177474] = 9, + [185332] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10466), 1, - sym__newline, - ACTIONS(10468), 1, + ACTIONS(10804), 1, sym__indent, + STATE(6408), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6541), 6, + STATE(7117), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177508] = 9, + [185366] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10470), 1, - anon_sym_with, - ACTIONS(10472), 1, - anon_sym_finally, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11210), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6542), 6, + STATE(7118), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177542] = 9, + [185400] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8520), 1, - anon_sym_member, - ACTIONS(8524), 1, - anon_sym_val, + ACTIONS(10886), 1, + sym__indent, + STATE(2084), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6543), 6, + STATE(7119), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177576] = 9, + [185434] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10474), 1, - sym_identifier, - STATE(4966), 1, - sym_member_signature, + ACTIONS(11212), 1, + sym__newline, + ACTIONS(11214), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6544), 6, + STATE(7120), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177610] = 9, + [185468] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10370), 1, - sym__indent, - STATE(1175), 1, - sym__expression_block, + ACTIONS(11216), 1, + anon_sym_with, + ACTIONS(11218), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6545), 6, + STATE(7121), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177644] = 9, + [185502] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10476), 1, - anon_sym_get, - ACTIONS(10478), 1, - anon_sym_set, + ACTIONS(10886), 1, + sym__indent, + STATE(2684), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6546), 6, + STATE(7122), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177678] = 9, + [185536] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8116), 1, + ACTIONS(8180), 1, anon_sym_member, - ACTIONS(8120), 1, + ACTIONS(8184), 1, anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6547), 6, + STATE(7123), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177712] = 9, + [185570] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10162), 1, + ACTIONS(10886), 1, sym__indent, - STATE(4451), 1, + STATE(2707), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6548), 6, + STATE(7124), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177746] = 9, + [185604] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10480), 1, - anon_sym_get, - ACTIONS(10482), 1, - anon_sym_set, + ACTIONS(8721), 1, + anon_sym_member, + ACTIONS(8725), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6549), 6, + STATE(7125), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177780] = 9, + [185638] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10162), 1, sym__indent, - STATE(1397), 1, + STATE(7523), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6550), 6, + STATE(7126), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177814] = 9, + [185672] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10484), 1, - anon_sym_EQ, - ACTIONS(10486), 1, - anon_sym_COLON, + ACTIONS(10818), 1, + sym__indent, + STATE(4808), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6551), 6, + STATE(7127), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177848] = 9, + [185706] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10488), 1, - anon_sym_with, - ACTIONS(10490), 1, - anon_sym_finally, + ACTIONS(11220), 1, + sym_identifier, + STATE(4807), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6552), 6, + STATE(7128), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177882] = 9, + [185740] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10492), 1, - sym__newline, - ACTIONS(10494), 1, + ACTIONS(10818), 1, sym__indent, + STATE(4805), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6553), 6, + STATE(7129), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177916] = 9, + [185774] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10496), 1, - anon_sym_get, - ACTIONS(10498), 1, - anon_sym_set, + ACTIONS(11222), 1, + anon_sym_with, + ACTIONS(11224), 1, + anon_sym_finally, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6554), 6, + STATE(7130), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177950] = 9, + [185808] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10500), 1, - anon_sym__, + ACTIONS(11226), 1, + sym__newline, + ACTIONS(11228), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6555), 6, + STATE(7131), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [177984] = 9, + [185842] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10502), 1, + ACTIONS(11220), 1, sym_identifier, - STATE(6630), 1, - sym_enum_type_case, + STATE(4803), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6556), 6, + STATE(7132), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178018] = 8, + [185876] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11230), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5081), 2, - sym__newline, - sym__dedent, - STATE(6557), 6, + STATE(7133), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178050] = 9, + [185910] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, + ACTIONS(10800), 1, sym__indent, - STATE(7271), 1, + STATE(2240), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6558), 6, + STATE(7134), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178084] = 9, + [185944] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(7324), 1, - sym__string_literal, + ACTIONS(10752), 1, + anon_sym_COLON, + ACTIONS(11232), 1, + anon_sym_COLON_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6559), 6, + STATE(7135), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178118] = 8, + [185978] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10652), 1, + sym__indent, + STATE(814), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3536), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6560), 6, + STATE(7136), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178150] = 9, + [186012] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10116), 1, + ACTIONS(10650), 1, sym__indent, - STATE(1329), 1, + STATE(1728), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6561), 6, + STATE(7137), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178184] = 8, + [186046] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10818), 1, + sym__indent, + STATE(4754), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3415), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6562), 6, + STATE(7138), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178216] = 9, + [186080] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10504), 1, - anon_sym_member, - ACTIONS(10506), 1, - anon_sym_val, + ACTIONS(10818), 1, + sym__indent, + STATE(4802), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6563), 6, + STATE(7139), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178250] = 9, + [186114] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10088), 1, + ACTIONS(10886), 1, sym__indent, - STATE(1951), 1, + STATE(2763), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6564), 6, + STATE(7140), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178284] = 8, + [186148] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9714), 1, + anon_sym_member, + ACTIONS(9716), 1, + anon_sym_val, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5261), 2, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6565), 6, + STATE(7141), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178316] = 8, + [186182] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10886), 1, + sym__indent, + STATE(2634), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3282), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6566), 6, + STATE(7142), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178348] = 8, + [186216] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11234), 1, + anon_sym_get, + ACTIONS(11236), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7420), 2, - sym__newline, - sym__dedent, - STATE(6567), 6, + STATE(7143), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178380] = 8, + [186250] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10886), 1, + sym__indent, + STATE(2202), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5268), 2, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6568), 6, + STATE(7144), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178412] = 8, + [186284] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11238), 1, + anon_sym_get, + ACTIONS(11240), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10508), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6569), 6, + STATE(7145), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178444] = 9, + [186318] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10510), 1, - sym__newline, - ACTIONS(10512), 1, - sym__indent, + ACTIONS(11220), 1, + sym_identifier, + STATE(4797), 1, + sym_member_signature, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6570), 6, + STATE(7146), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178478] = 9, + [186352] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10124), 1, + ACTIONS(10886), 1, sym__indent, - STATE(6651), 1, + STATE(2156), 1, sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6571), 6, + STATE(7147), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178512] = 9, + [186386] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10378), 1, - anon_sym_COLON, - ACTIONS(10514), 1, - anon_sym_COLON_GT, + ACTIONS(11242), 1, + sym__newline, + ACTIONS(11244), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6572), 6, + STATE(7148), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178546] = 9, + [186420] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10516), 1, - anon_sym__, + ACTIONS(10818), 1, + sym__indent, + STATE(4811), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6573), 6, + STATE(7149), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178580] = 8, + [186454] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10660), 1, + anon_sym_DQUOTE, + STATE(7529), 1, + sym__string_literal, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3377), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6574), 6, + STATE(7150), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178612] = 9, + [186488] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10518), 1, - anon_sym_get, - ACTIONS(10520), 1, - anon_sym_set, + ACTIONS(10700), 1, + sym_identifier, + ACTIONS(11246), 1, + anon_sym__, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6575), 6, + STATE(7151), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178646] = 8, + [186522] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11248), 1, + sym__indent, + STATE(1546), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5362), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6576), 6, + STATE(7152), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178678] = 8, + [186556] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10804), 1, + sym__indent, + STATE(6312), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3393), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6577), 6, + STATE(7153), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178710] = 9, + [186590] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10108), 1, - sym__indent, - STATE(2738), 1, - sym__expression_block, + ACTIONS(11250), 1, + anon_sym_get, + ACTIONS(11252), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6578), 6, + STATE(7154), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178744] = 8, + [186624] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11254), 1, + anon_sym_EQ, + ACTIONS(11256), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5362), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6579), 6, + STATE(7155), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178776] = 9, + [186658] = 9, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10522), 1, - anon_sym__, + ACTIONS(11208), 1, + sym__indent, + STATE(1912), 1, + sym__expression_block, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6580), 6, + STATE(7156), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178810] = 9, + [186692] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10524), 1, - anon_sym_get, - ACTIONS(10526), 1, - anon_sym_set, + ACTIONS(11258), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6581), 6, + STATE(7157), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178844] = 9, + [186723] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(1971), 1, - sym__expression_block, + ACTIONS(11260), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6582), 6, + STATE(7158), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178878] = 9, + [186754] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10528), 1, - anon_sym_get, - ACTIONS(10530), 1, - anon_sym_set, + ACTIONS(11262), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6583), 6, + STATE(7159), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178912] = 9, + [186785] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10532), 1, - sym__newline, - ACTIONS(10534), 1, - sym__indent, + ACTIONS(11264), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6584), 6, + STATE(7160), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178946] = 9, + [186816] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10378), 1, - anon_sym_COLON, - ACTIONS(10536), 1, - anon_sym_COLON_GT, + ACTIONS(11266), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6585), 6, + STATE(7161), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [178980] = 8, + [186847] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11268), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3430), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6586), 6, + STATE(7162), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179012] = 8, + [186878] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11270), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3423), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6587), 6, + STATE(7163), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179044] = 9, + [186909] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10538), 1, - anon_sym_member, - ACTIONS(10540), 1, - anon_sym_val, + ACTIONS(11270), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6588), 6, + STATE(7164), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179078] = 8, + [186940] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11272), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5233), 2, - anon_sym_and, - anon_sym_POUNDendif, - STATE(6589), 6, + STATE(7165), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179110] = 8, + [186971] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11272), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3419), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6590), 6, + STATE(7166), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179142] = 9, + [187002] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, - sym__indent, - STATE(4971), 1, - sym__expression_block, + ACTIONS(11274), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6591), 6, + STATE(7167), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179176] = 8, + [187033] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11276), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3411), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6592), 6, + STATE(7168), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179208] = 9, + [187064] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10542), 1, - anon_sym_get, - ACTIONS(10544), 1, + ACTIONS(11274), 1, anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6593), 6, + STATE(7169), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179242] = 9, + [187095] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10546), 1, - sym__indent, - STATE(1604), 1, - sym__expression_block, + ACTIONS(11278), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6594), 6, + STATE(7170), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179276] = 8, + [187126] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11280), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3255), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6595), 6, + STATE(7171), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179308] = 9, + [187157] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10548), 1, - sym__indent, - STATE(1251), 1, - sym__expression_block, + ACTIONS(11282), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6596), 6, + STATE(7172), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179342] = 9, + [187188] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10550), 1, - anon_sym_get, - ACTIONS(10552), 1, - anon_sym_set, + ACTIONS(11284), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6597), 6, + STATE(7173), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179376] = 8, + [187219] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11286), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3264), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6598), 6, + STATE(7174), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179408] = 9, + [187250] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, - sym__indent, - STATE(4967), 1, - sym__expression_block, + ACTIONS(11288), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6599), 6, + STATE(7175), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179442] = 8, + [187281] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11290), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3270), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6600), 6, + STATE(7176), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179474] = 9, + [187312] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10554), 1, - anon_sym__, + ACTIONS(11292), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6601), 6, + STATE(7177), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179508] = 8, + [187343] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11294), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3274), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6602), 6, + STATE(7178), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179540] = 9, + [187374] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, - sym__indent, - STATE(4961), 1, - sym__expression_block, - ACTIONS(13), 2, + ACTIONS(11296), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6603), 6, + STATE(7179), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179574] = 8, + [187405] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11298), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(5394), 2, - anon_sym_POUNDendif, - anon_sym_POUNDelse, - STATE(6604), 6, + STATE(7180), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179606] = 9, + [187436] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6710), 1, - anon_sym_new, + ACTIONS(11300), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6605), 6, + STATE(7181), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179640] = 9, + [187467] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10556), 1, - sym__newline, - ACTIONS(10558), 1, - sym__indent, + ACTIONS(11302), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6606), 6, + STATE(7182), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179674] = 9, + [187498] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10560), 1, - anon_sym_with, - ACTIONS(10562), 1, - anon_sym_finally, + ACTIONS(11304), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6607), 6, + STATE(7183), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179708] = 9, + [187529] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2241), 1, - sym__expression_block, + ACTIONS(11306), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6608), 6, + STATE(7184), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179742] = 8, + [187560] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11308), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3278), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6609), 6, + STATE(7185), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179774] = 9, + [187591] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(8088), 1, - anon_sym_member, - ACTIONS(8092), 1, - anon_sym_val, + ACTIONS(11310), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6610), 6, + STATE(7186), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179808] = 8, + [187622] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11312), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3530), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6611), 6, + STATE(7187), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179840] = 9, + [187653] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(1974), 1, - sym__expression_block, + ACTIONS(11314), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6612), 6, + STATE(7188), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179874] = 9, + [187684] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10106), 1, - sym__indent, - STATE(1858), 1, - sym__expression_block, + ACTIONS(11316), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6613), 6, + STATE(7189), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179908] = 9, + [187715] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10564), 1, - anon_sym_EQ, - ACTIONS(10566), 1, - anon_sym_COLON, + ACTIONS(9815), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6614), 6, + STATE(7190), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179942] = 8, + [187746] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11318), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(10568), 2, - anon_sym_RBRACK, - anon_sym_PIPE_RBRACK, - STATE(6615), 6, + STATE(7191), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [179974] = 9, + [187777] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10052), 1, - sym__indent, - STATE(1173), 1, - sym__expression_block, + ACTIONS(11320), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6616), 6, + STATE(7192), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180008] = 8, + [187808] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11322), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3286), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6617), 6, + STATE(7193), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180040] = 8, + [187839] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11324), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7382), 2, - sym__newline, - sym__dedent, - STATE(6618), 6, + STATE(7194), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180072] = 9, + [187870] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(6428), 1, - sym__expression_block, + ACTIONS(11326), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6619), 6, + STATE(7195), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180106] = 8, + [187901] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11328), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9728), 2, - sym__newline, - sym__dedent, - STATE(6620), 6, + STATE(7196), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180138] = 9, + [187932] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - STATE(7630), 1, - sym__expression_block, + ACTIONS(11330), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6621), 6, + STATE(7197), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180172] = 8, + [187963] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11332), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3290), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6622), 6, + STATE(7198), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180204] = 9, + [187994] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10474), 1, - sym_identifier, - STATE(4957), 1, - sym_member_signature, + ACTIONS(11334), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6623), 6, + STATE(7199), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180238] = 9, + [188025] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, - sym__indent, - STATE(4888), 1, - sym__expression_block, + ACTIONS(11336), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6624), 6, + STATE(7200), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180272] = 9, + [188056] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(7644), 1, - sym__string_literal, + ACTIONS(11338), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6625), 6, + STATE(7201), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180306] = 9, + [188087] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10114), 1, - sym__indent, - STATE(4953), 1, - sym__expression_block, + ACTIONS(11340), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6626), 6, + STATE(7202), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180340] = 8, + [188118] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11342), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3297), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6627), 6, + STATE(7203), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180372] = 8, + [188149] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11344), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3471), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6628), 6, + STATE(7204), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180404] = 8, + [188180] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(11346), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3314), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6629), 6, + STATE(7205), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180436] = 8, + [188211] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11348), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9533), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6630), 6, + STATE(7206), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180468] = 8, + [188242] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(11350), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3328), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6631), 6, + STATE(7207), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180500] = 9, + [188273] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10378), 1, - anon_sym_COLON, - ACTIONS(10570), 1, - anon_sym_COLON_GT, + ACTIONS(11352), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6632), 6, + STATE(7208), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180534] = 8, + [188304] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11354), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3341), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6633), 6, + STATE(7209), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180566] = 8, + [188335] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11356), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7406), 2, - sym__newline, - sym__dedent, - STATE(6634), 6, + STATE(7210), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180598] = 8, + [188366] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11358), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7410), 2, - sym__newline, - sym__dedent, - STATE(6635), 6, + STATE(7211), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180630] = 8, + [188397] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11360), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7416), 2, - sym__newline, - sym__dedent, - STATE(6636), 6, + STATE(7212), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180662] = 9, + [188428] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2323), 1, - sym__expression_block, + ACTIONS(11362), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6637), 6, + STATE(7213), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180696] = 8, + [188459] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11364), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3352), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6638), 6, + STATE(7214), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180728] = 8, + [188490] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11366), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9881), 2, - sym__newline, - sym__dedent, - STATE(6639), 6, + STATE(7215), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180760] = 9, + [188521] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10546), 1, - sym__indent, - STATE(1315), 1, - sym__expression_block, - ACTIONS(13), 2, + ACTIONS(11368), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6640), 6, + STATE(7216), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180794] = 8, + [188552] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11370), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3358), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6641), 6, + STATE(7217), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180826] = 8, + [188583] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11372), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3373), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6642), 6, + STATE(7218), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180858] = 8, + [188614] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(13), 2, + ACTIONS(11374), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7426), 2, - sym__newline, - sym__dedent, - STATE(6643), 6, + STATE(7219), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180890] = 9, + [188645] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10046), 1, - anon_sym_DQUOTE, - STATE(7634), 1, - sym__string_literal, + ACTIONS(11376), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6644), 6, + STATE(7220), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180924] = 9, + [188676] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10548), 1, - sym__indent, - STATE(1278), 1, - sym__expression_block, + ACTIONS(11378), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6645), 6, + STATE(7221), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180958] = 9, + [188707] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9541), 1, - sym__indent, - STATE(7654), 1, - sym__expression_block, + ACTIONS(11380), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6646), 6, + STATE(7222), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [180992] = 8, + [188738] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11382), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7430), 2, - sym__newline, - sym__dedent, - STATE(6647), 6, + STATE(7223), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181024] = 9, + [188769] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10572), 1, - anon_sym__, + ACTIONS(11384), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6648), 6, + STATE(7224), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181058] = 9, + [188800] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2330), 1, - sym__expression_block, + ACTIONS(11386), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6649), 6, + STATE(7225), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181092] = 9, + [188831] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10574), 1, - sym__newline, - ACTIONS(10576), 1, - sym__indent, + ACTIONS(11388), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6650), 6, + STATE(7226), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181126] = 8, + [188862] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11390), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(7434), 2, - sym__newline, - sym__dedent, - STATE(6651), 6, + STATE(7227), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181158] = 8, + [188893] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11392), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3389), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6652), 6, + STATE(7228), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181190] = 9, + [188924] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10062), 1, - sym__indent, - STATE(6410), 1, - sym__expression_block, + ACTIONS(11394), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6653), 6, + STATE(7229), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181224] = 9, + [188955] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2004), 1, - sym__expression_block, + ACTIONS(11396), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6654), 6, + STATE(7230), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181258] = 9, + [188986] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2337), 1, - sym__expression_block, + ACTIONS(11398), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6655), 6, + STATE(7231), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181292] = 9, + [189017] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9148), 1, - anon_sym_member, - ACTIONS(9150), 1, - anon_sym_val, + ACTIONS(11400), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6656), 6, + STATE(7232), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181326] = 8, + [189048] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11402), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3453), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6657), 6, + STATE(7233), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181358] = 9, + [189079] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10578), 1, - anon_sym_EQ, - ACTIONS(10580), 1, - anon_sym_COLON, + ACTIONS(11404), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6658), 6, + STATE(7234), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181392] = 9, + [189110] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10474), 1, - sym_identifier, - STATE(4944), 1, - sym_member_signature, + ACTIONS(11406), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6659), 6, + STATE(7235), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181426] = 9, + [189141] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10130), 1, - sym__indent, - STATE(2338), 1, - sym__expression_block, + ACTIONS(11408), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6660), 6, + STATE(7236), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181460] = 8, + [189172] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11410), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(2520), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6661), 6, + STATE(7237), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181492] = 8, + [189203] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11412), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3467), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6662), 6, + STATE(7238), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181524] = 9, + [189234] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10036), 1, - sym__indent, - STATE(563), 1, - sym__expression_block, + ACTIONS(11414), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6663), 6, + STATE(7239), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181558] = 8, + [189265] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11294), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(9838), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - STATE(6664), 6, + STATE(7240), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181590] = 8, + [189296] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11416), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - ACTIONS(3463), 2, - sym__dedent, - anon_sym_PIPE, - STATE(6665), 6, + STATE(7241), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181622] = 9, + [189327] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10582), 1, - anon_sym__, + ACTIONS(11416), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6666), 6, + STATE(7242), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181656] = 9, + [189358] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10584), 1, - sym__newline, - ACTIONS(10586), 1, - sym__indent, + ACTIONS(11414), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6667), 6, + STATE(7243), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181690] = 9, + [189389] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10588), 1, - anon_sym_with, - ACTIONS(10590), 1, - anon_sym_finally, + ACTIONS(11418), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6668), 6, + STATE(7244), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181724] = 9, + [189420] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7672), 1, - anon_sym_member, - ACTIONS(7676), 1, - anon_sym_val, + ACTIONS(11420), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6669), 6, + STATE(7245), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181758] = 9, + [189451] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10592), 1, - anon_sym_get, - ACTIONS(10594), 1, - anon_sym_set, + ACTIONS(11422), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6670), 6, + STATE(7246), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181792] = 8, + [189482] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10596), 1, - anon_sym_GT, + ACTIONS(11424), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6671), 6, + STATE(7247), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181823] = 8, + [189513] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10598), 1, - sym_identifier, + ACTIONS(11426), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6672), 6, + STATE(7248), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181854] = 8, + [189544] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10600), 1, - anon_sym_GT, + ACTIONS(11428), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6673), 6, + STATE(7249), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181885] = 8, + [189575] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10602), 1, + ACTIONS(11430), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6674), 6, + STATE(7250), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181916] = 8, + [189606] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10604), 1, + ACTIONS(11432), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6675), 6, + STATE(7251), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181947] = 8, + [189637] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10606), 1, - anon_sym_and, + ACTIONS(11434), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6676), 6, + STATE(7252), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [181978] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [189668] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10608), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11436), 1, + anon_sym_RBRACK, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6677), 6, + STATE(7253), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182009] = 8, + [189699] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10610), 1, - anon_sym_RBRACK, + ACTIONS(11438), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6678), 6, + STATE(7254), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182040] = 8, + [189730] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10612), 1, - anon_sym_GT, + ACTIONS(11440), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6679), 6, + STATE(7255), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182071] = 8, + [189761] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10614), 1, - anon_sym_COLON, + ACTIONS(11442), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6680), 6, + STATE(7256), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182102] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [189792] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10616), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11444), 1, + anon_sym_RPAREN, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6681), 6, + STATE(7257), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182133] = 8, + [189823] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10618), 1, - anon_sym_EQ, + ACTIONS(11446), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6682), 6, + STATE(7258), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182164] = 8, + [189854] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10620), 1, - sym__dedent, + ACTIONS(11448), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6683), 6, + STATE(7259), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182195] = 8, + [189885] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10622), 1, - anon_sym_DASH_GT, + ACTIONS(11450), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6684), 6, + STATE(7260), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182226] = 8, + [189916] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10624), 1, - anon_sym_RBRACE, + ACTIONS(11452), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6685), 6, + STATE(7261), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182257] = 8, + [189947] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10626), 1, - anon_sym_COLON, + ACTIONS(11454), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6686), 6, + STATE(7262), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182288] = 8, + [189978] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10628), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(11456), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6687), 6, + STATE(7263), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182319] = 8, + [190009] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10630), 1, - anon_sym_COLON, + ACTIONS(11458), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6688), 6, + STATE(7264), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182350] = 8, + [190040] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10632), 1, - anon_sym_member, + ACTIONS(11460), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6689), 6, + STATE(7265), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182381] = 8, + [190071] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10634), 1, - anon_sym_then, + ACTIONS(11462), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6690), 6, + STATE(7266), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182412] = 8, + [190102] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10636), 1, - sym_identifier, + ACTIONS(11464), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6691), 6, + STATE(7267), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182443] = 8, + [190133] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10638), 1, + ACTIONS(11466), 1, sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6692), 6, + STATE(7268), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182474] = 8, + [190164] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10442), 1, - anon_sym_do, + ACTIONS(11468), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6693), 6, + STATE(7269), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182505] = 8, + [190195] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10640), 1, - sym__triple_quoted_content, + ACTIONS(11470), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6694), 6, + STATE(7270), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182536] = 8, + [190226] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10642), 1, - anon_sym_POUNDendif, + ACTIONS(11472), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6695), 6, + STATE(7271), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182567] = 8, + [190257] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10644), 1, - anon_sym_PIPE, + ACTIONS(11474), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6696), 6, + STATE(7272), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182598] = 8, + [190288] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10646), 1, - anon_sym_RPAREN, + ACTIONS(11476), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6697), 6, + STATE(7273), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182629] = 8, + [190319] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10648), 1, - sym__dedent, + ACTIONS(11478), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6698), 6, + STATE(7274), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182660] = 8, + [190350] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10650), 1, - anon_sym_COLON, + ACTIONS(11480), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6699), 6, + STATE(7275), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182691] = 8, + [190381] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10652), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11482), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6700), 6, + STATE(7276), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182722] = 8, + [190412] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10654), 1, - anon_sym_COLON, + ACTIONS(11484), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6701), 6, + STATE(7277), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182753] = 8, + [190443] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10656), 1, - sym_int, + ACTIONS(9843), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6702), 6, + STATE(7278), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182784] = 8, + [190474] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10658), 1, + ACTIONS(11486), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6703), 6, + STATE(7279), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182815] = 8, + [190505] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10660), 1, - sym_identifier, + ACTIONS(11488), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6704), 6, + STATE(7280), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182846] = 8, + [190536] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10662), 1, - anon_sym_POUNDendif, + ACTIONS(11490), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6705), 6, + STATE(7281), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182877] = 8, + [190567] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10664), 1, - anon_sym_RBRACE, - ACTIONS(13), 2, + ACTIONS(11492), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6706), 6, + STATE(7282), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182908] = 8, + [190598] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9212), 1, - anon_sym_GT, + ACTIONS(11494), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6707), 6, + STATE(7283), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182939] = 8, + [190629] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10666), 1, - anon_sym_then, + ACTIONS(11496), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6708), 6, + STATE(7284), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [182970] = 8, + [190660] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10668), 1, - anon_sym_POUNDendif, + ACTIONS(11498), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6709), 6, + STATE(7285), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183001] = 8, + [190691] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10670), 1, - sym_identifier, + ACTIONS(11500), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6710), 6, + STATE(7286), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183032] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [190722] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10672), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11502), 1, + sym__dedent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6711), 6, + STATE(7287), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183063] = 8, + [190753] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10674), 1, - anon_sym_COLON, + ACTIONS(11504), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6712), 6, + STATE(7288), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183094] = 8, + [190784] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10676), 1, - anon_sym_set, + ACTIONS(11506), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6713), 6, + STATE(7289), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183125] = 8, + [190815] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10678), 1, - anon_sym_COLON, + ACTIONS(11508), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6714), 6, + STATE(7290), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183156] = 8, + [190846] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10676), 1, - anon_sym_get, + ACTIONS(11510), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6715), 6, + STATE(7291), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183187] = 8, + [190877] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(6820), 1, - anon_sym_EQ, + ACTIONS(11512), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6716), 6, + STATE(7292), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183218] = 8, + [190908] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10680), 1, - anon_sym_set, + ACTIONS(11514), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6717), 6, + STATE(7293), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183249] = 8, + [190939] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10682), 1, - anon_sym_COLON, + ACTIONS(9881), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6718), 6, + STATE(7294), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183280] = 8, + [190970] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10684), 1, - sym_identifier, + ACTIONS(11516), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6719), 6, + STATE(7295), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183311] = 8, + [191001] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10686), 1, - sym_int, + ACTIONS(11518), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6720), 6, + STATE(7296), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183342] = 8, + [191032] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10688), 1, - anon_sym_COLON, + ACTIONS(11520), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6721), 6, + STATE(7297), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183373] = 8, + [191063] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10690), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11522), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6722), 6, + STATE(7298), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183404] = 8, + [191094] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10692), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11524), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6723), 6, + STATE(7299), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183435] = 8, + [191125] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10694), 1, - anon_sym_RBRACE, + ACTIONS(10764), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6724), 6, + STATE(7300), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183466] = 8, + [191156] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10696), 1, - anon_sym_COLON, + ACTIONS(11520), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6725), 6, + STATE(7301), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183497] = 8, + [191187] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10698), 1, - anon_sym_LT2, + ACTIONS(11526), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6726), 6, + STATE(7302), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183528] = 8, + [191218] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10700), 1, - anon_sym_LT2, + ACTIONS(11528), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6727), 6, + STATE(7303), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183559] = 8, + [191249] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10702), 1, - anon_sym_struct, + ACTIONS(11530), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6728), 6, + STATE(7304), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183590] = 8, + [191280] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10680), 1, - anon_sym_get, + ACTIONS(11532), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6729), 6, + STATE(7305), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183621] = 8, + [191311] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10704), 1, - anon_sym_unit, + ACTIONS(11534), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6730), 6, + STATE(7306), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183652] = 8, + [191342] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10706), 1, + ACTIONS(11536), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6731), 6, + STATE(7307), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183683] = 8, + [191373] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10708), 1, - anon_sym_COLON, + ACTIONS(11538), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6732), 6, + STATE(7308), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183714] = 8, + [191404] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10710), 1, - anon_sym_COLON, + ACTIONS(11540), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6733), 6, + STATE(7309), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183745] = 8, + [191435] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10712), 1, - sym__dedent, + ACTIONS(11542), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6734), 6, + STATE(7310), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183776] = 8, + [191466] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10714), 1, - anon_sym_set, + ACTIONS(11544), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6735), 6, + STATE(7311), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183807] = 8, + [191497] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10714), 1, + ACTIONS(11530), 1, anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6736), 6, + STATE(7312), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183838] = 8, + [191528] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10716), 1, - sym__triple_quoted_content, + ACTIONS(11546), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6737), 6, + STATE(7313), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183869] = 8, + [191559] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10718), 1, - sym__triple_quoted_content, + ACTIONS(11548), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6738), 6, + STATE(7314), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183900] = 8, + [191590] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10720), 1, - sym_identifier, + ACTIONS(11550), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6739), 6, + STATE(7315), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183931] = 8, + [191621] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10722), 1, - anon_sym_then, + ACTIONS(11552), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6740), 6, + STATE(7316), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183962] = 8, + [191652] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10724), 1, - sym__dedent, + ACTIONS(11554), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6741), 6, + STATE(7317), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [183993] = 8, + [191683] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10726), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11556), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6742), 6, + STATE(7318), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184024] = 8, + [191714] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10728), 1, - anon_sym_DASH_GT, + ACTIONS(11558), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6743), 6, + STATE(7319), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184055] = 8, + [191745] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10730), 1, + ACTIONS(11560), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6744), 6, + STATE(7320), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184086] = 8, + [191776] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10732), 1, - anon_sym_RBRACK, + ACTIONS(11562), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6745), 6, + STATE(7321), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184117] = 8, + [191807] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10734), 1, - anon_sym_DASH_GT, + ACTIONS(11564), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6746), 6, + STATE(7322), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184148] = 8, + [191838] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10736), 1, - anon_sym_RPAREN, + ACTIONS(11566), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6747), 6, + STATE(7323), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184179] = 8, + [191869] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10738), 1, - sym_identifier, + ACTIONS(11546), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6748), 6, + STATE(7324), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184210] = 8, + [191900] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10740), 1, - anon_sym_EQ, + ACTIONS(11568), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6749), 6, + STATE(7325), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184241] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [191931] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10742), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11570), 1, + sym_identifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6750), 6, + STATE(7326), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184272] = 8, + [191962] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10744), 1, - sym__dedent, + ACTIONS(11572), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6751), 6, + STATE(7327), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184303] = 8, + [191993] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10746), 1, - sym_identifier, + ACTIONS(11574), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6752), 6, + STATE(7328), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184334] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [192024] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10748), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11576), 1, + sym__triple_quoted_content, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6753), 6, + STATE(7329), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184365] = 8, + [192055] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10750), 1, - anon_sym_and, + ACTIONS(11578), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6754), 6, + STATE(7330), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184396] = 8, + [192086] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10752), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11580), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6755), 6, + STATE(7331), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184427] = 8, + [192117] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10754), 1, - anon_sym_POUNDendif, + ACTIONS(11582), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6756), 6, + STATE(7332), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184458] = 8, + [192148] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9781), 1, + ACTIONS(11584), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6757), 6, + STATE(7333), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184489] = 8, + [192179] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10756), 1, - anon_sym_RBRACE, + ACTIONS(11586), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6758), 6, + STATE(7334), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184520] = 8, + [192210] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10758), 1, - sym__dedent, + ACTIONS(11588), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6759), 6, + STATE(7335), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184551] = 8, + [192241] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10760), 1, - sym__dedent, + ACTIONS(11590), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6760), 6, + STATE(7336), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184582] = 8, + [192272] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10762), 1, - anon_sym_EQ, + ACTIONS(11592), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6761), 6, + STATE(7337), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184613] = 8, + [192303] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10764), 1, - anon_sym_GT, + ACTIONS(11594), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6762), 6, + STATE(7338), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184644] = 8, + [192334] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10766), 1, - anon_sym_COLON, + ACTIONS(11596), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6763), 6, + STATE(7339), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184675] = 8, + [192365] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10768), 1, - anon_sym_RBRACE, + ACTIONS(11598), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6764), 6, + STATE(7340), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184706] = 8, + [192396] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10770), 1, - anon_sym_RPAREN, + ACTIONS(11600), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6765), 6, + STATE(7341), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184737] = 8, + [192427] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10772), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(11602), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6766), 6, + STATE(7342), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184768] = 8, + [192458] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10774), 1, - sym__dedent, + ACTIONS(11604), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6767), 6, + STATE(7343), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184799] = 8, + [192489] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10776), 1, - anon_sym_COLON, + ACTIONS(11606), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6768), 6, + STATE(7344), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184830] = 8, + [192520] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10778), 1, - sym__dedent, + ACTIONS(11608), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6769), 6, + STATE(7345), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184861] = 8, + [192551] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10780), 1, - anon_sym_COLON, + ACTIONS(11610), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6770), 6, + STATE(7346), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184892] = 8, + [192582] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10782), 1, - anon_sym_COLON, + ACTIONS(11612), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6771), 6, + STATE(7347), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184923] = 8, + [192613] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10784), 1, - sym__dedent, + ACTIONS(11614), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6772), 6, + STATE(7348), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184954] = 8, + [192644] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, ACTIONS(5), 1, anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(10786), 1, + ACTIONS(11616), 1, aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6773), 6, + STATE(7349), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [184985] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [192675] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(3393), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11618), 1, + anon_sym_PIPE_RBRACK, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6774), 6, + STATE(7350), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185016] = 8, + [192706] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10788), 1, - anon_sym_COLON, + ACTIONS(11620), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6775), 6, + STATE(7351), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185047] = 8, + [192737] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10790), 1, - anon_sym_do, + ACTIONS(11622), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6776), 6, + STATE(7352), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185078] = 8, + [192768] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10792), 1, - anon_sym_then, + ACTIONS(11624), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6777), 6, + STATE(7353), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185109] = 8, + [192799] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10794), 1, - sym__dedent, + ACTIONS(11626), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6778), 6, + STATE(7354), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185140] = 8, + [192830] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10796), 1, - anon_sym_PIPE, + ACTIONS(11628), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6779), 6, + STATE(7355), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185171] = 8, + [192861] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10798), 1, - anon_sym_set, + ACTIONS(11630), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6780), 6, + STATE(7356), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [192892] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(11632), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(7357), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185202] = 8, + [192923] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10800), 1, - sym__dedent, + ACTIONS(11634), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6781), 6, + STATE(7358), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185233] = 8, + [192954] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10802), 1, - anon_sym_COLON, + ACTIONS(11636), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6782), 6, + STATE(7359), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185264] = 8, + [192985] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10798), 1, - anon_sym_get, + ACTIONS(11638), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6783), 6, + STATE(7360), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185295] = 8, + [193016] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10804), 1, - anon_sym_COLON, + ACTIONS(11640), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6784), 6, + STATE(7361), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185326] = 8, + [193047] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10806), 1, - anon_sym_COLON, + ACTIONS(11642), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6785), 6, + STATE(7362), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185357] = 8, + [193078] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10808), 1, + ACTIONS(11644), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6786), 6, + STATE(7363), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185388] = 8, + [193109] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10810), 1, - anon_sym_set, + ACTIONS(11646), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6787), 6, + STATE(7364), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185419] = 8, + [193140] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10812), 1, - sym__dedent, + ACTIONS(11640), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6788), 6, + STATE(7365), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185450] = 8, + [193171] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10814), 1, + ACTIONS(11648), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6789), 6, + STATE(7366), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185481] = 8, + [193202] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10816), 1, - anon_sym_then, + ACTIONS(11650), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6790), 6, + STATE(7367), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185512] = 8, + [193233] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10818), 1, - anon_sym_PIPE, + ACTIONS(11652), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6791), 6, + STATE(7368), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185543] = 8, + [193264] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10810), 1, - anon_sym_get, + ACTIONS(11652), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6792), 6, + STATE(7369), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185574] = 8, + [193295] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10820), 1, - anon_sym_do, + ACTIONS(11654), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6793), 6, + STATE(7370), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185605] = 8, + [193326] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10822), 1, - anon_sym_COLON, + ACTIONS(11656), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6794), 6, + STATE(7371), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185636] = 8, + [193357] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10824), 1, - anon_sym_set, + ACTIONS(11658), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6795), 6, + STATE(7372), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185667] = 8, + [193388] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10824), 1, - anon_sym_get, + ACTIONS(11658), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6796), 6, + STATE(7373), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185698] = 8, + [193419] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10826), 1, + ACTIONS(11660), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6797), 6, + STATE(7374), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185729] = 8, + [193450] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10828), 1, - anon_sym_COLON, + ACTIONS(11662), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6798), 6, + STATE(7375), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185760] = 8, + [193481] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10830), 1, + ACTIONS(11664), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6799), 6, + STATE(7376), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185791] = 8, + [193512] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10832), 1, - anon_sym_set, + ACTIONS(11666), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6800), 6, + STATE(7377), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185822] = 8, + [193543] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10834), 1, + ACTIONS(11668), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6801), 6, + STATE(7378), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185853] = 8, + [193574] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10836), 1, - anon_sym_RPAREN, + ACTIONS(11670), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6802), 6, + STATE(7379), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185884] = 8, + [193605] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10838), 1, - anon_sym_get, + ACTIONS(11672), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6803), 6, + STATE(7380), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185915] = 8, + [193636] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10840), 1, - anon_sym_RBRACE, + ACTIONS(11674), 1, + anon_sym_struct, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6804), 6, + STATE(7381), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185946] = 8, + [193667] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10842), 1, - anon_sym_COLON, + ACTIONS(11676), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6805), 6, + STATE(7382), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [185977] = 8, + [193698] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10844), 1, - sym__dedent, + ACTIONS(11678), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6806), 6, + STATE(7383), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186008] = 8, + [193729] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10846), 1, - sym_identifier, + ACTIONS(11680), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6807), 6, + STATE(7384), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186039] = 8, + [193760] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10838), 1, - anon_sym_set, + ACTIONS(11682), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6808), 6, + STATE(7385), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186070] = 8, + [193791] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5253), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11684), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6809), 6, + STATE(7386), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186101] = 8, + [193822] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10848), 1, - anon_sym_RBRACK, + ACTIONS(11686), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6810), 6, + STATE(7387), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186132] = 8, + [193853] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10850), 1, - anon_sym_COLON, + ACTIONS(11688), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6811), 6, + STATE(7388), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186163] = 8, + [193884] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10852), 1, - anon_sym_get, + ACTIONS(11690), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6812), 6, + STATE(7389), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186194] = 8, + [193915] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10852), 1, - anon_sym_set, + ACTIONS(11692), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6813), 6, + STATE(7390), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186225] = 8, + [193946] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10854), 1, - sym__triple_quoted_content, + ACTIONS(11694), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6814), 6, + STATE(7391), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186256] = 8, + [193977] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10856), 1, - sym__triple_quoted_content, + ACTIONS(11696), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6815), 6, + STATE(7392), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186287] = 8, + [194008] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10858), 1, - sym_identifier, + ACTIONS(11698), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6816), 6, + STATE(7393), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186318] = 8, + [194039] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10860), 1, - anon_sym_then, + ACTIONS(11700), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6817), 6, + STATE(7394), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186349] = 8, + [194070] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10862), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(11702), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6818), 6, + STATE(7395), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186380] = 8, + [194101] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10864), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11704), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6819), 6, + STATE(7396), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186411] = 8, + [194132] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10866), 1, + ACTIONS(11706), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6820), 6, + STATE(7397), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186442] = 8, + [194163] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10868), 1, - sym__dedent, - ACTIONS(13), 2, + ACTIONS(11708), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6821), 6, + STATE(7398), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186473] = 8, + [194194] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10870), 1, - anon_sym_DASH_GT, + ACTIONS(11710), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6822), 6, + STATE(7399), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186504] = 8, + [194225] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10872), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11712), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6823), 6, + STATE(7400), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186535] = 8, + [194256] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10874), 1, + ACTIONS(11714), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6824), 6, + STATE(7401), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186566] = 8, + [194287] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10876), 1, - anon_sym_EQ, + ACTIONS(11716), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6825), 6, + STATE(7402), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186597] = 8, + [194318] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10878), 1, - anon_sym_COLON, + ACTIONS(11718), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6826), 6, + STATE(7403), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186628] = 8, + [194349] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10880), 1, - sym_int, + ACTIONS(11720), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6827), 6, + STATE(7404), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186659] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [194380] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10882), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11722), 1, + sym__dedent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6828), 6, + STATE(7405), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186690] = 8, + [194411] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10884), 1, - sym_identifier, + ACTIONS(11724), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6829), 6, + STATE(7406), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186721] = 8, + [194442] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10886), 1, - sym__dedent, + ACTIONS(9802), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6830), 6, + STATE(7407), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186752] = 8, + [194473] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10888), 1, + ACTIONS(11726), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6831), 6, + STATE(7408), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186783] = 8, + [194504] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10890), 1, - sym__dedent, + ACTIONS(11728), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6832), 6, + STATE(7409), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186814] = 8, + [194535] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10892), 1, - sym__dedent, + ACTIONS(11730), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6833), 6, + STATE(7410), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186845] = 8, + [194566] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10894), 1, - anon_sym_and, + ACTIONS(11732), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6834), 6, + STATE(7411), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186876] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [194597] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10896), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11734), 1, + anon_sym_GT, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6835), 6, + STATE(7412), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186907] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [194628] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10898), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11736), 1, + anon_sym_do, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6836), 6, + STATE(7413), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186938] = 8, + [194659] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10900), 1, - anon_sym_EQ, + ACTIONS(11738), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6837), 6, + STATE(7414), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [186969] = 8, + [194690] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10902), 1, - sym__dedent, + ACTIONS(11740), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6838), 6, + STATE(7415), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187000] = 8, + [194721] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1396), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11742), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6839), 6, + STATE(7416), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187031] = 8, + [194752] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10904), 1, - anon_sym_DASH_GT, - ACTIONS(13), 2, + ACTIONS(11744), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6840), 6, + STATE(7417), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187062] = 8, + [194783] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10906), 1, + ACTIONS(11746), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6841), 6, + STATE(7418), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187093] = 8, + [194814] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10908), 1, - anon_sym_COLON, + ACTIONS(11748), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6842), 6, + STATE(7419), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187124] = 8, + [194845] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10910), 1, - anon_sym_RBRACK, + ACTIONS(11750), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6843), 6, + STATE(7420), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187155] = 8, + [194876] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10912), 1, - anon_sym_GT, + ACTIONS(11752), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6844), 6, + STATE(7421), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187186] = 8, + [194907] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10914), 1, - anon_sym_then, + ACTIONS(11754), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6845), 6, + STATE(7422), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187217] = 8, + [194938] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10916), 1, - anon_sym_do, + ACTIONS(11756), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6846), 6, + STATE(7423), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187248] = 8, + [194969] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10918), 1, - sym_identifier, + ACTIONS(11758), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6847), 6, + STATE(7424), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187279] = 8, + [195000] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10920), 1, - sym__triple_quoted_content, - ACTIONS(13), 2, + ACTIONS(11760), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6848), 6, + STATE(7425), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187310] = 8, + [195031] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10922), 1, - anon_sym_PIPE, + ACTIONS(11762), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6849), 6, + STATE(7426), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187341] = 8, + [195062] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10924), 1, - sym__triple_quoted_content, + ACTIONS(11764), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6850), 6, + STATE(7427), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187372] = 8, + [195093] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10926), 1, - sym__dedent, + ACTIONS(11766), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6851), 6, + STATE(7428), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187403] = 8, + [195124] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10928), 1, - sym__dedent, + ACTIONS(11768), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6852), 6, + STATE(7429), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187434] = 8, + [195155] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10930), 1, - anon_sym_COLON, + ACTIONS(11770), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6853), 6, + STATE(7430), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187465] = 8, + [195186] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10932), 1, - anon_sym_RPAREN, + ACTIONS(11772), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6854), 6, + STATE(7431), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187496] = 8, + [195217] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10934), 1, - sym__dedent, + ACTIONS(11774), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6855), 6, + STATE(7432), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187527] = 8, + [195248] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10936), 1, - anon_sym_GT, + ACTIONS(11776), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6856), 6, + STATE(7433), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187558] = 8, + [195279] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10938), 1, - anon_sym_then, + ACTIONS(11778), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6857), 6, + STATE(7434), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187589] = 8, + [195310] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5416), 1, - anon_sym_POUNDendif, + ACTIONS(11780), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6858), 6, + STATE(7435), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187620] = 8, + [195341] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10940), 1, - sym_identifier, + ACTIONS(11782), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6859), 6, + STATE(7436), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187651] = 8, + [195372] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10942), 1, - sym_identifier, + ACTIONS(11784), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6860), 6, + STATE(7437), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187682] = 8, + [195403] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10944), 1, - anon_sym_COLON, + ACTIONS(11786), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6861), 6, + STATE(7438), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187713] = 8, + [195434] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10946), 1, - anon_sym_GT, + ACTIONS(11788), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6862), 6, + STATE(7439), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187744] = 8, + [195465] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10948), 1, - anon_sym_RBRACE, + ACTIONS(11790), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6863), 6, + STATE(7440), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187775] = 8, + [195496] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10950), 1, - anon_sym_COLON, + ACTIONS(11792), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6864), 6, + STATE(7441), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187806] = 8, + [195527] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10952), 1, - anon_sym_POUNDendif, + ACTIONS(11794), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6865), 6, + STATE(7442), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187837] = 8, + [195558] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10954), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11796), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6866), 6, + STATE(7443), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187868] = 8, + [195589] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10956), 1, - anon_sym_COLON, + ACTIONS(11798), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6867), 6, + STATE(7444), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187899] = 8, + [195620] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10958), 1, - sym_identifier, + ACTIONS(11800), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6868), 6, + STATE(7445), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187930] = 8, + [195651] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10960), 1, - anon_sym_COLON, + ACTIONS(11802), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6869), 6, + STATE(7446), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187961] = 8, + [195682] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10962), 1, - sym_identifier, + ACTIONS(11804), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6870), 6, + STATE(7447), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [187992] = 8, + [195713] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10964), 1, + ACTIONS(11806), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6871), 6, + STATE(7448), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188023] = 8, + [195744] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10966), 1, - anon_sym_RBRACE, + ACTIONS(11808), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6872), 6, + STATE(7449), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188054] = 8, + [195775] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10968), 1, - sym_identifier, + ACTIONS(9752), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6873), 6, + STATE(7450), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188085] = 8, + [195806] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10970), 1, - sym__triple_quoted_content, + ACTIONS(11810), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6874), 6, + STATE(7451), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188116] = 8, + [195837] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(10972), 1, - sym__triple_quoted_content, - ACTIONS(13), 2, + ACTIONS(11812), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6875), 6, + STATE(7452), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188147] = 8, + [195868] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10974), 1, - sym_identifier, + ACTIONS(11814), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6876), 6, + STATE(7453), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188178] = 8, + [195899] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10976), 1, - anon_sym_then, + ACTIONS(11816), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6877), 6, + STATE(7454), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188209] = 8, + [195930] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10978), 1, + ACTIONS(11818), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6878), 6, + STATE(7455), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188240] = 8, + [195961] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10980), 1, - sym_identifier, + ACTIONS(11820), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6879), 6, + STATE(7456), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188271] = 8, + [195992] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10982), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(11822), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6880), 6, + STATE(7457), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188302] = 8, + [196023] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10984), 1, - sym_identifier, + ACTIONS(11824), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6881), 6, + STATE(7458), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188333] = 8, + [196054] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10986), 1, - anon_sym_DASH_GT, + ACTIONS(11826), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6882), 6, + STATE(7459), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188364] = 8, + [196085] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5400), 1, - anon_sym_POUNDendif, + ACTIONS(11828), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6883), 6, + STATE(7460), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188395] = 8, + [196116] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10988), 1, - sym_identifier, + ACTIONS(11830), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6884), 6, + STATE(7461), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188426] = 8, + [196147] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10990), 1, - anon_sym_EQ, + ACTIONS(11832), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6885), 6, + STATE(7462), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188457] = 8, + [196178] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10992), 1, - sym_identifier, + ACTIONS(11834), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6886), 6, + STATE(7463), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188488] = 8, + [196209] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10994), 1, - anon_sym_COLON, + ACTIONS(11836), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6887), 6, + STATE(7464), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188519] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [196240] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(10996), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11838), 1, + sym__dedent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6888), 6, + STATE(7465), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188550] = 8, + [196271] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10998), 1, - sym_identifier, + ACTIONS(11840), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6889), 6, + STATE(7466), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188581] = 8, + [196302] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11000), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11842), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6890), 6, + STATE(7467), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188612] = 8, + [196333] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11002), 1, + ACTIONS(11844), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6891), 6, + STATE(7468), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188643] = 8, + [196364] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11004), 1, - sym__dedent, + ACTIONS(11846), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6892), 6, + STATE(7469), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188674] = 8, + [196395] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11006), 1, - sym__dedent, + ACTIONS(11848), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6893), 6, + STATE(7470), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188705] = 8, + [196426] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3169), 1, - anon_sym_RPAREN, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(11850), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6894), 6, + STATE(7471), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188736] = 8, + [196457] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11008), 1, - sym_identifier, + ACTIONS(11852), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6895), 6, + STATE(7472), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188767] = 8, + [196488] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11010), 1, - sym_int, + ACTIONS(11854), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6896), 6, + STATE(7473), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188798] = 8, + [196519] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11012), 1, - sym_identifier, + ACTIONS(11856), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6897), 6, + STATE(7474), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188829] = 8, + [196550] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11014), 1, - anon_sym_POUNDendif, + ACTIONS(11858), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6898), 6, + STATE(7475), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188860] = 8, + [196581] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9198), 1, + ACTIONS(11860), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6899), 6, + STATE(7476), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188891] = 8, + [196612] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11016), 1, - sym_identifier, + ACTIONS(11862), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6900), 6, + STATE(7477), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188922] = 8, + [196643] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11018), 1, - anon_sym_COLON, + ACTIONS(11864), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6901), 6, + STATE(7478), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188953] = 8, + [196674] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11020), 1, + ACTIONS(11866), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6902), 6, + STATE(7479), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [188984] = 8, + [196705] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11022), 1, - anon_sym_POUNDendif, + ACTIONS(11868), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6903), 6, + STATE(7480), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189015] = 8, + [196736] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11024), 1, - sym_int, + ACTIONS(11870), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6904), 6, + STATE(7481), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189046] = 8, + [196767] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11026), 1, - anon_sym_do, + ACTIONS(11872), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6905), 6, + STATE(7482), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189077] = 8, + [196798] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9351), 1, - anon_sym_GT, + ACTIONS(11874), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6906), 6, + STATE(7483), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189108] = 8, + [196829] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11028), 1, - anon_sym_DASH_GT, + ACTIONS(11876), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6907), 6, + STATE(7484), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189139] = 8, + [196860] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11030), 1, - anon_sym_PIPE, + ACTIONS(11878), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6908), 6, + STATE(7485), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189170] = 8, + [196891] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11032), 1, - sym_identifier, + ACTIONS(11880), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6909), 6, + STATE(7486), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189201] = 8, + [196922] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11034), 1, - sym__dedent, + ACTIONS(11882), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6910), 6, + STATE(7487), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189232] = 8, + [196953] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11036), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11884), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6911), 6, + STATE(7488), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189263] = 8, + [196984] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11038), 1, - anon_sym_COLON, + ACTIONS(11886), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6912), 6, + STATE(7489), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189294] = 8, + [197015] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11040), 1, + ACTIONS(11888), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6913), 6, + STATE(7490), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189325] = 8, + [197046] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11042), 1, - sym_identifier, + ACTIONS(11886), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6914), 6, + STATE(7491), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189356] = 8, + [197077] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11044), 1, - sym_identifier, + ACTIONS(11890), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6915), 6, + STATE(7492), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189387] = 8, + [197108] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11046), 1, - anon_sym_then, + ACTIONS(11892), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6916), 6, + STATE(7493), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189418] = 8, + [197139] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11048), 1, + ACTIONS(11894), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6917), 6, + STATE(7494), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189449] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [197170] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11050), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11896), 1, + anon_sym_then, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6918), 6, + STATE(7495), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189480] = 8, + [197201] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11052), 1, + ACTIONS(11898), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6919), 6, + STATE(7496), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189511] = 8, + [197232] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11054), 1, - anon_sym_COLON, + ACTIONS(11900), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6920), 6, + STATE(7497), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189542] = 8, + [197263] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11056), 1, - sym_identifier, + ACTIONS(11902), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6921), 6, + STATE(7498), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189573] = 8, + [197294] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9557), 1, + ACTIONS(11904), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6922), 6, + STATE(7499), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189604] = 8, + [197325] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11058), 1, - anon_sym_COLON, + ACTIONS(11906), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6923), 6, + STATE(7500), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189635] = 8, + [197356] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11060), 1, - anon_sym_COLON, + ACTIONS(11908), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6924), 6, + STATE(7501), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189666] = 8, + [197387] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11062), 1, - anon_sym_COLON, + ACTIONS(11910), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6925), 6, + STATE(7502), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189697] = 8, + [197418] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11064), 1, - anon_sym_COLON, + ACTIONS(11912), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6926), 6, + STATE(7503), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189728] = 8, + [197449] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11066), 1, - anon_sym_EQ, + ACTIONS(9923), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6927), 6, + STATE(7504), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189759] = 8, + [197480] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11068), 1, - sym_identifier, + ACTIONS(11902), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6928), 6, + STATE(7505), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189790] = 8, + [197511] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11070), 1, - sym__dedent, - ACTIONS(13), 2, + ACTIONS(11914), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6929), 6, + STATE(7506), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189821] = 8, + [197542] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11072), 1, - sym__triple_quoted_content, + ACTIONS(11916), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6930), 6, + STATE(7507), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189852] = 8, + [197573] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11074), 1, - sym__triple_quoted_content, + ACTIONS(11918), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6931), 6, + STATE(7508), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189883] = 8, + [197604] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11076), 1, + ACTIONS(11920), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6932), 6, + STATE(7509), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189914] = 8, + [197635] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11078), 1, - anon_sym_then, + ACTIONS(11922), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6933), 6, + STATE(7510), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189945] = 8, + [197666] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11080), 1, + ACTIONS(11924), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6934), 6, + STATE(7511), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [189976] = 8, + [197697] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11082), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(11926), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6935), 6, + STATE(7512), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190007] = 8, + [197728] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11084), 1, - sym_identifier, + ACTIONS(11928), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6936), 6, + STATE(7513), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190038] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [197759] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11086), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11930), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6937), 6, + STATE(7514), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190069] = 8, + [197790] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11088), 1, - anon_sym_DASH_GT, + ACTIONS(11932), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6938), 6, + STATE(7515), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190100] = 8, + [197821] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11090), 1, - anon_sym_RBRACE, + ACTIONS(11934), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6939), 6, + STATE(7516), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190131] = 8, + [197852] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11092), 1, - sym_identifier, + ACTIONS(11922), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6940), 6, + STATE(7517), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190162] = 8, + [197883] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11094), 1, - anon_sym_EQ, + ACTIONS(11936), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6941), 6, + STATE(7518), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190193] = 8, + [197914] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11096), 1, - sym_identifier, + ACTIONS(11938), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6942), 6, + STATE(7519), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190224] = 8, + [197945] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11098), 1, - anon_sym_GT, + ACTIONS(11940), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6943), 6, + STATE(7520), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190255] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [197976] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11100), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(11942), 1, + sym__dedent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6944), 6, + STATE(7521), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190286] = 8, + [198007] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11102), 1, - anon_sym_GT, + ACTIONS(11944), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6945), 6, + STATE(7522), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190317] = 8, + [198038] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11104), 1, - sym__dedent, + ACTIONS(11946), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6946), 6, + STATE(7523), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190348] = 8, + [198069] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11106), 1, - sym__dedent, + ACTIONS(11948), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6947), 6, + STATE(7524), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190379] = 8, + [198100] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11108), 1, - sym__dedent, + ACTIONS(11950), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6948), 6, + STATE(7525), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190410] = 8, + [198131] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9202), 1, - anon_sym_GT, + ACTIONS(11952), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6949), 6, + STATE(7526), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190441] = 8, + [198162] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11110), 1, - anon_sym_RPAREN, + ACTIONS(11954), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6950), 6, + STATE(7527), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190472] = 8, + [198193] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11112), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(11956), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6951), 6, + STATE(7528), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190503] = 8, + [198224] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11114), 1, - anon_sym_GT, - ACTIONS(13), 2, + ACTIONS(11958), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6952), 6, + STATE(7529), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190534] = 8, + [198255] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11116), 1, - anon_sym_RBRACK, + ACTIONS(11960), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6953), 6, + STATE(7530), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190565] = 8, + [198286] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11118), 1, - anon_sym_POUNDendif, + ACTIONS(11962), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6954), 6, + STATE(7531), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190596] = 8, + [198317] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11120), 1, - anon_sym_COLON, + ACTIONS(11964), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6955), 6, + STATE(7532), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190627] = 8, + [198348] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11122), 1, - anon_sym_RBRACE, + ACTIONS(11966), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6956), 6, + STATE(7533), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190658] = 8, + [198379] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11124), 1, - sym__dedent, + ACTIONS(11968), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6957), 6, + STATE(7534), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190689] = 8, + [198410] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11126), 1, - sym_identifier, + ACTIONS(11970), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6958), 6, + STATE(7535), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190720] = 8, + [198441] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11128), 1, - anon_sym_do, + ACTIONS(11972), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6959), 6, + STATE(7536), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190751] = 8, + [198472] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11130), 1, - sym_identifier, + ACTIONS(11974), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6960), 6, + STATE(7537), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190782] = 8, + [198503] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11132), 1, - sym_identifier, + ACTIONS(11976), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6961), 6, + STATE(7538), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190813] = 8, + [198534] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11134), 1, - anon_sym_PIPE, + ACTIONS(11974), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6962), 6, + STATE(7539), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190844] = 8, + [198565] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11136), 1, - anon_sym_GT, + ACTIONS(11978), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6963), 6, + STATE(7540), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190875] = 8, + [198596] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11138), 1, + ACTIONS(11980), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6964), 6, + STATE(7541), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190906] = 8, + [198627] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11140), 1, - anon_sym_GT, + ACTIONS(11982), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6965), 6, + STATE(7542), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190937] = 8, + [198658] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11142), 1, - anon_sym_COLON, + ACTIONS(11984), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6966), 6, + STATE(7543), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190968] = 8, + [198689] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11144), 1, - anon_sym_RPAREN, + ACTIONS(11982), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6967), 6, + STATE(7544), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [190999] = 8, + [198720] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9188), 1, - anon_sym_GT, + ACTIONS(11910), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6968), 6, + STATE(7545), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191030] = 8, + [198751] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11146), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(11986), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6969), 6, + STATE(7546), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191061] = 8, + [198782] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11148), 1, - anon_sym_then, + ACTIONS(11988), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6970), 6, + STATE(7547), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191092] = 8, + [198813] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11150), 1, - sym_identifier, + ACTIONS(11990), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6971), 6, + STATE(7548), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191123] = 8, + [198844] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11152), 1, + ACTIONS(11992), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6972), 6, + STATE(7549), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191154] = 8, + [198875] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11154), 1, - anon_sym_GT, + ACTIONS(11994), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6973), 6, + STATE(7550), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191185] = 8, + [198906] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11156), 1, - anon_sym_COLON, + ACTIONS(11996), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6974), 6, + STATE(7551), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191216] = 8, + [198937] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11158), 1, - anon_sym_GT, + ACTIONS(11998), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6975), 6, + STATE(7552), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191247] = 8, + [198968] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11160), 1, - sym__dedent, + ACTIONS(12000), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6976), 6, + STATE(7553), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191278] = 8, + [198999] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11162), 1, - anon_sym_COLON, + ACTIONS(12002), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6977), 6, + STATE(7554), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191309] = 8, + [199030] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11164), 1, - anon_sym_COLON, + ACTIONS(12004), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6978), 6, + STATE(7555), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191340] = 8, + [199061] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11166), 1, - anon_sym_COLON, + ACTIONS(12006), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6979), 6, + STATE(7556), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191371] = 8, + [199092] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9174), 1, - anon_sym_GT, + ACTIONS(12008), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6980), 6, + STATE(7557), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191402] = 8, + [199123] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11168), 1, - anon_sym_RBRACK, + ACTIONS(12010), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6981), 6, + STATE(7558), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191433] = 8, + [199154] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11170), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12012), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6982), 6, + STATE(7559), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191464] = 8, + [199185] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5175), 1, - anon_sym_EQ, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(12014), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6983), 6, + STATE(7560), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191495] = 8, + [199216] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11172), 1, - sym__triple_quoted_content, + ACTIONS(12016), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6984), 6, + STATE(7561), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191526] = 8, + [199247] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11174), 1, - sym__triple_quoted_content, + ACTIONS(12018), 1, + anon_sym_struct, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6985), 6, + STATE(7562), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191557] = 8, + [199278] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11176), 1, - sym_identifier, + ACTIONS(12020), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6986), 6, + STATE(7563), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191588] = 8, + [199309] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11178), 1, + ACTIONS(12022), 1, anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6987), 6, + STATE(7564), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191619] = 8, + [199340] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11180), 1, - anon_sym_then, + ACTIONS(12024), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6988), 6, + STATE(7565), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191650] = 8, + [199371] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11182), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12026), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6989), 6, + STATE(7566), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191681] = 8, + [199402] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11184), 1, - anon_sym_GT, + ACTIONS(12028), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6990), 6, + STATE(7567), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191712] = 8, + [199433] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11186), 1, - sym__dedent, + ACTIONS(12030), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6991), 6, + STATE(7568), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191743] = 8, + [199464] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11188), 1, - anon_sym_DASH_GT, + ACTIONS(12032), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6992), 6, + STATE(7569), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191774] = 8, + [199495] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11190), 1, - anon_sym_EQ, + ACTIONS(12034), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6993), 6, + STATE(7570), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191805] = 8, + [199526] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11192), 1, - anon_sym_RBRACE, + ACTIONS(12036), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6994), 6, + STATE(7571), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191836] = 8, + [199557] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11194), 1, - anon_sym_EQ, + ACTIONS(12038), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6995), 6, + STATE(7572), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191867] = 8, + [199588] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11196), 1, - sym__indent, + ACTIONS(12040), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6996), 6, + STATE(7573), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191898] = 8, + [199619] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11198), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12042), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6997), 6, + STATE(7574), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191929] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [199650] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11200), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12044), 1, + sym_identifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6998), 6, + STATE(7575), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191960] = 8, + [199681] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11202), 1, - sym_identifier, + ACTIONS(12046), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(6999), 6, + STATE(7576), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [191991] = 8, + [199712] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11204), 1, - sym__dedent, + ACTIONS(9901), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7000), 6, + STATE(7577), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192022] = 8, + [199743] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11206), 1, - sym__dedent, + ACTIONS(12048), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7001), 6, + STATE(7578), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192053] = 8, + [199774] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11208), 1, + ACTIONS(12050), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7002), 6, + STATE(7579), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192084] = 8, + [199805] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11210), 1, - anon_sym_GT, + ACTIONS(12052), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7003), 6, + STATE(7580), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192115] = 8, + [199836] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11212), 1, - sym_int, + ACTIONS(12054), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7004), 6, + STATE(7581), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192146] = 8, + [199867] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11214), 1, + ACTIONS(12056), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7005), 6, + STATE(7582), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192177] = 8, + [199898] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11216), 1, - anon_sym_POUNDendif, + ACTIONS(12058), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7006), 6, + STATE(7583), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192208] = 8, + [199929] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9272), 1, - anon_sym_GT, - ACTIONS(13), 2, + ACTIONS(12060), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7007), 6, + STATE(7584), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192239] = 8, + [199960] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11218), 1, - sym_identifier, + ACTIONS(12062), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7008), 6, + STATE(7585), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192270] = 8, + [199991] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11220), 1, - anon_sym_COLON, + ACTIONS(12064), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7009), 6, + STATE(7586), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192301] = 8, + [200022] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11222), 1, + ACTIONS(12066), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7010), 6, + STATE(7587), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192332] = 8, + [200053] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11224), 1, - anon_sym_set, + ACTIONS(12068), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7011), 6, + STATE(7588), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192363] = 8, + [200084] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11226), 1, - anon_sym_POUNDendif, + ACTIONS(9905), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7012), 6, + STATE(7589), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192394] = 8, + [200115] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11228), 1, - anon_sym_do, + ACTIONS(12070), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7013), 6, + STATE(7590), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192425] = 8, + [200146] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11224), 1, - anon_sym_get, + ACTIONS(12072), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7014), 6, + STATE(7591), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192456] = 8, + [200177] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11230), 1, - sym_identifier, + ACTIONS(12074), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7015), 6, + STATE(7592), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192487] = 8, + [200208] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11232), 1, - anon_sym_PIPE, + ACTIONS(12076), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7016), 6, + STATE(7593), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192518] = 8, + [200239] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11234), 1, - sym_identifier, + ACTIONS(12078), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7017), 6, + STATE(7594), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192549] = 8, + [200270] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11236), 1, - sym__dedent, + ACTIONS(12080), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7018), 6, + STATE(7595), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192580] = 8, + [200301] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11238), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12082), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7019), 6, + STATE(7596), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192611] = 8, + [200332] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11240), 1, - anon_sym_COLON, + ACTIONS(12084), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7020), 6, + STATE(7597), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192642] = 8, + [200363] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11242), 1, - sym_identifier, + ACTIONS(12086), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7021), 6, + STATE(7598), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192673] = 8, + [200394] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11244), 1, - sym_identifier, + ACTIONS(12088), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7022), 6, + STATE(7599), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192704] = 8, + [200425] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11246), 1, - sym_int, + ACTIONS(12090), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7023), 6, + STATE(7600), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192735] = 8, + [200456] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11248), 1, - anon_sym_then, + ACTIONS(12092), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7024), 6, + STATE(7601), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192766] = 8, + [200487] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11250), 1, - anon_sym_set, + ACTIONS(12094), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7025), 6, + STATE(7602), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192797] = 8, + [200518] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11252), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12096), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7026), 6, + STATE(7603), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192828] = 8, + [200549] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11254), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12098), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7027), 6, + STATE(7604), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192859] = 8, + [200580] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11256), 1, - anon_sym_COLON, + ACTIONS(12100), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7028), 6, + STATE(7605), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192890] = 8, + [200611] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11258), 1, + ACTIONS(12102), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7029), 6, + STATE(7606), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192921] = 8, + [200642] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11250), 1, - anon_sym_get, + ACTIONS(9915), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7030), 6, + STATE(7607), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192952] = 8, + [200673] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11260), 1, - anon_sym_COLON, + ACTIONS(12104), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7031), 6, + STATE(7608), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [192983] = 8, + [200704] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11262), 1, - anon_sym_COLON, + ACTIONS(12106), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7032), 6, + STATE(7609), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193014] = 8, + [200735] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11264), 1, - anon_sym_COLON, + ACTIONS(12108), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7033), 6, + STATE(7610), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193045] = 8, + [200766] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11266), 1, - anon_sym_set, + ACTIONS(12110), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7034), 6, + STATE(7611), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193076] = 8, + [200797] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11268), 1, + ACTIONS(12112), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7035), 6, + STATE(7612), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193107] = 8, + [200828] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11270), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12114), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7036), 6, + STATE(7613), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193138] = 8, + [200859] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11266), 1, - anon_sym_get, + ACTIONS(12116), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7037), 6, + STATE(7614), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193169] = 8, + [200890] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11272), 1, - sym__triple_quoted_content, + ACTIONS(12118), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7038), 6, + STATE(7615), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193200] = 8, + [200921] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11274), 1, - sym__triple_quoted_content, + ACTIONS(12120), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7039), 6, + STATE(7616), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193231] = 8, + [200952] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11276), 1, - sym_identifier, + ACTIONS(12122), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7040), 6, + STATE(7617), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193262] = 8, + [200983] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11278), 1, - anon_sym_then, + ACTIONS(12124), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7041), 6, + STATE(7618), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193293] = 8, + [201014] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11280), 1, - anon_sym_RBRACK, + ACTIONS(12126), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7042), 6, + STATE(7619), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193324] = 8, + [201045] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11282), 1, - anon_sym_RPAREN, + ACTIONS(12128), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7043), 6, + STATE(7620), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193355] = 8, + [201076] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(9248), 1, - anon_sym_GT, - ACTIONS(13), 2, + ACTIONS(12130), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7044), 6, + STATE(7621), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193386] = 8, + [201107] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11284), 1, - sym_identifier, + ACTIONS(12132), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7045), 6, + STATE(7622), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193417] = 8, + [201138] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11286), 1, - anon_sym_DASH_GT, + ACTIONS(12134), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7046), 6, + STATE(7623), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193448] = 8, + [201169] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11288), 1, - anon_sym_EQ, + ACTIONS(12136), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7047), 6, + STATE(7624), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193479] = 8, + [201200] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11290), 1, - anon_sym_RBRACK, + ACTIONS(12138), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7048), 6, + STATE(7625), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193510] = 8, + [201231] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11292), 1, - anon_sym_EQ, + ACTIONS(12140), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7049), 6, + STATE(7626), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193541] = 8, + [201262] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11294), 1, - anon_sym_GT, + ACTIONS(12142), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7050), 6, + STATE(7627), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193572] = 8, + [201293] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11296), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12144), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7051), 6, + STATE(7628), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193603] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [201324] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11298), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12146), 1, + sym__dedent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7052), 6, + STATE(7629), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193634] = 8, + [201355] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11300), 1, - sym__dedent, + ACTIONS(12148), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7053), 6, + STATE(7630), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193665] = 8, + [201386] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11302), 1, - sym__dedent, + ACTIONS(12150), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7054), 6, + STATE(7631), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193696] = 8, + [201417] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11304), 1, - sym_identifier, + ACTIONS(12152), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7055), 6, + STATE(7632), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193727] = 8, + [201448] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11306), 1, - anon_sym_RPAREN, + ACTIONS(12154), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7056), 6, + STATE(7633), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193758] = 8, + [201479] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11308), 1, - anon_sym_RBRACE, + ACTIONS(12156), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7057), 6, + STATE(7634), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193789] = 8, + [201510] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11310), 1, - sym_identifier, + ACTIONS(12158), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7058), 6, + STATE(7635), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193820] = 8, + [201541] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11312), 1, - sym_identifier, + ACTIONS(12160), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7059), 6, + STATE(7636), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193851] = 8, + [201572] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11314), 1, - sym_identifier, + ACTIONS(9800), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7060), 6, + STATE(7637), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193882] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [201603] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(3536), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12162), 1, + anon_sym_then, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7061), 6, + STATE(7638), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193913] = 8, + [201634] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11316), 1, - anon_sym_do, + ACTIONS(9929), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7062), 6, + STATE(7639), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193944] = 8, + [201665] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11318), 1, - anon_sym_RBRACK, + ACTIONS(12164), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7063), 6, + STATE(7640), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [193975] = 8, + [201696] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11320), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12166), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7064), 6, + STATE(7641), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194006] = 8, + [201727] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11322), 1, - anon_sym_PIPE, + ACTIONS(12168), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7065), 6, + STATE(7642), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194037] = 8, + [201758] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11324), 1, - anon_sym_GT, + ACTIONS(12170), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7066), 6, + STATE(7643), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194068] = 8, + [201789] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11326), 1, - sym__dedent, + ACTIONS(12172), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7067), 6, + STATE(7644), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194099] = 8, + [201820] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9176), 1, - anon_sym_GT, + ACTIONS(12174), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7068), 6, + STATE(7645), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194130] = 8, + [201851] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11328), 1, - anon_sym_GT, + ACTIONS(12176), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7069), 6, + STATE(7646), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194161] = 8, + [201882] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11330), 1, + ACTIONS(12178), 1, anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7070), 6, + STATE(7647), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194192] = 8, + [201913] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11332), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12180), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7071), 6, + STATE(7648), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194223] = 8, + [201944] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11334), 1, + ACTIONS(12182), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7072), 6, + STATE(7649), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194254] = 8, + [201975] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11336), 1, - anon_sym_COLON, + ACTIONS(12184), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7073), 6, + STATE(7650), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194285] = 8, + [202006] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11338), 1, - anon_sym_RBRACK, + ACTIONS(12186), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7074), 6, + STATE(7651), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194316] = 8, + [202037] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11340), 1, - sym_int, + ACTIONS(12188), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7075), 6, + STATE(7652), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194347] = 8, + [202068] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11342), 1, + ACTIONS(12190), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7076), 6, + STATE(7653), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194378] = 8, + [202099] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11344), 1, - anon_sym_GT, + ACTIONS(12192), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7077), 6, + STATE(7654), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194409] = 8, + [202130] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11346), 1, - sym__triple_quoted_content, + ACTIONS(12194), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7078), 6, + STATE(7655), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194440] = 8, + [202161] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11348), 1, - sym__triple_quoted_content, + ACTIONS(12196), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7079), 6, + STATE(7656), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194471] = 8, + [202192] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11350), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(12198), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7080), 6, + STATE(7657), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194502] = 8, + [202223] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11352), 1, - anon_sym_then, + ACTIONS(12200), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7081), 6, + STATE(7658), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194533] = 8, + [202254] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11354), 1, - sym_identifier, + ACTIONS(12202), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7082), 6, + STATE(7659), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194564] = 8, + [202285] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11356), 1, - sym_identifier, + ACTIONS(12204), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7083), 6, + STATE(7660), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194595] = 8, + [202316] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5221), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(9895), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7084), 6, + STATE(7661), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194626] = 8, + [202347] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11358), 1, - anon_sym_RBRACK, + ACTIONS(12206), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7085), 6, + STATE(7662), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194657] = 8, + [202378] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11360), 1, - anon_sym_DASH_GT, + ACTIONS(12208), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7086), 6, + STATE(7663), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194688] = 8, + [202409] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11362), 1, - anon_sym_get, + ACTIONS(12210), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7087), 6, + STATE(7664), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194719] = 8, + [202440] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11364), 1, - sym__indent, + ACTIONS(12212), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7088), 6, + STATE(7665), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194750] = 8, + [202471] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11366), 1, - anon_sym_EQ, + ACTIONS(12214), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7089), 6, + STATE(7666), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194781] = 8, + [202502] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11362), 1, - anon_sym_set, + ACTIONS(12216), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7090), 6, + STATE(7667), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194812] = 8, + [202533] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11368), 1, + ACTIONS(12218), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7091), 6, + STATE(7668), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194843] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [202564] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11370), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12220), 1, + anon_sym_PIPE, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7092), 6, + STATE(7669), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194874] = 8, + [202595] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11372), 1, + ACTIONS(12222), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7093), 6, + STATE(7670), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194905] = 8, + [202626] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11374), 1, + ACTIONS(12224), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7094), 6, + STATE(7671), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194936] = 8, + [202657] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11376), 1, - anon_sym_GT, + ACTIONS(12226), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7095), 6, + STATE(7672), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194967] = 8, + [202688] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9204), 1, - anon_sym_GT, + ACTIONS(12228), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7096), 6, + STATE(7673), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [194998] = 8, + [202719] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11378), 1, - anon_sym_get, + ACTIONS(12230), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7097), 6, + STATE(7674), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195029] = 8, + [202750] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11380), 1, - anon_sym_GT, + ACTIONS(12232), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7098), 6, + STATE(7675), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195060] = 8, + [202781] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11378), 1, - anon_sym_set, + ACTIONS(12234), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7099), 6, + STATE(7676), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195091] = 8, + [202812] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11382), 1, - anon_sym_get, + ACTIONS(12236), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7100), 6, + STATE(7677), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195122] = 8, + [202843] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11382), 1, - anon_sym_set, + ACTIONS(12238), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7101), 6, + STATE(7678), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195153] = 8, + [202874] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11384), 1, - anon_sym_do, + ACTIONS(12240), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7102), 6, + STATE(7679), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195184] = 8, + [202905] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11386), 1, - sym__dedent, + ACTIONS(12242), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7103), 6, + STATE(7680), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195215] = 8, + [202936] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11388), 1, - anon_sym_COLON, + ACTIONS(12244), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7104), 6, + STATE(7681), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195246] = 8, + [202967] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11390), 1, - anon_sym_PIPE, + ACTIONS(12246), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7105), 6, + STATE(7682), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195277] = 8, + [202998] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11392), 1, - anon_sym_RBRACK, + ACTIONS(12248), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7106), 6, + STATE(7683), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195308] = 8, + [203029] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11394), 1, - sym__dedent, + ACTIONS(12250), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7107), 6, + STATE(7684), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195339] = 8, + [203060] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11396), 1, - anon_sym_GT, + ACTIONS(12252), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7108), 6, + STATE(7685), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195370] = 8, + [203091] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11398), 1, - sym__indent, + ACTIONS(12254), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7109), 6, + STATE(7686), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195401] = 8, + [203122] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11400), 1, - anon_sym_then, + ACTIONS(12256), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7110), 6, + STATE(7687), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195432] = 8, + [203153] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11402), 1, - sym_identifier, + ACTIONS(12258), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7111), 6, + STATE(7688), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195463] = 8, + [203184] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11404), 1, - sym_identifier, + ACTIONS(12260), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7112), 6, + STATE(7689), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195494] = 8, + [203215] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11406), 1, - anon_sym_COLON, + ACTIONS(12262), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7113), 6, + STATE(7690), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195525] = 8, + [203246] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11408), 1, + ACTIONS(12264), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7114), 6, + STATE(7691), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195556] = 8, + [203277] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11410), 1, - anon_sym_RPAREN, + ACTIONS(9859), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7115), 6, + STATE(7692), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195587] = 8, + [203308] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11412), 1, - sym__triple_quoted_content, + ACTIONS(12266), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7116), 6, + STATE(7693), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195618] = 8, + [203339] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11414), 1, - sym__triple_quoted_content, + ACTIONS(12268), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7117), 6, + STATE(7694), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195649] = 8, + [203370] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11416), 1, + ACTIONS(12270), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7118), 6, + STATE(7695), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195680] = 8, + [203401] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11418), 1, - anon_sym_then, + ACTIONS(12272), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7119), 6, + STATE(7696), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195711] = 8, + [203432] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11420), 1, - anon_sym_RPAREN, + ACTIONS(12274), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7120), 6, + STATE(7697), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195742] = 8, + [203463] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11422), 1, - sym__indent, + ACTIONS(12276), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7121), 6, + STATE(7698), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195773] = 8, + [203494] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11424), 1, - anon_sym_GT, + ACTIONS(12278), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7122), 6, + STATE(7699), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195804] = 8, + [203525] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11426), 1, - anon_sym_RBRACE, + ACTIONS(12280), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7123), 6, + STATE(7700), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195835] = 8, + [203556] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11428), 1, - anon_sym_DASH_GT, + ACTIONS(12282), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7124), 6, + STATE(7701), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195866] = 8, + [203587] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11430), 1, - anon_sym_GT, + ACTIONS(12284), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7125), 6, + STATE(7702), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195897] = 8, + [203618] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11432), 1, - sym_identifier, + ACTIONS(12286), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7126), 6, + STATE(7703), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195928] = 8, + [203649] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11434), 1, + ACTIONS(12288), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7127), 6, + STATE(7704), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195959] = 8, + [203680] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11436), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12290), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7128), 6, + STATE(7705), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [195990] = 8, + [203711] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11438), 1, - sym__dedent, + ACTIONS(12292), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7129), 6, + STATE(7706), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196021] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [203742] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11440), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12294), 1, + anon_sym_RBRACK, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7130), 6, + STATE(7707), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196052] = 8, + [203773] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11442), 1, - sym__dedent, + ACTIONS(12296), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7131), 6, + STATE(7708), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196083] = 8, + [203804] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11444), 1, - sym__dedent, + ACTIONS(12298), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7132), 6, + STATE(7709), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196114] = 8, + [203835] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9224), 1, - anon_sym_GT, + ACTIONS(12300), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7133), 6, + STATE(7710), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196145] = 8, + [203866] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11446), 1, - anon_sym_GT, + ACTIONS(12302), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7134), 6, + STATE(7711), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196176] = 8, + [203897] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11448), 1, - anon_sym_GT, + ACTIONS(12304), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7135), 6, + STATE(7712), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196207] = 8, + [203928] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11450), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12306), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7136), 6, + STATE(7713), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196238] = 8, + [203959] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11452), 1, - sym__dedent, + ACTIONS(12308), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7137), 6, + STATE(7714), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196269] = 8, + [203990] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11454), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(12310), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7138), 6, + STATE(7715), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196300] = 8, + [204021] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11456), 1, - sym__dedent, + ACTIONS(12312), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7139), 6, + STATE(7716), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196331] = 8, + [204052] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11458), 1, - anon_sym_do, + ACTIONS(12314), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7140), 6, + STATE(7717), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196362] = 8, + [204083] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11460), 1, - sym_identifier, + ACTIONS(12316), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7141), 6, + STATE(7718), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196393] = 8, + [204114] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9707), 1, - anon_sym_EQ, + ACTIONS(12318), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7142), 6, + STATE(7719), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196424] = 8, + [204145] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11462), 1, - anon_sym_PIPE, + ACTIONS(12320), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7143), 6, + STATE(7720), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196455] = 8, + [204176] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11464), 1, - sym_int, + ACTIONS(12322), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7144), 6, + STATE(7721), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196486] = 8, + [204207] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11466), 1, - sym__dedent, + ACTIONS(12324), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7145), 6, + STATE(7722), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196517] = 8, + [204238] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11468), 1, - sym_identifier, + ACTIONS(12326), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7146), 6, + STATE(7723), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196548] = 8, + [204269] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11470), 1, - anon_sym_POUNDendif, + ACTIONS(9825), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7147), 6, + STATE(7724), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196579] = 8, + [204300] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11472), 1, - anon_sym_then, + ACTIONS(12328), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7148), 6, + STATE(7725), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196610] = 8, + [204331] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11474), 1, - sym__dedent, + ACTIONS(12330), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7149), 6, + STATE(7726), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196641] = 8, + [204362] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11476), 1, + ACTIONS(12332), 1, sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7150), 6, + STATE(7727), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196672] = 8, + [204393] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11478), 1, - sym__triple_quoted_content, + ACTIONS(12334), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7151), 6, + STATE(7728), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196703] = 8, + [204424] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11480), 1, - sym_identifier, + ACTIONS(12334), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7152), 6, + STATE(7729), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196734] = 8, + [204455] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11482), 1, + ACTIONS(12336), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7153), 6, + STATE(7730), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196765] = 8, + [204486] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11484), 1, - sym__dedent, + ACTIONS(12338), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7154), 6, + STATE(7731), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196796] = 8, + [204517] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11486), 1, - anon_sym_EQ, + ACTIONS(12340), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7155), 6, + STATE(7732), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196827] = 8, + [204548] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11488), 1, - anon_sym_GT, + ACTIONS(12342), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7156), 6, + STATE(7733), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196858] = 8, + [204579] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9238), 1, - anon_sym_GT, + ACTIONS(12342), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7157), 6, + STATE(7734), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196889] = 8, + [204610] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9234), 1, - anon_sym_GT, + ACTIONS(12344), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7158), 6, + STATE(7735), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196920] = 8, + [204641] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11490), 1, - anon_sym_GT, + ACTIONS(12346), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7159), 6, + STATE(7736), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196951] = 8, + [204672] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11492), 1, - anon_sym_PIPE, + ACTIONS(12348), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7160), 6, + STATE(7737), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [196982] = 8, + [204703] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11494), 1, - sym__dedent, + ACTIONS(12344), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7161), 6, + STATE(7738), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197013] = 8, + [204734] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11496), 1, - sym__dedent, + ACTIONS(12350), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7162), 6, + STATE(7739), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197044] = 8, + [204765] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11498), 1, - sym__triple_quoted_content, + ACTIONS(12352), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7163), 6, + STATE(7740), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197075] = 8, + [204796] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11500), 1, + ACTIONS(12354), 1, sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7164), 6, + STATE(7741), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197106] = 8, + [204827] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11502), 1, - sym_identifier, + ACTIONS(12356), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7165), 6, + STATE(7742), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197137] = 8, + [204858] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11504), 1, + ACTIONS(12358), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7166), 6, + STATE(7743), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197168] = 8, + [204889] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11506), 1, - sym_identifier, + ACTIONS(12360), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7167), 6, + STATE(7744), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197199] = 8, + [204920] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11508), 1, - anon_sym_EQ, + ACTIONS(12362), 1, + anon_sym_struct, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7168), 6, + STATE(7745), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197230] = 8, + [204951] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11510), 1, - sym_identifier, + ACTIONS(12364), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7169), 6, + STATE(7746), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197261] = 8, + [204982] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11512), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12366), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7170), 6, + STATE(7747), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197292] = 8, + [205013] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11514), 1, - sym_identifier, + ACTIONS(12368), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7171), 6, + STATE(7748), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197323] = 8, + [205044] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11516), 1, - anon_sym_POUNDendif, + ACTIONS(12370), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7172), 6, + STATE(7749), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197354] = 8, + [205075] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11518), 1, - sym__triple_quoted_content, + ACTIONS(12372), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7173), 6, + STATE(7750), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197385] = 8, + [205106] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11520), 1, - sym__triple_quoted_content, + ACTIONS(12374), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7174), 6, + STATE(7751), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197416] = 8, + [205137] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11522), 1, - sym_identifier, + ACTIONS(12376), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7175), 6, + STATE(7752), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197447] = 8, + [205168] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11524), 1, - anon_sym_GT, + ACTIONS(12378), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7176), 6, + STATE(7753), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197478] = 8, + [205199] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11526), 1, - anon_sym_RBRACE, + ACTIONS(12380), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7177), 6, + STATE(7754), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197509] = 8, + [205230] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11528), 1, - anon_sym_EQ, + ACTIONS(12382), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7178), 6, + STATE(7755), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197540] = 8, + [205261] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11530), 1, + ACTIONS(9764), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7179), 6, + STATE(7756), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197571] = 8, + [205292] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9242), 1, - anon_sym_GT, + ACTIONS(12384), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7180), 6, + STATE(7757), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197602] = 8, + [205323] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11532), 1, - anon_sym_of, + ACTIONS(12386), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7181), 6, + STATE(7758), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197633] = 8, + [205354] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11534), 1, - anon_sym_GT, + ACTIONS(12388), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7182), 6, + STATE(7759), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197664] = 8, + [205385] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11536), 1, - sym__triple_quoted_content, + ACTIONS(12390), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7183), 6, + STATE(7760), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197695] = 8, + [205416] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11538), 1, - sym__triple_quoted_content, + ACTIONS(9788), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7184), 6, + STATE(7761), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197726] = 8, + [205447] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11540), 1, - sym_identifier, + ACTIONS(12392), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7185), 6, + STATE(7762), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197757] = 8, + [205478] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11542), 1, - sym__indent, + ACTIONS(12394), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7186), 6, + STATE(7763), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197788] = 8, + [205509] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11544), 1, - anon_sym_POUNDendif, + ACTIONS(12396), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7187), 6, + STATE(7764), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197819] = 8, + [205540] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11546), 1, - anon_sym_EQ, + ACTIONS(12398), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7188), 6, + STATE(7765), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197850] = 8, + [205571] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11548), 1, + ACTIONS(12400), 1, anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7189), 6, + STATE(7766), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197881] = 8, + [205602] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11550), 1, - anon_sym_GT, + ACTIONS(12402), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7190), 6, + STATE(7767), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197912] = 8, + [205633] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11552), 1, - sym__dedent, + ACTIONS(12404), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7191), 6, + STATE(7768), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197943] = 8, + [205664] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11554), 1, - sym__triple_quoted_content, + ACTIONS(12406), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7192), 6, + STATE(7769), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [197974] = 8, + [205695] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11556), 1, - sym__triple_quoted_content, + ACTIONS(12408), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7193), 6, + STATE(7770), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198005] = 8, + [205726] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11558), 1, - sym_identifier, + ACTIONS(12410), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7194), 6, + STATE(7771), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198036] = 8, + [205757] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11560), 1, - sym_identifier, + ACTIONS(12412), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7195), 6, + STATE(7772), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198067] = 8, + [205788] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11562), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12414), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7196), 6, + STATE(7773), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198098] = 8, + [205819] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11564), 1, - sym__dedent, + ACTIONS(12416), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7197), 6, + STATE(7774), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198129] = 8, + [205850] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11566), 1, + ACTIONS(12418), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7198), 6, + STATE(7775), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198160] = 8, + [205881] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11568), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12420), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7199), 6, + STATE(7776), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198191] = 8, + [205912] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11570), 1, - sym__triple_quoted_content, + ACTIONS(12422), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7200), 6, + STATE(7777), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198222] = 8, + [205943] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11572), 1, - sym__triple_quoted_content, + ACTIONS(12424), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7201), 6, + STATE(7778), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198253] = 8, + [205974] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11574), 1, - sym_identifier, + ACTIONS(12426), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7202), 6, + STATE(7779), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198284] = 8, + [206005] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9284), 1, - anon_sym_GT, + ACTIONS(12428), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7203), 6, + STATE(7780), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198315] = 8, + [206036] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11576), 1, - anon_sym_GT, + ACTIONS(12430), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7204), 6, + STATE(7781), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198346] = 8, + [206067] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11578), 1, - sym__triple_quoted_content, + ACTIONS(12432), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7205), 6, + STATE(7782), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198377] = 8, + [206098] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11580), 1, - sym__triple_quoted_content, + ACTIONS(9734), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7206), 6, + STATE(7783), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198408] = 8, + [206129] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11582), 1, - anon_sym_RPAREN, + ACTIONS(12434), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7207), 6, + STATE(7784), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198439] = 8, + [206160] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9262), 1, - anon_sym_GT, + ACTIONS(12436), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7208), 6, + STATE(7785), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198470] = 8, + [206191] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11584), 1, - anon_sym_COLON, + ACTIONS(12438), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7209), 6, + STATE(7786), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198501] = 8, + [206222] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11586), 1, - sym__triple_quoted_content, + ACTIONS(12440), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7210), 6, + STATE(7787), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198532] = 8, + [206253] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11588), 1, - sym__triple_quoted_content, + ACTIONS(9748), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7211), 6, + STATE(7788), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198563] = 8, + [206284] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11590), 1, + ACTIONS(12442), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7212), 6, + STATE(7789), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198594] = 8, + [206315] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11592), 1, - sym_identifier, + ACTIONS(12444), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7213), 6, + STATE(7790), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198625] = 8, + [206346] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11594), 1, - anon_sym_RBRACK, + ACTIONS(12446), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7214), 6, + STATE(7791), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198656] = 8, + [206377] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11596), 1, - sym__triple_quoted_content, + ACTIONS(12448), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7215), 6, + STATE(7792), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198687] = 8, + [206408] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11598), 1, - sym__triple_quoted_content, + ACTIONS(12450), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7216), 6, + STATE(7793), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198718] = 8, + [206439] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5173), 1, - anon_sym_EQ, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(12452), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7217), 6, + STATE(7794), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198749] = 8, + [206470] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5177), 1, - anon_sym_EQ, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(12454), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7218), 6, + STATE(7795), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198780] = 8, + [206501] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11600), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12456), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7219), 6, + STATE(7796), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198811] = 8, + [206532] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11602), 1, - sym__triple_quoted_content, + ACTIONS(12458), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7220), 6, + STATE(7797), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198842] = 8, + [206563] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11604), 1, - sym__triple_quoted_content, + ACTIONS(12460), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7221), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [198873] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3415), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(7222), 6, + STATE(7798), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198904] = 8, + [206594] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11606), 1, - sym_identifier, + ACTIONS(12462), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7223), 6, + STATE(7799), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198935] = 8, + [206625] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11608), 1, - sym__dedent, + ACTIONS(12464), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7224), 6, + STATE(7800), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198966] = 8, + [206656] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9298), 1, - anon_sym_GT, + ACTIONS(12466), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7225), 6, + STATE(7801), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [198997] = 8, + [206687] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11610), 1, - sym__dedent, + ACTIONS(12468), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7226), 6, + STATE(7802), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199028] = 8, + [206718] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11612), 1, + ACTIONS(12470), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7227), 6, + STATE(7803), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199059] = 8, + [206749] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11614), 1, - sym__indent, + ACTIONS(12472), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7228), 6, + STATE(7804), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199090] = 8, + [206780] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11616), 1, - anon_sym_POUNDendif, + ACTIONS(12474), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7229), 6, + STATE(7805), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199121] = 8, + [206811] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11618), 1, - anon_sym_POUNDendif, + ACTIONS(12476), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7230), 6, + STATE(7806), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199152] = 8, + [206842] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11620), 1, - sym_int, + ACTIONS(12478), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7231), 6, + STATE(7807), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199183] = 8, + [206873] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11622), 1, - sym_int, + ACTIONS(12480), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7232), 6, + STATE(7808), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199214] = 8, + [206904] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11624), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12482), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7233), 6, + STATE(7809), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199245] = 8, + [206935] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11626), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12484), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7234), 6, + STATE(7810), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199276] = 8, + [206966] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11628), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12486), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7235), 6, + STATE(7811), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199307] = 8, + [206997] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11630), 1, + ACTIONS(12488), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7236), 6, + STATE(7812), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199338] = 8, + [207028] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11632), 1, + ACTIONS(9897), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7237), 6, + STATE(7813), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199369] = 8, + [207059] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11634), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12490), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7238), 6, + STATE(7814), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199400] = 8, + [207090] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11636), 1, - sym_int, + ACTIONS(12492), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7239), 6, + STATE(7815), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199431] = 8, + [207121] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11638), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12494), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7240), 6, + STATE(7816), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199462] = 8, + [207152] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11640), 1, - anon_sym_RBRACE, + ACTIONS(12496), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7241), 6, + STATE(7817), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199493] = 8, + [207183] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9276), 1, - anon_sym_GT, + ACTIONS(12498), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7242), 6, + STATE(7818), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199524] = 8, + [207214] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11642), 1, - anon_sym_PIPE, + ACTIONS(12500), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7243), 6, + STATE(7819), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199555] = 8, + [207245] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11644), 1, - anon_sym_GT, + ACTIONS(12502), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7244), 6, + STATE(7820), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199586] = 8, + [207276] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11646), 1, - anon_sym_get, + ACTIONS(12504), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7245), 6, + STATE(7821), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199617] = 8, + [207307] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11648), 1, - anon_sym_EQ, + ACTIONS(12506), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7246), 6, + STATE(7822), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199648] = 8, + [207338] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11650), 1, - sym_int, + ACTIONS(12508), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7247), 6, + STATE(7823), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199679] = 8, + [207369] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11652), 1, - anon_sym_GT, + ACTIONS(12510), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7248), 6, + STATE(7824), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199710] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [207400] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(3377), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12512), 1, + anon_sym_RPAREN, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7249), 6, + STATE(7825), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199741] = 8, + [207431] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11654), 1, - anon_sym_do, + ACTIONS(12514), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7250), 6, + STATE(7826), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199772] = 8, + [207462] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11656), 1, - anon_sym_RBRACK, + ACTIONS(12516), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7251), 6, + STATE(7827), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199803] = 8, + [207493] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11658), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12518), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7252), 6, + STATE(7828), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199834] = 8, + [207524] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11660), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(12520), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7253), 6, + STATE(7829), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199865] = 8, + [207555] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11662), 1, - sym__dedent, + ACTIONS(12522), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7254), 6, + STATE(7830), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199896] = 8, + [207586] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11664), 1, + ACTIONS(12524), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7255), 6, + STATE(7831), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199927] = 8, + [207617] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11666), 1, - sym__dedent, + ACTIONS(12526), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7256), 6, + STATE(7832), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199958] = 8, + [207648] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11668), 1, - anon_sym_RBRACE, + ACTIONS(12528), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7257), 6, + STATE(7833), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [199989] = 8, + [207679] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11670), 1, - anon_sym_GT, + ACTIONS(12530), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7258), 6, + STATE(7834), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200020] = 8, + [207710] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11672), 1, - sym__indent, + ACTIONS(12532), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7259), 6, + STATE(7835), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200051] = 8, + [207741] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11674), 1, - anon_sym_RBRACE, + ACTIONS(12534), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7260), 6, + STATE(7836), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200082] = 8, + [207772] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11676), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12536), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7261), 6, + STATE(7837), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200113] = 8, + [207803] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9300), 1, - anon_sym_GT, + ACTIONS(12538), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7262), 6, + STATE(7838), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200144] = 8, + [207834] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11678), 1, - sym_int, + ACTIONS(12540), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7263), 6, + STATE(7839), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200175] = 8, + [207865] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11680), 1, - anon_sym_GT, + ACTIONS(12542), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7264), 6, + STATE(7840), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200206] = 8, + [207896] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11682), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12544), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7265), 6, + STATE(7841), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200237] = 8, + [207927] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11684), 1, - anon_sym_RBRACK, + ACTIONS(12546), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7266), 6, + STATE(7842), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200268] = 8, + [207958] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11686), 1, - anon_sym_EQ, + ACTIONS(12548), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7267), 6, + STATE(7843), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200299] = 8, + [207989] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11688), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12550), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7268), 6, + STATE(7844), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200330] = 8, + [208020] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11690), 1, - anon_sym_RBRACK, + ACTIONS(12552), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7269), 6, + STATE(7845), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200361] = 8, + [208051] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11692), 1, - sym_int, + ACTIONS(12554), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7270), 6, + STATE(7846), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200392] = 8, + [208082] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11694), 1, - anon_sym_RPAREN, + ACTIONS(12556), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7271), 6, + STATE(7847), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200423] = 8, + [208113] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11696), 1, - anon_sym_GT, + ACTIONS(12558), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7272), 6, + STATE(7848), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200454] = 8, + [208144] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11698), 1, - anon_sym_RPAREN, + ACTIONS(12560), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7273), 6, + STATE(7849), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200485] = 8, + [208175] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9264), 1, - anon_sym_GT, + ACTIONS(12562), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7274), 6, + STATE(7850), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200516] = 8, + [208206] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11700), 1, - sym_identifier, + ACTIONS(12564), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7275), 6, + STATE(7851), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200547] = 8, + [208237] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11702), 1, - anon_sym_GT, + ACTIONS(12566), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7276), 6, + STATE(7852), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200578] = 8, + [208268] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11704), 1, - anon_sym_RBRACE, + ACTIONS(12568), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7277), 6, + STATE(7853), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200609] = 8, + [208299] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11706), 1, - sym_identifier, + ACTIONS(12570), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7278), 6, + STATE(7854), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200640] = 8, + [208330] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11708), 1, - sym__indent, + ACTIONS(12572), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7279), 6, + STATE(7855), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200671] = 8, + [208361] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11710), 1, - sym_identifier, + ACTIONS(9728), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7280), 6, + STATE(7856), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200702] = 8, + [208392] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11712), 1, - sym_identifier, + ACTIONS(12574), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7281), 6, + STATE(7857), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200733] = 8, + [208423] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11714), 1, + ACTIONS(12576), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7282), 6, + STATE(7858), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200764] = 8, + [208454] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11716), 1, - sym_identifier, + ACTIONS(12578), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7283), 6, + STATE(7859), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200795] = 8, + [208485] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11718), 1, - sym_int, + ACTIONS(12580), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7284), 6, + STATE(7860), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200826] = 8, + [208516] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11720), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12582), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7285), 6, + STATE(7861), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200857] = 8, + [208547] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11722), 1, - sym_int, + ACTIONS(12584), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7286), 6, + STATE(7862), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200888] = 8, + [208578] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11724), 1, - sym__indent, + ACTIONS(12586), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7287), 6, + STATE(7863), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200919] = 8, + [208609] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11726), 1, - sym__indent, + ACTIONS(12588), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7288), 6, + STATE(7864), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200950] = 8, + [208640] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11728), 1, - sym__indent, + ACTIONS(12590), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7289), 6, + STATE(7865), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [200981] = 8, + [208671] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11730), 1, - sym__indent, + ACTIONS(12592), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7290), 6, + STATE(7866), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201012] = 8, + [208702] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10128), 1, - anon_sym_new, + ACTIONS(12594), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7291), 6, + STATE(7867), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201043] = 8, + [208733] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11732), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12596), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7292), 6, + STATE(7868), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201074] = 8, + [208764] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11734), 1, - sym__dedent, + ACTIONS(12598), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7293), 6, + STATE(7869), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201105] = 8, + [208795] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11736), 1, - sym__dedent, + ACTIONS(9732), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7294), 6, + STATE(7870), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201136] = 8, + [208826] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11738), 1, - sym__indent, + ACTIONS(12600), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7295), 6, + STATE(7871), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201167] = 8, + [208857] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11740), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12602), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7296), 6, + STATE(7872), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201198] = 8, + [208888] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11742), 1, - anon_sym_EQ, + ACTIONS(12604), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7297), 6, + STATE(7873), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201229] = 8, + [208919] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11744), 1, - sym__indent, + ACTIONS(12606), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7298), 6, + STATE(7874), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201260] = 8, + [208950] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11746), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12608), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7299), 6, + STATE(7875), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201291] = 8, + [208981] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11748), 1, - anon_sym_RBRACK, + ACTIONS(12610), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7300), 6, + STATE(7876), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201322] = 8, + [209012] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11750), 1, + ACTIONS(12612), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7301), 6, + STATE(7877), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201353] = 8, + [209043] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11752), 1, + ACTIONS(12614), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7302), 6, + STATE(7878), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201384] = 8, + [209074] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11754), 1, - sym__indent, + ACTIONS(12616), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7303), 6, + STATE(7879), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201415] = 8, + [209105] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11756), 1, - anon_sym_new, + ACTIONS(12618), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7304), 6, + STATE(7880), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201446] = 8, + [209136] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11758), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12620), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7305), 6, + STATE(7881), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201477] = 8, + [209167] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11760), 1, - sym__indent, + ACTIONS(12622), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7306), 6, + STATE(7882), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201508] = 8, + [209198] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11762), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(9863), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7307), 6, + STATE(7883), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201539] = 8, + [209229] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11764), 1, - anon_sym_EQ, + ACTIONS(12624), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7308), 6, + STATE(7884), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201570] = 8, + [209260] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11766), 1, - anon_sym_EQ, + ACTIONS(12626), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7309), 6, + STATE(7885), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201601] = 8, + [209291] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11768), 1, - anon_sym_POUNDendif, + ACTIONS(12628), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7310), 6, + STATE(7886), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201632] = 8, + [209322] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11770), 1, + ACTIONS(12630), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7311), 6, + STATE(7887), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201663] = 8, + [209353] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11772), 1, - sym_identifier, + ACTIONS(12632), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7312), 6, + STATE(7888), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201694] = 8, + [209384] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11774), 1, - sym__indent, + ACTIONS(9855), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7313), 6, + STATE(7889), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201725] = 8, + [209415] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11776), 1, - sym_identifier, + ACTIONS(12634), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7314), 6, + STATE(7890), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201756] = 8, + [209446] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11778), 1, - sym__dedent, + ACTIONS(12636), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7315), 6, + STATE(7891), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201787] = 8, + [209477] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11780), 1, - sym_identifier, + ACTIONS(5858), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7316), 6, + STATE(7892), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201818] = 8, + [209508] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11782), 1, - sym__indent, + ACTIONS(12638), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7317), 6, + STATE(7893), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201849] = 8, + [209539] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11784), 1, - sym__dedent, + ACTIONS(12640), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7318), 6, + STATE(7894), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201880] = 8, + [209570] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11786), 1, - anon_sym_COLON, + ACTIONS(12642), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7319), 6, + STATE(7895), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201911] = 8, + [209601] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5434), 1, + ACTIONS(5866), 1, anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7320), 6, + STATE(7896), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201942] = 8, + [209632] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(3796), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11788), 1, - sym__indent, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7321), 6, + STATE(7897), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [201973] = 8, + [209663] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11790), 1, - anon_sym_EQ, + ACTIONS(12644), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7322), 6, + STATE(7898), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202004] = 8, + [209694] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11792), 1, - sym_identifier, + ACTIONS(12646), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7323), 6, + STATE(7899), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202035] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [209725] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(11794), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12648), 1, + sym__indent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7324), 6, + STATE(7900), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202066] = 8, + [209756] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11796), 1, - sym_identifier, + ACTIONS(12650), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7325), 6, + STATE(7901), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202097] = 8, + [209787] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(3600), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11798), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7326), 6, + STATE(7902), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202128] = 8, + [209818] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11800), 1, - sym__dedent, + ACTIONS(12652), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7327), 6, + STATE(7903), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202159] = 8, + [209849] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11802), 1, - sym_identifier, + ACTIONS(12654), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7328), 6, + STATE(7904), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202190] = 8, + [209880] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11804), 1, - anon_sym_LT2, + ACTIONS(12656), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7329), 6, + STATE(7905), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202221] = 8, + [209911] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11806), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12658), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7330), 6, + STATE(7906), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202252] = 8, + [209942] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11808), 1, - anon_sym_DASH_GT, + ACTIONS(12660), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7331), 6, + STATE(7907), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202283] = 8, + [209973] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11810), 1, - sym_int, + ACTIONS(12662), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7332), 6, + STATE(7908), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202314] = 8, + [210004] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11812), 1, - anon_sym_POUNDendif, + ACTIONS(12664), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7333), 6, + STATE(7909), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202345] = 8, + [210035] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11814), 1, - anon_sym_COLON, + ACTIONS(12666), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7334), 6, + STATE(7910), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202376] = 8, + [210066] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11816), 1, - anon_sym_GT, + ACTIONS(12668), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7335), 6, + STATE(7911), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202407] = 8, + [210097] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9349), 1, - anon_sym_GT, + ACTIONS(12670), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7336), 6, + STATE(7912), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202438] = 8, + [210128] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11818), 1, - anon_sym_GT, + ACTIONS(12672), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7337), 6, + STATE(7913), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202469] = 8, + [210159] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5348), 1, - anon_sym_POUNDendif, + ACTIONS(12674), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7338), 6, + STATE(7914), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202500] = 8, + [210190] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11820), 1, - sym__dedent, + ACTIONS(12676), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7339), 6, + STATE(7915), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202531] = 8, + [210221] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11822), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(5828), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7340), 6, + STATE(7916), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202562] = 8, + [210252] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11824), 1, - anon_sym_POUNDendif, + ACTIONS(12678), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7341), 6, + STATE(7917), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202593] = 8, + [210283] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11826), 1, - anon_sym_POUNDendif, + ACTIONS(12680), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7342), 6, + STATE(7918), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202624] = 8, + [210314] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11828), 1, - anon_sym_GT, + ACTIONS(5936), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7343), 6, + STATE(7919), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202655] = 8, + [210345] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11830), 1, - anon_sym_get, + ACTIONS(12682), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7344), 6, + STATE(7920), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202686] = 8, + [210376] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9336), 1, - anon_sym_GT, + ACTIONS(12684), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7345), 6, + STATE(7921), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202717] = 8, + [210407] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11832), 1, - sym__indent, + ACTIONS(5842), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7346), 6, + STATE(7922), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202748] = 8, + [210438] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11834), 1, - sym_identifier, + ACTIONS(12686), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7347), 6, + STATE(7923), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202779] = 8, + [210469] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11836), 1, + ACTIONS(12688), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7348), 6, + STATE(7924), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202810] = 8, + [210500] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11838), 1, - sym_identifier, + ACTIONS(12690), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7349), 6, + STATE(7925), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202841] = 8, + [210531] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11830), 1, - anon_sym_set, + ACTIONS(5903), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7350), 6, + STATE(7926), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202872] = 8, + [210562] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11840), 1, - sym__dedent, + ACTIONS(12692), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7351), 6, + STATE(7927), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202903] = 8, + [210593] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11842), 1, - sym_int, + ACTIONS(5824), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7352), 6, + STATE(7928), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202934] = 8, + [210624] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4173), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11844), 1, - sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7353), 6, + STATE(7929), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202965] = 8, + [210655] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11846), 1, - sym__indent, + ACTIONS(5872), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7354), 6, + STATE(7930), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [202996] = 8, + [210686] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11848), 1, - sym__indent, + ACTIONS(12694), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7355), 6, + STATE(7931), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203027] = 8, + [210717] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11850), 1, + ACTIONS(12696), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7356), 6, + STATE(7932), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203058] = 8, + [210748] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11852), 1, - sym__indent, + ACTIONS(12698), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7357), 6, + STATE(7933), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203089] = 8, + [210779] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11854), 1, - anon_sym_GT, + ACTIONS(12700), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7358), 6, + STATE(7934), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203120] = 8, + [210810] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11856), 1, - anon_sym_get, + ACTIONS(12702), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7359), 6, + STATE(7935), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203151] = 8, + [210841] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11856), 1, - anon_sym_set, + ACTIONS(5878), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7360), 6, + STATE(7936), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203182] = 8, + [210872] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11858), 1, - anon_sym_get, + ACTIONS(5886), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7361), 6, + STATE(7937), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203213] = 8, + [210903] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2413), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11860), 1, - anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7362), 6, + STATE(7938), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203244] = 8, + [210934] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11862), 1, - sym__dedent, + ACTIONS(12704), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7363), 6, + STATE(7939), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203275] = 8, + [210965] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11864), 1, - anon_sym_EQ, + ACTIONS(12706), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7364), 6, + STATE(7940), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203306] = 8, + [210996] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11866), 1, + ACTIONS(12708), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7365), 6, + STATE(7941), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203337] = 8, + [211027] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11858), 1, - anon_sym_set, + ACTIONS(12710), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7366), 6, + STATE(7942), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203368] = 8, + [211058] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11868), 1, - anon_sym_RPAREN, + ACTIONS(5911), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7367), 6, + STATE(7943), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203399] = 8, + [211089] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11870), 1, - sym_identifier, + ACTIONS(5911), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7368), 6, + STATE(7944), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203430] = 8, + [211120] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11872), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(5854), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7369), 6, + STATE(7945), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203461] = 8, + [211151] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3440), 1, + anon_sym_then, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11874), 1, - sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7370), 6, + STATE(7946), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203492] = 8, + [211182] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11876), 1, - anon_sym_new, + ACTIONS(12712), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7371), 6, + STATE(7947), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203523] = 8, + [211213] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11878), 1, - sym__dedent, + ACTIONS(12714), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7372), 6, + STATE(7948), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203554] = 8, + [211244] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11880), 1, + ACTIONS(12716), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7373), 6, + STATE(7949), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203585] = 8, + [211275] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11882), 1, - anon_sym_POUNDendif, + ACTIONS(12718), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7374), 6, + STATE(7950), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203616] = 8, + [211306] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5562), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11884), 1, - anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7375), 6, + STATE(7951), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203647] = 8, + [211337] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11886), 1, - anon_sym_EQ, + ACTIONS(12720), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7376), 6, + STATE(7952), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203678] = 8, + [211368] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11888), 1, - anon_sym_struct, + ACTIONS(12722), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7377), 6, + STATE(7953), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203709] = 8, + [211399] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11890), 1, + ACTIONS(12724), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7378), 6, + STATE(7954), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203740] = 8, + [211430] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11892), 1, - sym_identifier, + ACTIONS(10744), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7379), 6, + STATE(7955), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203771] = 8, + [211461] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11894), 1, - sym__indent, + ACTIONS(12726), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7380), 6, + STATE(7956), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203802] = 8, + [211492] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11896), 1, - anon_sym_RBRACE, + ACTIONS(12728), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7381), 6, + STATE(7957), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203833] = 8, + [211523] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11898), 1, - sym_identifier, + ACTIONS(12730), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7382), 6, + STATE(7958), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203864] = 8, + [211554] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11900), 1, - sym_identifier, + ACTIONS(12732), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7383), 6, + STATE(7959), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203895] = 8, + [211585] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11902), 1, - sym__indent, + ACTIONS(12734), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7384), 6, + STATE(7960), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203926] = 8, + [211616] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11904), 1, - sym_int, + ACTIONS(12736), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7385), 6, + STATE(7961), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203957] = 8, + [211647] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11906), 1, - sym__dedent, + ACTIONS(12738), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7386), 6, + STATE(7962), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [203988] = 8, + [211678] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11908), 1, - sym__indent, + ACTIONS(9879), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7387), 6, + STATE(7963), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204019] = 8, + [211709] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11910), 1, - anon_sym_EQ, + ACTIONS(12740), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7388), 6, + STATE(7964), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204050] = 8, + [211740] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11912), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12742), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7389), 6, + STATE(7965), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204081] = 8, + [211771] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11914), 1, - sym__dedent, + ACTIONS(12744), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7390), 6, + STATE(7966), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204112] = 8, + [211802] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11916), 1, - sym_identifier, + ACTIONS(12746), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7391), 6, + STATE(7967), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204143] = 8, + [211833] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11918), 1, + ACTIONS(12748), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7392), 6, + STATE(7968), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204174] = 8, + [211864] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11920), 1, - sym__dedent, + ACTIONS(12750), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7393), 6, + STATE(7969), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204205] = 8, + [211895] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11922), 1, - sym_identifier, + ACTIONS(12752), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7394), 6, + STATE(7970), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204236] = 8, + [211926] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5755), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11924), 1, - anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7395), 6, + STATE(7971), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204267] = 8, + [211957] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11926), 1, - anon_sym_GT, + ACTIONS(12754), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7396), 6, + STATE(7972), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204298] = 8, + [211988] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11928), 1, - anon_sym_DASH_GT, + ACTIONS(12756), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7397), 6, + STATE(7973), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204329] = 8, + [212019] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(3703), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11930), 1, - sym__dedent, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7398), 6, + STATE(7974), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204360] = 8, + [212050] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11932), 1, - anon_sym_RBRACE, + ACTIONS(12758), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7399), 6, + STATE(7975), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204391] = 8, + [212081] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11934), 1, + ACTIONS(12760), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7400), 6, + STATE(7976), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204422] = 8, + [212112] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5422), 1, - anon_sym_POUNDendif, + ACTIONS(12762), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7401), 6, + STATE(7977), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204453] = 8, + [212143] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11936), 1, - sym__indent, + ACTIONS(12764), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7402), 6, + STATE(7978), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204484] = 8, + [212174] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11938), 1, - sym_identifier, + ACTIONS(12766), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7403), 6, + STATE(7979), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204515] = 8, + [212205] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11940), 1, + ACTIONS(12768), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7404), 6, + STATE(7980), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204546] = 8, + [212236] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(3440), 1, + anon_sym_RPAREN, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11942), 1, - sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7405), 6, + STATE(7981), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204577] = 8, + [212267] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5388), 1, - anon_sym_POUNDendif, + ACTIONS(12770), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7406), 6, + STATE(7982), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204608] = 8, + [212298] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11944), 1, - sym__dedent, + ACTIONS(12772), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7407), 6, + STATE(7983), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204639] = 8, + [212329] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5382), 1, - anon_sym_POUNDendif, + ACTIONS(12774), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7408), 6, + STATE(7984), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204670] = 8, + [212360] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11946), 1, - sym__indent, + ACTIONS(12776), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7409), 6, + STATE(7985), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204701] = 8, + [212391] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11948), 1, - sym__indent, + ACTIONS(12778), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7410), 6, + STATE(7986), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204732] = 8, + [212422] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11950), 1, - sym__indent, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(12780), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7411), 6, + STATE(7987), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204763] = 8, + [212453] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11952), 1, - sym__indent, + ACTIONS(12782), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7412), 6, + STATE(7988), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204794] = 8, + [212484] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11954), 1, - sym__dedent, + ACTIONS(12784), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7413), 6, + STATE(7989), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204825] = 8, + [212515] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11956), 1, - anon_sym_GT, + ACTIONS(12786), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7414), 6, + STATE(7990), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204856] = 8, + [212546] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11958), 1, - sym__indent, + ACTIONS(12788), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7415), 6, + STATE(7991), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204887] = 8, + [212577] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11960), 1, - anon_sym_RPAREN, + ACTIONS(12790), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7416), 6, + STATE(7992), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204918] = 8, + [212608] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5751), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11962), 1, - anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7417), 6, + STATE(7993), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204949] = 8, + [212639] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11964), 1, - anon_sym_EQ, + ACTIONS(12792), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7418), 6, + STATE(7994), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [204980] = 8, + [212670] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11966), 1, - sym__indent, + ACTIONS(12794), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7419), 6, + STATE(7995), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205011] = 8, + [212701] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(3644), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(11968), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7420), 6, + STATE(7996), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205042] = 8, + [212732] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11970), 1, - sym__dedent, + ACTIONS(12796), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7421), 6, + STATE(7997), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205073] = 8, + [212763] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11972), 1, + ACTIONS(12798), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7422), 6, + STATE(7998), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205104] = 8, + [212794] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9290), 1, + ACTIONS(12800), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7423), 6, + STATE(7999), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205135] = 8, + [212825] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11974), 1, - sym__indent, + ACTIONS(10742), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7424), 6, + STATE(8000), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205166] = 8, + [212856] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10104), 1, - anon_sym_new, + ACTIONS(12802), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7425), 6, + STATE(8001), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205197] = 8, + [212887] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11976), 1, - sym__dedent, + ACTIONS(12804), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7426), 6, + STATE(8002), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205228] = 8, + [212918] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11978), 1, + ACTIONS(12806), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7427), 6, + STATE(8003), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205259] = 8, + [212949] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11980), 1, - sym_int, + ACTIONS(12808), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7428), 6, + STATE(8004), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205290] = 8, + [212980] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11982), 1, - anon_sym_EQ, + ACTIONS(12810), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7429), 6, + STATE(8005), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205321] = 8, + [213011] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11984), 1, - anon_sym_EQ, + ACTIONS(12812), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7430), 6, + STATE(8006), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205352] = 8, + [213042] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11986), 1, - anon_sym_GT, + ACTIONS(12814), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7431), 6, + STATE(8007), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205383] = 8, + [213073] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11988), 1, - sym__indent, + ACTIONS(12816), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7432), 6, + STATE(8008), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205414] = 8, + [213104] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11990), 1, - anon_sym_RBRACK, + ACTIONS(12816), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7433), 6, + STATE(8009), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205445] = 8, + [213135] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11992), 1, - sym__dedent, + ACTIONS(12818), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7434), 6, + STATE(8010), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205476] = 8, + [213166] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11994), 1, - sym_identifier, + ACTIONS(12820), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7435), 6, + STATE(8011), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205507] = 8, + [213197] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11996), 1, - sym__indent, + ACTIONS(12822), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7436), 6, + STATE(8012), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205538] = 8, + [213228] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11998), 1, - anon_sym_RBRACE, + ACTIONS(12824), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7437), 6, + STATE(8013), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205569] = 8, + [213259] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5171), 1, - anon_sym_EQ, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(12826), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7438), 6, + STATE(8014), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205600] = 8, + [213290] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12000), 1, - sym__indent, + ACTIONS(12828), 1, + anon_sym_struct, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7439), 6, + STATE(8015), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205631] = 8, + [213321] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12002), 1, - anon_sym_EQ, + ACTIONS(12830), 1, + anon_sym_unit, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7440), 6, + STATE(8016), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205662] = 8, + [213352] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12004), 1, - sym__dedent, + ACTIONS(12832), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7441), 6, + STATE(8017), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205693] = 8, + [213383] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12006), 1, - anon_sym_POUNDendif, + ACTIONS(12834), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7442), 6, + STATE(8018), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205724] = 8, + [213414] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12008), 1, + ACTIONS(12836), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7443), 6, + STATE(8019), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205755] = 8, + [213445] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12010), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12838), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7444), 6, + STATE(8020), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205786] = 8, + [213476] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12012), 1, - sym__dedent, + ACTIONS(12840), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7445), 6, + STATE(8021), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205817] = 8, + [213507] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12014), 1, - sym_identifier, + ACTIONS(12840), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7446), 6, + STATE(8022), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205848] = 8, + [213538] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12016), 1, - anon_sym_LT2, + ACTIONS(12842), 1, + anon_sym_get, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7447), 6, + STATE(8023), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205879] = 8, + [213569] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12018), 1, - anon_sym_GT, + ACTIONS(12844), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7448), 6, + STATE(8024), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205910] = 8, + [213600] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12020), 1, - anon_sym_DASH_GT, + ACTIONS(12842), 1, + anon_sym_set, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7449), 6, + STATE(8025), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205941] = 8, + [213631] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12022), 1, - anon_sym_RPAREN, + ACTIONS(12846), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7450), 6, + STATE(8026), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [205972] = 8, + [213662] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12024), 1, + ACTIONS(9913), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7451), 6, + STATE(8027), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206003] = 8, + [213693] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12026), 1, - anon_sym_RPAREN, + ACTIONS(12848), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7452), 6, + STATE(8028), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206034] = 8, + [213724] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12028), 1, - sym__indent, + ACTIONS(12850), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7453), 6, + STATE(8029), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206065] = 8, + [213755] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12030), 1, - sym_identifier, + ACTIONS(12852), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7454), 6, + STATE(8030), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206096] = 8, + [213786] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12032), 1, + ACTIONS(12854), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7455), 6, + STATE(8031), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206127] = 8, + [213817] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12034), 1, - sym__dedent, + ACTIONS(12856), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7456), 6, + STATE(8032), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206158] = 8, + [213848] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12036), 1, - anon_sym_RBRACK, + ACTIONS(12858), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7457), 6, + STATE(8033), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206189] = 8, + [213879] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12038), 1, - anon_sym_RBRACK, + ACTIONS(12860), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7458), 6, + STATE(8034), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206220] = 8, + [213910] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12040), 1, - sym__indent, + ACTIONS(12862), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7459), 6, + STATE(8035), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206251] = 8, + [213941] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12042), 1, - sym__indent, + ACTIONS(12864), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7460), 6, + STATE(8036), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206282] = 8, + [213972] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12044), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(12866), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7461), 6, + STATE(8037), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206313] = 8, + [214003] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12046), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12868), 1, + anon_sym_member, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7462), 6, + STATE(8038), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206344] = 8, + [214034] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12048), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12870), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7463), 6, + STATE(8039), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206375] = 8, + [214065] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12050), 1, + ACTIONS(12872), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7464), 6, + STATE(8040), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206406] = 8, + [214096] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12052), 1, - sym_int, + ACTIONS(12874), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7465), 6, + STATE(8041), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206437] = 8, + [214127] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12054), 1, - anon_sym_GT, + ACTIONS(12876), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7466), 6, + STATE(8042), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206468] = 8, + [214158] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12056), 1, + ACTIONS(12878), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7467), 6, + STATE(8043), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206499] = 8, + [214189] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12058), 1, - sym_identifier, + ACTIONS(12880), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7468), 6, + STATE(8044), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206530] = 8, + [214220] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12060), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12882), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7469), 6, + STATE(8045), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206561] = 8, + [214251] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10098), 1, - anon_sym_new, + ACTIONS(12884), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7470), 6, + STATE(8046), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206592] = 8, + [214282] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12062), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12886), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7471), 6, + STATE(8047), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206623] = 8, + [214313] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12064), 1, + ACTIONS(12888), 1, sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7472), 6, + STATE(8048), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206654] = 8, + [214344] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12066), 1, - sym__indent, + ACTIONS(12890), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7473), 6, + STATE(8049), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206685] = 8, + [214375] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12068), 1, - sym__dedent, + ACTIONS(12892), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7474), 6, + STATE(8050), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206716] = 8, + [214406] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12070), 1, - sym_identifier, + ACTIONS(12894), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7475), 6, + STATE(8051), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206747] = 8, + [214437] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12072), 1, + ACTIONS(12896), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7476), 6, + STATE(8052), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206778] = 8, + [214468] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12074), 1, - sym__indent, + ACTIONS(12898), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7477), 6, + STATE(8053), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206809] = 8, + [214499] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12076), 1, - sym_identifier, + ACTIONS(12900), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7478), 6, + STATE(8054), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206840] = 8, + [214530] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12078), 1, - sym__dedent, + ACTIONS(9899), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7479), 6, + STATE(8055), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206871] = 8, + [214561] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5352), 1, - anon_sym_POUNDendif, + ACTIONS(12902), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7480), 6, + STATE(8056), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206902] = 8, + [214592] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12080), 1, - sym__dedent, + ACTIONS(12904), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7481), 6, + STATE(8057), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206933] = 8, + [214623] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12082), 1, + ACTIONS(12906), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7482), 6, + STATE(8058), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206964] = 8, + [214654] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12084), 1, - sym__dedent, + ACTIONS(12908), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7483), 6, + STATE(8059), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [206995] = 8, + [214685] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12086), 1, - sym_identifier, + ACTIONS(12910), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7484), 6, + STATE(8060), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207026] = 8, + [214716] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5081), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(7344), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7485), 6, + STATE(8061), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207057] = 8, + [214747] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5356), 1, - anon_sym_POUNDendif, + ACTIONS(12912), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7486), 6, + STATE(8062), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207088] = 8, + [214778] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5366), 1, - anon_sym_POUNDendif, + ACTIONS(12914), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7487), 6, + STATE(8063), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207119] = 8, + [214809] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12088), 1, - sym__indent, + ACTIONS(12916), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7488), 6, + STATE(8064), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207150] = 8, + [214840] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12090), 1, + ACTIONS(12918), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7489), 6, + STATE(8065), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207181] = 8, + [214871] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12092), 1, - sym_identifier, + ACTIONS(12920), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7490), 6, + STATE(8066), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207212] = 8, + [214902] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12094), 1, - anon_sym_GT, + ACTIONS(12922), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7491), 6, + STATE(8067), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207243] = 8, + [214933] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9347), 1, - anon_sym_GT, + ACTIONS(12924), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7492), 6, + STATE(8068), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207274] = 8, + [214964] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9236), 1, - anon_sym_GT, + ACTIONS(12926), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7493), 6, + STATE(8069), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207305] = 8, + [214995] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12096), 1, + ACTIONS(12928), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7494), 6, + STATE(8070), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207336] = 8, + [215026] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12098), 1, - sym_int, + ACTIONS(12930), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7495), 6, + STATE(8071), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207367] = 8, + [215057] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12100), 1, - anon_sym_GT, + ACTIONS(12932), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7496), 6, + STATE(8072), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207398] = 8, + [215088] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12102), 1, - sym__dedent, + ACTIONS(12934), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7497), 6, + STATE(8073), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207429] = 8, + [215119] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12104), 1, - anon_sym_RBRACK, + ACTIONS(12936), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7498), 6, + STATE(8074), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207460] = 8, + [215150] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(4102), 1, - anon_sym_EQ2, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(10156), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7499), 6, + STATE(8075), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207491] = 8, + [215181] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12106), 1, - sym_identifier, + ACTIONS(12938), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7500), 6, + STATE(8076), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207522] = 8, + [215212] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12108), 1, - sym_int, + ACTIONS(12940), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7501), 6, + STATE(8077), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207553] = 8, + [215243] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12110), 1, + ACTIONS(12942), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7502), 6, + STATE(8078), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207584] = 8, + [215274] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12112), 1, + ACTIONS(12944), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7503), 6, + STATE(8079), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207615] = 8, + [215305] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12114), 1, - anon_sym_new, + ACTIONS(12946), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7504), 6, + STATE(8080), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207646] = 8, + [215336] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12116), 1, - anon_sym_POUNDendif, + ACTIONS(12948), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7505), 6, + STATE(8081), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207677] = 8, + [215367] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12118), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12950), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7506), 6, + STATE(8082), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207708] = 8, + [215398] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12120), 1, - sym__indent, + ACTIONS(12952), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7507), 6, + STATE(8083), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207739] = 8, + [215429] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12122), 1, - sym__dedent, + ACTIONS(12954), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7508), 6, + STATE(8084), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207770] = 8, + [215460] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12124), 1, - sym__dedent, + ACTIONS(12956), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7509), 6, + STATE(8085), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207801] = 8, + [215491] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12126), 1, + ACTIONS(12958), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7510), 6, + STATE(8086), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207832] = 8, + [215522] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12128), 1, - sym__indent, + ACTIONS(12960), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7511), 6, + STATE(8087), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207863] = 8, + [215553] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12130), 1, - sym_identifier, + ACTIONS(12962), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7512), 6, + STATE(8088), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207894] = 8, + [215584] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12132), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(9893), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7513), 6, + STATE(8089), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207925] = 8, + [215615] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12134), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(12964), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7514), 6, + STATE(8090), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207956] = 8, + [215646] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12136), 1, - sym_identifier, + ACTIONS(12966), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7515), 6, + STATE(8091), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [207987] = 8, + [215677] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12138), 1, + ACTIONS(12968), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7516), 6, + STATE(8092), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208018] = 8, + [215708] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12140), 1, - sym_identifier, + ACTIONS(12970), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7517), 6, + STATE(8093), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208049] = 8, + [215739] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12142), 1, - anon_sym_RPAREN, + ACTIONS(12972), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7518), 6, + STATE(8094), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208080] = 8, + [215770] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(950), 1, - sym__dedent, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(12974), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7519), 6, + STATE(8095), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208111] = 8, + [215801] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12144), 1, - anon_sym_GT, + ACTIONS(12976), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7520), 6, + STATE(8096), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208142] = 8, + [215832] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12146), 1, - sym__indent, + ACTIONS(12978), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7521), 6, + STATE(8097), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208173] = 8, + [215863] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12148), 1, + ACTIONS(12980), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7522), 6, + STATE(8098), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208204] = 8, + [215894] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12150), 1, - sym_identifier, + ACTIONS(12982), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7523), 6, + STATE(8099), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208235] = 8, + [215925] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12152), 1, - sym__dedent, + ACTIONS(10728), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7524), 6, + STATE(8100), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208266] = 8, + [215956] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12154), 1, + ACTIONS(12984), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7525), 6, + STATE(8101), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208297] = 8, + [215987] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12156), 1, - anon_sym_RBRACE, + ACTIONS(12986), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7526), 6, + STATE(8102), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208328] = 8, + [216018] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12158), 1, + ACTIONS(12988), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7527), 6, + STATE(8103), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208359] = 8, + [216049] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(1670), 1, + anon_sym_POUNDendif, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12160), 1, - anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7528), 6, + STATE(8104), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208390] = 8, + [216080] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12162), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(12990), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7529), 6, + STATE(8105), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208421] = 8, + [216111] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12164), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(12992), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7530), 6, + STATE(8106), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208452] = 8, + [216142] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12166), 1, - anon_sym_RBRACE, + ACTIONS(12994), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7531), 6, + STATE(8107), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208483] = 8, + [216173] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12168), 1, - sym_int, + ACTIONS(12996), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7532), 6, + STATE(8108), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208514] = 8, + [216204] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12170), 1, - sym_identifier, + ACTIONS(12998), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7533), 6, + STATE(8109), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208545] = 8, + [216235] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12172), 1, - anon_sym_struct, + ACTIONS(13000), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7534), 6, + STATE(8110), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208576] = 8, + [216266] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12174), 1, + ACTIONS(13002), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7535), 6, + STATE(8111), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208607] = 8, + [216297] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12176), 1, - sym_identifier, + ACTIONS(13004), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7536), 6, + STATE(8112), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208638] = 8, + [216328] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12178), 1, - anon_sym_new, + ACTIONS(13006), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7537), 6, + STATE(8113), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208669] = 8, + [216359] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12180), 1, - anon_sym_GT, + ACTIONS(13008), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7538), 6, + STATE(8114), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208700] = 8, + [216390] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12182), 1, - anon_sym_POUNDendif, + ACTIONS(13010), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7539), 6, + STATE(8115), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208731] = 8, + [216421] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12184), 1, - sym__indent, + ACTIONS(13012), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7540), 6, + STATE(8116), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208762] = 8, + [216452] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9334), 1, - anon_sym_GT, + ACTIONS(13014), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7541), 6, + STATE(8117), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208793] = 8, + [216483] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12186), 1, - anon_sym_POUNDendif, + ACTIONS(13016), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7542), 6, + STATE(8118), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208824] = 8, + [216514] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12188), 1, + ACTIONS(13018), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7543), 6, + STATE(8119), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208855] = 8, + [216545] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12190), 1, - sym__indent, + ACTIONS(13020), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7544), 6, + STATE(8120), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208886] = 8, + [216576] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12192), 1, - sym_int, + ACTIONS(13022), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7545), 6, + STATE(8121), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208917] = 8, + [216607] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12194), 1, - anon_sym_EQ, + ACTIONS(13024), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7546), 6, + STATE(8122), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208948] = 8, + [216638] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12196), 1, - anon_sym_RPAREN, + ACTIONS(13026), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7547), 6, + STATE(8123), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [208979] = 8, + [216669] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12198), 1, - sym_identifier, + ACTIONS(13028), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7548), 6, + STATE(8124), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209010] = 8, + [216700] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12200), 1, - anon_sym_GT, + ACTIONS(13030), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7549), 6, + STATE(8125), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209041] = 8, + [216731] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12202), 1, + ACTIONS(13032), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7550), 6, + STATE(8126), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209072] = 8, + [216762] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12204), 1, - anon_sym_RPAREN, + ACTIONS(13034), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7551), 6, + STATE(8127), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209103] = 8, + [216793] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12206), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13036), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7552), 6, + STATE(8128), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209134] = 8, + [216824] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12208), 1, + ACTIONS(13038), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7553), 6, + STATE(8129), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209165] = 8, + [216855] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12210), 1, - sym__indent, + ACTIONS(10242), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7554), 6, + STATE(8130), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209196] = 8, + [216886] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12212), 1, - sym_identifier, + ACTIONS(13040), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7555), 6, + STATE(8131), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209227] = 8, + [216917] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12214), 1, - sym_identifier, + ACTIONS(13042), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7556), 6, + STATE(8132), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209258] = 8, + [216948] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12216), 1, + ACTIONS(9865), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7557), 6, + STATE(8133), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209289] = 8, + [216979] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12218), 1, - anon_sym_RBRACK, + ACTIONS(13044), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7558), 6, + STATE(8134), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209320] = 8, + [217010] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12220), 1, - anon_sym_POUNDendif, + ACTIONS(13046), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7559), 6, + STATE(8135), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209351] = 8, + [217041] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12222), 1, - sym__indent, + ACTIONS(13048), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7560), 6, + STATE(8136), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209382] = 8, + [217072] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12224), 1, - anon_sym_set, - ACTIONS(13), 2, + ACTIONS(13050), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7561), 6, + STATE(8137), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209413] = 8, + [217103] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9324), 1, - anon_sym_GT, + ACTIONS(13052), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7562), 6, + STATE(8138), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209444] = 8, + [217134] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12226), 1, - sym__dedent, + ACTIONS(13054), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7563), 6, + STATE(8139), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209475] = 8, + [217165] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12224), 1, - anon_sym_get, + ACTIONS(13056), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7564), 6, + STATE(8140), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209506] = 8, + [217196] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12228), 1, - anon_sym_EQ, + ACTIONS(13058), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7565), 6, + STATE(8141), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209537] = 8, + [217227] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12230), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13060), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7566), 6, + STATE(8142), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209568] = 8, + [217258] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12232), 1, - anon_sym_set, + ACTIONS(13062), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7567), 6, + STATE(8143), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209599] = 8, + [217289] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12234), 1, - sym_identifier, + ACTIONS(13064), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7568), 6, + STATE(8144), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209630] = 8, + [217320] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12236), 1, - sym_identifier, + ACTIONS(13066), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7569), 6, + STATE(8145), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209661] = 8, + [217351] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10096), 1, - anon_sym_new, + ACTIONS(13068), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7570), 6, + STATE(8146), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209692] = 8, + [217382] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5639), 1, + anon_sym_EQ, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12238), 1, - sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7571), 6, + STATE(8147), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209723] = 8, + [217413] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12240), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13070), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7572), 6, + STATE(8148), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209754] = 8, + [217444] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12242), 1, - sym__indent, + ACTIONS(13072), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7573), 6, + STATE(8149), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209785] = 8, + [217475] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12244), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13074), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7574), 6, + STATE(8150), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209816] = 8, + [217506] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12232), 1, - anon_sym_get, + ACTIONS(13076), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7575), 6, + STATE(8151), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209847] = 8, + [217537] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12246), 1, + ACTIONS(13078), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7576), 6, + STATE(8152), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209878] = 8, + [217568] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12248), 1, - sym__indent, + ACTIONS(13080), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7577), 6, + STATE(8153), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209909] = 8, + [217599] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12250), 1, - sym__dedent, + ACTIONS(13082), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7578), 6, + STATE(8154), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209940] = 8, + [217630] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12252), 1, - anon_sym_set, + ACTIONS(13084), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7579), 6, + STATE(8155), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [209971] = 8, + [217661] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12254), 1, - sym_identifier, + ACTIONS(13086), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7580), 6, + STATE(8156), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210002] = 8, + [217692] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12256), 1, - sym_identifier, + ACTIONS(13088), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7581), 6, + STATE(8157), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210033] = 8, + [217723] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12252), 1, - anon_sym_get, + ACTIONS(13090), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7582), 6, + STATE(8158), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210064] = 8, + [217754] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12258), 1, - sym_identifier, + ACTIONS(13092), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7583), 6, + STATE(8159), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210095] = 8, + [217785] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12260), 1, + ACTIONS(13094), 1, sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7584), 6, + STATE(8160), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210126] = 8, + [217816] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12262), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13096), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7585), 6, + STATE(8161), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210157] = 8, + [217847] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3169), 1, - anon_sym_then, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13098), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7586), 6, + STATE(8162), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210188] = 8, + [217878] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12264), 1, - sym__indent, + ACTIONS(13100), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7587), 6, + STATE(8163), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210219] = 8, + [217909] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12266), 1, - sym_identifier, + ACTIONS(13102), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7588), 6, + STATE(8164), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210250] = 8, + [217940] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12268), 1, - sym_identifier, + ACTIONS(13104), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7589), 6, + STATE(8165), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210281] = 8, + [217971] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12270), 1, - anon_sym_EQ, + ACTIONS(13106), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7590), 6, + STATE(8166), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210312] = 8, + [218002] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12272), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13108), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7591), 6, + STATE(8167), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210343] = 8, + [218033] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12274), 1, - sym__indent, + ACTIONS(13110), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7592), 6, + STATE(8168), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210374] = 8, + [218064] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12276), 1, - sym__indent, + ACTIONS(13112), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7593), 6, + STATE(8169), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210405] = 8, + [218095] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12278), 1, - sym__indent, + ACTIONS(13114), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7594), 6, + STATE(8170), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210436] = 8, + [218126] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12280), 1, - anon_sym_and, + ACTIONS(13116), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7595), 6, + STATE(8171), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210467] = 8, + [218157] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12282), 1, - sym_identifier, + ACTIONS(13118), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7596), 6, + STATE(8172), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210498] = 8, + [218188] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12284), 1, - anon_sym_RBRACK, + ACTIONS(13120), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7597), 6, + STATE(8173), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210529] = 8, + [218219] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12286), 1, - sym_identifier, + ACTIONS(13122), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7598), 6, + STATE(8174), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210560] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [218250] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12288), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13124), 1, + sym_int, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7599), 6, + STATE(8175), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210591] = 8, + [218281] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12290), 1, + ACTIONS(13126), 1, anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7600), 6, + STATE(8176), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210622] = 8, + [218312] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12292), 1, - anon_sym_RBRACE, + ACTIONS(13128), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7601), 6, + STATE(8177), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210653] = 8, + [218343] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12294), 1, - anon_sym_GT, + ACTIONS(13130), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7602), 6, + STATE(8178), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210684] = 8, + [218374] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12296), 1, - sym__dedent, + ACTIONS(13132), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7603), 6, + STATE(8179), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210715] = 8, + [218405] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12298), 1, - sym__indent, + ACTIONS(13134), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7604), 6, + STATE(8180), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210746] = 8, + [218436] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12300), 1, - sym_identifier, + ACTIONS(13136), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7605), 6, + STATE(8181), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210777] = 8, + [218467] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12302), 1, + ACTIONS(13138), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7606), 6, + STATE(8182), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210808] = 8, + [218498] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12304), 1, - anon_sym_GT, + ACTIONS(13140), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7607), 6, + STATE(8183), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210839] = 8, + [218529] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12306), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13142), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7608), 6, + STATE(8184), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210870] = 8, + [218560] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12308), 1, + ACTIONS(13144), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7609), 6, + STATE(8185), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210901] = 8, + [218591] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12310), 1, - sym__indent, + ACTIONS(13146), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7610), 6, + STATE(8186), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210932] = 8, + [218622] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12312), 1, + ACTIONS(13148), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7611), 6, + STATE(8187), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210963] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [218653] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12314), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13150), 1, + sym__indent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7612), 6, + STATE(8188), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [210994] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [218684] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12316), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(9833), 1, + anon_sym_GT, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7613), 6, + STATE(8189), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211025] = 8, + [218715] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12318), 1, - sym_int, + ACTIONS(13152), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7614), 6, + STATE(8190), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211056] = 8, + [218746] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9170), 1, - anon_sym_GT, + ACTIONS(13154), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7615), 6, + STATE(8191), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211087] = 8, + [218777] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12320), 1, - sym_int, + ACTIONS(13156), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7616), 6, + STATE(8192), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211118] = 8, + [218808] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12322), 1, + ACTIONS(13158), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7617), 6, + STATE(8193), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211149] = 8, + [218839] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12324), 1, - anon_sym_RBRACE, + ACTIONS(13160), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7618), 6, + STATE(8194), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211180] = 8, + [218870] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12326), 1, - sym_int, + ACTIONS(10517), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7619), 6, + STATE(8195), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211211] = 8, + [218901] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12328), 1, - sym__indent, + ACTIONS(13162), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7620), 6, + STATE(8196), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211242] = 8, + [218932] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12330), 1, + ACTIONS(13164), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7621), 6, + STATE(8197), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211273] = 8, + [218963] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12332), 1, + ACTIONS(13166), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7622), 6, + STATE(8198), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211304] = 8, + [218994] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12334), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13168), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7623), 6, + STATE(8199), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211335] = 8, + [219025] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12336), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13170), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7624), 6, + STATE(8200), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211366] = 8, + [219056] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12338), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(13172), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7625), 6, + STATE(8201), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211397] = 8, + [219087] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12340), 1, + ACTIONS(13174), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7626), 6, + STATE(8202), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211428] = 8, + [219118] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12342), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13176), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7627), 6, + STATE(8203), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211459] = 8, + [219149] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12344), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13178), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7628), 6, + STATE(8204), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211490] = 8, + [219180] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12346), 1, - anon_sym_RBRACK, + ACTIONS(13180), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7629), 6, + STATE(8205), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211521] = 8, + [219211] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12348), 1, - anon_sym_RPAREN, + ACTIONS(13182), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7630), 6, + STATE(8206), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211552] = 8, + [219242] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12350), 1, + ACTIONS(9823), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7631), 6, + STATE(8207), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211583] = 8, + [219273] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(3785), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13184), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7632), 6, + STATE(8208), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211614] = 8, + [219304] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12352), 1, - anon_sym_RPAREN, + ACTIONS(13186), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7633), 6, + STATE(8209), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211645] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [219335] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12354), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13188), 1, + sym_identifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7634), 6, + STATE(8210), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211676] = 8, + [219366] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12356), 1, + ACTIONS(13190), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7635), 6, + STATE(8211), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211707] = 8, + [219397] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12358), 1, - sym_identifier, + ACTIONS(13192), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7636), 6, + STATE(8212), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211738] = 8, + [219428] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12360), 1, + ACTIONS(13194), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7637), 6, + STATE(8213), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211769] = 8, + [219459] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12362), 1, - sym_identifier, + ACTIONS(13196), 1, + anon_sym_of, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7638), 6, + STATE(8214), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211800] = 8, + [219490] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12364), 1, - sym_identifier, + ACTIONS(13198), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7639), 6, + STATE(8215), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211831] = 8, + [219521] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12366), 1, + ACTIONS(13200), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7640), 6, + STATE(8216), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211862] = 8, + [219552] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12368), 1, - sym__indent, + ACTIONS(13202), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7641), 6, + STATE(8217), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211893] = 8, + [219583] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12370), 1, - sym__indent, + ACTIONS(9782), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7642), 6, + STATE(8218), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211924] = 8, + [219614] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12372), 1, - sym_identifier, + ACTIONS(13204), 1, + anon_sym_unit, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7643), 6, + STATE(8219), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [211955] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [219645] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12374), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, - anon_sym_POUNDload, - aux_sym_preproc_line_token1, - STATE(7644), 6, - sym_xml_doc, - sym_block_comment, - sym_line_comment, - sym_compiler_directive_decl, - sym_fsi_directive_decl, - sym_preproc_line, - [211986] = 8, - ACTIONS(3), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, - anon_sym_POUNDnowarn, - ACTIONS(7696), 1, - anon_sym_POUNDr, - ACTIONS(12376), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(13206), 1, + sym_identifier, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7645), 6, + STATE(8220), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212017] = 8, + [219676] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5667), 1, + anon_sym_EQ, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12378), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7646), 6, + STATE(8221), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212048] = 8, + [219707] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5603), 1, + anon_sym_EQ, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12380), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7647), 6, + STATE(8222), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212079] = 8, + [219738] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12382), 1, - anon_sym_EQ, + ACTIONS(13208), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7648), 6, + STATE(8223), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212110] = 8, + [219769] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12384), 1, - sym_identifier, + ACTIONS(13210), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7649), 6, + STATE(8224), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212141] = 8, + [219800] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12386), 1, + ACTIONS(13212), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7650), 6, + STATE(8225), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212172] = 8, + [219831] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12388), 1, + ACTIONS(13214), 1, sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7651), 6, + STATE(8226), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212203] = 8, + [219862] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12390), 1, - sym_identifier, + ACTIONS(13216), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7652), 6, + STATE(8227), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212234] = 8, + [219893] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12392), 1, - sym_int, + ACTIONS(13218), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7653), 6, + STATE(8228), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212265] = 8, + [219924] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12394), 1, - anon_sym_RPAREN, + ACTIONS(13220), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7654), 6, + STATE(8229), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212296] = 8, + [219955] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12396), 1, - anon_sym_RBRACK, + ACTIONS(13222), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7655), 6, + STATE(8230), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212327] = 8, + [219986] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12398), 1, - sym_identifier, + ACTIONS(13224), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7656), 6, + STATE(8231), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212358] = 8, + [220017] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12400), 1, - sym_identifier, + ACTIONS(13226), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7657), 6, + STATE(8232), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212389] = 8, + [220048] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12402), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13228), 1, + anon_sym_POUNDendif, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7658), 6, + STATE(8233), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212420] = 8, + [220079] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12404), 1, - anon_sym_unit, + ACTIONS(13230), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7659), 6, + STATE(8234), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212451] = 8, + [220110] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12406), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13232), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7660), 6, + STATE(8235), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212482] = 8, + [220141] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12408), 1, - anon_sym_RPAREN, + ACTIONS(13234), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7661), 6, + STATE(8236), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212513] = 8, + [220172] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12410), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13236), 1, + anon_sym_unit, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7662), 6, + STATE(8237), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212544] = 8, + [220203] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12412), 1, + ACTIONS(13238), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7663), 6, + STATE(8238), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212575] = 8, + [220234] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12414), 1, + ACTIONS(13240), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7664), 6, + STATE(8239), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212606] = 8, + [220265] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12416), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13242), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7665), 6, + STATE(8240), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212637] = 8, + [220296] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12418), 1, - sym_int, + ACTIONS(13244), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7666), 6, + STATE(8241), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212668] = 8, + [220327] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12420), 1, - sym_identifier, + ACTIONS(13246), 1, + anon_sym_PIPE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7667), 6, + STATE(8242), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212699] = 8, + [220358] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12422), 1, - sym_int, + ACTIONS(13248), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7668), 6, + STATE(8243), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212730] = 8, + [220389] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12424), 1, + ACTIONS(13250), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7669), 6, + STATE(8244), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212761] = 8, + [220420] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12426), 1, + ACTIONS(13252), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7670), 6, + STATE(8245), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212792] = 8, + [220451] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12428), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13254), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7671), 6, + STATE(8246), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212823] = 8, + [220482] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12430), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13256), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7672), 6, + STATE(8247), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212854] = 8, + [220513] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12432), 1, - anon_sym_GT, + ACTIONS(13258), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7673), 6, + STATE(8248), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212885] = 8, + [220544] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12434), 1, + ACTIONS(13260), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7674), 6, + STATE(8249), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212916] = 8, + [220575] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12436), 1, - anon_sym_get, + ACTIONS(13262), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7675), 6, + STATE(8250), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212947] = 8, + [220606] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12436), 1, - anon_sym_set, + ACTIONS(13264), 1, + anon_sym_do, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7676), 6, + STATE(8251), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [212978] = 8, + [220637] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12438), 1, + ACTIONS(13266), 1, anon_sym_unit, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7677), 6, + STATE(8252), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213009] = 8, + [220668] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12440), 1, + ACTIONS(13268), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7678), 6, + STATE(8253), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213040] = 8, + [220699] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12442), 1, + ACTIONS(13270), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7679), 6, + STATE(8254), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213071] = 8, + [220730] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12444), 1, - sym__dedent, + ACTIONS(13272), 1, + anon_sym_PIPE_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7680), 6, + STATE(8255), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213102] = 8, + [220761] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12446), 1, - anon_sym_get, + ACTIONS(13274), 1, + anon_sym_RBRACE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7681), 6, + STATE(8256), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213133] = 8, + [220792] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12446), 1, - anon_sym_set, + ACTIONS(13276), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7682), 6, + STATE(8257), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213164] = 8, + [220823] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12448), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13278), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7683), 6, + STATE(8258), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213195] = 8, + [220854] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12450), 1, - anon_sym_EQ, + ACTIONS(13280), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7684), 6, + STATE(8259), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213226] = 8, + [220885] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12452), 1, - sym_identifier, + ACTIONS(13282), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7685), 6, + STATE(8260), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213257] = 8, + [220916] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(10832), 1, - anon_sym_get, + ACTIONS(13284), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7686), 6, + STATE(8261), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213288] = 8, + [220947] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12454), 1, - sym_identifier, + ACTIONS(13286), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7687), 6, + STATE(8262), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213319] = 8, + [220978] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12456), 1, - anon_sym_RPAREN, + ACTIONS(13288), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7688), 6, + STATE(8263), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213350] = 8, + [221009] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12458), 1, - sym_identifier, + ACTIONS(13290), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7689), 6, + STATE(8264), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213381] = 8, + [221040] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(11646), 1, - anon_sym_set, + ACTIONS(9804), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7690), 6, + STATE(8265), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213412] = 8, + [221071] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12460), 1, - anon_sym_POUNDendif, + ACTIONS(10684), 1, + anon_sym_new, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7691), 6, + STATE(8266), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213443] = 8, + [221102] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12462), 1, - anon_sym_unit, + ACTIONS(13292), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7692), 6, + STATE(8267), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213474] = 8, + [221133] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12464), 1, + ACTIONS(13294), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7693), 6, + STATE(8268), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213505] = 8, + [221164] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12466), 1, + ACTIONS(13296), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7694), 6, + STATE(8269), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213536] = 8, + [221195] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12468), 1, - anon_sym_EQ, + ACTIONS(13298), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7695), 6, + STATE(8270), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213567] = 8, + [221226] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12470), 1, + ACTIONS(13300), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7696), 6, + STATE(8271), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213598] = 8, + [221257] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12472), 1, - sym_int, + ACTIONS(13302), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7697), 6, + STATE(8272), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213629] = 8, + [221288] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12474), 1, + ACTIONS(13304), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7698), 6, + STATE(8273), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213660] = 8, + [221319] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12476), 1, + ACTIONS(13306), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7699), 6, + STATE(8274), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213691] = 8, + [221350] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12478), 1, - anon_sym_DASH_GT, + ACTIONS(13308), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7700), 6, + STATE(8275), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213722] = 8, + [221381] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12480), 1, - anon_sym_POUNDendif, + ACTIONS(13310), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7701), 6, + STATE(8276), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213753] = 8, + [221412] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12482), 1, - anon_sym_then, + ACTIONS(13312), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7702), 6, + STATE(8277), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213784] = 8, + [221443] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12484), 1, + ACTIONS(13314), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7703), 6, + STATE(8278), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213815] = 8, + [221474] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12486), 1, + ACTIONS(13316), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7704), 6, + STATE(8279), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213846] = 8, + [221505] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12488), 1, - anon_sym_struct, + ACTIONS(13318), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7705), 6, + STATE(8280), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213877] = 8, + [221536] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12490), 1, - anon_sym_RBRACK, + ACTIONS(13320), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7706), 6, + STATE(8281), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213908] = 8, + [221567] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9286), 1, + ACTIONS(13322), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7707), 6, + STATE(8282), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213939] = 8, + [221598] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12492), 1, + ACTIONS(13324), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7708), 6, + STATE(8283), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [213970] = 8, + [221629] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12494), 1, + ACTIONS(13326), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7709), 6, + STATE(8284), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214001] = 8, + [221660] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12496), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13328), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7710), 6, + STATE(8285), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214032] = 8, + [221691] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12498), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13330), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7711), 6, + STATE(8286), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214063] = 8, + [221722] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12500), 1, - anon_sym_RBRACK, + ACTIONS(13332), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7712), 6, + STATE(8287), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214094] = 8, + [221753] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12502), 1, + ACTIONS(13334), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7713), 6, + STATE(8288), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214125] = 8, + [221784] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12504), 1, + ACTIONS(13336), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7714), 6, + STATE(8289), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214156] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [221815] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12506), 1, - aux_sym_xml_doc_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13338), 1, + sym_block_comment_content, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7715), 6, + STATE(8290), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214187] = 8, + [221846] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12508), 1, - sym__dedent, - ACTIONS(13), 2, + ACTIONS(13340), 1, + aux_sym_line_comment_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7716), 6, + STATE(8291), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214218] = 8, + [221877] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12510), 1, - anon_sym_PIPE_RBRACK, + ACTIONS(13342), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7717), 6, + STATE(8292), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214249] = 8, + [221908] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12512), 1, + ACTIONS(13344), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7718), 6, + STATE(8293), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214280] = 8, + [221939] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12514), 1, + ACTIONS(13346), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7719), 6, + STATE(8294), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214311] = 8, + [221970] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5665), 1, + anon_sym_EQ, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12516), 1, - anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7720), 6, + STATE(8295), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214342] = 8, + [222001] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12518), 1, - anon_sym_GT, + ACTIONS(13348), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7721), 6, + STATE(8296), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214373] = 8, + [222032] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12520), 1, - sym__dedent, + ACTIONS(13350), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7722), 6, + STATE(8297), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214404] = 8, + [222063] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12522), 1, - sym__indent, + ACTIONS(13352), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7723), 6, + STATE(8298), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214435] = 8, + [222094] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12524), 1, - sym__indent, + ACTIONS(9790), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7724), 6, + STATE(8299), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214466] = 8, + [222125] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12526), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13354), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7725), 6, + STATE(8300), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214497] = 8, + [222156] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12528), 1, - sym__dedent, + ACTIONS(13356), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7726), 6, + STATE(8301), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214528] = 8, + [222187] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12530), 1, - anon_sym_EQ, + ACTIONS(13358), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7727), 6, + STATE(8302), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214559] = 8, + [222218] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9182), 1, - anon_sym_GT, + ACTIONS(13360), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7728), 6, + STATE(8303), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214590] = 8, + [222249] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12532), 1, - sym_identifier, + ACTIONS(13362), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7729), 6, + STATE(8304), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214621] = 8, + [222280] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12534), 1, - sym_int, + ACTIONS(13364), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7730), 6, + STATE(8305), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214652] = 8, + [222311] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12536), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13366), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7731), 6, + STATE(8306), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214683] = 8, + [222342] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12538), 1, - sym__dedent, + ACTIONS(13368), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7732), 6, + STATE(8307), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214714] = 8, + [222373] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(4483), 1, + anon_sym_EQ2, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12540), 1, - sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7733), 6, + STATE(8308), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214745] = 8, + [222404] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12542), 1, - sym_identifier, + ACTIONS(13370), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7734), 6, + STATE(8309), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214776] = 8, + [222435] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12544), 1, - anon_sym_GT, + ACTIONS(13372), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7735), 6, + STATE(8310), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214807] = 8, + [222466] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5362), 1, - anon_sym_POUNDendif, + ACTIONS(13374), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7736), 6, + STATE(8311), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214838] = 8, + [222497] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5362), 1, - anon_sym_POUNDendif, + ACTIONS(13376), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7737), 6, + STATE(8312), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214869] = 8, + [222528] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(5394), 1, - anon_sym_POUNDendif, + ACTIONS(13378), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7738), 6, + STATE(8313), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214900] = 8, + [222559] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12546), 1, - sym__dedent, + ACTIONS(13380), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7739), 6, + STATE(8314), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214931] = 8, + [222590] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(2158), 1, - anon_sym_POUNDendif, - ACTIONS(5334), 1, + ACTIONS(864), 1, + sym__dedent, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7740), 6, + STATE(8315), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214962] = 8, + [222621] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12548), 1, - sym__indent, + ACTIONS(13382), 1, + sym__dedent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7741), 6, + STATE(8316), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [214993] = 8, + [222652] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12550), 1, - anon_sym_GT, + ACTIONS(13384), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7742), 6, + STATE(8317), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215024] = 8, + [222683] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12552), 1, - anon_sym_LT2, + ACTIONS(13386), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7743), 6, + STATE(8318), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215055] = 8, + [222714] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12554), 1, - anon_sym_COLON, + ACTIONS(13388), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7744), 6, + STATE(8319), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215086] = 8, + [222745] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12556), 1, + ACTIONS(13390), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7745), 6, + STATE(8320), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215117] = 8, + [222776] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12558), 1, - anon_sym_RBRACE, + ACTIONS(13392), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7746), 6, + STATE(8321), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215148] = 8, + [222807] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12560), 1, - anon_sym_POUNDendif, + ACTIONS(13394), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7747), 6, + STATE(8322), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215179] = 8, + [222838] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12562), 1, - anon_sym_POUNDendif, + ACTIONS(13396), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7748), 6, + STATE(8323), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215210] = 8, + [222869] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12564), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13398), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7749), 6, + STATE(8324), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215241] = 8, + [222900] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12566), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13400), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7750), 6, + STATE(8325), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215272] = 8, + [222931] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12568), 1, - sym__dedent, + ACTIONS(13402), 1, + anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7751), 6, + STATE(8326), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215303] = 8, + [222962] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12570), 1, - sym__dedent, + ACTIONS(13404), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7752), 6, + STATE(8327), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215334] = 8, + [222993] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12572), 1, - sym_identifier, + ACTIONS(13406), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7753), 6, + STATE(8328), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215365] = 8, + [223024] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12574), 1, - sym_int, + ACTIONS(13408), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7754), 6, + STATE(8329), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215396] = 8, + [223055] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12576), 1, + ACTIONS(13410), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7755), 6, + STATE(8330), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215427] = 8, + [223086] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12578), 1, + ACTIONS(13412), 1, anon_sym_LT2, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7756), 6, + STATE(8331), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215458] = 8, + [223117] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12580), 1, + ACTIONS(13414), 1, anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7757), 6, + STATE(8332), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215489] = 8, + [223148] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12582), 1, + ACTIONS(13416), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7758), 6, + STATE(8333), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215520] = 8, + [223179] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12584), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13418), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7759), 6, + STATE(8334), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215551] = 8, + [223210] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12586), 1, + ACTIONS(13420), 1, sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7760), 6, + STATE(8335), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215582] = 8, + [223241] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12588), 1, - anon_sym_LT2, + ACTIONS(13422), 1, + anon_sym_and, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7761), 6, + STATE(8336), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215613] = 8, + [223272] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12590), 1, - anon_sym_COLON, + ACTIONS(13424), 1, + anon_sym_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7762), 6, + STATE(8337), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215644] = 8, + [223303] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12592), 1, - anon_sym_COLON, - ACTIONS(13), 2, + ACTIONS(13426), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7763), 6, + STATE(8338), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215675] = 8, + [223334] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12594), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13428), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7764), 6, + STATE(8339), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215706] = 8, + [223365] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(13430), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, + anon_sym_POUNDload, + aux_sym_preproc_line_token1, + STATE(8340), 6, + sym_xml_doc, + sym_block_comment, + sym_line_comment, + sym_compiler_directive_decl, + sym_fsi_directive_decl, + sym_preproc_line, + [223396] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5), 1, anon_sym_LPAREN_STAR, - ACTIONS(12596), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(7), 1, + anon_sym_SLASH_SLASH, + ACTIONS(8200), 1, + anon_sym_POUNDnowarn, + ACTIONS(8202), 1, + anon_sym_POUNDr, + ACTIONS(13432), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7765), 6, + STATE(8341), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215737] = 8, + [223427] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12598), 1, - anon_sym_COLON, + ACTIONS(13434), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7766), 6, + STATE(8342), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215768] = 8, + [223458] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12600), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13436), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7767), 6, + STATE(8343), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215799] = 8, + [223489] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12602), 1, + ACTIONS(13438), 1, sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7768), 6, + STATE(8344), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215830] = 8, + [223520] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12604), 1, - anon_sym_GT, + ACTIONS(13440), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7769), 6, + STATE(8345), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215861] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [223551] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12606), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13442), 1, + sym_int, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7770), 6, + STATE(8346), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215892] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [223582] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12608), 1, - aux_sym_compiler_directive_decl_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13444), 1, + sym__indent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7771), 6, + STATE(8347), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215923] = 8, + [223613] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12610), 1, - sym_identifier, + ACTIONS(13446), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7772), 6, + STATE(8348), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215954] = 8, + [223644] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12612), 1, - anon_sym_GT, - ACTIONS(13), 2, + ACTIONS(13448), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7773), 6, + STATE(8349), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [215985] = 8, + [223675] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12614), 1, - anon_sym_STAR_RPAREN, + ACTIONS(13450), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7774), 6, + STATE(8350), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216016] = 8, + [223706] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12616), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13452), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7775), 6, + STATE(8351), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216047] = 8, + [223737] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12618), 1, - anon_sym_COLON, + ACTIONS(13454), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7776), 6, + STATE(8352), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216078] = 8, + [223768] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12620), 1, - anon_sym_then, + ACTIONS(13456), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7777), 6, + STATE(8353), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216109] = 8, + [223799] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12622), 1, - sym_identifier, + ACTIONS(13458), 1, + anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7778), 6, + STATE(8354), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216140] = 8, + [223830] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(1853), 1, - ts_builtin_sym_end, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, + ACTIONS(13460), 1, + anon_sym_DASH_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7779), 6, + STATE(8355), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216171] = 8, + [223861] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12624), 1, - anon_sym_GT, + ACTIONS(13462), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7780), 6, + STATE(8356), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216202] = 8, + [223892] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12626), 1, - ts_builtin_sym_end, + ACTIONS(13464), 1, + anon_sym_PIPE_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7781), 6, + STATE(8357), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216233] = 8, + [223923] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12628), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13466), 1, + anon_sym_RBRACK, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7782), 6, + STATE(8358), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216264] = 8, + [223954] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12630), 1, - sym_int, - ACTIONS(13), 2, + ACTIONS(13468), 1, + aux_sym_xml_doc_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7783), 6, + STATE(8359), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216295] = 8, + [223985] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12632), 1, - sym_identifier, + ACTIONS(13470), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7784), 6, + STATE(8360), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216326] = 8, + [224016] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12634), 1, + ACTIONS(13472), 1, sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7785), 6, + STATE(8361), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216357] = 8, + [224047] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12636), 1, - sym__triple_quoted_content, + ACTIONS(13474), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7786), 6, + STATE(8362), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216388] = 8, + [224078] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12638), 1, - sym__triple_quoted_content, + ACTIONS(13476), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7787), 6, + STATE(8363), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216419] = 8, + [224109] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12640), 1, - sym__dedent, + ACTIONS(13478), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7788), 6, + STATE(8364), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216450] = 8, + [224140] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12642), 1, - sym__dedent, + ACTIONS(13480), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7789), 6, + STATE(8365), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216481] = 8, + [224171] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12644), 1, - sym__dedent, + ACTIONS(13482), 1, + anon_sym_COLON, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7790), 6, + STATE(8366), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216512] = 8, + [224202] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12646), 1, - sym__dedent, + ACTIONS(13484), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7791), 6, + STATE(8367), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216543] = 8, + [224233] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9250), 1, + ACTIONS(9738), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7792), 6, + STATE(8368), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216574] = 8, + [224264] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12648), 1, - sym_identifier, - ACTIONS(13), 2, + ACTIONS(13486), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7793), 6, + STATE(8369), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216605] = 8, + [224295] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_LPAREN_STAR, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(9), 1, + ACTIONS(8200), 1, anon_sym_POUNDnowarn, - ACTIONS(11), 1, + ACTIONS(8202), 1, anon_sym_POUNDr, - ACTIONS(111), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, - anon_sym_LPAREN_STAR, - ACTIONS(12650), 1, - sym__indent, - ACTIONS(13), 2, + ACTIONS(13488), 1, + aux_sym_compiler_directive_decl_token1, + ACTIONS(8204), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7794), 6, + STATE(8370), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216636] = 8, + [224326] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12652), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13490), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7795), 6, + STATE(8371), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216667] = 8, + [224357] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12654), 1, - anon_sym_GT, + ACTIONS(13492), 1, + anon_sym_STAR_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7796), 6, + STATE(8372), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216698] = 8, + [224388] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12656), 1, - sym__indent, + ACTIONS(9756), 1, + anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7797), 6, + STATE(8373), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216729] = 8, + [224419] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12658), 1, - sym__indent, + ACTIONS(13494), 1, + anon_sym_then, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7798), 6, + STATE(8374), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216760] = 8, + [224450] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(2235), 1, + ts_builtin_sym_end, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12660), 1, - sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7799), 6, + STATE(8375), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216791] = 8, + [224481] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9246), 1, - anon_sym_GT, + ACTIONS(13496), 1, + sym_int, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7800), 6, + STATE(8376), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216822] = 8, + [224512] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12662), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13498), 1, + ts_builtin_sym_end, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7801), 6, + STATE(8377), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216853] = 8, + [224543] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12664), 1, - anon_sym_POUNDendif, + ACTIONS(13500), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7802), 6, + STATE(8378), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216884] = 8, + [224574] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12666), 1, - anon_sym_GT, + ACTIONS(13502), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7803), 6, + STATE(8379), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216915] = 8, + [224605] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12668), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13504), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7804), 6, + STATE(8380), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216946] = 8, + [224636] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12670), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(13506), 1, + sym__triple_quoted_content, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7805), 6, + STATE(8381), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [216977] = 8, + [224667] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12672), 1, - sym_int, + ACTIONS(13508), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7806), 6, + STATE(8382), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217008] = 8, + [224698] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12674), 1, - anon_sym_PIPE_RPAREN, + ACTIONS(13510), 1, + sym_identifier, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7807), 6, + STATE(8383), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217039] = 8, + [224729] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12676), 1, - sym_int, + ACTIONS(13512), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7808), 6, + STATE(8384), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217070] = 8, + [224760] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(9312), 1, + ACTIONS(13514), 1, anon_sym_GT, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7809), 6, + STATE(8385), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217101] = 8, + [224791] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12678), 1, - sym_int, + ACTIONS(13516), 1, + anon_sym_PIPE_RPAREN, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7810), 6, + STATE(8386), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217132] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_LPAREN_STAR, + [224822] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, - ACTIONS(7694), 1, + ACTIONS(9), 1, anon_sym_POUNDnowarn, - ACTIONS(7696), 1, + ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(12680), 1, - aux_sym_line_comment_token1, - ACTIONS(7698), 2, + ACTIONS(113), 1, + anon_sym_SLASH_SLASH_SLASH, + ACTIONS(5812), 1, + anon_sym_LPAREN_STAR, + ACTIONS(13518), 1, + sym__indent, + ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7811), 6, + STATE(8387), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217163] = 8, + [224853] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12682), 1, - sym_block_comment_content, + ACTIONS(13520), 1, + sym__indent, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7812), 6, + STATE(8388), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217194] = 8, + [224884] = 8, ACTIONS(7), 1, anon_sym_SLASH_SLASH, ACTIONS(9), 1, anon_sym_POUNDnowarn, ACTIONS(11), 1, anon_sym_POUNDr, - ACTIONS(111), 1, + ACTIONS(113), 1, anon_sym_SLASH_SLASH_SLASH, - ACTIONS(5334), 1, + ACTIONS(5812), 1, anon_sym_LPAREN_STAR, - ACTIONS(12684), 1, + ACTIONS(13522), 1, anon_sym_EQ, ACTIONS(13), 2, anon_sym_POUNDload, aux_sym_preproc_line_token1, - STATE(7813), 6, + STATE(8389), 6, sym_xml_doc, sym_block_comment, sym_line_comment, sym_compiler_directive_decl, sym_fsi_directive_decl, sym_preproc_line, - [217225] = 1, - ACTIONS(12686), 1, + [224915] = 1, + ACTIONS(13524), 1, ts_builtin_sym_end, - [217229] = 1, - ACTIONS(12688), 1, + [224919] = 1, + ACTIONS(13526), 1, ts_builtin_sym_end, - [217233] = 1, - ACTIONS(12690), 1, + [224923] = 1, + ACTIONS(13528), 1, ts_builtin_sym_end, - [217237] = 1, - ACTIONS(12692), 1, + [224927] = 1, + ACTIONS(13530), 1, ts_builtin_sym_end, - [217241] = 1, - ACTIONS(5348), 1, + [224931] = 1, + ACTIONS(5936), 1, ts_builtin_sym_end, - [217245] = 1, - ACTIONS(12694), 1, + [224935] = 1, + ACTIONS(13532), 1, ts_builtin_sym_end, - [217249] = 1, - ACTIONS(12696), 1, + [224939] = 1, + ACTIONS(13534), 1, ts_builtin_sym_end, - [217253] = 1, - ACTIONS(12698), 1, + [224943] = 1, + ACTIONS(13536), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3162)] = 0, - [SMALL_STATE(3163)] = 131, - [SMALL_STATE(3164)] = 262, - [SMALL_STATE(3165)] = 388, - [SMALL_STATE(3166)] = 512, - [SMALL_STATE(3167)] = 637, - [SMALL_STATE(3168)] = 762, - [SMALL_STATE(3169)] = 887, - [SMALL_STATE(3170)] = 1012, - [SMALL_STATE(3171)] = 1137, - [SMALL_STATE(3172)] = 1262, - [SMALL_STATE(3173)] = 1387, - [SMALL_STATE(3174)] = 1512, - [SMALL_STATE(3175)] = 1637, - [SMALL_STATE(3176)] = 1760, - [SMALL_STATE(3177)] = 1885, - [SMALL_STATE(3178)] = 2010, - [SMALL_STATE(3179)] = 2135, - [SMALL_STATE(3180)] = 2260, - [SMALL_STATE(3181)] = 2385, - [SMALL_STATE(3182)] = 2510, - [SMALL_STATE(3183)] = 2617, - [SMALL_STATE(3184)] = 2718, - [SMALL_STATE(3185)] = 2823, - [SMALL_STATE(3186)] = 2928, - [SMALL_STATE(3187)] = 3032, - [SMALL_STATE(3188)] = 3131, - [SMALL_STATE(3189)] = 3230, - [SMALL_STATE(3190)] = 3328, - [SMALL_STATE(3191)] = 3428, - [SMALL_STATE(3192)] = 3519, - [SMALL_STATE(3193)] = 3603, - [SMALL_STATE(3194)] = 3675, - [SMALL_STATE(3195)] = 3761, - [SMALL_STATE(3196)] = 3835, - [SMALL_STATE(3197)] = 3921, - [SMALL_STATE(3198)] = 3995, - [SMALL_STATE(3199)] = 4081, - [SMALL_STATE(3200)] = 4155, - [SMALL_STATE(3201)] = 4241, - [SMALL_STATE(3202)] = 4327, - [SMALL_STATE(3203)] = 4413, - [SMALL_STATE(3204)] = 4499, - [SMALL_STATE(3205)] = 4571, - [SMALL_STATE(3206)] = 4655, - [SMALL_STATE(3207)] = 4729, - [SMALL_STATE(3208)] = 4815, - [SMALL_STATE(3209)] = 4909, - [SMALL_STATE(3210)] = 4982, - [SMALL_STATE(3211)] = 5051, - [SMALL_STATE(3212)] = 5122, - [SMALL_STATE(3213)] = 5195, - [SMALL_STATE(3214)] = 5266, - [SMALL_STATE(3215)] = 5351, - [SMALL_STATE(3216)] = 5420, - [SMALL_STATE(3217)] = 5493, - [SMALL_STATE(3218)] = 5562, - [SMALL_STATE(3219)] = 5635, - [SMALL_STATE(3220)] = 5704, - [SMALL_STATE(3221)] = 5774, - [SMALL_STATE(3222)] = 5842, - [SMALL_STATE(3223)] = 5912, - [SMALL_STATE(3224)] = 5982, - [SMALL_STATE(3225)] = 6054, - [SMALL_STATE(3226)] = 6124, - [SMALL_STATE(3227)] = 6218, - [SMALL_STATE(3228)] = 6290, - [SMALL_STATE(3229)] = 6360, - [SMALL_STATE(3230)] = 6428, - [SMALL_STATE(3231)] = 6496, - [SMALL_STATE(3232)] = 6564, - [SMALL_STATE(3233)] = 6647, - [SMALL_STATE(3234)] = 6714, - [SMALL_STATE(3235)] = 6839, - [SMALL_STATE(3236)] = 6906, - [SMALL_STATE(3237)] = 6975, - [SMALL_STATE(3238)] = 7042, - [SMALL_STATE(3239)] = 7125, - [SMALL_STATE(3240)] = 7192, - [SMALL_STATE(3241)] = 7259, - [SMALL_STATE(3242)] = 7330, - [SMALL_STATE(3243)] = 7397, - [SMALL_STATE(3244)] = 7464, - [SMALL_STATE(3245)] = 7535, - [SMALL_STATE(3246)] = 7618, - [SMALL_STATE(3247)] = 7685, - [SMALL_STATE(3248)] = 7810, - [SMALL_STATE(3249)] = 7877, - [SMALL_STATE(3250)] = 7946, - [SMALL_STATE(3251)] = 8037, - [SMALL_STATE(3252)] = 8104, - [SMALL_STATE(3253)] = 8171, - [SMALL_STATE(3254)] = 8240, - [SMALL_STATE(3255)] = 8365, - [SMALL_STATE(3256)] = 8432, - [SMALL_STATE(3257)] = 8501, - [SMALL_STATE(3258)] = 8626, - [SMALL_STATE(3259)] = 8693, - [SMALL_STATE(3260)] = 8818, - [SMALL_STATE(3261)] = 8885, - [SMALL_STATE(3262)] = 8952, - [SMALL_STATE(3263)] = 9019, - [SMALL_STATE(3264)] = 9102, - [SMALL_STATE(3265)] = 9173, - [SMALL_STATE(3266)] = 9244, - [SMALL_STATE(3267)] = 9311, - [SMALL_STATE(3268)] = 9378, - [SMALL_STATE(3269)] = 9445, - [SMALL_STATE(3270)] = 9570, - [SMALL_STATE(3271)] = 9637, - [SMALL_STATE(3272)] = 9704, - [SMALL_STATE(3273)] = 9771, - [SMALL_STATE(3274)] = 9840, - [SMALL_STATE(3275)] = 9911, - [SMALL_STATE(3276)] = 9981, - [SMALL_STATE(3277)] = 10047, - [SMALL_STATE(3278)] = 10133, - [SMALL_STATE(3279)] = 10203, - [SMALL_STATE(3280)] = 10273, - [SMALL_STATE(3281)] = 10391, - [SMALL_STATE(3282)] = 10457, - [SMALL_STATE(3283)] = 10551, - [SMALL_STATE(3284)] = 10619, - [SMALL_STATE(3285)] = 10687, - [SMALL_STATE(3286)] = 10769, - [SMALL_STATE(3287)] = 10837, - [SMALL_STATE(3288)] = 10919, - [SMALL_STATE(3289)] = 10989, - [SMALL_STATE(3290)] = 11055, - [SMALL_STATE(3291)] = 11123, - [SMALL_STATE(3292)] = 11205, - [SMALL_STATE(3293)] = 11287, - [SMALL_STATE(3294)] = 11355, - [SMALL_STATE(3295)] = 11423, - [SMALL_STATE(3296)] = 11492, - [SMALL_STATE(3297)] = 11557, - [SMALL_STATE(3298)] = 11622, - [SMALL_STATE(3299)] = 11687, - [SMALL_STATE(3300)] = 11752, - [SMALL_STATE(3301)] = 11817, - [SMALL_STATE(3302)] = 11882, - [SMALL_STATE(3303)] = 11947, - [SMALL_STATE(3304)] = 12012, - [SMALL_STATE(3305)] = 12077, - [SMALL_STATE(3306)] = 12142, - [SMALL_STATE(3307)] = 12207, - [SMALL_STATE(3308)] = 12272, - [SMALL_STATE(3309)] = 12337, - [SMALL_STATE(3310)] = 12456, - [SMALL_STATE(3311)] = 12521, - [SMALL_STATE(3312)] = 12586, - [SMALL_STATE(3313)] = 12651, - [SMALL_STATE(3314)] = 12718, - [SMALL_STATE(3315)] = 12785, - [SMALL_STATE(3316)] = 12852, - [SMALL_STATE(3317)] = 12917, - [SMALL_STATE(3318)] = 12986, - [SMALL_STATE(3319)] = 13051, - [SMALL_STATE(3320)] = 13116, - [SMALL_STATE(3321)] = 13181, - [SMALL_STATE(3322)] = 13246, - [SMALL_STATE(3323)] = 13311, - [SMALL_STATE(3324)] = 13376, - [SMALL_STATE(3325)] = 13441, - [SMALL_STATE(3326)] = 13510, - [SMALL_STATE(3327)] = 13579, - [SMALL_STATE(3328)] = 13644, - [SMALL_STATE(3329)] = 13709, - [SMALL_STATE(3330)] = 13774, - [SMALL_STATE(3331)] = 13839, - [SMALL_STATE(3332)] = 13908, - [SMALL_STATE(3333)] = 13975, - [SMALL_STATE(3334)] = 14040, - [SMALL_STATE(3335)] = 14105, - [SMALL_STATE(3336)] = 14174, - [SMALL_STATE(3337)] = 14239, - [SMALL_STATE(3338)] = 14304, - [SMALL_STATE(3339)] = 14373, - [SMALL_STATE(3340)] = 14438, - [SMALL_STATE(3341)] = 14503, - [SMALL_STATE(3342)] = 14568, - [SMALL_STATE(3343)] = 14633, - [SMALL_STATE(3344)] = 14698, - [SMALL_STATE(3345)] = 14763, - [SMALL_STATE(3346)] = 14830, - [SMALL_STATE(3347)] = 14899, - [SMALL_STATE(3348)] = 14982, - [SMALL_STATE(3349)] = 15051, - [SMALL_STATE(3350)] = 15118, - [SMALL_STATE(3351)] = 15183, - [SMALL_STATE(3352)] = 15262, - [SMALL_STATE(3353)] = 15341, - [SMALL_STATE(3354)] = 15406, - [SMALL_STATE(3355)] = 15473, - [SMALL_STATE(3356)] = 15542, - [SMALL_STATE(3357)] = 15607, - [SMALL_STATE(3358)] = 15674, - [SMALL_STATE(3359)] = 15741, - [SMALL_STATE(3360)] = 15810, - [SMALL_STATE(3361)] = 15929, - [SMALL_STATE(3362)] = 15994, - [SMALL_STATE(3363)] = 16059, - [SMALL_STATE(3364)] = 16124, - [SMALL_STATE(3365)] = 16189, - [SMALL_STATE(3366)] = 16254, - [SMALL_STATE(3367)] = 16371, - [SMALL_STATE(3368)] = 16452, - [SMALL_STATE(3369)] = 16520, - [SMALL_STATE(3370)] = 16584, - [SMALL_STATE(3371)] = 16672, - [SMALL_STATE(3372)] = 16738, - [SMALL_STATE(3373)] = 16804, - [SMALL_STATE(3374)] = 16874, - [SMALL_STATE(3375)] = 16962, - [SMALL_STATE(3376)] = 17026, - [SMALL_STATE(3377)] = 17092, - [SMALL_STATE(3378)] = 17180, - [SMALL_STATE(3379)] = 17244, - [SMALL_STATE(3380)] = 17310, - [SMALL_STATE(3381)] = 17378, - [SMALL_STATE(3382)] = 17442, - [SMALL_STATE(3383)] = 17530, - [SMALL_STATE(3384)] = 17598, - [SMALL_STATE(3385)] = 17662, - [SMALL_STATE(3386)] = 17726, - [SMALL_STATE(3387)] = 17790, - [SMALL_STATE(3388)] = 17860, - [SMALL_STATE(3389)] = 17926, - [SMALL_STATE(3390)] = 17990, - [SMALL_STATE(3391)] = 18054, - [SMALL_STATE(3392)] = 18124, - [SMALL_STATE(3393)] = 18192, - [SMALL_STATE(3394)] = 18258, - [SMALL_STATE(3395)] = 18326, - [SMALL_STATE(3396)] = 18392, - [SMALL_STATE(3397)] = 18462, - [SMALL_STATE(3398)] = 18550, - [SMALL_STATE(3399)] = 18616, - [SMALL_STATE(3400)] = 18682, - [SMALL_STATE(3401)] = 18750, - [SMALL_STATE(3402)] = 18814, - [SMALL_STATE(3403)] = 18878, - [SMALL_STATE(3404)] = 18942, - [SMALL_STATE(3405)] = 19012, - [SMALL_STATE(3406)] = 19076, - [SMALL_STATE(3407)] = 19140, - [SMALL_STATE(3408)] = 19204, - [SMALL_STATE(3409)] = 19268, - [SMALL_STATE(3410)] = 19332, - [SMALL_STATE(3411)] = 19402, - [SMALL_STATE(3412)] = 19478, - [SMALL_STATE(3413)] = 19566, - [SMALL_STATE(3414)] = 19632, - [SMALL_STATE(3415)] = 19702, - [SMALL_STATE(3416)] = 19778, - [SMALL_STATE(3417)] = 19848, - [SMALL_STATE(3418)] = 19918, - [SMALL_STATE(3419)] = 19986, - [SMALL_STATE(3420)] = 20056, - [SMALL_STATE(3421)] = 20126, - [SMALL_STATE(3422)] = 20193, - [SMALL_STATE(3423)] = 20256, - [SMALL_STATE(3424)] = 20319, - [SMALL_STATE(3425)] = 20386, - [SMALL_STATE(3426)] = 20453, - [SMALL_STATE(3427)] = 20516, - [SMALL_STATE(3428)] = 20579, - [SMALL_STATE(3429)] = 20644, - [SMALL_STATE(3430)] = 20707, - [SMALL_STATE(3431)] = 20770, - [SMALL_STATE(3432)] = 20833, - [SMALL_STATE(3433)] = 20896, - [SMALL_STATE(3434)] = 20959, - [SMALL_STATE(3435)] = 21022, - [SMALL_STATE(3436)] = 21085, - [SMALL_STATE(3437)] = 21150, - [SMALL_STATE(3438)] = 21213, - [SMALL_STATE(3439)] = 21280, - [SMALL_STATE(3440)] = 21345, - [SMALL_STATE(3441)] = 21408, - [SMALL_STATE(3442)] = 21471, - [SMALL_STATE(3443)] = 21534, - [SMALL_STATE(3444)] = 21601, - [SMALL_STATE(3445)] = 21664, - [SMALL_STATE(3446)] = 21727, - [SMALL_STATE(3447)] = 21790, - [SMALL_STATE(3448)] = 21853, - [SMALL_STATE(3449)] = 21918, - [SMALL_STATE(3450)] = 21985, - [SMALL_STATE(3451)] = 22048, - [SMALL_STATE(3452)] = 22111, - [SMALL_STATE(3453)] = 22174, - [SMALL_STATE(3454)] = 22237, - [SMALL_STATE(3455)] = 22300, - [SMALL_STATE(3456)] = 22363, - [SMALL_STATE(3457)] = 22426, - [SMALL_STATE(3458)] = 22489, - [SMALL_STATE(3459)] = 22602, - [SMALL_STATE(3460)] = 22665, - [SMALL_STATE(3461)] = 22728, - [SMALL_STATE(3462)] = 22791, - [SMALL_STATE(3463)] = 22854, - [SMALL_STATE(3464)] = 22917, - [SMALL_STATE(3465)] = 22982, - [SMALL_STATE(3466)] = 23045, - [SMALL_STATE(3467)] = 23108, - [SMALL_STATE(3468)] = 23171, - [SMALL_STATE(3469)] = 23234, - [SMALL_STATE(3470)] = 23297, - [SMALL_STATE(3471)] = 23360, - [SMALL_STATE(3472)] = 23423, - [SMALL_STATE(3473)] = 23486, - [SMALL_STATE(3474)] = 23553, - [SMALL_STATE(3475)] = 23616, - [SMALL_STATE(3476)] = 23679, - [SMALL_STATE(3477)] = 23742, - [SMALL_STATE(3478)] = 23805, - [SMALL_STATE(3479)] = 23868, - [SMALL_STATE(3480)] = 23931, - [SMALL_STATE(3481)] = 23994, - [SMALL_STATE(3482)] = 24057, - [SMALL_STATE(3483)] = 24120, - [SMALL_STATE(3484)] = 24183, - [SMALL_STATE(3485)] = 24246, - [SMALL_STATE(3486)] = 24309, - [SMALL_STATE(3487)] = 24372, - [SMALL_STATE(3488)] = 24435, - [SMALL_STATE(3489)] = 24498, - [SMALL_STATE(3490)] = 24561, - [SMALL_STATE(3491)] = 24624, - [SMALL_STATE(3492)] = 24687, - [SMALL_STATE(3493)] = 24750, - [SMALL_STATE(3494)] = 24813, - [SMALL_STATE(3495)] = 24876, - [SMALL_STATE(3496)] = 24939, - [SMALL_STATE(3497)] = 25002, - [SMALL_STATE(3498)] = 25115, - [SMALL_STATE(3499)] = 25178, - [SMALL_STATE(3500)] = 25241, - [SMALL_STATE(3501)] = 25304, - [SMALL_STATE(3502)] = 25367, - [SMALL_STATE(3503)] = 25430, - [SMALL_STATE(3504)] = 25493, - [SMALL_STATE(3505)] = 25556, - [SMALL_STATE(3506)] = 25619, - [SMALL_STATE(3507)] = 25682, - [SMALL_STATE(3508)] = 25747, - [SMALL_STATE(3509)] = 25810, - [SMALL_STATE(3510)] = 25887, - [SMALL_STATE(3511)] = 25950, - [SMALL_STATE(3512)] = 26013, - [SMALL_STATE(3513)] = 26076, - [SMALL_STATE(3514)] = 26143, - [SMALL_STATE(3515)] = 26206, - [SMALL_STATE(3516)] = 26269, - [SMALL_STATE(3517)] = 26332, - [SMALL_STATE(3518)] = 26445, - [SMALL_STATE(3519)] = 26508, - [SMALL_STATE(3520)] = 26575, - [SMALL_STATE(3521)] = 26638, - [SMALL_STATE(3522)] = 26701, - [SMALL_STATE(3523)] = 26764, - [SMALL_STATE(3524)] = 26827, - [SMALL_STATE(3525)] = 26890, - [SMALL_STATE(3526)] = 26953, - [SMALL_STATE(3527)] = 27016, - [SMALL_STATE(3528)] = 27079, - [SMALL_STATE(3529)] = 27142, - [SMALL_STATE(3530)] = 27205, - [SMALL_STATE(3531)] = 27318, - [SMALL_STATE(3532)] = 27383, - [SMALL_STATE(3533)] = 27446, - [SMALL_STATE(3534)] = 27509, - [SMALL_STATE(3535)] = 27576, - [SMALL_STATE(3536)] = 27639, - [SMALL_STATE(3537)] = 27702, - [SMALL_STATE(3538)] = 27765, - [SMALL_STATE(3539)] = 27842, - [SMALL_STATE(3540)] = 27907, - [SMALL_STATE(3541)] = 27969, - [SMALL_STATE(3542)] = 28067, - [SMALL_STATE(3543)] = 28165, - [SMALL_STATE(3544)] = 28275, - [SMALL_STATE(3545)] = 28373, - [SMALL_STATE(3546)] = 28439, - [SMALL_STATE(3547)] = 28503, - [SMALL_STATE(3548)] = 28565, - [SMALL_STATE(3549)] = 28627, - [SMALL_STATE(3550)] = 28689, - [SMALL_STATE(3551)] = 28751, - [SMALL_STATE(3552)] = 28813, - [SMALL_STATE(3553)] = 28911, - [SMALL_STATE(3554)] = 29009, - [SMALL_STATE(3555)] = 29075, - [SMALL_STATE(3556)] = 29137, - [SMALL_STATE(3557)] = 29247, - [SMALL_STATE(3558)] = 29309, - [SMALL_STATE(3559)] = 29407, - [SMALL_STATE(3560)] = 29505, - [SMALL_STATE(3561)] = 29567, - [SMALL_STATE(3562)] = 29643, - [SMALL_STATE(3563)] = 29719, - [SMALL_STATE(3564)] = 29781, - [SMALL_STATE(3565)] = 29879, - [SMALL_STATE(3566)] = 29977, - [SMALL_STATE(3567)] = 30039, - [SMALL_STATE(3568)] = 30101, - [SMALL_STATE(3569)] = 30163, - [SMALL_STATE(3570)] = 30239, - [SMALL_STATE(3571)] = 30301, - [SMALL_STATE(3572)] = 30363, - [SMALL_STATE(3573)] = 30425, - [SMALL_STATE(3574)] = 30487, - [SMALL_STATE(3575)] = 30549, - [SMALL_STATE(3576)] = 30613, - [SMALL_STATE(3577)] = 30675, - [SMALL_STATE(3578)] = 30741, - [SMALL_STATE(3579)] = 30807, - [SMALL_STATE(3580)] = 30905, - [SMALL_STATE(3581)] = 30967, - [SMALL_STATE(3582)] = 31029, - [SMALL_STATE(3583)] = 31091, - [SMALL_STATE(3584)] = 31153, - [SMALL_STATE(3585)] = 31215, - [SMALL_STATE(3586)] = 31277, - [SMALL_STATE(3587)] = 31343, - [SMALL_STATE(3588)] = 31405, - [SMALL_STATE(3589)] = 31471, - [SMALL_STATE(3590)] = 31533, - [SMALL_STATE(3591)] = 31595, - [SMALL_STATE(3592)] = 31657, - [SMALL_STATE(3593)] = 31719, - [SMALL_STATE(3594)] = 31781, - [SMALL_STATE(3595)] = 31843, - [SMALL_STATE(3596)] = 31905, - [SMALL_STATE(3597)] = 31967, - [SMALL_STATE(3598)] = 32029, - [SMALL_STATE(3599)] = 32127, - [SMALL_STATE(3600)] = 32193, - [SMALL_STATE(3601)] = 32255, - [SMALL_STATE(3602)] = 32317, - [SMALL_STATE(3603)] = 32379, - [SMALL_STATE(3604)] = 32477, - [SMALL_STATE(3605)] = 32539, - [SMALL_STATE(3606)] = 32637, - [SMALL_STATE(3607)] = 32699, - [SMALL_STATE(3608)] = 32809, - [SMALL_STATE(3609)] = 32871, - [SMALL_STATE(3610)] = 32933, - [SMALL_STATE(3611)] = 32995, - [SMALL_STATE(3612)] = 33057, - [SMALL_STATE(3613)] = 33119, - [SMALL_STATE(3614)] = 33181, - [SMALL_STATE(3615)] = 33243, - [SMALL_STATE(3616)] = 33305, - [SMALL_STATE(3617)] = 33367, - [SMALL_STATE(3618)] = 33465, - [SMALL_STATE(3619)] = 33527, - [SMALL_STATE(3620)] = 33625, - [SMALL_STATE(3621)] = 33687, - [SMALL_STATE(3622)] = 33749, - [SMALL_STATE(3623)] = 33847, - [SMALL_STATE(3624)] = 33909, - [SMALL_STATE(3625)] = 34004, - [SMALL_STATE(3626)] = 34099, - [SMALL_STATE(3627)] = 34194, - [SMALL_STATE(3628)] = 34259, - [SMALL_STATE(3629)] = 34354, - [SMALL_STATE(3630)] = 34419, - [SMALL_STATE(3631)] = 34482, - [SMALL_STATE(3632)] = 34545, - [SMALL_STATE(3633)] = 34638, - [SMALL_STATE(3634)] = 34733, - [SMALL_STATE(3635)] = 34828, - [SMALL_STATE(3636)] = 34923, - [SMALL_STATE(3637)] = 35018, - [SMALL_STATE(3638)] = 35098, - [SMALL_STATE(3639)] = 35160, - [SMALL_STATE(3640)] = 35220, - [SMALL_STATE(3641)] = 35284, - [SMALL_STATE(3642)] = 35348, - [SMALL_STATE(3643)] = 35410, - [SMALL_STATE(3644)] = 35474, - [SMALL_STATE(3645)] = 35534, - [SMALL_STATE(3646)] = 35594, - [SMALL_STATE(3647)] = 35658, - [SMALL_STATE(3648)] = 35717, - [SMALL_STATE(3649)] = 35796, - [SMALL_STATE(3650)] = 35857, - [SMALL_STATE(3651)] = 35944, - [SMALL_STATE(3652)] = 36005, - [SMALL_STATE(3653)] = 36064, - [SMALL_STATE(3654)] = 36125, - [SMALL_STATE(3655)] = 36214, - [SMALL_STATE(3656)] = 36277, - [SMALL_STATE(3657)] = 36336, - [SMALL_STATE(3658)] = 36395, - [SMALL_STATE(3659)] = 36454, - [SMALL_STATE(3660)] = 36529, - [SMALL_STATE(3661)] = 36588, - [SMALL_STATE(3662)] = 36647, - [SMALL_STATE(3663)] = 36710, - [SMALL_STATE(3664)] = 36773, - [SMALL_STATE(3665)] = 36848, - [SMALL_STATE(3666)] = 36907, - [SMALL_STATE(3667)] = 36982, - [SMALL_STATE(3668)] = 37043, - [SMALL_STATE(3669)] = 37102, - [SMALL_STATE(3670)] = 37177, - [SMALL_STATE(3671)] = 37240, - [SMALL_STATE(3672)] = 37313, - [SMALL_STATE(3673)] = 37376, - [SMALL_STATE(3674)] = 37449, - [SMALL_STATE(3675)] = 37512, - [SMALL_STATE(3676)] = 37577, - [SMALL_STATE(3677)] = 37639, - [SMALL_STATE(3678)] = 37713, - [SMALL_STATE(3679)] = 37775, - [SMALL_STATE(3680)] = 37837, - [SMALL_STATE(3681)] = 37897, - [SMALL_STATE(3682)] = 37955, - [SMALL_STATE(3683)] = 38015, - [SMALL_STATE(3684)] = 38075, - [SMALL_STATE(3685)] = 38137, - [SMALL_STATE(3686)] = 38197, - [SMALL_STATE(3687)] = 38255, - [SMALL_STATE(3688)] = 38327, - [SMALL_STATE(3689)] = 38385, - [SMALL_STATE(3690)] = 38447, - [SMALL_STATE(3691)] = 38505, - [SMALL_STATE(3692)] = 38579, - [SMALL_STATE(3693)] = 38637, - [SMALL_STATE(3694)] = 38699, - [SMALL_STATE(3695)] = 38757, - [SMALL_STATE(3696)] = 38815, - [SMALL_STATE(3697)] = 38873, - [SMALL_STATE(3698)] = 38931, - [SMALL_STATE(3699)] = 39005, - [SMALL_STATE(3700)] = 39077, - [SMALL_STATE(3701)] = 39137, - [SMALL_STATE(3702)] = 39195, - [SMALL_STATE(3703)] = 39253, - [SMALL_STATE(3704)] = 39327, - [SMALL_STATE(3705)] = 39389, - [SMALL_STATE(3706)] = 39451, - [SMALL_STATE(3707)] = 39511, - [SMALL_STATE(3708)] = 39585, - [SMALL_STATE(3709)] = 39647, - [SMALL_STATE(3710)] = 39709, - [SMALL_STATE(3711)] = 39767, - [SMALL_STATE(3712)] = 39825, - [SMALL_STATE(3713)] = 39883, - [SMALL_STATE(3714)] = 39945, - [SMALL_STATE(3715)] = 40005, - [SMALL_STATE(3716)] = 40067, - [SMALL_STATE(3717)] = 40125, - [SMALL_STATE(3718)] = 40183, - [SMALL_STATE(3719)] = 40255, - [SMALL_STATE(3720)] = 40313, - [SMALL_STATE(3721)] = 40375, - [SMALL_STATE(3722)] = 40433, - [SMALL_STATE(3723)] = 40507, - [SMALL_STATE(3724)] = 40565, - [SMALL_STATE(3725)] = 40639, - [SMALL_STATE(3726)] = 40711, - [SMALL_STATE(3727)] = 40769, - [SMALL_STATE(3728)] = 40827, - [SMALL_STATE(3729)] = 40891, - [SMALL_STATE(3730)] = 40949, - [SMALL_STATE(3731)] = 41007, - [SMALL_STATE(3732)] = 41065, - [SMALL_STATE(3733)] = 41123, - [SMALL_STATE(3734)] = 41197, - [SMALL_STATE(3735)] = 41257, - [SMALL_STATE(3736)] = 41315, - [SMALL_STATE(3737)] = 41373, - [SMALL_STATE(3738)] = 41447, - [SMALL_STATE(3739)] = 41509, - [SMALL_STATE(3740)] = 41571, - [SMALL_STATE(3741)] = 41633, - [SMALL_STATE(3742)] = 41691, - [SMALL_STATE(3743)] = 41751, - [SMALL_STATE(3744)] = 41813, - [SMALL_STATE(3745)] = 41871, - [SMALL_STATE(3746)] = 41931, - [SMALL_STATE(3747)] = 41991, - [SMALL_STATE(3748)] = 42049, - [SMALL_STATE(3749)] = 42111, - [SMALL_STATE(3750)] = 42183, - [SMALL_STATE(3751)] = 42241, - [SMALL_STATE(3752)] = 42299, - [SMALL_STATE(3753)] = 42357, - [SMALL_STATE(3754)] = 42429, - [SMALL_STATE(3755)] = 42491, - [SMALL_STATE(3756)] = 42549, - [SMALL_STATE(3757)] = 42607, - [SMALL_STATE(3758)] = 42665, - [SMALL_STATE(3759)] = 42737, - [SMALL_STATE(3760)] = 42795, - [SMALL_STATE(3761)] = 42853, - [SMALL_STATE(3762)] = 42911, - [SMALL_STATE(3763)] = 42983, - [SMALL_STATE(3764)] = 43041, - [SMALL_STATE(3765)] = 43101, - [SMALL_STATE(3766)] = 43159, - [SMALL_STATE(3767)] = 43217, - [SMALL_STATE(3768)] = 43275, - [SMALL_STATE(3769)] = 43333, - [SMALL_STATE(3770)] = 43391, - [SMALL_STATE(3771)] = 43449, - [SMALL_STATE(3772)] = 43507, - [SMALL_STATE(3773)] = 43565, - [SMALL_STATE(3774)] = 43623, - [SMALL_STATE(3775)] = 43685, - [SMALL_STATE(3776)] = 43743, - [SMALL_STATE(3777)] = 43804, - [SMALL_STATE(3778)] = 43865, - [SMALL_STATE(3779)] = 43922, - [SMALL_STATE(3780)] = 43995, - [SMALL_STATE(3781)] = 44076, - [SMALL_STATE(3782)] = 44177, - [SMALL_STATE(3783)] = 44278, - [SMALL_STATE(3784)] = 44339, - [SMALL_STATE(3785)] = 44396, - [SMALL_STATE(3786)] = 44469, - [SMALL_STATE(3787)] = 44542, - [SMALL_STATE(3788)] = 44599, - [SMALL_STATE(3789)] = 44670, - [SMALL_STATE(3790)] = 44741, - [SMALL_STATE(3791)] = 44842, - [SMALL_STATE(3792)] = 44899, - [SMALL_STATE(3793)] = 44984, - [SMALL_STATE(3794)] = 45057, - [SMALL_STATE(3795)] = 45116, - [SMALL_STATE(3796)] = 45189, - [SMALL_STATE(3797)] = 45246, - [SMALL_STATE(3798)] = 45303, - [SMALL_STATE(3799)] = 45362, - [SMALL_STATE(3800)] = 45463, - [SMALL_STATE(3801)] = 45522, - [SMALL_STATE(3802)] = 45582, - [SMALL_STATE(3803)] = 45640, - [SMALL_STATE(3804)] = 45710, - [SMALL_STATE(3805)] = 45766, - [SMALL_STATE(3806)] = 45822, - [SMALL_STATE(3807)] = 45882, - [SMALL_STATE(3808)] = 45938, - [SMALL_STATE(3809)] = 45998, - [SMALL_STATE(3810)] = 46056, - [SMALL_STATE(3811)] = 46112, - [SMALL_STATE(3812)] = 46168, - [SMALL_STATE(3813)] = 46252, - [SMALL_STATE(3814)] = 46308, - [SMALL_STATE(3815)] = 46364, - [SMALL_STATE(3816)] = 46422, - [SMALL_STATE(3817)] = 46492, - [SMALL_STATE(3818)] = 46548, - [SMALL_STATE(3819)] = 46606, - [SMALL_STATE(3820)] = 46662, - [SMALL_STATE(3821)] = 46718, - [SMALL_STATE(3822)] = 46774, - [SMALL_STATE(3823)] = 46830, - [SMALL_STATE(3824)] = 46885, - [SMALL_STATE(3825)] = 46940, - [SMALL_STATE(3826)] = 47035, - [SMALL_STATE(3827)] = 47090, - [SMALL_STATE(3828)] = 47147, - [SMALL_STATE(3829)] = 47242, - [SMALL_STATE(3830)] = 47297, - [SMALL_STATE(3831)] = 47392, - [SMALL_STATE(3832)] = 47487, - [SMALL_STATE(3833)] = 47556, - [SMALL_STATE(3834)] = 47651, - [SMALL_STATE(3835)] = 47706, - [SMALL_STATE(3836)] = 47801, - [SMALL_STATE(3837)] = 47856, - [SMALL_STATE(3838)] = 47911, - [SMALL_STATE(3839)] = 48006, - [SMALL_STATE(3840)] = 48061, - [SMALL_STATE(3841)] = 48156, - [SMALL_STATE(3842)] = 48211, - [SMALL_STATE(3843)] = 48266, - [SMALL_STATE(3844)] = 48321, - [SMALL_STATE(3845)] = 48404, - [SMALL_STATE(3846)] = 48459, - [SMALL_STATE(3847)] = 48514, - [SMALL_STATE(3848)] = 48571, - [SMALL_STATE(3849)] = 48626, - [SMALL_STATE(3850)] = 48706, - [SMALL_STATE(3851)] = 48780, - [SMALL_STATE(3852)] = 48834, - [SMALL_STATE(3853)] = 48914, - [SMALL_STATE(3854)] = 48988, - [SMALL_STATE(3855)] = 49068, - [SMALL_STATE(3856)] = 49122, - [SMALL_STATE(3857)] = 49196, - [SMALL_STATE(3858)] = 49270, - [SMALL_STATE(3859)] = 49328, - [SMALL_STATE(3860)] = 49386, - [SMALL_STATE(3861)] = 49444, - [SMALL_STATE(3862)] = 49518, - [SMALL_STATE(3863)] = 49574, - [SMALL_STATE(3864)] = 49654, - [SMALL_STATE(3865)] = 49734, - [SMALL_STATE(3866)] = 49814, - [SMALL_STATE(3867)] = 49894, - [SMALL_STATE(3868)] = 49974, - [SMALL_STATE(3869)] = 50048, - [SMALL_STATE(3870)] = 50128, - [SMALL_STATE(3871)] = 50208, - [SMALL_STATE(3872)] = 50262, - [SMALL_STATE(3873)] = 50336, - [SMALL_STATE(3874)] = 50416, - [SMALL_STATE(3875)] = 50490, - [SMALL_STATE(3876)] = 50570, - [SMALL_STATE(3877)] = 50640, - [SMALL_STATE(3878)] = 50720, - [SMALL_STATE(3879)] = 50794, - [SMALL_STATE(3880)] = 50848, - [SMALL_STATE(3881)] = 50922, - [SMALL_STATE(3882)] = 50996, - [SMALL_STATE(3883)] = 51066, - [SMALL_STATE(3884)] = 51140, - [SMALL_STATE(3885)] = 51194, - [SMALL_STATE(3886)] = 51274, - [SMALL_STATE(3887)] = 51332, - [SMALL_STATE(3888)] = 51390, - [SMALL_STATE(3889)] = 51464, - [SMALL_STATE(3890)] = 51538, - [SMALL_STATE(3891)] = 51594, - [SMALL_STATE(3892)] = 51674, - [SMALL_STATE(3893)] = 51744, - [SMALL_STATE(3894)] = 51800, - [SMALL_STATE(3895)] = 51880, - [SMALL_STATE(3896)] = 51950, - [SMALL_STATE(3897)] = 52019, - [SMALL_STATE(3898)] = 52072, - [SMALL_STATE(3899)] = 52127, - [SMALL_STATE(3900)] = 52186, - [SMALL_STATE(3901)] = 52255, - [SMALL_STATE(3902)] = 52324, - [SMALL_STATE(3903)] = 52379, - [SMALL_STATE(3904)] = 52436, - [SMALL_STATE(3905)] = 52505, - [SMALL_STATE(3906)] = 52562, - [SMALL_STATE(3907)] = 52633, - [SMALL_STATE(3908)] = 52686, - [SMALL_STATE(3909)] = 52741, - [SMALL_STATE(3910)] = 52818, - [SMALL_STATE(3911)] = 52875, - [SMALL_STATE(3912)] = 52932, - [SMALL_STATE(3913)] = 52989, - [SMALL_STATE(3914)] = 53058, - [SMALL_STATE(3915)] = 53129, - [SMALL_STATE(3916)] = 53198, - [SMALL_STATE(3917)] = 53267, - [SMALL_STATE(3918)] = 53336, - [SMALL_STATE(3919)] = 53405, - [SMALL_STATE(3920)] = 53462, - [SMALL_STATE(3921)] = 53529, - [SMALL_STATE(3922)] = 53588, - [SMALL_STATE(3923)] = 53645, - [SMALL_STATE(3924)] = 53700, - [SMALL_STATE(3925)] = 53771, - [SMALL_STATE(3926)] = 53842, - [SMALL_STATE(3927)] = 53911, - [SMALL_STATE(3928)] = 53980, - [SMALL_STATE(3929)] = 54033, - [SMALL_STATE(3930)] = 54090, - [SMALL_STATE(3931)] = 54159, - [SMALL_STATE(3932)] = 54216, - [SMALL_STATE(3933)] = 54285, - [SMALL_STATE(3934)] = 54342, - [SMALL_STATE(3935)] = 54409, - [SMALL_STATE(3936)] = 54478, - [SMALL_STATE(3937)] = 54537, - [SMALL_STATE(3938)] = 54592, - [SMALL_STATE(3939)] = 54649, - [SMALL_STATE(3940)] = 54716, - [SMALL_STATE(3941)] = 54769, - [SMALL_STATE(3942)] = 54836, - [SMALL_STATE(3943)] = 54888, - [SMALL_STATE(3944)] = 54956, - [SMALL_STATE(3945)] = 55024, - [SMALL_STATE(3946)] = 55092, - [SMALL_STATE(3947)] = 55160, - [SMALL_STATE(3948)] = 55228, - [SMALL_STATE(3949)] = 55280, - [SMALL_STATE(3950)] = 55348, - [SMALL_STATE(3951)] = 55400, - [SMALL_STATE(3952)] = 55468, - [SMALL_STATE(3953)] = 55536, - [SMALL_STATE(3954)] = 55604, - [SMALL_STATE(3955)] = 55672, - [SMALL_STATE(3956)] = 55728, - [SMALL_STATE(3957)] = 55796, - [SMALL_STATE(3958)] = 55864, - [SMALL_STATE(3959)] = 55932, - [SMALL_STATE(3960)] = 56000, - [SMALL_STATE(3961)] = 56068, - [SMALL_STATE(3962)] = 56136, - [SMALL_STATE(3963)] = 56204, - [SMALL_STATE(3964)] = 56272, - [SMALL_STATE(3965)] = 56340, - [SMALL_STATE(3966)] = 56408, - [SMALL_STATE(3967)] = 56464, - [SMALL_STATE(3968)] = 56532, - [SMALL_STATE(3969)] = 56600, - [SMALL_STATE(3970)] = 56668, - [SMALL_STATE(3971)] = 56736, - [SMALL_STATE(3972)] = 56804, - [SMALL_STATE(3973)] = 56872, - [SMALL_STATE(3974)] = 56940, - [SMALL_STATE(3975)] = 57008, - [SMALL_STATE(3976)] = 57076, - [SMALL_STATE(3977)] = 57144, - [SMALL_STATE(3978)] = 57212, - [SMALL_STATE(3979)] = 57264, - [SMALL_STATE(3980)] = 57332, - [SMALL_STATE(3981)] = 57400, - [SMALL_STATE(3982)] = 57468, - [SMALL_STATE(3983)] = 57536, - [SMALL_STATE(3984)] = 57604, - [SMALL_STATE(3985)] = 57672, - [SMALL_STATE(3986)] = 57740, - [SMALL_STATE(3987)] = 57808, - [SMALL_STATE(3988)] = 57860, - [SMALL_STATE(3989)] = 57928, - [SMALL_STATE(3990)] = 57996, - [SMALL_STATE(3991)] = 58064, - [SMALL_STATE(3992)] = 58132, - [SMALL_STATE(3993)] = 58200, - [SMALL_STATE(3994)] = 58268, - [SMALL_STATE(3995)] = 58336, - [SMALL_STATE(3996)] = 58404, - [SMALL_STATE(3997)] = 58472, - [SMALL_STATE(3998)] = 58558, - [SMALL_STATE(3999)] = 58626, - [SMALL_STATE(4000)] = 58694, - [SMALL_STATE(4001)] = 58762, - [SMALL_STATE(4002)] = 58830, - [SMALL_STATE(4003)] = 58882, - [SMALL_STATE(4004)] = 58950, - [SMALL_STATE(4005)] = 59018, - [SMALL_STATE(4006)] = 59086, - [SMALL_STATE(4007)] = 59154, - [SMALL_STATE(4008)] = 59222, - [SMALL_STATE(4009)] = 59290, - [SMALL_STATE(4010)] = 59358, - [SMALL_STATE(4011)] = 59426, - [SMALL_STATE(4012)] = 59494, - [SMALL_STATE(4013)] = 59562, - [SMALL_STATE(4014)] = 59630, - [SMALL_STATE(4015)] = 59698, - [SMALL_STATE(4016)] = 59766, - [SMALL_STATE(4017)] = 59834, - [SMALL_STATE(4018)] = 59902, - [SMALL_STATE(4019)] = 59970, - [SMALL_STATE(4020)] = 60038, - [SMALL_STATE(4021)] = 60106, - [SMALL_STATE(4022)] = 60174, - [SMALL_STATE(4023)] = 60242, - [SMALL_STATE(4024)] = 60310, - [SMALL_STATE(4025)] = 60378, - [SMALL_STATE(4026)] = 60446, - [SMALL_STATE(4027)] = 60514, - [SMALL_STATE(4028)] = 60582, - [SMALL_STATE(4029)] = 60650, - [SMALL_STATE(4030)] = 60718, - [SMALL_STATE(4031)] = 60786, - [SMALL_STATE(4032)] = 60854, - [SMALL_STATE(4033)] = 60922, - [SMALL_STATE(4034)] = 60990, - [SMALL_STATE(4035)] = 61042, - [SMALL_STATE(4036)] = 61094, - [SMALL_STATE(4037)] = 61162, - [SMALL_STATE(4038)] = 61230, - [SMALL_STATE(4039)] = 61316, - [SMALL_STATE(4040)] = 61384, - [SMALL_STATE(4041)] = 61452, - [SMALL_STATE(4042)] = 61520, - [SMALL_STATE(4043)] = 61588, - [SMALL_STATE(4044)] = 61656, - [SMALL_STATE(4045)] = 61724, - [SMALL_STATE(4046)] = 61792, - [SMALL_STATE(4047)] = 61878, - [SMALL_STATE(4048)] = 61946, - [SMALL_STATE(4049)] = 62014, - [SMALL_STATE(4050)] = 62082, - [SMALL_STATE(4051)] = 62150, - [SMALL_STATE(4052)] = 62218, - [SMALL_STATE(4053)] = 62286, - [SMALL_STATE(4054)] = 62354, - [SMALL_STATE(4055)] = 62422, - [SMALL_STATE(4056)] = 62490, - [SMALL_STATE(4057)] = 62558, - [SMALL_STATE(4058)] = 62626, - [SMALL_STATE(4059)] = 62694, - [SMALL_STATE(4060)] = 62762, - [SMALL_STATE(4061)] = 62830, - [SMALL_STATE(4062)] = 62898, - [SMALL_STATE(4063)] = 62966, - [SMALL_STATE(4064)] = 63034, - [SMALL_STATE(4065)] = 63120, - [SMALL_STATE(4066)] = 63188, - [SMALL_STATE(4067)] = 63256, - [SMALL_STATE(4068)] = 63324, - [SMALL_STATE(4069)] = 63392, - [SMALL_STATE(4070)] = 63460, - [SMALL_STATE(4071)] = 63528, - [SMALL_STATE(4072)] = 63596, - [SMALL_STATE(4073)] = 63664, - [SMALL_STATE(4074)] = 63732, - [SMALL_STATE(4075)] = 63800, - [SMALL_STATE(4076)] = 63868, - [SMALL_STATE(4077)] = 63936, - [SMALL_STATE(4078)] = 64004, - [SMALL_STATE(4079)] = 64072, - [SMALL_STATE(4080)] = 64140, - [SMALL_STATE(4081)] = 64208, - [SMALL_STATE(4082)] = 64276, - [SMALL_STATE(4083)] = 64344, - [SMALL_STATE(4084)] = 64412, - [SMALL_STATE(4085)] = 64480, - [SMALL_STATE(4086)] = 64548, - [SMALL_STATE(4087)] = 64616, - [SMALL_STATE(4088)] = 64670, - [SMALL_STATE(4089)] = 64738, - [SMALL_STATE(4090)] = 64806, - [SMALL_STATE(4091)] = 64874, - [SMALL_STATE(4092)] = 64942, - [SMALL_STATE(4093)] = 65010, - [SMALL_STATE(4094)] = 65078, - [SMALL_STATE(4095)] = 65134, - [SMALL_STATE(4096)] = 65202, - [SMALL_STATE(4097)] = 65270, - [SMALL_STATE(4098)] = 65338, - [SMALL_STATE(4099)] = 65406, - [SMALL_STATE(4100)] = 65460, - [SMALL_STATE(4101)] = 65528, - [SMALL_STATE(4102)] = 65596, - [SMALL_STATE(4103)] = 65650, - [SMALL_STATE(4104)] = 65718, - [SMALL_STATE(4105)] = 65786, - [SMALL_STATE(4106)] = 65842, - [SMALL_STATE(4107)] = 65910, - [SMALL_STATE(4108)] = 65978, - [SMALL_STATE(4109)] = 66064, - [SMALL_STATE(4110)] = 66132, - [SMALL_STATE(4111)] = 66200, - [SMALL_STATE(4112)] = 66268, - [SMALL_STATE(4113)] = 66320, - [SMALL_STATE(4114)] = 66372, - [SMALL_STATE(4115)] = 66428, - [SMALL_STATE(4116)] = 66496, - [SMALL_STATE(4117)] = 66564, - [SMALL_STATE(4118)] = 66620, - [SMALL_STATE(4119)] = 66688, - [SMALL_STATE(4120)] = 66756, - [SMALL_STATE(4121)] = 66812, - [SMALL_STATE(4122)] = 66880, - [SMALL_STATE(4123)] = 66948, - [SMALL_STATE(4124)] = 67000, - [SMALL_STATE(4125)] = 67068, - [SMALL_STATE(4126)] = 67124, - [SMALL_STATE(4127)] = 67192, - [SMALL_STATE(4128)] = 67260, - [SMALL_STATE(4129)] = 67314, - [SMALL_STATE(4130)] = 67382, - [SMALL_STATE(4131)] = 67436, - [SMALL_STATE(4132)] = 67504, - [SMALL_STATE(4133)] = 67572, - [SMALL_STATE(4134)] = 67640, - [SMALL_STATE(4135)] = 67708, - [SMALL_STATE(4136)] = 67776, - [SMALL_STATE(4137)] = 67844, - [SMALL_STATE(4138)] = 67912, - [SMALL_STATE(4139)] = 67980, - [SMALL_STATE(4140)] = 68048, - [SMALL_STATE(4141)] = 68116, - [SMALL_STATE(4142)] = 68184, - [SMALL_STATE(4143)] = 68252, - [SMALL_STATE(4144)] = 68320, - [SMALL_STATE(4145)] = 68388, - [SMALL_STATE(4146)] = 68456, - [SMALL_STATE(4147)] = 68524, - [SMALL_STATE(4148)] = 68592, - [SMALL_STATE(4149)] = 68660, - [SMALL_STATE(4150)] = 68728, - [SMALL_STATE(4151)] = 68796, - [SMALL_STATE(4152)] = 68864, - [SMALL_STATE(4153)] = 68932, - [SMALL_STATE(4154)] = 69000, - [SMALL_STATE(4155)] = 69068, - [SMALL_STATE(4156)] = 69136, - [SMALL_STATE(4157)] = 69204, - [SMALL_STATE(4158)] = 69272, - [SMALL_STATE(4159)] = 69340, - [SMALL_STATE(4160)] = 69408, - [SMALL_STATE(4161)] = 69474, - [SMALL_STATE(4162)] = 69542, - [SMALL_STATE(4163)] = 69610, - [SMALL_STATE(4164)] = 69678, - [SMALL_STATE(4165)] = 69746, - [SMALL_STATE(4166)] = 69814, - [SMALL_STATE(4167)] = 69872, - [SMALL_STATE(4168)] = 69940, - [SMALL_STATE(4169)] = 70008, - [SMALL_STATE(4170)] = 70076, - [SMALL_STATE(4171)] = 70144, - [SMALL_STATE(4172)] = 70210, - [SMALL_STATE(4173)] = 70278, - [SMALL_STATE(4174)] = 70346, - [SMALL_STATE(4175)] = 70414, - [SMALL_STATE(4176)] = 70482, - [SMALL_STATE(4177)] = 70550, - [SMALL_STATE(4178)] = 70618, - [SMALL_STATE(4179)] = 70686, - [SMALL_STATE(4180)] = 70754, - [SMALL_STATE(4181)] = 70822, - [SMALL_STATE(4182)] = 70890, - [SMALL_STATE(4183)] = 70958, - [SMALL_STATE(4184)] = 71026, - [SMALL_STATE(4185)] = 71094, - [SMALL_STATE(4186)] = 71162, - [SMALL_STATE(4187)] = 71230, - [SMALL_STATE(4188)] = 71298, - [SMALL_STATE(4189)] = 71366, - [SMALL_STATE(4190)] = 71434, - [SMALL_STATE(4191)] = 71502, - [SMALL_STATE(4192)] = 71570, - [SMALL_STATE(4193)] = 71638, - [SMALL_STATE(4194)] = 71706, - [SMALL_STATE(4195)] = 71774, - [SMALL_STATE(4196)] = 71842, - [SMALL_STATE(4197)] = 71910, - [SMALL_STATE(4198)] = 71978, - [SMALL_STATE(4199)] = 72044, - [SMALL_STATE(4200)] = 72112, - [SMALL_STATE(4201)] = 72180, - [SMALL_STATE(4202)] = 72248, - [SMALL_STATE(4203)] = 72316, - [SMALL_STATE(4204)] = 72384, - [SMALL_STATE(4205)] = 72450, - [SMALL_STATE(4206)] = 72502, - [SMALL_STATE(4207)] = 72570, - [SMALL_STATE(4208)] = 72638, - [SMALL_STATE(4209)] = 72706, - [SMALL_STATE(4210)] = 72774, - [SMALL_STATE(4211)] = 72842, - [SMALL_STATE(4212)] = 72910, - [SMALL_STATE(4213)] = 72978, - [SMALL_STATE(4214)] = 73046, - [SMALL_STATE(4215)] = 73114, - [SMALL_STATE(4216)] = 73182, - [SMALL_STATE(4217)] = 73250, - [SMALL_STATE(4218)] = 73318, - [SMALL_STATE(4219)] = 73386, - [SMALL_STATE(4220)] = 73454, - [SMALL_STATE(4221)] = 73522, - [SMALL_STATE(4222)] = 73590, - [SMALL_STATE(4223)] = 73658, - [SMALL_STATE(4224)] = 73726, - [SMALL_STATE(4225)] = 73794, - [SMALL_STATE(4226)] = 73862, - [SMALL_STATE(4227)] = 73930, - [SMALL_STATE(4228)] = 73998, - [SMALL_STATE(4229)] = 74066, - [SMALL_STATE(4230)] = 74134, - [SMALL_STATE(4231)] = 74202, - [SMALL_STATE(4232)] = 74270, - [SMALL_STATE(4233)] = 74338, - [SMALL_STATE(4234)] = 74406, - [SMALL_STATE(4235)] = 74474, - [SMALL_STATE(4236)] = 74542, - [SMALL_STATE(4237)] = 74610, - [SMALL_STATE(4238)] = 74664, - [SMALL_STATE(4239)] = 74720, - [SMALL_STATE(4240)] = 74788, - [SMALL_STATE(4241)] = 74856, - [SMALL_STATE(4242)] = 74924, - [SMALL_STATE(4243)] = 74982, - [SMALL_STATE(4244)] = 75050, - [SMALL_STATE(4245)] = 75118, - [SMALL_STATE(4246)] = 75186, - [SMALL_STATE(4247)] = 75254, - [SMALL_STATE(4248)] = 75322, - [SMALL_STATE(4249)] = 75390, - [SMALL_STATE(4250)] = 75458, - [SMALL_STATE(4251)] = 75526, - [SMALL_STATE(4252)] = 75594, - [SMALL_STATE(4253)] = 75646, - [SMALL_STATE(4254)] = 75702, - [SMALL_STATE(4255)] = 75754, - [SMALL_STATE(4256)] = 75822, - [SMALL_STATE(4257)] = 75874, - [SMALL_STATE(4258)] = 75926, - [SMALL_STATE(4259)] = 75994, - [SMALL_STATE(4260)] = 76046, - [SMALL_STATE(4261)] = 76102, - [SMALL_STATE(4262)] = 76170, - [SMALL_STATE(4263)] = 76238, - [SMALL_STATE(4264)] = 76306, - [SMALL_STATE(4265)] = 76374, - [SMALL_STATE(4266)] = 76442, - [SMALL_STATE(4267)] = 76494, - [SMALL_STATE(4268)] = 76546, - [SMALL_STATE(4269)] = 76598, - [SMALL_STATE(4270)] = 76650, - [SMALL_STATE(4271)] = 76718, - [SMALL_STATE(4272)] = 76786, - [SMALL_STATE(4273)] = 76854, - [SMALL_STATE(4274)] = 76922, - [SMALL_STATE(4275)] = 76974, - [SMALL_STATE(4276)] = 77026, - [SMALL_STATE(4277)] = 77094, - [SMALL_STATE(4278)] = 77146, - [SMALL_STATE(4279)] = 77214, - [SMALL_STATE(4280)] = 77266, - [SMALL_STATE(4281)] = 77334, - [SMALL_STATE(4282)] = 77386, - [SMALL_STATE(4283)] = 77454, - [SMALL_STATE(4284)] = 77522, - [SMALL_STATE(4285)] = 77574, - [SMALL_STATE(4286)] = 77626, - [SMALL_STATE(4287)] = 77678, - [SMALL_STATE(4288)] = 77746, - [SMALL_STATE(4289)] = 77798, - [SMALL_STATE(4290)] = 77850, - [SMALL_STATE(4291)] = 77902, - [SMALL_STATE(4292)] = 77970, - [SMALL_STATE(4293)] = 78022, - [SMALL_STATE(4294)] = 78090, - [SMALL_STATE(4295)] = 78158, - [SMALL_STATE(4296)] = 78226, - [SMALL_STATE(4297)] = 78294, - [SMALL_STATE(4298)] = 78346, - [SMALL_STATE(4299)] = 78414, - [SMALL_STATE(4300)] = 78466, - [SMALL_STATE(4301)] = 78518, - [SMALL_STATE(4302)] = 78570, - [SMALL_STATE(4303)] = 78622, - [SMALL_STATE(4304)] = 78674, - [SMALL_STATE(4305)] = 78742, - [SMALL_STATE(4306)] = 78796, - [SMALL_STATE(4307)] = 78848, - [SMALL_STATE(4308)] = 78900, - [SMALL_STATE(4309)] = 78956, - [SMALL_STATE(4310)] = 79012, - [SMALL_STATE(4311)] = 79080, - [SMALL_STATE(4312)] = 79148, - [SMALL_STATE(4313)] = 79216, - [SMALL_STATE(4314)] = 79284, - [SMALL_STATE(4315)] = 79352, - [SMALL_STATE(4316)] = 79420, - [SMALL_STATE(4317)] = 79488, - [SMALL_STATE(4318)] = 79540, - [SMALL_STATE(4319)] = 79592, - [SMALL_STATE(4320)] = 79644, - [SMALL_STATE(4321)] = 79696, - [SMALL_STATE(4322)] = 79748, - [SMALL_STATE(4323)] = 79801, - [SMALL_STATE(4324)] = 79852, - [SMALL_STATE(4325)] = 79903, - [SMALL_STATE(4326)] = 79954, - [SMALL_STATE(4327)] = 80031, - [SMALL_STATE(4328)] = 80082, - [SMALL_STATE(4329)] = 80133, - [SMALL_STATE(4330)] = 80184, - [SMALL_STATE(4331)] = 80255, - [SMALL_STATE(4332)] = 80306, - [SMALL_STATE(4333)] = 80357, - [SMALL_STATE(4334)] = 80408, - [SMALL_STATE(4335)] = 80459, - [SMALL_STATE(4336)] = 80536, - [SMALL_STATE(4337)] = 80587, - [SMALL_STATE(4338)] = 80658, - [SMALL_STATE(4339)] = 80709, - [SMALL_STATE(4340)] = 80786, - [SMALL_STATE(4341)] = 80839, - [SMALL_STATE(4342)] = 80890, - [SMALL_STATE(4343)] = 80945, - [SMALL_STATE(4344)] = 81002, - [SMALL_STATE(4345)] = 81053, - [SMALL_STATE(4346)] = 81104, - [SMALL_STATE(4347)] = 81155, - [SMALL_STATE(4348)] = 81206, - [SMALL_STATE(4349)] = 81273, - [SMALL_STATE(4350)] = 81324, - [SMALL_STATE(4351)] = 81375, - [SMALL_STATE(4352)] = 81430, - [SMALL_STATE(4353)] = 81485, - [SMALL_STATE(4354)] = 81552, - [SMALL_STATE(4355)] = 81619, - [SMALL_STATE(4356)] = 81670, - [SMALL_STATE(4357)] = 81737, - [SMALL_STATE(4358)] = 81804, - [SMALL_STATE(4359)] = 81857, - [SMALL_STATE(4360)] = 81924, - [SMALL_STATE(4361)] = 81991, - [SMALL_STATE(4362)] = 82058, - [SMALL_STATE(4363)] = 82125, - [SMALL_STATE(4364)] = 82176, - [SMALL_STATE(4365)] = 82229, - [SMALL_STATE(4366)] = 82282, - [SMALL_STATE(4367)] = 82337, - [SMALL_STATE(4368)] = 82390, - [SMALL_STATE(4369)] = 82457, - [SMALL_STATE(4370)] = 82512, - [SMALL_STATE(4371)] = 82565, - [SMALL_STATE(4372)] = 82616, - [SMALL_STATE(4373)] = 82669, - [SMALL_STATE(4374)] = 82722, - [SMALL_STATE(4375)] = 82775, - [SMALL_STATE(4376)] = 82830, - [SMALL_STATE(4377)] = 82883, - [SMALL_STATE(4378)] = 82934, - [SMALL_STATE(4379)] = 82987, - [SMALL_STATE(4380)] = 83040, - [SMALL_STATE(4381)] = 83091, - [SMALL_STATE(4382)] = 83142, - [SMALL_STATE(4383)] = 83207, - [SMALL_STATE(4384)] = 83260, - [SMALL_STATE(4385)] = 83315, - [SMALL_STATE(4386)] = 83366, - [SMALL_STATE(4387)] = 83419, - [SMALL_STATE(4388)] = 83470, - [SMALL_STATE(4389)] = 83523, - [SMALL_STATE(4390)] = 83588, - [SMALL_STATE(4391)] = 83641, - [SMALL_STATE(4392)] = 83692, - [SMALL_STATE(4393)] = 83742, - [SMALL_STATE(4394)] = 83808, - [SMALL_STATE(4395)] = 83858, - [SMALL_STATE(4396)] = 83924, - [SMALL_STATE(4397)] = 83974, - [SMALL_STATE(4398)] = 84052, - [SMALL_STATE(4399)] = 84102, - [SMALL_STATE(4400)] = 84152, - [SMALL_STATE(4401)] = 84218, - [SMALL_STATE(4402)] = 84270, - [SMALL_STATE(4403)] = 84324, - [SMALL_STATE(4404)] = 84376, - [SMALL_STATE(4405)] = 84430, - [SMALL_STATE(4406)] = 84480, - [SMALL_STATE(4407)] = 84530, - [SMALL_STATE(4408)] = 84580, - [SMALL_STATE(4409)] = 84646, - [SMALL_STATE(4410)] = 84696, - [SMALL_STATE(4411)] = 84746, - [SMALL_STATE(4412)] = 84824, - [SMALL_STATE(4413)] = 84894, - [SMALL_STATE(4414)] = 84944, - [SMALL_STATE(4415)] = 84994, - [SMALL_STATE(4416)] = 85044, - [SMALL_STATE(4417)] = 85094, - [SMALL_STATE(4418)] = 85160, - [SMALL_STATE(4419)] = 85210, - [SMALL_STATE(4420)] = 85260, - [SMALL_STATE(4421)] = 85336, - [SMALL_STATE(4422)] = 85402, - [SMALL_STATE(4423)] = 85452, - [SMALL_STATE(4424)] = 85502, - [SMALL_STATE(4425)] = 85568, - [SMALL_STATE(4426)] = 85618, - [SMALL_STATE(4427)] = 85668, - [SMALL_STATE(4428)] = 85718, - [SMALL_STATE(4429)] = 85770, - [SMALL_STATE(4430)] = 85820, - [SMALL_STATE(4431)] = 85870, - [SMALL_STATE(4432)] = 85920, - [SMALL_STATE(4433)] = 85970, - [SMALL_STATE(4434)] = 86020, - [SMALL_STATE(4435)] = 86072, - [SMALL_STATE(4436)] = 86122, - [SMALL_STATE(4437)] = 86172, - [SMALL_STATE(4438)] = 86222, - [SMALL_STATE(4439)] = 86274, - [SMALL_STATE(4440)] = 86324, - [SMALL_STATE(4441)] = 86374, - [SMALL_STATE(4442)] = 86426, - [SMALL_STATE(4443)] = 86476, - [SMALL_STATE(4444)] = 86526, - [SMALL_STATE(4445)] = 86576, - [SMALL_STATE(4446)] = 86626, - [SMALL_STATE(4447)] = 86676, - [SMALL_STATE(4448)] = 86742, - [SMALL_STATE(4449)] = 86794, - [SMALL_STATE(4450)] = 86844, - [SMALL_STATE(4451)] = 86896, - [SMALL_STATE(4452)] = 86946, - [SMALL_STATE(4453)] = 86996, - [SMALL_STATE(4454)] = 87046, - [SMALL_STATE(4455)] = 87096, - [SMALL_STATE(4456)] = 87146, - [SMALL_STATE(4457)] = 87196, - [SMALL_STATE(4458)] = 87248, - [SMALL_STATE(4459)] = 87298, - [SMALL_STATE(4460)] = 87364, - [SMALL_STATE(4461)] = 87414, - [SMALL_STATE(4462)] = 87464, - [SMALL_STATE(4463)] = 87516, - [SMALL_STATE(4464)] = 87570, - [SMALL_STATE(4465)] = 87620, - [SMALL_STATE(4466)] = 87670, - [SMALL_STATE(4467)] = 87720, - [SMALL_STATE(4468)] = 87770, - [SMALL_STATE(4469)] = 87820, - [SMALL_STATE(4470)] = 87872, - [SMALL_STATE(4471)] = 87922, - [SMALL_STATE(4472)] = 87972, - [SMALL_STATE(4473)] = 88024, - [SMALL_STATE(4474)] = 88074, - [SMALL_STATE(4475)] = 88124, - [SMALL_STATE(4476)] = 88174, - [SMALL_STATE(4477)] = 88250, - [SMALL_STATE(4478)] = 88300, - [SMALL_STATE(4479)] = 88366, - [SMALL_STATE(4480)] = 88416, - [SMALL_STATE(4481)] = 88466, - [SMALL_STATE(4482)] = 88542, - [SMALL_STATE(4483)] = 88618, - [SMALL_STATE(4484)] = 88670, - [SMALL_STATE(4485)] = 88736, - [SMALL_STATE(4486)] = 88802, - [SMALL_STATE(4487)] = 88852, - [SMALL_STATE(4488)] = 88902, - [SMALL_STATE(4489)] = 88952, - [SMALL_STATE(4490)] = 89002, - [SMALL_STATE(4491)] = 89054, - [SMALL_STATE(4492)] = 89104, - [SMALL_STATE(4493)] = 89154, - [SMALL_STATE(4494)] = 89220, - [SMALL_STATE(4495)] = 89286, - [SMALL_STATE(4496)] = 89356, - [SMALL_STATE(4497)] = 89422, - [SMALL_STATE(4498)] = 89472, - [SMALL_STATE(4499)] = 89538, - [SMALL_STATE(4500)] = 89604, - [SMALL_STATE(4501)] = 89654, - [SMALL_STATE(4502)] = 89708, - [SMALL_STATE(4503)] = 89758, - [SMALL_STATE(4504)] = 89808, - [SMALL_STATE(4505)] = 89857, - [SMALL_STATE(4506)] = 89906, - [SMALL_STATE(4507)] = 89955, - [SMALL_STATE(4508)] = 90004, - [SMALL_STATE(4509)] = 90053, - [SMALL_STATE(4510)] = 90116, - [SMALL_STATE(4511)] = 90165, - [SMALL_STATE(4512)] = 90214, - [SMALL_STATE(4513)] = 90263, - [SMALL_STATE(4514)] = 90312, - [SMALL_STATE(4515)] = 90363, - [SMALL_STATE(4516)] = 90416, - [SMALL_STATE(4517)] = 90465, - [SMALL_STATE(4518)] = 90518, - [SMALL_STATE(4519)] = 90581, - [SMALL_STATE(4520)] = 90630, - [SMALL_STATE(4521)] = 90679, - [SMALL_STATE(4522)] = 90742, - [SMALL_STATE(4523)] = 90793, - [SMALL_STATE(4524)] = 90842, - [SMALL_STATE(4525)] = 90891, - [SMALL_STATE(4526)] = 90944, - [SMALL_STATE(4527)] = 90993, - [SMALL_STATE(4528)] = 91046, - [SMALL_STATE(4529)] = 91097, - [SMALL_STATE(4530)] = 91146, - [SMALL_STATE(4531)] = 91195, - [SMALL_STATE(4532)] = 91244, - [SMALL_STATE(4533)] = 91309, - [SMALL_STATE(4534)] = 91386, - [SMALL_STATE(4535)] = 91435, - [SMALL_STATE(4536)] = 91512, - [SMALL_STATE(4537)] = 91577, - [SMALL_STATE(4538)] = 91626, - [SMALL_STATE(4539)] = 91691, - [SMALL_STATE(4540)] = 91740, - [SMALL_STATE(4541)] = 91789, - [SMALL_STATE(4542)] = 91838, - [SMALL_STATE(4543)] = 91887, - [SMALL_STATE(4544)] = 91938, - [SMALL_STATE(4545)] = 91987, - [SMALL_STATE(4546)] = 92062, - [SMALL_STATE(4547)] = 92127, - [SMALL_STATE(4548)] = 92176, - [SMALL_STATE(4549)] = 92229, - [SMALL_STATE(4550)] = 92294, - [SMALL_STATE(4551)] = 92343, - [SMALL_STATE(4552)] = 92392, - [SMALL_STATE(4553)] = 92441, - [SMALL_STATE(4554)] = 92506, - [SMALL_STATE(4555)] = 92555, - [SMALL_STATE(4556)] = 92604, - [SMALL_STATE(4557)] = 92653, - [SMALL_STATE(4558)] = 92718, - [SMALL_STATE(4559)] = 92767, - [SMALL_STATE(4560)] = 92816, - [SMALL_STATE(4561)] = 92869, - [SMALL_STATE(4562)] = 92934, - [SMALL_STATE(4563)] = 92999, - [SMALL_STATE(4564)] = 93048, - [SMALL_STATE(4565)] = 93101, - [SMALL_STATE(4566)] = 93150, - [SMALL_STATE(4567)] = 93215, - [SMALL_STATE(4568)] = 93264, - [SMALL_STATE(4569)] = 93313, - [SMALL_STATE(4570)] = 93362, - [SMALL_STATE(4571)] = 93411, - [SMALL_STATE(4572)] = 93460, - [SMALL_STATE(4573)] = 93509, - [SMALL_STATE(4574)] = 93574, - [SMALL_STATE(4575)] = 93623, - [SMALL_STATE(4576)] = 93676, - [SMALL_STATE(4577)] = 93741, - [SMALL_STATE(4578)] = 93804, - [SMALL_STATE(4579)] = 93878, - [SMALL_STATE(4580)] = 93930, - [SMALL_STATE(4581)] = 93978, - [SMALL_STATE(4582)] = 94052, - [SMALL_STATE(4583)] = 94102, - [SMALL_STATE(4584)] = 94156, - [SMALL_STATE(4585)] = 94230, - [SMALL_STATE(4586)] = 94304, - [SMALL_STATE(4587)] = 94356, - [SMALL_STATE(4588)] = 94408, - [SMALL_STATE(4589)] = 94460, - [SMALL_STATE(4590)] = 94534, - [SMALL_STATE(4591)] = 94584, - [SMALL_STATE(4592)] = 94632, - [SMALL_STATE(4593)] = 94682, - [SMALL_STATE(4594)] = 94732, - [SMALL_STATE(4595)] = 94806, - [SMALL_STATE(4596)] = 94858, - [SMALL_STATE(4597)] = 94906, - [SMALL_STATE(4598)] = 94960, - [SMALL_STATE(4599)] = 95012, - [SMALL_STATE(4600)] = 95064, - [SMALL_STATE(4601)] = 95112, - [SMALL_STATE(4602)] = 95186, - [SMALL_STATE(4603)] = 95260, - [SMALL_STATE(4604)] = 95324, - [SMALL_STATE(4605)] = 95374, - [SMALL_STATE(4606)] = 95422, - [SMALL_STATE(4607)] = 95486, - [SMALL_STATE(4608)] = 95536, - [SMALL_STATE(4609)] = 95588, - [SMALL_STATE(4610)] = 95640, - [SMALL_STATE(4611)] = 95688, - [SMALL_STATE(4612)] = 95736, - [SMALL_STATE(4613)] = 95786, - [SMALL_STATE(4614)] = 95836, - [SMALL_STATE(4615)] = 95884, - [SMALL_STATE(4616)] = 95958, - [SMALL_STATE(4617)] = 96012, - [SMALL_STATE(4618)] = 96062, - [SMALL_STATE(4619)] = 96109, - [SMALL_STATE(4620)] = 96158, - [SMALL_STATE(4621)] = 96205, - [SMALL_STATE(4622)] = 96256, - [SMALL_STATE(4623)] = 96303, - [SMALL_STATE(4624)] = 96354, - [SMALL_STATE(4625)] = 96401, - [SMALL_STATE(4626)] = 96448, - [SMALL_STATE(4627)] = 96495, - [SMALL_STATE(4628)] = 96544, - [SMALL_STATE(4629)] = 96591, - [SMALL_STATE(4630)] = 96640, - [SMALL_STATE(4631)] = 96687, - [SMALL_STATE(4632)] = 96736, - [SMALL_STATE(4633)] = 96787, - [SMALL_STATE(4634)] = 96838, - [SMALL_STATE(4635)] = 96885, - [SMALL_STATE(4636)] = 96932, - [SMALL_STATE(4637)] = 96979, - [SMALL_STATE(4638)] = 97026, - [SMALL_STATE(4639)] = 97073, - [SMALL_STATE(4640)] = 97120, - [SMALL_STATE(4641)] = 97171, - [SMALL_STATE(4642)] = 97218, - [SMALL_STATE(4643)] = 97267, - [SMALL_STATE(4644)] = 97314, - [SMALL_STATE(4645)] = 97361, - [SMALL_STATE(4646)] = 97408, - [SMALL_STATE(4647)] = 97461, - [SMALL_STATE(4648)] = 97512, - [SMALL_STATE(4649)] = 97559, - [SMALL_STATE(4650)] = 97608, - [SMALL_STATE(4651)] = 97655, - [SMALL_STATE(4652)] = 97702, - [SMALL_STATE(4653)] = 97749, - [SMALL_STATE(4654)] = 97820, - [SMALL_STATE(4655)] = 97869, - [SMALL_STATE(4656)] = 97916, - [SMALL_STATE(4657)] = 97963, - [SMALL_STATE(4658)] = 98010, - [SMALL_STATE(4659)] = 98057, - [SMALL_STATE(4660)] = 98104, - [SMALL_STATE(4661)] = 98151, - [SMALL_STATE(4662)] = 98198, - [SMALL_STATE(4663)] = 98247, - [SMALL_STATE(4664)] = 98298, - [SMALL_STATE(4665)] = 98345, - [SMALL_STATE(4666)] = 98412, - [SMALL_STATE(4667)] = 98459, - [SMALL_STATE(4668)] = 98508, - [SMALL_STATE(4669)] = 98555, - [SMALL_STATE(4670)] = 98604, - [SMALL_STATE(4671)] = 98653, - [SMALL_STATE(4672)] = 98700, - [SMALL_STATE(4673)] = 98751, - [SMALL_STATE(4674)] = 98798, - [SMALL_STATE(4675)] = 98849, - [SMALL_STATE(4676)] = 98896, - [SMALL_STATE(4677)] = 98943, - [SMALL_STATE(4678)] = 98989, - [SMALL_STATE(4679)] = 99037, - [SMALL_STATE(4680)] = 99083, - [SMALL_STATE(4681)] = 99129, - [SMALL_STATE(4682)] = 99175, - [SMALL_STATE(4683)] = 99221, - [SMALL_STATE(4684)] = 99267, - [SMALL_STATE(4685)] = 99317, - [SMALL_STATE(4686)] = 99385, - [SMALL_STATE(4687)] = 99451, - [SMALL_STATE(4688)] = 99497, - [SMALL_STATE(4689)] = 99543, - [SMALL_STATE(4690)] = 99611, - [SMALL_STATE(4691)] = 99657, - [SMALL_STATE(4692)] = 99703, - [SMALL_STATE(4693)] = 99749, - [SMALL_STATE(4694)] = 99795, - [SMALL_STATE(4695)] = 99863, - [SMALL_STATE(4696)] = 99909, - [SMALL_STATE(4697)] = 99957, - [SMALL_STATE(4698)] = 100003, - [SMALL_STATE(4699)] = 100047, - [SMALL_STATE(4700)] = 100093, - [SMALL_STATE(4701)] = 100141, - [SMALL_STATE(4702)] = 100189, - [SMALL_STATE(4703)] = 100237, - [SMALL_STATE(4704)] = 100283, - [SMALL_STATE(4705)] = 100329, - [SMALL_STATE(4706)] = 100397, - [SMALL_STATE(4707)] = 100443, - [SMALL_STATE(4708)] = 100489, - [SMALL_STATE(4709)] = 100535, - [SMALL_STATE(4710)] = 100583, - [SMALL_STATE(4711)] = 100627, - [SMALL_STATE(4712)] = 100673, - [SMALL_STATE(4713)] = 100719, - [SMALL_STATE(4714)] = 100765, - [SMALL_STATE(4715)] = 100813, - [SMALL_STATE(4716)] = 100858, - [SMALL_STATE(4717)] = 100903, - [SMALL_STATE(4718)] = 100962, - [SMALL_STATE(4719)] = 101021, - [SMALL_STATE(4720)] = 101066, - [SMALL_STATE(4721)] = 101111, - [SMALL_STATE(4722)] = 101156, - [SMALL_STATE(4723)] = 101215, - [SMALL_STATE(4724)] = 101260, - [SMALL_STATE(4725)] = 101319, - [SMALL_STATE(4726)] = 101364, - [SMALL_STATE(4727)] = 101425, - [SMALL_STATE(4728)] = 101486, - [SMALL_STATE(4729)] = 101545, - [SMALL_STATE(4730)] = 101606, - [SMALL_STATE(4731)] = 101665, - [SMALL_STATE(4732)] = 101724, - [SMALL_STATE(4733)] = 101769, - [SMALL_STATE(4734)] = 101814, - [SMALL_STATE(4735)] = 101859, - [SMALL_STATE(4736)] = 101918, - [SMALL_STATE(4737)] = 101977, - [SMALL_STATE(4738)] = 102036, - [SMALL_STATE(4739)] = 102095, - [SMALL_STATE(4740)] = 102154, - [SMALL_STATE(4741)] = 102213, - [SMALL_STATE(4742)] = 102258, - [SMALL_STATE(4743)] = 102303, - [SMALL_STATE(4744)] = 102362, - [SMALL_STATE(4745)] = 102421, - [SMALL_STATE(4746)] = 102480, - [SMALL_STATE(4747)] = 102539, - [SMALL_STATE(4748)] = 102598, - [SMALL_STATE(4749)] = 102657, - [SMALL_STATE(4750)] = 102722, - [SMALL_STATE(4751)] = 102781, - [SMALL_STATE(4752)] = 102826, - [SMALL_STATE(4753)] = 102885, - [SMALL_STATE(4754)] = 102930, - [SMALL_STATE(4755)] = 102975, - [SMALL_STATE(4756)] = 103020, - [SMALL_STATE(4757)] = 103079, - [SMALL_STATE(4758)] = 103122, - [SMALL_STATE(4759)] = 103167, - [SMALL_STATE(4760)] = 103226, - [SMALL_STATE(4761)] = 103285, - [SMALL_STATE(4762)] = 103344, - [SMALL_STATE(4763)] = 103389, - [SMALL_STATE(4764)] = 103434, - [SMALL_STATE(4765)] = 103479, - [SMALL_STATE(4766)] = 103522, - [SMALL_STATE(4767)] = 103583, - [SMALL_STATE(4768)] = 103628, - [SMALL_STATE(4769)] = 103673, - [SMALL_STATE(4770)] = 103718, - [SMALL_STATE(4771)] = 103761, - [SMALL_STATE(4772)] = 103820, - [SMALL_STATE(4773)] = 103865, - [SMALL_STATE(4774)] = 103910, - [SMALL_STATE(4775)] = 103969, - [SMALL_STATE(4776)] = 104014, - [SMALL_STATE(4777)] = 104071, - [SMALL_STATE(4778)] = 104116, - [SMALL_STATE(4779)] = 104161, - [SMALL_STATE(4780)] = 104206, - [SMALL_STATE(4781)] = 104251, - [SMALL_STATE(4782)] = 104296, - [SMALL_STATE(4783)] = 104341, - [SMALL_STATE(4784)] = 104386, - [SMALL_STATE(4785)] = 104433, - [SMALL_STATE(4786)] = 104478, - [SMALL_STATE(4787)] = 104537, - [SMALL_STATE(4788)] = 104580, - [SMALL_STATE(4789)] = 104625, - [SMALL_STATE(4790)] = 104670, - [SMALL_STATE(4791)] = 104715, - [SMALL_STATE(4792)] = 104762, - [SMALL_STATE(4793)] = 104807, - [SMALL_STATE(4794)] = 104852, - [SMALL_STATE(4795)] = 104897, - [SMALL_STATE(4796)] = 104942, - [SMALL_STATE(4797)] = 104987, - [SMALL_STATE(4798)] = 105032, - [SMALL_STATE(4799)] = 105077, - [SMALL_STATE(4800)] = 105122, - [SMALL_STATE(4801)] = 105167, - [SMALL_STATE(4802)] = 105212, - [SMALL_STATE(4803)] = 105257, - [SMALL_STATE(4804)] = 105302, - [SMALL_STATE(4805)] = 105347, - [SMALL_STATE(4806)] = 105406, - [SMALL_STATE(4807)] = 105451, - [SMALL_STATE(4808)] = 105496, - [SMALL_STATE(4809)] = 105541, - [SMALL_STATE(4810)] = 105586, - [SMALL_STATE(4811)] = 105631, - [SMALL_STATE(4812)] = 105690, - [SMALL_STATE(4813)] = 105749, - [SMALL_STATE(4814)] = 105794, - [SMALL_STATE(4815)] = 105843, - [SMALL_STATE(4816)] = 105888, - [SMALL_STATE(4817)] = 105933, - [SMALL_STATE(4818)] = 105978, - [SMALL_STATE(4819)] = 106023, - [SMALL_STATE(4820)] = 106068, - [SMALL_STATE(4821)] = 106127, - [SMALL_STATE(4822)] = 106186, - [SMALL_STATE(4823)] = 106245, - [SMALL_STATE(4824)] = 106304, - [SMALL_STATE(4825)] = 106363, - [SMALL_STATE(4826)] = 106408, - [SMALL_STATE(4827)] = 106453, - [SMALL_STATE(4828)] = 106498, - [SMALL_STATE(4829)] = 106557, - [SMALL_STATE(4830)] = 106616, - [SMALL_STATE(4831)] = 106675, - [SMALL_STATE(4832)] = 106734, - [SMALL_STATE(4833)] = 106793, - [SMALL_STATE(4834)] = 106852, - [SMALL_STATE(4835)] = 106894, - [SMALL_STATE(4836)] = 106936, - [SMALL_STATE(4837)] = 106992, - [SMALL_STATE(4838)] = 107034, - [SMALL_STATE(4839)] = 107090, - [SMALL_STATE(4840)] = 107146, - [SMALL_STATE(4841)] = 107202, - [SMALL_STATE(4842)] = 107246, - [SMALL_STATE(4843)] = 107302, - [SMALL_STATE(4844)] = 107358, - [SMALL_STATE(4845)] = 107414, - [SMALL_STATE(4846)] = 107470, - [SMALL_STATE(4847)] = 107526, - [SMALL_STATE(4848)] = 107572, - [SMALL_STATE(4849)] = 107618, - [SMALL_STATE(4850)] = 107660, - [SMALL_STATE(4851)] = 107702, - [SMALL_STATE(4852)] = 107766, - [SMALL_STATE(4853)] = 107810, - [SMALL_STATE(4854)] = 107864, - [SMALL_STATE(4855)] = 107908, - [SMALL_STATE(4856)] = 107964, - [SMALL_STATE(4857)] = 108008, - [SMALL_STATE(4858)] = 108050, - [SMALL_STATE(4859)] = 108106, - [SMALL_STATE(4860)] = 108154, - [SMALL_STATE(4861)] = 108210, - [SMALL_STATE(4862)] = 108266, - [SMALL_STATE(4863)] = 108322, - [SMALL_STATE(4864)] = 108364, - [SMALL_STATE(4865)] = 108408, - [SMALL_STATE(4866)] = 108452, - [SMALL_STATE(4867)] = 108508, - [SMALL_STATE(4868)] = 108550, - [SMALL_STATE(4869)] = 108606, - [SMALL_STATE(4870)] = 108662, - [SMALL_STATE(4871)] = 108718, - [SMALL_STATE(4872)] = 108774, - [SMALL_STATE(4873)] = 108830, - [SMALL_STATE(4874)] = 108874, - [SMALL_STATE(4875)] = 108930, - [SMALL_STATE(4876)] = 108986, - [SMALL_STATE(4877)] = 109042, - [SMALL_STATE(4878)] = 109086, - [SMALL_STATE(4879)] = 109130, - [SMALL_STATE(4880)] = 109172, - [SMALL_STATE(4881)] = 109228, - [SMALL_STATE(4882)] = 109284, - [SMALL_STATE(4883)] = 109326, - [SMALL_STATE(4884)] = 109368, - [SMALL_STATE(4885)] = 109412, - [SMALL_STATE(4886)] = 109468, - [SMALL_STATE(4887)] = 109524, - [SMALL_STATE(4888)] = 109580, - [SMALL_STATE(4889)] = 109624, - [SMALL_STATE(4890)] = 109680, - [SMALL_STATE(4891)] = 109736, - [SMALL_STATE(4892)] = 109782, - [SMALL_STATE(4893)] = 109824, - [SMALL_STATE(4894)] = 109866, - [SMALL_STATE(4895)] = 109914, - [SMALL_STATE(4896)] = 109956, - [SMALL_STATE(4897)] = 110012, - [SMALL_STATE(4898)] = 110068, - [SMALL_STATE(4899)] = 110124, - [SMALL_STATE(4900)] = 110166, - [SMALL_STATE(4901)] = 110222, - [SMALL_STATE(4902)] = 110278, - [SMALL_STATE(4903)] = 110320, - [SMALL_STATE(4904)] = 110362, - [SMALL_STATE(4905)] = 110404, - [SMALL_STATE(4906)] = 110460, - [SMALL_STATE(4907)] = 110508, - [SMALL_STATE(4908)] = 110552, - [SMALL_STATE(4909)] = 110596, - [SMALL_STATE(4910)] = 110640, - [SMALL_STATE(4911)] = 110684, - [SMALL_STATE(4912)] = 110740, - [SMALL_STATE(4913)] = 110796, - [SMALL_STATE(4914)] = 110840, - [SMALL_STATE(4915)] = 110896, - [SMALL_STATE(4916)] = 110940, - [SMALL_STATE(4917)] = 110982, - [SMALL_STATE(4918)] = 111038, - [SMALL_STATE(4919)] = 111082, - [SMALL_STATE(4920)] = 111126, - [SMALL_STATE(4921)] = 111182, - [SMALL_STATE(4922)] = 111238, - [SMALL_STATE(4923)] = 111281, - [SMALL_STATE(4924)] = 111322, - [SMALL_STATE(4925)] = 111367, - [SMALL_STATE(4926)] = 111426, - [SMALL_STATE(4927)] = 111469, - [SMALL_STATE(4928)] = 111510, - [SMALL_STATE(4929)] = 111551, - [SMALL_STATE(4930)] = 111592, - [SMALL_STATE(4931)] = 111651, - [SMALL_STATE(4932)] = 111692, - [SMALL_STATE(4933)] = 111751, - [SMALL_STATE(4934)] = 111792, - [SMALL_STATE(4935)] = 111833, - [SMALL_STATE(4936)] = 111880, - [SMALL_STATE(4937)] = 111921, - [SMALL_STATE(4938)] = 111962, - [SMALL_STATE(4939)] = 112003, - [SMALL_STATE(4940)] = 112044, - [SMALL_STATE(4941)] = 112085, - [SMALL_STATE(4942)] = 112128, - [SMALL_STATE(4943)] = 112169, - [SMALL_STATE(4944)] = 112210, - [SMALL_STATE(4945)] = 112251, - [SMALL_STATE(4946)] = 112292, - [SMALL_STATE(4947)] = 112333, - [SMALL_STATE(4948)] = 112378, - [SMALL_STATE(4949)] = 112423, - [SMALL_STATE(4950)] = 112482, - [SMALL_STATE(4951)] = 112529, - [SMALL_STATE(4952)] = 112572, - [SMALL_STATE(4953)] = 112619, - [SMALL_STATE(4954)] = 112660, - [SMALL_STATE(4955)] = 112707, - [SMALL_STATE(4956)] = 112750, - [SMALL_STATE(4957)] = 112793, - [SMALL_STATE(4958)] = 112834, - [SMALL_STATE(4959)] = 112879, - [SMALL_STATE(4960)] = 112926, - [SMALL_STATE(4961)] = 112973, - [SMALL_STATE(4962)] = 113014, - [SMALL_STATE(4963)] = 113067, - [SMALL_STATE(4964)] = 113114, - [SMALL_STATE(4965)] = 113157, - [SMALL_STATE(4966)] = 113200, - [SMALL_STATE(4967)] = 113241, - [SMALL_STATE(4968)] = 113282, - [SMALL_STATE(4969)] = 113323, - [SMALL_STATE(4970)] = 113364, - [SMALL_STATE(4971)] = 113405, - [SMALL_STATE(4972)] = 113446, - [SMALL_STATE(4973)] = 113493, - [SMALL_STATE(4974)] = 113534, - [SMALL_STATE(4975)] = 113575, - [SMALL_STATE(4976)] = 113636, - [SMALL_STATE(4977)] = 113679, - [SMALL_STATE(4978)] = 113720, - [SMALL_STATE(4979)] = 113763, - [SMALL_STATE(4980)] = 113808, - [SMALL_STATE(4981)] = 113855, - [SMALL_STATE(4982)] = 113900, - [SMALL_STATE(4983)] = 113947, - [SMALL_STATE(4984)] = 113990, - [SMALL_STATE(4985)] = 114035, - [SMALL_STATE(4986)] = 114082, - [SMALL_STATE(4987)] = 114125, - [SMALL_STATE(4988)] = 114166, - [SMALL_STATE(4989)] = 114213, - [SMALL_STATE(4990)] = 114266, - [SMALL_STATE(4991)] = 114317, - [SMALL_STATE(4992)] = 114376, - [SMALL_STATE(4993)] = 114417, - [SMALL_STATE(4994)] = 114476, - [SMALL_STATE(4995)] = 114517, - [SMALL_STATE(4996)] = 114558, - [SMALL_STATE(4997)] = 114599, - [SMALL_STATE(4998)] = 114641, - [SMALL_STATE(4999)] = 114685, - [SMALL_STATE(5000)] = 114729, - [SMALL_STATE(5001)] = 114781, - [SMALL_STATE(5002)] = 114825, - [SMALL_STATE(5003)] = 114877, - [SMALL_STATE(5004)] = 114923, - [SMALL_STATE(5005)] = 114963, - [SMALL_STATE(5006)] = 115015, - [SMALL_STATE(5007)] = 115061, - [SMALL_STATE(5008)] = 115105, - [SMALL_STATE(5009)] = 115145, - [SMALL_STATE(5010)] = 115197, - [SMALL_STATE(5011)] = 115253, - [SMALL_STATE(5012)] = 115309, - [SMALL_STATE(5013)] = 115353, - [SMALL_STATE(5014)] = 115407, - [SMALL_STATE(5015)] = 115453, - [SMALL_STATE(5016)] = 115509, - [SMALL_STATE(5017)] = 115553, - [SMALL_STATE(5018)] = 115609, - [SMALL_STATE(5019)] = 115653, - [SMALL_STATE(5020)] = 115705, - [SMALL_STATE(5021)] = 115761, - [SMALL_STATE(5022)] = 115801, - [SMALL_STATE(5023)] = 115853, - [SMALL_STATE(5024)] = 115897, - [SMALL_STATE(5025)] = 115949, - [SMALL_STATE(5026)] = 115997, - [SMALL_STATE(5027)] = 116041, - [SMALL_STATE(5028)] = 116097, - [SMALL_STATE(5029)] = 116153, - [SMALL_STATE(5030)] = 116207, - [SMALL_STATE(5031)] = 116259, - [SMALL_STATE(5032)] = 116301, - [SMALL_STATE(5033)] = 116357, - [SMALL_STATE(5034)] = 116401, - [SMALL_STATE(5035)] = 116447, - [SMALL_STATE(5036)] = 116487, - [SMALL_STATE(5037)] = 116539, - [SMALL_STATE(5038)] = 116597, - [SMALL_STATE(5039)] = 116643, - [SMALL_STATE(5040)] = 116697, - [SMALL_STATE(5041)] = 116741, - [SMALL_STATE(5042)] = 116797, - [SMALL_STATE(5043)] = 116855, - [SMALL_STATE(5044)] = 116895, - [SMALL_STATE(5045)] = 116947, - [SMALL_STATE(5046)] = 117005, - [SMALL_STATE(5047)] = 117047, - [SMALL_STATE(5048)] = 117103, - [SMALL_STATE(5049)] = 117159, - [SMALL_STATE(5050)] = 117205, - [SMALL_STATE(5051)] = 117249, - [SMALL_STATE(5052)] = 117305, - [SMALL_STATE(5053)] = 117351, - [SMALL_STATE(5054)] = 117397, - [SMALL_STATE(5055)] = 117439, - [SMALL_STATE(5056)] = 117483, - [SMALL_STATE(5057)] = 117527, - [SMALL_STATE(5058)] = 117585, - [SMALL_STATE(5059)] = 117643, - [SMALL_STATE(5060)] = 117689, - [SMALL_STATE(5061)] = 117741, - [SMALL_STATE(5062)] = 117793, - [SMALL_STATE(5063)] = 117849, - [SMALL_STATE(5064)] = 117907, - [SMALL_STATE(5065)] = 117951, - [SMALL_STATE(5066)] = 118003, - [SMALL_STATE(5067)] = 118055, - [SMALL_STATE(5068)] = 118099, - [SMALL_STATE(5069)] = 118143, - [SMALL_STATE(5070)] = 118187, - [SMALL_STATE(5071)] = 118231, - [SMALL_STATE(5072)] = 118275, - [SMALL_STATE(5073)] = 118329, - [SMALL_STATE(5074)] = 118385, - [SMALL_STATE(5075)] = 118429, - [SMALL_STATE(5076)] = 118473, - [SMALL_STATE(5077)] = 118517, - [SMALL_STATE(5078)] = 118569, - [SMALL_STATE(5079)] = 118609, - [SMALL_STATE(5080)] = 118649, - [SMALL_STATE(5081)] = 118689, - [SMALL_STATE(5082)] = 118733, - [SMALL_STATE(5083)] = 118773, - [SMALL_STATE(5084)] = 118829, - [SMALL_STATE(5085)] = 118873, - [SMALL_STATE(5086)] = 118925, - [SMALL_STATE(5087)] = 118969, - [SMALL_STATE(5088)] = 119023, - [SMALL_STATE(5089)] = 119067, - [SMALL_STATE(5090)] = 119111, - [SMALL_STATE(5091)] = 119155, - [SMALL_STATE(5092)] = 119211, - [SMALL_STATE(5093)] = 119255, - [SMALL_STATE(5094)] = 119295, - [SMALL_STATE(5095)] = 119339, - [SMALL_STATE(5096)] = 119393, - [SMALL_STATE(5097)] = 119435, - [SMALL_STATE(5098)] = 119487, - [SMALL_STATE(5099)] = 119543, - [SMALL_STATE(5100)] = 119587, - [SMALL_STATE(5101)] = 119641, - [SMALL_STATE(5102)] = 119697, - [SMALL_STATE(5103)] = 119741, - [SMALL_STATE(5104)] = 119781, - [SMALL_STATE(5105)] = 119833, - [SMALL_STATE(5106)] = 119877, - [SMALL_STATE(5107)] = 119929, - [SMALL_STATE(5108)] = 119983, - [SMALL_STATE(5109)] = 120033, - [SMALL_STATE(5110)] = 120075, - [SMALL_STATE(5111)] = 120127, - [SMALL_STATE(5112)] = 120179, - [SMALL_STATE(5113)] = 120223, - [SMALL_STATE(5114)] = 120267, - [SMALL_STATE(5115)] = 120311, - [SMALL_STATE(5116)] = 120355, - [SMALL_STATE(5117)] = 120399, - [SMALL_STATE(5118)] = 120455, - [SMALL_STATE(5119)] = 120507, - [SMALL_STATE(5120)] = 120563, - [SMALL_STATE(5121)] = 120607, - [SMALL_STATE(5122)] = 120665, - [SMALL_STATE(5123)] = 120721, - [SMALL_STATE(5124)] = 120777, - [SMALL_STATE(5125)] = 120831, - [SMALL_STATE(5126)] = 120877, - [SMALL_STATE(5127)] = 120929, - [SMALL_STATE(5128)] = 120971, - [SMALL_STATE(5129)] = 121027, - [SMALL_STATE(5130)] = 121083, - [SMALL_STATE(5131)] = 121123, - [SMALL_STATE(5132)] = 121167, - [SMALL_STATE(5133)] = 121209, - [SMALL_STATE(5134)] = 121251, - [SMALL_STATE(5135)] = 121303, - [SMALL_STATE(5136)] = 121343, - [SMALL_STATE(5137)] = 121389, - [SMALL_STATE(5138)] = 121429, - [SMALL_STATE(5139)] = 121487, - [SMALL_STATE(5140)] = 121539, - [SMALL_STATE(5141)] = 121591, - [SMALL_STATE(5142)] = 121635, - [SMALL_STATE(5143)] = 121687, - [SMALL_STATE(5144)] = 121727, - [SMALL_STATE(5145)] = 121779, - [SMALL_STATE(5146)] = 121835, - [SMALL_STATE(5147)] = 121881, - [SMALL_STATE(5148)] = 121937, - [SMALL_STATE(5149)] = 121989, - [SMALL_STATE(5150)] = 122033, - [SMALL_STATE(5151)] = 122077, - [SMALL_STATE(5152)] = 122129, - [SMALL_STATE(5153)] = 122175, - [SMALL_STATE(5154)] = 122219, - [SMALL_STATE(5155)] = 122271, - [SMALL_STATE(5156)] = 122327, - [SMALL_STATE(5157)] = 122369, - [SMALL_STATE(5158)] = 122421, - [SMALL_STATE(5159)] = 122477, - [SMALL_STATE(5160)] = 122533, - [SMALL_STATE(5161)] = 122589, - [SMALL_STATE(5162)] = 122645, - [SMALL_STATE(5163)] = 122701, - [SMALL_STATE(5164)] = 122743, - [SMALL_STATE(5165)] = 122799, - [SMALL_STATE(5166)] = 122855, - [SMALL_STATE(5167)] = 122907, - [SMALL_STATE(5168)] = 122963, - [SMALL_STATE(5169)] = 123019, - [SMALL_STATE(5170)] = 123077, - [SMALL_STATE(5171)] = 123119, - [SMALL_STATE(5172)] = 123175, - [SMALL_STATE(5173)] = 123231, - [SMALL_STATE(5174)] = 123273, - [SMALL_STATE(5175)] = 123329, - [SMALL_STATE(5176)] = 123385, - [SMALL_STATE(5177)] = 123437, - [SMALL_STATE(5178)] = 123493, - [SMALL_STATE(5179)] = 123549, - [SMALL_STATE(5180)] = 123605, - [SMALL_STATE(5181)] = 123657, - [SMALL_STATE(5182)] = 123713, - [SMALL_STATE(5183)] = 123757, - [SMALL_STATE(5184)] = 123813, - [SMALL_STATE(5185)] = 123865, - [SMALL_STATE(5186)] = 123921, - [SMALL_STATE(5187)] = 123973, - [SMALL_STATE(5188)] = 124025, - [SMALL_STATE(5189)] = 124081, - [SMALL_STATE(5190)] = 124133, - [SMALL_STATE(5191)] = 124189, - [SMALL_STATE(5192)] = 124229, - [SMALL_STATE(5193)] = 124281, - [SMALL_STATE(5194)] = 124337, - [SMALL_STATE(5195)] = 124389, - [SMALL_STATE(5196)] = 124445, - [SMALL_STATE(5197)] = 124501, - [SMALL_STATE(5198)] = 124557, - [SMALL_STATE(5199)] = 124613, - [SMALL_STATE(5200)] = 124657, - [SMALL_STATE(5201)] = 124713, - [SMALL_STATE(5202)] = 124771, - [SMALL_STATE(5203)] = 124811, - [SMALL_STATE(5204)] = 124863, - [SMALL_STATE(5205)] = 124905, - [SMALL_STATE(5206)] = 124963, - [SMALL_STATE(5207)] = 125005, - [SMALL_STATE(5208)] = 125051, - [SMALL_STATE(5209)] = 125093, - [SMALL_STATE(5210)] = 125134, - [SMALL_STATE(5211)] = 125175, - [SMALL_STATE(5212)] = 125230, - [SMALL_STATE(5213)] = 125273, - [SMALL_STATE(5214)] = 125328, - [SMALL_STATE(5215)] = 125377, - [SMALL_STATE(5216)] = 125432, - [SMALL_STATE(5217)] = 125487, - [SMALL_STATE(5218)] = 125542, - [SMALL_STATE(5219)] = 125583, - [SMALL_STATE(5220)] = 125624, - [SMALL_STATE(5221)] = 125667, - [SMALL_STATE(5222)] = 125722, - [SMALL_STATE(5223)] = 125777, - [SMALL_STATE(5224)] = 125820, - [SMALL_STATE(5225)] = 125863, - [SMALL_STATE(5226)] = 125906, - [SMALL_STATE(5227)] = 125949, - [SMALL_STATE(5228)] = 126002, - [SMALL_STATE(5229)] = 126045, - [SMALL_STATE(5230)] = 126086, - [SMALL_STATE(5231)] = 126127, - [SMALL_STATE(5232)] = 126174, - [SMALL_STATE(5233)] = 126229, - [SMALL_STATE(5234)] = 126274, - [SMALL_STATE(5235)] = 126327, - [SMALL_STATE(5236)] = 126372, - [SMALL_STATE(5237)] = 126413, - [SMALL_STATE(5238)] = 126454, - [SMALL_STATE(5239)] = 126509, - [SMALL_STATE(5240)] = 126564, - [SMALL_STATE(5241)] = 126619, - [SMALL_STATE(5242)] = 126674, - [SMALL_STATE(5243)] = 126719, - [SMALL_STATE(5244)] = 126762, - [SMALL_STATE(5245)] = 126817, - [SMALL_STATE(5246)] = 126872, - [SMALL_STATE(5247)] = 126927, - [SMALL_STATE(5248)] = 126968, - [SMALL_STATE(5249)] = 127023, - [SMALL_STATE(5250)] = 127064, - [SMALL_STATE(5251)] = 127105, - [SMALL_STATE(5252)] = 127146, - [SMALL_STATE(5253)] = 127201, - [SMALL_STATE(5254)] = 127242, - [SMALL_STATE(5255)] = 127283, - [SMALL_STATE(5256)] = 127326, - [SMALL_STATE(5257)] = 127367, - [SMALL_STATE(5258)] = 127412, - [SMALL_STATE(5259)] = 127467, - [SMALL_STATE(5260)] = 127508, - [SMALL_STATE(5261)] = 127551, - [SMALL_STATE(5262)] = 127594, - [SMALL_STATE(5263)] = 127637, - [SMALL_STATE(5264)] = 127680, - [SMALL_STATE(5265)] = 127723, - [SMALL_STATE(5266)] = 127776, - [SMALL_STATE(5267)] = 127817, - [SMALL_STATE(5268)] = 127870, - [SMALL_STATE(5269)] = 127925, - [SMALL_STATE(5270)] = 127966, - [SMALL_STATE(5271)] = 128021, - [SMALL_STATE(5272)] = 128076, - [SMALL_STATE(5273)] = 128131, - [SMALL_STATE(5274)] = 128186, - [SMALL_STATE(5275)] = 128241, - [SMALL_STATE(5276)] = 128282, - [SMALL_STATE(5277)] = 128337, - [SMALL_STATE(5278)] = 128392, - [SMALL_STATE(5279)] = 128433, - [SMALL_STATE(5280)] = 128474, - [SMALL_STATE(5281)] = 128517, - [SMALL_STATE(5282)] = 128558, - [SMALL_STATE(5283)] = 128599, - [SMALL_STATE(5284)] = 128642, - [SMALL_STATE(5285)] = 128685, - [SMALL_STATE(5286)] = 128738, - [SMALL_STATE(5287)] = 128793, - [SMALL_STATE(5288)] = 128834, - [SMALL_STATE(5289)] = 128881, - [SMALL_STATE(5290)] = 128922, - [SMALL_STATE(5291)] = 128963, - [SMALL_STATE(5292)] = 129018, - [SMALL_STATE(5293)] = 129059, - [SMALL_STATE(5294)] = 129114, - [SMALL_STATE(5295)] = 129157, - [SMALL_STATE(5296)] = 129198, - [SMALL_STATE(5297)] = 129253, - [SMALL_STATE(5298)] = 129308, - [SMALL_STATE(5299)] = 129351, - [SMALL_STATE(5300)] = 129406, - [SMALL_STATE(5301)] = 129461, - [SMALL_STATE(5302)] = 129516, - [SMALL_STATE(5303)] = 129571, - [SMALL_STATE(5304)] = 129612, - [SMALL_STATE(5305)] = 129667, - [SMALL_STATE(5306)] = 129710, - [SMALL_STATE(5307)] = 129765, - [SMALL_STATE(5308)] = 129820, - [SMALL_STATE(5309)] = 129875, - [SMALL_STATE(5310)] = 129930, - [SMALL_STATE(5311)] = 129985, - [SMALL_STATE(5312)] = 130040, - [SMALL_STATE(5313)] = 130095, - [SMALL_STATE(5314)] = 130150, - [SMALL_STATE(5315)] = 130193, - [SMALL_STATE(5316)] = 130248, - [SMALL_STATE(5317)] = 130289, - [SMALL_STATE(5318)] = 130330, - [SMALL_STATE(5319)] = 130371, - [SMALL_STATE(5320)] = 130412, - [SMALL_STATE(5321)] = 130455, - [SMALL_STATE(5322)] = 130508, - [SMALL_STATE(5323)] = 130563, - [SMALL_STATE(5324)] = 130604, - [SMALL_STATE(5325)] = 130659, - [SMALL_STATE(5326)] = 130700, - [SMALL_STATE(5327)] = 130743, - [SMALL_STATE(5328)] = 130784, - [SMALL_STATE(5329)] = 130827, - [SMALL_STATE(5330)] = 130870, - [SMALL_STATE(5331)] = 130925, - [SMALL_STATE(5332)] = 130980, - [SMALL_STATE(5333)] = 131021, - [SMALL_STATE(5334)] = 131076, - [SMALL_STATE(5335)] = 131131, - [SMALL_STATE(5336)] = 131186, - [SMALL_STATE(5337)] = 131241, - [SMALL_STATE(5338)] = 131288, - [SMALL_STATE(5339)] = 131343, - [SMALL_STATE(5340)] = 131386, - [SMALL_STATE(5341)] = 131441, - [SMALL_STATE(5342)] = 131496, - [SMALL_STATE(5343)] = 131537, - [SMALL_STATE(5344)] = 131578, - [SMALL_STATE(5345)] = 131621, - [SMALL_STATE(5346)] = 131662, - [SMALL_STATE(5347)] = 131717, - [SMALL_STATE(5348)] = 131772, - [SMALL_STATE(5349)] = 131815, - [SMALL_STATE(5350)] = 131868, - [SMALL_STATE(5351)] = 131913, - [SMALL_STATE(5352)] = 131968, - [SMALL_STATE(5353)] = 132023, - [SMALL_STATE(5354)] = 132076, - [SMALL_STATE(5355)] = 132131, - [SMALL_STATE(5356)] = 132184, - [SMALL_STATE(5357)] = 132239, - [SMALL_STATE(5358)] = 132294, - [SMALL_STATE(5359)] = 132349, - [SMALL_STATE(5360)] = 132392, - [SMALL_STATE(5361)] = 132435, - [SMALL_STATE(5362)] = 132476, - [SMALL_STATE(5363)] = 132531, - [SMALL_STATE(5364)] = 132586, - [SMALL_STATE(5365)] = 132641, - [SMALL_STATE(5366)] = 132688, - [SMALL_STATE(5367)] = 132743, - [SMALL_STATE(5368)] = 132798, - [SMALL_STATE(5369)] = 132853, - [SMALL_STATE(5370)] = 132894, - [SMALL_STATE(5371)] = 132949, - [SMALL_STATE(5372)] = 133004, - [SMALL_STATE(5373)] = 133045, - [SMALL_STATE(5374)] = 133100, - [SMALL_STATE(5375)] = 133141, - [SMALL_STATE(5376)] = 133196, - [SMALL_STATE(5377)] = 133251, - [SMALL_STATE(5378)] = 133306, - [SMALL_STATE(5379)] = 133347, - [SMALL_STATE(5380)] = 133402, - [SMALL_STATE(5381)] = 133443, - [SMALL_STATE(5382)] = 133484, - [SMALL_STATE(5383)] = 133533, - [SMALL_STATE(5384)] = 133574, - [SMALL_STATE(5385)] = 133621, - [SMALL_STATE(5386)] = 133662, - [SMALL_STATE(5387)] = 133705, - [SMALL_STATE(5388)] = 133748, - [SMALL_STATE(5389)] = 133789, - [SMALL_STATE(5390)] = 133832, - [SMALL_STATE(5391)] = 133879, - [SMALL_STATE(5392)] = 133934, - [SMALL_STATE(5393)] = 133979, - [SMALL_STATE(5394)] = 134034, - [SMALL_STATE(5395)] = 134089, - [SMALL_STATE(5396)] = 134144, - [SMALL_STATE(5397)] = 134185, - [SMALL_STATE(5398)] = 134226, - [SMALL_STATE(5399)] = 134281, - [SMALL_STATE(5400)] = 134333, - [SMALL_STATE(5401)] = 134385, - [SMALL_STATE(5402)] = 134437, - [SMALL_STATE(5403)] = 134485, - [SMALL_STATE(5404)] = 134537, - [SMALL_STATE(5405)] = 134589, - [SMALL_STATE(5406)] = 134641, - [SMALL_STATE(5407)] = 134685, - [SMALL_STATE(5408)] = 134735, - [SMALL_STATE(5409)] = 134787, - [SMALL_STATE(5410)] = 134839, - [SMALL_STATE(5411)] = 134879, - [SMALL_STATE(5412)] = 134931, - [SMALL_STATE(5413)] = 134983, - [SMALL_STATE(5414)] = 135033, - [SMALL_STATE(5415)] = 135077, - [SMALL_STATE(5416)] = 135129, - [SMALL_STATE(5417)] = 135181, - [SMALL_STATE(5418)] = 135221, - [SMALL_STATE(5419)] = 135263, - [SMALL_STATE(5420)] = 135315, - [SMALL_STATE(5421)] = 135357, - [SMALL_STATE(5422)] = 135409, - [SMALL_STATE(5423)] = 135451, - [SMALL_STATE(5424)] = 135491, - [SMALL_STATE(5425)] = 135543, - [SMALL_STATE(5426)] = 135585, - [SMALL_STATE(5427)] = 135635, - [SMALL_STATE(5428)] = 135687, - [SMALL_STATE(5429)] = 135739, - [SMALL_STATE(5430)] = 135791, - [SMALL_STATE(5431)] = 135831, - [SMALL_STATE(5432)] = 135883, - [SMALL_STATE(5433)] = 135935, - [SMALL_STATE(5434)] = 135987, - [SMALL_STATE(5435)] = 136027, - [SMALL_STATE(5436)] = 136079, - [SMALL_STATE(5437)] = 136131, - [SMALL_STATE(5438)] = 136171, - [SMALL_STATE(5439)] = 136211, - [SMALL_STATE(5440)] = 136263, - [SMALL_STATE(5441)] = 136313, - [SMALL_STATE(5442)] = 136365, - [SMALL_STATE(5443)] = 136417, - [SMALL_STATE(5444)] = 136459, - [SMALL_STATE(5445)] = 136501, - [SMALL_STATE(5446)] = 136553, - [SMALL_STATE(5447)] = 136605, - [SMALL_STATE(5448)] = 136655, - [SMALL_STATE(5449)] = 136707, - [SMALL_STATE(5450)] = 136759, - [SMALL_STATE(5451)] = 136811, - [SMALL_STATE(5452)] = 136853, - [SMALL_STATE(5453)] = 136905, - [SMALL_STATE(5454)] = 136957, - [SMALL_STATE(5455)] = 137009, - [SMALL_STATE(5456)] = 137061, - [SMALL_STATE(5457)] = 137113, - [SMALL_STATE(5458)] = 137165, - [SMALL_STATE(5459)] = 137215, - [SMALL_STATE(5460)] = 137267, - [SMALL_STATE(5461)] = 137319, - [SMALL_STATE(5462)] = 137369, - [SMALL_STATE(5463)] = 137421, - [SMALL_STATE(5464)] = 137473, - [SMALL_STATE(5465)] = 137525, - [SMALL_STATE(5466)] = 137574, - [SMALL_STATE(5467)] = 137623, - [SMALL_STATE(5468)] = 137670, - [SMALL_STATE(5469)] = 137719, - [SMALL_STATE(5470)] = 137766, - [SMALL_STATE(5471)] = 137813, - [SMALL_STATE(5472)] = 137862, - [SMALL_STATE(5473)] = 137909, - [SMALL_STATE(5474)] = 137950, - [SMALL_STATE(5475)] = 137999, - [SMALL_STATE(5476)] = 138046, - [SMALL_STATE(5477)] = 138093, - [SMALL_STATE(5478)] = 138140, - [SMALL_STATE(5479)] = 138187, - [SMALL_STATE(5480)] = 138226, - [SMALL_STATE(5481)] = 138273, - [SMALL_STATE(5482)] = 138322, - [SMALL_STATE(5483)] = 138369, - [SMALL_STATE(5484)] = 138418, - [SMALL_STATE(5485)] = 138467, - [SMALL_STATE(5486)] = 138506, - [SMALL_STATE(5487)] = 138555, - [SMALL_STATE(5488)] = 138602, - [SMALL_STATE(5489)] = 138651, - [SMALL_STATE(5490)] = 138698, - [SMALL_STATE(5491)] = 138747, - [SMALL_STATE(5492)] = 138794, - [SMALL_STATE(5493)] = 138843, - [SMALL_STATE(5494)] = 138892, - [SMALL_STATE(5495)] = 138935, - [SMALL_STATE(5496)] = 138974, - [SMALL_STATE(5497)] = 139023, - [SMALL_STATE(5498)] = 139072, - [SMALL_STATE(5499)] = 139121, - [SMALL_STATE(5500)] = 139170, - [SMALL_STATE(5501)] = 139219, - [SMALL_STATE(5502)] = 139268, - [SMALL_STATE(5503)] = 139315, - [SMALL_STATE(5504)] = 139364, - [SMALL_STATE(5505)] = 139413, - [SMALL_STATE(5506)] = 139460, - [SMALL_STATE(5507)] = 139509, - [SMALL_STATE(5508)] = 139556, - [SMALL_STATE(5509)] = 139603, - [SMALL_STATE(5510)] = 139650, - [SMALL_STATE(5511)] = 139697, - [SMALL_STATE(5512)] = 139744, - [SMALL_STATE(5513)] = 139790, - [SMALL_STATE(5514)] = 139836, - [SMALL_STATE(5515)] = 139882, - [SMALL_STATE(5516)] = 139928, - [SMALL_STATE(5517)] = 139974, - [SMALL_STATE(5518)] = 140020, - [SMALL_STATE(5519)] = 140066, - [SMALL_STATE(5520)] = 140112, - [SMALL_STATE(5521)] = 140158, - [SMALL_STATE(5522)] = 140204, - [SMALL_STATE(5523)] = 140250, - [SMALL_STATE(5524)] = 140296, - [SMALL_STATE(5525)] = 140342, - [SMALL_STATE(5526)] = 140388, - [SMALL_STATE(5527)] = 140426, - [SMALL_STATE(5528)] = 140472, - [SMALL_STATE(5529)] = 140518, - [SMALL_STATE(5530)] = 140564, - [SMALL_STATE(5531)] = 140610, - [SMALL_STATE(5532)] = 140656, - [SMALL_STATE(5533)] = 140702, - [SMALL_STATE(5534)] = 140740, - [SMALL_STATE(5535)] = 140778, - [SMALL_STATE(5536)] = 140824, - [SMALL_STATE(5537)] = 140862, - [SMALL_STATE(5538)] = 140902, - [SMALL_STATE(5539)] = 140948, - [SMALL_STATE(5540)] = 140994, - [SMALL_STATE(5541)] = 141036, - [SMALL_STATE(5542)] = 141082, - [SMALL_STATE(5543)] = 141128, - [SMALL_STATE(5544)] = 141166, - [SMALL_STATE(5545)] = 141212, - [SMALL_STATE(5546)] = 141258, - [SMALL_STATE(5547)] = 141304, - [SMALL_STATE(5548)] = 141350, - [SMALL_STATE(5549)] = 141396, - [SMALL_STATE(5550)] = 141442, - [SMALL_STATE(5551)] = 141485, - [SMALL_STATE(5552)] = 141528, - [SMALL_STATE(5553)] = 141571, - [SMALL_STATE(5554)] = 141614, - [SMALL_STATE(5555)] = 141657, - [SMALL_STATE(5556)] = 141700, - [SMALL_STATE(5557)] = 141743, - [SMALL_STATE(5558)] = 141786, - [SMALL_STATE(5559)] = 141829, - [SMALL_STATE(5560)] = 141872, - [SMALL_STATE(5561)] = 141913, - [SMALL_STATE(5562)] = 141954, - [SMALL_STATE(5563)] = 141997, - [SMALL_STATE(5564)] = 142040, - [SMALL_STATE(5565)] = 142083, - [SMALL_STATE(5566)] = 142126, - [SMALL_STATE(5567)] = 142169, - [SMALL_STATE(5568)] = 142212, - [SMALL_STATE(5569)] = 142255, - [SMALL_STATE(5570)] = 142298, - [SMALL_STATE(5571)] = 142341, - [SMALL_STATE(5572)] = 142384, - [SMALL_STATE(5573)] = 142427, - [SMALL_STATE(5574)] = 142470, - [SMALL_STATE(5575)] = 142513, - [SMALL_STATE(5576)] = 142556, - [SMALL_STATE(5577)] = 142597, - [SMALL_STATE(5578)] = 142640, - [SMALL_STATE(5579)] = 142681, - [SMALL_STATE(5580)] = 142724, - [SMALL_STATE(5581)] = 142767, - [SMALL_STATE(5582)] = 142810, - [SMALL_STATE(5583)] = 142853, - [SMALL_STATE(5584)] = 142896, - [SMALL_STATE(5585)] = 142937, - [SMALL_STATE(5586)] = 142978, - [SMALL_STATE(5587)] = 143021, - [SMALL_STATE(5588)] = 143062, - [SMALL_STATE(5589)] = 143105, - [SMALL_STATE(5590)] = 143148, - [SMALL_STATE(5591)] = 143191, - [SMALL_STATE(5592)] = 143232, - [SMALL_STATE(5593)] = 143275, - [SMALL_STATE(5594)] = 143318, - [SMALL_STATE(5595)] = 143361, - [SMALL_STATE(5596)] = 143404, - [SMALL_STATE(5597)] = 143439, - [SMALL_STATE(5598)] = 143482, - [SMALL_STATE(5599)] = 143525, - [SMALL_STATE(5600)] = 143568, - [SMALL_STATE(5601)] = 143611, - [SMALL_STATE(5602)] = 143654, - [SMALL_STATE(5603)] = 143697, - [SMALL_STATE(5604)] = 143740, - [SMALL_STATE(5605)] = 143783, - [SMALL_STATE(5606)] = 143824, - [SMALL_STATE(5607)] = 143867, - [SMALL_STATE(5608)] = 143908, - [SMALL_STATE(5609)] = 143951, - [SMALL_STATE(5610)] = 143994, - [SMALL_STATE(5611)] = 144035, - [SMALL_STATE(5612)] = 144078, - [SMALL_STATE(5613)] = 144119, - [SMALL_STATE(5614)] = 144162, - [SMALL_STATE(5615)] = 144205, - [SMALL_STATE(5616)] = 144248, - [SMALL_STATE(5617)] = 144291, - [SMALL_STATE(5618)] = 144334, - [SMALL_STATE(5619)] = 144375, - [SMALL_STATE(5620)] = 144416, - [SMALL_STATE(5621)] = 144459, - [SMALL_STATE(5622)] = 144500, - [SMALL_STATE(5623)] = 144541, - [SMALL_STATE(5624)] = 144578, - [SMALL_STATE(5625)] = 144621, - [SMALL_STATE(5626)] = 144664, - [SMALL_STATE(5627)] = 144707, - [SMALL_STATE(5628)] = 144750, - [SMALL_STATE(5629)] = 144793, - [SMALL_STATE(5630)] = 144834, - [SMALL_STATE(5631)] = 144877, - [SMALL_STATE(5632)] = 144918, - [SMALL_STATE(5633)] = 144961, - [SMALL_STATE(5634)] = 145004, - [SMALL_STATE(5635)] = 145047, - [SMALL_STATE(5636)] = 145088, - [SMALL_STATE(5637)] = 145131, - [SMALL_STATE(5638)] = 145174, - [SMALL_STATE(5639)] = 145217, - [SMALL_STATE(5640)] = 145260, - [SMALL_STATE(5641)] = 145303, - [SMALL_STATE(5642)] = 145346, - [SMALL_STATE(5643)] = 145387, - [SMALL_STATE(5644)] = 145430, - [SMALL_STATE(5645)] = 145473, - [SMALL_STATE(5646)] = 145516, - [SMALL_STATE(5647)] = 145559, - [SMALL_STATE(5648)] = 145602, - [SMALL_STATE(5649)] = 145645, - [SMALL_STATE(5650)] = 145688, - [SMALL_STATE(5651)] = 145731, - [SMALL_STATE(5652)] = 145766, - [SMALL_STATE(5653)] = 145807, - [SMALL_STATE(5654)] = 145850, - [SMALL_STATE(5655)] = 145893, - [SMALL_STATE(5656)] = 145936, - [SMALL_STATE(5657)] = 145979, - [SMALL_STATE(5658)] = 146022, - [SMALL_STATE(5659)] = 146065, - [SMALL_STATE(5660)] = 146108, - [SMALL_STATE(5661)] = 146149, - [SMALL_STATE(5662)] = 146192, - [SMALL_STATE(5663)] = 146235, - [SMALL_STATE(5664)] = 146278, - [SMALL_STATE(5665)] = 146315, - [SMALL_STATE(5666)] = 146356, - [SMALL_STATE(5667)] = 146399, - [SMALL_STATE(5668)] = 146442, - [SMALL_STATE(5669)] = 146483, - [SMALL_STATE(5670)] = 146526, - [SMALL_STATE(5671)] = 146569, - [SMALL_STATE(5672)] = 146612, - [SMALL_STATE(5673)] = 146655, - [SMALL_STATE(5674)] = 146698, - [SMALL_STATE(5675)] = 146739, - [SMALL_STATE(5676)] = 146782, - [SMALL_STATE(5677)] = 146823, - [SMALL_STATE(5678)] = 146864, - [SMALL_STATE(5679)] = 146907, - [SMALL_STATE(5680)] = 146950, - [SMALL_STATE(5681)] = 146993, - [SMALL_STATE(5682)] = 147036, - [SMALL_STATE(5683)] = 147077, - [SMALL_STATE(5684)] = 147120, - [SMALL_STATE(5685)] = 147161, - [SMALL_STATE(5686)] = 147204, - [SMALL_STATE(5687)] = 147247, - [SMALL_STATE(5688)] = 147290, - [SMALL_STATE(5689)] = 147333, - [SMALL_STATE(5690)] = 147376, - [SMALL_STATE(5691)] = 147419, - [SMALL_STATE(5692)] = 147462, - [SMALL_STATE(5693)] = 147501, - [SMALL_STATE(5694)] = 147544, - [SMALL_STATE(5695)] = 147587, - [SMALL_STATE(5696)] = 147630, - [SMALL_STATE(5697)] = 147673, - [SMALL_STATE(5698)] = 147708, - [SMALL_STATE(5699)] = 147751, - [SMALL_STATE(5700)] = 147792, - [SMALL_STATE(5701)] = 147835, - [SMALL_STATE(5702)] = 147869, - [SMALL_STATE(5703)] = 147903, - [SMALL_STATE(5704)] = 147943, - [SMALL_STATE(5705)] = 147983, - [SMALL_STATE(5706)] = 148023, - [SMALL_STATE(5707)] = 148063, - [SMALL_STATE(5708)] = 148103, - [SMALL_STATE(5709)] = 148137, - [SMALL_STATE(5710)] = 148177, - [SMALL_STATE(5711)] = 148217, - [SMALL_STATE(5712)] = 148255, - [SMALL_STATE(5713)] = 148295, - [SMALL_STATE(5714)] = 148329, - [SMALL_STATE(5715)] = 148367, - [SMALL_STATE(5716)] = 148407, - [SMALL_STATE(5717)] = 148441, - [SMALL_STATE(5718)] = 148481, - [SMALL_STATE(5719)] = 148515, - [SMALL_STATE(5720)] = 148555, - [SMALL_STATE(5721)] = 148595, - [SMALL_STATE(5722)] = 148629, - [SMALL_STATE(5723)] = 148669, - [SMALL_STATE(5724)] = 148709, - [SMALL_STATE(5725)] = 148749, - [SMALL_STATE(5726)] = 148789, - [SMALL_STATE(5727)] = 148829, - [SMALL_STATE(5728)] = 148869, - [SMALL_STATE(5729)] = 148909, - [SMALL_STATE(5730)] = 148949, - [SMALL_STATE(5731)] = 148989, - [SMALL_STATE(5732)] = 149029, - [SMALL_STATE(5733)] = 149069, - [SMALL_STATE(5734)] = 149109, - [SMALL_STATE(5735)] = 149149, - [SMALL_STATE(5736)] = 149189, - [SMALL_STATE(5737)] = 149229, - [SMALL_STATE(5738)] = 149269, - [SMALL_STATE(5739)] = 149309, - [SMALL_STATE(5740)] = 149349, - [SMALL_STATE(5741)] = 149389, - [SMALL_STATE(5742)] = 149429, - [SMALL_STATE(5743)] = 149463, - [SMALL_STATE(5744)] = 149503, - [SMALL_STATE(5745)] = 149543, - [SMALL_STATE(5746)] = 149583, - [SMALL_STATE(5747)] = 149623, - [SMALL_STATE(5748)] = 149661, - [SMALL_STATE(5749)] = 149701, - [SMALL_STATE(5750)] = 149741, - [SMALL_STATE(5751)] = 149781, - [SMALL_STATE(5752)] = 149815, - [SMALL_STATE(5753)] = 149855, - [SMALL_STATE(5754)] = 149895, - [SMALL_STATE(5755)] = 149935, - [SMALL_STATE(5756)] = 149975, - [SMALL_STATE(5757)] = 150015, - [SMALL_STATE(5758)] = 150049, - [SMALL_STATE(5759)] = 150089, - [SMALL_STATE(5760)] = 150129, - [SMALL_STATE(5761)] = 150169, - [SMALL_STATE(5762)] = 150209, - [SMALL_STATE(5763)] = 150249, - [SMALL_STATE(5764)] = 150289, - [SMALL_STATE(5765)] = 150329, - [SMALL_STATE(5766)] = 150369, - [SMALL_STATE(5767)] = 150403, - [SMALL_STATE(5768)] = 150443, - [SMALL_STATE(5769)] = 150483, - [SMALL_STATE(5770)] = 150523, - [SMALL_STATE(5771)] = 150563, - [SMALL_STATE(5772)] = 150597, - [SMALL_STATE(5773)] = 150637, - [SMALL_STATE(5774)] = 150677, - [SMALL_STATE(5775)] = 150711, - [SMALL_STATE(5776)] = 150745, - [SMALL_STATE(5777)] = 150785, - [SMALL_STATE(5778)] = 150825, - [SMALL_STATE(5779)] = 150859, - [SMALL_STATE(5780)] = 150899, - [SMALL_STATE(5781)] = 150937, - [SMALL_STATE(5782)] = 150975, - [SMALL_STATE(5783)] = 151015, - [SMALL_STATE(5784)] = 151055, - [SMALL_STATE(5785)] = 151093, - [SMALL_STATE(5786)] = 151133, - [SMALL_STATE(5787)] = 151173, - [SMALL_STATE(5788)] = 151209, - [SMALL_STATE(5789)] = 151243, - [SMALL_STATE(5790)] = 151283, - [SMALL_STATE(5791)] = 151319, - [SMALL_STATE(5792)] = 151359, - [SMALL_STATE(5793)] = 151393, - [SMALL_STATE(5794)] = 151427, - [SMALL_STATE(5795)] = 151465, - [SMALL_STATE(5796)] = 151499, - [SMALL_STATE(5797)] = 151535, - [SMALL_STATE(5798)] = 151569, - [SMALL_STATE(5799)] = 151603, - [SMALL_STATE(5800)] = 151643, - [SMALL_STATE(5801)] = 151681, - [SMALL_STATE(5802)] = 151717, - [SMALL_STATE(5803)] = 151757, - [SMALL_STATE(5804)] = 151795, - [SMALL_STATE(5805)] = 151833, - [SMALL_STATE(5806)] = 151873, - [SMALL_STATE(5807)] = 151908, - [SMALL_STATE(5808)] = 151943, - [SMALL_STATE(5809)] = 151980, - [SMALL_STATE(5810)] = 152017, - [SMALL_STATE(5811)] = 152054, - [SMALL_STATE(5812)] = 152089, - [SMALL_STATE(5813)] = 152126, - [SMALL_STATE(5814)] = 152163, - [SMALL_STATE(5815)] = 152200, - [SMALL_STATE(5816)] = 152237, - [SMALL_STATE(5817)] = 152274, - [SMALL_STATE(5818)] = 152311, - [SMALL_STATE(5819)] = 152348, - [SMALL_STATE(5820)] = 152383, - [SMALL_STATE(5821)] = 152420, - [SMALL_STATE(5822)] = 152457, - [SMALL_STATE(5823)] = 152494, - [SMALL_STATE(5824)] = 152531, - [SMALL_STATE(5825)] = 152568, - [SMALL_STATE(5826)] = 152605, - [SMALL_STATE(5827)] = 152642, - [SMALL_STATE(5828)] = 152675, - [SMALL_STATE(5829)] = 152712, - [SMALL_STATE(5830)] = 152749, - [SMALL_STATE(5831)] = 152786, - [SMALL_STATE(5832)] = 152821, - [SMALL_STATE(5833)] = 152854, - [SMALL_STATE(5834)] = 152891, - [SMALL_STATE(5835)] = 152926, - [SMALL_STATE(5836)] = 152963, - [SMALL_STATE(5837)] = 152996, - [SMALL_STATE(5838)] = 153033, - [SMALL_STATE(5839)] = 153068, - [SMALL_STATE(5840)] = 153105, - [SMALL_STATE(5841)] = 153142, - [SMALL_STATE(5842)] = 153175, - [SMALL_STATE(5843)] = 153210, - [SMALL_STATE(5844)] = 153247, - [SMALL_STATE(5845)] = 153282, - [SMALL_STATE(5846)] = 153315, - [SMALL_STATE(5847)] = 153350, - [SMALL_STATE(5848)] = 153387, - [SMALL_STATE(5849)] = 153424, - [SMALL_STATE(5850)] = 153461, - [SMALL_STATE(5851)] = 153498, - [SMALL_STATE(5852)] = 153531, - [SMALL_STATE(5853)] = 153568, - [SMALL_STATE(5854)] = 153603, - [SMALL_STATE(5855)] = 153636, - [SMALL_STATE(5856)] = 153673, - [SMALL_STATE(5857)] = 153706, - [SMALL_STATE(5858)] = 153743, - [SMALL_STATE(5859)] = 153778, - [SMALL_STATE(5860)] = 153815, - [SMALL_STATE(5861)] = 153850, - [SMALL_STATE(5862)] = 153883, - [SMALL_STATE(5863)] = 153916, - [SMALL_STATE(5864)] = 153953, - [SMALL_STATE(5865)] = 153990, - [SMALL_STATE(5866)] = 154023, - [SMALL_STATE(5867)] = 154060, - [SMALL_STATE(5868)] = 154097, - [SMALL_STATE(5869)] = 154130, - [SMALL_STATE(5870)] = 154167, - [SMALL_STATE(5871)] = 154204, - [SMALL_STATE(5872)] = 154241, - [SMALL_STATE(5873)] = 154278, - [SMALL_STATE(5874)] = 154315, - [SMALL_STATE(5875)] = 154352, - [SMALL_STATE(5876)] = 154389, - [SMALL_STATE(5877)] = 154424, - [SMALL_STATE(5878)] = 154459, - [SMALL_STATE(5879)] = 154494, - [SMALL_STATE(5880)] = 154531, - [SMALL_STATE(5881)] = 154568, - [SMALL_STATE(5882)] = 154603, - [SMALL_STATE(5883)] = 154640, - [SMALL_STATE(5884)] = 154677, - [SMALL_STATE(5885)] = 154714, - [SMALL_STATE(5886)] = 154751, - [SMALL_STATE(5887)] = 154788, - [SMALL_STATE(5888)] = 154825, - [SMALL_STATE(5889)] = 154862, - [SMALL_STATE(5890)] = 154895, - [SMALL_STATE(5891)] = 154932, - [SMALL_STATE(5892)] = 154969, - [SMALL_STATE(5893)] = 155006, - [SMALL_STATE(5894)] = 155043, - [SMALL_STATE(5895)] = 155078, - [SMALL_STATE(5896)] = 155115, - [SMALL_STATE(5897)] = 155150, - [SMALL_STATE(5898)] = 155183, - [SMALL_STATE(5899)] = 155220, - [SMALL_STATE(5900)] = 155257, - [SMALL_STATE(5901)] = 155294, - [SMALL_STATE(5902)] = 155331, - [SMALL_STATE(5903)] = 155368, - [SMALL_STATE(5904)] = 155403, - [SMALL_STATE(5905)] = 155440, - [SMALL_STATE(5906)] = 155473, - [SMALL_STATE(5907)] = 155510, - [SMALL_STATE(5908)] = 155547, - [SMALL_STATE(5909)] = 155580, - [SMALL_STATE(5910)] = 155617, - [SMALL_STATE(5911)] = 155650, - [SMALL_STATE(5912)] = 155685, - [SMALL_STATE(5913)] = 155722, - [SMALL_STATE(5914)] = 155759, - [SMALL_STATE(5915)] = 155796, - [SMALL_STATE(5916)] = 155831, - [SMALL_STATE(5917)] = 155868, - [SMALL_STATE(5918)] = 155905, - [SMALL_STATE(5919)] = 155938, - [SMALL_STATE(5920)] = 155975, - [SMALL_STATE(5921)] = 156012, - [SMALL_STATE(5922)] = 156049, - [SMALL_STATE(5923)] = 156086, - [SMALL_STATE(5924)] = 156123, - [SMALL_STATE(5925)] = 156160, - [SMALL_STATE(5926)] = 156197, - [SMALL_STATE(5927)] = 156234, - [SMALL_STATE(5928)] = 156269, - [SMALL_STATE(5929)] = 156306, - [SMALL_STATE(5930)] = 156343, - [SMALL_STATE(5931)] = 156380, - [SMALL_STATE(5932)] = 156417, - [SMALL_STATE(5933)] = 156454, - [SMALL_STATE(5934)] = 156491, - [SMALL_STATE(5935)] = 156528, - [SMALL_STATE(5936)] = 156565, - [SMALL_STATE(5937)] = 156600, - [SMALL_STATE(5938)] = 156637, - [SMALL_STATE(5939)] = 156674, - [SMALL_STATE(5940)] = 156711, - [SMALL_STATE(5941)] = 156748, - [SMALL_STATE(5942)] = 156785, - [SMALL_STATE(5943)] = 156818, - [SMALL_STATE(5944)] = 156855, - [SMALL_STATE(5945)] = 156892, - [SMALL_STATE(5946)] = 156929, - [SMALL_STATE(5947)] = 156962, - [SMALL_STATE(5948)] = 156999, - [SMALL_STATE(5949)] = 157036, - [SMALL_STATE(5950)] = 157073, - [SMALL_STATE(5951)] = 157106, - [SMALL_STATE(5952)] = 157143, - [SMALL_STATE(5953)] = 157180, - [SMALL_STATE(5954)] = 157215, - [SMALL_STATE(5955)] = 157252, - [SMALL_STATE(5956)] = 157285, - [SMALL_STATE(5957)] = 157322, - [SMALL_STATE(5958)] = 157359, - [SMALL_STATE(5959)] = 157396, - [SMALL_STATE(5960)] = 157433, - [SMALL_STATE(5961)] = 157470, - [SMALL_STATE(5962)] = 157505, - [SMALL_STATE(5963)] = 157542, - [SMALL_STATE(5964)] = 157577, - [SMALL_STATE(5965)] = 157610, - [SMALL_STATE(5966)] = 157643, - [SMALL_STATE(5967)] = 157680, - [SMALL_STATE(5968)] = 157717, - [SMALL_STATE(5969)] = 157754, - [SMALL_STATE(5970)] = 157791, - [SMALL_STATE(5971)] = 157828, - [SMALL_STATE(5972)] = 157865, - [SMALL_STATE(5973)] = 157902, - [SMALL_STATE(5974)] = 157935, - [SMALL_STATE(5975)] = 157968, - [SMALL_STATE(5976)] = 158001, - [SMALL_STATE(5977)] = 158038, - [SMALL_STATE(5978)] = 158075, - [SMALL_STATE(5979)] = 158108, - [SMALL_STATE(5980)] = 158145, - [SMALL_STATE(5981)] = 158180, - [SMALL_STATE(5982)] = 158217, - [SMALL_STATE(5983)] = 158252, - [SMALL_STATE(5984)] = 158287, - [SMALL_STATE(5985)] = 158322, - [SMALL_STATE(5986)] = 158359, - [SMALL_STATE(5987)] = 158396, - [SMALL_STATE(5988)] = 158433, - [SMALL_STATE(5989)] = 158470, - [SMALL_STATE(5990)] = 158505, - [SMALL_STATE(5991)] = 158542, - [SMALL_STATE(5992)] = 158579, - [SMALL_STATE(5993)] = 158616, - [SMALL_STATE(5994)] = 158653, - [SMALL_STATE(5995)] = 158688, - [SMALL_STATE(5996)] = 158723, - [SMALL_STATE(5997)] = 158760, - [SMALL_STATE(5998)] = 158797, - [SMALL_STATE(5999)] = 158834, - [SMALL_STATE(6000)] = 158867, - [SMALL_STATE(6001)] = 158904, - [SMALL_STATE(6002)] = 158941, - [SMALL_STATE(6003)] = 158978, - [SMALL_STATE(6004)] = 159013, - [SMALL_STATE(6005)] = 159046, - [SMALL_STATE(6006)] = 159083, - [SMALL_STATE(6007)] = 159120, - [SMALL_STATE(6008)] = 159157, - [SMALL_STATE(6009)] = 159192, - [SMALL_STATE(6010)] = 159229, - [SMALL_STATE(6011)] = 159266, - [SMALL_STATE(6012)] = 159303, - [SMALL_STATE(6013)] = 159340, - [SMALL_STATE(6014)] = 159377, - [SMALL_STATE(6015)] = 159412, - [SMALL_STATE(6016)] = 159449, - [SMALL_STATE(6017)] = 159486, - [SMALL_STATE(6018)] = 159523, - [SMALL_STATE(6019)] = 159560, - [SMALL_STATE(6020)] = 159597, - [SMALL_STATE(6021)] = 159632, - [SMALL_STATE(6022)] = 159669, - [SMALL_STATE(6023)] = 159706, - [SMALL_STATE(6024)] = 159743, - [SMALL_STATE(6025)] = 159778, - [SMALL_STATE(6026)] = 159815, - [SMALL_STATE(6027)] = 159852, - [SMALL_STATE(6028)] = 159889, - [SMALL_STATE(6029)] = 159926, - [SMALL_STATE(6030)] = 159961, - [SMALL_STATE(6031)] = 159998, - [SMALL_STATE(6032)] = 160035, - [SMALL_STATE(6033)] = 160072, - [SMALL_STATE(6034)] = 160109, - [SMALL_STATE(6035)] = 160146, - [SMALL_STATE(6036)] = 160183, - [SMALL_STATE(6037)] = 160220, - [SMALL_STATE(6038)] = 160257, - [SMALL_STATE(6039)] = 160294, - [SMALL_STATE(6040)] = 160331, - [SMALL_STATE(6041)] = 160368, - [SMALL_STATE(6042)] = 160403, - [SMALL_STATE(6043)] = 160440, - [SMALL_STATE(6044)] = 160477, - [SMALL_STATE(6045)] = 160514, - [SMALL_STATE(6046)] = 160549, - [SMALL_STATE(6047)] = 160586, - [SMALL_STATE(6048)] = 160621, - [SMALL_STATE(6049)] = 160654, - [SMALL_STATE(6050)] = 160691, - [SMALL_STATE(6051)] = 160726, - [SMALL_STATE(6052)] = 160763, - [SMALL_STATE(6053)] = 160800, - [SMALL_STATE(6054)] = 160837, - [SMALL_STATE(6055)] = 160874, - [SMALL_STATE(6056)] = 160911, - [SMALL_STATE(6057)] = 160948, - [SMALL_STATE(6058)] = 160985, - [SMALL_STATE(6059)] = 161022, - [SMALL_STATE(6060)] = 161059, - [SMALL_STATE(6061)] = 161096, - [SMALL_STATE(6062)] = 161133, - [SMALL_STATE(6063)] = 161170, - [SMALL_STATE(6064)] = 161207, - [SMALL_STATE(6065)] = 161244, - [SMALL_STATE(6066)] = 161281, - [SMALL_STATE(6067)] = 161318, - [SMALL_STATE(6068)] = 161353, - [SMALL_STATE(6069)] = 161390, - [SMALL_STATE(6070)] = 161423, - [SMALL_STATE(6071)] = 161460, - [SMALL_STATE(6072)] = 161497, - [SMALL_STATE(6073)] = 161532, - [SMALL_STATE(6074)] = 161569, - [SMALL_STATE(6075)] = 161606, - [SMALL_STATE(6076)] = 161643, - [SMALL_STATE(6077)] = 161680, - [SMALL_STATE(6078)] = 161717, - [SMALL_STATE(6079)] = 161754, - [SMALL_STATE(6080)] = 161791, - [SMALL_STATE(6081)] = 161828, - [SMALL_STATE(6082)] = 161865, - [SMALL_STATE(6083)] = 161902, - [SMALL_STATE(6084)] = 161939, - [SMALL_STATE(6085)] = 161976, - [SMALL_STATE(6086)] = 162011, - [SMALL_STATE(6087)] = 162048, - [SMALL_STATE(6088)] = 162085, - [SMALL_STATE(6089)] = 162120, - [SMALL_STATE(6090)] = 162157, - [SMALL_STATE(6091)] = 162194, - [SMALL_STATE(6092)] = 162231, - [SMALL_STATE(6093)] = 162268, - [SMALL_STATE(6094)] = 162305, - [SMALL_STATE(6095)] = 162342, - [SMALL_STATE(6096)] = 162379, - [SMALL_STATE(6097)] = 162416, - [SMALL_STATE(6098)] = 162453, - [SMALL_STATE(6099)] = 162490, - [SMALL_STATE(6100)] = 162527, - [SMALL_STATE(6101)] = 162564, - [SMALL_STATE(6102)] = 162601, - [SMALL_STATE(6103)] = 162636, - [SMALL_STATE(6104)] = 162673, - [SMALL_STATE(6105)] = 162710, - [SMALL_STATE(6106)] = 162743, - [SMALL_STATE(6107)] = 162780, - [SMALL_STATE(6108)] = 162817, - [SMALL_STATE(6109)] = 162854, - [SMALL_STATE(6110)] = 162891, - [SMALL_STATE(6111)] = 162928, - [SMALL_STATE(6112)] = 162965, - [SMALL_STATE(6113)] = 163002, - [SMALL_STATE(6114)] = 163039, - [SMALL_STATE(6115)] = 163076, - [SMALL_STATE(6116)] = 163113, - [SMALL_STATE(6117)] = 163150, - [SMALL_STATE(6118)] = 163185, - [SMALL_STATE(6119)] = 163222, - [SMALL_STATE(6120)] = 163256, - [SMALL_STATE(6121)] = 163290, - [SMALL_STATE(6122)] = 163324, - [SMALL_STATE(6123)] = 163358, - [SMALL_STATE(6124)] = 163392, - [SMALL_STATE(6125)] = 163426, - [SMALL_STATE(6126)] = 163460, - [SMALL_STATE(6127)] = 163494, - [SMALL_STATE(6128)] = 163528, - [SMALL_STATE(6129)] = 163562, - [SMALL_STATE(6130)] = 163596, - [SMALL_STATE(6131)] = 163630, - [SMALL_STATE(6132)] = 163664, - [SMALL_STATE(6133)] = 163698, - [SMALL_STATE(6134)] = 163732, - [SMALL_STATE(6135)] = 163766, - [SMALL_STATE(6136)] = 163800, - [SMALL_STATE(6137)] = 163834, - [SMALL_STATE(6138)] = 163868, - [SMALL_STATE(6139)] = 163902, - [SMALL_STATE(6140)] = 163936, - [SMALL_STATE(6141)] = 163968, - [SMALL_STATE(6142)] = 164002, - [SMALL_STATE(6143)] = 164036, - [SMALL_STATE(6144)] = 164070, - [SMALL_STATE(6145)] = 164104, - [SMALL_STATE(6146)] = 164138, - [SMALL_STATE(6147)] = 164172, - [SMALL_STATE(6148)] = 164204, - [SMALL_STATE(6149)] = 164238, - [SMALL_STATE(6150)] = 164272, - [SMALL_STATE(6151)] = 164306, - [SMALL_STATE(6152)] = 164340, - [SMALL_STATE(6153)] = 164374, - [SMALL_STATE(6154)] = 164408, - [SMALL_STATE(6155)] = 164442, - [SMALL_STATE(6156)] = 164476, - [SMALL_STATE(6157)] = 164510, - [SMALL_STATE(6158)] = 164544, - [SMALL_STATE(6159)] = 164578, - [SMALL_STATE(6160)] = 164612, - [SMALL_STATE(6161)] = 164646, - [SMALL_STATE(6162)] = 164680, - [SMALL_STATE(6163)] = 164714, - [SMALL_STATE(6164)] = 164748, - [SMALL_STATE(6165)] = 164782, - [SMALL_STATE(6166)] = 164816, - [SMALL_STATE(6167)] = 164850, - [SMALL_STATE(6168)] = 164884, - [SMALL_STATE(6169)] = 164916, - [SMALL_STATE(6170)] = 164950, - [SMALL_STATE(6171)] = 164984, - [SMALL_STATE(6172)] = 165018, - [SMALL_STATE(6173)] = 165052, - [SMALL_STATE(6174)] = 165086, - [SMALL_STATE(6175)] = 165120, - [SMALL_STATE(6176)] = 165154, - [SMALL_STATE(6177)] = 165188, - [SMALL_STATE(6178)] = 165222, - [SMALL_STATE(6179)] = 165256, - [SMALL_STATE(6180)] = 165290, - [SMALL_STATE(6181)] = 165324, - [SMALL_STATE(6182)] = 165358, - [SMALL_STATE(6183)] = 165392, - [SMALL_STATE(6184)] = 165426, - [SMALL_STATE(6185)] = 165460, - [SMALL_STATE(6186)] = 165494, - [SMALL_STATE(6187)] = 165528, - [SMALL_STATE(6188)] = 165562, - [SMALL_STATE(6189)] = 165596, - [SMALL_STATE(6190)] = 165630, - [SMALL_STATE(6191)] = 165664, - [SMALL_STATE(6192)] = 165698, - [SMALL_STATE(6193)] = 165732, - [SMALL_STATE(6194)] = 165766, - [SMALL_STATE(6195)] = 165800, - [SMALL_STATE(6196)] = 165834, - [SMALL_STATE(6197)] = 165868, - [SMALL_STATE(6198)] = 165902, - [SMALL_STATE(6199)] = 165936, - [SMALL_STATE(6200)] = 165970, - [SMALL_STATE(6201)] = 166004, - [SMALL_STATE(6202)] = 166038, - [SMALL_STATE(6203)] = 166072, - [SMALL_STATE(6204)] = 166106, - [SMALL_STATE(6205)] = 166140, - [SMALL_STATE(6206)] = 166174, - [SMALL_STATE(6207)] = 166208, - [SMALL_STATE(6208)] = 166242, - [SMALL_STATE(6209)] = 166276, - [SMALL_STATE(6210)] = 166310, - [SMALL_STATE(6211)] = 166344, - [SMALL_STATE(6212)] = 166378, - [SMALL_STATE(6213)] = 166412, - [SMALL_STATE(6214)] = 166446, - [SMALL_STATE(6215)] = 166480, - [SMALL_STATE(6216)] = 166514, - [SMALL_STATE(6217)] = 166548, - [SMALL_STATE(6218)] = 166582, - [SMALL_STATE(6219)] = 166614, - [SMALL_STATE(6220)] = 166648, - [SMALL_STATE(6221)] = 166682, - [SMALL_STATE(6222)] = 166716, - [SMALL_STATE(6223)] = 166748, - [SMALL_STATE(6224)] = 166780, - [SMALL_STATE(6225)] = 166814, - [SMALL_STATE(6226)] = 166848, - [SMALL_STATE(6227)] = 166880, - [SMALL_STATE(6228)] = 166914, - [SMALL_STATE(6229)] = 166948, - [SMALL_STATE(6230)] = 166982, - [SMALL_STATE(6231)] = 167016, - [SMALL_STATE(6232)] = 167050, - [SMALL_STATE(6233)] = 167084, - [SMALL_STATE(6234)] = 167118, - [SMALL_STATE(6235)] = 167152, - [SMALL_STATE(6236)] = 167186, - [SMALL_STATE(6237)] = 167220, - [SMALL_STATE(6238)] = 167254, - [SMALL_STATE(6239)] = 167288, - [SMALL_STATE(6240)] = 167322, - [SMALL_STATE(6241)] = 167356, - [SMALL_STATE(6242)] = 167390, - [SMALL_STATE(6243)] = 167424, - [SMALL_STATE(6244)] = 167458, - [SMALL_STATE(6245)] = 167492, - [SMALL_STATE(6246)] = 167526, - [SMALL_STATE(6247)] = 167560, - [SMALL_STATE(6248)] = 167594, - [SMALL_STATE(6249)] = 167628, - [SMALL_STATE(6250)] = 167660, - [SMALL_STATE(6251)] = 167694, - [SMALL_STATE(6252)] = 167728, - [SMALL_STATE(6253)] = 167762, - [SMALL_STATE(6254)] = 167796, - [SMALL_STATE(6255)] = 167830, - [SMALL_STATE(6256)] = 167864, - [SMALL_STATE(6257)] = 167898, - [SMALL_STATE(6258)] = 167932, - [SMALL_STATE(6259)] = 167966, - [SMALL_STATE(6260)] = 168000, - [SMALL_STATE(6261)] = 168034, - [SMALL_STATE(6262)] = 168068, - [SMALL_STATE(6263)] = 168102, - [SMALL_STATE(6264)] = 168136, - [SMALL_STATE(6265)] = 168170, - [SMALL_STATE(6266)] = 168204, - [SMALL_STATE(6267)] = 168236, - [SMALL_STATE(6268)] = 168270, - [SMALL_STATE(6269)] = 168302, - [SMALL_STATE(6270)] = 168336, - [SMALL_STATE(6271)] = 168370, - [SMALL_STATE(6272)] = 168404, - [SMALL_STATE(6273)] = 168438, - [SMALL_STATE(6274)] = 168470, - [SMALL_STATE(6275)] = 168504, - [SMALL_STATE(6276)] = 168538, - [SMALL_STATE(6277)] = 168572, - [SMALL_STATE(6278)] = 168606, - [SMALL_STATE(6279)] = 168640, - [SMALL_STATE(6280)] = 168674, - [SMALL_STATE(6281)] = 168708, - [SMALL_STATE(6282)] = 168742, - [SMALL_STATE(6283)] = 168776, - [SMALL_STATE(6284)] = 168810, - [SMALL_STATE(6285)] = 168842, - [SMALL_STATE(6286)] = 168876, - [SMALL_STATE(6287)] = 168908, - [SMALL_STATE(6288)] = 168942, - [SMALL_STATE(6289)] = 168976, - [SMALL_STATE(6290)] = 169010, - [SMALL_STATE(6291)] = 169044, - [SMALL_STATE(6292)] = 169078, - [SMALL_STATE(6293)] = 169112, - [SMALL_STATE(6294)] = 169146, - [SMALL_STATE(6295)] = 169180, - [SMALL_STATE(6296)] = 169214, - [SMALL_STATE(6297)] = 169248, - [SMALL_STATE(6298)] = 169282, - [SMALL_STATE(6299)] = 169316, - [SMALL_STATE(6300)] = 169350, - [SMALL_STATE(6301)] = 169384, - [SMALL_STATE(6302)] = 169418, - [SMALL_STATE(6303)] = 169452, - [SMALL_STATE(6304)] = 169486, - [SMALL_STATE(6305)] = 169518, - [SMALL_STATE(6306)] = 169552, - [SMALL_STATE(6307)] = 169584, - [SMALL_STATE(6308)] = 169618, - [SMALL_STATE(6309)] = 169652, - [SMALL_STATE(6310)] = 169686, - [SMALL_STATE(6311)] = 169720, - [SMALL_STATE(6312)] = 169754, - [SMALL_STATE(6313)] = 169788, - [SMALL_STATE(6314)] = 169820, - [SMALL_STATE(6315)] = 169854, - [SMALL_STATE(6316)] = 169888, - [SMALL_STATE(6317)] = 169922, - [SMALL_STATE(6318)] = 169956, - [SMALL_STATE(6319)] = 169990, - [SMALL_STATE(6320)] = 170024, - [SMALL_STATE(6321)] = 170058, - [SMALL_STATE(6322)] = 170092, - [SMALL_STATE(6323)] = 170126, - [SMALL_STATE(6324)] = 170158, - [SMALL_STATE(6325)] = 170192, - [SMALL_STATE(6326)] = 170226, - [SMALL_STATE(6327)] = 170260, - [SMALL_STATE(6328)] = 170294, - [SMALL_STATE(6329)] = 170328, - [SMALL_STATE(6330)] = 170362, - [SMALL_STATE(6331)] = 170396, - [SMALL_STATE(6332)] = 170428, - [SMALL_STATE(6333)] = 170462, - [SMALL_STATE(6334)] = 170496, - [SMALL_STATE(6335)] = 170530, - [SMALL_STATE(6336)] = 170564, - [SMALL_STATE(6337)] = 170596, - [SMALL_STATE(6338)] = 170630, - [SMALL_STATE(6339)] = 170664, - [SMALL_STATE(6340)] = 170696, - [SMALL_STATE(6341)] = 170730, - [SMALL_STATE(6342)] = 170764, - [SMALL_STATE(6343)] = 170798, - [SMALL_STATE(6344)] = 170832, - [SMALL_STATE(6345)] = 170866, - [SMALL_STATE(6346)] = 170900, - [SMALL_STATE(6347)] = 170934, - [SMALL_STATE(6348)] = 170968, - [SMALL_STATE(6349)] = 171000, - [SMALL_STATE(6350)] = 171034, - [SMALL_STATE(6351)] = 171068, - [SMALL_STATE(6352)] = 171102, - [SMALL_STATE(6353)] = 171136, - [SMALL_STATE(6354)] = 171170, - [SMALL_STATE(6355)] = 171204, - [SMALL_STATE(6356)] = 171238, - [SMALL_STATE(6357)] = 171272, - [SMALL_STATE(6358)] = 171306, - [SMALL_STATE(6359)] = 171340, - [SMALL_STATE(6360)] = 171374, - [SMALL_STATE(6361)] = 171408, - [SMALL_STATE(6362)] = 171440, - [SMALL_STATE(6363)] = 171474, - [SMALL_STATE(6364)] = 171508, - [SMALL_STATE(6365)] = 171540, - [SMALL_STATE(6366)] = 171572, - [SMALL_STATE(6367)] = 171606, - [SMALL_STATE(6368)] = 171640, - [SMALL_STATE(6369)] = 171674, - [SMALL_STATE(6370)] = 171708, - [SMALL_STATE(6371)] = 171742, - [SMALL_STATE(6372)] = 171776, - [SMALL_STATE(6373)] = 171810, - [SMALL_STATE(6374)] = 171844, - [SMALL_STATE(6375)] = 171878, - [SMALL_STATE(6376)] = 171910, - [SMALL_STATE(6377)] = 171942, - [SMALL_STATE(6378)] = 171976, - [SMALL_STATE(6379)] = 172010, - [SMALL_STATE(6380)] = 172044, - [SMALL_STATE(6381)] = 172078, - [SMALL_STATE(6382)] = 172112, - [SMALL_STATE(6383)] = 172144, - [SMALL_STATE(6384)] = 172176, - [SMALL_STATE(6385)] = 172210, - [SMALL_STATE(6386)] = 172244, - [SMALL_STATE(6387)] = 172278, - [SMALL_STATE(6388)] = 172312, - [SMALL_STATE(6389)] = 172346, - [SMALL_STATE(6390)] = 172380, - [SMALL_STATE(6391)] = 172414, - [SMALL_STATE(6392)] = 172448, - [SMALL_STATE(6393)] = 172482, - [SMALL_STATE(6394)] = 172516, - [SMALL_STATE(6395)] = 172550, - [SMALL_STATE(6396)] = 172584, - [SMALL_STATE(6397)] = 172618, - [SMALL_STATE(6398)] = 172652, - [SMALL_STATE(6399)] = 172686, - [SMALL_STATE(6400)] = 172720, - [SMALL_STATE(6401)] = 172754, - [SMALL_STATE(6402)] = 172788, - [SMALL_STATE(6403)] = 172822, - [SMALL_STATE(6404)] = 172856, - [SMALL_STATE(6405)] = 172890, - [SMALL_STATE(6406)] = 172922, - [SMALL_STATE(6407)] = 172956, - [SMALL_STATE(6408)] = 172988, - [SMALL_STATE(6409)] = 173020, - [SMALL_STATE(6410)] = 173054, - [SMALL_STATE(6411)] = 173086, - [SMALL_STATE(6412)] = 173120, - [SMALL_STATE(6413)] = 173152, - [SMALL_STATE(6414)] = 173186, - [SMALL_STATE(6415)] = 173220, - [SMALL_STATE(6416)] = 173254, - [SMALL_STATE(6417)] = 173288, - [SMALL_STATE(6418)] = 173322, - [SMALL_STATE(6419)] = 173356, - [SMALL_STATE(6420)] = 173390, - [SMALL_STATE(6421)] = 173422, - [SMALL_STATE(6422)] = 173456, - [SMALL_STATE(6423)] = 173490, - [SMALL_STATE(6424)] = 173524, - [SMALL_STATE(6425)] = 173558, - [SMALL_STATE(6426)] = 173592, - [SMALL_STATE(6427)] = 173624, - [SMALL_STATE(6428)] = 173658, - [SMALL_STATE(6429)] = 173690, - [SMALL_STATE(6430)] = 173722, - [SMALL_STATE(6431)] = 173756, - [SMALL_STATE(6432)] = 173788, - [SMALL_STATE(6433)] = 173822, - [SMALL_STATE(6434)] = 173854, - [SMALL_STATE(6435)] = 173888, - [SMALL_STATE(6436)] = 173922, - [SMALL_STATE(6437)] = 173956, - [SMALL_STATE(6438)] = 173990, - [SMALL_STATE(6439)] = 174024, - [SMALL_STATE(6440)] = 174058, - [SMALL_STATE(6441)] = 174092, - [SMALL_STATE(6442)] = 174126, - [SMALL_STATE(6443)] = 174160, - [SMALL_STATE(6444)] = 174194, - [SMALL_STATE(6445)] = 174228, - [SMALL_STATE(6446)] = 174262, - [SMALL_STATE(6447)] = 174296, - [SMALL_STATE(6448)] = 174330, - [SMALL_STATE(6449)] = 174364, - [SMALL_STATE(6450)] = 174398, - [SMALL_STATE(6451)] = 174432, - [SMALL_STATE(6452)] = 174466, - [SMALL_STATE(6453)] = 174500, - [SMALL_STATE(6454)] = 174534, - [SMALL_STATE(6455)] = 174568, - [SMALL_STATE(6456)] = 174602, - [SMALL_STATE(6457)] = 174636, - [SMALL_STATE(6458)] = 174670, - [SMALL_STATE(6459)] = 174704, - [SMALL_STATE(6460)] = 174738, - [SMALL_STATE(6461)] = 174770, - [SMALL_STATE(6462)] = 174804, - [SMALL_STATE(6463)] = 174838, - [SMALL_STATE(6464)] = 174872, - [SMALL_STATE(6465)] = 174904, - [SMALL_STATE(6466)] = 174938, - [SMALL_STATE(6467)] = 174972, - [SMALL_STATE(6468)] = 175004, - [SMALL_STATE(6469)] = 175038, - [SMALL_STATE(6470)] = 175072, - [SMALL_STATE(6471)] = 175106, - [SMALL_STATE(6472)] = 175140, - [SMALL_STATE(6473)] = 175174, - [SMALL_STATE(6474)] = 175208, - [SMALL_STATE(6475)] = 175242, - [SMALL_STATE(6476)] = 175276, - [SMALL_STATE(6477)] = 175310, - [SMALL_STATE(6478)] = 175344, - [SMALL_STATE(6479)] = 175378, - [SMALL_STATE(6480)] = 175412, - [SMALL_STATE(6481)] = 175446, - [SMALL_STATE(6482)] = 175480, - [SMALL_STATE(6483)] = 175514, - [SMALL_STATE(6484)] = 175548, - [SMALL_STATE(6485)] = 175582, - [SMALL_STATE(6486)] = 175616, - [SMALL_STATE(6487)] = 175650, - [SMALL_STATE(6488)] = 175684, - [SMALL_STATE(6489)] = 175718, - [SMALL_STATE(6490)] = 175752, - [SMALL_STATE(6491)] = 175786, - [SMALL_STATE(6492)] = 175820, - [SMALL_STATE(6493)] = 175854, - [SMALL_STATE(6494)] = 175888, - [SMALL_STATE(6495)] = 175922, - [SMALL_STATE(6496)] = 175956, - [SMALL_STATE(6497)] = 175990, - [SMALL_STATE(6498)] = 176024, - [SMALL_STATE(6499)] = 176058, - [SMALL_STATE(6500)] = 176092, - [SMALL_STATE(6501)] = 176126, - [SMALL_STATE(6502)] = 176160, - [SMALL_STATE(6503)] = 176194, - [SMALL_STATE(6504)] = 176228, - [SMALL_STATE(6505)] = 176262, - [SMALL_STATE(6506)] = 176296, - [SMALL_STATE(6507)] = 176330, - [SMALL_STATE(6508)] = 176364, - [SMALL_STATE(6509)] = 176398, - [SMALL_STATE(6510)] = 176432, - [SMALL_STATE(6511)] = 176464, - [SMALL_STATE(6512)] = 176496, - [SMALL_STATE(6513)] = 176528, - [SMALL_STATE(6514)] = 176562, - [SMALL_STATE(6515)] = 176596, - [SMALL_STATE(6516)] = 176630, - [SMALL_STATE(6517)] = 176664, - [SMALL_STATE(6518)] = 176698, - [SMALL_STATE(6519)] = 176732, - [SMALL_STATE(6520)] = 176766, - [SMALL_STATE(6521)] = 176800, - [SMALL_STATE(6522)] = 176834, - [SMALL_STATE(6523)] = 176868, - [SMALL_STATE(6524)] = 176902, - [SMALL_STATE(6525)] = 176936, - [SMALL_STATE(6526)] = 176970, - [SMALL_STATE(6527)] = 177004, - [SMALL_STATE(6528)] = 177036, - [SMALL_STATE(6529)] = 177068, - [SMALL_STATE(6530)] = 177102, - [SMALL_STATE(6531)] = 177136, - [SMALL_STATE(6532)] = 177170, - [SMALL_STATE(6533)] = 177204, - [SMALL_STATE(6534)] = 177236, - [SMALL_STATE(6535)] = 177270, - [SMALL_STATE(6536)] = 177304, - [SMALL_STATE(6537)] = 177338, - [SMALL_STATE(6538)] = 177372, - [SMALL_STATE(6539)] = 177406, - [SMALL_STATE(6540)] = 177440, - [SMALL_STATE(6541)] = 177474, - [SMALL_STATE(6542)] = 177508, - [SMALL_STATE(6543)] = 177542, - [SMALL_STATE(6544)] = 177576, - [SMALL_STATE(6545)] = 177610, - [SMALL_STATE(6546)] = 177644, - [SMALL_STATE(6547)] = 177678, - [SMALL_STATE(6548)] = 177712, - [SMALL_STATE(6549)] = 177746, - [SMALL_STATE(6550)] = 177780, - [SMALL_STATE(6551)] = 177814, - [SMALL_STATE(6552)] = 177848, - [SMALL_STATE(6553)] = 177882, - [SMALL_STATE(6554)] = 177916, - [SMALL_STATE(6555)] = 177950, - [SMALL_STATE(6556)] = 177984, - [SMALL_STATE(6557)] = 178018, - [SMALL_STATE(6558)] = 178050, - [SMALL_STATE(6559)] = 178084, - [SMALL_STATE(6560)] = 178118, - [SMALL_STATE(6561)] = 178150, - [SMALL_STATE(6562)] = 178184, - [SMALL_STATE(6563)] = 178216, - [SMALL_STATE(6564)] = 178250, - [SMALL_STATE(6565)] = 178284, - [SMALL_STATE(6566)] = 178316, - [SMALL_STATE(6567)] = 178348, - [SMALL_STATE(6568)] = 178380, - [SMALL_STATE(6569)] = 178412, - [SMALL_STATE(6570)] = 178444, - [SMALL_STATE(6571)] = 178478, - [SMALL_STATE(6572)] = 178512, - [SMALL_STATE(6573)] = 178546, - [SMALL_STATE(6574)] = 178580, - [SMALL_STATE(6575)] = 178612, - [SMALL_STATE(6576)] = 178646, - [SMALL_STATE(6577)] = 178678, - [SMALL_STATE(6578)] = 178710, - [SMALL_STATE(6579)] = 178744, - [SMALL_STATE(6580)] = 178776, - [SMALL_STATE(6581)] = 178810, - [SMALL_STATE(6582)] = 178844, - [SMALL_STATE(6583)] = 178878, - [SMALL_STATE(6584)] = 178912, - [SMALL_STATE(6585)] = 178946, - [SMALL_STATE(6586)] = 178980, - [SMALL_STATE(6587)] = 179012, - [SMALL_STATE(6588)] = 179044, - [SMALL_STATE(6589)] = 179078, - [SMALL_STATE(6590)] = 179110, - [SMALL_STATE(6591)] = 179142, - [SMALL_STATE(6592)] = 179176, - [SMALL_STATE(6593)] = 179208, - [SMALL_STATE(6594)] = 179242, - [SMALL_STATE(6595)] = 179276, - [SMALL_STATE(6596)] = 179308, - [SMALL_STATE(6597)] = 179342, - [SMALL_STATE(6598)] = 179376, - [SMALL_STATE(6599)] = 179408, - [SMALL_STATE(6600)] = 179442, - [SMALL_STATE(6601)] = 179474, - [SMALL_STATE(6602)] = 179508, - [SMALL_STATE(6603)] = 179540, - [SMALL_STATE(6604)] = 179574, - [SMALL_STATE(6605)] = 179606, - [SMALL_STATE(6606)] = 179640, - [SMALL_STATE(6607)] = 179674, - [SMALL_STATE(6608)] = 179708, - [SMALL_STATE(6609)] = 179742, - [SMALL_STATE(6610)] = 179774, - [SMALL_STATE(6611)] = 179808, - [SMALL_STATE(6612)] = 179840, - [SMALL_STATE(6613)] = 179874, - [SMALL_STATE(6614)] = 179908, - [SMALL_STATE(6615)] = 179942, - [SMALL_STATE(6616)] = 179974, - [SMALL_STATE(6617)] = 180008, - [SMALL_STATE(6618)] = 180040, - [SMALL_STATE(6619)] = 180072, - [SMALL_STATE(6620)] = 180106, - [SMALL_STATE(6621)] = 180138, - [SMALL_STATE(6622)] = 180172, - [SMALL_STATE(6623)] = 180204, - [SMALL_STATE(6624)] = 180238, - [SMALL_STATE(6625)] = 180272, - [SMALL_STATE(6626)] = 180306, - [SMALL_STATE(6627)] = 180340, - [SMALL_STATE(6628)] = 180372, - [SMALL_STATE(6629)] = 180404, - [SMALL_STATE(6630)] = 180436, - [SMALL_STATE(6631)] = 180468, - [SMALL_STATE(6632)] = 180500, - [SMALL_STATE(6633)] = 180534, - [SMALL_STATE(6634)] = 180566, - [SMALL_STATE(6635)] = 180598, - [SMALL_STATE(6636)] = 180630, - [SMALL_STATE(6637)] = 180662, - [SMALL_STATE(6638)] = 180696, - [SMALL_STATE(6639)] = 180728, - [SMALL_STATE(6640)] = 180760, - [SMALL_STATE(6641)] = 180794, - [SMALL_STATE(6642)] = 180826, - [SMALL_STATE(6643)] = 180858, - [SMALL_STATE(6644)] = 180890, - [SMALL_STATE(6645)] = 180924, - [SMALL_STATE(6646)] = 180958, - [SMALL_STATE(6647)] = 180992, - [SMALL_STATE(6648)] = 181024, - [SMALL_STATE(6649)] = 181058, - [SMALL_STATE(6650)] = 181092, - [SMALL_STATE(6651)] = 181126, - [SMALL_STATE(6652)] = 181158, - [SMALL_STATE(6653)] = 181190, - [SMALL_STATE(6654)] = 181224, - [SMALL_STATE(6655)] = 181258, - [SMALL_STATE(6656)] = 181292, - [SMALL_STATE(6657)] = 181326, - [SMALL_STATE(6658)] = 181358, - [SMALL_STATE(6659)] = 181392, - [SMALL_STATE(6660)] = 181426, - [SMALL_STATE(6661)] = 181460, - [SMALL_STATE(6662)] = 181492, - [SMALL_STATE(6663)] = 181524, - [SMALL_STATE(6664)] = 181558, - [SMALL_STATE(6665)] = 181590, - [SMALL_STATE(6666)] = 181622, - [SMALL_STATE(6667)] = 181656, - [SMALL_STATE(6668)] = 181690, - [SMALL_STATE(6669)] = 181724, - [SMALL_STATE(6670)] = 181758, - [SMALL_STATE(6671)] = 181792, - [SMALL_STATE(6672)] = 181823, - [SMALL_STATE(6673)] = 181854, - [SMALL_STATE(6674)] = 181885, - [SMALL_STATE(6675)] = 181916, - [SMALL_STATE(6676)] = 181947, - [SMALL_STATE(6677)] = 181978, - [SMALL_STATE(6678)] = 182009, - [SMALL_STATE(6679)] = 182040, - [SMALL_STATE(6680)] = 182071, - [SMALL_STATE(6681)] = 182102, - [SMALL_STATE(6682)] = 182133, - [SMALL_STATE(6683)] = 182164, - [SMALL_STATE(6684)] = 182195, - [SMALL_STATE(6685)] = 182226, - [SMALL_STATE(6686)] = 182257, - [SMALL_STATE(6687)] = 182288, - [SMALL_STATE(6688)] = 182319, - [SMALL_STATE(6689)] = 182350, - [SMALL_STATE(6690)] = 182381, - [SMALL_STATE(6691)] = 182412, - [SMALL_STATE(6692)] = 182443, - [SMALL_STATE(6693)] = 182474, - [SMALL_STATE(6694)] = 182505, - [SMALL_STATE(6695)] = 182536, - [SMALL_STATE(6696)] = 182567, - [SMALL_STATE(6697)] = 182598, - [SMALL_STATE(6698)] = 182629, - [SMALL_STATE(6699)] = 182660, - [SMALL_STATE(6700)] = 182691, - [SMALL_STATE(6701)] = 182722, - [SMALL_STATE(6702)] = 182753, - [SMALL_STATE(6703)] = 182784, - [SMALL_STATE(6704)] = 182815, - [SMALL_STATE(6705)] = 182846, - [SMALL_STATE(6706)] = 182877, - [SMALL_STATE(6707)] = 182908, - [SMALL_STATE(6708)] = 182939, - [SMALL_STATE(6709)] = 182970, - [SMALL_STATE(6710)] = 183001, - [SMALL_STATE(6711)] = 183032, - [SMALL_STATE(6712)] = 183063, - [SMALL_STATE(6713)] = 183094, - [SMALL_STATE(6714)] = 183125, - [SMALL_STATE(6715)] = 183156, - [SMALL_STATE(6716)] = 183187, - [SMALL_STATE(6717)] = 183218, - [SMALL_STATE(6718)] = 183249, - [SMALL_STATE(6719)] = 183280, - [SMALL_STATE(6720)] = 183311, - [SMALL_STATE(6721)] = 183342, - [SMALL_STATE(6722)] = 183373, - [SMALL_STATE(6723)] = 183404, - [SMALL_STATE(6724)] = 183435, - [SMALL_STATE(6725)] = 183466, - [SMALL_STATE(6726)] = 183497, - [SMALL_STATE(6727)] = 183528, - [SMALL_STATE(6728)] = 183559, - [SMALL_STATE(6729)] = 183590, - [SMALL_STATE(6730)] = 183621, - [SMALL_STATE(6731)] = 183652, - [SMALL_STATE(6732)] = 183683, - [SMALL_STATE(6733)] = 183714, - [SMALL_STATE(6734)] = 183745, - [SMALL_STATE(6735)] = 183776, - [SMALL_STATE(6736)] = 183807, - [SMALL_STATE(6737)] = 183838, - [SMALL_STATE(6738)] = 183869, - [SMALL_STATE(6739)] = 183900, - [SMALL_STATE(6740)] = 183931, - [SMALL_STATE(6741)] = 183962, - [SMALL_STATE(6742)] = 183993, - [SMALL_STATE(6743)] = 184024, - [SMALL_STATE(6744)] = 184055, - [SMALL_STATE(6745)] = 184086, - [SMALL_STATE(6746)] = 184117, - [SMALL_STATE(6747)] = 184148, - [SMALL_STATE(6748)] = 184179, - [SMALL_STATE(6749)] = 184210, - [SMALL_STATE(6750)] = 184241, - [SMALL_STATE(6751)] = 184272, - [SMALL_STATE(6752)] = 184303, - [SMALL_STATE(6753)] = 184334, - [SMALL_STATE(6754)] = 184365, - [SMALL_STATE(6755)] = 184396, - [SMALL_STATE(6756)] = 184427, - [SMALL_STATE(6757)] = 184458, - [SMALL_STATE(6758)] = 184489, - [SMALL_STATE(6759)] = 184520, - [SMALL_STATE(6760)] = 184551, - [SMALL_STATE(6761)] = 184582, - [SMALL_STATE(6762)] = 184613, - [SMALL_STATE(6763)] = 184644, - [SMALL_STATE(6764)] = 184675, - [SMALL_STATE(6765)] = 184706, - [SMALL_STATE(6766)] = 184737, - [SMALL_STATE(6767)] = 184768, - [SMALL_STATE(6768)] = 184799, - [SMALL_STATE(6769)] = 184830, - [SMALL_STATE(6770)] = 184861, - [SMALL_STATE(6771)] = 184892, - [SMALL_STATE(6772)] = 184923, - [SMALL_STATE(6773)] = 184954, - [SMALL_STATE(6774)] = 184985, - [SMALL_STATE(6775)] = 185016, - [SMALL_STATE(6776)] = 185047, - [SMALL_STATE(6777)] = 185078, - [SMALL_STATE(6778)] = 185109, - [SMALL_STATE(6779)] = 185140, - [SMALL_STATE(6780)] = 185171, - [SMALL_STATE(6781)] = 185202, - [SMALL_STATE(6782)] = 185233, - [SMALL_STATE(6783)] = 185264, - [SMALL_STATE(6784)] = 185295, - [SMALL_STATE(6785)] = 185326, - [SMALL_STATE(6786)] = 185357, - [SMALL_STATE(6787)] = 185388, - [SMALL_STATE(6788)] = 185419, - [SMALL_STATE(6789)] = 185450, - [SMALL_STATE(6790)] = 185481, - [SMALL_STATE(6791)] = 185512, - [SMALL_STATE(6792)] = 185543, - [SMALL_STATE(6793)] = 185574, - [SMALL_STATE(6794)] = 185605, - [SMALL_STATE(6795)] = 185636, - [SMALL_STATE(6796)] = 185667, - [SMALL_STATE(6797)] = 185698, - [SMALL_STATE(6798)] = 185729, - [SMALL_STATE(6799)] = 185760, - [SMALL_STATE(6800)] = 185791, - [SMALL_STATE(6801)] = 185822, - [SMALL_STATE(6802)] = 185853, - [SMALL_STATE(6803)] = 185884, - [SMALL_STATE(6804)] = 185915, - [SMALL_STATE(6805)] = 185946, - [SMALL_STATE(6806)] = 185977, - [SMALL_STATE(6807)] = 186008, - [SMALL_STATE(6808)] = 186039, - [SMALL_STATE(6809)] = 186070, - [SMALL_STATE(6810)] = 186101, - [SMALL_STATE(6811)] = 186132, - [SMALL_STATE(6812)] = 186163, - [SMALL_STATE(6813)] = 186194, - [SMALL_STATE(6814)] = 186225, - [SMALL_STATE(6815)] = 186256, - [SMALL_STATE(6816)] = 186287, - [SMALL_STATE(6817)] = 186318, - [SMALL_STATE(6818)] = 186349, - [SMALL_STATE(6819)] = 186380, - [SMALL_STATE(6820)] = 186411, - [SMALL_STATE(6821)] = 186442, - [SMALL_STATE(6822)] = 186473, - [SMALL_STATE(6823)] = 186504, - [SMALL_STATE(6824)] = 186535, - [SMALL_STATE(6825)] = 186566, - [SMALL_STATE(6826)] = 186597, - [SMALL_STATE(6827)] = 186628, - [SMALL_STATE(6828)] = 186659, - [SMALL_STATE(6829)] = 186690, - [SMALL_STATE(6830)] = 186721, - [SMALL_STATE(6831)] = 186752, - [SMALL_STATE(6832)] = 186783, - [SMALL_STATE(6833)] = 186814, - [SMALL_STATE(6834)] = 186845, - [SMALL_STATE(6835)] = 186876, - [SMALL_STATE(6836)] = 186907, - [SMALL_STATE(6837)] = 186938, - [SMALL_STATE(6838)] = 186969, - [SMALL_STATE(6839)] = 187000, - [SMALL_STATE(6840)] = 187031, - [SMALL_STATE(6841)] = 187062, - [SMALL_STATE(6842)] = 187093, - [SMALL_STATE(6843)] = 187124, - [SMALL_STATE(6844)] = 187155, - [SMALL_STATE(6845)] = 187186, - [SMALL_STATE(6846)] = 187217, - [SMALL_STATE(6847)] = 187248, - [SMALL_STATE(6848)] = 187279, - [SMALL_STATE(6849)] = 187310, - [SMALL_STATE(6850)] = 187341, - [SMALL_STATE(6851)] = 187372, - [SMALL_STATE(6852)] = 187403, - [SMALL_STATE(6853)] = 187434, - [SMALL_STATE(6854)] = 187465, - [SMALL_STATE(6855)] = 187496, - [SMALL_STATE(6856)] = 187527, - [SMALL_STATE(6857)] = 187558, - [SMALL_STATE(6858)] = 187589, - [SMALL_STATE(6859)] = 187620, - [SMALL_STATE(6860)] = 187651, - [SMALL_STATE(6861)] = 187682, - [SMALL_STATE(6862)] = 187713, - [SMALL_STATE(6863)] = 187744, - [SMALL_STATE(6864)] = 187775, - [SMALL_STATE(6865)] = 187806, - [SMALL_STATE(6866)] = 187837, - [SMALL_STATE(6867)] = 187868, - [SMALL_STATE(6868)] = 187899, - [SMALL_STATE(6869)] = 187930, - [SMALL_STATE(6870)] = 187961, - [SMALL_STATE(6871)] = 187992, - [SMALL_STATE(6872)] = 188023, - [SMALL_STATE(6873)] = 188054, - [SMALL_STATE(6874)] = 188085, - [SMALL_STATE(6875)] = 188116, - [SMALL_STATE(6876)] = 188147, - [SMALL_STATE(6877)] = 188178, - [SMALL_STATE(6878)] = 188209, - [SMALL_STATE(6879)] = 188240, - [SMALL_STATE(6880)] = 188271, - [SMALL_STATE(6881)] = 188302, - [SMALL_STATE(6882)] = 188333, - [SMALL_STATE(6883)] = 188364, - [SMALL_STATE(6884)] = 188395, - [SMALL_STATE(6885)] = 188426, - [SMALL_STATE(6886)] = 188457, - [SMALL_STATE(6887)] = 188488, - [SMALL_STATE(6888)] = 188519, - [SMALL_STATE(6889)] = 188550, - [SMALL_STATE(6890)] = 188581, - [SMALL_STATE(6891)] = 188612, - [SMALL_STATE(6892)] = 188643, - [SMALL_STATE(6893)] = 188674, - [SMALL_STATE(6894)] = 188705, - [SMALL_STATE(6895)] = 188736, - [SMALL_STATE(6896)] = 188767, - [SMALL_STATE(6897)] = 188798, - [SMALL_STATE(6898)] = 188829, - [SMALL_STATE(6899)] = 188860, - [SMALL_STATE(6900)] = 188891, - [SMALL_STATE(6901)] = 188922, - [SMALL_STATE(6902)] = 188953, - [SMALL_STATE(6903)] = 188984, - [SMALL_STATE(6904)] = 189015, - [SMALL_STATE(6905)] = 189046, - [SMALL_STATE(6906)] = 189077, - [SMALL_STATE(6907)] = 189108, - [SMALL_STATE(6908)] = 189139, - [SMALL_STATE(6909)] = 189170, - [SMALL_STATE(6910)] = 189201, - [SMALL_STATE(6911)] = 189232, - [SMALL_STATE(6912)] = 189263, - [SMALL_STATE(6913)] = 189294, - [SMALL_STATE(6914)] = 189325, - [SMALL_STATE(6915)] = 189356, - [SMALL_STATE(6916)] = 189387, - [SMALL_STATE(6917)] = 189418, - [SMALL_STATE(6918)] = 189449, - [SMALL_STATE(6919)] = 189480, - [SMALL_STATE(6920)] = 189511, - [SMALL_STATE(6921)] = 189542, - [SMALL_STATE(6922)] = 189573, - [SMALL_STATE(6923)] = 189604, - [SMALL_STATE(6924)] = 189635, - [SMALL_STATE(6925)] = 189666, - [SMALL_STATE(6926)] = 189697, - [SMALL_STATE(6927)] = 189728, - [SMALL_STATE(6928)] = 189759, - [SMALL_STATE(6929)] = 189790, - [SMALL_STATE(6930)] = 189821, - [SMALL_STATE(6931)] = 189852, - [SMALL_STATE(6932)] = 189883, - [SMALL_STATE(6933)] = 189914, - [SMALL_STATE(6934)] = 189945, - [SMALL_STATE(6935)] = 189976, - [SMALL_STATE(6936)] = 190007, - [SMALL_STATE(6937)] = 190038, - [SMALL_STATE(6938)] = 190069, - [SMALL_STATE(6939)] = 190100, - [SMALL_STATE(6940)] = 190131, - [SMALL_STATE(6941)] = 190162, - [SMALL_STATE(6942)] = 190193, - [SMALL_STATE(6943)] = 190224, - [SMALL_STATE(6944)] = 190255, - [SMALL_STATE(6945)] = 190286, - [SMALL_STATE(6946)] = 190317, - [SMALL_STATE(6947)] = 190348, - [SMALL_STATE(6948)] = 190379, - [SMALL_STATE(6949)] = 190410, - [SMALL_STATE(6950)] = 190441, - [SMALL_STATE(6951)] = 190472, - [SMALL_STATE(6952)] = 190503, - [SMALL_STATE(6953)] = 190534, - [SMALL_STATE(6954)] = 190565, - [SMALL_STATE(6955)] = 190596, - [SMALL_STATE(6956)] = 190627, - [SMALL_STATE(6957)] = 190658, - [SMALL_STATE(6958)] = 190689, - [SMALL_STATE(6959)] = 190720, - [SMALL_STATE(6960)] = 190751, - [SMALL_STATE(6961)] = 190782, - [SMALL_STATE(6962)] = 190813, - [SMALL_STATE(6963)] = 190844, - [SMALL_STATE(6964)] = 190875, - [SMALL_STATE(6965)] = 190906, - [SMALL_STATE(6966)] = 190937, - [SMALL_STATE(6967)] = 190968, - [SMALL_STATE(6968)] = 190999, - [SMALL_STATE(6969)] = 191030, - [SMALL_STATE(6970)] = 191061, - [SMALL_STATE(6971)] = 191092, - [SMALL_STATE(6972)] = 191123, - [SMALL_STATE(6973)] = 191154, - [SMALL_STATE(6974)] = 191185, - [SMALL_STATE(6975)] = 191216, - [SMALL_STATE(6976)] = 191247, - [SMALL_STATE(6977)] = 191278, - [SMALL_STATE(6978)] = 191309, - [SMALL_STATE(6979)] = 191340, - [SMALL_STATE(6980)] = 191371, - [SMALL_STATE(6981)] = 191402, - [SMALL_STATE(6982)] = 191433, - [SMALL_STATE(6983)] = 191464, - [SMALL_STATE(6984)] = 191495, - [SMALL_STATE(6985)] = 191526, - [SMALL_STATE(6986)] = 191557, - [SMALL_STATE(6987)] = 191588, - [SMALL_STATE(6988)] = 191619, - [SMALL_STATE(6989)] = 191650, - [SMALL_STATE(6990)] = 191681, - [SMALL_STATE(6991)] = 191712, - [SMALL_STATE(6992)] = 191743, - [SMALL_STATE(6993)] = 191774, - [SMALL_STATE(6994)] = 191805, - [SMALL_STATE(6995)] = 191836, - [SMALL_STATE(6996)] = 191867, - [SMALL_STATE(6997)] = 191898, - [SMALL_STATE(6998)] = 191929, - [SMALL_STATE(6999)] = 191960, - [SMALL_STATE(7000)] = 191991, - [SMALL_STATE(7001)] = 192022, - [SMALL_STATE(7002)] = 192053, - [SMALL_STATE(7003)] = 192084, - [SMALL_STATE(7004)] = 192115, - [SMALL_STATE(7005)] = 192146, - [SMALL_STATE(7006)] = 192177, - [SMALL_STATE(7007)] = 192208, - [SMALL_STATE(7008)] = 192239, - [SMALL_STATE(7009)] = 192270, - [SMALL_STATE(7010)] = 192301, - [SMALL_STATE(7011)] = 192332, - [SMALL_STATE(7012)] = 192363, - [SMALL_STATE(7013)] = 192394, - [SMALL_STATE(7014)] = 192425, - [SMALL_STATE(7015)] = 192456, - [SMALL_STATE(7016)] = 192487, - [SMALL_STATE(7017)] = 192518, - [SMALL_STATE(7018)] = 192549, - [SMALL_STATE(7019)] = 192580, - [SMALL_STATE(7020)] = 192611, - [SMALL_STATE(7021)] = 192642, - [SMALL_STATE(7022)] = 192673, - [SMALL_STATE(7023)] = 192704, - [SMALL_STATE(7024)] = 192735, - [SMALL_STATE(7025)] = 192766, - [SMALL_STATE(7026)] = 192797, - [SMALL_STATE(7027)] = 192828, - [SMALL_STATE(7028)] = 192859, - [SMALL_STATE(7029)] = 192890, - [SMALL_STATE(7030)] = 192921, - [SMALL_STATE(7031)] = 192952, - [SMALL_STATE(7032)] = 192983, - [SMALL_STATE(7033)] = 193014, - [SMALL_STATE(7034)] = 193045, - [SMALL_STATE(7035)] = 193076, - [SMALL_STATE(7036)] = 193107, - [SMALL_STATE(7037)] = 193138, - [SMALL_STATE(7038)] = 193169, - [SMALL_STATE(7039)] = 193200, - [SMALL_STATE(7040)] = 193231, - [SMALL_STATE(7041)] = 193262, - [SMALL_STATE(7042)] = 193293, - [SMALL_STATE(7043)] = 193324, - [SMALL_STATE(7044)] = 193355, - [SMALL_STATE(7045)] = 193386, - [SMALL_STATE(7046)] = 193417, - [SMALL_STATE(7047)] = 193448, - [SMALL_STATE(7048)] = 193479, - [SMALL_STATE(7049)] = 193510, - [SMALL_STATE(7050)] = 193541, - [SMALL_STATE(7051)] = 193572, - [SMALL_STATE(7052)] = 193603, - [SMALL_STATE(7053)] = 193634, - [SMALL_STATE(7054)] = 193665, - [SMALL_STATE(7055)] = 193696, - [SMALL_STATE(7056)] = 193727, - [SMALL_STATE(7057)] = 193758, - [SMALL_STATE(7058)] = 193789, - [SMALL_STATE(7059)] = 193820, - [SMALL_STATE(7060)] = 193851, - [SMALL_STATE(7061)] = 193882, - [SMALL_STATE(7062)] = 193913, - [SMALL_STATE(7063)] = 193944, - [SMALL_STATE(7064)] = 193975, - [SMALL_STATE(7065)] = 194006, - [SMALL_STATE(7066)] = 194037, - [SMALL_STATE(7067)] = 194068, - [SMALL_STATE(7068)] = 194099, - [SMALL_STATE(7069)] = 194130, - [SMALL_STATE(7070)] = 194161, - [SMALL_STATE(7071)] = 194192, - [SMALL_STATE(7072)] = 194223, - [SMALL_STATE(7073)] = 194254, - [SMALL_STATE(7074)] = 194285, - [SMALL_STATE(7075)] = 194316, - [SMALL_STATE(7076)] = 194347, - [SMALL_STATE(7077)] = 194378, - [SMALL_STATE(7078)] = 194409, - [SMALL_STATE(7079)] = 194440, - [SMALL_STATE(7080)] = 194471, - [SMALL_STATE(7081)] = 194502, - [SMALL_STATE(7082)] = 194533, - [SMALL_STATE(7083)] = 194564, - [SMALL_STATE(7084)] = 194595, - [SMALL_STATE(7085)] = 194626, - [SMALL_STATE(7086)] = 194657, - [SMALL_STATE(7087)] = 194688, - [SMALL_STATE(7088)] = 194719, - [SMALL_STATE(7089)] = 194750, - [SMALL_STATE(7090)] = 194781, - [SMALL_STATE(7091)] = 194812, - [SMALL_STATE(7092)] = 194843, - [SMALL_STATE(7093)] = 194874, - [SMALL_STATE(7094)] = 194905, - [SMALL_STATE(7095)] = 194936, - [SMALL_STATE(7096)] = 194967, - [SMALL_STATE(7097)] = 194998, - [SMALL_STATE(7098)] = 195029, - [SMALL_STATE(7099)] = 195060, - [SMALL_STATE(7100)] = 195091, - [SMALL_STATE(7101)] = 195122, - [SMALL_STATE(7102)] = 195153, - [SMALL_STATE(7103)] = 195184, - [SMALL_STATE(7104)] = 195215, - [SMALL_STATE(7105)] = 195246, - [SMALL_STATE(7106)] = 195277, - [SMALL_STATE(7107)] = 195308, - [SMALL_STATE(7108)] = 195339, - [SMALL_STATE(7109)] = 195370, - [SMALL_STATE(7110)] = 195401, - [SMALL_STATE(7111)] = 195432, - [SMALL_STATE(7112)] = 195463, - [SMALL_STATE(7113)] = 195494, - [SMALL_STATE(7114)] = 195525, - [SMALL_STATE(7115)] = 195556, - [SMALL_STATE(7116)] = 195587, - [SMALL_STATE(7117)] = 195618, - [SMALL_STATE(7118)] = 195649, - [SMALL_STATE(7119)] = 195680, - [SMALL_STATE(7120)] = 195711, - [SMALL_STATE(7121)] = 195742, - [SMALL_STATE(7122)] = 195773, - [SMALL_STATE(7123)] = 195804, - [SMALL_STATE(7124)] = 195835, - [SMALL_STATE(7125)] = 195866, - [SMALL_STATE(7126)] = 195897, - [SMALL_STATE(7127)] = 195928, - [SMALL_STATE(7128)] = 195959, - [SMALL_STATE(7129)] = 195990, - [SMALL_STATE(7130)] = 196021, - [SMALL_STATE(7131)] = 196052, - [SMALL_STATE(7132)] = 196083, - [SMALL_STATE(7133)] = 196114, - [SMALL_STATE(7134)] = 196145, - [SMALL_STATE(7135)] = 196176, - [SMALL_STATE(7136)] = 196207, - [SMALL_STATE(7137)] = 196238, - [SMALL_STATE(7138)] = 196269, - [SMALL_STATE(7139)] = 196300, - [SMALL_STATE(7140)] = 196331, - [SMALL_STATE(7141)] = 196362, - [SMALL_STATE(7142)] = 196393, - [SMALL_STATE(7143)] = 196424, - [SMALL_STATE(7144)] = 196455, - [SMALL_STATE(7145)] = 196486, - [SMALL_STATE(7146)] = 196517, - [SMALL_STATE(7147)] = 196548, - [SMALL_STATE(7148)] = 196579, - [SMALL_STATE(7149)] = 196610, - [SMALL_STATE(7150)] = 196641, - [SMALL_STATE(7151)] = 196672, - [SMALL_STATE(7152)] = 196703, - [SMALL_STATE(7153)] = 196734, - [SMALL_STATE(7154)] = 196765, - [SMALL_STATE(7155)] = 196796, - [SMALL_STATE(7156)] = 196827, - [SMALL_STATE(7157)] = 196858, - [SMALL_STATE(7158)] = 196889, - [SMALL_STATE(7159)] = 196920, - [SMALL_STATE(7160)] = 196951, - [SMALL_STATE(7161)] = 196982, - [SMALL_STATE(7162)] = 197013, - [SMALL_STATE(7163)] = 197044, - [SMALL_STATE(7164)] = 197075, - [SMALL_STATE(7165)] = 197106, - [SMALL_STATE(7166)] = 197137, - [SMALL_STATE(7167)] = 197168, - [SMALL_STATE(7168)] = 197199, - [SMALL_STATE(7169)] = 197230, - [SMALL_STATE(7170)] = 197261, - [SMALL_STATE(7171)] = 197292, - [SMALL_STATE(7172)] = 197323, - [SMALL_STATE(7173)] = 197354, - [SMALL_STATE(7174)] = 197385, - [SMALL_STATE(7175)] = 197416, - [SMALL_STATE(7176)] = 197447, - [SMALL_STATE(7177)] = 197478, - [SMALL_STATE(7178)] = 197509, - [SMALL_STATE(7179)] = 197540, - [SMALL_STATE(7180)] = 197571, - [SMALL_STATE(7181)] = 197602, - [SMALL_STATE(7182)] = 197633, - [SMALL_STATE(7183)] = 197664, - [SMALL_STATE(7184)] = 197695, - [SMALL_STATE(7185)] = 197726, - [SMALL_STATE(7186)] = 197757, - [SMALL_STATE(7187)] = 197788, - [SMALL_STATE(7188)] = 197819, - [SMALL_STATE(7189)] = 197850, - [SMALL_STATE(7190)] = 197881, - [SMALL_STATE(7191)] = 197912, - [SMALL_STATE(7192)] = 197943, - [SMALL_STATE(7193)] = 197974, - [SMALL_STATE(7194)] = 198005, - [SMALL_STATE(7195)] = 198036, - [SMALL_STATE(7196)] = 198067, - [SMALL_STATE(7197)] = 198098, - [SMALL_STATE(7198)] = 198129, - [SMALL_STATE(7199)] = 198160, - [SMALL_STATE(7200)] = 198191, - [SMALL_STATE(7201)] = 198222, - [SMALL_STATE(7202)] = 198253, - [SMALL_STATE(7203)] = 198284, - [SMALL_STATE(7204)] = 198315, - [SMALL_STATE(7205)] = 198346, - [SMALL_STATE(7206)] = 198377, - [SMALL_STATE(7207)] = 198408, - [SMALL_STATE(7208)] = 198439, - [SMALL_STATE(7209)] = 198470, - [SMALL_STATE(7210)] = 198501, - [SMALL_STATE(7211)] = 198532, - [SMALL_STATE(7212)] = 198563, - [SMALL_STATE(7213)] = 198594, - [SMALL_STATE(7214)] = 198625, - [SMALL_STATE(7215)] = 198656, - [SMALL_STATE(7216)] = 198687, - [SMALL_STATE(7217)] = 198718, - [SMALL_STATE(7218)] = 198749, - [SMALL_STATE(7219)] = 198780, - [SMALL_STATE(7220)] = 198811, - [SMALL_STATE(7221)] = 198842, - [SMALL_STATE(7222)] = 198873, - [SMALL_STATE(7223)] = 198904, - [SMALL_STATE(7224)] = 198935, - [SMALL_STATE(7225)] = 198966, - [SMALL_STATE(7226)] = 198997, - [SMALL_STATE(7227)] = 199028, - [SMALL_STATE(7228)] = 199059, - [SMALL_STATE(7229)] = 199090, - [SMALL_STATE(7230)] = 199121, - [SMALL_STATE(7231)] = 199152, - [SMALL_STATE(7232)] = 199183, - [SMALL_STATE(7233)] = 199214, - [SMALL_STATE(7234)] = 199245, - [SMALL_STATE(7235)] = 199276, - [SMALL_STATE(7236)] = 199307, - [SMALL_STATE(7237)] = 199338, - [SMALL_STATE(7238)] = 199369, - [SMALL_STATE(7239)] = 199400, - [SMALL_STATE(7240)] = 199431, - [SMALL_STATE(7241)] = 199462, - [SMALL_STATE(7242)] = 199493, - [SMALL_STATE(7243)] = 199524, - [SMALL_STATE(7244)] = 199555, - [SMALL_STATE(7245)] = 199586, - [SMALL_STATE(7246)] = 199617, - [SMALL_STATE(7247)] = 199648, - [SMALL_STATE(7248)] = 199679, - [SMALL_STATE(7249)] = 199710, - [SMALL_STATE(7250)] = 199741, - [SMALL_STATE(7251)] = 199772, - [SMALL_STATE(7252)] = 199803, - [SMALL_STATE(7253)] = 199834, - [SMALL_STATE(7254)] = 199865, - [SMALL_STATE(7255)] = 199896, - [SMALL_STATE(7256)] = 199927, - [SMALL_STATE(7257)] = 199958, - [SMALL_STATE(7258)] = 199989, - [SMALL_STATE(7259)] = 200020, - [SMALL_STATE(7260)] = 200051, - [SMALL_STATE(7261)] = 200082, - [SMALL_STATE(7262)] = 200113, - [SMALL_STATE(7263)] = 200144, - [SMALL_STATE(7264)] = 200175, - [SMALL_STATE(7265)] = 200206, - [SMALL_STATE(7266)] = 200237, - [SMALL_STATE(7267)] = 200268, - [SMALL_STATE(7268)] = 200299, - [SMALL_STATE(7269)] = 200330, - [SMALL_STATE(7270)] = 200361, - [SMALL_STATE(7271)] = 200392, - [SMALL_STATE(7272)] = 200423, - [SMALL_STATE(7273)] = 200454, - [SMALL_STATE(7274)] = 200485, - [SMALL_STATE(7275)] = 200516, - [SMALL_STATE(7276)] = 200547, - [SMALL_STATE(7277)] = 200578, - [SMALL_STATE(7278)] = 200609, - [SMALL_STATE(7279)] = 200640, - [SMALL_STATE(7280)] = 200671, - [SMALL_STATE(7281)] = 200702, - [SMALL_STATE(7282)] = 200733, - [SMALL_STATE(7283)] = 200764, - [SMALL_STATE(7284)] = 200795, - [SMALL_STATE(7285)] = 200826, - [SMALL_STATE(7286)] = 200857, - [SMALL_STATE(7287)] = 200888, - [SMALL_STATE(7288)] = 200919, - [SMALL_STATE(7289)] = 200950, - [SMALL_STATE(7290)] = 200981, - [SMALL_STATE(7291)] = 201012, - [SMALL_STATE(7292)] = 201043, - [SMALL_STATE(7293)] = 201074, - [SMALL_STATE(7294)] = 201105, - [SMALL_STATE(7295)] = 201136, - [SMALL_STATE(7296)] = 201167, - [SMALL_STATE(7297)] = 201198, - [SMALL_STATE(7298)] = 201229, - [SMALL_STATE(7299)] = 201260, - [SMALL_STATE(7300)] = 201291, - [SMALL_STATE(7301)] = 201322, - [SMALL_STATE(7302)] = 201353, - [SMALL_STATE(7303)] = 201384, - [SMALL_STATE(7304)] = 201415, - [SMALL_STATE(7305)] = 201446, - [SMALL_STATE(7306)] = 201477, - [SMALL_STATE(7307)] = 201508, - [SMALL_STATE(7308)] = 201539, - [SMALL_STATE(7309)] = 201570, - [SMALL_STATE(7310)] = 201601, - [SMALL_STATE(7311)] = 201632, - [SMALL_STATE(7312)] = 201663, - [SMALL_STATE(7313)] = 201694, - [SMALL_STATE(7314)] = 201725, - [SMALL_STATE(7315)] = 201756, - [SMALL_STATE(7316)] = 201787, - [SMALL_STATE(7317)] = 201818, - [SMALL_STATE(7318)] = 201849, - [SMALL_STATE(7319)] = 201880, - [SMALL_STATE(7320)] = 201911, - [SMALL_STATE(7321)] = 201942, - [SMALL_STATE(7322)] = 201973, - [SMALL_STATE(7323)] = 202004, - [SMALL_STATE(7324)] = 202035, - [SMALL_STATE(7325)] = 202066, - [SMALL_STATE(7326)] = 202097, - [SMALL_STATE(7327)] = 202128, - [SMALL_STATE(7328)] = 202159, - [SMALL_STATE(7329)] = 202190, - [SMALL_STATE(7330)] = 202221, - [SMALL_STATE(7331)] = 202252, - [SMALL_STATE(7332)] = 202283, - [SMALL_STATE(7333)] = 202314, - [SMALL_STATE(7334)] = 202345, - [SMALL_STATE(7335)] = 202376, - [SMALL_STATE(7336)] = 202407, - [SMALL_STATE(7337)] = 202438, - [SMALL_STATE(7338)] = 202469, - [SMALL_STATE(7339)] = 202500, - [SMALL_STATE(7340)] = 202531, - [SMALL_STATE(7341)] = 202562, - [SMALL_STATE(7342)] = 202593, - [SMALL_STATE(7343)] = 202624, - [SMALL_STATE(7344)] = 202655, - [SMALL_STATE(7345)] = 202686, - [SMALL_STATE(7346)] = 202717, - [SMALL_STATE(7347)] = 202748, - [SMALL_STATE(7348)] = 202779, - [SMALL_STATE(7349)] = 202810, - [SMALL_STATE(7350)] = 202841, - [SMALL_STATE(7351)] = 202872, - [SMALL_STATE(7352)] = 202903, - [SMALL_STATE(7353)] = 202934, - [SMALL_STATE(7354)] = 202965, - [SMALL_STATE(7355)] = 202996, - [SMALL_STATE(7356)] = 203027, - [SMALL_STATE(7357)] = 203058, - [SMALL_STATE(7358)] = 203089, - [SMALL_STATE(7359)] = 203120, - [SMALL_STATE(7360)] = 203151, - [SMALL_STATE(7361)] = 203182, - [SMALL_STATE(7362)] = 203213, - [SMALL_STATE(7363)] = 203244, - [SMALL_STATE(7364)] = 203275, - [SMALL_STATE(7365)] = 203306, - [SMALL_STATE(7366)] = 203337, - [SMALL_STATE(7367)] = 203368, - [SMALL_STATE(7368)] = 203399, - [SMALL_STATE(7369)] = 203430, - [SMALL_STATE(7370)] = 203461, - [SMALL_STATE(7371)] = 203492, - [SMALL_STATE(7372)] = 203523, - [SMALL_STATE(7373)] = 203554, - [SMALL_STATE(7374)] = 203585, - [SMALL_STATE(7375)] = 203616, - [SMALL_STATE(7376)] = 203647, - [SMALL_STATE(7377)] = 203678, - [SMALL_STATE(7378)] = 203709, - [SMALL_STATE(7379)] = 203740, - [SMALL_STATE(7380)] = 203771, - [SMALL_STATE(7381)] = 203802, - [SMALL_STATE(7382)] = 203833, - [SMALL_STATE(7383)] = 203864, - [SMALL_STATE(7384)] = 203895, - [SMALL_STATE(7385)] = 203926, - [SMALL_STATE(7386)] = 203957, - [SMALL_STATE(7387)] = 203988, - [SMALL_STATE(7388)] = 204019, - [SMALL_STATE(7389)] = 204050, - [SMALL_STATE(7390)] = 204081, - [SMALL_STATE(7391)] = 204112, - [SMALL_STATE(7392)] = 204143, - [SMALL_STATE(7393)] = 204174, - [SMALL_STATE(7394)] = 204205, - [SMALL_STATE(7395)] = 204236, - [SMALL_STATE(7396)] = 204267, - [SMALL_STATE(7397)] = 204298, - [SMALL_STATE(7398)] = 204329, - [SMALL_STATE(7399)] = 204360, - [SMALL_STATE(7400)] = 204391, - [SMALL_STATE(7401)] = 204422, - [SMALL_STATE(7402)] = 204453, - [SMALL_STATE(7403)] = 204484, - [SMALL_STATE(7404)] = 204515, - [SMALL_STATE(7405)] = 204546, - [SMALL_STATE(7406)] = 204577, - [SMALL_STATE(7407)] = 204608, - [SMALL_STATE(7408)] = 204639, - [SMALL_STATE(7409)] = 204670, - [SMALL_STATE(7410)] = 204701, - [SMALL_STATE(7411)] = 204732, - [SMALL_STATE(7412)] = 204763, - [SMALL_STATE(7413)] = 204794, - [SMALL_STATE(7414)] = 204825, - [SMALL_STATE(7415)] = 204856, - [SMALL_STATE(7416)] = 204887, - [SMALL_STATE(7417)] = 204918, - [SMALL_STATE(7418)] = 204949, - [SMALL_STATE(7419)] = 204980, - [SMALL_STATE(7420)] = 205011, - [SMALL_STATE(7421)] = 205042, - [SMALL_STATE(7422)] = 205073, - [SMALL_STATE(7423)] = 205104, - [SMALL_STATE(7424)] = 205135, - [SMALL_STATE(7425)] = 205166, - [SMALL_STATE(7426)] = 205197, - [SMALL_STATE(7427)] = 205228, - [SMALL_STATE(7428)] = 205259, - [SMALL_STATE(7429)] = 205290, - [SMALL_STATE(7430)] = 205321, - [SMALL_STATE(7431)] = 205352, - [SMALL_STATE(7432)] = 205383, - [SMALL_STATE(7433)] = 205414, - [SMALL_STATE(7434)] = 205445, - [SMALL_STATE(7435)] = 205476, - [SMALL_STATE(7436)] = 205507, - [SMALL_STATE(7437)] = 205538, - [SMALL_STATE(7438)] = 205569, - [SMALL_STATE(7439)] = 205600, - [SMALL_STATE(7440)] = 205631, - [SMALL_STATE(7441)] = 205662, - [SMALL_STATE(7442)] = 205693, - [SMALL_STATE(7443)] = 205724, - [SMALL_STATE(7444)] = 205755, - [SMALL_STATE(7445)] = 205786, - [SMALL_STATE(7446)] = 205817, - [SMALL_STATE(7447)] = 205848, - [SMALL_STATE(7448)] = 205879, - [SMALL_STATE(7449)] = 205910, - [SMALL_STATE(7450)] = 205941, - [SMALL_STATE(7451)] = 205972, - [SMALL_STATE(7452)] = 206003, - [SMALL_STATE(7453)] = 206034, - [SMALL_STATE(7454)] = 206065, - [SMALL_STATE(7455)] = 206096, - [SMALL_STATE(7456)] = 206127, - [SMALL_STATE(7457)] = 206158, - [SMALL_STATE(7458)] = 206189, - [SMALL_STATE(7459)] = 206220, - [SMALL_STATE(7460)] = 206251, - [SMALL_STATE(7461)] = 206282, - [SMALL_STATE(7462)] = 206313, - [SMALL_STATE(7463)] = 206344, - [SMALL_STATE(7464)] = 206375, - [SMALL_STATE(7465)] = 206406, - [SMALL_STATE(7466)] = 206437, - [SMALL_STATE(7467)] = 206468, - [SMALL_STATE(7468)] = 206499, - [SMALL_STATE(7469)] = 206530, - [SMALL_STATE(7470)] = 206561, - [SMALL_STATE(7471)] = 206592, - [SMALL_STATE(7472)] = 206623, - [SMALL_STATE(7473)] = 206654, - [SMALL_STATE(7474)] = 206685, - [SMALL_STATE(7475)] = 206716, - [SMALL_STATE(7476)] = 206747, - [SMALL_STATE(7477)] = 206778, - [SMALL_STATE(7478)] = 206809, - [SMALL_STATE(7479)] = 206840, - [SMALL_STATE(7480)] = 206871, - [SMALL_STATE(7481)] = 206902, - [SMALL_STATE(7482)] = 206933, - [SMALL_STATE(7483)] = 206964, - [SMALL_STATE(7484)] = 206995, - [SMALL_STATE(7485)] = 207026, - [SMALL_STATE(7486)] = 207057, - [SMALL_STATE(7487)] = 207088, - [SMALL_STATE(7488)] = 207119, - [SMALL_STATE(7489)] = 207150, - [SMALL_STATE(7490)] = 207181, - [SMALL_STATE(7491)] = 207212, - [SMALL_STATE(7492)] = 207243, - [SMALL_STATE(7493)] = 207274, - [SMALL_STATE(7494)] = 207305, - [SMALL_STATE(7495)] = 207336, - [SMALL_STATE(7496)] = 207367, - [SMALL_STATE(7497)] = 207398, - [SMALL_STATE(7498)] = 207429, - [SMALL_STATE(7499)] = 207460, - [SMALL_STATE(7500)] = 207491, - [SMALL_STATE(7501)] = 207522, - [SMALL_STATE(7502)] = 207553, - [SMALL_STATE(7503)] = 207584, - [SMALL_STATE(7504)] = 207615, - [SMALL_STATE(7505)] = 207646, - [SMALL_STATE(7506)] = 207677, - [SMALL_STATE(7507)] = 207708, - [SMALL_STATE(7508)] = 207739, - [SMALL_STATE(7509)] = 207770, - [SMALL_STATE(7510)] = 207801, - [SMALL_STATE(7511)] = 207832, - [SMALL_STATE(7512)] = 207863, - [SMALL_STATE(7513)] = 207894, - [SMALL_STATE(7514)] = 207925, - [SMALL_STATE(7515)] = 207956, - [SMALL_STATE(7516)] = 207987, - [SMALL_STATE(7517)] = 208018, - [SMALL_STATE(7518)] = 208049, - [SMALL_STATE(7519)] = 208080, - [SMALL_STATE(7520)] = 208111, - [SMALL_STATE(7521)] = 208142, - [SMALL_STATE(7522)] = 208173, - [SMALL_STATE(7523)] = 208204, - [SMALL_STATE(7524)] = 208235, - [SMALL_STATE(7525)] = 208266, - [SMALL_STATE(7526)] = 208297, - [SMALL_STATE(7527)] = 208328, - [SMALL_STATE(7528)] = 208359, - [SMALL_STATE(7529)] = 208390, - [SMALL_STATE(7530)] = 208421, - [SMALL_STATE(7531)] = 208452, - [SMALL_STATE(7532)] = 208483, - [SMALL_STATE(7533)] = 208514, - [SMALL_STATE(7534)] = 208545, - [SMALL_STATE(7535)] = 208576, - [SMALL_STATE(7536)] = 208607, - [SMALL_STATE(7537)] = 208638, - [SMALL_STATE(7538)] = 208669, - [SMALL_STATE(7539)] = 208700, - [SMALL_STATE(7540)] = 208731, - [SMALL_STATE(7541)] = 208762, - [SMALL_STATE(7542)] = 208793, - [SMALL_STATE(7543)] = 208824, - [SMALL_STATE(7544)] = 208855, - [SMALL_STATE(7545)] = 208886, - [SMALL_STATE(7546)] = 208917, - [SMALL_STATE(7547)] = 208948, - [SMALL_STATE(7548)] = 208979, - [SMALL_STATE(7549)] = 209010, - [SMALL_STATE(7550)] = 209041, - [SMALL_STATE(7551)] = 209072, - [SMALL_STATE(7552)] = 209103, - [SMALL_STATE(7553)] = 209134, - [SMALL_STATE(7554)] = 209165, - [SMALL_STATE(7555)] = 209196, - [SMALL_STATE(7556)] = 209227, - [SMALL_STATE(7557)] = 209258, - [SMALL_STATE(7558)] = 209289, - [SMALL_STATE(7559)] = 209320, - [SMALL_STATE(7560)] = 209351, - [SMALL_STATE(7561)] = 209382, - [SMALL_STATE(7562)] = 209413, - [SMALL_STATE(7563)] = 209444, - [SMALL_STATE(7564)] = 209475, - [SMALL_STATE(7565)] = 209506, - [SMALL_STATE(7566)] = 209537, - [SMALL_STATE(7567)] = 209568, - [SMALL_STATE(7568)] = 209599, - [SMALL_STATE(7569)] = 209630, - [SMALL_STATE(7570)] = 209661, - [SMALL_STATE(7571)] = 209692, - [SMALL_STATE(7572)] = 209723, - [SMALL_STATE(7573)] = 209754, - [SMALL_STATE(7574)] = 209785, - [SMALL_STATE(7575)] = 209816, - [SMALL_STATE(7576)] = 209847, - [SMALL_STATE(7577)] = 209878, - [SMALL_STATE(7578)] = 209909, - [SMALL_STATE(7579)] = 209940, - [SMALL_STATE(7580)] = 209971, - [SMALL_STATE(7581)] = 210002, - [SMALL_STATE(7582)] = 210033, - [SMALL_STATE(7583)] = 210064, - [SMALL_STATE(7584)] = 210095, - [SMALL_STATE(7585)] = 210126, - [SMALL_STATE(7586)] = 210157, - [SMALL_STATE(7587)] = 210188, - [SMALL_STATE(7588)] = 210219, - [SMALL_STATE(7589)] = 210250, - [SMALL_STATE(7590)] = 210281, - [SMALL_STATE(7591)] = 210312, - [SMALL_STATE(7592)] = 210343, - [SMALL_STATE(7593)] = 210374, - [SMALL_STATE(7594)] = 210405, - [SMALL_STATE(7595)] = 210436, - [SMALL_STATE(7596)] = 210467, - [SMALL_STATE(7597)] = 210498, - [SMALL_STATE(7598)] = 210529, - [SMALL_STATE(7599)] = 210560, - [SMALL_STATE(7600)] = 210591, - [SMALL_STATE(7601)] = 210622, - [SMALL_STATE(7602)] = 210653, - [SMALL_STATE(7603)] = 210684, - [SMALL_STATE(7604)] = 210715, - [SMALL_STATE(7605)] = 210746, - [SMALL_STATE(7606)] = 210777, - [SMALL_STATE(7607)] = 210808, - [SMALL_STATE(7608)] = 210839, - [SMALL_STATE(7609)] = 210870, - [SMALL_STATE(7610)] = 210901, - [SMALL_STATE(7611)] = 210932, - [SMALL_STATE(7612)] = 210963, - [SMALL_STATE(7613)] = 210994, - [SMALL_STATE(7614)] = 211025, - [SMALL_STATE(7615)] = 211056, - [SMALL_STATE(7616)] = 211087, - [SMALL_STATE(7617)] = 211118, - [SMALL_STATE(7618)] = 211149, - [SMALL_STATE(7619)] = 211180, - [SMALL_STATE(7620)] = 211211, - [SMALL_STATE(7621)] = 211242, - [SMALL_STATE(7622)] = 211273, - [SMALL_STATE(7623)] = 211304, - [SMALL_STATE(7624)] = 211335, - [SMALL_STATE(7625)] = 211366, - [SMALL_STATE(7626)] = 211397, - [SMALL_STATE(7627)] = 211428, - [SMALL_STATE(7628)] = 211459, - [SMALL_STATE(7629)] = 211490, - [SMALL_STATE(7630)] = 211521, - [SMALL_STATE(7631)] = 211552, - [SMALL_STATE(7632)] = 211583, - [SMALL_STATE(7633)] = 211614, - [SMALL_STATE(7634)] = 211645, - [SMALL_STATE(7635)] = 211676, - [SMALL_STATE(7636)] = 211707, - [SMALL_STATE(7637)] = 211738, - [SMALL_STATE(7638)] = 211769, - [SMALL_STATE(7639)] = 211800, - [SMALL_STATE(7640)] = 211831, - [SMALL_STATE(7641)] = 211862, - [SMALL_STATE(7642)] = 211893, - [SMALL_STATE(7643)] = 211924, - [SMALL_STATE(7644)] = 211955, - [SMALL_STATE(7645)] = 211986, - [SMALL_STATE(7646)] = 212017, - [SMALL_STATE(7647)] = 212048, - [SMALL_STATE(7648)] = 212079, - [SMALL_STATE(7649)] = 212110, - [SMALL_STATE(7650)] = 212141, - [SMALL_STATE(7651)] = 212172, - [SMALL_STATE(7652)] = 212203, - [SMALL_STATE(7653)] = 212234, - [SMALL_STATE(7654)] = 212265, - [SMALL_STATE(7655)] = 212296, - [SMALL_STATE(7656)] = 212327, - [SMALL_STATE(7657)] = 212358, - [SMALL_STATE(7658)] = 212389, - [SMALL_STATE(7659)] = 212420, - [SMALL_STATE(7660)] = 212451, - [SMALL_STATE(7661)] = 212482, - [SMALL_STATE(7662)] = 212513, - [SMALL_STATE(7663)] = 212544, - [SMALL_STATE(7664)] = 212575, - [SMALL_STATE(7665)] = 212606, - [SMALL_STATE(7666)] = 212637, - [SMALL_STATE(7667)] = 212668, - [SMALL_STATE(7668)] = 212699, - [SMALL_STATE(7669)] = 212730, - [SMALL_STATE(7670)] = 212761, - [SMALL_STATE(7671)] = 212792, - [SMALL_STATE(7672)] = 212823, - [SMALL_STATE(7673)] = 212854, - [SMALL_STATE(7674)] = 212885, - [SMALL_STATE(7675)] = 212916, - [SMALL_STATE(7676)] = 212947, - [SMALL_STATE(7677)] = 212978, - [SMALL_STATE(7678)] = 213009, - [SMALL_STATE(7679)] = 213040, - [SMALL_STATE(7680)] = 213071, - [SMALL_STATE(7681)] = 213102, - [SMALL_STATE(7682)] = 213133, - [SMALL_STATE(7683)] = 213164, - [SMALL_STATE(7684)] = 213195, - [SMALL_STATE(7685)] = 213226, - [SMALL_STATE(7686)] = 213257, - [SMALL_STATE(7687)] = 213288, - [SMALL_STATE(7688)] = 213319, - [SMALL_STATE(7689)] = 213350, - [SMALL_STATE(7690)] = 213381, - [SMALL_STATE(7691)] = 213412, - [SMALL_STATE(7692)] = 213443, - [SMALL_STATE(7693)] = 213474, - [SMALL_STATE(7694)] = 213505, - [SMALL_STATE(7695)] = 213536, - [SMALL_STATE(7696)] = 213567, - [SMALL_STATE(7697)] = 213598, - [SMALL_STATE(7698)] = 213629, - [SMALL_STATE(7699)] = 213660, - [SMALL_STATE(7700)] = 213691, - [SMALL_STATE(7701)] = 213722, - [SMALL_STATE(7702)] = 213753, - [SMALL_STATE(7703)] = 213784, - [SMALL_STATE(7704)] = 213815, - [SMALL_STATE(7705)] = 213846, - [SMALL_STATE(7706)] = 213877, - [SMALL_STATE(7707)] = 213908, - [SMALL_STATE(7708)] = 213939, - [SMALL_STATE(7709)] = 213970, - [SMALL_STATE(7710)] = 214001, - [SMALL_STATE(7711)] = 214032, - [SMALL_STATE(7712)] = 214063, - [SMALL_STATE(7713)] = 214094, - [SMALL_STATE(7714)] = 214125, - [SMALL_STATE(7715)] = 214156, - [SMALL_STATE(7716)] = 214187, - [SMALL_STATE(7717)] = 214218, - [SMALL_STATE(7718)] = 214249, - [SMALL_STATE(7719)] = 214280, - [SMALL_STATE(7720)] = 214311, - [SMALL_STATE(7721)] = 214342, - [SMALL_STATE(7722)] = 214373, - [SMALL_STATE(7723)] = 214404, - [SMALL_STATE(7724)] = 214435, - [SMALL_STATE(7725)] = 214466, - [SMALL_STATE(7726)] = 214497, - [SMALL_STATE(7727)] = 214528, - [SMALL_STATE(7728)] = 214559, - [SMALL_STATE(7729)] = 214590, - [SMALL_STATE(7730)] = 214621, - [SMALL_STATE(7731)] = 214652, - [SMALL_STATE(7732)] = 214683, - [SMALL_STATE(7733)] = 214714, - [SMALL_STATE(7734)] = 214745, - [SMALL_STATE(7735)] = 214776, - [SMALL_STATE(7736)] = 214807, - [SMALL_STATE(7737)] = 214838, - [SMALL_STATE(7738)] = 214869, - [SMALL_STATE(7739)] = 214900, - [SMALL_STATE(7740)] = 214931, - [SMALL_STATE(7741)] = 214962, - [SMALL_STATE(7742)] = 214993, - [SMALL_STATE(7743)] = 215024, - [SMALL_STATE(7744)] = 215055, - [SMALL_STATE(7745)] = 215086, - [SMALL_STATE(7746)] = 215117, - [SMALL_STATE(7747)] = 215148, - [SMALL_STATE(7748)] = 215179, - [SMALL_STATE(7749)] = 215210, - [SMALL_STATE(7750)] = 215241, - [SMALL_STATE(7751)] = 215272, - [SMALL_STATE(7752)] = 215303, - [SMALL_STATE(7753)] = 215334, - [SMALL_STATE(7754)] = 215365, - [SMALL_STATE(7755)] = 215396, - [SMALL_STATE(7756)] = 215427, - [SMALL_STATE(7757)] = 215458, - [SMALL_STATE(7758)] = 215489, - [SMALL_STATE(7759)] = 215520, - [SMALL_STATE(7760)] = 215551, - [SMALL_STATE(7761)] = 215582, - [SMALL_STATE(7762)] = 215613, - [SMALL_STATE(7763)] = 215644, - [SMALL_STATE(7764)] = 215675, - [SMALL_STATE(7765)] = 215706, - [SMALL_STATE(7766)] = 215737, - [SMALL_STATE(7767)] = 215768, - [SMALL_STATE(7768)] = 215799, - [SMALL_STATE(7769)] = 215830, - [SMALL_STATE(7770)] = 215861, - [SMALL_STATE(7771)] = 215892, - [SMALL_STATE(7772)] = 215923, - [SMALL_STATE(7773)] = 215954, - [SMALL_STATE(7774)] = 215985, - [SMALL_STATE(7775)] = 216016, - [SMALL_STATE(7776)] = 216047, - [SMALL_STATE(7777)] = 216078, - [SMALL_STATE(7778)] = 216109, - [SMALL_STATE(7779)] = 216140, - [SMALL_STATE(7780)] = 216171, - [SMALL_STATE(7781)] = 216202, - [SMALL_STATE(7782)] = 216233, - [SMALL_STATE(7783)] = 216264, - [SMALL_STATE(7784)] = 216295, - [SMALL_STATE(7785)] = 216326, - [SMALL_STATE(7786)] = 216357, - [SMALL_STATE(7787)] = 216388, - [SMALL_STATE(7788)] = 216419, - [SMALL_STATE(7789)] = 216450, - [SMALL_STATE(7790)] = 216481, - [SMALL_STATE(7791)] = 216512, - [SMALL_STATE(7792)] = 216543, - [SMALL_STATE(7793)] = 216574, - [SMALL_STATE(7794)] = 216605, - [SMALL_STATE(7795)] = 216636, - [SMALL_STATE(7796)] = 216667, - [SMALL_STATE(7797)] = 216698, - [SMALL_STATE(7798)] = 216729, - [SMALL_STATE(7799)] = 216760, - [SMALL_STATE(7800)] = 216791, - [SMALL_STATE(7801)] = 216822, - [SMALL_STATE(7802)] = 216853, - [SMALL_STATE(7803)] = 216884, - [SMALL_STATE(7804)] = 216915, - [SMALL_STATE(7805)] = 216946, - [SMALL_STATE(7806)] = 216977, - [SMALL_STATE(7807)] = 217008, - [SMALL_STATE(7808)] = 217039, - [SMALL_STATE(7809)] = 217070, - [SMALL_STATE(7810)] = 217101, - [SMALL_STATE(7811)] = 217132, - [SMALL_STATE(7812)] = 217163, - [SMALL_STATE(7813)] = 217194, - [SMALL_STATE(7814)] = 217225, - [SMALL_STATE(7815)] = 217229, - [SMALL_STATE(7816)] = 217233, - [SMALL_STATE(7817)] = 217237, - [SMALL_STATE(7818)] = 217241, - [SMALL_STATE(7819)] = 217245, - [SMALL_STATE(7820)] = 217249, - [SMALL_STATE(7821)] = 217253, + [SMALL_STATE(3542)] = 0, + [SMALL_STATE(3543)] = 131, + [SMALL_STATE(3544)] = 262, + [SMALL_STATE(3545)] = 386, + [SMALL_STATE(3546)] = 512, + [SMALL_STATE(3547)] = 637, + [SMALL_STATE(3548)] = 762, + [SMALL_STATE(3549)] = 887, + [SMALL_STATE(3550)] = 1012, + [SMALL_STATE(3551)] = 1137, + [SMALL_STATE(3552)] = 1262, + [SMALL_STATE(3553)] = 1387, + [SMALL_STATE(3554)] = 1512, + [SMALL_STATE(3555)] = 1637, + [SMALL_STATE(3556)] = 1762, + [SMALL_STATE(3557)] = 1887, + [SMALL_STATE(3558)] = 2010, + [SMALL_STATE(3559)] = 2135, + [SMALL_STATE(3560)] = 2260, + [SMALL_STATE(3561)] = 2385, + [SMALL_STATE(3562)] = 2510, + [SMALL_STATE(3563)] = 2635, + [SMALL_STATE(3564)] = 2760, + [SMALL_STATE(3565)] = 2867, + [SMALL_STATE(3566)] = 2972, + [SMALL_STATE(3567)] = 3077, + [SMALL_STATE(3568)] = 3178, + [SMALL_STATE(3569)] = 3282, + [SMALL_STATE(3570)] = 3381, + [SMALL_STATE(3571)] = 3480, + [SMALL_STATE(3572)] = 3578, + [SMALL_STATE(3573)] = 3678, + [SMALL_STATE(3574)] = 3769, + [SMALL_STATE(3575)] = 3841, + [SMALL_STATE(3576)] = 3927, + [SMALL_STATE(3577)] = 4013, + [SMALL_STATE(3578)] = 4087, + [SMALL_STATE(3579)] = 4173, + [SMALL_STATE(3580)] = 4259, + [SMALL_STATE(3581)] = 4345, + [SMALL_STATE(3582)] = 4431, + [SMALL_STATE(3583)] = 4505, + [SMALL_STATE(3584)] = 4589, + [SMALL_STATE(3585)] = 4663, + [SMALL_STATE(3586)] = 4757, + [SMALL_STATE(3587)] = 4841, + [SMALL_STATE(3588)] = 4915, + [SMALL_STATE(3589)] = 4987, + [SMALL_STATE(3590)] = 5073, + [SMALL_STATE(3591)] = 5159, + [SMALL_STATE(3592)] = 5228, + [SMALL_STATE(3593)] = 5301, + [SMALL_STATE(3594)] = 5372, + [SMALL_STATE(3595)] = 5441, + [SMALL_STATE(3596)] = 5512, + [SMALL_STATE(3597)] = 5597, + [SMALL_STATE(3598)] = 5666, + [SMALL_STATE(3599)] = 5735, + [SMALL_STATE(3600)] = 5808, + [SMALL_STATE(3601)] = 5881, + [SMALL_STATE(3602)] = 5954, + [SMALL_STATE(3603)] = 6024, + [SMALL_STATE(3604)] = 6092, + [SMALL_STATE(3605)] = 6164, + [SMALL_STATE(3606)] = 6234, + [SMALL_STATE(3607)] = 6306, + [SMALL_STATE(3608)] = 6374, + [SMALL_STATE(3609)] = 6442, + [SMALL_STATE(3610)] = 6512, + [SMALL_STATE(3611)] = 6582, + [SMALL_STATE(3612)] = 6652, + [SMALL_STATE(3613)] = 6746, + [SMALL_STATE(3614)] = 6814, + [SMALL_STATE(3615)] = 6881, + [SMALL_STATE(3616)] = 6972, + [SMALL_STATE(3617)] = 7055, + [SMALL_STATE(3618)] = 7122, + [SMALL_STATE(3619)] = 7247, + [SMALL_STATE(3620)] = 7314, + [SMALL_STATE(3621)] = 7381, + [SMALL_STATE(3622)] = 7506, + [SMALL_STATE(3623)] = 7575, + [SMALL_STATE(3624)] = 7642, + [SMALL_STATE(3625)] = 7713, + [SMALL_STATE(3626)] = 7780, + [SMALL_STATE(3627)] = 7847, + [SMALL_STATE(3628)] = 7914, + [SMALL_STATE(3629)] = 8039, + [SMALL_STATE(3630)] = 8106, + [SMALL_STATE(3631)] = 8177, + [SMALL_STATE(3632)] = 8260, + [SMALL_STATE(3633)] = 8343, + [SMALL_STATE(3634)] = 8412, + [SMALL_STATE(3635)] = 8537, + [SMALL_STATE(3636)] = 8604, + [SMALL_STATE(3637)] = 8671, + [SMALL_STATE(3638)] = 8738, + [SMALL_STATE(3639)] = 8805, + [SMALL_STATE(3640)] = 8876, + [SMALL_STATE(3641)] = 8943, + [SMALL_STATE(3642)] = 9010, + [SMALL_STATE(3643)] = 9079, + [SMALL_STATE(3644)] = 9146, + [SMALL_STATE(3645)] = 9271, + [SMALL_STATE(3646)] = 9338, + [SMALL_STATE(3647)] = 9421, + [SMALL_STATE(3648)] = 9490, + [SMALL_STATE(3649)] = 9615, + [SMALL_STATE(3650)] = 9682, + [SMALL_STATE(3651)] = 9751, + [SMALL_STATE(3652)] = 9818, + [SMALL_STATE(3653)] = 9885, + [SMALL_STATE(3654)] = 9956, + [SMALL_STATE(3655)] = 10023, + [SMALL_STATE(3656)] = 10090, + [SMALL_STATE(3657)] = 10161, + [SMALL_STATE(3658)] = 10227, + [SMALL_STATE(3659)] = 10293, + [SMALL_STATE(3660)] = 10375, + [SMALL_STATE(3661)] = 10457, + [SMALL_STATE(3662)] = 10523, + [SMALL_STATE(3663)] = 10591, + [SMALL_STATE(3664)] = 10659, + [SMALL_STATE(3665)] = 10745, + [SMALL_STATE(3666)] = 10813, + [SMALL_STATE(3667)] = 10931, + [SMALL_STATE(3668)] = 11025, + [SMALL_STATE(3669)] = 11093, + [SMALL_STATE(3670)] = 11163, + [SMALL_STATE(3671)] = 11245, + [SMALL_STATE(3672)] = 11313, + [SMALL_STATE(3673)] = 11383, + [SMALL_STATE(3674)] = 11453, + [SMALL_STATE(3675)] = 11523, + [SMALL_STATE(3676)] = 11605, + [SMALL_STATE(3677)] = 11673, + [SMALL_STATE(3678)] = 11738, + [SMALL_STATE(3679)] = 11803, + [SMALL_STATE(3680)] = 11884, + [SMALL_STATE(3681)] = 11949, + [SMALL_STATE(3682)] = 12014, + [SMALL_STATE(3683)] = 12079, + [SMALL_STATE(3684)] = 12148, + [SMALL_STATE(3685)] = 12215, + [SMALL_STATE(3686)] = 12282, + [SMALL_STATE(3687)] = 12351, + [SMALL_STATE(3688)] = 12416, + [SMALL_STATE(3689)] = 12499, + [SMALL_STATE(3690)] = 12564, + [SMALL_STATE(3691)] = 12681, + [SMALL_STATE(3692)] = 12750, + [SMALL_STATE(3693)] = 12815, + [SMALL_STATE(3694)] = 12884, + [SMALL_STATE(3695)] = 12949, + [SMALL_STATE(3696)] = 13016, + [SMALL_STATE(3697)] = 13081, + [SMALL_STATE(3698)] = 13150, + [SMALL_STATE(3699)] = 13229, + [SMALL_STATE(3700)] = 13308, + [SMALL_STATE(3701)] = 13373, + [SMALL_STATE(3702)] = 13438, + [SMALL_STATE(3703)] = 13503, + [SMALL_STATE(3704)] = 13568, + [SMALL_STATE(3705)] = 13635, + [SMALL_STATE(3706)] = 13700, + [SMALL_STATE(3707)] = 13765, + [SMALL_STATE(3708)] = 13830, + [SMALL_STATE(3709)] = 13897, + [SMALL_STATE(3710)] = 14016, + [SMALL_STATE(3711)] = 14081, + [SMALL_STATE(3712)] = 14146, + [SMALL_STATE(3713)] = 14213, + [SMALL_STATE(3714)] = 14278, + [SMALL_STATE(3715)] = 14343, + [SMALL_STATE(3716)] = 14410, + [SMALL_STATE(3717)] = 14479, + [SMALL_STATE(3718)] = 14544, + [SMALL_STATE(3719)] = 14609, + [SMALL_STATE(3720)] = 14674, + [SMALL_STATE(3721)] = 14739, + [SMALL_STATE(3722)] = 14808, + [SMALL_STATE(3723)] = 14873, + [SMALL_STATE(3724)] = 14938, + [SMALL_STATE(3725)] = 15003, + [SMALL_STATE(3726)] = 15068, + [SMALL_STATE(3727)] = 15137, + [SMALL_STATE(3728)] = 15202, + [SMALL_STATE(3729)] = 15269, + [SMALL_STATE(3730)] = 15338, + [SMALL_STATE(3731)] = 15403, + [SMALL_STATE(3732)] = 15468, + [SMALL_STATE(3733)] = 15533, + [SMALL_STATE(3734)] = 15598, + [SMALL_STATE(3735)] = 15663, + [SMALL_STATE(3736)] = 15728, + [SMALL_STATE(3737)] = 15793, + [SMALL_STATE(3738)] = 15858, + [SMALL_STATE(3739)] = 15923, + [SMALL_STATE(3740)] = 16042, + [SMALL_STATE(3741)] = 16107, + [SMALL_STATE(3742)] = 16176, + [SMALL_STATE(3743)] = 16245, + [SMALL_STATE(3744)] = 16312, + [SMALL_STATE(3745)] = 16377, + [SMALL_STATE(3746)] = 16442, + [SMALL_STATE(3747)] = 16507, + [SMALL_STATE(3748)] = 16572, + [SMALL_STATE(3749)] = 16637, + [SMALL_STATE(3750)] = 16702, + [SMALL_STATE(3751)] = 16766, + [SMALL_STATE(3752)] = 16836, + [SMALL_STATE(3753)] = 16900, + [SMALL_STATE(3754)] = 16966, + [SMALL_STATE(3755)] = 17030, + [SMALL_STATE(3756)] = 17100, + [SMALL_STATE(3757)] = 17164, + [SMALL_STATE(3758)] = 17230, + [SMALL_STATE(3759)] = 17296, + [SMALL_STATE(3760)] = 17364, + [SMALL_STATE(3761)] = 17430, + [SMALL_STATE(3762)] = 17498, + [SMALL_STATE(3763)] = 17562, + [SMALL_STATE(3764)] = 17628, + [SMALL_STATE(3765)] = 17694, + [SMALL_STATE(3766)] = 17764, + [SMALL_STATE(3767)] = 17832, + [SMALL_STATE(3768)] = 17896, + [SMALL_STATE(3769)] = 17984, + [SMALL_STATE(3770)] = 18050, + [SMALL_STATE(3771)] = 18114, + [SMALL_STATE(3772)] = 18202, + [SMALL_STATE(3773)] = 18266, + [SMALL_STATE(3774)] = 18354, + [SMALL_STATE(3775)] = 18420, + [SMALL_STATE(3776)] = 18490, + [SMALL_STATE(3777)] = 18560, + [SMALL_STATE(3778)] = 18648, + [SMALL_STATE(3779)] = 18718, + [SMALL_STATE(3780)] = 18782, + [SMALL_STATE(3781)] = 18846, + [SMALL_STATE(3782)] = 18916, + [SMALL_STATE(3783)] = 18992, + [SMALL_STATE(3784)] = 19060, + [SMALL_STATE(3785)] = 19130, + [SMALL_STATE(3786)] = 19198, + [SMALL_STATE(3787)] = 19262, + [SMALL_STATE(3788)] = 19338, + [SMALL_STATE(3789)] = 19408, + [SMALL_STATE(3790)] = 19472, + [SMALL_STATE(3791)] = 19536, + [SMALL_STATE(3792)] = 19600, + [SMALL_STATE(3793)] = 19688, + [SMALL_STATE(3794)] = 19756, + [SMALL_STATE(3795)] = 19826, + [SMALL_STATE(3796)] = 19890, + [SMALL_STATE(3797)] = 19960, + [SMALL_STATE(3798)] = 20028, + [SMALL_STATE(3799)] = 20094, + [SMALL_STATE(3800)] = 20164, + [SMALL_STATE(3801)] = 20230, + [SMALL_STATE(3802)] = 20294, + [SMALL_STATE(3803)] = 20358, + [SMALL_STATE(3804)] = 20428, + [SMALL_STATE(3805)] = 20516, + [SMALL_STATE(3806)] = 20579, + [SMALL_STATE(3807)] = 20642, + [SMALL_STATE(3808)] = 20705, + [SMALL_STATE(3809)] = 20768, + [SMALL_STATE(3810)] = 20835, + [SMALL_STATE(3811)] = 20898, + [SMALL_STATE(3812)] = 20963, + [SMALL_STATE(3813)] = 21026, + [SMALL_STATE(3814)] = 21093, + [SMALL_STATE(3815)] = 21156, + [SMALL_STATE(3816)] = 21223, + [SMALL_STATE(3817)] = 21290, + [SMALL_STATE(3818)] = 21353, + [SMALL_STATE(3819)] = 21416, + [SMALL_STATE(3820)] = 21483, + [SMALL_STATE(3821)] = 21546, + [SMALL_STATE(3822)] = 21609, + [SMALL_STATE(3823)] = 21672, + [SMALL_STATE(3824)] = 21735, + [SMALL_STATE(3825)] = 21798, + [SMALL_STATE(3826)] = 21861, + [SMALL_STATE(3827)] = 21924, + [SMALL_STATE(3828)] = 21987, + [SMALL_STATE(3829)] = 22050, + [SMALL_STATE(3830)] = 22113, + [SMALL_STATE(3831)] = 22176, + [SMALL_STATE(3832)] = 22239, + [SMALL_STATE(3833)] = 22352, + [SMALL_STATE(3834)] = 22415, + [SMALL_STATE(3835)] = 22482, + [SMALL_STATE(3836)] = 22545, + [SMALL_STATE(3837)] = 22608, + [SMALL_STATE(3838)] = 22671, + [SMALL_STATE(3839)] = 22734, + [SMALL_STATE(3840)] = 22797, + [SMALL_STATE(3841)] = 22860, + [SMALL_STATE(3842)] = 22937, + [SMALL_STATE(3843)] = 23004, + [SMALL_STATE(3844)] = 23067, + [SMALL_STATE(3845)] = 23130, + [SMALL_STATE(3846)] = 23193, + [SMALL_STATE(3847)] = 23256, + [SMALL_STATE(3848)] = 23319, + [SMALL_STATE(3849)] = 23382, + [SMALL_STATE(3850)] = 23445, + [SMALL_STATE(3851)] = 23508, + [SMALL_STATE(3852)] = 23571, + [SMALL_STATE(3853)] = 23634, + [SMALL_STATE(3854)] = 23697, + [SMALL_STATE(3855)] = 23760, + [SMALL_STATE(3856)] = 23823, + [SMALL_STATE(3857)] = 23886, + [SMALL_STATE(3858)] = 23949, + [SMALL_STATE(3859)] = 24012, + [SMALL_STATE(3860)] = 24075, + [SMALL_STATE(3861)] = 24138, + [SMALL_STATE(3862)] = 24201, + [SMALL_STATE(3863)] = 24264, + [SMALL_STATE(3864)] = 24327, + [SMALL_STATE(3865)] = 24390, + [SMALL_STATE(3866)] = 24453, + [SMALL_STATE(3867)] = 24516, + [SMALL_STATE(3868)] = 24579, + [SMALL_STATE(3869)] = 24642, + [SMALL_STATE(3870)] = 24705, + [SMALL_STATE(3871)] = 24768, + [SMALL_STATE(3872)] = 24831, + [SMALL_STATE(3873)] = 24894, + [SMALL_STATE(3874)] = 24961, + [SMALL_STATE(3875)] = 25024, + [SMALL_STATE(3876)] = 25089, + [SMALL_STATE(3877)] = 25152, + [SMALL_STATE(3878)] = 25215, + [SMALL_STATE(3879)] = 25278, + [SMALL_STATE(3880)] = 25341, + [SMALL_STATE(3881)] = 25404, + [SMALL_STATE(3882)] = 25467, + [SMALL_STATE(3883)] = 25530, + [SMALL_STATE(3884)] = 25593, + [SMALL_STATE(3885)] = 25656, + [SMALL_STATE(3886)] = 25719, + [SMALL_STATE(3887)] = 25784, + [SMALL_STATE(3888)] = 25897, + [SMALL_STATE(3889)] = 25964, + [SMALL_STATE(3890)] = 26029, + [SMALL_STATE(3891)] = 26092, + [SMALL_STATE(3892)] = 26155, + [SMALL_STATE(3893)] = 26218, + [SMALL_STATE(3894)] = 26281, + [SMALL_STATE(3895)] = 26394, + [SMALL_STATE(3896)] = 26457, + [SMALL_STATE(3897)] = 26520, + [SMALL_STATE(3898)] = 26583, + [SMALL_STATE(3899)] = 26646, + [SMALL_STATE(3900)] = 26709, + [SMALL_STATE(3901)] = 26822, + [SMALL_STATE(3902)] = 26885, + [SMALL_STATE(3903)] = 26948, + [SMALL_STATE(3904)] = 27011, + [SMALL_STATE(3905)] = 27074, + [SMALL_STATE(3906)] = 27137, + [SMALL_STATE(3907)] = 27200, + [SMALL_STATE(3908)] = 27277, + [SMALL_STATE(3909)] = 27340, + [SMALL_STATE(3910)] = 27403, + [SMALL_STATE(3911)] = 27466, + [SMALL_STATE(3912)] = 27531, + [SMALL_STATE(3913)] = 27596, + [SMALL_STATE(3914)] = 27661, + [SMALL_STATE(3915)] = 27724, + [SMALL_STATE(3916)] = 27787, + [SMALL_STATE(3917)] = 27854, + [SMALL_STATE(3918)] = 27917, + [SMALL_STATE(3919)] = 27980, + [SMALL_STATE(3920)] = 28043, + [SMALL_STATE(3921)] = 28106, + [SMALL_STATE(3922)] = 28171, + [SMALL_STATE(3923)] = 28234, + [SMALL_STATE(3924)] = 28297, + [SMALL_STATE(3925)] = 28407, + [SMALL_STATE(3926)] = 28483, + [SMALL_STATE(3927)] = 28545, + [SMALL_STATE(3928)] = 28607, + [SMALL_STATE(3929)] = 28669, + [SMALL_STATE(3930)] = 28745, + [SMALL_STATE(3931)] = 28807, + [SMALL_STATE(3932)] = 28873, + [SMALL_STATE(3933)] = 28939, + [SMALL_STATE(3934)] = 29001, + [SMALL_STATE(3935)] = 29063, + [SMALL_STATE(3936)] = 29125, + [SMALL_STATE(3937)] = 29189, + [SMALL_STATE(3938)] = 29255, + [SMALL_STATE(3939)] = 29321, + [SMALL_STATE(3940)] = 29419, + [SMALL_STATE(3941)] = 29529, + [SMALL_STATE(3942)] = 29591, + [SMALL_STATE(3943)] = 29689, + [SMALL_STATE(3944)] = 29751, + [SMALL_STATE(3945)] = 29813, + [SMALL_STATE(3946)] = 29911, + [SMALL_STATE(3947)] = 30009, + [SMALL_STATE(3948)] = 30071, + [SMALL_STATE(3949)] = 30137, + [SMALL_STATE(3950)] = 30203, + [SMALL_STATE(3951)] = 30265, + [SMALL_STATE(3952)] = 30327, + [SMALL_STATE(3953)] = 30425, + [SMALL_STATE(3954)] = 30487, + [SMALL_STATE(3955)] = 30549, + [SMALL_STATE(3956)] = 30615, + [SMALL_STATE(3957)] = 30677, + [SMALL_STATE(3958)] = 30739, + [SMALL_STATE(3959)] = 30801, + [SMALL_STATE(3960)] = 30865, + [SMALL_STATE(3961)] = 30927, + [SMALL_STATE(3962)] = 30989, + [SMALL_STATE(3963)] = 31051, + [SMALL_STATE(3964)] = 31113, + [SMALL_STATE(3965)] = 31211, + [SMALL_STATE(3966)] = 31273, + [SMALL_STATE(3967)] = 31349, + [SMALL_STATE(3968)] = 31411, + [SMALL_STATE(3969)] = 31473, + [SMALL_STATE(3970)] = 31571, + [SMALL_STATE(3971)] = 31669, + [SMALL_STATE(3972)] = 31731, + [SMALL_STATE(3973)] = 31793, + [SMALL_STATE(3974)] = 31855, + [SMALL_STATE(3975)] = 31917, + [SMALL_STATE(3976)] = 32015, + [SMALL_STATE(3977)] = 32113, + [SMALL_STATE(3978)] = 32175, + [SMALL_STATE(3979)] = 32273, + [SMALL_STATE(3980)] = 32335, + [SMALL_STATE(3981)] = 32397, + [SMALL_STATE(3982)] = 32459, + [SMALL_STATE(3983)] = 32521, + [SMALL_STATE(3984)] = 32583, + [SMALL_STATE(3985)] = 32645, + [SMALL_STATE(3986)] = 32707, + [SMALL_STATE(3987)] = 32769, + [SMALL_STATE(3988)] = 32831, + [SMALL_STATE(3989)] = 32893, + [SMALL_STATE(3990)] = 32955, + [SMALL_STATE(3991)] = 33017, + [SMALL_STATE(3992)] = 33115, + [SMALL_STATE(3993)] = 33213, + [SMALL_STATE(3994)] = 33311, + [SMALL_STATE(3995)] = 33373, + [SMALL_STATE(3996)] = 33435, + [SMALL_STATE(3997)] = 33497, + [SMALL_STATE(3998)] = 33559, + [SMALL_STATE(3999)] = 33621, + [SMALL_STATE(4000)] = 33731, + [SMALL_STATE(4001)] = 33793, + [SMALL_STATE(4002)] = 33855, + [SMALL_STATE(4003)] = 33917, + [SMALL_STATE(4004)] = 33979, + [SMALL_STATE(4005)] = 34077, + [SMALL_STATE(4006)] = 34139, + [SMALL_STATE(4007)] = 34237, + [SMALL_STATE(4008)] = 34299, + [SMALL_STATE(4009)] = 34362, + [SMALL_STATE(4010)] = 34457, + [SMALL_STATE(4011)] = 34552, + [SMALL_STATE(4012)] = 34647, + [SMALL_STATE(4013)] = 34712, + [SMALL_STATE(4014)] = 34807, + [SMALL_STATE(4015)] = 34900, + [SMALL_STATE(4016)] = 34965, + [SMALL_STATE(4017)] = 35060, + [SMALL_STATE(4018)] = 35123, + [SMALL_STATE(4019)] = 35218, + [SMALL_STATE(4020)] = 35313, + [SMALL_STATE(4021)] = 35408, + [SMALL_STATE(4022)] = 35472, + [SMALL_STATE(4023)] = 35532, + [SMALL_STATE(4024)] = 35596, + [SMALL_STATE(4025)] = 35660, + [SMALL_STATE(4026)] = 35722, + [SMALL_STATE(4027)] = 35782, + [SMALL_STATE(4028)] = 35844, + [SMALL_STATE(4029)] = 35924, + [SMALL_STATE(4030)] = 35984, + [SMALL_STATE(4031)] = 36048, + [SMALL_STATE(4032)] = 36111, + [SMALL_STATE(4033)] = 36170, + [SMALL_STATE(4034)] = 36229, + [SMALL_STATE(4035)] = 36308, + [SMALL_STATE(4036)] = 36383, + [SMALL_STATE(4037)] = 36442, + [SMALL_STATE(4038)] = 36515, + [SMALL_STATE(4039)] = 36590, + [SMALL_STATE(4040)] = 36665, + [SMALL_STATE(4041)] = 36730, + [SMALL_STATE(4042)] = 36793, + [SMALL_STATE(4043)] = 36880, + [SMALL_STATE(4044)] = 36939, + [SMALL_STATE(4045)] = 37000, + [SMALL_STATE(4046)] = 37059, + [SMALL_STATE(4047)] = 37134, + [SMALL_STATE(4048)] = 37193, + [SMALL_STATE(4049)] = 37282, + [SMALL_STATE(4050)] = 37343, + [SMALL_STATE(4051)] = 37402, + [SMALL_STATE(4052)] = 37465, + [SMALL_STATE(4053)] = 37538, + [SMALL_STATE(4054)] = 37597, + [SMALL_STATE(4055)] = 37660, + [SMALL_STATE(4056)] = 37723, + [SMALL_STATE(4057)] = 37784, + [SMALL_STATE(4058)] = 37847, + [SMALL_STATE(4059)] = 37906, + [SMALL_STATE(4060)] = 37967, + [SMALL_STATE(4061)] = 38025, + [SMALL_STATE(4062)] = 38099, + [SMALL_STATE(4063)] = 38161, + [SMALL_STATE(4064)] = 38223, + [SMALL_STATE(4065)] = 38283, + [SMALL_STATE(4066)] = 38343, + [SMALL_STATE(4067)] = 38417, + [SMALL_STATE(4068)] = 38491, + [SMALL_STATE(4069)] = 38553, + [SMALL_STATE(4070)] = 38627, + [SMALL_STATE(4071)] = 38701, + [SMALL_STATE(4072)] = 38763, + [SMALL_STATE(4073)] = 38837, + [SMALL_STATE(4074)] = 38897, + [SMALL_STATE(4075)] = 38959, + [SMALL_STATE(4076)] = 39031, + [SMALL_STATE(4077)] = 39089, + [SMALL_STATE(4078)] = 39149, + [SMALL_STATE(4079)] = 39211, + [SMALL_STATE(4080)] = 39271, + [SMALL_STATE(4081)] = 39343, + [SMALL_STATE(4082)] = 39415, + [SMALL_STATE(4083)] = 39477, + [SMALL_STATE(4084)] = 39537, + [SMALL_STATE(4085)] = 39599, + [SMALL_STATE(4086)] = 39661, + [SMALL_STATE(4087)] = 39733, + [SMALL_STATE(4088)] = 39795, + [SMALL_STATE(4089)] = 39857, + [SMALL_STATE(4090)] = 39915, + [SMALL_STATE(4091)] = 39973, + [SMALL_STATE(4092)] = 40031, + [SMALL_STATE(4093)] = 40095, + [SMALL_STATE(4094)] = 40157, + [SMALL_STATE(4095)] = 40215, + [SMALL_STATE(4096)] = 40289, + [SMALL_STATE(4097)] = 40349, + [SMALL_STATE(4098)] = 40423, + [SMALL_STATE(4099)] = 40483, + [SMALL_STATE(4100)] = 40541, + [SMALL_STATE(4101)] = 40601, + [SMALL_STATE(4102)] = 40673, + [SMALL_STATE(4103)] = 40731, + [SMALL_STATE(4104)] = 40803, + [SMALL_STATE(4105)] = 40861, + [SMALL_STATE(4106)] = 40921, + [SMALL_STATE(4107)] = 40979, + [SMALL_STATE(4108)] = 41053, + [SMALL_STATE(4109)] = 41111, + [SMALL_STATE(4110)] = 41169, + [SMALL_STATE(4111)] = 41227, + [SMALL_STATE(4112)] = 41289, + [SMALL_STATE(4113)] = 41347, + [SMALL_STATE(4114)] = 41405, + [SMALL_STATE(4115)] = 41463, + [SMALL_STATE(4116)] = 41535, + [SMALL_STATE(4117)] = 41595, + [SMALL_STATE(4118)] = 41653, + [SMALL_STATE(4119)] = 41711, + [SMALL_STATE(4120)] = 41769, + [SMALL_STATE(4121)] = 41827, + [SMALL_STATE(4122)] = 41885, + [SMALL_STATE(4123)] = 41943, + [SMALL_STATE(4124)] = 42005, + [SMALL_STATE(4125)] = 42063, + [SMALL_STATE(4126)] = 42121, + [SMALL_STATE(4127)] = 42179, + [SMALL_STATE(4128)] = 42241, + [SMALL_STATE(4129)] = 42299, + [SMALL_STATE(4130)] = 42361, + [SMALL_STATE(4131)] = 42419, + [SMALL_STATE(4132)] = 42481, + [SMALL_STATE(4133)] = 42553, + [SMALL_STATE(4134)] = 42615, + [SMALL_STATE(4135)] = 42673, + [SMALL_STATE(4136)] = 42735, + [SMALL_STATE(4137)] = 42795, + [SMALL_STATE(4138)] = 42853, + [SMALL_STATE(4139)] = 42915, + [SMALL_STATE(4140)] = 42973, + [SMALL_STATE(4141)] = 43031, + [SMALL_STATE(4142)] = 43089, + [SMALL_STATE(4143)] = 43147, + [SMALL_STATE(4144)] = 43205, + [SMALL_STATE(4145)] = 43263, + [SMALL_STATE(4146)] = 43321, + [SMALL_STATE(4147)] = 43379, + [SMALL_STATE(4148)] = 43437, + [SMALL_STATE(4149)] = 43495, + [SMALL_STATE(4150)] = 43553, + [SMALL_STATE(4151)] = 43611, + [SMALL_STATE(4152)] = 43669, + [SMALL_STATE(4153)] = 43727, + [SMALL_STATE(4154)] = 43785, + [SMALL_STATE(4155)] = 43843, + [SMALL_STATE(4156)] = 43901, + [SMALL_STATE(4157)] = 43959, + [SMALL_STATE(4158)] = 44017, + [SMALL_STATE(4159)] = 44075, + [SMALL_STATE(4160)] = 44133, + [SMALL_STATE(4161)] = 44192, + [SMALL_STATE(4162)] = 44277, + [SMALL_STATE(4163)] = 44348, + [SMALL_STATE(4164)] = 44449, + [SMALL_STATE(4165)] = 44506, + [SMALL_STATE(4166)] = 44607, + [SMALL_STATE(4167)] = 44664, + [SMALL_STATE(4168)] = 44723, + [SMALL_STATE(4169)] = 44796, + [SMALL_STATE(4170)] = 44853, + [SMALL_STATE(4171)] = 44934, + [SMALL_STATE(4172)] = 45007, + [SMALL_STATE(4173)] = 45066, + [SMALL_STATE(4174)] = 45167, + [SMALL_STATE(4175)] = 45224, + [SMALL_STATE(4176)] = 45281, + [SMALL_STATE(4177)] = 45382, + [SMALL_STATE(4178)] = 45443, + [SMALL_STATE(4179)] = 45516, + [SMALL_STATE(4180)] = 45577, + [SMALL_STATE(4181)] = 45650, + [SMALL_STATE(4182)] = 45723, + [SMALL_STATE(4183)] = 45794, + [SMALL_STATE(4184)] = 45855, + [SMALL_STATE(4185)] = 45912, + [SMALL_STATE(4186)] = 45982, + [SMALL_STATE(4187)] = 46038, + [SMALL_STATE(4188)] = 46098, + [SMALL_STATE(4189)] = 46168, + [SMALL_STATE(4190)] = 46224, + [SMALL_STATE(4191)] = 46280, + [SMALL_STATE(4192)] = 46364, + [SMALL_STATE(4193)] = 46420, + [SMALL_STATE(4194)] = 46478, + [SMALL_STATE(4195)] = 46536, + [SMALL_STATE(4196)] = 46592, + [SMALL_STATE(4197)] = 46648, + [SMALL_STATE(4198)] = 46708, + [SMALL_STATE(4199)] = 46764, + [SMALL_STATE(4200)] = 46822, + [SMALL_STATE(4201)] = 46880, + [SMALL_STATE(4202)] = 46936, + [SMALL_STATE(4203)] = 46992, + [SMALL_STATE(4204)] = 47048, + [SMALL_STATE(4205)] = 47108, + [SMALL_STATE(4206)] = 47164, + [SMALL_STATE(4207)] = 47220, + [SMALL_STATE(4208)] = 47275, + [SMALL_STATE(4209)] = 47330, + [SMALL_STATE(4210)] = 47425, + [SMALL_STATE(4211)] = 47480, + [SMALL_STATE(4212)] = 47537, + [SMALL_STATE(4213)] = 47592, + [SMALL_STATE(4214)] = 47687, + [SMALL_STATE(4215)] = 47742, + [SMALL_STATE(4216)] = 47797, + [SMALL_STATE(4217)] = 47854, + [SMALL_STATE(4218)] = 47909, + [SMALL_STATE(4219)] = 47964, + [SMALL_STATE(4220)] = 48019, + [SMALL_STATE(4221)] = 48074, + [SMALL_STATE(4222)] = 48157, + [SMALL_STATE(4223)] = 48252, + [SMALL_STATE(4224)] = 48347, + [SMALL_STATE(4225)] = 48402, + [SMALL_STATE(4226)] = 48497, + [SMALL_STATE(4227)] = 48552, + [SMALL_STATE(4228)] = 48607, + [SMALL_STATE(4229)] = 48702, + [SMALL_STATE(4230)] = 48771, + [SMALL_STATE(4231)] = 48866, + [SMALL_STATE(4232)] = 48921, + [SMALL_STATE(4233)] = 49016, + [SMALL_STATE(4234)] = 49090, + [SMALL_STATE(4235)] = 49164, + [SMALL_STATE(4236)] = 49244, + [SMALL_STATE(4237)] = 49318, + [SMALL_STATE(4238)] = 49392, + [SMALL_STATE(4239)] = 49466, + [SMALL_STATE(4240)] = 49520, + [SMALL_STATE(4241)] = 49590, + [SMALL_STATE(4242)] = 49660, + [SMALL_STATE(4243)] = 49714, + [SMALL_STATE(4244)] = 49768, + [SMALL_STATE(4245)] = 49842, + [SMALL_STATE(4246)] = 49896, + [SMALL_STATE(4247)] = 49976, + [SMALL_STATE(4248)] = 50050, + [SMALL_STATE(4249)] = 50130, + [SMALL_STATE(4250)] = 50210, + [SMALL_STATE(4251)] = 50284, + [SMALL_STATE(4252)] = 50358, + [SMALL_STATE(4253)] = 50438, + [SMALL_STATE(4254)] = 50512, + [SMALL_STATE(4255)] = 50592, + [SMALL_STATE(4256)] = 50672, + [SMALL_STATE(4257)] = 50726, + [SMALL_STATE(4258)] = 50796, + [SMALL_STATE(4259)] = 50870, + [SMALL_STATE(4260)] = 50944, + [SMALL_STATE(4261)] = 51024, + [SMALL_STATE(4262)] = 51104, + [SMALL_STATE(4263)] = 51162, + [SMALL_STATE(4264)] = 51218, + [SMALL_STATE(4265)] = 51274, + [SMALL_STATE(4266)] = 51354, + [SMALL_STATE(4267)] = 51428, + [SMALL_STATE(4268)] = 51508, + [SMALL_STATE(4269)] = 51588, + [SMALL_STATE(4270)] = 51646, + [SMALL_STATE(4271)] = 51720, + [SMALL_STATE(4272)] = 51800, + [SMALL_STATE(4273)] = 51870, + [SMALL_STATE(4274)] = 51944, + [SMALL_STATE(4275)] = 52018, + [SMALL_STATE(4276)] = 52074, + [SMALL_STATE(4277)] = 52154, + [SMALL_STATE(4278)] = 52234, + [SMALL_STATE(4279)] = 52292, + [SMALL_STATE(4280)] = 52350, + [SMALL_STATE(4281)] = 52430, + [SMALL_STATE(4282)] = 52488, + [SMALL_STATE(4283)] = 52559, + [SMALL_STATE(4284)] = 52628, + [SMALL_STATE(4285)] = 52685, + [SMALL_STATE(4286)] = 52740, + [SMALL_STATE(4287)] = 52797, + [SMALL_STATE(4288)] = 52866, + [SMALL_STATE(4289)] = 52935, + [SMALL_STATE(4290)] = 52994, + [SMALL_STATE(4291)] = 53053, + [SMALL_STATE(4292)] = 53110, + [SMALL_STATE(4293)] = 53181, + [SMALL_STATE(4294)] = 53238, + [SMALL_STATE(4295)] = 53291, + [SMALL_STATE(4296)] = 53346, + [SMALL_STATE(4297)] = 53405, + [SMALL_STATE(4298)] = 53462, + [SMALL_STATE(4299)] = 53515, + [SMALL_STATE(4300)] = 53584, + [SMALL_STATE(4301)] = 53651, + [SMALL_STATE(4302)] = 53718, + [SMALL_STATE(4303)] = 53775, + [SMALL_STATE(4304)] = 53844, + [SMALL_STATE(4305)] = 53911, + [SMALL_STATE(4306)] = 53966, + [SMALL_STATE(4307)] = 54037, + [SMALL_STATE(4308)] = 54106, + [SMALL_STATE(4309)] = 54173, + [SMALL_STATE(4310)] = 54230, + [SMALL_STATE(4311)] = 54283, + [SMALL_STATE(4312)] = 54352, + [SMALL_STATE(4313)] = 54407, + [SMALL_STATE(4314)] = 54478, + [SMALL_STATE(4315)] = 54535, + [SMALL_STATE(4316)] = 54592, + [SMALL_STATE(4317)] = 54645, + [SMALL_STATE(4318)] = 54722, + [SMALL_STATE(4319)] = 54779, + [SMALL_STATE(4320)] = 54834, + [SMALL_STATE(4321)] = 54903, + [SMALL_STATE(4322)] = 54972, + [SMALL_STATE(4323)] = 55041, + [SMALL_STATE(4324)] = 55110, + [SMALL_STATE(4325)] = 55167, + [SMALL_STATE(4326)] = 55236, + [SMALL_STATE(4327)] = 55305, + [SMALL_STATE(4328)] = 55374, + [SMALL_STATE(4329)] = 55442, + [SMALL_STATE(4330)] = 55510, + [SMALL_STATE(4331)] = 55578, + [SMALL_STATE(4332)] = 55646, + [SMALL_STATE(4333)] = 55714, + [SMALL_STATE(4334)] = 55782, + [SMALL_STATE(4335)] = 55850, + [SMALL_STATE(4336)] = 55918, + [SMALL_STATE(4337)] = 55986, + [SMALL_STATE(4338)] = 56054, + [SMALL_STATE(4339)] = 56122, + [SMALL_STATE(4340)] = 56190, + [SMALL_STATE(4341)] = 56258, + [SMALL_STATE(4342)] = 56326, + [SMALL_STATE(4343)] = 56394, + [SMALL_STATE(4344)] = 56480, + [SMALL_STATE(4345)] = 56548, + [SMALL_STATE(4346)] = 56616, + [SMALL_STATE(4347)] = 56668, + [SMALL_STATE(4348)] = 56720, + [SMALL_STATE(4349)] = 56788, + [SMALL_STATE(4350)] = 56856, + [SMALL_STATE(4351)] = 56924, + [SMALL_STATE(4352)] = 56992, + [SMALL_STATE(4353)] = 57060, + [SMALL_STATE(4354)] = 57128, + [SMALL_STATE(4355)] = 57196, + [SMALL_STATE(4356)] = 57264, + [SMALL_STATE(4357)] = 57320, + [SMALL_STATE(4358)] = 57376, + [SMALL_STATE(4359)] = 57444, + [SMALL_STATE(4360)] = 57512, + [SMALL_STATE(4361)] = 57564, + [SMALL_STATE(4362)] = 57622, + [SMALL_STATE(4363)] = 57690, + [SMALL_STATE(4364)] = 57758, + [SMALL_STATE(4365)] = 57814, + [SMALL_STATE(4366)] = 57882, + [SMALL_STATE(4367)] = 57950, + [SMALL_STATE(4368)] = 58018, + [SMALL_STATE(4369)] = 58086, + [SMALL_STATE(4370)] = 58138, + [SMALL_STATE(4371)] = 58206, + [SMALL_STATE(4372)] = 58274, + [SMALL_STATE(4373)] = 58342, + [SMALL_STATE(4374)] = 58410, + [SMALL_STATE(4375)] = 58478, + [SMALL_STATE(4376)] = 58546, + [SMALL_STATE(4377)] = 58614, + [SMALL_STATE(4378)] = 58666, + [SMALL_STATE(4379)] = 58734, + [SMALL_STATE(4380)] = 58802, + [SMALL_STATE(4381)] = 58870, + [SMALL_STATE(4382)] = 58938, + [SMALL_STATE(4383)] = 59006, + [SMALL_STATE(4384)] = 59074, + [SMALL_STATE(4385)] = 59142, + [SMALL_STATE(4386)] = 59210, + [SMALL_STATE(4387)] = 59278, + [SMALL_STATE(4388)] = 59330, + [SMALL_STATE(4389)] = 59384, + [SMALL_STATE(4390)] = 59470, + [SMALL_STATE(4391)] = 59556, + [SMALL_STATE(4392)] = 59624, + [SMALL_STATE(4393)] = 59692, + [SMALL_STATE(4394)] = 59744, + [SMALL_STATE(4395)] = 59796, + [SMALL_STATE(4396)] = 59852, + [SMALL_STATE(4397)] = 59920, + [SMALL_STATE(4398)] = 59988, + [SMALL_STATE(4399)] = 60040, + [SMALL_STATE(4400)] = 60108, + [SMALL_STATE(4401)] = 60176, + [SMALL_STATE(4402)] = 60244, + [SMALL_STATE(4403)] = 60312, + [SMALL_STATE(4404)] = 60366, + [SMALL_STATE(4405)] = 60434, + [SMALL_STATE(4406)] = 60502, + [SMALL_STATE(4407)] = 60570, + [SMALL_STATE(4408)] = 60622, + [SMALL_STATE(4409)] = 60690, + [SMALL_STATE(4410)] = 60758, + [SMALL_STATE(4411)] = 60826, + [SMALL_STATE(4412)] = 60894, + [SMALL_STATE(4413)] = 60946, + [SMALL_STATE(4414)] = 60998, + [SMALL_STATE(4415)] = 61066, + [SMALL_STATE(4416)] = 61134, + [SMALL_STATE(4417)] = 61202, + [SMALL_STATE(4418)] = 61254, + [SMALL_STATE(4419)] = 61322, + [SMALL_STATE(4420)] = 61390, + [SMALL_STATE(4421)] = 61442, + [SMALL_STATE(4422)] = 61510, + [SMALL_STATE(4423)] = 61566, + [SMALL_STATE(4424)] = 61634, + [SMALL_STATE(4425)] = 61702, + [SMALL_STATE(4426)] = 61770, + [SMALL_STATE(4427)] = 61838, + [SMALL_STATE(4428)] = 61906, + [SMALL_STATE(4429)] = 61958, + [SMALL_STATE(4430)] = 62026, + [SMALL_STATE(4431)] = 62094, + [SMALL_STATE(4432)] = 62162, + [SMALL_STATE(4433)] = 62230, + [SMALL_STATE(4434)] = 62298, + [SMALL_STATE(4435)] = 62366, + [SMALL_STATE(4436)] = 62418, + [SMALL_STATE(4437)] = 62486, + [SMALL_STATE(4438)] = 62554, + [SMALL_STATE(4439)] = 62622, + [SMALL_STATE(4440)] = 62690, + [SMALL_STATE(4441)] = 62742, + [SMALL_STATE(4442)] = 62810, + [SMALL_STATE(4443)] = 62878, + [SMALL_STATE(4444)] = 62946, + [SMALL_STATE(4445)] = 63014, + [SMALL_STATE(4446)] = 63082, + [SMALL_STATE(4447)] = 63150, + [SMALL_STATE(4448)] = 63202, + [SMALL_STATE(4449)] = 63270, + [SMALL_STATE(4450)] = 63338, + [SMALL_STATE(4451)] = 63406, + [SMALL_STATE(4452)] = 63474, + [SMALL_STATE(4453)] = 63542, + [SMALL_STATE(4454)] = 63610, + [SMALL_STATE(4455)] = 63678, + [SMALL_STATE(4456)] = 63746, + [SMALL_STATE(4457)] = 63798, + [SMALL_STATE(4458)] = 63866, + [SMALL_STATE(4459)] = 63918, + [SMALL_STATE(4460)] = 63986, + [SMALL_STATE(4461)] = 64054, + [SMALL_STATE(4462)] = 64122, + [SMALL_STATE(4463)] = 64174, + [SMALL_STATE(4464)] = 64242, + [SMALL_STATE(4465)] = 64310, + [SMALL_STATE(4466)] = 64378, + [SMALL_STATE(4467)] = 64446, + [SMALL_STATE(4468)] = 64514, + [SMALL_STATE(4469)] = 64582, + [SMALL_STATE(4470)] = 64650, + [SMALL_STATE(4471)] = 64702, + [SMALL_STATE(4472)] = 64770, + [SMALL_STATE(4473)] = 64822, + [SMALL_STATE(4474)] = 64890, + [SMALL_STATE(4475)] = 64958, + [SMALL_STATE(4476)] = 65026, + [SMALL_STATE(4477)] = 65094, + [SMALL_STATE(4478)] = 65162, + [SMALL_STATE(4479)] = 65230, + [SMALL_STATE(4480)] = 65298, + [SMALL_STATE(4481)] = 65366, + [SMALL_STATE(4482)] = 65422, + [SMALL_STATE(4483)] = 65490, + [SMALL_STATE(4484)] = 65558, + [SMALL_STATE(4485)] = 65626, + [SMALL_STATE(4486)] = 65694, + [SMALL_STATE(4487)] = 65762, + [SMALL_STATE(4488)] = 65830, + [SMALL_STATE(4489)] = 65898, + [SMALL_STATE(4490)] = 65952, + [SMALL_STATE(4491)] = 66020, + [SMALL_STATE(4492)] = 66088, + [SMALL_STATE(4493)] = 66156, + [SMALL_STATE(4494)] = 66224, + [SMALL_STATE(4495)] = 66292, + [SMALL_STATE(4496)] = 66360, + [SMALL_STATE(4497)] = 66428, + [SMALL_STATE(4498)] = 66496, + [SMALL_STATE(4499)] = 66564, + [SMALL_STATE(4500)] = 66632, + [SMALL_STATE(4501)] = 66700, + [SMALL_STATE(4502)] = 66768, + [SMALL_STATE(4503)] = 66854, + [SMALL_STATE(4504)] = 66922, + [SMALL_STATE(4505)] = 66990, + [SMALL_STATE(4506)] = 67058, + [SMALL_STATE(4507)] = 67110, + [SMALL_STATE(4508)] = 67178, + [SMALL_STATE(4509)] = 67246, + [SMALL_STATE(4510)] = 67314, + [SMALL_STATE(4511)] = 67382, + [SMALL_STATE(4512)] = 67450, + [SMALL_STATE(4513)] = 67504, + [SMALL_STATE(4514)] = 67572, + [SMALL_STATE(4515)] = 67640, + [SMALL_STATE(4516)] = 67708, + [SMALL_STATE(4517)] = 67776, + [SMALL_STATE(4518)] = 67844, + [SMALL_STATE(4519)] = 67912, + [SMALL_STATE(4520)] = 67980, + [SMALL_STATE(4521)] = 68048, + [SMALL_STATE(4522)] = 68116, + [SMALL_STATE(4523)] = 68184, + [SMALL_STATE(4524)] = 68252, + [SMALL_STATE(4525)] = 68320, + [SMALL_STATE(4526)] = 68388, + [SMALL_STATE(4527)] = 68456, + [SMALL_STATE(4528)] = 68524, + [SMALL_STATE(4529)] = 68592, + [SMALL_STATE(4530)] = 68660, + [SMALL_STATE(4531)] = 68728, + [SMALL_STATE(4532)] = 68796, + [SMALL_STATE(4533)] = 68864, + [SMALL_STATE(4534)] = 68932, + [SMALL_STATE(4535)] = 69000, + [SMALL_STATE(4536)] = 69068, + [SMALL_STATE(4537)] = 69136, + [SMALL_STATE(4538)] = 69204, + [SMALL_STATE(4539)] = 69272, + [SMALL_STATE(4540)] = 69340, + [SMALL_STATE(4541)] = 69408, + [SMALL_STATE(4542)] = 69476, + [SMALL_STATE(4543)] = 69544, + [SMALL_STATE(4544)] = 69612, + [SMALL_STATE(4545)] = 69680, + [SMALL_STATE(4546)] = 69748, + [SMALL_STATE(4547)] = 69800, + [SMALL_STATE(4548)] = 69868, + [SMALL_STATE(4549)] = 69936, + [SMALL_STATE(4550)] = 70004, + [SMALL_STATE(4551)] = 70072, + [SMALL_STATE(4552)] = 70140, + [SMALL_STATE(4553)] = 70208, + [SMALL_STATE(4554)] = 70276, + [SMALL_STATE(4555)] = 70344, + [SMALL_STATE(4556)] = 70412, + [SMALL_STATE(4557)] = 70480, + [SMALL_STATE(4558)] = 70548, + [SMALL_STATE(4559)] = 70616, + [SMALL_STATE(4560)] = 70684, + [SMALL_STATE(4561)] = 70752, + [SMALL_STATE(4562)] = 70804, + [SMALL_STATE(4563)] = 70870, + [SMALL_STATE(4564)] = 70938, + [SMALL_STATE(4565)] = 71006, + [SMALL_STATE(4566)] = 71058, + [SMALL_STATE(4567)] = 71126, + [SMALL_STATE(4568)] = 71194, + [SMALL_STATE(4569)] = 71262, + [SMALL_STATE(4570)] = 71330, + [SMALL_STATE(4571)] = 71398, + [SMALL_STATE(4572)] = 71450, + [SMALL_STATE(4573)] = 71518, + [SMALL_STATE(4574)] = 71586, + [SMALL_STATE(4575)] = 71654, + [SMALL_STATE(4576)] = 71722, + [SMALL_STATE(4577)] = 71776, + [SMALL_STATE(4578)] = 71828, + [SMALL_STATE(4579)] = 71896, + [SMALL_STATE(4580)] = 71952, + [SMALL_STATE(4581)] = 72020, + [SMALL_STATE(4582)] = 72076, + [SMALL_STATE(4583)] = 72144, + [SMALL_STATE(4584)] = 72212, + [SMALL_STATE(4585)] = 72280, + [SMALL_STATE(4586)] = 72348, + [SMALL_STATE(4587)] = 72416, + [SMALL_STATE(4588)] = 72484, + [SMALL_STATE(4589)] = 72552, + [SMALL_STATE(4590)] = 72620, + [SMALL_STATE(4591)] = 72688, + [SMALL_STATE(4592)] = 72756, + [SMALL_STATE(4593)] = 72824, + [SMALL_STATE(4594)] = 72892, + [SMALL_STATE(4595)] = 72960, + [SMALL_STATE(4596)] = 73028, + [SMALL_STATE(4597)] = 73096, + [SMALL_STATE(4598)] = 73164, + [SMALL_STATE(4599)] = 73220, + [SMALL_STATE(4600)] = 73288, + [SMALL_STATE(4601)] = 73356, + [SMALL_STATE(4602)] = 73424, + [SMALL_STATE(4603)] = 73492, + [SMALL_STATE(4604)] = 73560, + [SMALL_STATE(4605)] = 73628, + [SMALL_STATE(4606)] = 73696, + [SMALL_STATE(4607)] = 73764, + [SMALL_STATE(4608)] = 73832, + [SMALL_STATE(4609)] = 73900, + [SMALL_STATE(4610)] = 73968, + [SMALL_STATE(4611)] = 74036, + [SMALL_STATE(4612)] = 74094, + [SMALL_STATE(4613)] = 74162, + [SMALL_STATE(4614)] = 74230, + [SMALL_STATE(4615)] = 74298, + [SMALL_STATE(4616)] = 74350, + [SMALL_STATE(4617)] = 74418, + [SMALL_STATE(4618)] = 74486, + [SMALL_STATE(4619)] = 74554, + [SMALL_STATE(4620)] = 74622, + [SMALL_STATE(4621)] = 74690, + [SMALL_STATE(4622)] = 74758, + [SMALL_STATE(4623)] = 74826, + [SMALL_STATE(4624)] = 74878, + [SMALL_STATE(4625)] = 74930, + [SMALL_STATE(4626)] = 74998, + [SMALL_STATE(4627)] = 75066, + [SMALL_STATE(4628)] = 75118, + [SMALL_STATE(4629)] = 75170, + [SMALL_STATE(4630)] = 75222, + [SMALL_STATE(4631)] = 75290, + [SMALL_STATE(4632)] = 75358, + [SMALL_STATE(4633)] = 75410, + [SMALL_STATE(4634)] = 75478, + [SMALL_STATE(4635)] = 75544, + [SMALL_STATE(4636)] = 75612, + [SMALL_STATE(4637)] = 75668, + [SMALL_STATE(4638)] = 75720, + [SMALL_STATE(4639)] = 75788, + [SMALL_STATE(4640)] = 75840, + [SMALL_STATE(4641)] = 75908, + [SMALL_STATE(4642)] = 75976, + [SMALL_STATE(4643)] = 76044, + [SMALL_STATE(4644)] = 76096, + [SMALL_STATE(4645)] = 76164, + [SMALL_STATE(4646)] = 76220, + [SMALL_STATE(4647)] = 76288, + [SMALL_STATE(4648)] = 76374, + [SMALL_STATE(4649)] = 76442, + [SMALL_STATE(4650)] = 76510, + [SMALL_STATE(4651)] = 76578, + [SMALL_STATE(4652)] = 76646, + [SMALL_STATE(4653)] = 76714, + [SMALL_STATE(4654)] = 76782, + [SMALL_STATE(4655)] = 76850, + [SMALL_STATE(4656)] = 76918, + [SMALL_STATE(4657)] = 76986, + [SMALL_STATE(4658)] = 77052, + [SMALL_STATE(4659)] = 77120, + [SMALL_STATE(4660)] = 77188, + [SMALL_STATE(4661)] = 77256, + [SMALL_STATE(4662)] = 77312, + [SMALL_STATE(4663)] = 77380, + [SMALL_STATE(4664)] = 77432, + [SMALL_STATE(4665)] = 77484, + [SMALL_STATE(4666)] = 77538, + [SMALL_STATE(4667)] = 77606, + [SMALL_STATE(4668)] = 77672, + [SMALL_STATE(4669)] = 77740, + [SMALL_STATE(4670)] = 77808, + [SMALL_STATE(4671)] = 77876, + [SMALL_STATE(4672)] = 77944, + [SMALL_STATE(4673)] = 78012, + [SMALL_STATE(4674)] = 78080, + [SMALL_STATE(4675)] = 78148, + [SMALL_STATE(4676)] = 78216, + [SMALL_STATE(4677)] = 78284, + [SMALL_STATE(4678)] = 78352, + [SMALL_STATE(4679)] = 78420, + [SMALL_STATE(4680)] = 78488, + [SMALL_STATE(4681)] = 78556, + [SMALL_STATE(4682)] = 78624, + [SMALL_STATE(4683)] = 78676, + [SMALL_STATE(4684)] = 78744, + [SMALL_STATE(4685)] = 78812, + [SMALL_STATE(4686)] = 78880, + [SMALL_STATE(4687)] = 78948, + [SMALL_STATE(4688)] = 79016, + [SMALL_STATE(4689)] = 79084, + [SMALL_STATE(4690)] = 79152, + [SMALL_STATE(4691)] = 79220, + [SMALL_STATE(4692)] = 79272, + [SMALL_STATE(4693)] = 79340, + [SMALL_STATE(4694)] = 79408, + [SMALL_STATE(4695)] = 79460, + [SMALL_STATE(4696)] = 79528, + [SMALL_STATE(4697)] = 79596, + [SMALL_STATE(4698)] = 79664, + [SMALL_STATE(4699)] = 79732, + [SMALL_STATE(4700)] = 79800, + [SMALL_STATE(4701)] = 79852, + [SMALL_STATE(4702)] = 79920, + [SMALL_STATE(4703)] = 79988, + [SMALL_STATE(4704)] = 80056, + [SMALL_STATE(4705)] = 80124, + [SMALL_STATE(4706)] = 80192, + [SMALL_STATE(4707)] = 80246, + [SMALL_STATE(4708)] = 80302, + [SMALL_STATE(4709)] = 80370, + [SMALL_STATE(4710)] = 80438, + [SMALL_STATE(4711)] = 80506, + [SMALL_STATE(4712)] = 80574, + [SMALL_STATE(4713)] = 80642, + [SMALL_STATE(4714)] = 80710, + [SMALL_STATE(4715)] = 80778, + [SMALL_STATE(4716)] = 80846, + [SMALL_STATE(4717)] = 80914, + [SMALL_STATE(4718)] = 80966, + [SMALL_STATE(4719)] = 81034, + [SMALL_STATE(4720)] = 81102, + [SMALL_STATE(4721)] = 81153, + [SMALL_STATE(4722)] = 81208, + [SMALL_STATE(4723)] = 81261, + [SMALL_STATE(4724)] = 81312, + [SMALL_STATE(4725)] = 81365, + [SMALL_STATE(4726)] = 81418, + [SMALL_STATE(4727)] = 81471, + [SMALL_STATE(4728)] = 81524, + [SMALL_STATE(4729)] = 81577, + [SMALL_STATE(4730)] = 81634, + [SMALL_STATE(4731)] = 81687, + [SMALL_STATE(4732)] = 81754, + [SMALL_STATE(4733)] = 81821, + [SMALL_STATE(4734)] = 81872, + [SMALL_STATE(4735)] = 81939, + [SMALL_STATE(4736)] = 82006, + [SMALL_STATE(4737)] = 82073, + [SMALL_STATE(4738)] = 82140, + [SMALL_STATE(4739)] = 82191, + [SMALL_STATE(4740)] = 82258, + [SMALL_STATE(4741)] = 82325, + [SMALL_STATE(4742)] = 82376, + [SMALL_STATE(4743)] = 82427, + [SMALL_STATE(4744)] = 82482, + [SMALL_STATE(4745)] = 82533, + [SMALL_STATE(4746)] = 82588, + [SMALL_STATE(4747)] = 82639, + [SMALL_STATE(4748)] = 82690, + [SMALL_STATE(4749)] = 82741, + [SMALL_STATE(4750)] = 82812, + [SMALL_STATE(4751)] = 82879, + [SMALL_STATE(4752)] = 82930, + [SMALL_STATE(4753)] = 82981, + [SMALL_STATE(4754)] = 83032, + [SMALL_STATE(4755)] = 83085, + [SMALL_STATE(4756)] = 83138, + [SMALL_STATE(4757)] = 83189, + [SMALL_STATE(4758)] = 83242, + [SMALL_STATE(4759)] = 83297, + [SMALL_STATE(4760)] = 83350, + [SMALL_STATE(4761)] = 83417, + [SMALL_STATE(4762)] = 83470, + [SMALL_STATE(4763)] = 83525, + [SMALL_STATE(4764)] = 83576, + [SMALL_STATE(4765)] = 83653, + [SMALL_STATE(4766)] = 83704, + [SMALL_STATE(4767)] = 83755, + [SMALL_STATE(4768)] = 83806, + [SMALL_STATE(4769)] = 83877, + [SMALL_STATE(4770)] = 83930, + [SMALL_STATE(4771)] = 83985, + [SMALL_STATE(4772)] = 84038, + [SMALL_STATE(4773)] = 84115, + [SMALL_STATE(4774)] = 84166, + [SMALL_STATE(4775)] = 84219, + [SMALL_STATE(4776)] = 84274, + [SMALL_STATE(4777)] = 84327, + [SMALL_STATE(4778)] = 84404, + [SMALL_STATE(4779)] = 84455, + [SMALL_STATE(4780)] = 84506, + [SMALL_STATE(4781)] = 84557, + [SMALL_STATE(4782)] = 84608, + [SMALL_STATE(4783)] = 84659, + [SMALL_STATE(4784)] = 84710, + [SMALL_STATE(4785)] = 84763, + [SMALL_STATE(4786)] = 84814, + [SMALL_STATE(4787)] = 84865, + [SMALL_STATE(4788)] = 84916, + [SMALL_STATE(4789)] = 84981, + [SMALL_STATE(4790)] = 85046, + [SMALL_STATE(4791)] = 85122, + [SMALL_STATE(4792)] = 85172, + [SMALL_STATE(4793)] = 85238, + [SMALL_STATE(4794)] = 85288, + [SMALL_STATE(4795)] = 85338, + [SMALL_STATE(4796)] = 85388, + [SMALL_STATE(4797)] = 85438, + [SMALL_STATE(4798)] = 85488, + [SMALL_STATE(4799)] = 85538, + [SMALL_STATE(4800)] = 85588, + [SMALL_STATE(4801)] = 85638, + [SMALL_STATE(4802)] = 85704, + [SMALL_STATE(4803)] = 85754, + [SMALL_STATE(4804)] = 85804, + [SMALL_STATE(4805)] = 85870, + [SMALL_STATE(4806)] = 85920, + [SMALL_STATE(4807)] = 85986, + [SMALL_STATE(4808)] = 86036, + [SMALL_STATE(4809)] = 86086, + [SMALL_STATE(4810)] = 86136, + [SMALL_STATE(4811)] = 86186, + [SMALL_STATE(4812)] = 86236, + [SMALL_STATE(4813)] = 86286, + [SMALL_STATE(4814)] = 86336, + [SMALL_STATE(4815)] = 86402, + [SMALL_STATE(4816)] = 86452, + [SMALL_STATE(4817)] = 86502, + [SMALL_STATE(4818)] = 86552, + [SMALL_STATE(4819)] = 86602, + [SMALL_STATE(4820)] = 86678, + [SMALL_STATE(4821)] = 86728, + [SMALL_STATE(4822)] = 86804, + [SMALL_STATE(4823)] = 86854, + [SMALL_STATE(4824)] = 86904, + [SMALL_STATE(4825)] = 86956, + [SMALL_STATE(4826)] = 87006, + [SMALL_STATE(4827)] = 87082, + [SMALL_STATE(4828)] = 87148, + [SMALL_STATE(4829)] = 87202, + [SMALL_STATE(4830)] = 87254, + [SMALL_STATE(4831)] = 87308, + [SMALL_STATE(4832)] = 87374, + [SMALL_STATE(4833)] = 87440, + [SMALL_STATE(4834)] = 87506, + [SMALL_STATE(4835)] = 87576, + [SMALL_STATE(4836)] = 87626, + [SMALL_STATE(4837)] = 87692, + [SMALL_STATE(4838)] = 87746, + [SMALL_STATE(4839)] = 87796, + [SMALL_STATE(4840)] = 87846, + [SMALL_STATE(4841)] = 87924, + [SMALL_STATE(4842)] = 87990, + [SMALL_STATE(4843)] = 88056, + [SMALL_STATE(4844)] = 88122, + [SMALL_STATE(4845)] = 88188, + [SMALL_STATE(4846)] = 88254, + [SMALL_STATE(4847)] = 88320, + [SMALL_STATE(4848)] = 88370, + [SMALL_STATE(4849)] = 88420, + [SMALL_STATE(4850)] = 88490, + [SMALL_STATE(4851)] = 88540, + [SMALL_STATE(4852)] = 88594, + [SMALL_STATE(4853)] = 88644, + [SMALL_STATE(4854)] = 88694, + [SMALL_STATE(4855)] = 88744, + [SMALL_STATE(4856)] = 88794, + [SMALL_STATE(4857)] = 88846, + [SMALL_STATE(4858)] = 88896, + [SMALL_STATE(4859)] = 88948, + [SMALL_STATE(4860)] = 88998, + [SMALL_STATE(4861)] = 89048, + [SMALL_STATE(4862)] = 89100, + [SMALL_STATE(4863)] = 89150, + [SMALL_STATE(4864)] = 89200, + [SMALL_STATE(4865)] = 89252, + [SMALL_STATE(4866)] = 89304, + [SMALL_STATE(4867)] = 89354, + [SMALL_STATE(4868)] = 89404, + [SMALL_STATE(4869)] = 89456, + [SMALL_STATE(4870)] = 89522, + [SMALL_STATE(4871)] = 89574, + [SMALL_STATE(4872)] = 89624, + [SMALL_STATE(4873)] = 89676, + [SMALL_STATE(4874)] = 89728, + [SMALL_STATE(4875)] = 89778, + [SMALL_STATE(4876)] = 89828, + [SMALL_STATE(4877)] = 89878, + [SMALL_STATE(4878)] = 89928, + [SMALL_STATE(4879)] = 89978, + [SMALL_STATE(4880)] = 90030, + [SMALL_STATE(4881)] = 90080, + [SMALL_STATE(4882)] = 90158, + [SMALL_STATE(4883)] = 90208, + [SMALL_STATE(4884)] = 90258, + [SMALL_STATE(4885)] = 90308, + [SMALL_STATE(4886)] = 90358, + [SMALL_STATE(4887)] = 90408, + [SMALL_STATE(4888)] = 90458, + [SMALL_STATE(4889)] = 90510, + [SMALL_STATE(4890)] = 90560, + [SMALL_STATE(4891)] = 90610, + [SMALL_STATE(4892)] = 90660, + [SMALL_STATE(4893)] = 90710, + [SMALL_STATE(4894)] = 90762, + [SMALL_STATE(4895)] = 90812, + [SMALL_STATE(4896)] = 90862, + [SMALL_STATE(4897)] = 90912, + [SMALL_STATE(4898)] = 90962, + [SMALL_STATE(4899)] = 91012, + [SMALL_STATE(4900)] = 91062, + [SMALL_STATE(4901)] = 91112, + [SMALL_STATE(4902)] = 91162, + [SMALL_STATE(4903)] = 91211, + [SMALL_STATE(4904)] = 91276, + [SMALL_STATE(4905)] = 91329, + [SMALL_STATE(4906)] = 91378, + [SMALL_STATE(4907)] = 91443, + [SMALL_STATE(4908)] = 91492, + [SMALL_STATE(4909)] = 91545, + [SMALL_STATE(4910)] = 91594, + [SMALL_STATE(4911)] = 91659, + [SMALL_STATE(4912)] = 91712, + [SMALL_STATE(4913)] = 91761, + [SMALL_STATE(4914)] = 91826, + [SMALL_STATE(4915)] = 91891, + [SMALL_STATE(4916)] = 91956, + [SMALL_STATE(4917)] = 92007, + [SMALL_STATE(4918)] = 92072, + [SMALL_STATE(4919)] = 92137, + [SMALL_STATE(4920)] = 92202, + [SMALL_STATE(4921)] = 92255, + [SMALL_STATE(4922)] = 92304, + [SMALL_STATE(4923)] = 92369, + [SMALL_STATE(4924)] = 92418, + [SMALL_STATE(4925)] = 92469, + [SMALL_STATE(4926)] = 92518, + [SMALL_STATE(4927)] = 92595, + [SMALL_STATE(4928)] = 92644, + [SMALL_STATE(4929)] = 92709, + [SMALL_STATE(4930)] = 92762, + [SMALL_STATE(4931)] = 92811, + [SMALL_STATE(4932)] = 92860, + [SMALL_STATE(4933)] = 92909, + [SMALL_STATE(4934)] = 92958, + [SMALL_STATE(4935)] = 93007, + [SMALL_STATE(4936)] = 93056, + [SMALL_STATE(4937)] = 93105, + [SMALL_STATE(4938)] = 93154, + [SMALL_STATE(4939)] = 93203, + [SMALL_STATE(4940)] = 93252, + [SMALL_STATE(4941)] = 93301, + [SMALL_STATE(4942)] = 93364, + [SMALL_STATE(4943)] = 93413, + [SMALL_STATE(4944)] = 93462, + [SMALL_STATE(4945)] = 93511, + [SMALL_STATE(4946)] = 93560, + [SMALL_STATE(4947)] = 93609, + [SMALL_STATE(4948)] = 93658, + [SMALL_STATE(4949)] = 93707, + [SMALL_STATE(4950)] = 93756, + [SMALL_STATE(4951)] = 93805, + [SMALL_STATE(4952)] = 93858, + [SMALL_STATE(4953)] = 93923, + [SMALL_STATE(4954)] = 93972, + [SMALL_STATE(4955)] = 94047, + [SMALL_STATE(4956)] = 94096, + [SMALL_STATE(4957)] = 94145, + [SMALL_STATE(4958)] = 94194, + [SMALL_STATE(4959)] = 94243, + [SMALL_STATE(4960)] = 94306, + [SMALL_STATE(4961)] = 94357, + [SMALL_STATE(4962)] = 94406, + [SMALL_STATE(4963)] = 94455, + [SMALL_STATE(4964)] = 94504, + [SMALL_STATE(4965)] = 94553, + [SMALL_STATE(4966)] = 94602, + [SMALL_STATE(4967)] = 94665, + [SMALL_STATE(4968)] = 94718, + [SMALL_STATE(4969)] = 94781, + [SMALL_STATE(4970)] = 94830, + [SMALL_STATE(4971)] = 94907, + [SMALL_STATE(4972)] = 94958, + [SMALL_STATE(4973)] = 95007, + [SMALL_STATE(4974)] = 95060, + [SMALL_STATE(4975)] = 95109, + [SMALL_STATE(4976)] = 95158, + [SMALL_STATE(4977)] = 95208, + [SMALL_STATE(4978)] = 95258, + [SMALL_STATE(4979)] = 95332, + [SMALL_STATE(4980)] = 95382, + [SMALL_STATE(4981)] = 95430, + [SMALL_STATE(4982)] = 95480, + [SMALL_STATE(4983)] = 95530, + [SMALL_STATE(4984)] = 95578, + [SMALL_STATE(4985)] = 95630, + [SMALL_STATE(4986)] = 95704, + [SMALL_STATE(4987)] = 95756, + [SMALL_STATE(4988)] = 95808, + [SMALL_STATE(4989)] = 95862, + [SMALL_STATE(4990)] = 95910, + [SMALL_STATE(4991)] = 95962, + [SMALL_STATE(4992)] = 96010, + [SMALL_STATE(4993)] = 96062, + [SMALL_STATE(4994)] = 96136, + [SMALL_STATE(4995)] = 96190, + [SMALL_STATE(4996)] = 96254, + [SMALL_STATE(4997)] = 96328, + [SMALL_STATE(4998)] = 96378, + [SMALL_STATE(4999)] = 96432, + [SMALL_STATE(5000)] = 96484, + [SMALL_STATE(5001)] = 96536, + [SMALL_STATE(5002)] = 96586, + [SMALL_STATE(5003)] = 96638, + [SMALL_STATE(5004)] = 96688, + [SMALL_STATE(5005)] = 96762, + [SMALL_STATE(5006)] = 96836, + [SMALL_STATE(5007)] = 96884, + [SMALL_STATE(5008)] = 96932, + [SMALL_STATE(5009)] = 97006, + [SMALL_STATE(5010)] = 97080, + [SMALL_STATE(5011)] = 97132, + [SMALL_STATE(5012)] = 97180, + [SMALL_STATE(5013)] = 97254, + [SMALL_STATE(5014)] = 97302, + [SMALL_STATE(5015)] = 97366, + [SMALL_STATE(5016)] = 97416, + [SMALL_STATE(5017)] = 97465, + [SMALL_STATE(5018)] = 97514, + [SMALL_STATE(5019)] = 97561, + [SMALL_STATE(5020)] = 97608, + [SMALL_STATE(5021)] = 97659, + [SMALL_STATE(5022)] = 97706, + [SMALL_STATE(5023)] = 97753, + [SMALL_STATE(5024)] = 97800, + [SMALL_STATE(5025)] = 97847, + [SMALL_STATE(5026)] = 97894, + [SMALL_STATE(5027)] = 97941, + [SMALL_STATE(5028)] = 97988, + [SMALL_STATE(5029)] = 98035, + [SMALL_STATE(5030)] = 98082, + [SMALL_STATE(5031)] = 98135, + [SMALL_STATE(5032)] = 98186, + [SMALL_STATE(5033)] = 98233, + [SMALL_STATE(5034)] = 98282, + [SMALL_STATE(5035)] = 98329, + [SMALL_STATE(5036)] = 98380, + [SMALL_STATE(5037)] = 98431, + [SMALL_STATE(5038)] = 98478, + [SMALL_STATE(5039)] = 98525, + [SMALL_STATE(5040)] = 98572, + [SMALL_STATE(5041)] = 98619, + [SMALL_STATE(5042)] = 98666, + [SMALL_STATE(5043)] = 98713, + [SMALL_STATE(5044)] = 98760, + [SMALL_STATE(5045)] = 98807, + [SMALL_STATE(5046)] = 98854, + [SMALL_STATE(5047)] = 98901, + [SMALL_STATE(5048)] = 98948, + [SMALL_STATE(5049)] = 99015, + [SMALL_STATE(5050)] = 99066, + [SMALL_STATE(5051)] = 99115, + [SMALL_STATE(5052)] = 99164, + [SMALL_STATE(5053)] = 99211, + [SMALL_STATE(5054)] = 99260, + [SMALL_STATE(5055)] = 99307, + [SMALL_STATE(5056)] = 99354, + [SMALL_STATE(5057)] = 99403, + [SMALL_STATE(5058)] = 99450, + [SMALL_STATE(5059)] = 99501, + [SMALL_STATE(5060)] = 99572, + [SMALL_STATE(5061)] = 99619, + [SMALL_STATE(5062)] = 99668, + [SMALL_STATE(5063)] = 99717, + [SMALL_STATE(5064)] = 99768, + [SMALL_STATE(5065)] = 99815, + [SMALL_STATE(5066)] = 99862, + [SMALL_STATE(5067)] = 99913, + [SMALL_STATE(5068)] = 99960, + [SMALL_STATE(5069)] = 100011, + [SMALL_STATE(5070)] = 100058, + [SMALL_STATE(5071)] = 100107, + [SMALL_STATE(5072)] = 100154, + [SMALL_STATE(5073)] = 100201, + [SMALL_STATE(5074)] = 100248, + [SMALL_STATE(5075)] = 100297, + [SMALL_STATE(5076)] = 100345, + [SMALL_STATE(5077)] = 100391, + [SMALL_STATE(5078)] = 100435, + [SMALL_STATE(5079)] = 100481, + [SMALL_STATE(5080)] = 100527, + [SMALL_STATE(5081)] = 100573, + [SMALL_STATE(5082)] = 100619, + [SMALL_STATE(5083)] = 100665, + [SMALL_STATE(5084)] = 100711, + [SMALL_STATE(5085)] = 100757, + [SMALL_STATE(5086)] = 100803, + [SMALL_STATE(5087)] = 100849, + [SMALL_STATE(5088)] = 100895, + [SMALL_STATE(5089)] = 100941, + [SMALL_STATE(5090)] = 100987, + [SMALL_STATE(5091)] = 101033, + [SMALL_STATE(5092)] = 101079, + [SMALL_STATE(5093)] = 101127, + [SMALL_STATE(5094)] = 101173, + [SMALL_STATE(5095)] = 101219, + [SMALL_STATE(5096)] = 101265, + [SMALL_STATE(5097)] = 101311, + [SMALL_STATE(5098)] = 101359, + [SMALL_STATE(5099)] = 101427, + [SMALL_STATE(5100)] = 101473, + [SMALL_STATE(5101)] = 101541, + [SMALL_STATE(5102)] = 101587, + [SMALL_STATE(5103)] = 101633, + [SMALL_STATE(5104)] = 101677, + [SMALL_STATE(5105)] = 101745, + [SMALL_STATE(5106)] = 101793, + [SMALL_STATE(5107)] = 101859, + [SMALL_STATE(5108)] = 101907, + [SMALL_STATE(5109)] = 101953, + [SMALL_STATE(5110)] = 102021, + [SMALL_STATE(5111)] = 102071, + [SMALL_STATE(5112)] = 102119, + [SMALL_STATE(5113)] = 102167, + [SMALL_STATE(5114)] = 102226, + [SMALL_STATE(5115)] = 102285, + [SMALL_STATE(5116)] = 102330, + [SMALL_STATE(5117)] = 102375, + [SMALL_STATE(5118)] = 102420, + [SMALL_STATE(5119)] = 102465, + [SMALL_STATE(5120)] = 102524, + [SMALL_STATE(5121)] = 102567, + [SMALL_STATE(5122)] = 102626, + [SMALL_STATE(5123)] = 102671, + [SMALL_STATE(5124)] = 102730, + [SMALL_STATE(5125)] = 102789, + [SMALL_STATE(5126)] = 102834, + [SMALL_STATE(5127)] = 102893, + [SMALL_STATE(5128)] = 102938, + [SMALL_STATE(5129)] = 102997, + [SMALL_STATE(5130)] = 103056, + [SMALL_STATE(5131)] = 103101, + [SMALL_STATE(5132)] = 103162, + [SMALL_STATE(5133)] = 103221, + [SMALL_STATE(5134)] = 103266, + [SMALL_STATE(5135)] = 103311, + [SMALL_STATE(5136)] = 103356, + [SMALL_STATE(5137)] = 103401, + [SMALL_STATE(5138)] = 103460, + [SMALL_STATE(5139)] = 103509, + [SMALL_STATE(5140)] = 103554, + [SMALL_STATE(5141)] = 103599, + [SMALL_STATE(5142)] = 103658, + [SMALL_STATE(5143)] = 103703, + [SMALL_STATE(5144)] = 103748, + [SMALL_STATE(5145)] = 103807, + [SMALL_STATE(5146)] = 103852, + [SMALL_STATE(5147)] = 103897, + [SMALL_STATE(5148)] = 103956, + [SMALL_STATE(5149)] = 104001, + [SMALL_STATE(5150)] = 104046, + [SMALL_STATE(5151)] = 104091, + [SMALL_STATE(5152)] = 104136, + [SMALL_STATE(5153)] = 104195, + [SMALL_STATE(5154)] = 104240, + [SMALL_STATE(5155)] = 104299, + [SMALL_STATE(5156)] = 104344, + [SMALL_STATE(5157)] = 104403, + [SMALL_STATE(5158)] = 104448, + [SMALL_STATE(5159)] = 104507, + [SMALL_STATE(5160)] = 104552, + [SMALL_STATE(5161)] = 104597, + [SMALL_STATE(5162)] = 104656, + [SMALL_STATE(5163)] = 104701, + [SMALL_STATE(5164)] = 104760, + [SMALL_STATE(5165)] = 104805, + [SMALL_STATE(5166)] = 104850, + [SMALL_STATE(5167)] = 104909, + [SMALL_STATE(5168)] = 104968, + [SMALL_STATE(5169)] = 105013, + [SMALL_STATE(5170)] = 105058, + [SMALL_STATE(5171)] = 105103, + [SMALL_STATE(5172)] = 105148, + [SMALL_STATE(5173)] = 105193, + [SMALL_STATE(5174)] = 105252, + [SMALL_STATE(5175)] = 105297, + [SMALL_STATE(5176)] = 105342, + [SMALL_STATE(5177)] = 105387, + [SMALL_STATE(5178)] = 105432, + [SMALL_STATE(5179)] = 105477, + [SMALL_STATE(5180)] = 105520, + [SMALL_STATE(5181)] = 105565, + [SMALL_STATE(5182)] = 105624, + [SMALL_STATE(5183)] = 105683, + [SMALL_STATE(5184)] = 105728, + [SMALL_STATE(5185)] = 105787, + [SMALL_STATE(5186)] = 105832, + [SMALL_STATE(5187)] = 105897, + [SMALL_STATE(5188)] = 105954, + [SMALL_STATE(5189)] = 105997, + [SMALL_STATE(5190)] = 106042, + [SMALL_STATE(5191)] = 106101, + [SMALL_STATE(5192)] = 106160, + [SMALL_STATE(5193)] = 106205, + [SMALL_STATE(5194)] = 106250, + [SMALL_STATE(5195)] = 106309, + [SMALL_STATE(5196)] = 106368, + [SMALL_STATE(5197)] = 106413, + [SMALL_STATE(5198)] = 106472, + [SMALL_STATE(5199)] = 106531, + [SMALL_STATE(5200)] = 106590, + [SMALL_STATE(5201)] = 106635, + [SMALL_STATE(5202)] = 106694, + [SMALL_STATE(5203)] = 106739, + [SMALL_STATE(5204)] = 106786, + [SMALL_STATE(5205)] = 106831, + [SMALL_STATE(5206)] = 106876, + [SMALL_STATE(5207)] = 106921, + [SMALL_STATE(5208)] = 106968, + [SMALL_STATE(5209)] = 107013, + [SMALL_STATE(5210)] = 107058, + [SMALL_STATE(5211)] = 107103, + [SMALL_STATE(5212)] = 107162, + [SMALL_STATE(5213)] = 107223, + [SMALL_STATE(5214)] = 107284, + [SMALL_STATE(5215)] = 107343, + [SMALL_STATE(5216)] = 107402, + [SMALL_STATE(5217)] = 107447, + [SMALL_STATE(5218)] = 107492, + [SMALL_STATE(5219)] = 107537, + [SMALL_STATE(5220)] = 107598, + [SMALL_STATE(5221)] = 107643, + [SMALL_STATE(5222)] = 107702, + [SMALL_STATE(5223)] = 107761, + [SMALL_STATE(5224)] = 107820, + [SMALL_STATE(5225)] = 107879, + [SMALL_STATE(5226)] = 107924, + [SMALL_STATE(5227)] = 107969, + [SMALL_STATE(5228)] = 108028, + [SMALL_STATE(5229)] = 108087, + [SMALL_STATE(5230)] = 108130, + [SMALL_STATE(5231)] = 108189, + [SMALL_STATE(5232)] = 108248, + [SMALL_STATE(5233)] = 108293, + [SMALL_STATE(5234)] = 108352, + [SMALL_STATE(5235)] = 108397, + [SMALL_STATE(5236)] = 108442, + [SMALL_STATE(5237)] = 108484, + [SMALL_STATE(5238)] = 108528, + [SMALL_STATE(5239)] = 108582, + [SMALL_STATE(5240)] = 108638, + [SMALL_STATE(5241)] = 108680, + [SMALL_STATE(5242)] = 108736, + [SMALL_STATE(5243)] = 108792, + [SMALL_STATE(5244)] = 108834, + [SMALL_STATE(5245)] = 108878, + [SMALL_STATE(5246)] = 108934, + [SMALL_STATE(5247)] = 108990, + [SMALL_STATE(5248)] = 109046, + [SMALL_STATE(5249)] = 109102, + [SMALL_STATE(5250)] = 109158, + [SMALL_STATE(5251)] = 109206, + [SMALL_STATE(5252)] = 109248, + [SMALL_STATE(5253)] = 109292, + [SMALL_STATE(5254)] = 109348, + [SMALL_STATE(5255)] = 109404, + [SMALL_STATE(5256)] = 109450, + [SMALL_STATE(5257)] = 109506, + [SMALL_STATE(5258)] = 109562, + [SMALL_STATE(5259)] = 109606, + [SMALL_STATE(5260)] = 109662, + [SMALL_STATE(5261)] = 109710, + [SMALL_STATE(5262)] = 109756, + [SMALL_STATE(5263)] = 109812, + [SMALL_STATE(5264)] = 109868, + [SMALL_STATE(5265)] = 109924, + [SMALL_STATE(5266)] = 109968, + [SMALL_STATE(5267)] = 110024, + [SMALL_STATE(5268)] = 110080, + [SMALL_STATE(5269)] = 110136, + [SMALL_STATE(5270)] = 110192, + [SMALL_STATE(5271)] = 110248, + [SMALL_STATE(5272)] = 110304, + [SMALL_STATE(5273)] = 110350, + [SMALL_STATE(5274)] = 110392, + [SMALL_STATE(5275)] = 110436, + [SMALL_STATE(5276)] = 110492, + [SMALL_STATE(5277)] = 110534, + [SMALL_STATE(5278)] = 110576, + [SMALL_STATE(5279)] = 110618, + [SMALL_STATE(5280)] = 110674, + [SMALL_STATE(5281)] = 110716, + [SMALL_STATE(5282)] = 110772, + [SMALL_STATE(5283)] = 110828, + [SMALL_STATE(5284)] = 110884, + [SMALL_STATE(5285)] = 110940, + [SMALL_STATE(5286)] = 110982, + [SMALL_STATE(5287)] = 111026, + [SMALL_STATE(5288)] = 111082, + [SMALL_STATE(5289)] = 111126, + [SMALL_STATE(5290)] = 111182, + [SMALL_STATE(5291)] = 111246, + [SMALL_STATE(5292)] = 111288, + [SMALL_STATE(5293)] = 111344, + [SMALL_STATE(5294)] = 111400, + [SMALL_STATE(5295)] = 111444, + [SMALL_STATE(5296)] = 111488, + [SMALL_STATE(5297)] = 111544, + [SMALL_STATE(5298)] = 111592, + [SMALL_STATE(5299)] = 111648, + [SMALL_STATE(5300)] = 111692, + [SMALL_STATE(5301)] = 111736, + [SMALL_STATE(5302)] = 111792, + [SMALL_STATE(5303)] = 111848, + [SMALL_STATE(5304)] = 111890, + [SMALL_STATE(5305)] = 111934, + [SMALL_STATE(5306)] = 111978, + [SMALL_STATE(5307)] = 112034, + [SMALL_STATE(5308)] = 112090, + [SMALL_STATE(5309)] = 112134, + [SMALL_STATE(5310)] = 112176, + [SMALL_STATE(5311)] = 112232, + [SMALL_STATE(5312)] = 112274, + [SMALL_STATE(5313)] = 112318, + [SMALL_STATE(5314)] = 112360, + [SMALL_STATE(5315)] = 112402, + [SMALL_STATE(5316)] = 112444, + [SMALL_STATE(5317)] = 112500, + [SMALL_STATE(5318)] = 112542, + [SMALL_STATE(5319)] = 112598, + [SMALL_STATE(5320)] = 112654, + [SMALL_STATE(5321)] = 112710, + [SMALL_STATE(5322)] = 112766, + [SMALL_STATE(5323)] = 112822, + [SMALL_STATE(5324)] = 112866, + [SMALL_STATE(5325)] = 112910, + [SMALL_STATE(5326)] = 112952, + [SMALL_STATE(5327)] = 113008, + [SMALL_STATE(5328)] = 113052, + [SMALL_STATE(5329)] = 113103, + [SMALL_STATE(5330)] = 113144, + [SMALL_STATE(5331)] = 113203, + [SMALL_STATE(5332)] = 113244, + [SMALL_STATE(5333)] = 113285, + [SMALL_STATE(5334)] = 113326, + [SMALL_STATE(5335)] = 113367, + [SMALL_STATE(5336)] = 113414, + [SMALL_STATE(5337)] = 113455, + [SMALL_STATE(5338)] = 113496, + [SMALL_STATE(5339)] = 113539, + [SMALL_STATE(5340)] = 113584, + [SMALL_STATE(5341)] = 113629, + [SMALL_STATE(5342)] = 113676, + [SMALL_STATE(5343)] = 113717, + [SMALL_STATE(5344)] = 113776, + [SMALL_STATE(5345)] = 113823, + [SMALL_STATE(5346)] = 113864, + [SMALL_STATE(5347)] = 113905, + [SMALL_STATE(5348)] = 113946, + [SMALL_STATE(5349)] = 113987, + [SMALL_STATE(5350)] = 114028, + [SMALL_STATE(5351)] = 114069, + [SMALL_STATE(5352)] = 114128, + [SMALL_STATE(5353)] = 114171, + [SMALL_STATE(5354)] = 114230, + [SMALL_STATE(5355)] = 114271, + [SMALL_STATE(5356)] = 114312, + [SMALL_STATE(5357)] = 114353, + [SMALL_STATE(5358)] = 114400, + [SMALL_STATE(5359)] = 114441, + [SMALL_STATE(5360)] = 114482, + [SMALL_STATE(5361)] = 114525, + [SMALL_STATE(5362)] = 114566, + [SMALL_STATE(5363)] = 114607, + [SMALL_STATE(5364)] = 114648, + [SMALL_STATE(5365)] = 114689, + [SMALL_STATE(5366)] = 114730, + [SMALL_STATE(5367)] = 114773, + [SMALL_STATE(5368)] = 114818, + [SMALL_STATE(5369)] = 114861, + [SMALL_STATE(5370)] = 114904, + [SMALL_STATE(5371)] = 114949, + [SMALL_STATE(5372)] = 114990, + [SMALL_STATE(5373)] = 115049, + [SMALL_STATE(5374)] = 115092, + [SMALL_STATE(5375)] = 115139, + [SMALL_STATE(5376)] = 115186, + [SMALL_STATE(5377)] = 115247, + [SMALL_STATE(5378)] = 115290, + [SMALL_STATE(5379)] = 115335, + [SMALL_STATE(5380)] = 115380, + [SMALL_STATE(5381)] = 115423, + [SMALL_STATE(5382)] = 115464, + [SMALL_STATE(5383)] = 115523, + [SMALL_STATE(5384)] = 115570, + [SMALL_STATE(5385)] = 115617, + [SMALL_STATE(5386)] = 115658, + [SMALL_STATE(5387)] = 115701, + [SMALL_STATE(5388)] = 115742, + [SMALL_STATE(5389)] = 115783, + [SMALL_STATE(5390)] = 115826, + [SMALL_STATE(5391)] = 115867, + [SMALL_STATE(5392)] = 115914, + [SMALL_STATE(5393)] = 115955, + [SMALL_STATE(5394)] = 115996, + [SMALL_STATE(5395)] = 116037, + [SMALL_STATE(5396)] = 116084, + [SMALL_STATE(5397)] = 116127, + [SMALL_STATE(5398)] = 116172, + [SMALL_STATE(5399)] = 116219, + [SMALL_STATE(5400)] = 116266, + [SMALL_STATE(5401)] = 116319, + [SMALL_STATE(5402)] = 116360, + [SMALL_STATE(5403)] = 116413, + [SMALL_STATE(5404)] = 116469, + [SMALL_STATE(5405)] = 116511, + [SMALL_STATE(5406)] = 116557, + [SMALL_STATE(5407)] = 116601, + [SMALL_STATE(5408)] = 116653, + [SMALL_STATE(5409)] = 116705, + [SMALL_STATE(5410)] = 116749, + [SMALL_STATE(5411)] = 116805, + [SMALL_STATE(5412)] = 116863, + [SMALL_STATE(5413)] = 116903, + [SMALL_STATE(5414)] = 116943, + [SMALL_STATE(5415)] = 116983, + [SMALL_STATE(5416)] = 117027, + [SMALL_STATE(5417)] = 117071, + [SMALL_STATE(5418)] = 117113, + [SMALL_STATE(5419)] = 117165, + [SMALL_STATE(5420)] = 117209, + [SMALL_STATE(5421)] = 117253, + [SMALL_STATE(5422)] = 117297, + [SMALL_STATE(5423)] = 117355, + [SMALL_STATE(5424)] = 117407, + [SMALL_STATE(5425)] = 117463, + [SMALL_STATE(5426)] = 117519, + [SMALL_STATE(5427)] = 117571, + [SMALL_STATE(5428)] = 117615, + [SMALL_STATE(5429)] = 117671, + [SMALL_STATE(5430)] = 117723, + [SMALL_STATE(5431)] = 117781, + [SMALL_STATE(5432)] = 117821, + [SMALL_STATE(5433)] = 117877, + [SMALL_STATE(5434)] = 117919, + [SMALL_STATE(5435)] = 117965, + [SMALL_STATE(5436)] = 118005, + [SMALL_STATE(5437)] = 118061, + [SMALL_STATE(5438)] = 118113, + [SMALL_STATE(5439)] = 118167, + [SMALL_STATE(5440)] = 118223, + [SMALL_STATE(5441)] = 118265, + [SMALL_STATE(5442)] = 118307, + [SMALL_STATE(5443)] = 118359, + [SMALL_STATE(5444)] = 118415, + [SMALL_STATE(5445)] = 118469, + [SMALL_STATE(5446)] = 118513, + [SMALL_STATE(5447)] = 118557, + [SMALL_STATE(5448)] = 118601, + [SMALL_STATE(5449)] = 118645, + [SMALL_STATE(5450)] = 118689, + [SMALL_STATE(5451)] = 118729, + [SMALL_STATE(5452)] = 118773, + [SMALL_STATE(5453)] = 118819, + [SMALL_STATE(5454)] = 118859, + [SMALL_STATE(5455)] = 118899, + [SMALL_STATE(5456)] = 118955, + [SMALL_STATE(5457)] = 119011, + [SMALL_STATE(5458)] = 119063, + [SMALL_STATE(5459)] = 119103, + [SMALL_STATE(5460)] = 119143, + [SMALL_STATE(5461)] = 119183, + [SMALL_STATE(5462)] = 119239, + [SMALL_STATE(5463)] = 119297, + [SMALL_STATE(5464)] = 119353, + [SMALL_STATE(5465)] = 119395, + [SMALL_STATE(5466)] = 119435, + [SMALL_STATE(5467)] = 119475, + [SMALL_STATE(5468)] = 119523, + [SMALL_STATE(5469)] = 119567, + [SMALL_STATE(5470)] = 119611, + [SMALL_STATE(5471)] = 119651, + [SMALL_STATE(5472)] = 119691, + [SMALL_STATE(5473)] = 119743, + [SMALL_STATE(5474)] = 119783, + [SMALL_STATE(5475)] = 119829, + [SMALL_STATE(5476)] = 119885, + [SMALL_STATE(5477)] = 119925, + [SMALL_STATE(5478)] = 119981, + [SMALL_STATE(5479)] = 120037, + [SMALL_STATE(5480)] = 120083, + [SMALL_STATE(5481)] = 120135, + [SMALL_STATE(5482)] = 120181, + [SMALL_STATE(5483)] = 120235, + [SMALL_STATE(5484)] = 120281, + [SMALL_STATE(5485)] = 120323, + [SMALL_STATE(5486)] = 120375, + [SMALL_STATE(5487)] = 120431, + [SMALL_STATE(5488)] = 120487, + [SMALL_STATE(5489)] = 120531, + [SMALL_STATE(5490)] = 120581, + [SMALL_STATE(5491)] = 120639, + [SMALL_STATE(5492)] = 120695, + [SMALL_STATE(5493)] = 120737, + [SMALL_STATE(5494)] = 120789, + [SMALL_STATE(5495)] = 120841, + [SMALL_STATE(5496)] = 120897, + [SMALL_STATE(5497)] = 120949, + [SMALL_STATE(5498)] = 121005, + [SMALL_STATE(5499)] = 121061, + [SMALL_STATE(5500)] = 121113, + [SMALL_STATE(5501)] = 121165, + [SMALL_STATE(5502)] = 121209, + [SMALL_STATE(5503)] = 121265, + [SMALL_STATE(5504)] = 121321, + [SMALL_STATE(5505)] = 121377, + [SMALL_STATE(5506)] = 121421, + [SMALL_STATE(5507)] = 121477, + [SMALL_STATE(5508)] = 121533, + [SMALL_STATE(5509)] = 121589, + [SMALL_STATE(5510)] = 121633, + [SMALL_STATE(5511)] = 121687, + [SMALL_STATE(5512)] = 121739, + [SMALL_STATE(5513)] = 121783, + [SMALL_STATE(5514)] = 121839, + [SMALL_STATE(5515)] = 121881, + [SMALL_STATE(5516)] = 121937, + [SMALL_STATE(5517)] = 121989, + [SMALL_STATE(5518)] = 122035, + [SMALL_STATE(5519)] = 122091, + [SMALL_STATE(5520)] = 122147, + [SMALL_STATE(5521)] = 122201, + [SMALL_STATE(5522)] = 122245, + [SMALL_STATE(5523)] = 122289, + [SMALL_STATE(5524)] = 122333, + [SMALL_STATE(5525)] = 122385, + [SMALL_STATE(5526)] = 122427, + [SMALL_STATE(5527)] = 122471, + [SMALL_STATE(5528)] = 122523, + [SMALL_STATE(5529)] = 122567, + [SMALL_STATE(5530)] = 122611, + [SMALL_STATE(5531)] = 122669, + [SMALL_STATE(5532)] = 122713, + [SMALL_STATE(5533)] = 122769, + [SMALL_STATE(5534)] = 122811, + [SMALL_STATE(5535)] = 122867, + [SMALL_STATE(5536)] = 122923, + [SMALL_STATE(5537)] = 122967, + [SMALL_STATE(5538)] = 123019, + [SMALL_STATE(5539)] = 123071, + [SMALL_STATE(5540)] = 123113, + [SMALL_STATE(5541)] = 123169, + [SMALL_STATE(5542)] = 123215, + [SMALL_STATE(5543)] = 123267, + [SMALL_STATE(5544)] = 123321, + [SMALL_STATE(5545)] = 123365, + [SMALL_STATE(5546)] = 123409, + [SMALL_STATE(5547)] = 123463, + [SMALL_STATE(5548)] = 123507, + [SMALL_STATE(5549)] = 123563, + [SMALL_STATE(5550)] = 123607, + [SMALL_STATE(5551)] = 123653, + [SMALL_STATE(5552)] = 123699, + [SMALL_STATE(5553)] = 123755, + [SMALL_STATE(5554)] = 123799, + [SMALL_STATE(5555)] = 123841, + [SMALL_STATE(5556)] = 123885, + [SMALL_STATE(5557)] = 123941, + [SMALL_STATE(5558)] = 123987, + [SMALL_STATE(5559)] = 124043, + [SMALL_STATE(5560)] = 124095, + [SMALL_STATE(5561)] = 124149, + [SMALL_STATE(5562)] = 124193, + [SMALL_STATE(5563)] = 124245, + [SMALL_STATE(5564)] = 124301, + [SMALL_STATE(5565)] = 124345, + [SMALL_STATE(5566)] = 124389, + [SMALL_STATE(5567)] = 124433, + [SMALL_STATE(5568)] = 124477, + [SMALL_STATE(5569)] = 124533, + [SMALL_STATE(5570)] = 124589, + [SMALL_STATE(5571)] = 124631, + [SMALL_STATE(5572)] = 124687, + [SMALL_STATE(5573)] = 124745, + [SMALL_STATE(5574)] = 124801, + [SMALL_STATE(5575)] = 124857, + [SMALL_STATE(5576)] = 124901, + [SMALL_STATE(5577)] = 124945, + [SMALL_STATE(5578)] = 125001, + [SMALL_STATE(5579)] = 125057, + [SMALL_STATE(5580)] = 125109, + [SMALL_STATE(5581)] = 125161, + [SMALL_STATE(5582)] = 125205, + [SMALL_STATE(5583)] = 125249, + [SMALL_STATE(5584)] = 125303, + [SMALL_STATE(5585)] = 125355, + [SMALL_STATE(5586)] = 125407, + [SMALL_STATE(5587)] = 125465, + [SMALL_STATE(5588)] = 125511, + [SMALL_STATE(5589)] = 125555, + [SMALL_STATE(5590)] = 125607, + [SMALL_STATE(5591)] = 125659, + [SMALL_STATE(5592)] = 125711, + [SMALL_STATE(5593)] = 125767, + [SMALL_STATE(5594)] = 125823, + [SMALL_STATE(5595)] = 125879, + [SMALL_STATE(5596)] = 125931, + [SMALL_STATE(5597)] = 125977, + [SMALL_STATE(5598)] = 126033, + [SMALL_STATE(5599)] = 126089, + [SMALL_STATE(5600)] = 126145, + [SMALL_STATE(5601)] = 126197, + [SMALL_STATE(5602)] = 126253, + [SMALL_STATE(5603)] = 126295, + [SMALL_STATE(5604)] = 126347, + [SMALL_STATE(5605)] = 126389, + [SMALL_STATE(5606)] = 126441, + [SMALL_STATE(5607)] = 126499, + [SMALL_STATE(5608)] = 126557, + [SMALL_STATE(5609)] = 126609, + [SMALL_STATE(5610)] = 126661, + [SMALL_STATE(5611)] = 126713, + [SMALL_STATE(5612)] = 126757, + [SMALL_STATE(5613)] = 126801, + [SMALL_STATE(5614)] = 126853, + [SMALL_STATE(5615)] = 126905, + [SMALL_STATE(5616)] = 126957, + [SMALL_STATE(5617)] = 127015, + [SMALL_STATE(5618)] = 127067, + [SMALL_STATE(5619)] = 127123, + [SMALL_STATE(5620)] = 127175, + [SMALL_STATE(5621)] = 127227, + [SMALL_STATE(5622)] = 127282, + [SMALL_STATE(5623)] = 127323, + [SMALL_STATE(5624)] = 127364, + [SMALL_STATE(5625)] = 127405, + [SMALL_STATE(5626)] = 127460, + [SMALL_STATE(5627)] = 127515, + [SMALL_STATE(5628)] = 127570, + [SMALL_STATE(5629)] = 127625, + [SMALL_STATE(5630)] = 127680, + [SMALL_STATE(5631)] = 127723, + [SMALL_STATE(5632)] = 127766, + [SMALL_STATE(5633)] = 127821, + [SMALL_STATE(5634)] = 127862, + [SMALL_STATE(5635)] = 127917, + [SMALL_STATE(5636)] = 127960, + [SMALL_STATE(5637)] = 128003, + [SMALL_STATE(5638)] = 128058, + [SMALL_STATE(5639)] = 128101, + [SMALL_STATE(5640)] = 128156, + [SMALL_STATE(5641)] = 128199, + [SMALL_STATE(5642)] = 128240, + [SMALL_STATE(5643)] = 128293, + [SMALL_STATE(5644)] = 128338, + [SMALL_STATE(5645)] = 128393, + [SMALL_STATE(5646)] = 128434, + [SMALL_STATE(5647)] = 128475, + [SMALL_STATE(5648)] = 128520, + [SMALL_STATE(5649)] = 128563, + [SMALL_STATE(5650)] = 128618, + [SMALL_STATE(5651)] = 128659, + [SMALL_STATE(5652)] = 128702, + [SMALL_STATE(5653)] = 128745, + [SMALL_STATE(5654)] = 128800, + [SMALL_STATE(5655)] = 128855, + [SMALL_STATE(5656)] = 128902, + [SMALL_STATE(5657)] = 128943, + [SMALL_STATE(5658)] = 128998, + [SMALL_STATE(5659)] = 129039, + [SMALL_STATE(5660)] = 129080, + [SMALL_STATE(5661)] = 129121, + [SMALL_STATE(5662)] = 129162, + [SMALL_STATE(5663)] = 129205, + [SMALL_STATE(5664)] = 129260, + [SMALL_STATE(5665)] = 129315, + [SMALL_STATE(5666)] = 129370, + [SMALL_STATE(5667)] = 129419, + [SMALL_STATE(5668)] = 129474, + [SMALL_STATE(5669)] = 129529, + [SMALL_STATE(5670)] = 129584, + [SMALL_STATE(5671)] = 129639, + [SMALL_STATE(5672)] = 129694, + [SMALL_STATE(5673)] = 129735, + [SMALL_STATE(5674)] = 129776, + [SMALL_STATE(5675)] = 129831, + [SMALL_STATE(5676)] = 129886, + [SMALL_STATE(5677)] = 129941, + [SMALL_STATE(5678)] = 129996, + [SMALL_STATE(5679)] = 130051, + [SMALL_STATE(5680)] = 130106, + [SMALL_STATE(5681)] = 130153, + [SMALL_STATE(5682)] = 130208, + [SMALL_STATE(5683)] = 130249, + [SMALL_STATE(5684)] = 130290, + [SMALL_STATE(5685)] = 130333, + [SMALL_STATE(5686)] = 130388, + [SMALL_STATE(5687)] = 130443, + [SMALL_STATE(5688)] = 130484, + [SMALL_STATE(5689)] = 130539, + [SMALL_STATE(5690)] = 130594, + [SMALL_STATE(5691)] = 130649, + [SMALL_STATE(5692)] = 130704, + [SMALL_STATE(5693)] = 130745, + [SMALL_STATE(5694)] = 130786, + [SMALL_STATE(5695)] = 130829, + [SMALL_STATE(5696)] = 130870, + [SMALL_STATE(5697)] = 130925, + [SMALL_STATE(5698)] = 130980, + [SMALL_STATE(5699)] = 131021, + [SMALL_STATE(5700)] = 131076, + [SMALL_STATE(5701)] = 131117, + [SMALL_STATE(5702)] = 131172, + [SMALL_STATE(5703)] = 131227, + [SMALL_STATE(5704)] = 131282, + [SMALL_STATE(5705)] = 131337, + [SMALL_STATE(5706)] = 131392, + [SMALL_STATE(5707)] = 131447, + [SMALL_STATE(5708)] = 131494, + [SMALL_STATE(5709)] = 131537, + [SMALL_STATE(5710)] = 131592, + [SMALL_STATE(5711)] = 131633, + [SMALL_STATE(5712)] = 131688, + [SMALL_STATE(5713)] = 131743, + [SMALL_STATE(5714)] = 131784, + [SMALL_STATE(5715)] = 131837, + [SMALL_STATE(5716)] = 131878, + [SMALL_STATE(5717)] = 131933, + [SMALL_STATE(5718)] = 131974, + [SMALL_STATE(5719)] = 132017, + [SMALL_STATE(5720)] = 132072, + [SMALL_STATE(5721)] = 132115, + [SMALL_STATE(5722)] = 132158, + [SMALL_STATE(5723)] = 132201, + [SMALL_STATE(5724)] = 132244, + [SMALL_STATE(5725)] = 132287, + [SMALL_STATE(5726)] = 132332, + [SMALL_STATE(5727)] = 132387, + [SMALL_STATE(5728)] = 132428, + [SMALL_STATE(5729)] = 132471, + [SMALL_STATE(5730)] = 132526, + [SMALL_STATE(5731)] = 132581, + [SMALL_STATE(5732)] = 132622, + [SMALL_STATE(5733)] = 132677, + [SMALL_STATE(5734)] = 132732, + [SMALL_STATE(5735)] = 132787, + [SMALL_STATE(5736)] = 132828, + [SMALL_STATE(5737)] = 132869, + [SMALL_STATE(5738)] = 132910, + [SMALL_STATE(5739)] = 132965, + [SMALL_STATE(5740)] = 133020, + [SMALL_STATE(5741)] = 133069, + [SMALL_STATE(5742)] = 133124, + [SMALL_STATE(5743)] = 133165, + [SMALL_STATE(5744)] = 133220, + [SMALL_STATE(5745)] = 133261, + [SMALL_STATE(5746)] = 133304, + [SMALL_STATE(5747)] = 133359, + [SMALL_STATE(5748)] = 133406, + [SMALL_STATE(5749)] = 133461, + [SMALL_STATE(5750)] = 133516, + [SMALL_STATE(5751)] = 133571, + [SMALL_STATE(5752)] = 133612, + [SMALL_STATE(5753)] = 133667, + [SMALL_STATE(5754)] = 133708, + [SMALL_STATE(5755)] = 133761, + [SMALL_STATE(5756)] = 133806, + [SMALL_STATE(5757)] = 133853, + [SMALL_STATE(5758)] = 133894, + [SMALL_STATE(5759)] = 133949, + [SMALL_STATE(5760)] = 133990, + [SMALL_STATE(5761)] = 134045, + [SMALL_STATE(5762)] = 134100, + [SMALL_STATE(5763)] = 134155, + [SMALL_STATE(5764)] = 134196, + [SMALL_STATE(5765)] = 134251, + [SMALL_STATE(5766)] = 134306, + [SMALL_STATE(5767)] = 134361, + [SMALL_STATE(5768)] = 134406, + [SMALL_STATE(5769)] = 134447, + [SMALL_STATE(5770)] = 134500, + [SMALL_STATE(5771)] = 134555, + [SMALL_STATE(5772)] = 134610, + [SMALL_STATE(5773)] = 134663, + [SMALL_STATE(5774)] = 134708, + [SMALL_STATE(5775)] = 134749, + [SMALL_STATE(5776)] = 134790, + [SMALL_STATE(5777)] = 134833, + [SMALL_STATE(5778)] = 134888, + [SMALL_STATE(5779)] = 134929, + [SMALL_STATE(5780)] = 134984, + [SMALL_STATE(5781)] = 135037, + [SMALL_STATE(5782)] = 135080, + [SMALL_STATE(5783)] = 135123, + [SMALL_STATE(5784)] = 135178, + [SMALL_STATE(5785)] = 135219, + [SMALL_STATE(5786)] = 135260, + [SMALL_STATE(5787)] = 135303, + [SMALL_STATE(5788)] = 135350, + [SMALL_STATE(5789)] = 135393, + [SMALL_STATE(5790)] = 135434, + [SMALL_STATE(5791)] = 135489, + [SMALL_STATE(5792)] = 135530, + [SMALL_STATE(5793)] = 135585, + [SMALL_STATE(5794)] = 135638, + [SMALL_STATE(5795)] = 135693, + [SMALL_STATE(5796)] = 135746, + [SMALL_STATE(5797)] = 135789, + [SMALL_STATE(5798)] = 135844, + [SMALL_STATE(5799)] = 135885, + [SMALL_STATE(5800)] = 135940, + [SMALL_STATE(5801)] = 135995, + [SMALL_STATE(5802)] = 136038, + [SMALL_STATE(5803)] = 136093, + [SMALL_STATE(5804)] = 136146, + [SMALL_STATE(5805)] = 136189, + [SMALL_STATE(5806)] = 136232, + [SMALL_STATE(5807)] = 136273, + [SMALL_STATE(5808)] = 136316, + [SMALL_STATE(5809)] = 136357, + [SMALL_STATE(5810)] = 136400, + [SMALL_STATE(5811)] = 136441, + [SMALL_STATE(5812)] = 136496, + [SMALL_STATE(5813)] = 136551, + [SMALL_STATE(5814)] = 136594, + [SMALL_STATE(5815)] = 136635, + [SMALL_STATE(5816)] = 136675, + [SMALL_STATE(5817)] = 136715, + [SMALL_STATE(5818)] = 136759, + [SMALL_STATE(5819)] = 136811, + [SMALL_STATE(5820)] = 136861, + [SMALL_STATE(5821)] = 136913, + [SMALL_STATE(5822)] = 136965, + [SMALL_STATE(5823)] = 137005, + [SMALL_STATE(5824)] = 137057, + [SMALL_STATE(5825)] = 137109, + [SMALL_STATE(5826)] = 137161, + [SMALL_STATE(5827)] = 137213, + [SMALL_STATE(5828)] = 137265, + [SMALL_STATE(5829)] = 137317, + [SMALL_STATE(5830)] = 137369, + [SMALL_STATE(5831)] = 137421, + [SMALL_STATE(5832)] = 137473, + [SMALL_STATE(5833)] = 137525, + [SMALL_STATE(5834)] = 137567, + [SMALL_STATE(5835)] = 137619, + [SMALL_STATE(5836)] = 137671, + [SMALL_STATE(5837)] = 137723, + [SMALL_STATE(5838)] = 137775, + [SMALL_STATE(5839)] = 137817, + [SMALL_STATE(5840)] = 137859, + [SMALL_STATE(5841)] = 137903, + [SMALL_STATE(5842)] = 137945, + [SMALL_STATE(5843)] = 137997, + [SMALL_STATE(5844)] = 138049, + [SMALL_STATE(5845)] = 138091, + [SMALL_STATE(5846)] = 138143, + [SMALL_STATE(5847)] = 138195, + [SMALL_STATE(5848)] = 138247, + [SMALL_STATE(5849)] = 138299, + [SMALL_STATE(5850)] = 138341, + [SMALL_STATE(5851)] = 138391, + [SMALL_STATE(5852)] = 138441, + [SMALL_STATE(5853)] = 138481, + [SMALL_STATE(5854)] = 138533, + [SMALL_STATE(5855)] = 138585, + [SMALL_STATE(5856)] = 138637, + [SMALL_STATE(5857)] = 138687, + [SMALL_STATE(5858)] = 138735, + [SMALL_STATE(5859)] = 138785, + [SMALL_STATE(5860)] = 138837, + [SMALL_STATE(5861)] = 138889, + [SMALL_STATE(5862)] = 138941, + [SMALL_STATE(5863)] = 138993, + [SMALL_STATE(5864)] = 139045, + [SMALL_STATE(5865)] = 139097, + [SMALL_STATE(5866)] = 139149, + [SMALL_STATE(5867)] = 139189, + [SMALL_STATE(5868)] = 139241, + [SMALL_STATE(5869)] = 139293, + [SMALL_STATE(5870)] = 139335, + [SMALL_STATE(5871)] = 139375, + [SMALL_STATE(5872)] = 139427, + [SMALL_STATE(5873)] = 139479, + [SMALL_STATE(5874)] = 139529, + [SMALL_STATE(5875)] = 139581, + [SMALL_STATE(5876)] = 139633, + [SMALL_STATE(5877)] = 139685, + [SMALL_STATE(5878)] = 139725, + [SMALL_STATE(5879)] = 139777, + [SMALL_STATE(5880)] = 139829, + [SMALL_STATE(5881)] = 139881, + [SMALL_STATE(5882)] = 139931, + [SMALL_STATE(5883)] = 139983, + [SMALL_STATE(5884)] = 140032, + [SMALL_STATE(5885)] = 140079, + [SMALL_STATE(5886)] = 140128, + [SMALL_STATE(5887)] = 140175, + [SMALL_STATE(5888)] = 140224, + [SMALL_STATE(5889)] = 140271, + [SMALL_STATE(5890)] = 140318, + [SMALL_STATE(5891)] = 140367, + [SMALL_STATE(5892)] = 140416, + [SMALL_STATE(5893)] = 140465, + [SMALL_STATE(5894)] = 140514, + [SMALL_STATE(5895)] = 140561, + [SMALL_STATE(5896)] = 140608, + [SMALL_STATE(5897)] = 140657, + [SMALL_STATE(5898)] = 140706, + [SMALL_STATE(5899)] = 140755, + [SMALL_STATE(5900)] = 140804, + [SMALL_STATE(5901)] = 140851, + [SMALL_STATE(5902)] = 140900, + [SMALL_STATE(5903)] = 140947, + [SMALL_STATE(5904)] = 140994, + [SMALL_STATE(5905)] = 141043, + [SMALL_STATE(5906)] = 141082, + [SMALL_STATE(5907)] = 141129, + [SMALL_STATE(5908)] = 141178, + [SMALL_STATE(5909)] = 141225, + [SMALL_STATE(5910)] = 141274, + [SMALL_STATE(5911)] = 141321, + [SMALL_STATE(5912)] = 141368, + [SMALL_STATE(5913)] = 141415, + [SMALL_STATE(5914)] = 141462, + [SMALL_STATE(5915)] = 141509, + [SMALL_STATE(5916)] = 141556, + [SMALL_STATE(5917)] = 141605, + [SMALL_STATE(5918)] = 141646, + [SMALL_STATE(5919)] = 141695, + [SMALL_STATE(5920)] = 141742, + [SMALL_STATE(5921)] = 141781, + [SMALL_STATE(5922)] = 141830, + [SMALL_STATE(5923)] = 141877, + [SMALL_STATE(5924)] = 141926, + [SMALL_STATE(5925)] = 141975, + [SMALL_STATE(5926)] = 142024, + [SMALL_STATE(5927)] = 142073, + [SMALL_STATE(5928)] = 142122, + [SMALL_STATE(5929)] = 142171, + [SMALL_STATE(5930)] = 142218, + [SMALL_STATE(5931)] = 142257, + [SMALL_STATE(5932)] = 142300, + [SMALL_STATE(5933)] = 142346, + [SMALL_STATE(5934)] = 142392, + [SMALL_STATE(5935)] = 142430, + [SMALL_STATE(5936)] = 142476, + [SMALL_STATE(5937)] = 142522, + [SMALL_STATE(5938)] = 142568, + [SMALL_STATE(5939)] = 142606, + [SMALL_STATE(5940)] = 142652, + [SMALL_STATE(5941)] = 142690, + [SMALL_STATE(5942)] = 142728, + [SMALL_STATE(5943)] = 142774, + [SMALL_STATE(5944)] = 142816, + [SMALL_STATE(5945)] = 142862, + [SMALL_STATE(5946)] = 142908, + [SMALL_STATE(5947)] = 142954, + [SMALL_STATE(5948)] = 143000, + [SMALL_STATE(5949)] = 143046, + [SMALL_STATE(5950)] = 143092, + [SMALL_STATE(5951)] = 143138, + [SMALL_STATE(5952)] = 143178, + [SMALL_STATE(5953)] = 143224, + [SMALL_STATE(5954)] = 143270, + [SMALL_STATE(5955)] = 143316, + [SMALL_STATE(5956)] = 143362, + [SMALL_STATE(5957)] = 143408, + [SMALL_STATE(5958)] = 143454, + [SMALL_STATE(5959)] = 143500, + [SMALL_STATE(5960)] = 143546, + [SMALL_STATE(5961)] = 143592, + [SMALL_STATE(5962)] = 143638, + [SMALL_STATE(5963)] = 143684, + [SMALL_STATE(5964)] = 143730, + [SMALL_STATE(5965)] = 143776, + [SMALL_STATE(5966)] = 143822, + [SMALL_STATE(5967)] = 143868, + [SMALL_STATE(5968)] = 143906, + [SMALL_STATE(5969)] = 143952, + [SMALL_STATE(5970)] = 143998, + [SMALL_STATE(5971)] = 144041, + [SMALL_STATE(5972)] = 144084, + [SMALL_STATE(5973)] = 144127, + [SMALL_STATE(5974)] = 144170, + [SMALL_STATE(5975)] = 144211, + [SMALL_STATE(5976)] = 144254, + [SMALL_STATE(5977)] = 144297, + [SMALL_STATE(5978)] = 144340, + [SMALL_STATE(5979)] = 144383, + [SMALL_STATE(5980)] = 144426, + [SMALL_STATE(5981)] = 144469, + [SMALL_STATE(5982)] = 144512, + [SMALL_STATE(5983)] = 144549, + [SMALL_STATE(5984)] = 144590, + [SMALL_STATE(5985)] = 144633, + [SMALL_STATE(5986)] = 144670, + [SMALL_STATE(5987)] = 144711, + [SMALL_STATE(5988)] = 144754, + [SMALL_STATE(5989)] = 144797, + [SMALL_STATE(5990)] = 144840, + [SMALL_STATE(5991)] = 144883, + [SMALL_STATE(5992)] = 144926, + [SMALL_STATE(5993)] = 144967, + [SMALL_STATE(5994)] = 145008, + [SMALL_STATE(5995)] = 145051, + [SMALL_STATE(5996)] = 145094, + [SMALL_STATE(5997)] = 145137, + [SMALL_STATE(5998)] = 145180, + [SMALL_STATE(5999)] = 145223, + [SMALL_STATE(6000)] = 145264, + [SMALL_STATE(6001)] = 145307, + [SMALL_STATE(6002)] = 145350, + [SMALL_STATE(6003)] = 145393, + [SMALL_STATE(6004)] = 145436, + [SMALL_STATE(6005)] = 145479, + [SMALL_STATE(6006)] = 145522, + [SMALL_STATE(6007)] = 145565, + [SMALL_STATE(6008)] = 145608, + [SMALL_STATE(6009)] = 145649, + [SMALL_STATE(6010)] = 145692, + [SMALL_STATE(6011)] = 145735, + [SMALL_STATE(6012)] = 145778, + [SMALL_STATE(6013)] = 145821, + [SMALL_STATE(6014)] = 145862, + [SMALL_STATE(6015)] = 145905, + [SMALL_STATE(6016)] = 145948, + [SMALL_STATE(6017)] = 145991, + [SMALL_STATE(6018)] = 146034, + [SMALL_STATE(6019)] = 146075, + [SMALL_STATE(6020)] = 146118, + [SMALL_STATE(6021)] = 146161, + [SMALL_STATE(6022)] = 146204, + [SMALL_STATE(6023)] = 146247, + [SMALL_STATE(6024)] = 146286, + [SMALL_STATE(6025)] = 146329, + [SMALL_STATE(6026)] = 146372, + [SMALL_STATE(6027)] = 146415, + [SMALL_STATE(6028)] = 146458, + [SMALL_STATE(6029)] = 146501, + [SMALL_STATE(6030)] = 146544, + [SMALL_STATE(6031)] = 146587, + [SMALL_STATE(6032)] = 146630, + [SMALL_STATE(6033)] = 146673, + [SMALL_STATE(6034)] = 146708, + [SMALL_STATE(6035)] = 146749, + [SMALL_STATE(6036)] = 146792, + [SMALL_STATE(6037)] = 146835, + [SMALL_STATE(6038)] = 146878, + [SMALL_STATE(6039)] = 146921, + [SMALL_STATE(6040)] = 146964, + [SMALL_STATE(6041)] = 147007, + [SMALL_STATE(6042)] = 147042, + [SMALL_STATE(6043)] = 147085, + [SMALL_STATE(6044)] = 147128, + [SMALL_STATE(6045)] = 147171, + [SMALL_STATE(6046)] = 147214, + [SMALL_STATE(6047)] = 147257, + [SMALL_STATE(6048)] = 147298, + [SMALL_STATE(6049)] = 147341, + [SMALL_STATE(6050)] = 147384, + [SMALL_STATE(6051)] = 147427, + [SMALL_STATE(6052)] = 147470, + [SMALL_STATE(6053)] = 147513, + [SMALL_STATE(6054)] = 147556, + [SMALL_STATE(6055)] = 147599, + [SMALL_STATE(6056)] = 147642, + [SMALL_STATE(6057)] = 147685, + [SMALL_STATE(6058)] = 147728, + [SMALL_STATE(6059)] = 147769, + [SMALL_STATE(6060)] = 147812, + [SMALL_STATE(6061)] = 147855, + [SMALL_STATE(6062)] = 147896, + [SMALL_STATE(6063)] = 147939, + [SMALL_STATE(6064)] = 147982, + [SMALL_STATE(6065)] = 148023, + [SMALL_STATE(6066)] = 148066, + [SMALL_STATE(6067)] = 148109, + [SMALL_STATE(6068)] = 148150, + [SMALL_STATE(6069)] = 148193, + [SMALL_STATE(6070)] = 148236, + [SMALL_STATE(6071)] = 148277, + [SMALL_STATE(6072)] = 148320, + [SMALL_STATE(6073)] = 148363, + [SMALL_STATE(6074)] = 148404, + [SMALL_STATE(6075)] = 148445, + [SMALL_STATE(6076)] = 148488, + [SMALL_STATE(6077)] = 148531, + [SMALL_STATE(6078)] = 148572, + [SMALL_STATE(6079)] = 148615, + [SMALL_STATE(6080)] = 148656, + [SMALL_STATE(6081)] = 148699, + [SMALL_STATE(6082)] = 148742, + [SMALL_STATE(6083)] = 148785, + [SMALL_STATE(6084)] = 148828, + [SMALL_STATE(6085)] = 148871, + [SMALL_STATE(6086)] = 148914, + [SMALL_STATE(6087)] = 148955, + [SMALL_STATE(6088)] = 148996, + [SMALL_STATE(6089)] = 149039, + [SMALL_STATE(6090)] = 149082, + [SMALL_STATE(6091)] = 149125, + [SMALL_STATE(6092)] = 149166, + [SMALL_STATE(6093)] = 149209, + [SMALL_STATE(6094)] = 149252, + [SMALL_STATE(6095)] = 149293, + [SMALL_STATE(6096)] = 149334, + [SMALL_STATE(6097)] = 149377, + [SMALL_STATE(6098)] = 149420, + [SMALL_STATE(6099)] = 149463, + [SMALL_STATE(6100)] = 149504, + [SMALL_STATE(6101)] = 149547, + [SMALL_STATE(6102)] = 149588, + [SMALL_STATE(6103)] = 149631, + [SMALL_STATE(6104)] = 149674, + [SMALL_STATE(6105)] = 149717, + [SMALL_STATE(6106)] = 149758, + [SMALL_STATE(6107)] = 149801, + [SMALL_STATE(6108)] = 149842, + [SMALL_STATE(6109)] = 149883, + [SMALL_STATE(6110)] = 149926, + [SMALL_STATE(6111)] = 149969, + [SMALL_STATE(6112)] = 150012, + [SMALL_STATE(6113)] = 150055, + [SMALL_STATE(6114)] = 150098, + [SMALL_STATE(6115)] = 150133, + [SMALL_STATE(6116)] = 150176, + [SMALL_STATE(6117)] = 150219, + [SMALL_STATE(6118)] = 150262, + [SMALL_STATE(6119)] = 150305, + [SMALL_STATE(6120)] = 150348, + [SMALL_STATE(6121)] = 150391, + [SMALL_STATE(6122)] = 150434, + [SMALL_STATE(6123)] = 150475, + [SMALL_STATE(6124)] = 150516, + [SMALL_STATE(6125)] = 150559, + [SMALL_STATE(6126)] = 150602, + [SMALL_STATE(6127)] = 150645, + [SMALL_STATE(6128)] = 150685, + [SMALL_STATE(6129)] = 150719, + [SMALL_STATE(6130)] = 150753, + [SMALL_STATE(6131)] = 150793, + [SMALL_STATE(6132)] = 150827, + [SMALL_STATE(6133)] = 150867, + [SMALL_STATE(6134)] = 150901, + [SMALL_STATE(6135)] = 150935, + [SMALL_STATE(6136)] = 150975, + [SMALL_STATE(6137)] = 151015, + [SMALL_STATE(6138)] = 151055, + [SMALL_STATE(6139)] = 151095, + [SMALL_STATE(6140)] = 151129, + [SMALL_STATE(6141)] = 151163, + [SMALL_STATE(6142)] = 151203, + [SMALL_STATE(6143)] = 151243, + [SMALL_STATE(6144)] = 151283, + [SMALL_STATE(6145)] = 151319, + [SMALL_STATE(6146)] = 151359, + [SMALL_STATE(6147)] = 151399, + [SMALL_STATE(6148)] = 151439, + [SMALL_STATE(6149)] = 151479, + [SMALL_STATE(6150)] = 151515, + [SMALL_STATE(6151)] = 151549, + [SMALL_STATE(6152)] = 151589, + [SMALL_STATE(6153)] = 151629, + [SMALL_STATE(6154)] = 151669, + [SMALL_STATE(6155)] = 151705, + [SMALL_STATE(6156)] = 151745, + [SMALL_STATE(6157)] = 151783, + [SMALL_STATE(6158)] = 151823, + [SMALL_STATE(6159)] = 151863, + [SMALL_STATE(6160)] = 151901, + [SMALL_STATE(6161)] = 151939, + [SMALL_STATE(6162)] = 151979, + [SMALL_STATE(6163)] = 152013, + [SMALL_STATE(6164)] = 152051, + [SMALL_STATE(6165)] = 152091, + [SMALL_STATE(6166)] = 152131, + [SMALL_STATE(6167)] = 152165, + [SMALL_STATE(6168)] = 152205, + [SMALL_STATE(6169)] = 152245, + [SMALL_STATE(6170)] = 152283, + [SMALL_STATE(6171)] = 152323, + [SMALL_STATE(6172)] = 152361, + [SMALL_STATE(6173)] = 152401, + [SMALL_STATE(6174)] = 152441, + [SMALL_STATE(6175)] = 152477, + [SMALL_STATE(6176)] = 152517, + [SMALL_STATE(6177)] = 152557, + [SMALL_STATE(6178)] = 152597, + [SMALL_STATE(6179)] = 152637, + [SMALL_STATE(6180)] = 152671, + [SMALL_STATE(6181)] = 152709, + [SMALL_STATE(6182)] = 152749, + [SMALL_STATE(6183)] = 152789, + [SMALL_STATE(6184)] = 152829, + [SMALL_STATE(6185)] = 152869, + [SMALL_STATE(6186)] = 152909, + [SMALL_STATE(6187)] = 152949, + [SMALL_STATE(6188)] = 152989, + [SMALL_STATE(6189)] = 153029, + [SMALL_STATE(6190)] = 153063, + [SMALL_STATE(6191)] = 153103, + [SMALL_STATE(6192)] = 153143, + [SMALL_STATE(6193)] = 153183, + [SMALL_STATE(6194)] = 153223, + [SMALL_STATE(6195)] = 153261, + [SMALL_STATE(6196)] = 153301, + [SMALL_STATE(6197)] = 153341, + [SMALL_STATE(6198)] = 153381, + [SMALL_STATE(6199)] = 153421, + [SMALL_STATE(6200)] = 153459, + [SMALL_STATE(6201)] = 153499, + [SMALL_STATE(6202)] = 153533, + [SMALL_STATE(6203)] = 153573, + [SMALL_STATE(6204)] = 153607, + [SMALL_STATE(6205)] = 153647, + [SMALL_STATE(6206)] = 153687, + [SMALL_STATE(6207)] = 153721, + [SMALL_STATE(6208)] = 153755, + [SMALL_STATE(6209)] = 153795, + [SMALL_STATE(6210)] = 153835, + [SMALL_STATE(6211)] = 153875, + [SMALL_STATE(6212)] = 153915, + [SMALL_STATE(6213)] = 153949, + [SMALL_STATE(6214)] = 153989, + [SMALL_STATE(6215)] = 154023, + [SMALL_STATE(6216)] = 154063, + [SMALL_STATE(6217)] = 154103, + [SMALL_STATE(6218)] = 154143, + [SMALL_STATE(6219)] = 154183, + [SMALL_STATE(6220)] = 154223, + [SMALL_STATE(6221)] = 154263, + [SMALL_STATE(6222)] = 154303, + [SMALL_STATE(6223)] = 154343, + [SMALL_STATE(6224)] = 154383, + [SMALL_STATE(6225)] = 154423, + [SMALL_STATE(6226)] = 154463, + [SMALL_STATE(6227)] = 154501, + [SMALL_STATE(6228)] = 154541, + [SMALL_STATE(6229)] = 154575, + [SMALL_STATE(6230)] = 154615, + [SMALL_STATE(6231)] = 154649, + [SMALL_STATE(6232)] = 154689, + [SMALL_STATE(6233)] = 154729, + [SMALL_STATE(6234)] = 154763, + [SMALL_STATE(6235)] = 154800, + [SMALL_STATE(6236)] = 154835, + [SMALL_STATE(6237)] = 154868, + [SMALL_STATE(6238)] = 154903, + [SMALL_STATE(6239)] = 154938, + [SMALL_STATE(6240)] = 154975, + [SMALL_STATE(6241)] = 155012, + [SMALL_STATE(6242)] = 155049, + [SMALL_STATE(6243)] = 155086, + [SMALL_STATE(6244)] = 155123, + [SMALL_STATE(6245)] = 155156, + [SMALL_STATE(6246)] = 155189, + [SMALL_STATE(6247)] = 155226, + [SMALL_STATE(6248)] = 155263, + [SMALL_STATE(6249)] = 155300, + [SMALL_STATE(6250)] = 155333, + [SMALL_STATE(6251)] = 155366, + [SMALL_STATE(6252)] = 155399, + [SMALL_STATE(6253)] = 155436, + [SMALL_STATE(6254)] = 155473, + [SMALL_STATE(6255)] = 155510, + [SMALL_STATE(6256)] = 155545, + [SMALL_STATE(6257)] = 155580, + [SMALL_STATE(6258)] = 155617, + [SMALL_STATE(6259)] = 155654, + [SMALL_STATE(6260)] = 155687, + [SMALL_STATE(6261)] = 155724, + [SMALL_STATE(6262)] = 155761, + [SMALL_STATE(6263)] = 155798, + [SMALL_STATE(6264)] = 155835, + [SMALL_STATE(6265)] = 155872, + [SMALL_STATE(6266)] = 155909, + [SMALL_STATE(6267)] = 155944, + [SMALL_STATE(6268)] = 155981, + [SMALL_STATE(6269)] = 156018, + [SMALL_STATE(6270)] = 156055, + [SMALL_STATE(6271)] = 156092, + [SMALL_STATE(6272)] = 156127, + [SMALL_STATE(6273)] = 156164, + [SMALL_STATE(6274)] = 156199, + [SMALL_STATE(6275)] = 156236, + [SMALL_STATE(6276)] = 156273, + [SMALL_STATE(6277)] = 156310, + [SMALL_STATE(6278)] = 156347, + [SMALL_STATE(6279)] = 156382, + [SMALL_STATE(6280)] = 156419, + [SMALL_STATE(6281)] = 156454, + [SMALL_STATE(6282)] = 156487, + [SMALL_STATE(6283)] = 156524, + [SMALL_STATE(6284)] = 156561, + [SMALL_STATE(6285)] = 156598, + [SMALL_STATE(6286)] = 156633, + [SMALL_STATE(6287)] = 156670, + [SMALL_STATE(6288)] = 156707, + [SMALL_STATE(6289)] = 156744, + [SMALL_STATE(6290)] = 156781, + [SMALL_STATE(6291)] = 156818, + [SMALL_STATE(6292)] = 156855, + [SMALL_STATE(6293)] = 156888, + [SMALL_STATE(6294)] = 156921, + [SMALL_STATE(6295)] = 156954, + [SMALL_STATE(6296)] = 156987, + [SMALL_STATE(6297)] = 157022, + [SMALL_STATE(6298)] = 157059, + [SMALL_STATE(6299)] = 157096, + [SMALL_STATE(6300)] = 157133, + [SMALL_STATE(6301)] = 157170, + [SMALL_STATE(6302)] = 157203, + [SMALL_STATE(6303)] = 157238, + [SMALL_STATE(6304)] = 157275, + [SMALL_STATE(6305)] = 157312, + [SMALL_STATE(6306)] = 157349, + [SMALL_STATE(6307)] = 157386, + [SMALL_STATE(6308)] = 157421, + [SMALL_STATE(6309)] = 157458, + [SMALL_STATE(6310)] = 157495, + [SMALL_STATE(6311)] = 157532, + [SMALL_STATE(6312)] = 157567, + [SMALL_STATE(6313)] = 157600, + [SMALL_STATE(6314)] = 157637, + [SMALL_STATE(6315)] = 157674, + [SMALL_STATE(6316)] = 157711, + [SMALL_STATE(6317)] = 157748, + [SMALL_STATE(6318)] = 157785, + [SMALL_STATE(6319)] = 157822, + [SMALL_STATE(6320)] = 157859, + [SMALL_STATE(6321)] = 157894, + [SMALL_STATE(6322)] = 157931, + [SMALL_STATE(6323)] = 157968, + [SMALL_STATE(6324)] = 158005, + [SMALL_STATE(6325)] = 158038, + [SMALL_STATE(6326)] = 158075, + [SMALL_STATE(6327)] = 158112, + [SMALL_STATE(6328)] = 158149, + [SMALL_STATE(6329)] = 158182, + [SMALL_STATE(6330)] = 158215, + [SMALL_STATE(6331)] = 158248, + [SMALL_STATE(6332)] = 158281, + [SMALL_STATE(6333)] = 158318, + [SMALL_STATE(6334)] = 158355, + [SMALL_STATE(6335)] = 158388, + [SMALL_STATE(6336)] = 158425, + [SMALL_STATE(6337)] = 158460, + [SMALL_STATE(6338)] = 158497, + [SMALL_STATE(6339)] = 158534, + [SMALL_STATE(6340)] = 158571, + [SMALL_STATE(6341)] = 158608, + [SMALL_STATE(6342)] = 158645, + [SMALL_STATE(6343)] = 158682, + [SMALL_STATE(6344)] = 158719, + [SMALL_STATE(6345)] = 158756, + [SMALL_STATE(6346)] = 158793, + [SMALL_STATE(6347)] = 158828, + [SMALL_STATE(6348)] = 158865, + [SMALL_STATE(6349)] = 158900, + [SMALL_STATE(6350)] = 158937, + [SMALL_STATE(6351)] = 158974, + [SMALL_STATE(6352)] = 159009, + [SMALL_STATE(6353)] = 159046, + [SMALL_STATE(6354)] = 159081, + [SMALL_STATE(6355)] = 159118, + [SMALL_STATE(6356)] = 159153, + [SMALL_STATE(6357)] = 159190, + [SMALL_STATE(6358)] = 159227, + [SMALL_STATE(6359)] = 159264, + [SMALL_STATE(6360)] = 159301, + [SMALL_STATE(6361)] = 159338, + [SMALL_STATE(6362)] = 159375, + [SMALL_STATE(6363)] = 159412, + [SMALL_STATE(6364)] = 159449, + [SMALL_STATE(6365)] = 159486, + [SMALL_STATE(6366)] = 159523, + [SMALL_STATE(6367)] = 159560, + [SMALL_STATE(6368)] = 159597, + [SMALL_STATE(6369)] = 159634, + [SMALL_STATE(6370)] = 159669, + [SMALL_STATE(6371)] = 159704, + [SMALL_STATE(6372)] = 159739, + [SMALL_STATE(6373)] = 159776, + [SMALL_STATE(6374)] = 159813, + [SMALL_STATE(6375)] = 159850, + [SMALL_STATE(6376)] = 159887, + [SMALL_STATE(6377)] = 159922, + [SMALL_STATE(6378)] = 159959, + [SMALL_STATE(6379)] = 159994, + [SMALL_STATE(6380)] = 160029, + [SMALL_STATE(6381)] = 160064, + [SMALL_STATE(6382)] = 160101, + [SMALL_STATE(6383)] = 160138, + [SMALL_STATE(6384)] = 160175, + [SMALL_STATE(6385)] = 160210, + [SMALL_STATE(6386)] = 160247, + [SMALL_STATE(6387)] = 160284, + [SMALL_STATE(6388)] = 160321, + [SMALL_STATE(6389)] = 160358, + [SMALL_STATE(6390)] = 160395, + [SMALL_STATE(6391)] = 160432, + [SMALL_STATE(6392)] = 160469, + [SMALL_STATE(6393)] = 160504, + [SMALL_STATE(6394)] = 160541, + [SMALL_STATE(6395)] = 160578, + [SMALL_STATE(6396)] = 160615, + [SMALL_STATE(6397)] = 160652, + [SMALL_STATE(6398)] = 160689, + [SMALL_STATE(6399)] = 160726, + [SMALL_STATE(6400)] = 160763, + [SMALL_STATE(6401)] = 160800, + [SMALL_STATE(6402)] = 160837, + [SMALL_STATE(6403)] = 160872, + [SMALL_STATE(6404)] = 160909, + [SMALL_STATE(6405)] = 160946, + [SMALL_STATE(6406)] = 160983, + [SMALL_STATE(6407)] = 161020, + [SMALL_STATE(6408)] = 161057, + [SMALL_STATE(6409)] = 161090, + [SMALL_STATE(6410)] = 161127, + [SMALL_STATE(6411)] = 161160, + [SMALL_STATE(6412)] = 161197, + [SMALL_STATE(6413)] = 161232, + [SMALL_STATE(6414)] = 161269, + [SMALL_STATE(6415)] = 161306, + [SMALL_STATE(6416)] = 161341, + [SMALL_STATE(6417)] = 161374, + [SMALL_STATE(6418)] = 161409, + [SMALL_STATE(6419)] = 161442, + [SMALL_STATE(6420)] = 161477, + [SMALL_STATE(6421)] = 161514, + [SMALL_STATE(6422)] = 161551, + [SMALL_STATE(6423)] = 161584, + [SMALL_STATE(6424)] = 161621, + [SMALL_STATE(6425)] = 161654, + [SMALL_STATE(6426)] = 161691, + [SMALL_STATE(6427)] = 161728, + [SMALL_STATE(6428)] = 161765, + [SMALL_STATE(6429)] = 161802, + [SMALL_STATE(6430)] = 161835, + [SMALL_STATE(6431)] = 161872, + [SMALL_STATE(6432)] = 161907, + [SMALL_STATE(6433)] = 161944, + [SMALL_STATE(6434)] = 161981, + [SMALL_STATE(6435)] = 162014, + [SMALL_STATE(6436)] = 162047, + [SMALL_STATE(6437)] = 162082, + [SMALL_STATE(6438)] = 162119, + [SMALL_STATE(6439)] = 162156, + [SMALL_STATE(6440)] = 162193, + [SMALL_STATE(6441)] = 162228, + [SMALL_STATE(6442)] = 162265, + [SMALL_STATE(6443)] = 162298, + [SMALL_STATE(6444)] = 162335, + [SMALL_STATE(6445)] = 162372, + [SMALL_STATE(6446)] = 162407, + [SMALL_STATE(6447)] = 162442, + [SMALL_STATE(6448)] = 162479, + [SMALL_STATE(6449)] = 162516, + [SMALL_STATE(6450)] = 162553, + [SMALL_STATE(6451)] = 162590, + [SMALL_STATE(6452)] = 162627, + [SMALL_STATE(6453)] = 162662, + [SMALL_STATE(6454)] = 162699, + [SMALL_STATE(6455)] = 162736, + [SMALL_STATE(6456)] = 162773, + [SMALL_STATE(6457)] = 162810, + [SMALL_STATE(6458)] = 162847, + [SMALL_STATE(6459)] = 162884, + [SMALL_STATE(6460)] = 162917, + [SMALL_STATE(6461)] = 162954, + [SMALL_STATE(6462)] = 162991, + [SMALL_STATE(6463)] = 163028, + [SMALL_STATE(6464)] = 163063, + [SMALL_STATE(6465)] = 163100, + [SMALL_STATE(6466)] = 163137, + [SMALL_STATE(6467)] = 163172, + [SMALL_STATE(6468)] = 163209, + [SMALL_STATE(6469)] = 163246, + [SMALL_STATE(6470)] = 163283, + [SMALL_STATE(6471)] = 163320, + [SMALL_STATE(6472)] = 163357, + [SMALL_STATE(6473)] = 163394, + [SMALL_STATE(6474)] = 163431, + [SMALL_STATE(6475)] = 163468, + [SMALL_STATE(6476)] = 163503, + [SMALL_STATE(6477)] = 163540, + [SMALL_STATE(6478)] = 163577, + [SMALL_STATE(6479)] = 163614, + [SMALL_STATE(6480)] = 163651, + [SMALL_STATE(6481)] = 163688, + [SMALL_STATE(6482)] = 163723, + [SMALL_STATE(6483)] = 163760, + [SMALL_STATE(6484)] = 163797, + [SMALL_STATE(6485)] = 163834, + [SMALL_STATE(6486)] = 163871, + [SMALL_STATE(6487)] = 163908, + [SMALL_STATE(6488)] = 163945, + [SMALL_STATE(6489)] = 163982, + [SMALL_STATE(6490)] = 164019, + [SMALL_STATE(6491)] = 164056, + [SMALL_STATE(6492)] = 164093, + [SMALL_STATE(6493)] = 164130, + [SMALL_STATE(6494)] = 164167, + [SMALL_STATE(6495)] = 164204, + [SMALL_STATE(6496)] = 164239, + [SMALL_STATE(6497)] = 164276, + [SMALL_STATE(6498)] = 164313, + [SMALL_STATE(6499)] = 164350, + [SMALL_STATE(6500)] = 164387, + [SMALL_STATE(6501)] = 164424, + [SMALL_STATE(6502)] = 164461, + [SMALL_STATE(6503)] = 164498, + [SMALL_STATE(6504)] = 164535, + [SMALL_STATE(6505)] = 164572, + [SMALL_STATE(6506)] = 164607, + [SMALL_STATE(6507)] = 164644, + [SMALL_STATE(6508)] = 164681, + [SMALL_STATE(6509)] = 164714, + [SMALL_STATE(6510)] = 164751, + [SMALL_STATE(6511)] = 164788, + [SMALL_STATE(6512)] = 164825, + [SMALL_STATE(6513)] = 164862, + [SMALL_STATE(6514)] = 164899, + [SMALL_STATE(6515)] = 164934, + [SMALL_STATE(6516)] = 164971, + [SMALL_STATE(6517)] = 165008, + [SMALL_STATE(6518)] = 165045, + [SMALL_STATE(6519)] = 165082, + [SMALL_STATE(6520)] = 165119, + [SMALL_STATE(6521)] = 165156, + [SMALL_STATE(6522)] = 165193, + [SMALL_STATE(6523)] = 165230, + [SMALL_STATE(6524)] = 165267, + [SMALL_STATE(6525)] = 165304, + [SMALL_STATE(6526)] = 165341, + [SMALL_STATE(6527)] = 165378, + [SMALL_STATE(6528)] = 165415, + [SMALL_STATE(6529)] = 165452, + [SMALL_STATE(6530)] = 165489, + [SMALL_STATE(6531)] = 165526, + [SMALL_STATE(6532)] = 165561, + [SMALL_STATE(6533)] = 165598, + [SMALL_STATE(6534)] = 165635, + [SMALL_STATE(6535)] = 165672, + [SMALL_STATE(6536)] = 165709, + [SMALL_STATE(6537)] = 165746, + [SMALL_STATE(6538)] = 165783, + [SMALL_STATE(6539)] = 165820, + [SMALL_STATE(6540)] = 165857, + [SMALL_STATE(6541)] = 165894, + [SMALL_STATE(6542)] = 165931, + [SMALL_STATE(6543)] = 165968, + [SMALL_STATE(6544)] = 166005, + [SMALL_STATE(6545)] = 166042, + [SMALL_STATE(6546)] = 166079, + [SMALL_STATE(6547)] = 166116, + [SMALL_STATE(6548)] = 166153, + [SMALL_STATE(6549)] = 166190, + [SMALL_STATE(6550)] = 166227, + [SMALL_STATE(6551)] = 166264, + [SMALL_STATE(6552)] = 166299, + [SMALL_STATE(6553)] = 166336, + [SMALL_STATE(6554)] = 166369, + [SMALL_STATE(6555)] = 166406, + [SMALL_STATE(6556)] = 166443, + [SMALL_STATE(6557)] = 166480, + [SMALL_STATE(6558)] = 166515, + [SMALL_STATE(6559)] = 166552, + [SMALL_STATE(6560)] = 166589, + [SMALL_STATE(6561)] = 166626, + [SMALL_STATE(6562)] = 166658, + [SMALL_STATE(6563)] = 166692, + [SMALL_STATE(6564)] = 166726, + [SMALL_STATE(6565)] = 166760, + [SMALL_STATE(6566)] = 166794, + [SMALL_STATE(6567)] = 166828, + [SMALL_STATE(6568)] = 166862, + [SMALL_STATE(6569)] = 166896, + [SMALL_STATE(6570)] = 166930, + [SMALL_STATE(6571)] = 166964, + [SMALL_STATE(6572)] = 166998, + [SMALL_STATE(6573)] = 167032, + [SMALL_STATE(6574)] = 167066, + [SMALL_STATE(6575)] = 167100, + [SMALL_STATE(6576)] = 167132, + [SMALL_STATE(6577)] = 167166, + [SMALL_STATE(6578)] = 167200, + [SMALL_STATE(6579)] = 167232, + [SMALL_STATE(6580)] = 167266, + [SMALL_STATE(6581)] = 167300, + [SMALL_STATE(6582)] = 167334, + [SMALL_STATE(6583)] = 167368, + [SMALL_STATE(6584)] = 167402, + [SMALL_STATE(6585)] = 167436, + [SMALL_STATE(6586)] = 167468, + [SMALL_STATE(6587)] = 167500, + [SMALL_STATE(6588)] = 167532, + [SMALL_STATE(6589)] = 167564, + [SMALL_STATE(6590)] = 167598, + [SMALL_STATE(6591)] = 167632, + [SMALL_STATE(6592)] = 167666, + [SMALL_STATE(6593)] = 167700, + [SMALL_STATE(6594)] = 167734, + [SMALL_STATE(6595)] = 167768, + [SMALL_STATE(6596)] = 167802, + [SMALL_STATE(6597)] = 167836, + [SMALL_STATE(6598)] = 167870, + [SMALL_STATE(6599)] = 167902, + [SMALL_STATE(6600)] = 167934, + [SMALL_STATE(6601)] = 167966, + [SMALL_STATE(6602)] = 168000, + [SMALL_STATE(6603)] = 168034, + [SMALL_STATE(6604)] = 168066, + [SMALL_STATE(6605)] = 168100, + [SMALL_STATE(6606)] = 168134, + [SMALL_STATE(6607)] = 168168, + [SMALL_STATE(6608)] = 168200, + [SMALL_STATE(6609)] = 168232, + [SMALL_STATE(6610)] = 168266, + [SMALL_STATE(6611)] = 168300, + [SMALL_STATE(6612)] = 168332, + [SMALL_STATE(6613)] = 168366, + [SMALL_STATE(6614)] = 168400, + [SMALL_STATE(6615)] = 168434, + [SMALL_STATE(6616)] = 168468, + [SMALL_STATE(6617)] = 168502, + [SMALL_STATE(6618)] = 168536, + [SMALL_STATE(6619)] = 168570, + [SMALL_STATE(6620)] = 168604, + [SMALL_STATE(6621)] = 168638, + [SMALL_STATE(6622)] = 168672, + [SMALL_STATE(6623)] = 168706, + [SMALL_STATE(6624)] = 168740, + [SMALL_STATE(6625)] = 168774, + [SMALL_STATE(6626)] = 168808, + [SMALL_STATE(6627)] = 168842, + [SMALL_STATE(6628)] = 168876, + [SMALL_STATE(6629)] = 168910, + [SMALL_STATE(6630)] = 168942, + [SMALL_STATE(6631)] = 168976, + [SMALL_STATE(6632)] = 169010, + [SMALL_STATE(6633)] = 169044, + [SMALL_STATE(6634)] = 169076, + [SMALL_STATE(6635)] = 169110, + [SMALL_STATE(6636)] = 169144, + [SMALL_STATE(6637)] = 169178, + [SMALL_STATE(6638)] = 169212, + [SMALL_STATE(6639)] = 169246, + [SMALL_STATE(6640)] = 169280, + [SMALL_STATE(6641)] = 169314, + [SMALL_STATE(6642)] = 169348, + [SMALL_STATE(6643)] = 169380, + [SMALL_STATE(6644)] = 169412, + [SMALL_STATE(6645)] = 169446, + [SMALL_STATE(6646)] = 169480, + [SMALL_STATE(6647)] = 169514, + [SMALL_STATE(6648)] = 169546, + [SMALL_STATE(6649)] = 169580, + [SMALL_STATE(6650)] = 169612, + [SMALL_STATE(6651)] = 169646, + [SMALL_STATE(6652)] = 169680, + [SMALL_STATE(6653)] = 169714, + [SMALL_STATE(6654)] = 169748, + [SMALL_STATE(6655)] = 169782, + [SMALL_STATE(6656)] = 169816, + [SMALL_STATE(6657)] = 169848, + [SMALL_STATE(6658)] = 169880, + [SMALL_STATE(6659)] = 169914, + [SMALL_STATE(6660)] = 169946, + [SMALL_STATE(6661)] = 169980, + [SMALL_STATE(6662)] = 170014, + [SMALL_STATE(6663)] = 170048, + [SMALL_STATE(6664)] = 170082, + [SMALL_STATE(6665)] = 170116, + [SMALL_STATE(6666)] = 170150, + [SMALL_STATE(6667)] = 170184, + [SMALL_STATE(6668)] = 170218, + [SMALL_STATE(6669)] = 170250, + [SMALL_STATE(6670)] = 170284, + [SMALL_STATE(6671)] = 170318, + [SMALL_STATE(6672)] = 170352, + [SMALL_STATE(6673)] = 170384, + [SMALL_STATE(6674)] = 170416, + [SMALL_STATE(6675)] = 170450, + [SMALL_STATE(6676)] = 170484, + [SMALL_STATE(6677)] = 170518, + [SMALL_STATE(6678)] = 170552, + [SMALL_STATE(6679)] = 170586, + [SMALL_STATE(6680)] = 170620, + [SMALL_STATE(6681)] = 170652, + [SMALL_STATE(6682)] = 170684, + [SMALL_STATE(6683)] = 170718, + [SMALL_STATE(6684)] = 170752, + [SMALL_STATE(6685)] = 170786, + [SMALL_STATE(6686)] = 170820, + [SMALL_STATE(6687)] = 170852, + [SMALL_STATE(6688)] = 170886, + [SMALL_STATE(6689)] = 170920, + [SMALL_STATE(6690)] = 170954, + [SMALL_STATE(6691)] = 170988, + [SMALL_STATE(6692)] = 171020, + [SMALL_STATE(6693)] = 171054, + [SMALL_STATE(6694)] = 171088, + [SMALL_STATE(6695)] = 171120, + [SMALL_STATE(6696)] = 171154, + [SMALL_STATE(6697)] = 171186, + [SMALL_STATE(6698)] = 171220, + [SMALL_STATE(6699)] = 171252, + [SMALL_STATE(6700)] = 171286, + [SMALL_STATE(6701)] = 171320, + [SMALL_STATE(6702)] = 171352, + [SMALL_STATE(6703)] = 171384, + [SMALL_STATE(6704)] = 171418, + [SMALL_STATE(6705)] = 171452, + [SMALL_STATE(6706)] = 171484, + [SMALL_STATE(6707)] = 171516, + [SMALL_STATE(6708)] = 171550, + [SMALL_STATE(6709)] = 171584, + [SMALL_STATE(6710)] = 171616, + [SMALL_STATE(6711)] = 171648, + [SMALL_STATE(6712)] = 171682, + [SMALL_STATE(6713)] = 171714, + [SMALL_STATE(6714)] = 171748, + [SMALL_STATE(6715)] = 171782, + [SMALL_STATE(6716)] = 171814, + [SMALL_STATE(6717)] = 171846, + [SMALL_STATE(6718)] = 171878, + [SMALL_STATE(6719)] = 171910, + [SMALL_STATE(6720)] = 171944, + [SMALL_STATE(6721)] = 171976, + [SMALL_STATE(6722)] = 172008, + [SMALL_STATE(6723)] = 172042, + [SMALL_STATE(6724)] = 172076, + [SMALL_STATE(6725)] = 172110, + [SMALL_STATE(6726)] = 172142, + [SMALL_STATE(6727)] = 172174, + [SMALL_STATE(6728)] = 172208, + [SMALL_STATE(6729)] = 172240, + [SMALL_STATE(6730)] = 172274, + [SMALL_STATE(6731)] = 172306, + [SMALL_STATE(6732)] = 172338, + [SMALL_STATE(6733)] = 172370, + [SMALL_STATE(6734)] = 172402, + [SMALL_STATE(6735)] = 172434, + [SMALL_STATE(6736)] = 172466, + [SMALL_STATE(6737)] = 172498, + [SMALL_STATE(6738)] = 172532, + [SMALL_STATE(6739)] = 172566, + [SMALL_STATE(6740)] = 172598, + [SMALL_STATE(6741)] = 172630, + [SMALL_STATE(6742)] = 172662, + [SMALL_STATE(6743)] = 172696, + [SMALL_STATE(6744)] = 172730, + [SMALL_STATE(6745)] = 172764, + [SMALL_STATE(6746)] = 172798, + [SMALL_STATE(6747)] = 172830, + [SMALL_STATE(6748)] = 172864, + [SMALL_STATE(6749)] = 172896, + [SMALL_STATE(6750)] = 172928, + [SMALL_STATE(6751)] = 172960, + [SMALL_STATE(6752)] = 172992, + [SMALL_STATE(6753)] = 173024, + [SMALL_STATE(6754)] = 173058, + [SMALL_STATE(6755)] = 173090, + [SMALL_STATE(6756)] = 173122, + [SMALL_STATE(6757)] = 173154, + [SMALL_STATE(6758)] = 173188, + [SMALL_STATE(6759)] = 173222, + [SMALL_STATE(6760)] = 173254, + [SMALL_STATE(6761)] = 173286, + [SMALL_STATE(6762)] = 173318, + [SMALL_STATE(6763)] = 173352, + [SMALL_STATE(6764)] = 173384, + [SMALL_STATE(6765)] = 173416, + [SMALL_STATE(6766)] = 173450, + [SMALL_STATE(6767)] = 173482, + [SMALL_STATE(6768)] = 173514, + [SMALL_STATE(6769)] = 173548, + [SMALL_STATE(6770)] = 173580, + [SMALL_STATE(6771)] = 173612, + [SMALL_STATE(6772)] = 173646, + [SMALL_STATE(6773)] = 173680, + [SMALL_STATE(6774)] = 173712, + [SMALL_STATE(6775)] = 173744, + [SMALL_STATE(6776)] = 173776, + [SMALL_STATE(6777)] = 173808, + [SMALL_STATE(6778)] = 173840, + [SMALL_STATE(6779)] = 173872, + [SMALL_STATE(6780)] = 173904, + [SMALL_STATE(6781)] = 173936, + [SMALL_STATE(6782)] = 173968, + [SMALL_STATE(6783)] = 174000, + [SMALL_STATE(6784)] = 174032, + [SMALL_STATE(6785)] = 174066, + [SMALL_STATE(6786)] = 174098, + [SMALL_STATE(6787)] = 174132, + [SMALL_STATE(6788)] = 174166, + [SMALL_STATE(6789)] = 174200, + [SMALL_STATE(6790)] = 174232, + [SMALL_STATE(6791)] = 174264, + [SMALL_STATE(6792)] = 174296, + [SMALL_STATE(6793)] = 174328, + [SMALL_STATE(6794)] = 174362, + [SMALL_STATE(6795)] = 174394, + [SMALL_STATE(6796)] = 174426, + [SMALL_STATE(6797)] = 174458, + [SMALL_STATE(6798)] = 174490, + [SMALL_STATE(6799)] = 174522, + [SMALL_STATE(6800)] = 174556, + [SMALL_STATE(6801)] = 174588, + [SMALL_STATE(6802)] = 174622, + [SMALL_STATE(6803)] = 174656, + [SMALL_STATE(6804)] = 174690, + [SMALL_STATE(6805)] = 174724, + [SMALL_STATE(6806)] = 174758, + [SMALL_STATE(6807)] = 174792, + [SMALL_STATE(6808)] = 174826, + [SMALL_STATE(6809)] = 174860, + [SMALL_STATE(6810)] = 174894, + [SMALL_STATE(6811)] = 174928, + [SMALL_STATE(6812)] = 174962, + [SMALL_STATE(6813)] = 174996, + [SMALL_STATE(6814)] = 175030, + [SMALL_STATE(6815)] = 175064, + [SMALL_STATE(6816)] = 175098, + [SMALL_STATE(6817)] = 175132, + [SMALL_STATE(6818)] = 175166, + [SMALL_STATE(6819)] = 175200, + [SMALL_STATE(6820)] = 175234, + [SMALL_STATE(6821)] = 175268, + [SMALL_STATE(6822)] = 175302, + [SMALL_STATE(6823)] = 175336, + [SMALL_STATE(6824)] = 175370, + [SMALL_STATE(6825)] = 175404, + [SMALL_STATE(6826)] = 175438, + [SMALL_STATE(6827)] = 175472, + [SMALL_STATE(6828)] = 175506, + [SMALL_STATE(6829)] = 175540, + [SMALL_STATE(6830)] = 175574, + [SMALL_STATE(6831)] = 175608, + [SMALL_STATE(6832)] = 175642, + [SMALL_STATE(6833)] = 175676, + [SMALL_STATE(6834)] = 175710, + [SMALL_STATE(6835)] = 175744, + [SMALL_STATE(6836)] = 175778, + [SMALL_STATE(6837)] = 175812, + [SMALL_STATE(6838)] = 175846, + [SMALL_STATE(6839)] = 175880, + [SMALL_STATE(6840)] = 175914, + [SMALL_STATE(6841)] = 175948, + [SMALL_STATE(6842)] = 175982, + [SMALL_STATE(6843)] = 176016, + [SMALL_STATE(6844)] = 176050, + [SMALL_STATE(6845)] = 176084, + [SMALL_STATE(6846)] = 176118, + [SMALL_STATE(6847)] = 176152, + [SMALL_STATE(6848)] = 176186, + [SMALL_STATE(6849)] = 176220, + [SMALL_STATE(6850)] = 176254, + [SMALL_STATE(6851)] = 176288, + [SMALL_STATE(6852)] = 176322, + [SMALL_STATE(6853)] = 176356, + [SMALL_STATE(6854)] = 176390, + [SMALL_STATE(6855)] = 176424, + [SMALL_STATE(6856)] = 176458, + [SMALL_STATE(6857)] = 176492, + [SMALL_STATE(6858)] = 176526, + [SMALL_STATE(6859)] = 176560, + [SMALL_STATE(6860)] = 176594, + [SMALL_STATE(6861)] = 176628, + [SMALL_STATE(6862)] = 176662, + [SMALL_STATE(6863)] = 176696, + [SMALL_STATE(6864)] = 176730, + [SMALL_STATE(6865)] = 176764, + [SMALL_STATE(6866)] = 176798, + [SMALL_STATE(6867)] = 176832, + [SMALL_STATE(6868)] = 176866, + [SMALL_STATE(6869)] = 176900, + [SMALL_STATE(6870)] = 176934, + [SMALL_STATE(6871)] = 176968, + [SMALL_STATE(6872)] = 177002, + [SMALL_STATE(6873)] = 177036, + [SMALL_STATE(6874)] = 177070, + [SMALL_STATE(6875)] = 177104, + [SMALL_STATE(6876)] = 177138, + [SMALL_STATE(6877)] = 177172, + [SMALL_STATE(6878)] = 177206, + [SMALL_STATE(6879)] = 177240, + [SMALL_STATE(6880)] = 177274, + [SMALL_STATE(6881)] = 177308, + [SMALL_STATE(6882)] = 177342, + [SMALL_STATE(6883)] = 177376, + [SMALL_STATE(6884)] = 177410, + [SMALL_STATE(6885)] = 177444, + [SMALL_STATE(6886)] = 177478, + [SMALL_STATE(6887)] = 177512, + [SMALL_STATE(6888)] = 177546, + [SMALL_STATE(6889)] = 177580, + [SMALL_STATE(6890)] = 177614, + [SMALL_STATE(6891)] = 177648, + [SMALL_STATE(6892)] = 177682, + [SMALL_STATE(6893)] = 177716, + [SMALL_STATE(6894)] = 177750, + [SMALL_STATE(6895)] = 177784, + [SMALL_STATE(6896)] = 177818, + [SMALL_STATE(6897)] = 177852, + [SMALL_STATE(6898)] = 177886, + [SMALL_STATE(6899)] = 177920, + [SMALL_STATE(6900)] = 177954, + [SMALL_STATE(6901)] = 177988, + [SMALL_STATE(6902)] = 178022, + [SMALL_STATE(6903)] = 178056, + [SMALL_STATE(6904)] = 178090, + [SMALL_STATE(6905)] = 178124, + [SMALL_STATE(6906)] = 178158, + [SMALL_STATE(6907)] = 178192, + [SMALL_STATE(6908)] = 178226, + [SMALL_STATE(6909)] = 178260, + [SMALL_STATE(6910)] = 178294, + [SMALL_STATE(6911)] = 178328, + [SMALL_STATE(6912)] = 178362, + [SMALL_STATE(6913)] = 178396, + [SMALL_STATE(6914)] = 178430, + [SMALL_STATE(6915)] = 178464, + [SMALL_STATE(6916)] = 178498, + [SMALL_STATE(6917)] = 178532, + [SMALL_STATE(6918)] = 178566, + [SMALL_STATE(6919)] = 178600, + [SMALL_STATE(6920)] = 178634, + [SMALL_STATE(6921)] = 178668, + [SMALL_STATE(6922)] = 178702, + [SMALL_STATE(6923)] = 178736, + [SMALL_STATE(6924)] = 178770, + [SMALL_STATE(6925)] = 178804, + [SMALL_STATE(6926)] = 178838, + [SMALL_STATE(6927)] = 178872, + [SMALL_STATE(6928)] = 178906, + [SMALL_STATE(6929)] = 178940, + [SMALL_STATE(6930)] = 178974, + [SMALL_STATE(6931)] = 179008, + [SMALL_STATE(6932)] = 179042, + [SMALL_STATE(6933)] = 179076, + [SMALL_STATE(6934)] = 179110, + [SMALL_STATE(6935)] = 179144, + [SMALL_STATE(6936)] = 179178, + [SMALL_STATE(6937)] = 179212, + [SMALL_STATE(6938)] = 179246, + [SMALL_STATE(6939)] = 179280, + [SMALL_STATE(6940)] = 179314, + [SMALL_STATE(6941)] = 179348, + [SMALL_STATE(6942)] = 179382, + [SMALL_STATE(6943)] = 179416, + [SMALL_STATE(6944)] = 179450, + [SMALL_STATE(6945)] = 179484, + [SMALL_STATE(6946)] = 179518, + [SMALL_STATE(6947)] = 179552, + [SMALL_STATE(6948)] = 179586, + [SMALL_STATE(6949)] = 179620, + [SMALL_STATE(6950)] = 179654, + [SMALL_STATE(6951)] = 179688, + [SMALL_STATE(6952)] = 179722, + [SMALL_STATE(6953)] = 179756, + [SMALL_STATE(6954)] = 179790, + [SMALL_STATE(6955)] = 179824, + [SMALL_STATE(6956)] = 179858, + [SMALL_STATE(6957)] = 179892, + [SMALL_STATE(6958)] = 179926, + [SMALL_STATE(6959)] = 179960, + [SMALL_STATE(6960)] = 179994, + [SMALL_STATE(6961)] = 180028, + [SMALL_STATE(6962)] = 180062, + [SMALL_STATE(6963)] = 180096, + [SMALL_STATE(6964)] = 180130, + [SMALL_STATE(6965)] = 180164, + [SMALL_STATE(6966)] = 180198, + [SMALL_STATE(6967)] = 180232, + [SMALL_STATE(6968)] = 180266, + [SMALL_STATE(6969)] = 180300, + [SMALL_STATE(6970)] = 180334, + [SMALL_STATE(6971)] = 180368, + [SMALL_STATE(6972)] = 180402, + [SMALL_STATE(6973)] = 180436, + [SMALL_STATE(6974)] = 180470, + [SMALL_STATE(6975)] = 180504, + [SMALL_STATE(6976)] = 180538, + [SMALL_STATE(6977)] = 180572, + [SMALL_STATE(6978)] = 180606, + [SMALL_STATE(6979)] = 180640, + [SMALL_STATE(6980)] = 180674, + [SMALL_STATE(6981)] = 180708, + [SMALL_STATE(6982)] = 180742, + [SMALL_STATE(6983)] = 180776, + [SMALL_STATE(6984)] = 180810, + [SMALL_STATE(6985)] = 180844, + [SMALL_STATE(6986)] = 180878, + [SMALL_STATE(6987)] = 180912, + [SMALL_STATE(6988)] = 180946, + [SMALL_STATE(6989)] = 180980, + [SMALL_STATE(6990)] = 181014, + [SMALL_STATE(6991)] = 181048, + [SMALL_STATE(6992)] = 181082, + [SMALL_STATE(6993)] = 181116, + [SMALL_STATE(6994)] = 181150, + [SMALL_STATE(6995)] = 181184, + [SMALL_STATE(6996)] = 181218, + [SMALL_STATE(6997)] = 181252, + [SMALL_STATE(6998)] = 181286, + [SMALL_STATE(6999)] = 181320, + [SMALL_STATE(7000)] = 181354, + [SMALL_STATE(7001)] = 181388, + [SMALL_STATE(7002)] = 181422, + [SMALL_STATE(7003)] = 181456, + [SMALL_STATE(7004)] = 181490, + [SMALL_STATE(7005)] = 181524, + [SMALL_STATE(7006)] = 181558, + [SMALL_STATE(7007)] = 181592, + [SMALL_STATE(7008)] = 181626, + [SMALL_STATE(7009)] = 181660, + [SMALL_STATE(7010)] = 181694, + [SMALL_STATE(7011)] = 181728, + [SMALL_STATE(7012)] = 181762, + [SMALL_STATE(7013)] = 181796, + [SMALL_STATE(7014)] = 181830, + [SMALL_STATE(7015)] = 181864, + [SMALL_STATE(7016)] = 181898, + [SMALL_STATE(7017)] = 181932, + [SMALL_STATE(7018)] = 181966, + [SMALL_STATE(7019)] = 182000, + [SMALL_STATE(7020)] = 182034, + [SMALL_STATE(7021)] = 182068, + [SMALL_STATE(7022)] = 182102, + [SMALL_STATE(7023)] = 182136, + [SMALL_STATE(7024)] = 182170, + [SMALL_STATE(7025)] = 182204, + [SMALL_STATE(7026)] = 182238, + [SMALL_STATE(7027)] = 182272, + [SMALL_STATE(7028)] = 182306, + [SMALL_STATE(7029)] = 182340, + [SMALL_STATE(7030)] = 182374, + [SMALL_STATE(7031)] = 182408, + [SMALL_STATE(7032)] = 182442, + [SMALL_STATE(7033)] = 182476, + [SMALL_STATE(7034)] = 182510, + [SMALL_STATE(7035)] = 182544, + [SMALL_STATE(7036)] = 182578, + [SMALL_STATE(7037)] = 182612, + [SMALL_STATE(7038)] = 182646, + [SMALL_STATE(7039)] = 182680, + [SMALL_STATE(7040)] = 182714, + [SMALL_STATE(7041)] = 182748, + [SMALL_STATE(7042)] = 182782, + [SMALL_STATE(7043)] = 182816, + [SMALL_STATE(7044)] = 182850, + [SMALL_STATE(7045)] = 182884, + [SMALL_STATE(7046)] = 182918, + [SMALL_STATE(7047)] = 182952, + [SMALL_STATE(7048)] = 182986, + [SMALL_STATE(7049)] = 183020, + [SMALL_STATE(7050)] = 183054, + [SMALL_STATE(7051)] = 183088, + [SMALL_STATE(7052)] = 183122, + [SMALL_STATE(7053)] = 183156, + [SMALL_STATE(7054)] = 183190, + [SMALL_STATE(7055)] = 183224, + [SMALL_STATE(7056)] = 183258, + [SMALL_STATE(7057)] = 183292, + [SMALL_STATE(7058)] = 183326, + [SMALL_STATE(7059)] = 183360, + [SMALL_STATE(7060)] = 183394, + [SMALL_STATE(7061)] = 183428, + [SMALL_STATE(7062)] = 183462, + [SMALL_STATE(7063)] = 183496, + [SMALL_STATE(7064)] = 183530, + [SMALL_STATE(7065)] = 183564, + [SMALL_STATE(7066)] = 183598, + [SMALL_STATE(7067)] = 183632, + [SMALL_STATE(7068)] = 183666, + [SMALL_STATE(7069)] = 183700, + [SMALL_STATE(7070)] = 183734, + [SMALL_STATE(7071)] = 183768, + [SMALL_STATE(7072)] = 183802, + [SMALL_STATE(7073)] = 183836, + [SMALL_STATE(7074)] = 183870, + [SMALL_STATE(7075)] = 183904, + [SMALL_STATE(7076)] = 183938, + [SMALL_STATE(7077)] = 183972, + [SMALL_STATE(7078)] = 184006, + [SMALL_STATE(7079)] = 184040, + [SMALL_STATE(7080)] = 184074, + [SMALL_STATE(7081)] = 184108, + [SMALL_STATE(7082)] = 184142, + [SMALL_STATE(7083)] = 184176, + [SMALL_STATE(7084)] = 184210, + [SMALL_STATE(7085)] = 184244, + [SMALL_STATE(7086)] = 184278, + [SMALL_STATE(7087)] = 184312, + [SMALL_STATE(7088)] = 184346, + [SMALL_STATE(7089)] = 184380, + [SMALL_STATE(7090)] = 184414, + [SMALL_STATE(7091)] = 184448, + [SMALL_STATE(7092)] = 184482, + [SMALL_STATE(7093)] = 184516, + [SMALL_STATE(7094)] = 184550, + [SMALL_STATE(7095)] = 184584, + [SMALL_STATE(7096)] = 184618, + [SMALL_STATE(7097)] = 184652, + [SMALL_STATE(7098)] = 184686, + [SMALL_STATE(7099)] = 184720, + [SMALL_STATE(7100)] = 184754, + [SMALL_STATE(7101)] = 184788, + [SMALL_STATE(7102)] = 184822, + [SMALL_STATE(7103)] = 184856, + [SMALL_STATE(7104)] = 184890, + [SMALL_STATE(7105)] = 184924, + [SMALL_STATE(7106)] = 184958, + [SMALL_STATE(7107)] = 184992, + [SMALL_STATE(7108)] = 185026, + [SMALL_STATE(7109)] = 185060, + [SMALL_STATE(7110)] = 185094, + [SMALL_STATE(7111)] = 185128, + [SMALL_STATE(7112)] = 185162, + [SMALL_STATE(7113)] = 185196, + [SMALL_STATE(7114)] = 185230, + [SMALL_STATE(7115)] = 185264, + [SMALL_STATE(7116)] = 185298, + [SMALL_STATE(7117)] = 185332, + [SMALL_STATE(7118)] = 185366, + [SMALL_STATE(7119)] = 185400, + [SMALL_STATE(7120)] = 185434, + [SMALL_STATE(7121)] = 185468, + [SMALL_STATE(7122)] = 185502, + [SMALL_STATE(7123)] = 185536, + [SMALL_STATE(7124)] = 185570, + [SMALL_STATE(7125)] = 185604, + [SMALL_STATE(7126)] = 185638, + [SMALL_STATE(7127)] = 185672, + [SMALL_STATE(7128)] = 185706, + [SMALL_STATE(7129)] = 185740, + [SMALL_STATE(7130)] = 185774, + [SMALL_STATE(7131)] = 185808, + [SMALL_STATE(7132)] = 185842, + [SMALL_STATE(7133)] = 185876, + [SMALL_STATE(7134)] = 185910, + [SMALL_STATE(7135)] = 185944, + [SMALL_STATE(7136)] = 185978, + [SMALL_STATE(7137)] = 186012, + [SMALL_STATE(7138)] = 186046, + [SMALL_STATE(7139)] = 186080, + [SMALL_STATE(7140)] = 186114, + [SMALL_STATE(7141)] = 186148, + [SMALL_STATE(7142)] = 186182, + [SMALL_STATE(7143)] = 186216, + [SMALL_STATE(7144)] = 186250, + [SMALL_STATE(7145)] = 186284, + [SMALL_STATE(7146)] = 186318, + [SMALL_STATE(7147)] = 186352, + [SMALL_STATE(7148)] = 186386, + [SMALL_STATE(7149)] = 186420, + [SMALL_STATE(7150)] = 186454, + [SMALL_STATE(7151)] = 186488, + [SMALL_STATE(7152)] = 186522, + [SMALL_STATE(7153)] = 186556, + [SMALL_STATE(7154)] = 186590, + [SMALL_STATE(7155)] = 186624, + [SMALL_STATE(7156)] = 186658, + [SMALL_STATE(7157)] = 186692, + [SMALL_STATE(7158)] = 186723, + [SMALL_STATE(7159)] = 186754, + [SMALL_STATE(7160)] = 186785, + [SMALL_STATE(7161)] = 186816, + [SMALL_STATE(7162)] = 186847, + [SMALL_STATE(7163)] = 186878, + [SMALL_STATE(7164)] = 186909, + [SMALL_STATE(7165)] = 186940, + [SMALL_STATE(7166)] = 186971, + [SMALL_STATE(7167)] = 187002, + [SMALL_STATE(7168)] = 187033, + [SMALL_STATE(7169)] = 187064, + [SMALL_STATE(7170)] = 187095, + [SMALL_STATE(7171)] = 187126, + [SMALL_STATE(7172)] = 187157, + [SMALL_STATE(7173)] = 187188, + [SMALL_STATE(7174)] = 187219, + [SMALL_STATE(7175)] = 187250, + [SMALL_STATE(7176)] = 187281, + [SMALL_STATE(7177)] = 187312, + [SMALL_STATE(7178)] = 187343, + [SMALL_STATE(7179)] = 187374, + [SMALL_STATE(7180)] = 187405, + [SMALL_STATE(7181)] = 187436, + [SMALL_STATE(7182)] = 187467, + [SMALL_STATE(7183)] = 187498, + [SMALL_STATE(7184)] = 187529, + [SMALL_STATE(7185)] = 187560, + [SMALL_STATE(7186)] = 187591, + [SMALL_STATE(7187)] = 187622, + [SMALL_STATE(7188)] = 187653, + [SMALL_STATE(7189)] = 187684, + [SMALL_STATE(7190)] = 187715, + [SMALL_STATE(7191)] = 187746, + [SMALL_STATE(7192)] = 187777, + [SMALL_STATE(7193)] = 187808, + [SMALL_STATE(7194)] = 187839, + [SMALL_STATE(7195)] = 187870, + [SMALL_STATE(7196)] = 187901, + [SMALL_STATE(7197)] = 187932, + [SMALL_STATE(7198)] = 187963, + [SMALL_STATE(7199)] = 187994, + [SMALL_STATE(7200)] = 188025, + [SMALL_STATE(7201)] = 188056, + [SMALL_STATE(7202)] = 188087, + [SMALL_STATE(7203)] = 188118, + [SMALL_STATE(7204)] = 188149, + [SMALL_STATE(7205)] = 188180, + [SMALL_STATE(7206)] = 188211, + [SMALL_STATE(7207)] = 188242, + [SMALL_STATE(7208)] = 188273, + [SMALL_STATE(7209)] = 188304, + [SMALL_STATE(7210)] = 188335, + [SMALL_STATE(7211)] = 188366, + [SMALL_STATE(7212)] = 188397, + [SMALL_STATE(7213)] = 188428, + [SMALL_STATE(7214)] = 188459, + [SMALL_STATE(7215)] = 188490, + [SMALL_STATE(7216)] = 188521, + [SMALL_STATE(7217)] = 188552, + [SMALL_STATE(7218)] = 188583, + [SMALL_STATE(7219)] = 188614, + [SMALL_STATE(7220)] = 188645, + [SMALL_STATE(7221)] = 188676, + [SMALL_STATE(7222)] = 188707, + [SMALL_STATE(7223)] = 188738, + [SMALL_STATE(7224)] = 188769, + [SMALL_STATE(7225)] = 188800, + [SMALL_STATE(7226)] = 188831, + [SMALL_STATE(7227)] = 188862, + [SMALL_STATE(7228)] = 188893, + [SMALL_STATE(7229)] = 188924, + [SMALL_STATE(7230)] = 188955, + [SMALL_STATE(7231)] = 188986, + [SMALL_STATE(7232)] = 189017, + [SMALL_STATE(7233)] = 189048, + [SMALL_STATE(7234)] = 189079, + [SMALL_STATE(7235)] = 189110, + [SMALL_STATE(7236)] = 189141, + [SMALL_STATE(7237)] = 189172, + [SMALL_STATE(7238)] = 189203, + [SMALL_STATE(7239)] = 189234, + [SMALL_STATE(7240)] = 189265, + [SMALL_STATE(7241)] = 189296, + [SMALL_STATE(7242)] = 189327, + [SMALL_STATE(7243)] = 189358, + [SMALL_STATE(7244)] = 189389, + [SMALL_STATE(7245)] = 189420, + [SMALL_STATE(7246)] = 189451, + [SMALL_STATE(7247)] = 189482, + [SMALL_STATE(7248)] = 189513, + [SMALL_STATE(7249)] = 189544, + [SMALL_STATE(7250)] = 189575, + [SMALL_STATE(7251)] = 189606, + [SMALL_STATE(7252)] = 189637, + [SMALL_STATE(7253)] = 189668, + [SMALL_STATE(7254)] = 189699, + [SMALL_STATE(7255)] = 189730, + [SMALL_STATE(7256)] = 189761, + [SMALL_STATE(7257)] = 189792, + [SMALL_STATE(7258)] = 189823, + [SMALL_STATE(7259)] = 189854, + [SMALL_STATE(7260)] = 189885, + [SMALL_STATE(7261)] = 189916, + [SMALL_STATE(7262)] = 189947, + [SMALL_STATE(7263)] = 189978, + [SMALL_STATE(7264)] = 190009, + [SMALL_STATE(7265)] = 190040, + [SMALL_STATE(7266)] = 190071, + [SMALL_STATE(7267)] = 190102, + [SMALL_STATE(7268)] = 190133, + [SMALL_STATE(7269)] = 190164, + [SMALL_STATE(7270)] = 190195, + [SMALL_STATE(7271)] = 190226, + [SMALL_STATE(7272)] = 190257, + [SMALL_STATE(7273)] = 190288, + [SMALL_STATE(7274)] = 190319, + [SMALL_STATE(7275)] = 190350, + [SMALL_STATE(7276)] = 190381, + [SMALL_STATE(7277)] = 190412, + [SMALL_STATE(7278)] = 190443, + [SMALL_STATE(7279)] = 190474, + [SMALL_STATE(7280)] = 190505, + [SMALL_STATE(7281)] = 190536, + [SMALL_STATE(7282)] = 190567, + [SMALL_STATE(7283)] = 190598, + [SMALL_STATE(7284)] = 190629, + [SMALL_STATE(7285)] = 190660, + [SMALL_STATE(7286)] = 190691, + [SMALL_STATE(7287)] = 190722, + [SMALL_STATE(7288)] = 190753, + [SMALL_STATE(7289)] = 190784, + [SMALL_STATE(7290)] = 190815, + [SMALL_STATE(7291)] = 190846, + [SMALL_STATE(7292)] = 190877, + [SMALL_STATE(7293)] = 190908, + [SMALL_STATE(7294)] = 190939, + [SMALL_STATE(7295)] = 190970, + [SMALL_STATE(7296)] = 191001, + [SMALL_STATE(7297)] = 191032, + [SMALL_STATE(7298)] = 191063, + [SMALL_STATE(7299)] = 191094, + [SMALL_STATE(7300)] = 191125, + [SMALL_STATE(7301)] = 191156, + [SMALL_STATE(7302)] = 191187, + [SMALL_STATE(7303)] = 191218, + [SMALL_STATE(7304)] = 191249, + [SMALL_STATE(7305)] = 191280, + [SMALL_STATE(7306)] = 191311, + [SMALL_STATE(7307)] = 191342, + [SMALL_STATE(7308)] = 191373, + [SMALL_STATE(7309)] = 191404, + [SMALL_STATE(7310)] = 191435, + [SMALL_STATE(7311)] = 191466, + [SMALL_STATE(7312)] = 191497, + [SMALL_STATE(7313)] = 191528, + [SMALL_STATE(7314)] = 191559, + [SMALL_STATE(7315)] = 191590, + [SMALL_STATE(7316)] = 191621, + [SMALL_STATE(7317)] = 191652, + [SMALL_STATE(7318)] = 191683, + [SMALL_STATE(7319)] = 191714, + [SMALL_STATE(7320)] = 191745, + [SMALL_STATE(7321)] = 191776, + [SMALL_STATE(7322)] = 191807, + [SMALL_STATE(7323)] = 191838, + [SMALL_STATE(7324)] = 191869, + [SMALL_STATE(7325)] = 191900, + [SMALL_STATE(7326)] = 191931, + [SMALL_STATE(7327)] = 191962, + [SMALL_STATE(7328)] = 191993, + [SMALL_STATE(7329)] = 192024, + [SMALL_STATE(7330)] = 192055, + [SMALL_STATE(7331)] = 192086, + [SMALL_STATE(7332)] = 192117, + [SMALL_STATE(7333)] = 192148, + [SMALL_STATE(7334)] = 192179, + [SMALL_STATE(7335)] = 192210, + [SMALL_STATE(7336)] = 192241, + [SMALL_STATE(7337)] = 192272, + [SMALL_STATE(7338)] = 192303, + [SMALL_STATE(7339)] = 192334, + [SMALL_STATE(7340)] = 192365, + [SMALL_STATE(7341)] = 192396, + [SMALL_STATE(7342)] = 192427, + [SMALL_STATE(7343)] = 192458, + [SMALL_STATE(7344)] = 192489, + [SMALL_STATE(7345)] = 192520, + [SMALL_STATE(7346)] = 192551, + [SMALL_STATE(7347)] = 192582, + [SMALL_STATE(7348)] = 192613, + [SMALL_STATE(7349)] = 192644, + [SMALL_STATE(7350)] = 192675, + [SMALL_STATE(7351)] = 192706, + [SMALL_STATE(7352)] = 192737, + [SMALL_STATE(7353)] = 192768, + [SMALL_STATE(7354)] = 192799, + [SMALL_STATE(7355)] = 192830, + [SMALL_STATE(7356)] = 192861, + [SMALL_STATE(7357)] = 192892, + [SMALL_STATE(7358)] = 192923, + [SMALL_STATE(7359)] = 192954, + [SMALL_STATE(7360)] = 192985, + [SMALL_STATE(7361)] = 193016, + [SMALL_STATE(7362)] = 193047, + [SMALL_STATE(7363)] = 193078, + [SMALL_STATE(7364)] = 193109, + [SMALL_STATE(7365)] = 193140, + [SMALL_STATE(7366)] = 193171, + [SMALL_STATE(7367)] = 193202, + [SMALL_STATE(7368)] = 193233, + [SMALL_STATE(7369)] = 193264, + [SMALL_STATE(7370)] = 193295, + [SMALL_STATE(7371)] = 193326, + [SMALL_STATE(7372)] = 193357, + [SMALL_STATE(7373)] = 193388, + [SMALL_STATE(7374)] = 193419, + [SMALL_STATE(7375)] = 193450, + [SMALL_STATE(7376)] = 193481, + [SMALL_STATE(7377)] = 193512, + [SMALL_STATE(7378)] = 193543, + [SMALL_STATE(7379)] = 193574, + [SMALL_STATE(7380)] = 193605, + [SMALL_STATE(7381)] = 193636, + [SMALL_STATE(7382)] = 193667, + [SMALL_STATE(7383)] = 193698, + [SMALL_STATE(7384)] = 193729, + [SMALL_STATE(7385)] = 193760, + [SMALL_STATE(7386)] = 193791, + [SMALL_STATE(7387)] = 193822, + [SMALL_STATE(7388)] = 193853, + [SMALL_STATE(7389)] = 193884, + [SMALL_STATE(7390)] = 193915, + [SMALL_STATE(7391)] = 193946, + [SMALL_STATE(7392)] = 193977, + [SMALL_STATE(7393)] = 194008, + [SMALL_STATE(7394)] = 194039, + [SMALL_STATE(7395)] = 194070, + [SMALL_STATE(7396)] = 194101, + [SMALL_STATE(7397)] = 194132, + [SMALL_STATE(7398)] = 194163, + [SMALL_STATE(7399)] = 194194, + [SMALL_STATE(7400)] = 194225, + [SMALL_STATE(7401)] = 194256, + [SMALL_STATE(7402)] = 194287, + [SMALL_STATE(7403)] = 194318, + [SMALL_STATE(7404)] = 194349, + [SMALL_STATE(7405)] = 194380, + [SMALL_STATE(7406)] = 194411, + [SMALL_STATE(7407)] = 194442, + [SMALL_STATE(7408)] = 194473, + [SMALL_STATE(7409)] = 194504, + [SMALL_STATE(7410)] = 194535, + [SMALL_STATE(7411)] = 194566, + [SMALL_STATE(7412)] = 194597, + [SMALL_STATE(7413)] = 194628, + [SMALL_STATE(7414)] = 194659, + [SMALL_STATE(7415)] = 194690, + [SMALL_STATE(7416)] = 194721, + [SMALL_STATE(7417)] = 194752, + [SMALL_STATE(7418)] = 194783, + [SMALL_STATE(7419)] = 194814, + [SMALL_STATE(7420)] = 194845, + [SMALL_STATE(7421)] = 194876, + [SMALL_STATE(7422)] = 194907, + [SMALL_STATE(7423)] = 194938, + [SMALL_STATE(7424)] = 194969, + [SMALL_STATE(7425)] = 195000, + [SMALL_STATE(7426)] = 195031, + [SMALL_STATE(7427)] = 195062, + [SMALL_STATE(7428)] = 195093, + [SMALL_STATE(7429)] = 195124, + [SMALL_STATE(7430)] = 195155, + [SMALL_STATE(7431)] = 195186, + [SMALL_STATE(7432)] = 195217, + [SMALL_STATE(7433)] = 195248, + [SMALL_STATE(7434)] = 195279, + [SMALL_STATE(7435)] = 195310, + [SMALL_STATE(7436)] = 195341, + [SMALL_STATE(7437)] = 195372, + [SMALL_STATE(7438)] = 195403, + [SMALL_STATE(7439)] = 195434, + [SMALL_STATE(7440)] = 195465, + [SMALL_STATE(7441)] = 195496, + [SMALL_STATE(7442)] = 195527, + [SMALL_STATE(7443)] = 195558, + [SMALL_STATE(7444)] = 195589, + [SMALL_STATE(7445)] = 195620, + [SMALL_STATE(7446)] = 195651, + [SMALL_STATE(7447)] = 195682, + [SMALL_STATE(7448)] = 195713, + [SMALL_STATE(7449)] = 195744, + [SMALL_STATE(7450)] = 195775, + [SMALL_STATE(7451)] = 195806, + [SMALL_STATE(7452)] = 195837, + [SMALL_STATE(7453)] = 195868, + [SMALL_STATE(7454)] = 195899, + [SMALL_STATE(7455)] = 195930, + [SMALL_STATE(7456)] = 195961, + [SMALL_STATE(7457)] = 195992, + [SMALL_STATE(7458)] = 196023, + [SMALL_STATE(7459)] = 196054, + [SMALL_STATE(7460)] = 196085, + [SMALL_STATE(7461)] = 196116, + [SMALL_STATE(7462)] = 196147, + [SMALL_STATE(7463)] = 196178, + [SMALL_STATE(7464)] = 196209, + [SMALL_STATE(7465)] = 196240, + [SMALL_STATE(7466)] = 196271, + [SMALL_STATE(7467)] = 196302, + [SMALL_STATE(7468)] = 196333, + [SMALL_STATE(7469)] = 196364, + [SMALL_STATE(7470)] = 196395, + [SMALL_STATE(7471)] = 196426, + [SMALL_STATE(7472)] = 196457, + [SMALL_STATE(7473)] = 196488, + [SMALL_STATE(7474)] = 196519, + [SMALL_STATE(7475)] = 196550, + [SMALL_STATE(7476)] = 196581, + [SMALL_STATE(7477)] = 196612, + [SMALL_STATE(7478)] = 196643, + [SMALL_STATE(7479)] = 196674, + [SMALL_STATE(7480)] = 196705, + [SMALL_STATE(7481)] = 196736, + [SMALL_STATE(7482)] = 196767, + [SMALL_STATE(7483)] = 196798, + [SMALL_STATE(7484)] = 196829, + [SMALL_STATE(7485)] = 196860, + [SMALL_STATE(7486)] = 196891, + [SMALL_STATE(7487)] = 196922, + [SMALL_STATE(7488)] = 196953, + [SMALL_STATE(7489)] = 196984, + [SMALL_STATE(7490)] = 197015, + [SMALL_STATE(7491)] = 197046, + [SMALL_STATE(7492)] = 197077, + [SMALL_STATE(7493)] = 197108, + [SMALL_STATE(7494)] = 197139, + [SMALL_STATE(7495)] = 197170, + [SMALL_STATE(7496)] = 197201, + [SMALL_STATE(7497)] = 197232, + [SMALL_STATE(7498)] = 197263, + [SMALL_STATE(7499)] = 197294, + [SMALL_STATE(7500)] = 197325, + [SMALL_STATE(7501)] = 197356, + [SMALL_STATE(7502)] = 197387, + [SMALL_STATE(7503)] = 197418, + [SMALL_STATE(7504)] = 197449, + [SMALL_STATE(7505)] = 197480, + [SMALL_STATE(7506)] = 197511, + [SMALL_STATE(7507)] = 197542, + [SMALL_STATE(7508)] = 197573, + [SMALL_STATE(7509)] = 197604, + [SMALL_STATE(7510)] = 197635, + [SMALL_STATE(7511)] = 197666, + [SMALL_STATE(7512)] = 197697, + [SMALL_STATE(7513)] = 197728, + [SMALL_STATE(7514)] = 197759, + [SMALL_STATE(7515)] = 197790, + [SMALL_STATE(7516)] = 197821, + [SMALL_STATE(7517)] = 197852, + [SMALL_STATE(7518)] = 197883, + [SMALL_STATE(7519)] = 197914, + [SMALL_STATE(7520)] = 197945, + [SMALL_STATE(7521)] = 197976, + [SMALL_STATE(7522)] = 198007, + [SMALL_STATE(7523)] = 198038, + [SMALL_STATE(7524)] = 198069, + [SMALL_STATE(7525)] = 198100, + [SMALL_STATE(7526)] = 198131, + [SMALL_STATE(7527)] = 198162, + [SMALL_STATE(7528)] = 198193, + [SMALL_STATE(7529)] = 198224, + [SMALL_STATE(7530)] = 198255, + [SMALL_STATE(7531)] = 198286, + [SMALL_STATE(7532)] = 198317, + [SMALL_STATE(7533)] = 198348, + [SMALL_STATE(7534)] = 198379, + [SMALL_STATE(7535)] = 198410, + [SMALL_STATE(7536)] = 198441, + [SMALL_STATE(7537)] = 198472, + [SMALL_STATE(7538)] = 198503, + [SMALL_STATE(7539)] = 198534, + [SMALL_STATE(7540)] = 198565, + [SMALL_STATE(7541)] = 198596, + [SMALL_STATE(7542)] = 198627, + [SMALL_STATE(7543)] = 198658, + [SMALL_STATE(7544)] = 198689, + [SMALL_STATE(7545)] = 198720, + [SMALL_STATE(7546)] = 198751, + [SMALL_STATE(7547)] = 198782, + [SMALL_STATE(7548)] = 198813, + [SMALL_STATE(7549)] = 198844, + [SMALL_STATE(7550)] = 198875, + [SMALL_STATE(7551)] = 198906, + [SMALL_STATE(7552)] = 198937, + [SMALL_STATE(7553)] = 198968, + [SMALL_STATE(7554)] = 198999, + [SMALL_STATE(7555)] = 199030, + [SMALL_STATE(7556)] = 199061, + [SMALL_STATE(7557)] = 199092, + [SMALL_STATE(7558)] = 199123, + [SMALL_STATE(7559)] = 199154, + [SMALL_STATE(7560)] = 199185, + [SMALL_STATE(7561)] = 199216, + [SMALL_STATE(7562)] = 199247, + [SMALL_STATE(7563)] = 199278, + [SMALL_STATE(7564)] = 199309, + [SMALL_STATE(7565)] = 199340, + [SMALL_STATE(7566)] = 199371, + [SMALL_STATE(7567)] = 199402, + [SMALL_STATE(7568)] = 199433, + [SMALL_STATE(7569)] = 199464, + [SMALL_STATE(7570)] = 199495, + [SMALL_STATE(7571)] = 199526, + [SMALL_STATE(7572)] = 199557, + [SMALL_STATE(7573)] = 199588, + [SMALL_STATE(7574)] = 199619, + [SMALL_STATE(7575)] = 199650, + [SMALL_STATE(7576)] = 199681, + [SMALL_STATE(7577)] = 199712, + [SMALL_STATE(7578)] = 199743, + [SMALL_STATE(7579)] = 199774, + [SMALL_STATE(7580)] = 199805, + [SMALL_STATE(7581)] = 199836, + [SMALL_STATE(7582)] = 199867, + [SMALL_STATE(7583)] = 199898, + [SMALL_STATE(7584)] = 199929, + [SMALL_STATE(7585)] = 199960, + [SMALL_STATE(7586)] = 199991, + [SMALL_STATE(7587)] = 200022, + [SMALL_STATE(7588)] = 200053, + [SMALL_STATE(7589)] = 200084, + [SMALL_STATE(7590)] = 200115, + [SMALL_STATE(7591)] = 200146, + [SMALL_STATE(7592)] = 200177, + [SMALL_STATE(7593)] = 200208, + [SMALL_STATE(7594)] = 200239, + [SMALL_STATE(7595)] = 200270, + [SMALL_STATE(7596)] = 200301, + [SMALL_STATE(7597)] = 200332, + [SMALL_STATE(7598)] = 200363, + [SMALL_STATE(7599)] = 200394, + [SMALL_STATE(7600)] = 200425, + [SMALL_STATE(7601)] = 200456, + [SMALL_STATE(7602)] = 200487, + [SMALL_STATE(7603)] = 200518, + [SMALL_STATE(7604)] = 200549, + [SMALL_STATE(7605)] = 200580, + [SMALL_STATE(7606)] = 200611, + [SMALL_STATE(7607)] = 200642, + [SMALL_STATE(7608)] = 200673, + [SMALL_STATE(7609)] = 200704, + [SMALL_STATE(7610)] = 200735, + [SMALL_STATE(7611)] = 200766, + [SMALL_STATE(7612)] = 200797, + [SMALL_STATE(7613)] = 200828, + [SMALL_STATE(7614)] = 200859, + [SMALL_STATE(7615)] = 200890, + [SMALL_STATE(7616)] = 200921, + [SMALL_STATE(7617)] = 200952, + [SMALL_STATE(7618)] = 200983, + [SMALL_STATE(7619)] = 201014, + [SMALL_STATE(7620)] = 201045, + [SMALL_STATE(7621)] = 201076, + [SMALL_STATE(7622)] = 201107, + [SMALL_STATE(7623)] = 201138, + [SMALL_STATE(7624)] = 201169, + [SMALL_STATE(7625)] = 201200, + [SMALL_STATE(7626)] = 201231, + [SMALL_STATE(7627)] = 201262, + [SMALL_STATE(7628)] = 201293, + [SMALL_STATE(7629)] = 201324, + [SMALL_STATE(7630)] = 201355, + [SMALL_STATE(7631)] = 201386, + [SMALL_STATE(7632)] = 201417, + [SMALL_STATE(7633)] = 201448, + [SMALL_STATE(7634)] = 201479, + [SMALL_STATE(7635)] = 201510, + [SMALL_STATE(7636)] = 201541, + [SMALL_STATE(7637)] = 201572, + [SMALL_STATE(7638)] = 201603, + [SMALL_STATE(7639)] = 201634, + [SMALL_STATE(7640)] = 201665, + [SMALL_STATE(7641)] = 201696, + [SMALL_STATE(7642)] = 201727, + [SMALL_STATE(7643)] = 201758, + [SMALL_STATE(7644)] = 201789, + [SMALL_STATE(7645)] = 201820, + [SMALL_STATE(7646)] = 201851, + [SMALL_STATE(7647)] = 201882, + [SMALL_STATE(7648)] = 201913, + [SMALL_STATE(7649)] = 201944, + [SMALL_STATE(7650)] = 201975, + [SMALL_STATE(7651)] = 202006, + [SMALL_STATE(7652)] = 202037, + [SMALL_STATE(7653)] = 202068, + [SMALL_STATE(7654)] = 202099, + [SMALL_STATE(7655)] = 202130, + [SMALL_STATE(7656)] = 202161, + [SMALL_STATE(7657)] = 202192, + [SMALL_STATE(7658)] = 202223, + [SMALL_STATE(7659)] = 202254, + [SMALL_STATE(7660)] = 202285, + [SMALL_STATE(7661)] = 202316, + [SMALL_STATE(7662)] = 202347, + [SMALL_STATE(7663)] = 202378, + [SMALL_STATE(7664)] = 202409, + [SMALL_STATE(7665)] = 202440, + [SMALL_STATE(7666)] = 202471, + [SMALL_STATE(7667)] = 202502, + [SMALL_STATE(7668)] = 202533, + [SMALL_STATE(7669)] = 202564, + [SMALL_STATE(7670)] = 202595, + [SMALL_STATE(7671)] = 202626, + [SMALL_STATE(7672)] = 202657, + [SMALL_STATE(7673)] = 202688, + [SMALL_STATE(7674)] = 202719, + [SMALL_STATE(7675)] = 202750, + [SMALL_STATE(7676)] = 202781, + [SMALL_STATE(7677)] = 202812, + [SMALL_STATE(7678)] = 202843, + [SMALL_STATE(7679)] = 202874, + [SMALL_STATE(7680)] = 202905, + [SMALL_STATE(7681)] = 202936, + [SMALL_STATE(7682)] = 202967, + [SMALL_STATE(7683)] = 202998, + [SMALL_STATE(7684)] = 203029, + [SMALL_STATE(7685)] = 203060, + [SMALL_STATE(7686)] = 203091, + [SMALL_STATE(7687)] = 203122, + [SMALL_STATE(7688)] = 203153, + [SMALL_STATE(7689)] = 203184, + [SMALL_STATE(7690)] = 203215, + [SMALL_STATE(7691)] = 203246, + [SMALL_STATE(7692)] = 203277, + [SMALL_STATE(7693)] = 203308, + [SMALL_STATE(7694)] = 203339, + [SMALL_STATE(7695)] = 203370, + [SMALL_STATE(7696)] = 203401, + [SMALL_STATE(7697)] = 203432, + [SMALL_STATE(7698)] = 203463, + [SMALL_STATE(7699)] = 203494, + [SMALL_STATE(7700)] = 203525, + [SMALL_STATE(7701)] = 203556, + [SMALL_STATE(7702)] = 203587, + [SMALL_STATE(7703)] = 203618, + [SMALL_STATE(7704)] = 203649, + [SMALL_STATE(7705)] = 203680, + [SMALL_STATE(7706)] = 203711, + [SMALL_STATE(7707)] = 203742, + [SMALL_STATE(7708)] = 203773, + [SMALL_STATE(7709)] = 203804, + [SMALL_STATE(7710)] = 203835, + [SMALL_STATE(7711)] = 203866, + [SMALL_STATE(7712)] = 203897, + [SMALL_STATE(7713)] = 203928, + [SMALL_STATE(7714)] = 203959, + [SMALL_STATE(7715)] = 203990, + [SMALL_STATE(7716)] = 204021, + [SMALL_STATE(7717)] = 204052, + [SMALL_STATE(7718)] = 204083, + [SMALL_STATE(7719)] = 204114, + [SMALL_STATE(7720)] = 204145, + [SMALL_STATE(7721)] = 204176, + [SMALL_STATE(7722)] = 204207, + [SMALL_STATE(7723)] = 204238, + [SMALL_STATE(7724)] = 204269, + [SMALL_STATE(7725)] = 204300, + [SMALL_STATE(7726)] = 204331, + [SMALL_STATE(7727)] = 204362, + [SMALL_STATE(7728)] = 204393, + [SMALL_STATE(7729)] = 204424, + [SMALL_STATE(7730)] = 204455, + [SMALL_STATE(7731)] = 204486, + [SMALL_STATE(7732)] = 204517, + [SMALL_STATE(7733)] = 204548, + [SMALL_STATE(7734)] = 204579, + [SMALL_STATE(7735)] = 204610, + [SMALL_STATE(7736)] = 204641, + [SMALL_STATE(7737)] = 204672, + [SMALL_STATE(7738)] = 204703, + [SMALL_STATE(7739)] = 204734, + [SMALL_STATE(7740)] = 204765, + [SMALL_STATE(7741)] = 204796, + [SMALL_STATE(7742)] = 204827, + [SMALL_STATE(7743)] = 204858, + [SMALL_STATE(7744)] = 204889, + [SMALL_STATE(7745)] = 204920, + [SMALL_STATE(7746)] = 204951, + [SMALL_STATE(7747)] = 204982, + [SMALL_STATE(7748)] = 205013, + [SMALL_STATE(7749)] = 205044, + [SMALL_STATE(7750)] = 205075, + [SMALL_STATE(7751)] = 205106, + [SMALL_STATE(7752)] = 205137, + [SMALL_STATE(7753)] = 205168, + [SMALL_STATE(7754)] = 205199, + [SMALL_STATE(7755)] = 205230, + [SMALL_STATE(7756)] = 205261, + [SMALL_STATE(7757)] = 205292, + [SMALL_STATE(7758)] = 205323, + [SMALL_STATE(7759)] = 205354, + [SMALL_STATE(7760)] = 205385, + [SMALL_STATE(7761)] = 205416, + [SMALL_STATE(7762)] = 205447, + [SMALL_STATE(7763)] = 205478, + [SMALL_STATE(7764)] = 205509, + [SMALL_STATE(7765)] = 205540, + [SMALL_STATE(7766)] = 205571, + [SMALL_STATE(7767)] = 205602, + [SMALL_STATE(7768)] = 205633, + [SMALL_STATE(7769)] = 205664, + [SMALL_STATE(7770)] = 205695, + [SMALL_STATE(7771)] = 205726, + [SMALL_STATE(7772)] = 205757, + [SMALL_STATE(7773)] = 205788, + [SMALL_STATE(7774)] = 205819, + [SMALL_STATE(7775)] = 205850, + [SMALL_STATE(7776)] = 205881, + [SMALL_STATE(7777)] = 205912, + [SMALL_STATE(7778)] = 205943, + [SMALL_STATE(7779)] = 205974, + [SMALL_STATE(7780)] = 206005, + [SMALL_STATE(7781)] = 206036, + [SMALL_STATE(7782)] = 206067, + [SMALL_STATE(7783)] = 206098, + [SMALL_STATE(7784)] = 206129, + [SMALL_STATE(7785)] = 206160, + [SMALL_STATE(7786)] = 206191, + [SMALL_STATE(7787)] = 206222, + [SMALL_STATE(7788)] = 206253, + [SMALL_STATE(7789)] = 206284, + [SMALL_STATE(7790)] = 206315, + [SMALL_STATE(7791)] = 206346, + [SMALL_STATE(7792)] = 206377, + [SMALL_STATE(7793)] = 206408, + [SMALL_STATE(7794)] = 206439, + [SMALL_STATE(7795)] = 206470, + [SMALL_STATE(7796)] = 206501, + [SMALL_STATE(7797)] = 206532, + [SMALL_STATE(7798)] = 206563, + [SMALL_STATE(7799)] = 206594, + [SMALL_STATE(7800)] = 206625, + [SMALL_STATE(7801)] = 206656, + [SMALL_STATE(7802)] = 206687, + [SMALL_STATE(7803)] = 206718, + [SMALL_STATE(7804)] = 206749, + [SMALL_STATE(7805)] = 206780, + [SMALL_STATE(7806)] = 206811, + [SMALL_STATE(7807)] = 206842, + [SMALL_STATE(7808)] = 206873, + [SMALL_STATE(7809)] = 206904, + [SMALL_STATE(7810)] = 206935, + [SMALL_STATE(7811)] = 206966, + [SMALL_STATE(7812)] = 206997, + [SMALL_STATE(7813)] = 207028, + [SMALL_STATE(7814)] = 207059, + [SMALL_STATE(7815)] = 207090, + [SMALL_STATE(7816)] = 207121, + [SMALL_STATE(7817)] = 207152, + [SMALL_STATE(7818)] = 207183, + [SMALL_STATE(7819)] = 207214, + [SMALL_STATE(7820)] = 207245, + [SMALL_STATE(7821)] = 207276, + [SMALL_STATE(7822)] = 207307, + [SMALL_STATE(7823)] = 207338, + [SMALL_STATE(7824)] = 207369, + [SMALL_STATE(7825)] = 207400, + [SMALL_STATE(7826)] = 207431, + [SMALL_STATE(7827)] = 207462, + [SMALL_STATE(7828)] = 207493, + [SMALL_STATE(7829)] = 207524, + [SMALL_STATE(7830)] = 207555, + [SMALL_STATE(7831)] = 207586, + [SMALL_STATE(7832)] = 207617, + [SMALL_STATE(7833)] = 207648, + [SMALL_STATE(7834)] = 207679, + [SMALL_STATE(7835)] = 207710, + [SMALL_STATE(7836)] = 207741, + [SMALL_STATE(7837)] = 207772, + [SMALL_STATE(7838)] = 207803, + [SMALL_STATE(7839)] = 207834, + [SMALL_STATE(7840)] = 207865, + [SMALL_STATE(7841)] = 207896, + [SMALL_STATE(7842)] = 207927, + [SMALL_STATE(7843)] = 207958, + [SMALL_STATE(7844)] = 207989, + [SMALL_STATE(7845)] = 208020, + [SMALL_STATE(7846)] = 208051, + [SMALL_STATE(7847)] = 208082, + [SMALL_STATE(7848)] = 208113, + [SMALL_STATE(7849)] = 208144, + [SMALL_STATE(7850)] = 208175, + [SMALL_STATE(7851)] = 208206, + [SMALL_STATE(7852)] = 208237, + [SMALL_STATE(7853)] = 208268, + [SMALL_STATE(7854)] = 208299, + [SMALL_STATE(7855)] = 208330, + [SMALL_STATE(7856)] = 208361, + [SMALL_STATE(7857)] = 208392, + [SMALL_STATE(7858)] = 208423, + [SMALL_STATE(7859)] = 208454, + [SMALL_STATE(7860)] = 208485, + [SMALL_STATE(7861)] = 208516, + [SMALL_STATE(7862)] = 208547, + [SMALL_STATE(7863)] = 208578, + [SMALL_STATE(7864)] = 208609, + [SMALL_STATE(7865)] = 208640, + [SMALL_STATE(7866)] = 208671, + [SMALL_STATE(7867)] = 208702, + [SMALL_STATE(7868)] = 208733, + [SMALL_STATE(7869)] = 208764, + [SMALL_STATE(7870)] = 208795, + [SMALL_STATE(7871)] = 208826, + [SMALL_STATE(7872)] = 208857, + [SMALL_STATE(7873)] = 208888, + [SMALL_STATE(7874)] = 208919, + [SMALL_STATE(7875)] = 208950, + [SMALL_STATE(7876)] = 208981, + [SMALL_STATE(7877)] = 209012, + [SMALL_STATE(7878)] = 209043, + [SMALL_STATE(7879)] = 209074, + [SMALL_STATE(7880)] = 209105, + [SMALL_STATE(7881)] = 209136, + [SMALL_STATE(7882)] = 209167, + [SMALL_STATE(7883)] = 209198, + [SMALL_STATE(7884)] = 209229, + [SMALL_STATE(7885)] = 209260, + [SMALL_STATE(7886)] = 209291, + [SMALL_STATE(7887)] = 209322, + [SMALL_STATE(7888)] = 209353, + [SMALL_STATE(7889)] = 209384, + [SMALL_STATE(7890)] = 209415, + [SMALL_STATE(7891)] = 209446, + [SMALL_STATE(7892)] = 209477, + [SMALL_STATE(7893)] = 209508, + [SMALL_STATE(7894)] = 209539, + [SMALL_STATE(7895)] = 209570, + [SMALL_STATE(7896)] = 209601, + [SMALL_STATE(7897)] = 209632, + [SMALL_STATE(7898)] = 209663, + [SMALL_STATE(7899)] = 209694, + [SMALL_STATE(7900)] = 209725, + [SMALL_STATE(7901)] = 209756, + [SMALL_STATE(7902)] = 209787, + [SMALL_STATE(7903)] = 209818, + [SMALL_STATE(7904)] = 209849, + [SMALL_STATE(7905)] = 209880, + [SMALL_STATE(7906)] = 209911, + [SMALL_STATE(7907)] = 209942, + [SMALL_STATE(7908)] = 209973, + [SMALL_STATE(7909)] = 210004, + [SMALL_STATE(7910)] = 210035, + [SMALL_STATE(7911)] = 210066, + [SMALL_STATE(7912)] = 210097, + [SMALL_STATE(7913)] = 210128, + [SMALL_STATE(7914)] = 210159, + [SMALL_STATE(7915)] = 210190, + [SMALL_STATE(7916)] = 210221, + [SMALL_STATE(7917)] = 210252, + [SMALL_STATE(7918)] = 210283, + [SMALL_STATE(7919)] = 210314, + [SMALL_STATE(7920)] = 210345, + [SMALL_STATE(7921)] = 210376, + [SMALL_STATE(7922)] = 210407, + [SMALL_STATE(7923)] = 210438, + [SMALL_STATE(7924)] = 210469, + [SMALL_STATE(7925)] = 210500, + [SMALL_STATE(7926)] = 210531, + [SMALL_STATE(7927)] = 210562, + [SMALL_STATE(7928)] = 210593, + [SMALL_STATE(7929)] = 210624, + [SMALL_STATE(7930)] = 210655, + [SMALL_STATE(7931)] = 210686, + [SMALL_STATE(7932)] = 210717, + [SMALL_STATE(7933)] = 210748, + [SMALL_STATE(7934)] = 210779, + [SMALL_STATE(7935)] = 210810, + [SMALL_STATE(7936)] = 210841, + [SMALL_STATE(7937)] = 210872, + [SMALL_STATE(7938)] = 210903, + [SMALL_STATE(7939)] = 210934, + [SMALL_STATE(7940)] = 210965, + [SMALL_STATE(7941)] = 210996, + [SMALL_STATE(7942)] = 211027, + [SMALL_STATE(7943)] = 211058, + [SMALL_STATE(7944)] = 211089, + [SMALL_STATE(7945)] = 211120, + [SMALL_STATE(7946)] = 211151, + [SMALL_STATE(7947)] = 211182, + [SMALL_STATE(7948)] = 211213, + [SMALL_STATE(7949)] = 211244, + [SMALL_STATE(7950)] = 211275, + [SMALL_STATE(7951)] = 211306, + [SMALL_STATE(7952)] = 211337, + [SMALL_STATE(7953)] = 211368, + [SMALL_STATE(7954)] = 211399, + [SMALL_STATE(7955)] = 211430, + [SMALL_STATE(7956)] = 211461, + [SMALL_STATE(7957)] = 211492, + [SMALL_STATE(7958)] = 211523, + [SMALL_STATE(7959)] = 211554, + [SMALL_STATE(7960)] = 211585, + [SMALL_STATE(7961)] = 211616, + [SMALL_STATE(7962)] = 211647, + [SMALL_STATE(7963)] = 211678, + [SMALL_STATE(7964)] = 211709, + [SMALL_STATE(7965)] = 211740, + [SMALL_STATE(7966)] = 211771, + [SMALL_STATE(7967)] = 211802, + [SMALL_STATE(7968)] = 211833, + [SMALL_STATE(7969)] = 211864, + [SMALL_STATE(7970)] = 211895, + [SMALL_STATE(7971)] = 211926, + [SMALL_STATE(7972)] = 211957, + [SMALL_STATE(7973)] = 211988, + [SMALL_STATE(7974)] = 212019, + [SMALL_STATE(7975)] = 212050, + [SMALL_STATE(7976)] = 212081, + [SMALL_STATE(7977)] = 212112, + [SMALL_STATE(7978)] = 212143, + [SMALL_STATE(7979)] = 212174, + [SMALL_STATE(7980)] = 212205, + [SMALL_STATE(7981)] = 212236, + [SMALL_STATE(7982)] = 212267, + [SMALL_STATE(7983)] = 212298, + [SMALL_STATE(7984)] = 212329, + [SMALL_STATE(7985)] = 212360, + [SMALL_STATE(7986)] = 212391, + [SMALL_STATE(7987)] = 212422, + [SMALL_STATE(7988)] = 212453, + [SMALL_STATE(7989)] = 212484, + [SMALL_STATE(7990)] = 212515, + [SMALL_STATE(7991)] = 212546, + [SMALL_STATE(7992)] = 212577, + [SMALL_STATE(7993)] = 212608, + [SMALL_STATE(7994)] = 212639, + [SMALL_STATE(7995)] = 212670, + [SMALL_STATE(7996)] = 212701, + [SMALL_STATE(7997)] = 212732, + [SMALL_STATE(7998)] = 212763, + [SMALL_STATE(7999)] = 212794, + [SMALL_STATE(8000)] = 212825, + [SMALL_STATE(8001)] = 212856, + [SMALL_STATE(8002)] = 212887, + [SMALL_STATE(8003)] = 212918, + [SMALL_STATE(8004)] = 212949, + [SMALL_STATE(8005)] = 212980, + [SMALL_STATE(8006)] = 213011, + [SMALL_STATE(8007)] = 213042, + [SMALL_STATE(8008)] = 213073, + [SMALL_STATE(8009)] = 213104, + [SMALL_STATE(8010)] = 213135, + [SMALL_STATE(8011)] = 213166, + [SMALL_STATE(8012)] = 213197, + [SMALL_STATE(8013)] = 213228, + [SMALL_STATE(8014)] = 213259, + [SMALL_STATE(8015)] = 213290, + [SMALL_STATE(8016)] = 213321, + [SMALL_STATE(8017)] = 213352, + [SMALL_STATE(8018)] = 213383, + [SMALL_STATE(8019)] = 213414, + [SMALL_STATE(8020)] = 213445, + [SMALL_STATE(8021)] = 213476, + [SMALL_STATE(8022)] = 213507, + [SMALL_STATE(8023)] = 213538, + [SMALL_STATE(8024)] = 213569, + [SMALL_STATE(8025)] = 213600, + [SMALL_STATE(8026)] = 213631, + [SMALL_STATE(8027)] = 213662, + [SMALL_STATE(8028)] = 213693, + [SMALL_STATE(8029)] = 213724, + [SMALL_STATE(8030)] = 213755, + [SMALL_STATE(8031)] = 213786, + [SMALL_STATE(8032)] = 213817, + [SMALL_STATE(8033)] = 213848, + [SMALL_STATE(8034)] = 213879, + [SMALL_STATE(8035)] = 213910, + [SMALL_STATE(8036)] = 213941, + [SMALL_STATE(8037)] = 213972, + [SMALL_STATE(8038)] = 214003, + [SMALL_STATE(8039)] = 214034, + [SMALL_STATE(8040)] = 214065, + [SMALL_STATE(8041)] = 214096, + [SMALL_STATE(8042)] = 214127, + [SMALL_STATE(8043)] = 214158, + [SMALL_STATE(8044)] = 214189, + [SMALL_STATE(8045)] = 214220, + [SMALL_STATE(8046)] = 214251, + [SMALL_STATE(8047)] = 214282, + [SMALL_STATE(8048)] = 214313, + [SMALL_STATE(8049)] = 214344, + [SMALL_STATE(8050)] = 214375, + [SMALL_STATE(8051)] = 214406, + [SMALL_STATE(8052)] = 214437, + [SMALL_STATE(8053)] = 214468, + [SMALL_STATE(8054)] = 214499, + [SMALL_STATE(8055)] = 214530, + [SMALL_STATE(8056)] = 214561, + [SMALL_STATE(8057)] = 214592, + [SMALL_STATE(8058)] = 214623, + [SMALL_STATE(8059)] = 214654, + [SMALL_STATE(8060)] = 214685, + [SMALL_STATE(8061)] = 214716, + [SMALL_STATE(8062)] = 214747, + [SMALL_STATE(8063)] = 214778, + [SMALL_STATE(8064)] = 214809, + [SMALL_STATE(8065)] = 214840, + [SMALL_STATE(8066)] = 214871, + [SMALL_STATE(8067)] = 214902, + [SMALL_STATE(8068)] = 214933, + [SMALL_STATE(8069)] = 214964, + [SMALL_STATE(8070)] = 214995, + [SMALL_STATE(8071)] = 215026, + [SMALL_STATE(8072)] = 215057, + [SMALL_STATE(8073)] = 215088, + [SMALL_STATE(8074)] = 215119, + [SMALL_STATE(8075)] = 215150, + [SMALL_STATE(8076)] = 215181, + [SMALL_STATE(8077)] = 215212, + [SMALL_STATE(8078)] = 215243, + [SMALL_STATE(8079)] = 215274, + [SMALL_STATE(8080)] = 215305, + [SMALL_STATE(8081)] = 215336, + [SMALL_STATE(8082)] = 215367, + [SMALL_STATE(8083)] = 215398, + [SMALL_STATE(8084)] = 215429, + [SMALL_STATE(8085)] = 215460, + [SMALL_STATE(8086)] = 215491, + [SMALL_STATE(8087)] = 215522, + [SMALL_STATE(8088)] = 215553, + [SMALL_STATE(8089)] = 215584, + [SMALL_STATE(8090)] = 215615, + [SMALL_STATE(8091)] = 215646, + [SMALL_STATE(8092)] = 215677, + [SMALL_STATE(8093)] = 215708, + [SMALL_STATE(8094)] = 215739, + [SMALL_STATE(8095)] = 215770, + [SMALL_STATE(8096)] = 215801, + [SMALL_STATE(8097)] = 215832, + [SMALL_STATE(8098)] = 215863, + [SMALL_STATE(8099)] = 215894, + [SMALL_STATE(8100)] = 215925, + [SMALL_STATE(8101)] = 215956, + [SMALL_STATE(8102)] = 215987, + [SMALL_STATE(8103)] = 216018, + [SMALL_STATE(8104)] = 216049, + [SMALL_STATE(8105)] = 216080, + [SMALL_STATE(8106)] = 216111, + [SMALL_STATE(8107)] = 216142, + [SMALL_STATE(8108)] = 216173, + [SMALL_STATE(8109)] = 216204, + [SMALL_STATE(8110)] = 216235, + [SMALL_STATE(8111)] = 216266, + [SMALL_STATE(8112)] = 216297, + [SMALL_STATE(8113)] = 216328, + [SMALL_STATE(8114)] = 216359, + [SMALL_STATE(8115)] = 216390, + [SMALL_STATE(8116)] = 216421, + [SMALL_STATE(8117)] = 216452, + [SMALL_STATE(8118)] = 216483, + [SMALL_STATE(8119)] = 216514, + [SMALL_STATE(8120)] = 216545, + [SMALL_STATE(8121)] = 216576, + [SMALL_STATE(8122)] = 216607, + [SMALL_STATE(8123)] = 216638, + [SMALL_STATE(8124)] = 216669, + [SMALL_STATE(8125)] = 216700, + [SMALL_STATE(8126)] = 216731, + [SMALL_STATE(8127)] = 216762, + [SMALL_STATE(8128)] = 216793, + [SMALL_STATE(8129)] = 216824, + [SMALL_STATE(8130)] = 216855, + [SMALL_STATE(8131)] = 216886, + [SMALL_STATE(8132)] = 216917, + [SMALL_STATE(8133)] = 216948, + [SMALL_STATE(8134)] = 216979, + [SMALL_STATE(8135)] = 217010, + [SMALL_STATE(8136)] = 217041, + [SMALL_STATE(8137)] = 217072, + [SMALL_STATE(8138)] = 217103, + [SMALL_STATE(8139)] = 217134, + [SMALL_STATE(8140)] = 217165, + [SMALL_STATE(8141)] = 217196, + [SMALL_STATE(8142)] = 217227, + [SMALL_STATE(8143)] = 217258, + [SMALL_STATE(8144)] = 217289, + [SMALL_STATE(8145)] = 217320, + [SMALL_STATE(8146)] = 217351, + [SMALL_STATE(8147)] = 217382, + [SMALL_STATE(8148)] = 217413, + [SMALL_STATE(8149)] = 217444, + [SMALL_STATE(8150)] = 217475, + [SMALL_STATE(8151)] = 217506, + [SMALL_STATE(8152)] = 217537, + [SMALL_STATE(8153)] = 217568, + [SMALL_STATE(8154)] = 217599, + [SMALL_STATE(8155)] = 217630, + [SMALL_STATE(8156)] = 217661, + [SMALL_STATE(8157)] = 217692, + [SMALL_STATE(8158)] = 217723, + [SMALL_STATE(8159)] = 217754, + [SMALL_STATE(8160)] = 217785, + [SMALL_STATE(8161)] = 217816, + [SMALL_STATE(8162)] = 217847, + [SMALL_STATE(8163)] = 217878, + [SMALL_STATE(8164)] = 217909, + [SMALL_STATE(8165)] = 217940, + [SMALL_STATE(8166)] = 217971, + [SMALL_STATE(8167)] = 218002, + [SMALL_STATE(8168)] = 218033, + [SMALL_STATE(8169)] = 218064, + [SMALL_STATE(8170)] = 218095, + [SMALL_STATE(8171)] = 218126, + [SMALL_STATE(8172)] = 218157, + [SMALL_STATE(8173)] = 218188, + [SMALL_STATE(8174)] = 218219, + [SMALL_STATE(8175)] = 218250, + [SMALL_STATE(8176)] = 218281, + [SMALL_STATE(8177)] = 218312, + [SMALL_STATE(8178)] = 218343, + [SMALL_STATE(8179)] = 218374, + [SMALL_STATE(8180)] = 218405, + [SMALL_STATE(8181)] = 218436, + [SMALL_STATE(8182)] = 218467, + [SMALL_STATE(8183)] = 218498, + [SMALL_STATE(8184)] = 218529, + [SMALL_STATE(8185)] = 218560, + [SMALL_STATE(8186)] = 218591, + [SMALL_STATE(8187)] = 218622, + [SMALL_STATE(8188)] = 218653, + [SMALL_STATE(8189)] = 218684, + [SMALL_STATE(8190)] = 218715, + [SMALL_STATE(8191)] = 218746, + [SMALL_STATE(8192)] = 218777, + [SMALL_STATE(8193)] = 218808, + [SMALL_STATE(8194)] = 218839, + [SMALL_STATE(8195)] = 218870, + [SMALL_STATE(8196)] = 218901, + [SMALL_STATE(8197)] = 218932, + [SMALL_STATE(8198)] = 218963, + [SMALL_STATE(8199)] = 218994, + [SMALL_STATE(8200)] = 219025, + [SMALL_STATE(8201)] = 219056, + [SMALL_STATE(8202)] = 219087, + [SMALL_STATE(8203)] = 219118, + [SMALL_STATE(8204)] = 219149, + [SMALL_STATE(8205)] = 219180, + [SMALL_STATE(8206)] = 219211, + [SMALL_STATE(8207)] = 219242, + [SMALL_STATE(8208)] = 219273, + [SMALL_STATE(8209)] = 219304, + [SMALL_STATE(8210)] = 219335, + [SMALL_STATE(8211)] = 219366, + [SMALL_STATE(8212)] = 219397, + [SMALL_STATE(8213)] = 219428, + [SMALL_STATE(8214)] = 219459, + [SMALL_STATE(8215)] = 219490, + [SMALL_STATE(8216)] = 219521, + [SMALL_STATE(8217)] = 219552, + [SMALL_STATE(8218)] = 219583, + [SMALL_STATE(8219)] = 219614, + [SMALL_STATE(8220)] = 219645, + [SMALL_STATE(8221)] = 219676, + [SMALL_STATE(8222)] = 219707, + [SMALL_STATE(8223)] = 219738, + [SMALL_STATE(8224)] = 219769, + [SMALL_STATE(8225)] = 219800, + [SMALL_STATE(8226)] = 219831, + [SMALL_STATE(8227)] = 219862, + [SMALL_STATE(8228)] = 219893, + [SMALL_STATE(8229)] = 219924, + [SMALL_STATE(8230)] = 219955, + [SMALL_STATE(8231)] = 219986, + [SMALL_STATE(8232)] = 220017, + [SMALL_STATE(8233)] = 220048, + [SMALL_STATE(8234)] = 220079, + [SMALL_STATE(8235)] = 220110, + [SMALL_STATE(8236)] = 220141, + [SMALL_STATE(8237)] = 220172, + [SMALL_STATE(8238)] = 220203, + [SMALL_STATE(8239)] = 220234, + [SMALL_STATE(8240)] = 220265, + [SMALL_STATE(8241)] = 220296, + [SMALL_STATE(8242)] = 220327, + [SMALL_STATE(8243)] = 220358, + [SMALL_STATE(8244)] = 220389, + [SMALL_STATE(8245)] = 220420, + [SMALL_STATE(8246)] = 220451, + [SMALL_STATE(8247)] = 220482, + [SMALL_STATE(8248)] = 220513, + [SMALL_STATE(8249)] = 220544, + [SMALL_STATE(8250)] = 220575, + [SMALL_STATE(8251)] = 220606, + [SMALL_STATE(8252)] = 220637, + [SMALL_STATE(8253)] = 220668, + [SMALL_STATE(8254)] = 220699, + [SMALL_STATE(8255)] = 220730, + [SMALL_STATE(8256)] = 220761, + [SMALL_STATE(8257)] = 220792, + [SMALL_STATE(8258)] = 220823, + [SMALL_STATE(8259)] = 220854, + [SMALL_STATE(8260)] = 220885, + [SMALL_STATE(8261)] = 220916, + [SMALL_STATE(8262)] = 220947, + [SMALL_STATE(8263)] = 220978, + [SMALL_STATE(8264)] = 221009, + [SMALL_STATE(8265)] = 221040, + [SMALL_STATE(8266)] = 221071, + [SMALL_STATE(8267)] = 221102, + [SMALL_STATE(8268)] = 221133, + [SMALL_STATE(8269)] = 221164, + [SMALL_STATE(8270)] = 221195, + [SMALL_STATE(8271)] = 221226, + [SMALL_STATE(8272)] = 221257, + [SMALL_STATE(8273)] = 221288, + [SMALL_STATE(8274)] = 221319, + [SMALL_STATE(8275)] = 221350, + [SMALL_STATE(8276)] = 221381, + [SMALL_STATE(8277)] = 221412, + [SMALL_STATE(8278)] = 221443, + [SMALL_STATE(8279)] = 221474, + [SMALL_STATE(8280)] = 221505, + [SMALL_STATE(8281)] = 221536, + [SMALL_STATE(8282)] = 221567, + [SMALL_STATE(8283)] = 221598, + [SMALL_STATE(8284)] = 221629, + [SMALL_STATE(8285)] = 221660, + [SMALL_STATE(8286)] = 221691, + [SMALL_STATE(8287)] = 221722, + [SMALL_STATE(8288)] = 221753, + [SMALL_STATE(8289)] = 221784, + [SMALL_STATE(8290)] = 221815, + [SMALL_STATE(8291)] = 221846, + [SMALL_STATE(8292)] = 221877, + [SMALL_STATE(8293)] = 221908, + [SMALL_STATE(8294)] = 221939, + [SMALL_STATE(8295)] = 221970, + [SMALL_STATE(8296)] = 222001, + [SMALL_STATE(8297)] = 222032, + [SMALL_STATE(8298)] = 222063, + [SMALL_STATE(8299)] = 222094, + [SMALL_STATE(8300)] = 222125, + [SMALL_STATE(8301)] = 222156, + [SMALL_STATE(8302)] = 222187, + [SMALL_STATE(8303)] = 222218, + [SMALL_STATE(8304)] = 222249, + [SMALL_STATE(8305)] = 222280, + [SMALL_STATE(8306)] = 222311, + [SMALL_STATE(8307)] = 222342, + [SMALL_STATE(8308)] = 222373, + [SMALL_STATE(8309)] = 222404, + [SMALL_STATE(8310)] = 222435, + [SMALL_STATE(8311)] = 222466, + [SMALL_STATE(8312)] = 222497, + [SMALL_STATE(8313)] = 222528, + [SMALL_STATE(8314)] = 222559, + [SMALL_STATE(8315)] = 222590, + [SMALL_STATE(8316)] = 222621, + [SMALL_STATE(8317)] = 222652, + [SMALL_STATE(8318)] = 222683, + [SMALL_STATE(8319)] = 222714, + [SMALL_STATE(8320)] = 222745, + [SMALL_STATE(8321)] = 222776, + [SMALL_STATE(8322)] = 222807, + [SMALL_STATE(8323)] = 222838, + [SMALL_STATE(8324)] = 222869, + [SMALL_STATE(8325)] = 222900, + [SMALL_STATE(8326)] = 222931, + [SMALL_STATE(8327)] = 222962, + [SMALL_STATE(8328)] = 222993, + [SMALL_STATE(8329)] = 223024, + [SMALL_STATE(8330)] = 223055, + [SMALL_STATE(8331)] = 223086, + [SMALL_STATE(8332)] = 223117, + [SMALL_STATE(8333)] = 223148, + [SMALL_STATE(8334)] = 223179, + [SMALL_STATE(8335)] = 223210, + [SMALL_STATE(8336)] = 223241, + [SMALL_STATE(8337)] = 223272, + [SMALL_STATE(8338)] = 223303, + [SMALL_STATE(8339)] = 223334, + [SMALL_STATE(8340)] = 223365, + [SMALL_STATE(8341)] = 223396, + [SMALL_STATE(8342)] = 223427, + [SMALL_STATE(8343)] = 223458, + [SMALL_STATE(8344)] = 223489, + [SMALL_STATE(8345)] = 223520, + [SMALL_STATE(8346)] = 223551, + [SMALL_STATE(8347)] = 223582, + [SMALL_STATE(8348)] = 223613, + [SMALL_STATE(8349)] = 223644, + [SMALL_STATE(8350)] = 223675, + [SMALL_STATE(8351)] = 223706, + [SMALL_STATE(8352)] = 223737, + [SMALL_STATE(8353)] = 223768, + [SMALL_STATE(8354)] = 223799, + [SMALL_STATE(8355)] = 223830, + [SMALL_STATE(8356)] = 223861, + [SMALL_STATE(8357)] = 223892, + [SMALL_STATE(8358)] = 223923, + [SMALL_STATE(8359)] = 223954, + [SMALL_STATE(8360)] = 223985, + [SMALL_STATE(8361)] = 224016, + [SMALL_STATE(8362)] = 224047, + [SMALL_STATE(8363)] = 224078, + [SMALL_STATE(8364)] = 224109, + [SMALL_STATE(8365)] = 224140, + [SMALL_STATE(8366)] = 224171, + [SMALL_STATE(8367)] = 224202, + [SMALL_STATE(8368)] = 224233, + [SMALL_STATE(8369)] = 224264, + [SMALL_STATE(8370)] = 224295, + [SMALL_STATE(8371)] = 224326, + [SMALL_STATE(8372)] = 224357, + [SMALL_STATE(8373)] = 224388, + [SMALL_STATE(8374)] = 224419, + [SMALL_STATE(8375)] = 224450, + [SMALL_STATE(8376)] = 224481, + [SMALL_STATE(8377)] = 224512, + [SMALL_STATE(8378)] = 224543, + [SMALL_STATE(8379)] = 224574, + [SMALL_STATE(8380)] = 224605, + [SMALL_STATE(8381)] = 224636, + [SMALL_STATE(8382)] = 224667, + [SMALL_STATE(8383)] = 224698, + [SMALL_STATE(8384)] = 224729, + [SMALL_STATE(8385)] = 224760, + [SMALL_STATE(8386)] = 224791, + [SMALL_STATE(8387)] = 224822, + [SMALL_STATE(8388)] = 224853, + [SMALL_STATE(8389)] = 224884, + [SMALL_STATE(8390)] = 224915, + [SMALL_STATE(8391)] = 224919, + [SMALL_STATE(8392)] = 224923, + [SMALL_STATE(8393)] = 224927, + [SMALL_STATE(8394)] = 224931, + [SMALL_STATE(8395)] = 224935, + [SMALL_STATE(8396)] = 224939, + [SMALL_STATE(8397)] = 224943, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8359), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), [15] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 0), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, .production_id = 18), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, .production_id = 18), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, .production_id = 42), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, .production_id = 42), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 17), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 17), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2), - [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .production_id = 7), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, .production_id = 7), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutate_expression, 3, .production_id = 19), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutate_expression, 3, .production_id = 19), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 5, .production_id = 42), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 5, .production_id = 42), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .production_id = 7), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_expression, 2, .production_id = 7), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3), + [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_instantiation_expression, 3), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_instantiation_expression, 3), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 2), + [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 2), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 17), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2, .production_id = 17), + [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 1), [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 1), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(3051), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(390), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(2968), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 2), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(7487), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(6426), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, .production_id = 17), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 26), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_parameter_value, 2), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, .production_id = 39), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 2), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 40), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 9), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 9), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 1), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 1), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 4, .production_id = 9), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 4, .production_id = 9), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, .production_id = 1), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, .production_id = 1), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1102), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6058), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6128), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3397), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(562), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3877), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6130), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2402), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2402), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6131), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1247), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3159), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6108), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6106), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7798), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7797), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4007), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(562), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(652), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(658), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2725), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(666), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6134), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3179), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6135), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(680), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(680), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7794), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7347), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7347), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6137), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(687), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1197), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4833), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4871), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5061), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7787), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7786), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1199), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1199), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7785), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1204), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3159), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3157), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(792), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(795), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6517), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7784), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(564), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3951), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(564), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7793), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7793), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(793), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(798), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1324), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6083), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6197), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(577), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3865), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6193), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2405), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2405), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6513), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1499), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5873), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5872), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7698), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7699), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4206), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(577), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(773), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(777), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2688), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(670), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3172), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6243), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(594), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(594), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7488), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7588), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7588), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6480), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(779), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1394), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4747), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4866), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5118), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7163), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7164), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1393), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1393), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7118), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1485), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(794), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(797), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6625), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7348), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, .production_id = 1), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 10), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 1), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, .production_id = 10), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, .production_id = 30), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 5, .production_id = 30), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 1), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 1), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1797), - [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(774), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6296), - [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2374), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2374), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6558), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2063), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3159), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5947), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5945), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7693), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7694), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4142), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(774), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(728), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(730), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2744), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(645), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6134), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3170), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6260), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(614), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(614), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7453), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7555), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7555), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6296), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(731), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1941), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4722), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4836), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5036), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7150), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7151), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1959), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1959), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7080), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2051), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3159), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3157), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(803), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(817), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7490), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(550), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1967), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(671), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6346), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6119), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2198), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5866), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5867), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7718), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7719), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4255), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(671), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(655), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(654), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2804), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(763), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3167), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6196), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(559), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(559), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7604), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7636), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7636), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6346), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(651), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2307), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4737), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4868), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5140), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7210), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7211), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2275), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2275), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7185), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2237), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(815), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(832), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7589), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(747), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 27), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_parameter_value, 1), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const, 1), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const, 1), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 3), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constrained_type, 3), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type, 3), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flexible_type, 2), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flexible_type, 2), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7512), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5896), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5896), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), - [2959] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7512), - [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4140), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compound_type, 2), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compound_type, 2), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6301), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_type, 3), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_type, 3), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 3), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 3), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_type, 2), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_type, 2), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 4), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type, 2), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type, 2), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type_identifier, 2), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type_identifier, 2), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_type, 2), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_type, 2), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5927), - [3056] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6971), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5927), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6971), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4051), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3, .production_id = 16), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, .production_id = 16), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6696), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6696), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5877), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4230), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2656), - [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6696), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5877), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6337), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_expression, 4, .production_id = 61), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_expression, 4, .production_id = 61), - [3151] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6891), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6891), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6696), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 5, .production_id = 44), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, .production_id = 44), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, .production_id = 6), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, .production_id = 6), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5, .production_id = 60), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5, .production_id = 60), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6229), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [3224] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6719), - [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6719), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3, .production_id = 41), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3, .production_id = 41), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6791), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5994), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4314), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [3332] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7058), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7058), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2), - [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6117), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 5, .production_id = 43), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 5, .production_id = 43), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 3), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 3), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6791), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 6, .production_id = 53), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 6, .production_id = 53), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6117), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3), - [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4155), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 3, .production_id = 15), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 3, .production_id = 15), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 28), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 28), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 29), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 29), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 31), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 31), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 4), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 4), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(574), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 4, .production_id = 15), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 4, .production_id = 15), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 32), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 32), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 1), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 1), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5994), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 3), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 3), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6895), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 7, .production_id = 55), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 7, .production_id = 55), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, .production_id = 49), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, .production_id = 49), - [3578] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6895), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 54), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 54), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, .production_id = 48), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, .production_id = 48), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, .production_id = 28), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, .production_id = 28), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, .production_id = 28), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, .production_id = 28), - [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6791), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_expression, 3, .production_id = 19), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_expression, 3, .production_id = 19), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2643), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6791), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 45), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 45), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 29), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 29), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, .production_id = 46), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, .production_id = 46), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 47), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 47), - [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7649), - [3650] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6897), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(689), - [3657] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7649), - [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6282), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4233), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6897), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5894), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [3677] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6999), - [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5894), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5963), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6962), - [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4185), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6962), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6962), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6186), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2621), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6962), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6999), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5963), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(729), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6205), - [3756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6902), - [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6902), - [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4225), - [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6879), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6200), - [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5853), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4172), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6889), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5953), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(5936), - [3801] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6879), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(702), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6251), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5853), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7138), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5936), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5953), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3837] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7138), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4236), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3850] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6889), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6779), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6262), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2640), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7160), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7160), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6779), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7160), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6779), - [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2624), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6779), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7160), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6216), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6189), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2641), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7105), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6908), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6908), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2657), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6908), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6908), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3974] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7475), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7167), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(755), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7065), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7065), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7065), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6870), - [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2639), - [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7065), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [4020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7167), - [4024] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6870), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7105), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7105), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7105), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7475), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(6849), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2604), - [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7143), - [4059] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6969), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7143), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7143), - [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7143), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [4076] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7772), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(784), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(657), - [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6909), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7195), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(715), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6969), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4118] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7195), - [4122] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6909), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(596), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(520), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7772), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7016), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(6849), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7016), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(769), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2644), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(6849), - [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(6849), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7016), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2628), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7016), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7772), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6940), - [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7223), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [4189] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7112), - [4193] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(6940), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(649), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [4204] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7223), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(617), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(627), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(593), - [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7112), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5846), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5983), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1), - [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7657), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3985), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), - [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3397), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3791), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2808), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5589), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6202), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5513), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5583), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5722), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), - [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8), - [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6868), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4168), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2711), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5696), - [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6547), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5514), - [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5694), - [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5744), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3274), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), - [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3382), - [4776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2669), - [4779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3595), - [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3594), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(2792), - [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5098), - [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6062), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6061), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6060), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3339), - [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(4724), - [4806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(4920), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5139), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6874), - [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6875), - [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3337), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3337), - [4824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6847), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3341), - [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3182), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3183), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6), - [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 4), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 4), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 2), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 2), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 6), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 6), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 3, .production_id = 57), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 3, .production_id = 57), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 35), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 35), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, .production_id = 63), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, .production_id = 63), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 62), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 62), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 8), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 8), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 34), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 34), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3397), - [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3863), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), - [5076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3973), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3864), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4118), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5811), - [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6050), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, .production_id = 28), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, .production_id = 28), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7008), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 13), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 13), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7667), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 23), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 23), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7382), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, .production_id = 36), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, .production_id = 36), - [5192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5844), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), - [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2437), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 49), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 49), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6088), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, .production_id = 49), - [5211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, .production_id = 49), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, .production_id = 49), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, .production_id = 49), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, .production_id = 28), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, .production_id = 28), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, .production_id = 67), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, .production_id = 67), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 49), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 49), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 52), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 52), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3), - [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, .production_id = 66), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, .production_id = 66), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 25), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 25), - [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2458), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 4), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 4), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6886), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, .production_id = 49), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, .production_id = 49), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, .production_id = 48), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, .production_id = 48), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3962), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, .production_id = 56), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, .production_id = 56), - [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(3965), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6928), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7022), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4224), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 3, .production_id = 8), - [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 3, .production_id = 8), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, .production_id = 48), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, .production_id = 48), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, .production_id = 48), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, .production_id = 48), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2), - [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 29), - [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 29), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 54), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 54), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, .production_id = 55), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, .production_id = 55), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 4), - [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 4), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 12), - [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 12), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 7, .production_id = 55), - [5424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 7, .production_id = 55), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, .production_id = 64), - [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, .production_id = 64), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4106), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2448), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2433), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2445), - [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), SHIFT_REPEAT(3157), - [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1), - [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1), - [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1), - [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1), - [5555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3859), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), - [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(2693), - [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3948), - [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5826), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5829), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5957), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4252), - [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4760), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4860), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5110), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6737), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6738), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4254), - [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4254), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3282), - [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3370), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5837), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5819), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5831), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 4), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6881), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6884), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4214), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4203), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7283), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [5915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6067), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3397), - [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6307), - [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2419), - [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2419), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3791), - [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2685), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5611), - [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5516), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5535), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(4211), - [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5609), - [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5738), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7311), - [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7312), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3543), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7464), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [6030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5984), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 2), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7753), - [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6829), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7569), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4163), - [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7500), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 1), - [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6133), - [6099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2380), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2380), - [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2713), - [6108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5663), - [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5528), - [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5520), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(4146), - [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5666), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5724), - [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7378), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7379), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3607), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6014), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), - [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5509), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 3), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4098), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 2), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_pattern, 3), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6021), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), - [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 9), - [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9), - [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3), - [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 8), - [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8), - [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 6), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 5), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5), - [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2759), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1), - [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1), - [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4, .production_id = 38), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4, .production_id = 38), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3), - [6426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2776), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 3), - [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 3), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3), - [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 24), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 24), - [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 24), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 24), - [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6900), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(5414), - [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3377), - [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4067), - [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4852), - [6482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(6914), - [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4216), - [6488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(6934), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3382), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [6514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5911), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6008), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5469), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5505), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6860), - [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(5822), - [6588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(5913), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 3), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 3), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), - [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2739), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 4), - [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 4), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2741), - [6639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6029), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1), - [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1), - [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2685), - [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5611), - [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6474), - [6721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5535), - [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5609), - [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5738), - [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6859), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, .production_id = 50), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, .production_id = 50), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [6757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4149), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7609), - [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2713), - [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5663), - [6777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6449), - [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5520), - [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5666), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5724), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4127), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7076), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [6917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5881), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [6930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6020), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6960), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6019), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1), - [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6041), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3), - [7000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3), - [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3397), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3), - [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3), - [7009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6085), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [7040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), - [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3), - [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2442), - [7125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4178), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [7156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7082), - [7159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(5912), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6873), - [7217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4211), - [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6921), - [7223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4295), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [7238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2733), - [7241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5636), - [7244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6610), - [7247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5529), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5602), - [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5749), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4146), - [7263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2430), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4262), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4141), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [7306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5961), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [7311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5989), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 1), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1), - [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_body_inner, 1), - [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2689), - [7337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5620), - [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6669), - [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5532), - [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5551), - [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5767), - [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2), - [7358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 2), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1), - [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 6, .production_id = 54), - [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 6, .production_id = 54), - [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2712), - [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5625), - [7392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6501), - [7395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5538), - [7398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5553), - [7401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5732), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 29), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 29), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 45), - [7412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 45), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 5, .production_id = 65), - [7418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 5, .production_id = 65), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3), - [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 3), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 4, .production_id = 28), - [7428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 4, .production_id = 28), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 4, .production_id = 29), - [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 4, .production_id = 29), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 4), - [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 4), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6917), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(6913), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [7450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6047), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5980), - [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(2788), - [7467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5648), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6543), - [7473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5518), - [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5632), - [7479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5755), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7253), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 2), - [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 2), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7278), - [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6045), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 11), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 11), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4244), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4249), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 22), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 22), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4201), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4271), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), SHIFT_REPEAT(3924), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7652), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1), - [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3412), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), - [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), SHIFT_REPEAT(5542), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1), - [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(5858), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 2), - [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 2), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 22), - [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 22), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 33), - [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 33), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 11), - [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 11), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5256), - [7779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5256), - [7782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5295), - [7785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(660), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5295), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5369), - [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5369), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5372), - [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7017), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [8079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5487), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5467), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5480), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [8170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6072), - [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4221), - [8176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5510), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5434), - [8184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5434), - [8187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5423), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5507), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3377), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [8268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2813), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4), - [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6111), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 3), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [8328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2764), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(5985), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [8358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2756), - [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6112), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [8424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5495), - [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5479), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2699), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [8497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(5929), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2734), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [8589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2794), - [8592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5534), - [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5526), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1), - [8616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1), - [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1), - [8654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [8658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2749), - [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3), - [8663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_char, 1), - [8707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_char, 1), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6057), - [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2791), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3873), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(2727), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4060), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), - [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3885), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, .production_id = 35), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, .production_id = 35), - [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3954), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [9132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, .production_id = 1), - [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, .production_id = 1), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4184), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(3977), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [9370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), - [9372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), SHIFT_REPEAT(5705), - [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6, .production_id = 59), - [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), - [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5, .production_id = 59), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2460), - [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, .production_id = 36), - [9502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2429), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2631), - [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7243), - [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5167), - [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, .production_id = 36), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2), SHIFT_REPEAT(2797), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [9525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2), SHIFT_REPEAT(7015), - [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2), - [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), SHIFT_REPEAT(6556), - [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2453), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), SHIFT_REPEAT(3097), - [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), - [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [9617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), SHIFT_REPEAT(4012), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), SHIFT_REPEAT(5923), - [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(464), - [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), - [9676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), SHIFT_REPEAT(668), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), - [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [9711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), SHIFT_REPEAT(3556), - [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), - [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(461), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [9759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [9805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), - [9825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), SHIFT_REPEAT(3374), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), - [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), - [9840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), SHIFT_REPEAT(3654), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [9851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5470), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3), - [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), SHIFT_REPEAT(5358), - [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2449), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2), - [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, .production_id = 14), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_parameter, 1), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [10220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, .production_id = 15), - [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, .production_id = 15), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7369), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4), - [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 3, .production_id = 37), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_static_parameter, 3), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5), - [10440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 4, .production_id = 51), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 5, .production_id = 58), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, .production_id = 49), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [11066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_as_reference, 2), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [11474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [12482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_branch, 2, .production_id = 5), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [12506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [12598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target, 1), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [12626] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [12680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xml_doc, 2), - [12688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [12690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), - [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 3, .production_id = 8), - [12694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), - [12696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, .production_id = 21), - [12698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 2), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(6730), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(434), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(3370), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(7937), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), SHIFT(3444), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 1), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 2), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comp_or_range_expression, 1), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 1), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2, .production_id = 17), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 3, .production_id = 39), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7877), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 26), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_comp_expression, 6), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 2), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_parameter_value, 2), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 40), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2, .production_id = 1), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2, .production_id = 1), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1262), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6274), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6569), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3804), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(854), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4255), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6570), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2638), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2638), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6571), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1318), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3541), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6502), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6498), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8388), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(688), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(687), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8387), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4406), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(854), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3059), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(674), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6572), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3549), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6573), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(653), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(653), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8384), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7984), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7984), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6574), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(600), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1412), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5222), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5249), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5542), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8381), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8380), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1283), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1283), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8379), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1300), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3541), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3540), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3539), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(865), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(869), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6971), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8378), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 9), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 9), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 3, .production_id = 1), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 3, .production_id = 1), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 4, .production_id = 9), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 4, .production_id = 9), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 2), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 2), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(790), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4527), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(790), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8383), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8383), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(868), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(872), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1402), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6527), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6866), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(729), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4277), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6848), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2496), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(2496), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6985), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1558), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6558), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6555), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8268), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(622), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(623), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8269), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(4590), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(729), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3062), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(857), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(3556), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(6688), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(825), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(825), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8084), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8151), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(8151), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7050), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(624), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1674), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5191), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5306), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(5437), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7689), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7690), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1661), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1661), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7646), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(1466), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(867), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(870), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7150), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat2, 2), SHIFT_REPEAT(7878), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, .production_id = 30), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 2, .production_id = 1), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 1), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 4, .production_id = 10), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 3, .production_id = 10), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file, 1), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_module, 5, .production_id = 30), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_construction, 1), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_construction, 1), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8258), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 1), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 1), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(1801), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(700), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7134), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2393), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2393), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7023), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2215), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3541), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6341), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6347), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8263), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(785), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(791), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8264), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4450), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(700), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3061), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(747), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6572), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3553), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6700), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(808), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(808), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8051), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8135), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8135), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7134), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(839), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2302), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5228), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5254), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5500), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7676), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7677), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2306), + [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2306), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7610), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2277), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3541), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3540), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3539), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(874), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(894), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8086), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(633), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2134), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(844), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6742), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6904), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2379), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6326), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6327), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8288), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(841), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(836), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8289), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(4487), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(844), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3096), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(677), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(3560), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6648), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(773), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(773), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8166), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8196), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8196), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(6742), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(835), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2435), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5158), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5289), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(5605), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7736), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7737), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2429), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2429), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(7711), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(2717), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(891), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(906), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(8152), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_expression_repeat1, 2), SHIFT_REPEAT(602), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__slice_range_special, 2, .production_id = 27), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_parameter_value, 1), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const, 1), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const, 1), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constrained_type, 3), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constrained_type, 3), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flexible_type, 2), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flexible_type, 2), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type, 3), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_type, 3), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typecast_expression, 3), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typecast_expression, 3), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 2), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 2), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compound_type, 2), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compound_type, 2), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 2), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 2), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument, 1), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6495), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier, 1), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier, 1), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), + [3267] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7980), + [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4698), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6495), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), + [3289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7980), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_type, 2), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_type, 2), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 4), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 4), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__generic_type, 3), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_type, 3), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 1), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 1), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_type, 3), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_type, 3), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type, 2), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type, 2), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_type, 2), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_type, 2), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6738), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__static_type_identifier, 2), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_type_identifier, 2), + [3365] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(8343), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6475), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8343), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6475), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4370), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3, .production_id = 16), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3, .production_id = 16), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6626), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 1), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 1), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7303), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, .production_id = 6), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, .production_id = 6), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4686), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_block, 3), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_block, 3), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 2), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 2), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7303), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 5, .production_id = 44), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 5, .production_id = 44), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_expression, 4, .production_id = 61), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_expression, 4, .production_id = 61), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rules, 3), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rules, 3), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7303), + [3470] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7376), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7376), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6280), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6280), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), + [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2991), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7303), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 1), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 1), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 6), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 6), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 3), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 3), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 5, .production_id = 60), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 5, .production_id = 60), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7716), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule, 3, .production_id = 41), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule, 3, .production_id = 41), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_expression, 2), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3560] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7716), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6677), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint16, 2), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint16, 2), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_triple_quoted_string, 3), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_triple_quoted_string, 3), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 3), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 3), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4492), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 3), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 3), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 3), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 3), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8371), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier_or_op, 1), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier_or_op, 1), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequential_expression, 2), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequential_expression, 2), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 3), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 3), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_expression, 3), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_expression, 3), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7620), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6551), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee64, 2), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee64, 2), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ieee32, 2), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ieee32, 2), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6371), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_end_expression, 3), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_end_expression, 3), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_expression, 2), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decimal, 2), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal, 2), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 3, .production_id = 15), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 3, .production_id = 15), + [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6551), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot_expression, 3, .production_id = 18), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot_expression, 3, .production_id = 18), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 3), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 3), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bignum, 2), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bignum, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint64, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint64, 2), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_identifier_or_op, 3), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_identifier_or_op, 3), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int64, 2), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int64, 2), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unativeint, 2), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unativeint, 2), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 4, .production_id = 15), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 4, .production_id = 15), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nativeint, 2), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nativeint, 2), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 3), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 3), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_uint32, 2), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uint32, 2), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int32, 2), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int32, 2), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 3), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 3), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int16, 2), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int16, 2), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byte, 2), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byte, 2), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sbyte, 2), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sbyte, 2), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_bytearray, 2), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_bytearray, 2), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_string, 2), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_string, 2), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytearray, 2), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytearray, 2), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string, 2), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string, 2), + [3806] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7620), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 5, .production_id = 43), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 5, .production_id = 43), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_active_pattern, 6, .production_id = 53), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_active_pattern, 6, .production_id = 53), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4557), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_triple_quoted_string, 1), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triple_quoted_string, 1), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(856), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 1), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 1), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6371), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 9), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 9), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [3855] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7497), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 7, .production_id = 55), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 7, .production_id = 55), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3015), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7281), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7281), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ce_expression, 6, .production_id = 49), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ce_expression, 6, .production_id = 49), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 54), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 54), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7497), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6, .production_id = 48), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6, .production_id = 48), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 6), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 6), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7281), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 47), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 47), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__else_expression, 2, .production_id = 46), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__else_expression, 2, .production_id = 46), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7281), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 29), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 29), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 28), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 28), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 45), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 45), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 29), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, .production_id = 29), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5), + [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_record_expression, 5, .production_id = 28), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_record_expression, 5, .production_id = 28), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, .production_id = 28), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, .production_id = 28), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 32), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 32), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 4), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 4), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .production_id = 31), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .production_id = 31), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(701), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6302), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6713), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8350), + [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3016), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7519), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7519), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7519), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [4017] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7509), + [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6296), + [4024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7509), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6296), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4574), + [4039] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7579), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7519), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4618), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6635), + [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6302), + [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7579), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4068] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(8350), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [4084] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7875), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4092] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7907), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4368), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6285), + [4102] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7479), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(573), + [4113] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7490), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6652), + [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7490), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4540), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [4130] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7520), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7479), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6692), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(690), + [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6355), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6655), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6355), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6346), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do, 2), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do, 2), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6255), + [4182] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7717), + [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7717), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7520), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [4196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6273), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4547), + [4204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6273), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4544), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6346), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7964), + [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7907), + [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6255), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_argument, 1), SHIFT(6285), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4473), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7875), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6641), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7362), + [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7362), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6665), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7362), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [4279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3025), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7362), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6799), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7686), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6753), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7686), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7686), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3029), + [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7686), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(6704), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7470), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7470), + [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3011), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7470), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7470), + [4354] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7753), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8128), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7597), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7753), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8376), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7597), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7597), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3012), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7597), + [4397] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(8128), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7468), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7633), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7633), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4426] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7468), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7633), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2993), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7633), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(583), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7574), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7574), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(615), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7559), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7559), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7559), + [4473] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(8333), + [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3018), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7559), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4487] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7775), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), + [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7525), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7233), + [4501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3027), + [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7416), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7416), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7416), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 1), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 1), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8333), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(756), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4621] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7525), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7416), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7233), + [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7775), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(797), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [4677] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7574), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7233), + [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2971), + [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7233), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(676), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(3028), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7669), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(614), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7669), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2979), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(7172), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7669), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 3), SHIFT(7172), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(781), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 2), SHIFT(7172), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7669), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_rules, 1), SHIFT(7172), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(766), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 2), + [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 2), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(758), + [4833] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7673), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), + [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7557), + [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(807), + [4845] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7557), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(644), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(662), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7231), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [4900] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7231), + [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequential_expression_repeat1, 2), SHIFT_REPEAT(598), + [4907] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7802), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7802), + [4918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7673), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7222), + [4930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6266), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [4937] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_long_identifier, 1), REDUCE(sym__identifier_or_op, 1), SHIFT(7222), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 2), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 2), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 1), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curried_spec, 1), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curried_spec, 1), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8225), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6369), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7464), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 7), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 7), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 1), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 1), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4529), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 8), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 8), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 6), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 6), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 4), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 4), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), + [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3804), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(4169), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3171), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6012), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6582), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5949), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6001), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6222), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_defns, 2), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_defns, 2), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 5), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 5), + [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4523), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [5148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3176), + [5151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6027), + [5154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(7076), + [5157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5965), + [5160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6029), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6229), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 2), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 2), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3639), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3771), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3115), + [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3962), + [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3961), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3181), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5432), + [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6430), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6437), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(6456), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3677), + [5239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5199), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5316), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(5423), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(7438), + [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(7439), + [5254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3725), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3725), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(7451), + [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3736), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3564), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 2), SHIFT_REPEAT(3567), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 2), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 2), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 6), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 6), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 4), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 4), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 3), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 3), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 4), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 4), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 5), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 5), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 3), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 3), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 34), + [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 34), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 35), + [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 2, .production_id = 35), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 4, .production_id = 63), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 4, .production_id = 63), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 62), + [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_or_prop_defn, 5, .production_id = 62), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 2), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 2), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 5), + [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 5), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 8), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 8), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_defn, 3, .production_id = 57), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_defn, 3, .production_id = 57), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 1), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__member_defns_repeat1, 1), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additional_constr_defn, 4), + [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additional_constr_defn, 4), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_signature, 7), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_signature, 7), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_defn, 6), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_defn, 6), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_defn, 1), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_defn, 1), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), + [5528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), + [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3804), + [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4246), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4599), + [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4280), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_elements, 1), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_elements, 1), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6379), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4439), + [5582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6278), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_expression_inner_repeat1, 1), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_implementation, 3, .production_id = 36), + [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_implementation, 3, .production_id = 36), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7695), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7982), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 13), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 1, .production_id = 13), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6237), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2816), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7815), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 23), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defns, 2, .production_id = 23), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_members, 4, .production_id = 28), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__object_members, 4, .production_id = 28), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 3), + [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 3), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 5, .production_id = 49), + [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 5, .production_id = 49), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7488), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 52), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 5, .production_id = 52), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 9, .production_id = 66), + [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 9, .production_id = 66), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 6, .production_id = 48), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 6, .production_id = 48), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 25), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_or_value_defn_body, 3, .production_id = 25), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 4), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 4), + [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2799), + [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4655), + [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4617), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 49), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_abbrev_defn, 5, .production_id = 49), + [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7552), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension, 2), + [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension, 2), + [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_defn, 6, .production_id = 56), + [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_defn, 6, .production_id = 56), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 49), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_type_defn, 5, .production_id = 49), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 1), + [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 1), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_extension_elements, 4, .production_id = 28), + [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_extension_elements, 4, .production_id = 28), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_defn_body, 1), + [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_defn_body, 1), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6463), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_defn, 5, .production_id = 49), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_defn, 5, .production_id = 49), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_type_defn, 5, .production_id = 49), + [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_type_defn, 5, .production_id = 49), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_defn, 10, .production_id = 67), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_type_defn, 10, .production_id = 67), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 7, .production_id = 55), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 7, .production_id = 55), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 54), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 54), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 8, .production_id = 64), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 8, .production_id = 64), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_decl, 2), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_decl, 2), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 12), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 3, .production_id = 12), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 4), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_or_value_defn, 2, .production_id = 4), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_defn, 6, .production_id = 48), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_defn, 6, .production_id = 48), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 6, .production_id = 48), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 6, .production_id = 48), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 29), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 29), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7358), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_abbrev, 7, .production_id = 55), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_abbrev, 7, .production_id = 55), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration, 2), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_declaration, 2), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4333), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fsi_directive_decl, 3, .production_id = 8), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fsi_directive_decl, 3, .production_id = 8), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4344), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2810), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2811), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2795), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_op, 1), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_op, 1), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 2), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 2), SHIFT_REPEAT(3540), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_op, 1), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_op, 1), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_prefix_op_repeat1, 1), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_prefix_op_repeat1, 1), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__infix_or_prefix_op, 1), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__infix_or_prefix_op, 1), + [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4278), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), + [6044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3137), + [6047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4440), + [6050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6386), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6383), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6539), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4717), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5223), + [6065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5270), + [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(5603), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(7328), + [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(7329), + [6077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4700), + [6080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(4700), + [6083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3667), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(3792), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_patterns, 1), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 2), SHIFT_REPEAT(6382), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 3), + [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 3), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6271), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 4), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 4), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 3), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 3), + [6297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6256), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7480), + [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7483), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4671), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4703), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [6400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6557), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7340), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_param, 1), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_param, 1), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [6432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8046), + [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3804), + [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6820), + [6441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2482), + [6444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2482), + [6447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(4169), + [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3166), + [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6031), + [6456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5954), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5936), + [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(4656), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6014), + [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6168), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7841), + [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7842), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3940), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6370), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [6521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4563), + [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8146), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6888), + [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2764), + [6537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(2764), + [6540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3179), + [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5978), + [6546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5958), + [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5948), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(4442), + [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(5981), + [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(6218), + [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7908), + [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(7909), + [6567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), SHIFT_REPEAT(3924), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 2), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7568), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8300), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_class_definition, 1), + [6618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8101), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), + [6631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5929), + [6634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6440), + [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4400), + [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 3), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 3), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8366), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_constraints, 2), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_constraints, 2), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunct_pattern, 3), + [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunct_pattern, 3), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3101), + [6709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunct_pattern, 3), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunct_pattern, 3), + [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_pattern, 2), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_pattern, 2), + [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_pattern, 2), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_pattern, 2), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_pattern, 2), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_pattern, 2), + [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_pattern, 3), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3), + [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2), + [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [6771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_pattern_repeat1, 2), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6519), + [6778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 9), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 9), + [6782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 8), + [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 8), + [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_pattern, 3), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_pattern, 3), + [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 5), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 5), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint, 6), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 6), + [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 1), + [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 1), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 4), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 4), + [6820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 2), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 2), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [6870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4, .production_id = 38), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4, .production_id = 38), + [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_check_pattern, 4), + [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_check_pattern, 4), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3, .production_id = 24), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, .production_id = 24), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 24), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 24), + [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3), + [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3), + [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 3), + [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 3), + [6896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3145), + [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 3), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 3), + [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [6917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_defn_repeat1, 1), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_defn_repeat1, 1), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pattern, 3), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pattern, 3), + [6945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [6949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [6957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(5840), + [6960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(3773), + [6963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4651), + [6966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(5304), + [6969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(8125), + [6972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(4488), + [6975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), SHIFT_REPEAT(7826), + [6978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7512), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6311), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2), + [7002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3771), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [7055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5913), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [7062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6376), + [7065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5889), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [7072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3063), + [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6253), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 1), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 1), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [7094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3041), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7462), + [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 4), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 4), + [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_set, 3), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_set, 3), + [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6402), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6443), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7459), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3166), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6031), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(7011), + [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5936), + [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6014), + [7150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6168), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [7175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_or_ident, 3, .production_id = 50), + [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_or_ident, 3, .production_id = 50), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_modifier, 1), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_modifier, 1), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4468), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3179), + [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5978), + [7256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6977), + [7259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5948), + [7262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5981), + [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6218), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7511), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4414), + [7280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 1), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 1), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7850), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6336), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [7426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6392), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 3), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 3), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [7459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7565), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 3), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 3), + [7476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6466), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_field, 1), + [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_field, 1), + [7483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6531), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [7496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6414), + [7499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3804), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 4), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type_case, 4), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4604), + [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_patterns_repeat1, 1), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 3), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 3), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atomic_pattern, 1), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_pattern, 1), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7640), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6267), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [7717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2788), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4656), + [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7549), + [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7471), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4442), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [7758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4429), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2804), + [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3070), + [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6026), + [7772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(7125), + [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5945), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6025), + [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6178), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4575), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4497), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3158), + [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6126), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(7123), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5960), + [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6049), + [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6136), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 6, .production_id = 54), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 6, .production_id = 54), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 29), + [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 29), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 45), + [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 5, .production_id = 45), + [7844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6378), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 5, .production_id = 65), + [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 5, .production_id = 65), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3076), + [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6118), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(7042), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5962), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6112), + [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6164), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [7871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6235), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 4), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 4), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_class_definition, 4, .production_id = 29), + [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_class_definition, 4, .production_id = 29), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_inherits_decl, 4, .production_id = 28), + [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_inherits_decl, 4, .production_id = 28), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 3), + [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 3), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1), + [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 1), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 1), + [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 1), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_function_or_value_defn, 2), + [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_function_or_value_defn, 2), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body_inner, 1), + [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_body_inner, 1), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_class_definition_repeat1, 2), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [7962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6353), + [7965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6431), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(3090), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6017), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6997), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(5950), + [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6075), + [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__member_defns_repeat1, 2), SHIFT_REPEAT(6188), + [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7530), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7536), + [7994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6481), + [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4350), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4338), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 22), + [8013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 22), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 2), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 2), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 11), + [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 11), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7844), + [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7863), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_case, 2), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [8071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4583), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 1), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(8319), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_fields, 2), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3768), + [8112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4441), + [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), + [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_fields_repeat1, 2), SHIFT_REPEAT(4282), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 1), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), + [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_cases_repeat1, 2), SHIFT_REPEAT(5968), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [8167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6348), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 3), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type_cases, 2), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8344), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3, .production_id = 11), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3, .production_id = 11), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5645), + [8281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5645), + [8284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5646), + [8287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(595), + [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 2), + [8292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 2), SHIFT_REPEAT(5646), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 33), + [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 33), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4, .production_id = 22), + [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4, .production_id = 22), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 2), + [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 2), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5710), + [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5710), + [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5713), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [8426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_identifier_repeat1, 2), SHIFT_REPEAT(7593), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [8611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5852), + [8614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5852), + [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(5870), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_repeat1, 2), SHIFT_REPEAT(6505), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5903), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [8688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5915), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__compound_type_repeat1, 2), SHIFT_REPEAT(4704), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 1), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5910), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5919), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [8762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6462), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6503), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [8822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3051), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 3), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6497), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3773), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attribute, 1), + [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [8875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5930), + [8878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5920), + [8881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 6), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2), + [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6308), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 5), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3136), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3118), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5884), + [8973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 4), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3109), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 2), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 3), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [9052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 3), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 1), + [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 2), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_string_repeat1, 1), + [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_string_repeat1, 1), + [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 1), + [9124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 1), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3064), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_char, 1), + [9163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_char, 1), + [9165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_char, 1), + [9167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_char, 1), + [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6524), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_string_eval, 3), + [9176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_string_eval, 3), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [9288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5941), + [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 2), SHIFT_REPEAT(5938), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3123), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3135), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_signature, 3), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 4), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3160), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_member_constraint, 5), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curried_spec_repeat1, 2), + [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curried_spec_repeat1, 2), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 3), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_pattern_repeat1, 2), SHIFT_REPEAT(3159), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_spec, 2), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4271), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [9593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_verbatim_string_repeat1, 1), + [9597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4254), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4421), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_string_char, 1), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_string_char, 1), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 2, .production_id = 35), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 2, .production_id = 35), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4670), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [9718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_name_spec, 3, .production_id = 1), + [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_name_spec, 3, .production_id = 1), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [9806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4714), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6, .production_id = 59), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [9961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(5428), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [9978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2793), + [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2785), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(2980), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_rules_repeat1, 2), SHIFT_REPEAT(8242), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_pattern_content_repeat1, 2), SHIFT_REPEAT(3073), + [10021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4, .production_id = 36), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [10031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), + [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 2), SHIFT_REPEAT(6221), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3, .production_id = 36), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_expression_inner_repeat1, 2), SHIFT_REPEAT(4619), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [10063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5, .production_id = 59), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), SHIFT_REPEAT(3999), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_type_body_repeat1, 2), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_fields, 1), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 2), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_types, 2), + [10156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 5), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 3), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [10216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_constraints_repeat1, 2), SHIFT_REPEAT(5908), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), SHIFT_REPEAT(6679), + [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_cases_repeat1, 2), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 4), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [10250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments_spec, 1), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 1), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 1), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [10284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), + [10286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_spec_repeat1, 2), SHIFT_REPEAT(4048), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 2), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [10337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 2), + [10339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(528), + [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [10348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), SHIFT_REPEAT(3477), + [10351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_attributes_repeat1, 2), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [10395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2813), + [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), + [10400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_set_repeat1, 2), SHIFT_REPEAT(3777), + [10403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 1), + [10405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_types_repeat1, 2), SHIFT_REPEAT(4484), + [10408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), SHIFT_REPEAT(5748), + [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_fields_repeat1, 2), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 1), + [10435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), SHIFT_REPEAT(6538), + [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializers_repeat1, 2), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [10448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 2), + [10450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_ranges_repeat1, 2), SHIFT_REPEAT(518), + [10453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), SHIFT_REPEAT(667), + [10456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_elements_repeat1, 2), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_elements, 3), + [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_or_value_defns_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2802), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [10477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_ranges, 2), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 3), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_body, 1), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_defn, 2), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [10583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2), SHIFT_REPEAT(8158), + [10586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [10590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_attributes, 2), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializers, 2), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [10670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_repeat1, 1), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [10674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 2), + [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_range, 1, .production_id = 14), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__static_parameter, 1), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 3), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_element, 3), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [10736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_active_pattern_repeat1, 2, .production_id = 15), + [10738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_active_pattern_repeat1, 2, .production_id = 15), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_declaration_left, 4), + [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 3, .production_id = 37), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_static_parameter, 3), + [10758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 4), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_left, 5), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 4, .production_id = 51), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_case, 3), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [10784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern_content, 5, .production_id = 58), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [12876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constr_args, 6), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [12924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_field_expression, 5, .production_id = 49), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [13040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_as_reference, 2), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [13176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_cases, 1), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [13462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_branch, 2, .production_id = 5), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [13482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target, 1), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [13498] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [13524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xml_doc, 2), + [13526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [13528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), + [13530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compiler_directive_decl, 3, .production_id = 8), + [13532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), + [13534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, .production_id = 21), + [13536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/expr.txt b/test/corpus/expr.txt index 62a1ae7..c819df8 100644 --- a/test/corpus/expr.txt +++ b/test/corpus/expr.txt @@ -834,12 +834,10 @@ do (long_identifier (identifier) (identifier)))) - (dot_expression - (long_identifier_or_op - (identifier)) - (long_identifier_or_op - (long_identifier - (identifier)))))))) + (long_identifier_or_op + (long_identifier + (identifier) + (identifier))))))) ================================================================================ ce expression 1 @@ -3169,3 +3167,49 @@ do (identifier)))))) (const (int)))))) + +================================================================================ +literal expressions inside paren +================================================================================ + +do + (<@ (%varExpr).Path @>, convert <@ (%varExpr).JsonOpt @>, <@ (%varExpr).JsonOpt @>) + +-------------------------------------------------------------------------------- + +(file + (value_declaration + (do + (paren_expression + (tuple_expression + (literal_expression + (dot_expression + (paren_expression + (prefixed_expression + (prefix_op) + (long_identifier_or_op + (identifier)))) + (long_identifier_or_op + (identifier)))) + (tuple_expression + (application_expression + (long_identifier_or_op + (identifier)) + (literal_expression + (dot_expression + (paren_expression + (prefixed_expression + (prefix_op) + (long_identifier_or_op + (identifier)))) + (long_identifier_or_op + (identifier))))) + (literal_expression + (dot_expression + (paren_expression + (prefixed_expression + (prefix_op) + (long_identifier_or_op + (identifier)))) + (long_identifier_or_op + (identifier))))))))))